4 This has been completed up to a75c6ed6bbe, except for:
5 803e389 rurban CYG17 utf8 paths
9 [ this is a template for a new perldelta file. Any text flagged as
10 XXX needs to be processed before release. ]
12 perldelta - what is new for perl v5.15.8
16 This document describes differences between the 5.15.7 release and
19 If you are upgrading from an earlier release such as 5.15.6, first read
20 L<perl5157delta>, which describes differences between 5.15.6 and
25 XXX Any important notices here
27 =head1 Core Enhancements
29 XXX New core language features go here. Summarise user-visible core language
30 enhancements. Particularly prominent performance optimisations could go
31 here, but most should go in the L</Performance Enhancements> section.
33 [ List each enhancement as a =head2 entry ]
35 =head2 Improved ability to mix locales and Unicode, including UTF-8 locales
37 An optional parameter has been added to C<use locale>
39 use locale ':not_characters';
41 which tells Perl to use all but the C<LC_CTYPE> and C<LC_COLLATE>
42 portions of the current locale. Instead, the character set is assumed
43 to be Unicode. This allows locales and Unicode to be seamlessly mixed,
44 including the increasingly frequent UTF-8 locales. When using this
45 hybrid form of locales, the C<:locale> layer to the L<open> pragma can
46 be used to interface with the file system, and there are CPAN modules
47 available for ARGV and environment variable conversions.
49 Full details are in L<perllocale>.
51 =head2 New function C<fc> and corresponding escape sequence C<\F> for Unicode foldcase
53 Unicode foldcase is an extension to lowercase that gives better results
54 when comparing two strings case-insensitively. It has long been used
55 internally in regular expression C</i> matching. Now it is available
56 explicitly through the new C<fc> function call (enabled by
57 S<C<"use feature 'fc'">>, or C<use v5.16>, or explicitly callable via
58 C<CORE::fc>) or through the new C<\F> sequence in double-quotish
61 Full details are in L<perlfunc/fc>.
63 =head2 C<_> in subroutine prototypes
65 The C<_> character in subroutine prototypes is now allowed before C<@> or
70 XXX Any security-related notices go here. In particular, any security
71 vulnerabilities closed should be noted here rather than in the
72 L</Selected Bug Fixes> section.
74 [ List each security issue as a =head2 entry ]
76 =head1 Incompatible Changes
78 XXX For a release on a stable branch, this section aspires to be:
80 There are no changes intentionally incompatible with 5.XXX.XXX
81 If any exist, they are bugs, and we request that you submit a
82 report. See L</Reporting Bugs> below.
84 [ List each incompatible change as a =head2 entry ]
86 =head2 Special blocks called in void context
88 Special blocks (C<BEGIN>, C<CHECK>, C<INIT>, C<UNITCHECK>, C<END>) are now
89 called in void context. This avoids wasteful copying of the result of the
90 last statement [perl #108794].
92 =head2 The C<overloading> pragma and regexp objects
94 With C<no overloading>, regular expression objects returned by C<qr//> are
95 now stringified as "Regexp=REGEXP(0xbe600d)" instead of the regular
96 expression itself [perl #108780].
100 XXX Any deprecated features, syntax, modules etc. should be listed here.
101 In particular, deprecated modules should be listed here even if they are
102 listed as an updated module in the L</Modules and Pragmata> section.
104 [ List each deprecation as a =head2 entry ]
106 =head1 Performance Enhancements
108 XXX Changes which enhance performance without changing behaviour go here. There
109 may well be none in a stable release.
111 [ List each enhancement as a =item entry ]
121 =head1 Modules and Pragmata
123 XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/>
124 go here. If Module::CoreList is updated, generate an initial draft of the
125 following sections using F<Porting/corelist-perldelta.pl>, which prints stub
126 entries to STDOUT. Results can be pasted in place of the '=head2' entries
127 below. A paragraph summary for important changes should then be added by hand.
128 In an ideal world, dual-life modules would have a F<Changes> file that could be
131 [ Within each section, list entries as a =item entry ]
133 =head2 New Modules and Pragmata
143 =head2 Updated Modules and Pragmata
149 L<B> has been upgraded from version 1.33 to version 1.34.
151 C<B::COP> now has a C<stashflags> method, corresponding to a new internal
152 field added in 5.15.4 [perl #108860].
156 L<Compress::Raw::Bzip2> has been upgraded from version 2.045 to version 2.048.
160 L<Compress::Raw::Zlib> has been upgraded from version 2.045 to version 2.048.
164 L<Compress::Zlib> has been upgraded from version 2.046 to version 2.048.
168 L<DB_File> has been upgraded from version 1.824 to version 1.826.
172 L<diagnostics> has been upgraded from version 1.27 to version 1.28.
174 When searching for F<perldiag.pod>, it no longer uses paths that were only
175 relevant on Perl 5.004 and earlier.
179 L<IPC::Cmd> has been upgraded from version 0.72 to version 0.76.
183 L<Math::Complex> has been upgraded from version 1.58 to version 1.59.
185 This avoids a new core warning.
189 L<Pod::Parser> has been upgraded from version 1.37 to version 1.51.
193 L<Time::HiRes> has been upgraded from version 1.9724 to version 1.9725.
195 There is an important bugfix for C<Time::HiRes::stat()>.
199 L<Unicode::UCD> has been upgraded from version 0.39 to 0.40.
201 The only change is to fix a formatting error in the Pod.
205 =head2 Removed Modules and Pragmata
217 XXX Changes to files in F<pod/> go here. Consider grouping entries by
218 file and be sure to link to the appropriate page, e.g. L<perlfunc>.
220 =head2 New Documentation
222 XXX Changes which create B<new> files in F<pod/> go here.
226 XXX Description of the purpose of the new file here
228 =head2 Changes to Existing Documentation
230 XXX Changes which significantly change existing files in F<pod/> go here.
231 However, any changes to F<pod/perldiag.pod> should go in the L</Diagnostics>
240 XXX Description of the change here
246 The following additions or changes have been made to diagnostic output,
247 including warnings and fatal error messages. For the complete list of
248 diagnostic messages, see L<perldiag>.
250 XXX New or changed warnings emitted by the core's C<C> code go here. Also
251 include any changes in L<perldiag> that reconcile it to the C<C> code.
253 [ Within each section, list entries as a =item entry that links to perldiag,
258 L<Invalid version object|perldiag/"Invalid version object">
261 =head2 New Diagnostics
263 XXX Newly added diagnostic messages go here
271 XXX L<message|perldiag/"message">
281 XXX L<message|perldiag/"message">
285 =head2 Changes to Existing Diagnostics
287 XXX Changes (i.e. rewording) of diagnostic messages go here
293 XXX Describe change here
297 =head1 Utility Changes
299 XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go
300 here. Most of these are built within the directories F<utils> and F<x2p>.
302 [ List utility changes as a =head3 entry for each utility and =item
303 entries for each change
304 Use L<XXX> with program names to get proper documentation linking. ]
316 =head1 Configuration and Compilation
318 XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools
319 go here. Any other changes to the Perl build process should be listed here.
320 However, any platform-specific changes should be listed in the
321 L</Platform Support> section, instead.
323 [ List changes as a =item entry ].
335 XXX Any significant changes to the testing of a freshly built perl should be
336 listed here. Changes which create B<new> files in F<t/> go here as do any
337 large changes to the testing harness (e.g. when parallel testing was added).
338 Changes to existing files in F<t/> aren't worth summarising, although the bugs
339 that they represent may be covered elsewhere.
341 [ List each test improvement as a =item entry ]
351 =head1 Platform Support
353 XXX Any changes to platform support should be listed in the sections below.
355 [ Within the sections, list each platform as a =item entry with specific
356 changes as paragraphs below it. ]
360 XXX List any platforms that this version of perl compiles on, that previous
361 versions did not. These will either be enabled by new files in the F<hints/>
362 directories, or new subdirectories and F<README> files at the top level of the
367 =item XXX-some-platform
373 =head2 Discontinued Platforms
375 XXX List any platforms that this version of perl no longer compiles on.
379 =item XXX-some-platform
385 =head2 Platform-Specific Notes
387 XXX List any changes for specific platforms. This could include configuration
388 and compilation changes or changes in portability/compatibility. However,
389 changes within modules for platforms should generally be listed in the
390 L</Modules and Pragmata> section.
394 =item XXX-some-platform
400 =head1 Internal Changes
402 XXX Changes which affect the interface available to C<XS> code go here.
403 Other significant internal changes for future core maintainers should
406 [ List each change as a =item entry ]
416 =head1 Selected Bug Fixes
418 XXX Important bug fixes in the core language are summarised here.
419 Bug fixes in files in F<ext/> and F<lib/> are best summarised in
420 L</Modules and Pragmata>.
422 [ List each fix as a =item entry ]
428 C<~~> now correctly handles the precedence of Any~~Object, and is not tricked
429 by an overloaded object on the left-hand side.
433 C<stat _> no longer warns about unopened filehandles [perl #71002].
437 C<stat> on an unopened filehandle now warns consistently, instead of
438 skipping the warning at times.
442 A change in an earlier 5.15 release caused warning hints to propagate into
443 C<do $file>. This has been fixed [rt.cpan.org #72767].
447 Starting with 5.12.0, Perl used to get its internal bookkeeping muddled up
448 after assigning C<${ qr// }> to a hash element and locking it with
449 L<Hash::Util>. This could result in double frees, crashes or erratic
454 In 5.15.7, some typeglobs in the CORE namespace were made read-only by
455 mistake. This has been fixed [rt.cpan.org #74289].
459 C<-t> now works when stacked with other filetest operators [perl #77388].
463 Stacked filetest operators now only call FETCH once on a tied argument.
467 =head1 Known Problems
469 XXX Descriptions of platform agnostic bugs we know we can't fix go here. Any
470 tests that had to be C<TODO>ed for the release would be noted here, unless
471 they were specific to a particular platform (see below).
473 This is a list of some significant unfixed bugs, which are regressions
474 from either 5.XXX.XXX or 5.XXX.XXX.
476 [ List each fix as a =item entry ]
488 XXX If any significant core contributor has died, we've added a short obituary
491 =head1 Acknowledgements
493 XXX Generate this with:
495 perl Porting/acknowledgements.pl v5.15.7..HEAD
497 =head1 Reporting Bugs
499 If you find what you think is a bug, you might check the articles
500 recently posted to the comp.lang.perl.misc newsgroup and the perl
501 bug database at http://rt.perl.org/perlbug/ . There may also be
502 information at http://www.perl.org/ , the Perl Home Page.
504 If you believe you have an unreported bug, please run the L<perlbug>
505 program included with your release. Be sure to trim your bug down
506 to a tiny but sufficient test case. Your bug report, along with the
507 output of C<perl -V>, will be sent off to perlbug@perl.org to be
508 analysed by the Perl porting team.
510 If the bug you are reporting has security implications, which make it
511 inappropriate to send to a publicly archived mailing list, then please send
512 it to perl5-security-report@perl.org. This points to a closed subscription
513 unarchived mailing list, which includes
514 all the core committers, who will be able
515 to help assess the impact of issues, figure out a resolution, and help
516 co-ordinate the release of patches to mitigate or fix the problem across all
517 platforms on which Perl is supported. Please only use this address for
518 security issues in the Perl core, not for modules independently
523 The F<Changes> file for an explanation of how to view exhaustive details
526 The F<INSTALL> file for how to build Perl.
528 The F<README> file for general stuff.
530 The F<Artistic> and F<Copying> files for copyright information.