This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for 1542cb4/#122728
[perl5.git] / pod / perldelta.pod
CommitLineData
44691e6f
AB
1=encoding utf8
2
3=head1 NAME
4
39c4a6cf
PM
5[ this is a template for a new perldelta file. Any text flagged as XXX needs
6to be processed before release. ]
7
8perldelta - what is new for perl v5.21.4
c68523cb 9
238894db 10=head1 DESCRIPTION
c68523cb 11
39c4a6cf 12This document describes differences between the 5.21.3 release and the 5.21.4
238894db 13release.
c68523cb 14
39c4a6cf
PM
15If you are upgrading from an earlier release such as 5.21.2, first read
16L<perl5213delta>, which describes differences between 5.21.2 and 5.21.3.
7065301c 17
39c4a6cf 18=head1 Notice
7e957246 19
39c4a6cf 20XXX Any important notices here
7e957246 21
39c4a6cf 22=head1 Core Enhancements
f88f10f5 23
39c4a6cf
PM
24XXX New core language features go here. Summarize user-visible core language
25enhancements. Particularly prominent performance optimisations could go
26here, but most should go in the L</Performance Enhancements> section.
21f3b41e 27
39c4a6cf 28[ List each enhancement as a =head2 entry ]
f88f10f5 29
5b319db8
JH
30=head2 Infinity and NaN (not-a-number) handling improved
31
32Floating point values are able to hold the special values infinity
33(also -infinity), and NaN (not-a-number). Now we more robustly recognize
34and propagate the value in computations, and on output normalize them
35to C<Inf> and C<NaN>.
36
019bf663 37See also the L<POSIX> enhancements.
5b319db8 38
0346c3a9 39=head1 Security
7e957246 40
39c4a6cf
PM
41XXX Any security-related notices go here. In particular, any security
42vulnerabilities closed should be noted here rather than in the
43L</Selected Bug Fixes> section.
13900f93 44
39c4a6cf 45[ List each security issue as a =head2 entry ]
8bdb3f93 46
13900f93 47=head1 Incompatible Changes
8bdb3f93 48
39c4a6cf 49XXX For a release on a stable branch, this section aspires to be:
1178d2cf 50
39c4a6cf
PM
51 There are no changes intentionally incompatible with 5.XXX.XXX
52 If any exist, they are bugs, and we request that you submit a
53 report. See L</Reporting Bugs> below.
1178d2cf 54
39c4a6cf 55[ List each incompatible change as a =head2 entry ]
f6f3144e 56
2b03450b
FC
57=head2 Changes to the C<*> prototype
58
59The C<*> character in a subroutine's prototype used to allow barewords
60to take precedence over most, but not all subroutines. It was never
61consistent and exhibited buggy behaviour.
62
63Now it has been changed, so subroutines always take precedence over
64barewords, which brings it into conformity with similarly prototyped
65built-in functions:
66
67 sub splat($) { ... }
68 sub foo { ... }
69 splat(foo); # now always splat(foo())
70 splat(bar); # still splat('bar') as before
71 close(foo); # close(foo())
72 close(bar); # close('bar')
73
39c4a6cf 74=head1 Deprecations
7065301c 75
39c4a6cf 76XXX Any deprecated features, syntax, modules etc. should be listed here.
7065301c 77
39c4a6cf 78=head2 Module removals
b3e82ed1 79
39c4a6cf 80XXX Remove this section if inapplicable.
ca58223b 81
39c4a6cf
PM
82The following modules will be removed from the core distribution in a
83future release, and will at that time need to be installed from CPAN.
84Distributions on CPAN which require these modules will need to list them as
85prerequisites.
ca58223b 86
39c4a6cf
PM
87The core versions of these modules will now issue C<"deprecated">-category
88warnings to alert you to this fact. To silence these deprecation warnings,
89install the modules in question from CPAN.
23b03637 90
39c4a6cf
PM
91Note that these are (with rare exceptions) fine modules that you are encouraged
92to continue to use. Their disinclusion from core primarily hinges on their
93necessity to bootstrapping a fully functional, CPAN-capable Perl installation,
94not usually on concerns over their design.
23b03637 95
39c4a6cf 96=over
85e8fb10 97
39c4a6cf 98=item XXX
85e8fb10 99
39c4a6cf
PM
100XXX Note that deprecated modules should be listed here even if they are listed
101as an updated module in the L</Modules and Pragmata> section.
134f90c2 102
39c4a6cf 103=back
134f90c2 104
39c4a6cf 105[ List each other deprecation as a =head2 entry ]
ff433f2d 106
39c4a6cf 107=head1 Performance Enhancements
ff433f2d 108
39c4a6cf
PM
109XXX Changes which enhance performance without changing behaviour go here.
110There may well be none in a stable release.
134f90c2 111
39c4a6cf 112[ List each enhancement as a =item entry ]
134f90c2 113
39c4a6cf 114=over 4
7d19f6a1 115
7d19f6a1
PM
116=item *
117
4f81ab9c
FC
118Subroutines with an empty prototype and bodies containing just C<undef> are
119now eligible for inlining. [perl #122728]
55e8b286 120
39c4a6cf 121=back
55e8b286 122
39c4a6cf 123=head1 Modules and Pragmata
d99849ae 124
39c4a6cf
PM
125XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/>
126go here. If Module::CoreList is updated, generate an initial draft of the
127following sections using F<Porting/corelist-perldelta.pl>. A paragraph summary
128for important changes should then be added by hand. In an ideal world,
129dual-life modules would have a F<Changes> file that could be cribbed.
d99849ae 130
39c4a6cf 131[ Within each section, list entries as a =item entry ]
ff433f2d 132
39c4a6cf 133=head2 New Modules and Pragmata
ff433f2d 134
39c4a6cf 135=over 4
ff433f2d
PM
136
137=item *
138
39c4a6cf 139XXX
0bb39c26 140
39c4a6cf 141=back
0bb39c26 142
39c4a6cf 143=head2 Updated Modules and Pragmata
9c97a342 144
39c4a6cf 145=over 4
d99849ae
PM
146
147=item *
148
39c4a6cf 149L<XXX> has been upgraded from version A.xx to B.yy.
6ab3666b 150
233a4069
JK
151=item *
152
d0ab07ee
JK
153L<B::Concise> has been upgraded from version 0.992 to 0.993.
154
608e531f
SH
155=item *
156
157L<CPAN::Meta::Requirements> has been upgraded from version 2.126 to 2.128.
74d5bfab
AS
158
159=item *
160
161L<ExtUtils::CBuilder> has been upgraded from version 0.280216 to 0.280219.
162[perl #122675].
163
d0ab07ee
JK
164=item *
165
39091b75
JK
166L<ExtUtils::Manifest> has been upgraded from version 1.65 to 1.66.
167[perl #122415].
168
169=item *
170
ecd53122
JK
171L<ExtUtils::ParseXS>: Documentation has been added to
172F<ExtUtils-ParseXS/lib/perlxs.pod> concerning handling of locales when writing
173XS code.
174
175=item *
176
9eace98c
JK
177L<File::Find> has been upgraded from version 1.27 to 1.28.
178
179C<find()> and C<finddepth()> will now warn if passed inappropriate or
180misspelled options.
181
182=item *
183
184L<Getopt::Std> has been upgraded from version 1.10 to 1.11.
185
186=item *
187
d0ab07ee
JK
188L<HTTP::Tiny> has been upgraded from version 0.047 to 0.048.
189
190=item *
191
192L<Module::CoreList> has been upgraded from version 5.021003 to 5.021004.
193
194=item *
195
196L<POSIX> has been upgraded from version 1.42 to 1.43.
197
5b319db8
JH
198The C99 math functions and constants (for example acosh, round,
199M_E, M_PI) have been added.
200
d0ab07ee
JK
201=item *
202
203L<Pod::Perldoc> has been upgraded from version 3.23 to 3.24.
204
205=item *
206
46274848
SH
207Scalar-List-Utils has been upgraded from version 1.40 to 1.41.
208
209=item *
210
d0ab07ee
JK
211L<constant> has been upgraded from version 1.31 to 1.32.
212
bfc60ea2
FC
213It now accepts fully-qualified constant names, allowing constants to be
214defined in packages other than the caller.
215
d0ab07ee
JK
216=item *
217
218L<threads> has been upgraded from version 1.95 to 1.96.
219
39c4a6cf 220=back
9c97a342 221
39c4a6cf 222=head2 Removed Modules and Pragmata
d99849ae 223
39c4a6cf 224=over 4
d99849ae 225
ff433f2d
PM
226=item *
227
39c4a6cf 228XXX
ff433f2d 229
13900f93 230=back
aac7f82f 231
13900f93 232=head1 Documentation
aac7f82f 233
39c4a6cf
PM
234XXX Changes to files in F<pod/> go here. Consider grouping entries by
235file and be sure to link to the appropriate page, e.g. L<perlfunc>.
6d9b7c7c 236
39c4a6cf 237=head2 New Documentation
2a395b86 238
39c4a6cf 239XXX Changes which create B<new> files in F<pod/> go here.
2a395b86 240
39c4a6cf 241=head3 L<XXX>
2a395b86 242
39c4a6cf 243XXX Description of the purpose of the new file here
2a395b86 244
39c4a6cf 245=head2 Changes to Existing Documentation
2a395b86 246
39c4a6cf
PM
247XXX Changes which significantly change existing files in F<pod/> go here.
248However, any changes to F<pod/perldiag.pod> should go in the L</Diagnostics>
249section.
250
251=head3 L<XXX>
2a395b86
PM
252
253=over 4
254
255=item *
256
39c4a6cf 257XXX Description of the change here
2a395b86 258
12d22d1f
JK
259=item *
260
261L<perlsyn>: An ambiguity in the documentation of the Ellipsis statement has
262been corrected. [perl #122661]
263
2a395b86
PM
264=back
265
39c4a6cf 266=head1 Diagnostics
2a395b86 267
39c4a6cf
PM
268The following additions or changes have been made to diagnostic output,
269including warnings and fatal error messages. For the complete list of
270diagnostic messages, see L<perldiag>.
2a395b86 271
39c4a6cf
PM
272XXX New or changed warnings emitted by the core's C<C> code go here. Also
273include any changes in L<perldiag> that reconcile it to the C<C> code.
2a395b86 274
39c4a6cf 275=head2 New Diagnostics
0f4a583b 276
39c4a6cf
PM
277XXX Newly added diagnostic messages go under here, separated into New Errors
278and New Warnings
2a395b86 279
39c4a6cf 280=head3 New Errors
2a395b86
PM
281
282=over 4
283
284=item *
285
39c4a6cf 286XXX L<message|perldiag/"message">
2a395b86
PM
287
288=back
289
39c4a6cf 290=head3 New Warnings
2a395b86
PM
291
292=over 4
293
294=item *
295
39c4a6cf 296XXX L<message|perldiag/"message">
2a395b86
PM
297
298=back
6d9b7c7c 299
39c4a6cf
PM
300=head2 Changes to Existing Diagnostics
301
302XXX Changes (i.e. rewording) of diagnostic messages go here
7f55cec0 303
13900f93 304=over 4
7f55cec0
SH
305
306=item *
307
39c4a6cf 308XXX Describe change here
aac7f82f 309
13900f93 310=back
aac7f82f 311
363d3025
FC
312=head2 Diagnostic Removals
313
314=over 4
315
316=item *
317
334464b3
FC
318"Constant is not a FOO reference"
319
320Compile-time checking of constant dereferencing (e.g.,
321C<< my_constant->() >>) has been removed, since it was not taking
322overloading into account. [perl #69456] [perl #122607]
323
324=item *
325
363d3025
FC
326The warning "Ambiguous use of -foo resolved as -&foo()" has been removed.
327There is actually no ambiguity here, and this impedes the use of negated
328constants; e.g., C<-Inf>.
329
ef5a9509
FC
330=item *
331
332The little-known C<my Class $var> syntax (see L<fields> and L<attributes>)
333could get confused in the scope of C<use utf8> if C<Class> were a constant
334whose value contained Latin-1 characters.
335
363d3025
FC
336=back
337
39c4a6cf 338=head1 Utility Changes
091fed7c 339
39c4a6cf
PM
340XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go here.
341Most of these are built within the directory F<utils>.
902c1f75 342
39c4a6cf
PM
343[ List utility changes as a =head2 entry for each utility and =item
344entries for each change
345Use L<XXX> with program names to get proper documentation linking. ]
2901561d 346
39c4a6cf 347=head2 L<XXX>
4594cf53 348
13900f93 349=over 4
96dcbc37
DD
350
351=item *
352
39c4a6cf 353XXX
a1d26ccd 354
39c4a6cf 355=back
a1d26ccd 356
39c4a6cf 357=head1 Configuration and Compilation
7065301c 358
39c4a6cf
PM
359XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools
360go here. Any other changes to the Perl build process should be listed here.
361However, any platform-specific changes should be listed in the
362L</Platform Support> section, instead.
58f25ac1 363
39c4a6cf 364[ List changes as a =item entry ].
13900f93
A
365
366=over 4
58f25ac1
MH
367
368=item *
369
39c4a6cf 370XXX
a5873648 371
39c4a6cf 372=back
a5873648 373
39c4a6cf 374=head1 Testing
a5873648 375
39c4a6cf
PM
376XXX Any significant changes to the testing of a freshly built perl should be
377listed here. Changes which create B<new> files in F<t/> go here as do any
378large changes to the testing harness (e.g. when parallel testing was added).
379Changes to existing files in F<t/> aren't worth summarizing, although the bugs
380that they represent may be covered elsewhere.
a5873648 381
39c4a6cf 382[ List each test improvement as a =item entry ]
a5873648 383
39c4a6cf 384=over 4
a5873648
PM
385
386=item *
387
39c4a6cf 388XXX
a5873648 389
58f25ac1
MH
390=back
391
39c4a6cf 392=head1 Platform Support
b10906fb 393
39c4a6cf 394XXX Any changes to platform support should be listed in the sections below.
b10906fb 395
39c4a6cf
PM
396[ Within the sections, list each platform as a =item entry with specific
397changes as paragraphs below it. ]
b10906fb 398
39c4a6cf 399=head2 New Platforms
b10906fb 400
39c4a6cf
PM
401XXX List any platforms that this version of perl compiles on, that previous
402versions did not. These will either be enabled by new files in the F<hints/>
403directories, or new subdirectories and F<README> files at the top level of the
404source tree.
13900f93 405
7065301c 406=over 4
24a38d90 407
39c4a6cf 408=item XXX-some-platform
24a38d90 409
39c4a6cf 410XXX
bb076206 411
7065301c
RS
412=back
413
39c4a6cf 414=head2 Discontinued Platforms
097675bf 415
39c4a6cf 416XXX List any platforms that this version of perl no longer compiles on.
b3211734 417
6e97d65d 418=over 4
b3211734 419
39c4a6cf 420=item XXX-some-platform
7065301c 421
39c4a6cf 422XXX
13900f93 423
39c4a6cf 424=back
7d0ccdba 425
39c4a6cf 426=head2 Platform-Specific Notes
7d0ccdba 427
39c4a6cf
PM
428XXX List any changes for specific platforms. This could include configuration
429and compilation changes or changes in portability/compatibility. However,
430changes within modules for platforms should generally be listed in the
431L</Modules and Pragmata> section.
6e97d65d 432
39c4a6cf 433=over 4
6e97d65d 434
39c4a6cf 435=item XXX-some-platform
6e97d65d 436
39c4a6cf 437XXX
7d0ccdba 438
7065301c
RS
439=back
440
441=head1 Internal Changes
442
39c4a6cf
PM
443XXX Changes which affect the interface available to C<XS> code go here. Other
444significant internal changes for future core maintainers should be noted as
445well.
c9fcb674 446
39c4a6cf 447[ List each change as a =item entry ]
a835cd47 448
39c4a6cf 449=over 4
c1284011 450
7d15b1a8 451XXX
1c43698b 452
6d9b7c7c 453=back
c1284011 454
6d9b7c7c 455=head1 Selected Bug Fixes
375f5f06 456
39c4a6cf
PM
457XXX Important bug fixes in the core language are summarized here. Bug fixes in
458files in F<ext/> and F<lib/> are best summarized in L</Modules and Pragmata>.
459
460[ List each fix as a =item entry ]
461
0346c3a9 462=over 4
375f5f06 463
2884baee
MH
464=item *
465
39c4a6cf 466XXX
2884baee 467
0aa1826c
FC
468=item *
469
6f1a844b
FC
470Constant dereferencing now works correctly for typeglob constants.
471Previously the glob was stringified and its name looked up. Now the glob
472itself is used. [perl #69456]
473
549ea8d4
FC
474=item *
475
476When parsing a funny character ($ @ % &) followed by braces, the parser no
477longer tries to guess whether it is a block or a hash constructor (causing
478a syntax error when it guesses the latter), since it can only be a block.
479
be0006e0
FC
480=item *
481
482C<undef $reference> now frees the referent immediately, instead of hanging
483on to it until the next statement. [perl #122556]
484
1699f5c2
FC
485=item *
486
487Various cases where the name of a sub is used (autoload, overloading, error
488messages) used to crash for lexical subs, but have been fixed.
489
7e8b2071
FC
490=item *
491
492Bareword lookup now tries to avoid vivifying packages if it turns out the
493bareword is not going to be a subroutine name.
494
f9acf899
FC
495=item *
496
497Compilation of anonymous constants (e.g., C<sub () { 3 }>) no longer
498deletes any subroutine named C<__ANON__> in the current package. Not only
499was C<*__ANON__{CODE}> cleared, but there was a memory leak, too. This bug
500goes back to perl 5.8.0.
501
fd26b6f0
FC
502=item *
503
504Stub declarations like C<sub f;> and C<sub f ();> no longer wipe out
505constants of the same name declared by C<use constant>. This bug was
506introduced in perl 5.10.0.
507
499333dc
KW
508=item *
509
510Under some conditions a warning raised in compilation of regular
511expression patterns could be displayed multiple times. This is now
512fixed.
513
8f0cd35a
KW
514=item *
515
516C<qr/[\N{named sequence}]/> now works properly in many instances. Some
517names known to C<\N{...}> refer to a sequence of multiple characters,
518instead of the usual single character. Bracketed character classes
519generally only match single characters, but now special handling has
520been added so that they can match named sequences, but not if the class
521is inverted or the sequence is specified as the beginning or end of a
522range. In these cases, the only behavior change from before is a slight
523rewording of the fatal error message given when this class is part of a
524C<?[...])> construct. When the C<[...]> stands alone, the same
525non-fatal warning as before is raised, and only the first character in
526the sequence is used, again just as before.
527
aa292ef2
FC
528=item *
529
530Tainted constants evaluated at compile time no longer cause unrelated
531statements to become tainted. [perl #122669]
532
739e9bee
FC
533=item *
534
535C<open $$fh, ...>, which vivifies a handle with a name like "main::_GEN_0",
536was not giving the handle the right reference count, so a double free could
537happen.
538
b23b2fdb
FC
539=item *
540
541When deciding that a bareword was a method name, the parser would get
542confused if an "our" sub with the same name existed, and look up the method
543in the package of the "our" sub, instead of the package of the invocant.
544
7d15b1a8
FC
545=item *
546
547The parser no longer gets confused by C<\U=> within a double-quoted string.
548It used to roduce a syntax error, but now compiles it correctly.
549[perl #80368]
550
bbca64cf
KW
551=item *
552
553It has always been the intention for the C<-B> and C<-T> file test
554operators to treat UTF-8 encoded files as text.
555(L<perlfunc|perlfunc/-X FILEHANDLE> has been updated to say this.)
556Previously, it was possible for some files to be considered UTF-8 that
557actually weren't valid UTF-8. This is now fixed. The operators now
558work on EBCDIC platforms as well.
559
0064f8cc
KW
560=item *
561
562Under some conditions warning messages raised during regular expression
563pattern compilation were being output more than once. This has now been
564fixed.
565
6ff8f256
KW
566=item *
567
568A regression has been fixed that was introduced in v5.20.0 (fixed in
569v5.20.1 as well as here) in which a UTF-8 encoded regular expression
570pattern that contains a single ASCII lowercase letter does not match its
571uppercase counterpart. [perl #122655]
572
39c4a6cf 573=back
b756670b 574
39c4a6cf 575=head1 Known Problems
b756670b 576
39c4a6cf
PM
577XXX Descriptions of platform agnostic bugs we know we can't fix go here. Any
578tests that had to be C<TODO>ed for the release would be noted here. Unfixed
579platform specific bugs also go here.
e917e94e 580
39c4a6cf
PM
581[ List each fix as a =item entry ]
582
583=over 4
e917e94e 584
26dd5fd6
PM
585=item *
586
39c4a6cf 587XXX
26dd5fd6 588
13900f93
A
589=back
590
39c4a6cf 591=head1 Errata From Previous Releases
e831f11a 592
39c4a6cf
PM
593=over 4
594
595=item *
ff433f2d 596
39c4a6cf
PM
597XXX Add anything here that we forgot to add, or were mistaken about, in
598the perldelta of a previous release.
ff433f2d 599
39c4a6cf
PM
600=back
601
602=head1 Obituary
ff433f2d 603
39c4a6cf
PM
604XXX If any significant core contributor has died, we've added a short obituary
605here.
ff433f2d 606
39c4a6cf 607=head1 Acknowledgements
ff433f2d 608
39c4a6cf 609XXX Generate this with:
e831f11a 610
39c4a6cf 611 perl Porting/acknowledgements.pl v5.21.3..HEAD
f5b73711 612
44691e6f
AB
613=head1 Reporting Bugs
614
e08634c5
SH
615If you find what you think is a bug, you might check the articles recently
616posted to the comp.lang.perl.misc newsgroup and the perl bug database at
238894db 617https://rt.perl.org/ . There may also be information at
7ef8b31d 618http://www.perl.org/ , the Perl Home Page.
44691e6f 619
e08634c5
SH
620If you believe you have an unreported bug, please run the L<perlbug> program
621included with your release. Be sure to trim your bug down to a tiny but
622sufficient test case. Your bug report, along with the output of C<perl -V>,
623will be sent off to perlbug@perl.org to be analysed by the Perl porting team.
44691e6f
AB
624
625If the bug you are reporting has security implications, which make it
e08634c5
SH
626inappropriate to send to a publicly archived mailing list, then please send it
627to perl5-security-report@perl.org. This points to a closed subscription
628unarchived mailing list, which includes all the core committers, who will be
629able to help assess the impact of issues, figure out a resolution, and help
f9001595 630co-ordinate the release of patches to mitigate or fix the problem across all
e08634c5
SH
631platforms on which Perl is supported. Please only use this address for
632security issues in the Perl core, not for modules independently distributed on
633CPAN.
44691e6f
AB
634
635=head1 SEE ALSO
636
e08634c5
SH
637The F<Changes> file for an explanation of how to view exhaustive details on
638what changed.
44691e6f
AB
639
640The F<INSTALL> file for how to build Perl.
641
642The F<README> file for general stuff.
643
644The F<Artistic> and F<Copying> files for copyright information.
645
646=cut