summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Signes <rjbs@cpan.org>2014-07-11 21:47:48 -0400
committerRicardo Signes <rjbs@cpan.org>2014-07-11 21:47:48 -0400
commit25b4c20b7a94a2449c1a9350dd6bce9bf030d14d (patch)
tree13816f4b708668b24e0b0639d9ef984d2be4197a
parentf54f600369c52faa683bc0f3339898d4f09d431e (diff)
downloadperl-25b4c20b7a94a2449c1a9350dd6bce9bf030d14d.tar.gz
update perldelta for latest cherry picks
-rw-r--r--pod/perldelta.pod73
1 files changed, 13 insertions, 60 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 957d6e8634..a74d38c306 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -2,9 +2,6 @@
=head1 NAME
-[ this is a template for a new perldelta file. Any text flagged as XXX needs
-to be processed before release. ]
-
perldelta - what is new for perl v5.18.3
=head1 DESCRIPTION
@@ -15,18 +12,6 @@ release.
If you are upgrading from an earlier release such as 5.18.1, first read
L<perl5182delta>, which describes differences between 5.18.1 and 5.18.2.
-=head1 Notice
-
-XXX Any important notices here
-
-=head1 Core Enhancements
-
-XXX New core language features go here. Summarize user-visible core language
-enhancements. Particularly prominent performance optimisations could go
-here, but most should go in the L</Performance Enhancements> section.
-
-[ List each enhancement as a =head2 entry ]
-
=head1 Security
XXX Any security-related notices go here. In particular, any security
@@ -35,45 +20,6 @@ L</Selected Bug Fixes> section.
[ List each security issue as a =head2 entry ]
-=head1 Incompatible Changes
-
-XXX For a release on a stable branch, this section aspires to be:
-
- There are no changes intentionally incompatible with 5.XXX.XXX
- If any exist, they are bugs, and we request that you submit a
- report. See L</Reporting Bugs> below.
-
-[ List each incompatible change as a =head2 entry ]
-
-=head1 Deprecations
-
-XXX Any deprecated features, syntax, modules etc. should be listed here.
-
-=head2 Module removals
-
-XXX Remove this section if inapplicable.
-
-The following modules will be removed from the core distribution in a future
-release, and will at that time need to be installed from CPAN. Distributions
-on CPAN which require these modules will need to list them as prerequisites.
-
-The core versions of these modules will now issue C<"deprecated">-category
-warnings to alert you to this fact. To silence these deprecation warnings,
-install the modules in question from CPAN.
-
-Note that these are (with rare exceptions) fine modules that you are encouraged
-to continue to use. Their disinclusion from core primarily hinges on their
-necessity to bootstrapping a fully functional, CPAN-capable Perl installation,
-not usually on concerns over their design.
-
-=over
-
-=item XXX Note that deprecated modules should be listed here even if they are listed as an updated module in the L</Modules and Pragmata> section.
-
-=back
-
-[ List each other deprecation as a =head2 entry ]
-
=head1 Performance Enhancements
XXX Changes which enhance performance without changing behaviour go here.
@@ -341,17 +287,24 @@ XXX
=head1 Selected Bug Fixes
-XXX Important bug fixes in the core language are summarized here. Bug fixes in
-files in F<ext/> and F<lib/> are best summarized in L</Modules and Pragmata>.
+=over 4
-[ List each fix as a =item entry ]
+=item *
-=over 4
+The debugger now properly resets filehandles as needed. [perl #121456]
+
+=item *
+
+A segfault in Digest::SHA has been addressed. [perl #121421]
+
+=item *
+
+perl can again be built with USE_64_BIT_INT, with Visual C 2003, 32 bit.
+[perl #120925]
=item *
-C<&xsub> and C<goto &xsub> no longer crash if *_ has been undefined and has no
-ARRAY entry (i.e. @_ does not exist). [perl #119949]
+A leading { (brace) in formats is properly parsed again. [perl #119973]
=item *