This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
revise hash overhaul docs
[perl5.git] / pod / perldelta.pod
CommitLineData
44691e6f
AB
1=encoding utf8
2
3=head1 NAME
4
5ed58cbd 5perldelta - what is new for perl v5.18.0
e128ab2c 6
4eabcf70 7=head1 DESCRIPTION
6db9054f 8
5ed58cbd 9This document describes differences between the 5.16.0 release and the 5.18.0
e08634c5 10release.
6db9054f 11
d5f315e8 12If you are upgrading from an earlier release such as 5.14.0, first read
5ed58cbd 13L<perl5160delta>, which describes differences between 5.14.0 and 5.16.0.
3f01b192 14
5ed58cbd 15=head1 Core Enhancements
3f01b192 16
5ed58cbd 17=head2 New mechanism for experimental features
82d98f72 18
5ed58cbd 19Newly-added experimental features will now require this incantation:
82d98f72 20
5ed58cbd
RS
21 no warnings "experimental::feature_name";
22 use feature "feature_name"; # would warn without the prev line
23
24There is a new warnings category, called "experimental", containing
25warnings that the L<feature> pragma emits when enabling experimental
26features.
27
28Newly-added experimental features will also be given special warning IDs,
29which consist of "experimental::" followed by the name of the feature. (The
30plan is to extend this mechanism eventually to all warnings, to allow them
31to be enabled or disabled individually, and not just by category.)
32
33By saying
34
35 no warnings "experimental::feature_name";
36
37you are taking responsibility for any breakage that future changes to, or
38removal of, the feature may cause.
39
40Existing experimental features may begin emitting these warnings, too. Please
41consult L<perlexperiment> for information on which features are considered
42experimental.
43
44=head2 Hash overhaul
45
46Changes to the implementation of hashes in perl 5.18.0 will be one of the most
484d8ba1
DG
47visible changes to the behavior of existing code.
48
49By default, two distinct hash variables with identical keys and values will now
50provide their contents in a different order where it was previously identical.
51
52When encountering these changes, the key to cleaning up from them is to accept
53that B<hashes are unordered collections> and to act accordingly.
5ed58cbd
RS
54
55=head3 Hash randomization
56
57The seed used by Perl's hash function is now random. This means that the
58order which keys/values will be returned from functions like C<keys()>,
59C<values()>, and C<each()> will differ from run to run.
60
61This change was introduced to make Perl's hashes more robust to algorithmic
62complexity attacks, and also because we discovered that it exposes hash
63ordering dependency bugs and makes them easier to track down.
64
65Toolchain maintainers might want to invest in additional infrastructure to
66test for things like this. Running tests several times in a row and then
67comparing results will make it easier to spot hash order dependencies in
68code. Authors are strongly encouraged not to expose the key order of
69Perl's hashes to insecure audiences.
70
71Further, every hash has its own iteration order, which should make it much
72more difficult to determine what the current hash seed is.
73
74=head3 New hash function: Murmurhash-32
75
76We have switched Perl's hash function to use Murmurhash-32, and added build
77support for several other hash functions. This new function is expected to
78perform equivalently to the old one for shorter strings and is faster for
79hashing longer strings.
80
f105b7be 81=head3 PERL_HASH_SEED environment variable now takes a hex value
5ed58cbd 82
484d8ba1
DG
83C<PERL_HASH_SEED> no longer accepts an integer as a parameter;
84instead the value is expected to be a binary value encoded in a hex
85string, such as "0xf5867c55039dc724". This is to make the
86infrastructure support hash seeds of arbitrary lengths, which might
5ed58cbd
RS
87exceed that of an integer. (SipHash uses a 16 byte seed).
88
c40c48bb
RS
89=head3 PERL_PERTURB_KEYS environment variable added
90
f105b7be 91The C<PERL_PERTURB_KEYS> environment variable allows one to control the level of
c40c48bb
RS
92randomization applied to C<keys> and friends.
93
f105b7be 94When C<PERL_PERTURB_KEYS> is 0, perl will not randomize the key order at all. The
c40c48bb
RS
95chance that C<keys> changes due to an insert will be the same as in previous
96perls, basically only when the bucket size is changed.
97
f105b7be 98When C<PERL_PERTURB_KEYS> is 1, perl will randomize keys in a non-repeatable
c40c48bb
RS
99way. The chance that C<keys> changes due to an insert will be very high. This
100is the most secure and default mode.
101
f105b7be
KE
102When C<PERL_PERTURB_KEYS> is 2, perl will randomize keys in a repeatable way.
103Repeated runs of the same program should produce the same output every time.
c40c48bb 104
f105b7be
KE
105C<PERL_HASH_SEED> implies a non-default C<PERL_PERTURB_KEYS> setting. Setting
106C<PERL_HASH_SEED=0> (exactly one 0) implies C<PERL_PERTURB_KEYS=0> (hash key
107randomization disabled); settng C<PERL_HASH_SEED> to any other value implies
108C<PERL_PERTURB_KEYS=2> (deterministic and repeatable hash key randomization).
109Specifying C<PERL_PERTURB_KEYS> explicitly to a different level overrides this
c40c48bb
RS
110behavior.
111
5ed58cbd
RS
112=head3 Hash::Util::hash_seed() now returns a string
113
114Hash::Util::hash_seed() now returns a string instead of an integer. This
115is to make the infrastructure support hash seeds of arbitrary lengths
116which might exceed that of an integer. (SipHash uses a 16 byte seed).
117
118=head3 Output of PERL_HASH_SEED_DEBUG has been changed
119
120The environment variable PERL_HASH_SEED_DEBUG now makes perl show both the
f105b7be 121hash function perl was built with, I<and> the seed, in hex, in use for that
5ed58cbd
RS
122process. Code parsing this output, should it exist, must change to accommodate
123the new format. Example of the new format:
124
125 $ PERL_HASH_SEED_DEBUG=1 ./perl -e1
126 HASH_FUNCTION = MURMUR3 HASH_SEED = 0x1476bb9f
127
128=head2 Upgrade to Unicode 6.2
129
2e7bc647 130Perl now supports Unicode 6.2. A list of changes from Unicode
5ed58cbd
RS
1316.1 is at L<http://www.unicode.org/versions/Unicode6.2.0>.
132
133=head2 Character name aliases may now include non-Latin1-range characters
134
135It is possible to define your own names for characters for use in
136C<\N{...}>, C<charnames::vianame()>, etc. These names can now be
137comprised of characters from the whole Unicode range. This allows for
138names to be in your native language, and not just English. Certain
139restrictions apply to the characters that may be used (you can't define
140a name that has punctuation in it, for example). See L<charnames/CUSTOM
141ALIASES>.
142
143=head2 New DTrace probes
144
145The following new DTrace probes have been added:
14731ad1 146
337fb649 147=over 4
14731ad1 148
82d98f72 149=item *
14731ad1 150
5ed58cbd
RS
151C<op-entry>
152
153=item *
154
155C<loading-file>
156
157=item *
158
159C<loaded-file>
160
161=back
162
163=head2 C<${^LAST_FH}>
164
165This new variable provides access to the filehandle that was last read.
166This is the handle used by C<$.> and by C<tell> and C<eof> without
167arguments.
168
169=head2 Regular Expression Set Operations
170
171This is an B<experimental> feature to allow matching against the union,
172intersection, etc., of sets of code points, similar to
173L<Unicode::Regex::Set>. It can also be used to extend C</x> processing
174to [bracketed] character classes, and as a replacement of user-defined
175properties, allowing more complex expressions than they do. See
176L<perlrecharclass/Extended Bracketed Character Classes>.
177
178=head2 Lexical subroutines
179
180This new feature is still considered B<experimental>. To enable it:
181
182 use 5.018;
183 no warnings "experimental::lexical_subs";
184 use feature "lexical_subs";
185
186You can now declare subroutines with C<state sub foo>, C<my sub foo>, and
187C<our sub foo>. (C<state sub> requires that the "state" feature be
188enabled, unless you write it as C<CORE::state sub foo>.)
189
190C<state sub> creates a subroutine visible within the lexical scope in which
191it is declared. The subroutine is shared between calls to the outer sub.
192
193C<my sub> declares a lexical subroutine that is created each time the
194enclosing block is entered. C<state sub> is generally slightly faster than
195C<my sub>.
196
197C<our sub> declares a lexical alias to the package subroutine of the same
198name.
199
200For more information, see L<perlsub/Lexical Subroutines>.
201
202=head2 Computed Labels
203
204The loop controls C<next>, C<last> and C<redo>, and the special C<dump>
205operator, now allow arbitrary expressions to be used to compute labels at run
206time. Previously, any argument that was not a constant was treated as the
207empty string.
208
209=head2 More CORE:: subs
210
211Several more built-in functions have been added as subroutines to the
212CORE:: namespace - namely, those non-overridable keywords that can be
213implemented without custom parsers: C<defined>, C<delete>, C<exists>,
214C<glob>, C<pos>, C<protoytpe>, C<scalar>, C<split>, C<study>, and C<undef>.
215
216As some of these have prototypes, C<prototype('CORE::...')> has been
217changed to not make a distinction between overridable and non-overridable
218keywords. This is to make C<prototype('CORE::pos')> consistent with
219C<prototype(&CORE::pos)>.
220
221=head2 C<kill> with negative signal names
222
223C<kill> has always allowed a negative signal number, which kills the
224process group instead of a single process. It has also allowed signal
225names. But it did not behave consistently, because negative signal names
226were treated as 0. Now negative signals names like C<-INT> are supported
227and treated the same way as -2 [perl #112990].
228
229=head1 Security
230
231=head2 C<Storable> security warning in documentation
232
233The documentation for C<Storable> now includes a section which warns readers
234of the danger of accepting Storable documents from untrusted sources. The
235short version is that deserializing certain types of data can lead to loading
236modules and other code execution. This is documented behavior and wanted
237behavior, but this opens an attack vector for malicious entities.
238
239=head2 C<Locale::Maketext> allowed code injection via a malicious template
240
241If users could provide a translation string to Locale::Maketext, this could be
242used to invoke arbitrary Perl subroutines available in the current process.
243
244This has been fixed, but it is still possible to invoke any method provided by
245C<Locale::Maketext> itself or a subclass that you are using. One of these
246methods in turn will invoke the Perl core's C<sprintf> subroutine.
247
248In summary, allowing users to provide translation strings without auditing
249them is a bad idea.
250
251This vulnerability is documented in CVE-2012-6329.
252
253=head2 Avoid calling memset with a negative count
254
255Poorly written perl code that allows an attacker to specify the count to perl's
256C<x> string repeat operator can already cause a memory exhaustion
257denial-of-service attack. A flaw in versions of perl before 5.15.5 can escalate
258that into a heap buffer overrun; coupled with versions of glibc before 2.16, it
259possibly allows the execution of arbitrary code.
260
261The flaw addressed to this commit has been assigned identifier CVE-2012-5195
262and was researched by Tim Brown.
263
264=head1 Incompatible Changes
265
266=head2 See also: hash overhaul
267
268Some of the changes in the L<hash overhaul|/"Hash overhaul"> are not fully
269compatible with previous versions of perl. Please read that section.
270
271=head2 An unknown character name in C<\N{...}> is now a syntax error
272
273Previously, it warned, and the Unicode REPLACEMENT CHARACTER was
274substituted. Unicode now recommends that this situation be a syntax
275error. Also, the previous behavior led to some confusing warnings and
276behaviors, and since the REPLACEMENT CHARACTER has no use other than as
277a stand-in for some unknown character, any code that has this problem is
278buggy.
279
280=head2 Formerly deprecated characters in C<\N{}> character name aliases are now errors.
281
282Since v5.12.0, it has been deprecated to use certain characters in
283user-defined C<\N{...}> character names. These now cause a syntax
284error. For example, it is now an error to begin a name with a digit,
285such as in
286
287 my $undraftable = "\N{4F}"; # Syntax error!
288
289or to have commas anywhere in the name. See L<charnames/CUSTOM ALIASES>
290
291=head2 C<\N{BELL}> now refers to U+1F514 instead of U+0007
292
293Unicode 6.0 reused the name "BELL" for a different code point than it
294traditionally had meant. Since Perl v5.14, use of this name still
295referred to U+0007, but would raise a deprecation warning. Now, "BELL"
296refers to U+1F514, and the name for U+0007 is "ALERT". All the
297functions in L<charnames> have been correspondingly updated.
298
299=head2 New Restrictions in Multi-Character Case-Insensitive Matching in Regular Expression Bracketed Character Classes
300
301Unicode has now withdrawn their previous recommendation for regular
302expressions to automatically handle cases where a single character can
303match multiple characters case-insensitively, for example the letter
304LATIN SMALL LETTER SHARP S and the sequence C<ss>. This is because
305it turns out to be impracticable to do this correctly in all
306circumstances. Because Perl has tried to do this as best it can, it
307will continue to do so. (We are considering an option to turn it off.)
308However, a new restriction is being added on such matches when they
309occur in [bracketed] character classes. People were specifying
310things such as C</[\0-\xff]/i>, and being surprised that it matches the
311two character sequence C<ss> (since LATIN SMALL LETTER SHARP S occurs in
312this range). This behavior is also inconsistent with using a
313property instead of a range: C<\p{Block=Latin1}> also includes LATIN
314SMALL LETTER SHARP S, but C</[\p{Block=Latin1}]/i> does not match C<ss>.
315The new rule is that for there to be a multi-character case-insensitive
316match within a bracketed character class, the character must be
317explicitly listed, and not as an end point of a range. This more
318closely obeys the Principle of Least Astonishment. See
319L<perlrecharclass/Bracketed Character Classes>. Note that a bug [perl
320#89774], now fixed as part of this change, prevented the previous
321behavior from working fully.
322
323=head2 Explicit rules for variable names and identifiers
324
325Due to an oversight, length-one variable names in 5.16 were completely
326unrestricted, and opened the door to several kinds of insanity. As of
3275.18, these now follow the rules of other identifiers, in addition
328to accepting characters that match the C<\p{POSIX_Punct}> property.
329
330There are no longer any differences in the parsing of identifiers
331specified as C<$...> or C<${...}>; previously, they were dealt with in
332different parts of the core, and so had slightly different behavior. For
333instance, C<${foo:bar}> was a legal variable name. Since they are now
334both parsed by the same code, that is no longer the case.
335
336=head2 C<\s> in regular expressions now matches a Vertical Tab
337
338No one could recall why C<\s> didn't match C<\cK>, the vertical tab.
339Now it does. Given the extreme rarity of that character, very little
340breakage is expected.
341
342=head2 C</(?{})/> and C</(??{})/> have been heavily reworked
343
344The implementation of this feature has been almost completely rewritten.
345Although its main intent is to fix bugs, some behaviors, especially
346related to the scope of lexical variables, will have changed. This is
347described more fully in the L</Selected Bug Fixes> section.
348
349=head2 Stricter parsing of substitution replacement
350
351It is no longer possible to abuse the way the parser parses C<s///e> like
352this:
353
354 %_=(_,"Just another ");
355 $_="Perl hacker,\n";
356 s//_}->{_/e;print
357
358=head2 C<given> now aliases the global C<$_>
359
360Instead of assigning to an implicit lexical C<$_>, C<given> now makes the
361global C<$_> an alias for its argument, just like C<foreach>. However, it
362still uses lexical C<$_> if there is lexical C<$_> in scope (again, just like
363C<foreach>) [perl #114020].
364
365=head2 Lexical C<$_> is now experimental
366
367Since it was introduced in Perl 5.10, it has caused much confusion with no
368obvious solution:
369
370=over
829397b9
TC
371
372=item *
373
5ed58cbd
RS
374Various modules (e.g., List::Util) expect callback routines to use the
375global C<$_>. C<use List::Util 'first'; my $_; first { $_ == 1 } @list>
376does not work as one would expect.
71e6aba6
RS
377
378=item *
379
5ed58cbd
RS
380A C<my $_> declaration earlier in the same file can cause confusing closure
381warnings.
71e6aba6
RS
382
383=item *
384
5ed58cbd
RS
385The "_" subroutine prototype character allows called subroutines to access
386your lexical C<$_>, so it is not really private after all.
2426c394 387
71e6aba6
RS
388=item *
389
5ed58cbd
RS
390Nevertheless, subroutines with a "(@)" prototype and methods cannot access
391the caller's lexical C<$_>, unless they are written in XS.
71e6aba6
RS
392
393=item *
394
5ed58cbd
RS
395But even XS routines cannot access a lexical C<$_> declared, not in the
396calling subroutine, but in an outer scope, iff that subroutine happened not
397to mention C<$_> or use any operators that default to C<$_>.
398
399=back
400
401It is our hope that lexical C<$_> can be rehabilitated, but this may
402cause changes in its behavior. Please use it with caution until it
403becomes stable.
404
405=head2 readline() with C<$/ = \N> now reads N characters, not N bytes
406
407Previously, when reading from a stream with I/O layers such as
408C<encoding>, the readline() function, otherwise known as the C<< <> >>
409operator, would read I<N> bytes from the top-most layer. [perl #79960]
410
411Now, I<N> characters are read instead.
412
413There is no change in behaviour when reading from streams with no
414extra layers, since bytes map exactly to characters.
415
416=head2 Overridden C<glob> is now passed one argument
417
418C<glob> overrides used to be passed a magical undocumented second argument
419that identified the caller. Nothing on CPAN was using this, and it got in
420the way of a bug fix, so it was removed. If you really need to identify
421the caller, see L<Devel::Callsite> on CPAN.
422
423=head2 Here-doc parsing
424
425The body of a here-document inside a quote-like operator now always begins
426on the line after the "<<foo" marker. Previously, it was documented to
427begin on the line following the containing quote-like operator, but that
428was only sometimes the case [perl #114040].
429
430=head2 Alphanumeric operators must now be separated from the closing
431delimiter of regular expressions
432
433You may no longer write something like:
434
435 m/a/and 1
436
437Instead you must write
438
439 m/a/ and 1
440
441with whitespace separating the operator from the closing delimiter of
442the regular expression. Not having whitespace has resulted in a
443deprecation warning since Perl v5.14.0.
444
445=head2 qw(...) can no longer be used as parentheses
446
447C<qw> lists used to fool the parser into thinking they were always
448surrounded by parentheses. This permitted some surprising constructions
449such as C<foreach $x qw(a b c) {...}>, which should really be written
450C<foreach $x (qw(a b c)) {...}>. These would sometimes get the lexer into
451the wrong state, so they didn't fully work, and the similar C<foreach qw(a
452b c) {...}> that one might expect to be permitted never worked at all.
453
454This side effect of C<qw> has now been abolished. It has been deprecated
455since Perl 5.13.11. It is now necessary to use real parentheses
456everywhere that the grammar calls for them.
457
458=head2 Interaction of lexical and default warnings
459
460Turning on any lexical warnings used first to disable all default warnings
461if lexical warnings were not already enabled:
462
463 $*; # deprecation warning
464 use warnings "void";
465 $#; # void warning; no deprecation warning
466
f105b7be 467Now, the C<debugging>, C<deprecated>, C<glob>, C<inplace> and C<malloc> warnings
5ed58cbd
RS
468categories are left on when turning on lexical warnings (unless they are
469turned off by C<no warnings>, of course).
470
471This may cause deprecation warnings to occur in code that used to be free
472of warnings.
473
474Those are the only categories consisting only of default warnings. Default
f105b7be
KE
475warnings in other categories are still disabled by C<< use warnings "category" >>,
476as we do not yet have the infrastructure for controlling
5ed58cbd
RS
477individual warnings.
478
479=head2 C<state sub> and C<our sub>
480
481Due to an accident of history, C<state sub> and C<our sub> were equivalent
482to a plain C<sub>, so one could even create an anonymous sub with
483C<our sub { ... }>. These are now disallowed outside of the "lexical_subs"
484feature. Under the "lexical_subs" feature they have new meanings described
485in L<perlsub/Lexical Subroutines>.
486
487=head2 Defined values stored in environment are forced to byte strings
488
489A value stored in an environment variable has always been stringified. In this
490release, it is converted to be only a byte string. First, it is forced to be a
491only a string. Then if the string is utf8 and the equivalent of
492C<utf8::downgrade()> works, that result is used; otherwise, the equivalent of
493C<utf8::encode()> is used, and a warning is issued about wide characters
494(L</Diagnostics>).
495
496=head2 C<require> dies for unreadable files
497
498When C<require> encounters an unreadable file, it now dies. It used to
499ignore the file and continue searching the directories in C<@INC>
500[perl #113422].
501
502=head2 C<gv_fetchmeth_*> and SUPER
503
504The various C<gv_fetchmeth_*> XS functions used to treat a package whose
f105b7be
KE
505named ended with C<::SUPER> specially. A method lookup on the C<Foo::SUPER>
506package would be treated as a C<SUPER> method lookup on the C<Foo> package. This
507is no longer the case. To do a C<SUPER> lookup, pass the C<Foo> stash and the
508C<GV_SUPER> flag.
5ed58cbd
RS
509
510=head2 C<split>'s first argument is more consistently interpreted
511
512After some changes earlier in 5.17, C<split>'s behavior has been
513simplified: if the PATTERN argument evaluates to a literal string
514containing one space, it is treated the way that a I<literal> string
515containing one space once was.
516
517=head1 Deprecations
518
519=head2 Deprecated modules
520
521The following modules will be removed from the core distribution in a
522future release, and should be installed from CPAN instead. Distributions
523on CPAN which require these should add them to their prerequisites.
f105b7be 524The core versions of these modules will issue C<"deprecated">-category
5ed58cbd
RS
525warnings.
526
527You can silence these deprecation warnings by installing the modules
528in question from CPAN.
529
530=over
531
532=item L<Archive::Extract>
533
534=item L<B::Lint>
535
536=item L<B::Lint::Debug>
537
538=item L<CPANPLUS> and all included C<CPANPLUS::*> modules
539
540=item L<Devel::InnerPackage>
541
542=item L<encoding>
543
544=item L<Log::Message>
545
546=item L<Log::Message::Config>
547
548=item L<Log::Message::Handlers>
549
550=item L<Log::Message::Item>
551
552=item L<Log::Message::Simple>
553
554=item L<Module::Pluggable>
555
556=item L<Module::Pluggable::Object>
557
558=item L<Object::Accessor>
559
560=item L<Pod::LaTeX>
561
562=item L<Term::UI>
563
564=item L<Term::UI::History>
565
566=back
567
568=head2 Deprecated Utilities
569
570The following utilities will be removed from the core distribution in a
571future release as their associated modules have been deprecated. They
572will remain available with the applicable CPAN distribution.
573
574=over
575
576=item L<cpanp>
577
578=item C<cpanp-run-perl>
579
580=item L<cpan2dist>
581
582These items are part of the C<CPANPLUS> distribution.
583
584=item L<pod2latex>
585
586This item is part of the C<Pod::LaTeX> distribution.
587
588=back
589
590=head2 PL_sv_objcount
591
592This interpreter-global variable used to track the total number of
593Perl objects in the interpreter. It is no longer maintained and will
594be removed altogether in Perl 5.20.
595
596=head2 Five additional characters should be escaped in patterns with C</x>
597
598When a regular expression pattern is compiled with C</x>, Perl treats 6
599characters as white space to ignore, such as SPACE and TAB. However,
600Unicode recommends 11 characters be treated thusly. We will conform
601with this in a future Perl version. In the meantime, use of any of the
602missing characters will raise a deprecation warning, unless turned off.
603The five characters are:
f105b7be
KE
604
605 U+0085 NEXT LINE,
606 U+200E LEFT-TO-RIGHT MARK,
607 U+200F RIGHT-TO-LEFT MARK,
608 U+2028 LINE SEPARATOR,
609
5ed58cbd 610and
f105b7be
KE
611
612 U+2029 PARAGRAPH SEPARATOR.
5ed58cbd
RS
613
614=head2 User-defined charnames with surprising whitespace
615
616A user-defined character name with trailing or multiple spaces in a row is
617likely a typo. This now generates a warning when defined, on the assumption
618that uses of it will be unlikely to include the excess whitespace.
619
620=head2 Various XS-callable functions are now deprecated
621
622All the functions used to classify characters will be removed from a
623future version of Perl, and should not be used. With participating C
624compilers (e.g., gcc), compiling any file that uses any of these will
625generate a warning. These were not intended for public use; there are
626equivalent, faster, macros for most of them.
2e7bc647 627See L<perlapi/Character classes>. The complete list is:
5ed58cbd
RS
628C<is_uni_alnum>, C<is_uni_alnumc>, C<is_uni_alnumc_lc>,
629C<is_uni_alnum_lc>, C<is_uni_alpha>, C<is_uni_alpha_lc>,
630C<is_uni_ascii>, C<is_uni_ascii_lc>, C<is_uni_blank>,
631C<is_uni_blank_lc>, C<is_uni_cntrl>, C<is_uni_cntrl_lc>,
632C<is_uni_digit>, C<is_uni_digit_lc>, C<is_uni_graph>,
633C<is_uni_graph_lc>, C<is_uni_idfirst>, C<is_uni_idfirst_lc>,
634C<is_uni_lower>, C<is_uni_lower_lc>, C<is_uni_print>,
635C<is_uni_print_lc>, C<is_uni_punct>, C<is_uni_punct_lc>,
636C<is_uni_space>, C<is_uni_space_lc>, C<is_uni_upper>,
637C<is_uni_upper_lc>, C<is_uni_xdigit>, C<is_uni_xdigit_lc>,
638C<is_utf8_alnum>, C<is_utf8_alnumc>, C<is_utf8_alpha>,
639C<is_utf8_ascii>, C<is_utf8_blank>, C<is_utf8_char>,
640C<is_utf8_cntrl>, C<is_utf8_digit>, C<is_utf8_graph>,
641C<is_utf8_idcont>, C<is_utf8_idfirst>, C<is_utf8_lower>,
642C<is_utf8_mark>, C<is_utf8_perl_space>, C<is_utf8_perl_word>,
643C<is_utf8_posix_digit>, C<is_utf8_print>, C<is_utf8_punct>,
644C<is_utf8_space>, C<is_utf8_upper>, C<is_utf8_xdigit>,
645C<is_utf8_xidcont>, C<is_utf8_xidfirst>.
646
647In addition these three functions that have never worked properly are
648deprecated:
649C<to_uni_lower_lc>, C<to_uni_title_lc>, and C<to_uni_upper_lc>.
650
f105b7be 651=head2 Certain rare uses of backslashes within regexes are now deprecated
5ed58cbd
RS
652
653There are three pairs of characters that Perl recognizes as
654metacharacters in regular expression patterns: C<{}>, C<[]>, and C<()>.
655These can be used as well to delimit patterns, as in:
656
657 m{foo}
658 s(foo)(bar)
659
660Since they are metacharacters, they have special meaning to regular
661expression patterns, and it turns out that you can't turn off that
662special meaning by the normal means of preceding them with a backslash,
f105b7be 663if you use them, paired, within a pattern delimited by them. For
5ed58cbd
RS
664example, in
665
666 m{foo\{1,3\}}
667
668the backslashes do not change the behavior, and this matches
669S<C<"f o">> followed by one to three more occurrences of C<"o">.
670
671Usages like this, where they are interpreted as metacharacters, are
672exceedingly rare; we think there are none, for example, in all of CPAN.
673Hence, this deprecation should affect very little code. It does give
674notice, however, that any such code needs to change, which will in turn
675allow us to change the behavior in future Perl versions so that the
676backslashes do have an effect, and without fear that we are silently
677breaking any existing code.
678
d5f315e8
KW
679=head2 Splitting the tokens C<(?> and C<(*> in regular expressions
680
681A deprecation warning is now raised if the C<(> and C<?> are separated
682by white space or comments in C<(?...)> regular expression constructs.
683Similarly, if the C<(> and C<*> are separated in C<(*VERB...)>
684constructs.
685
e0a1dec5
LT
686=head2 Pre-PerlIO IO implementations
687
688Perl supports being built without PerlIO proper, using a stdio or sfio
689wrapper instead. A perl build like this will not support IO layers and
690thus Unicode IO, making it rather handicapped.
691
692PerlIO supports a C<stdio> layer if stdio use is desired, and similarly a
693sfio layer could be produced.
694
5ed58cbd
RS
695=head1 Future Deprecations
696
697=over
71e6aba6
RS
698
699=item *
700
4263dd11 701Platforms without support infrastructure
5ed58cbd
RS
702
703Both Windows CE and z/OS have been historically under-maintained, and are
704currently neither successfully building nor regularly being smoke tested.
705Efforts are underway to change this situation, but it should not be taken for
706granted that the platforms are safe and supported. If they do not become
707buildable and regularly smoked, support for them may be actively removed in
708future releases. If you have an interest in these platforms and you can lend
709your time, expertise, or hardware to help support these platforms, please let
710the perl development effort know by emailing C<perl5-porters@perl.org>.
711
712Some platforms that appear otherwise entirely dead are also on the short list
713for removal between now and 5.20.0:
714
715=over
716
717=item DG/UX
718
719=item NeXT
720
721=back
1993add8
RS
722
723=item *
724
5ed58cbd
RS
725Swapping of $< and $>
726
727For more information about this future deprecation, see L<the relevant RT
728ticket|https://rt.perl.org/rt3/Ticket/Display.html?id=96212>.
71e6aba6
RS
729
730=item *
731
5ed58cbd 732C<microperl>, long broken and of unclear present purpose, will be removed.
71e6aba6
RS
733
734=item *
735
5ed58cbd
RS
736Revamping C<< "\Q" >> semantics in double-quotish strings when combined with
737other escapes.
738
739There are several bugs and inconsistencies involving combinations
740of C<\Q> and escapes like C<\x>, C<\L>, etc., within a C<\Q...\E> pair.
741These need to be fixed, and doing so will necessarily change current
742behavior. The changes have not yet been settled.
71e6aba6 743
d5f315e8
KW
744=item *
745
746Use of C<$^>, where C<^> stands for any actual (non-printing) C0 control
747character will be disallowed in a future Perl version. Use C<${^}>
748instead (where again C<^> stands for a control character),
749or better, C<$^A> , where C<^> this time is a caret (CIRCUMFLEX ACCENT),
750and C<A> stands for any of the characters listed at the end of
751L<perlebcdic/OPERATOR DIFFERENCES>.
752
337fb649 753=back
2426c394 754
5ed58cbd
RS
755=head1 Performance Enhancements
756
757=over 4
2426c394 758
5ed58cbd 759=item *
2426c394 760
5ed58cbd
RS
761Lists of lexical variable declarations (C<my($x, $y)>) are now optimised
762down to a single op and are hence faster than before.
2426c394 763
5ed58cbd 764=item *
2426c394 765
5ed58cbd
RS
766A new C preprocessor define C<NO_TAINT_SUPPORT> was added that, if set,
767disables Perl's taint support altogether. Using the -T or -t command
768line flags will cause a fatal error. Beware that both core tests as
769well as many a CPAN distribution's tests will fail with this change. On
770the upside, it provides a small performance benefit due to reduced
771branching.
2426c394 772
5ed58cbd
RS
773B<Do not enable this unless you know exactly what you are getting yourself
774into.>
775
776=item *
777
778C<pack> with constant arguments is now constant folded in most cases
779[perl #113470].
780
781=item *
782
783Speed up in regular expression matching against Unicode properties. The
784largest gain is for C<\X>, the Unicode "extended grapheme cluster." The
785gain for it is about 35% - 40%. Bracketed character classes, e.g.,
786C<[0-9\x{100}]> containing code points above 255 are also now faster.
787
788=item *
789
790On platforms supporting it, several former macros are now implemented as static
791inline functions. This should speed things up slightly on non-GCC platforms.
792
793=item *
794
66f62cf6
RS
795The optimisation of hashes in boolean context has been extended to
796affect C<scalar(%hash)>, C<%hash ? ... : ...>, and C<sub { %hash || ... }>.
5ed58cbd
RS
797
798=item *
799
f105b7be 800Filetest operators manage the stack in a fractionally more efficient manner.
5ed58cbd
RS
801
802=item *
803
804Globs used in a numeric context are now numified directly in most cases,
f105b7be 805rather than being numified via stringification.
5ed58cbd
RS
806
807=item *
808
809The C<x> repetition operator is now folded to a single constant at compile
810time if called in scalar context with constant operands and no parentheses
811around the left operand.
812
813=back
814
815=head1 Modules and Pragmata
816
817=head2 New Modules and Pragmata
2426c394 818
337fb649 819=over 4
982110e0 820
82d98f72 821=item *
2426c394 822
5ed58cbd
RS
823L<Config::Perl::V> version 0.16 has been added as a dual-lifed module.
824It provides structured data retrieval of C<perl -V> output including
825information only known to the C<perl> binary and not available via L<Config>.
826
827=back
828
829=head2 Updated Modules and Pragmata
830
831This is only an overview of selected module updates. For a complete
832list of updates, run:
833
f105b7be 834 $ corelist --diff 5.16.0 5.18.0
5ed58cbd 835
f105b7be 836You can substitute your favorite version in place of 5.16.0, too.
5ed58cbd
RS
837
838=over 4
33392251
BF
839
840=item *
841
5ed58cbd
RS
842L<XXX> has been upgraded from version A.xx to B.yy.
843
844=back
845
846=head2 Removed Modules and Pragmata
847
848=over
33392251
BF
849
850=item *
851
5ed58cbd
RS
852L<Version::Requirements> has been removed from the core distribution. It is
853available under a different name: L<CPAN::Meta::Requirements>.
2426c394 854
337fb649 855=back
2426c394 856
5ed58cbd 857=head1 Documentation
19718730 858
5ed58cbd
RS
859=head2 Changes to Existing Documentation
860
861=head3 L<perlcheat>
82d98f72 862
5a6a30f4 863=over 4
b7c7d786 864
5ed58cbd
RS
865=item *
866
867L<perlcheat> has been reorganized, and a few new sections were added.
868
869=back
870
871=head3 L<perldata>
872
873=over 4
82d98f72 874
5ed58cbd 875=item *
d2d1e842 876
5ed58cbd
RS
877Now explicitly documents the behaviour of hash initializer lists that
878contain duplicate keys.
f355e93d 879
5a6a30f4 880=back
f355e93d 881
5ed58cbd 882=head3 L<perldiag>
19718730 883
19718730 884=over 4
e14ac59b 885
5ed58cbd
RS
886=item *
887
888The explanation of symbolic references being prevented by "strict refs"
889now doesn't assume that the reader knows what symbolic references are.
890
891=back
9f351b45 892
5ed58cbd 893=head3 L<perlfaq>
9f351b45 894
5ed58cbd 895=over 4
9f351b45 896
5ed58cbd 897=item *
7cf3104f 898
5ed58cbd 899L<perlfaq> has been synchronized with version 5.0150040 from CPAN.
12719193 900
6253ee75 901=back
216cf7fc 902
5ed58cbd 903=head3 L<perlfunc>
f5b73711 904
5ed58cbd
RS
905=over 4
906
907=item *
a75569c0 908
5ed58cbd 909The return value of C<pipe> is now documented.
a75569c0 910
5ed58cbd 911=item *
a75569c0 912
5ed58cbd
RS
913Clarified documentation of C<our>.
914
915=back
916
917=head3 L<perlop>
918
919=over 4
920
921=item *
922
923Loop control verbs (C<dump>, C<goto>, C<next>, C<last> and C<redo>) have always
924had the same precedence as assignment operators, but this was not documented
925until now.
926
927=back
928
929=head3 Diagnostics
930
931The following additions or changes have been made to diagnostic output,
932including warnings and fatal error messages. For the complete list of
933diagnostic messages, see L<perldiag>.
934
935XXX New or changed warnings emitted by the core's C<C> code go here. Also
936include any changes in L<perldiag> that reconcile it to the C<C> code.
937
938=head2 New Diagnostics
939
940XXX Newly added diagnostic messages go under here, separated into New Errors
941and New Warnings
942
943=head3 New Errors
944
945=over 4
946
947=item *
948
949L<Unterminated delimiter for here document|perldiag/"Unterminated delimiter for here document">
950
951This message now occurs when a here document label has an initial quotation
952mark but the final quotation mark is missing.
953
954This replaces a bogus and misleading error message about not finding the label
955itself [perl #114104].
956
957=item *
958
959L<panic: child pseudo-process was never scheduled|perldiag/"panic: child pseudo-process was never scheduled">
960
961This error is thrown when a child pseudo-process in the ithreads implementation
962on Windows was not scheduled within the time period allowed and therefore was
963not able to initialize properly [perl #88840].
964
965=item *
966
967L<Group name must start with a non-digit word character in regex; marked by <-- HERE in mE<sol>%sE<sol>|perldiag/"Group name must start with a non-digit word character in regex; marked by <-- HERE in m/%s/">
968
969This error has been added for C<(?&0)>, which is invalid. It used to
970produce an incomprehensible error message [perl #101666].
971
972=item *
973
974L<Can't use an undefined value as a subroutine reference|perldiag/"Can't use an undefined value as %s reference">
975
976Calling an undefined value as a subroutine now produces this error message.
977It used to, but was accidentally disabled, first in Perl 5.004 for
978non-magical variables, and then in Perl 5.14 for magical (e.g., tied)
979variables. It has now been restored. In the mean time, undef was treated
980as an empty string [perl #113576].
981
982=item *
983
984L<Experimental "%s" subs not enabled|perldiag/"Experimental "%s" subs not enabled">
985
986To use lexical subs, you must first enable them:
987
988 no warnings 'experimental::lexical_subs';
989 use feature 'lexical_subs';
990 my sub foo { ... }
991
992=back
993
994=head3 New Warnings
995
996=over 4
997
998=item *
999
1000XXX: This needs more detail.
1001
1002Strings with code points over 0xFF may not be mapped into in-memory file
1003handles
1004
1005=item *
1006
1007L<'%s' resolved to '\o{%s}%d'|perldiag/"'%s' resolved to '\o{%s}%d'">
1008
1009=item *
1010
1011L<'Trailing white-space in a charnames alias definition is deprecated'|perldiag/"Trailing white-space in a charnames alias definition is deprecated">
1012
1013=item *
1014
1015L<'A sequence of multiple spaces in a charnames alias definition is deprecated'|perldiag/"A sequence of multiple spaces in a charnames alias definition is deprecated">
1016
1017=item *
1018
1019L<'Passing malformed UTF-8 to "%s" is deprecated'|perldiag/"Passing malformed UTF-8 to "%s" is deprecated">
1020
1021=item *
1022
1023L<Subroutine "&%s" is not available|perldiag/"Subroutine "&%s" is not available">
1024
1025(W closure) During compilation, an inner named subroutine or eval is
1026attempting to capture an outer lexical subroutine that is not currently
1027available. This can happen for one of two reasons. First, the lexical
1028subroutine may be declared in an outer anonymous subroutine that has not
1029yet been created. (Remember that named subs are created at compile time,
1030while anonymous subs are created at run-time.) For example,
1031
1032 sub { my sub a {...} sub f { \&a } }
1033
1034At the time that f is created, it can't capture the current the "a" sub,
1035since the anonymous subroutine hasn't been created yet. Conversely, the
1036following won't give a warning since the anonymous subroutine has by now
1037been created and is live:
1038
1039 sub { my sub a {...} eval 'sub f { \&a }' }->();
1040
1041The second situation is caused by an eval accessing a variable that has
1042gone out of scope, for example,
1043
1044 sub f {
1045 my sub a {...}
1046 sub { eval '\&a' }
1047 }
1048 f()->();
1049
1050Here, when the '\&a' in the eval is being compiled, f() is not currently
1051being executed, so its &a is not available for capture.
1052
1053=item *
1054
1055L<"%s" subroutine &%s masks earlier declaration in same %s|perldiag/"%s" subroutine &%s masks earlier declaration in same %s>
1056
1057(W misc) A "my" or "state" subroutine has been redeclared in the
1058current scope or statement, effectively eliminating all access to
1059the previous instance. This is almost always a typographical error.
1060Note that the earlier subroutine will still exist until the end of
1061the scope or until all closure references to it are destroyed.
1062
1063=item *
1064
1065L<The %s feature is experimental|perldiag/"The %s feature is experimental">
1066
1067(S experimental) This warning is emitted if you enable an experimental
1068feature via C<use feature>. Simply suppress the warning if you want
1069to use the feature, but know that in doing so you are taking the risk
1070of using an experimental feature which may change or be removed in a
1071future Perl version:
1072
1073 no warnings "experimental::lexical_subs";
1074 use feature "lexical_subs";
1075
1076=item *
1077
1078L<sleep(%u) too large|perldiag/"sleep(%u) too large">
1079
1080(W overflow) You called C<sleep> with a number that was larger than it can
1081reliably handle and C<sleep> probably slept for less time than requested.
1082
1083=item *
1084
1085L<Wide character in setenv|perldiag/"Wide character in %s">
1086
1087Attempts to put wide characters into environment variables via C<%ENV> now
1088provoke this warning.
1089
1090=item *
1091
1092"L<Invalid negative number (%s) in chr|perldiag/"Invalid negative number (%s) in chr">"
1093
1094C<chr()> now warns when passed a negative value [perl #83048].
1095
1096=item *
1097
1098"L<Integer overflow in srand|perldiag/"Integer overflow in srand">"
1099
1100C<srand()> now warns when passed a value that doesn't fit in a C<UV> (since the
1101value will be truncated rather than overflowing) [perl #40605].
1102
1103=item *
1104
1105"L<-i used with no filenames on the command line, reading from STDIN|perldiag/"-i used with no filenames on the command line, reading from STDIN">"
1106
1107Running perl with the C<-i> flag now warns if no input files are provided on
1108the command line [perl #113410].
1109
1110=back
1111
1112=head2 Changes to Existing Diagnostics
1113
1114=over 4
1115
1116=item *
1117
1118L<$* is no longer supported|perldiag/"$* is no longer supported">
1119
1120The warning that use of C<$*> and C<$#> is no longer supported is now
1121generated for every location that references them. Previously it would fail
1122to be generated if another variable using the same typeglob was seen first
1123(e.g. C<@*> before C<$*>), and would not be generated for the second and
1124subsequent uses. (It's hard to fix the failure to generate warnings at all
1125without also generating them every time, and warning every time is
1126consistent with the warnings that C<$[> used to generate.)
1127
1128=item *
1129
1130The warnings for C<\b{> and C<\B{> were added. They are a deprecation
1131warning which should be turned off by that category. One should not
1132have to turn off regular regexp warnings as well to get rid of these.
1133
1134=item *
1135
1136L<Constant(%s): Call to &{$^H{%s}} did not return a defined value|perldiag/Constant(%s): Call to &{$^H{%s}} did not return a defined value>
1137
1138Constant overloading that returns C<undef> results in this error message.
1139For numeric constants, it used to say "Constant(undef)". "undef" has been
1140replaced with the number itself.
1141
1142=item *
1143
1144The error produced when a module cannot be loaded now includes a hint that
1145the module may need to be installed: "Can't locate hopping.pm in @INC (you
1146may need to install the hopping module) (@INC contains: ...)"
1147
1148=item *
1149
1150L<vector argument not supported with alpha versions|perldiag/vector argument not supported with alpha versions>
1151
1152This warning was not suppressable, even with C<no warnings>. Now it is
1153suppressible, and has been moved from the "internal" category to the
1154"printf" category.
1155
1156=item *
1157
1158C<< Can't do {n,m} with n > m in regex; marked by <-- HERE in m/%s/ >>
1159
1160This fatal error has been turned into a warning that reads:
1161
1162L<< Quantifier {n,m} with n > m can't match in regex | perldiag/Quantifier {n,m} with n > m can't match in regex >>
1163
1164(W regexp) Minima should be less than or equal to maxima. If you really want
1165your regexp to match something 0 times, just put {0}.
1166
1167=item *
1168
1169The "Runaway prototype" warning that occurs in bizarre cases has been
1170removed as being unhelpful and inconsistent.
1171
1172=item *
1173
1174The "Not a format reference" error has been removed, as the only case in
1175which it could be triggered was a bug.
1176
1177=item *
1178
1179The "Unable to create sub named %s" error has been removed for the same
1180reason.
1181
1182=item *
1183
1184The 'Can't use "my %s" in sort comparison' error has been downgraded to a
1185warning, '"my %s" used in sort comparison' (with 'state' instead of 'my'
1186for state variables). In addition, the heuristics for guessing whether
1187lexical $a or $b has been misused have been improved to generate fewer
1188false positives. Lexical $a and $b are no longer disallowed if they are
1189outside the sort block. Also, a named unary or list operator inside the
1190sort block no longer causes the $a or $b to be ignored [perl #86136].
1191
1192=back
1193
1194=head1 Utility Changes
1195
1196=head3 L<h2xs>
1197
1198=over 4
1199
1200=item *
1201
1202F<h2xs> no longer produces invalid code for empty defines. [perl #20636]
1203
1204=back
1205
1206=head1 Configuration and Compilation
1207
1208=over 4
1209
1210=item *
1211
1212Added C<useversionedarchname> option to Configure
1213
1214When set, it includes 'api_versionstring' in 'archname'. E.g.
1215x86_64-linux-5.13.6-thread-multi. It is unset by default.
1216
1217This feature was requested by Tim Bunce, who observed that
f105b7be 1218C<INSTALL_BASE> creates a library structure that does not
5ed58cbd
RS
1219differentiate by perl version. Instead, it places architecture
1220specific files in "$install_base/lib/perl5/$archname". This makes
f105b7be 1221it difficult to use a common C<INSTALL_BASE> library path with
5ed58cbd
RS
1222multiple versions of perl.
1223
f105b7be 1224By setting C<-Duseversionedarchname>, the $archname will be
c2959982 1225distinct for architecture I<and> API version, allowing mixed use of
f105b7be 1226C<INSTALL_BASE>.
5ed58cbd
RS
1227
1228=item *
1229
ff772877
RS
1230Add a C<PERL_NO_INLINE_FUNCTIONS> option
1231
f105b7be 1232If C<PERL_NO_INLINE_FUNCTIONS> is defined, don't include "inline.h"
ff772877
RS
1233
1234This permits test code to include the perl headers for definitions without
1235creating a link dependency on the perl library (which may not exist yet).
1236
1237=item *
1238
5ed58cbd
RS
1239Configure will honour the external C<MAILDOMAIN> environment variable, if set.
1240
1241=item *
1242
1243C<installman> no longer ignores the silent option
1244
1245=item *
1246
1247Both C<META.yml> and C<META.json> files are now included in the distribution.
1248
1249=item *
1250
1251F<Configure> will now correctly detect C<isblank()> when compiling with a C++
1252compiler.
1253
1254=item *
1255
1256The pager detection in F<Configure> has been improved to allow responses which
1257specify options after the program name, e.g. B</usr/bin/less -R>, if the user
1258accepts the default value. This helps B<perldoc> when handling ANSI escapes
1259[perl #72156].
1260
1261=back
1262
1263=head1 Testing
1264
1265=over 4
1266
1267=item *
1268
1269The test suite now has a section for tests that require very large amounts
1270of memory. These tests won't run by default; they can be enabled by
1271setting the C<PERL_TEST_MEMORY> environment variable to the number of
1272gibibytes of memory that may be safely used.
1273
1274=back
1275
1276=head1 Platform Support
1277
1278=head2 Discontinued Platforms
1279
1280=over 4
1281
1282=item BeOS
1283
1284BeOS was an operating system for personal computers developed by Be Inc,
1285initially for their BeBox hardware. The OS Haiku was written as an open
1286source replacement for/continuation of BeOS, and its perl port is current and
1287actively maintained.
1288
1289=item UTS Global
1290
1291Support code relating to UTS global has been removed. UTS was a mainframe
1292version of System V created by Amdahl, subsequently sold to UTS Global. The
1293port has not been touched since before Perl 5.8.0, and UTS Global is now
1294defunct.
1295
1296=item VM/ESA
1297
1298Support for VM/ESA has been removed. The port was tested on 2.3.0, which
1299IBM ended service on in March 2002. 2.4.0 ended service in June 2003, and
1300was superseded by Z/VM. The current version of Z/VM is V6.2.0, and scheduled
1301for end of service on 2015/04/30.
1302
1303=item MPE/IX
1304
1305Support for MPE/IX has been removed.
1306
1307=item EPOC
1308
1309Support code relating to EPOC has been removed. EPOC was a family of
1310operating systems developed by Psion for mobile devices. It was the
1311predecessor of Symbian. The port was last updated in April 2002.
1312
1313=item Rhapsody
1314
1315Support for Rhapsody has been removed.
1316
1317=back
1318
1319=head2 Platform-Specific Notes
1320
1321=head3 AIX
1322
1323Configure now always adds C<-qlanglvl=extc99> to the CC flags on AIX when
1324using xlC. This will make it easier to compile a number of XS-based modules
1325that assume C99 [perl #113778].
1326
1327=head3 clang++
1328
1329There is now a workaround for a compiler bug that prevented compiling
1330with clang++ since Perl 5.15.7 [perl #112786].
1331
1332=head3 C++
1333
1334When compiling the Perl core as C++ (which is only semi-supported), the
1335mathom functions are now compiled as C<extern "C">, to ensure proper
1336binary compatibility. (However, binary compatibility isn't generally
1337guaranteed anyway in the situations where this would matter.)
1338
1339=head3 Darwin
1340
1341Stop hardcoding an alignment on 8 byte boundaries to fix builds using
1342-Dusemorebits.
1343
1344=head3 Haiku
1345
1346Perl should now work out of the box on Haiku R1 Alpha 4.
1347
1348=head3 MidnightBSD
1349
1350C<libc_r> was removed from recent versions of MidnightBSD and older versions
1351work better with C<pthread>. Threading is now enabled using C<pthread> which
1352corrects build errors with threading enabled on 0.4-CURRENT.
1353
1354=head3 Solaris
1355
1356In Configure, avoid running sed commands with flags not supported on Solaris.
1357
1358=head3 VMS
1359
1360=over
1361
1362=item *
1363
1364Where possible, the case of filenames and command-line arguments is now
1365preserved by enabling the CRTL features C<DECC$EFS_CASE_PRESERVE> and
1366C<DECC$ARGV_PARSE_STYLE> at start-up time. The latter only takes effect
1367when extended parse is enabled in the process from which Perl is run.
1368
1369=item *
1370
1371The character set for Extended Filename Syntax (EFS) is now enabled by default
1372on VMS. Among other things, this provides better handling of dots in directory
05f5908f 1373names, multiple dots in filenames, and spaces in filenames. To obtain the old
5ed58cbd
RS
1374behavior, set the logical name C<DECC$EFS_CHARSET> to C<DISABLE>.
1375
1376=item *
1377
05f5908f 1378Fixed linking on builds configured with C<-Dusemymalloc=y>.
5ed58cbd
RS
1379
1380=item *
1381
05f5908f
CB
1382Experimental support for building Perl with the HP C++ compiler is available
1383by configuring with C<-Dusecxx>.
5ed58cbd
RS
1384
1385=item *
1386
1387All C header files from the top-level directory of the distribution are now
1388installed on VMS, providing consistency with a long-standing practice on other
1389platforms. Previously only a subset were installed, which broke non-core
1390extension builds for extensions that depended on the missing include files.
1391
1392=item *
1393
1394Quotes are now removed from the command verb (but not the parameters) for
1395commands spawned via C<system>, backticks, or a piped C<open>. Previously,
1396quotes on the verb were passed through to DCL, which would fail to recognize
1397the command. Also, if the verb is actually a path to an image or command
1398procedure on an ODS-5 volume, quoting it now allows the path to contain spaces.
1399
1400=item *
1401
1402The B<a2p> build has been fixed for the HP C++ compiler on OpenVMS.
1403
1404=back
1405
1406=head3 Win32
1407
1408=over
1409
1410=item *
1411
1412Perl can now be built using Microsoft's Visual C++ 2012 compiler by specifying
1413CCTYPE=MSVC110 (or MSVC110FREE if you are using the free Express edition for
1414Windows Desktop) in F<win32/Makefile>.
1415
1416=item *
1417
f105b7be 1418The option to build without C<USE_SOCKETS_AS_HANDLES> has been removed.
5ed58cbd
RS
1419
1420=item *
1421
1422Fixed a problem where perl could crash while cleaning up threads (including the
1423main thread) in threaded debugging builds on Win32 and possibly other platforms
1424[perl #114496].
1425
1426=item *
1427
1428A rare race condition that would lead to L<sleep|perlfunc/sleep> taking more
1429time than requested, and possibly even hanging, has been fixed [perl #33096].
1430
1431=item *
1432
1433C<link> on Win32 now attempts to set C<$!> to more appropriate values
1434based on the Win32 API error code. [perl #112272]
1435
1436Perl no longer mangles the environment block, e.g. when launching a new
1437sub-process, when the environment contains non-ASCII characters. Known
1438problems still remain, however, when the environment contains characters
1439outside of the current ANSI codepage (e.g. see the item about Unicode in
1440C<%ENV> in L<http://perl5.git.perl.org/perl.git/blob/HEAD:/Porting/todo.pod>).
1441[perl #113536]
1442
1443=item *
1444
1445Building perl with some Windows compilers used to fail due to a problem
1446with miniperl's C<glob> operator (which uses the C<perlglob> program)
1447deleting the PATH environment variable [perl #113798].
1448
1449=item *
1450
f105b7be 1451A new makefile option, C<USE_64_BIT_INT>, has been added to the Windows
5ed58cbd
RS
1452makefiles. Set this to "define" when building a 32-bit perl if you want
1453it to use 64-bit integers.
1454
1455Machine code size reductions, already made to the DLLs of XS modules in
1456Perl 5.17.2, have now been extended to the perl DLL itself.
1457
1458Building with VC++ 6.0 was inadvertently broken in Perl 5.17.2 but has
1459now been fixed again.
1460
1461=back
1462
1463=head3 WinCE
1464
1465Building on WinCE is now possible once again, although more work is required
1466to fully restore a clean build.
1467
1468=head1 Internal Changes
1469
1470=over
1471
1472=item *
1473
4263dd11 1474Synonyms for the misleadingly named C<av_len()> have been created:
5ed58cbd
RS
1475C<av_top_index()> and C<av_tindex>. All three of these return the
1476number of the highest index in the array, not the number of elements it
1477contains.
1478
1479=item *
1480
1481SvUPGRADE() is no longer an expression. Originally this macro (and its
1482underlying function, sv_upgrade()) were documented as boolean, although
1483in reality they always croaked on error and never returned false. In 2005
1484the documentation was updated to specify a void return value, but
1485SvUPGRADE() was left always returning 1 for backwards compatibility. This
1486has now been removed, and SvUPGRADE() is now a statement with no return
1487value.
1488
1489So this is now a syntax error:
1490
1491 if (!SvUPGRADE(sv)) { croak(...); }
1492
1493If you have code like that, simply replace it with
1494
1495 SvUPGRADE(sv);
1496
1497or to to avoid compiler warnings with older perls, possibly
1498
1499 (void)SvUPGRADE(sv);
1500
1501=item *
1502
1503Perl has a new copy-on-write mechanism that allows any SvPOK scalar to be
1504upgraded to a copy-on-write scalar. A reference count on the string buffer
1505is stored in the string buffer itself.
1506
1507This breaks a few XS modules by allowing copy-on-write scalars to go
1508through code paths that never encountered them before.
1509
1510This behaviour can still be disabled by running F<Configure> with
1511B<-Accflags=-DPERL_NO_COW>. This option will probably be removed in Perl
15125.20.
1513
1514=item *
1515
1516Copy-on-write no longer uses the SvFAKE and SvREADONLY flags. Hence,
1517SvREADONLY indicates a true read-only SV.
1518
1519Use the SvIsCOW macro (as before) to identify a copy-on-write scalar.
1520
1521=item *
1522
f105b7be 1523C<PL_glob_index> is gone.
5ed58cbd
RS
1524
1525=item *
1526
1527The private Perl_croak_no_modify has had its context parameter removed. It is
1528now has a void prototype. Users of the public API croak_no_modify remain
1529unaffected.
1530
1531=item *
1532
1533Copy-on-write (shared hash key) scalars are no longer marked read-only.
1534C<SvREADONLY> returns false on such an SV, but C<SvIsCOW> still returns
1535true.
1536
1537=item *
1538
1539A new op type, C<OP_PADRANGE> has been introduced. The perl peephole
1540optimiser will, where possible, substitute a single padrange op for a
1541pushmark followed by one or more pad ops, and possibly also skipping list
1542and nextstate ops. In addition, the op can carry out the tasks associated
f105b7be 1543with the RHS of a C<< my(...) = @_ >> assignment, so those ops may be optimised
5ed58cbd
RS
1544away too.
1545
1546=item *
1547
1548Case-insensitive matching inside a [bracketed] character class with a
1549multi-character fold no longer excludes one of the possibilities in the
1550circumstances that it used to. [perl #89774].
1551
1552=item *
1553
1554C<PL_formfeed> has been removed.
1555
1556=item *
1557
1558The regular expression engine no longer reads one byte past the end of the
1559target string. While for all internally well-formed scalars this should
1560never have been a problem, this change facilitates clever tricks with
1561string buffers in CPAN modules. [perl #73542]
1562
1563=item *
1564
1565Inside a BEGIN block, C<PL_compcv> now points to the currently-compiling
1566subroutine, rather than the BEGIN block itself.
1567
1568=item *
1569
1570C<mg_length> has been deprecated.
1571
1572=item *
1573
1574C<sv_len> now always returns a byte count and C<sv_len_utf8> a character
1575count. Previously, C<sv_len> and C<sv_len_utf8> were both buggy and would
1576sometimes returns bytes and sometimes characters. C<sv_len_utf8> no longer
1577assumes that its argument is in UTF8. Neither of these creates UTF8 caches
1578for tied or overloaded values or for non-PVs any more.
1579
1580=item *
1581
1582C<sv_mortalcopy> now copies string buffers of shared hash key scalars when
1583called from XS modules [perl #79824].
1584
1585=item *
1586
1587C<RXf_SPLIT> and C<RXf_SKIPWHITE> are no longer used. They are now
1588#defined as 0.
1589
1590=item *
1591
1592The new C<RXf_MODIFIES_VARS> flag can be set by custom regular expression
1593engines to indicate that the execution of the regular expression may cause
1594variables to be modified. This lets C<s///> know to skip certain
1595optimisations. Perl's own regular expression engine sets this flag for the
1596special backtracking verbs that set $REGMARK and $REGERROR.
1597
1598=item *
1599
1600The APIs for accessing lexical pads have changed considerably.
1601
1602C<PADLIST>s are now longer C<AV>s, but their own type instead.
1603C<PADLIST>s now contain a C<PAD> and a C<PADNAMELIST> of C<PADNAME>s,
1604rather than C<AV>s for the pad and the list of pad names. C<PAD>s,
1605C<PADNAMELIST>s, and C<PADNAME>s are to be accessed as such through the
1606newly added pad API instead of the plain C<AV> and C<SV> APIs. See
1607L<perlapi> for details.
1608
1609=item *
1610
1611In the regex API, the numbered capture callbacks are passed an index
1612indicating what match variable is being accessed. There are special
1613index values for the C<$`, $&, $&> variables. Previously the same three
1614values were used to retrieve C<${^PREMATCH}, ${^MATCH}, ${^POSTMATCH}>
1615too, but these have now been assigned three separate values. See
1616L<perlreapi/Numbered capture callbacks>.
1617
1618=item *
1619
1620C<PL_sawampersand> was previously a boolean indicating that any of
1621C<$`, $&, $&> had been seen; it now contains three one-bit flags
1622indicating the presence of each of the variables individually.
1623
1624=item *
1625
1626The C<CV *> typemap entry now supports C<&{}> overloading and typeglobs,
1627just like C<&{...}> [perl #96872].
1628
1629=item *
1630
1631The C<SVf_AMAGIC> flag to indicate overloading is now on the stash, not the
1632object. It is now set automatically whenever a method or @ISA changes, so
1633its meaning has changed, too. It now means "potentially overloaded". When
1634the overload table is calculated, the flag is automatically turned off if
1635there is no overloading, so there should be no noticeable slowdown.
1636
1637The staleness of the overload tables is now checked when overload methods
1638are invoked, rather than during C<bless>.
1639
1640"A" magic is gone. The changes to the handling of the C<SVf_AMAGIC> flag
1641eliminate the need for it.
1642
1643C<PL_amagic_generation> has been removed as no longer necessary. For XS
1644modules, it is now a macro alias to C<PL_na>.
1645
1646The fallback overload setting is now stored in a stash entry separate from
1647overloadedness itself.
1648
1649=item *
1650
1651The character-processing code has been cleaned up in places. The changes
1652should be operationally invisible.
1653
1654=item *
1655
1656The C<study> function was made a no-op in 5.16. It was simply disabled via
1657a C<return> statement; the code was left in place. Now the code supporting
1658what C<study> used to do has been removed.
1659
1660=item *
1661
1662Under threaded perls, there is no longer a separate PV allocated for every
1663COP to store its package name (C<< cop->stashpv >>). Instead, there is an
1664offset (C<< cop->stashoff >>) into the new C<PL_stashpad> array, which
1665holds stash pointers.
1666
1667=item *
1668
1669In the pluggable regex API, the C<regexp_engine> struct has acquired a new
1670field C<op_comp>, which is currently just for perl's internal use, and
f105b7be 1671should be initialized to NULL by other regex plugin modules.
5ed58cbd
RS
1672
1673=item *
1674
1675A new function C<alloccoptash> has been added to the API, but is considered
1676experimental. See L<perlapi>.
1677
1678=item *
1679
1680Perl used to implement get magic in a way that would sometimes hide bugs in
4263dd11 1681code that could call mg_get() too many times on magical values. This hiding of
5ed58cbd
RS
1682errors no longer occurs, so long-standing bugs may become visible now. If
1683you see magic-related errors in XS code, check to make sure it, together
1684with the Perl API functions it uses, calls mg_get() only once on SvGMAGICAL()
1685values.
1686
1687=item *
1688
1689OP allocation for CVs now uses a slab allocator. This simplifies
1690memory management for OPs allocated to a CV, so cleaning up after a
1691compilation error is simpler and safer [perl #111462][perl #112312].
1692
1693=item *
1694
f105b7be 1695C<PERL_DEBUG_READONLY_OPS> has been rewritten to work with the new slab
5ed58cbd
RS
1696allocator, allowing it to catch more violations than before.
1697
1698=item *
1699
f105b7be
KE
1700The old slab allocator for ops, which was only enabled for C<PERL_IMPLICIT_SYS>
1701and C<PERL_DEBUG_READONLY_OPS>, has been retired.
5ed58cbd
RS
1702
1703=back
1704
1705=head1 Selected Bug Fixes
1706
1707=over 4
1708
1709=item *
1710
1711Here-doc terminators no longer require a terminating newline character when
1712they occur at the end of a file. This was already the case at the end of a
1713string eval [perl #65838].
1714
1715=item *
1716
f105b7be 1717C<-DPERL_GLOBAL_STRUCT> builds now free the global struct B<after>
5ed58cbd
RS
1718they've finished using it.
1719
1720=item *
1721
1722A trailing '/' on a path in @INC will no longer have an additional '/'
1723appended.
1724
1725=item *
1726
1727The C<:crlf> layer now works when unread data doesn't fit into its own
1728buffer. [perl #112244].
1729
1730=item *
1731
1732C<ungetc()> now handles UTF-8 encoded data. [perl #116322].
1733
1734=item *
1735
1736A bug in the core typemap caused any C types that map to the T_BOOL core
1737typemap entry to not be set, updated, or modified when the T_BOOL variable was
1738used in an OUTPUT: section with an exception for RETVAL. T_BOOL in an INPUT:
1739section was not affected. Using a T_BOOL return type for an XSUB (RETVAL)
1740was not affected. A side effect of fixing this bug is, if a T_BOOL is specified
1741in the OUTPUT: section (which previous did nothing to the SV), and a read only
1742SV (literal) is passed to the XSUB, croaks like "Modification of a read-only
1743value attempted" will happen. [perl #115796]
1744
1745=item *
1746
1747On many platforms, providing a directory name as the script name caused perl
1748to do nothing and report success. It should now universally report an error
1749and exit nonzero. [perl #61362]
1750
1751=item *
1752
1753C<sort {undef} ...> under fatal warnings no longer crashes. It had
1754begun crashing in Perl 5.16.
1755
1756=item *
1757
1758Stashes blessed into each other
1759(C<bless \%Foo::, 'Bar'; bless \%Bar::, 'Foo'>) no longer result in double
1760frees. This bug started happening in Perl 5.16.
1761
1762=item *
1763
1764Numerous memory leaks have been fixed, mostly involving fatal warnings and
1765syntax errors.
1766
1767=item *
1768
1769Some failed regular expression matches such as C<'f' =~ /../g> were not
1770resetting C<pos>. Also, "match-once" patterns (C<m?...?g>) failed to reset
1771it, too, when invoked a second time [perl #23180].
1772
1773=item *
1774
1775Accessing C<$&> after a pattern match now works if it had not been seen
1776before the match. I.e., this applies to C<${'&'}> (under C<no strict>) and
1777C<eval '$&'>. The same applies to C<$'> and C<$`> [perl #4289].
1778
1779=item *
1780
1781Several bugs involving C<local *ISA> and C<local *Foo::> causing stale
1782MRO caches have been fixed.
1783
1784=item *
1785
1786Defining a subroutine when its typeglob has been aliased no longer results
1787in stale method caches. This bug was introduced in Perl 5.10.
1788
1789=item *
1790
1791Localising a typeglob containing a subroutine when the typeglob's package
1792has been deleted from its parent stash no longer produces an error. This
1793bug was introduced in Perl 5.14.
1794
1795=item *
1796
1797Under some circumstances, C<local *method=...> would fail to reset method
1798caches upon scope exit.
1799
1800=item *
1801
1802C</[.foo.]/> is no longer an error, but produces a warning (as before) and
1803is treated as C</[.fo]/> [perl #115818].
1804
1805=item *
1806
1807C<goto $tied_var> now calls FETCH before deciding what type of goto
1808(subroutine or label) this is.
1809
1810=item *
1811
1812Renaming packages through glob assignment
1813(C<*Foo:: = *Bar::; *Bar:: = *Baz::>) in combination with C<m?...?> and
1814C<reset> no longer makes threaded builds crash.
1815
1816=item *
1817
1818A number of bugs related to assigning a list to hash have been fixed. Many of
1819these involve lists with repeated keys like C<(1, 1, 1, 1)>.
1820
1821=over 4
1822
1823=item *
1824
1825The expression C<scalar(%h = (1, 1, 1, 1))> now returns C<4>, not C<2>.
1826
1827=item *
1828
1829The return value of C<%h = (1, 1, 1)> in list context was wrong. Previously
1830this would return C<(1, undef, 1)>, now it returns C<(1, undef)>.
1831
1832=item *
1833
1834Perl now issues the same warning on C<($s, %h) = (1, {})> as it does for
1835C<(%h) = ({})>, "Reference found where even-sized list expected".
1836
1837=item *
1838
1839A number of additional edge cases in list assignment to hashes were
1840corrected. For more details see commit 23b7025ebc.
1841
1842=back
1843
1844=item *
1845
1846Attributes applied to lexical variables no longer leak memory.
1847[perl #114764]
1848
1849=item *
1850
1851C<dump>, C<goto>, C<last>, C<next>, C<redo> or C<require> followed by a
1852bareword (or version) and then an infix operator is no longer a syntax
1853error. It used to be for those infix operators (like C<+>) that have a
1854different meaning where a term is expected. [perl #105924]
1855
1856=item *
1857
1858C<require a::b . 1> and C<require a::b + 1> no longer produce erroneous
1859ambiguity warnings. [perl #107002]
1860
1861=item *
1862
1863Class method calls are now allowed on any string, and not just strings
1864beginning with an alphanumeric character. [perl #105922]
1865
1866=item *
1867
1868An empty pattern created with C<qr//> used in C<m///> no longer triggers
1869the "empty pattern reuses last pattern" behaviour. [perl #96230]
1870
1871=item *
1872
1873Tying a hash during iteration no longer results in a memory leak.
1874
1875=item *
1876
1877Freeing a tied hash during iteration no longer results in a memory leak.
1878
1879=item *
1880
1881List assignment to a tied array or hash that dies on STORE no longer
1882results in a memory leak.
1883
1884=item *
1885
1886If the hint hash (C<%^H>) is tied, compile-time scope entry (which copies
1887the hint hash) no longer leaks memory if FETCH dies. [perl #107000]
1888
1889=item *
1890
1891Constant folding no longer inappropriately triggers the special
1892C<split " "> behaviour. [perl #94490]
1893
1894=item *
1895
1896C<defined scalar(@array)>, C<defined do { &foo }>, and similar constructs
1897now treat the argument to C<defined> as a simple scalar. [perl #97466]
1898
1899=item *
1900
1901Running a custom debugging that defines no C<*DB::DB> glob or provides a
1902subroutine stub for C<&DB::DB> no longer results in a crash, but an error
1903instead. [perl #114990]
1904
1905=item *
1906
1907C<reset ""> now matches its documentation. C<reset> only resets C<m?...?>
1908patterns when called with no argument. An empty string for an argument now
1909does nothing. (It used to be treated as no argument.) [perl #97958]
1910
1911=item *
1912
1913C<printf> with an argument returning an empty list no longer reads past the
1914end of the stack, resulting in erratic behaviour. [perl #77094]
1915
1916=item *
1917
1918C<--subname> no longer produces erroneous ambiguity warnings.
1919[perl #77240]
1920
1921=item *
1922
1923C<v10> is now allowed as a label or package name. This was inadvertently
1924broken when v-strings were added in Perl 5.6. [perl #56880]
1925
1926=item *
1927
1928C<length>, C<pos>, C<substr> and C<sprintf> could be confused by ties,
1929overloading, references and typeglobs if the stringification of such
1930changed the internal representation to or from UTF8. [perl #114410]
1931
1932=item *
1933
1934utf8::encode now calls FETCH and STORE on tied variables. utf8::decode now
1935calls STORE (it was already calling FETCH).
1936
1937=item *
1938
1939C<$tied =~ s/$non_utf8/$utf8/> no longer loops infinitely if the tied
1940variable returns a Latin-1 string, shared hash key scalar, or reference or
2ae351f8 1941typeglob that stringifies as ASCII or Latin-1. This was a regression from
5ed58cbd
RS
19425.12.x.
1943
1944=item *
1945
1946C<s///> without /e is now better at detecting when it needs to forego
1947certain optimisations, fixing some buggy cases:
1948
1949=over
1950
1951=item *
1952
1953Match variables in certain constructs (C<&&>, C<||>, C<..> and others) in
1954the replacement part; e.g., C<s/(.)/$l{$a||$1}/g>. [perl #26986]
1955
1956=item *
1957
1958Aliases to match variables in the replacement.
1959
1960=item *
1961
1962C<$REGERROR> or C<$REGMARK> in the replacement. [perl #49190]
1963
1964=item *
1965
1966An empty pattern (C<s//$foo/>) that causes the last-successful pattern to
1967be used, when that pattern contains code blocks that modify the variables
1968in the replacement.
1969
1970=back
1971
1972=item *
1973
1974The taintedness of the replacement string no longer affects the taintedness
1975of the return value of C<s///e>.
1976
1977=item *
1978
1979The C<$|> autoflush variable is created on-the-fly when needed. If this
1980happened (e.g., if it was mentioned in a module or eval) when the
1981currently-selected filehandle was a typeglob with an empty IO slot, it used
1982to crash. [perl #115206]
1983
1984=item *
1985
1986Line numbers at the end of a string eval are no longer off by one.
1987[perl #114658]
1988
1989=item *
1990
1991@INC filters (subroutines returned by subroutines in @INC) that set $_ to a
1992copy-on-write scalar no longer cause the parser to modify that string
1993buffer in place.
1994
1995=item *
1996
1997C<length($object)> no longer returns the undefined value if the object has
1998string overloading that returns undef. [perl #115260]
1999
2000=item *
2001
2002The use of C<PL_stashcache>, the stash name lookup cache for method calls, has
2003been restored,
2004
2005Commit da6b625f78f5f133 in August 2011 inadvertently broke the code that looks
2006up values in C<PL_stashcache>. As it's a only cache, quite correctly everything
2007carried on working without it.
2008
2009=item *
2010
2011The error "Can't localize through a reference" had disappeared in 5.16.0
2012when C<local %$ref> appeared on the last line of an lvalue subroutine.
2013This error disappeared for C<\local %$ref> in perl 5.8.1. It has now
2014been restored.
2015
2016=item *
2017
2018The parsing of here-docs has been improved significantly, fixing several
2019parsing bugs and crashes and one memory leak, and correcting wrong
2020subsequent line numbers under certain conditions.
2021
2022=item *
2023
2024Inside an eval, the error message for an unterminated here-doc no longer
2025has a newline in the middle of it [perl #70836].
2026
2027=item *
2028
2029A substitution inside a substitution pattern (C<s/${s|||}//>) no longer
2030confuses the parser.
2031
2032=item *
2033
2034It may be an odd place to allow comments, but C<s//"" # hello/e> has
2035always worked, I<unless> there happens to be a null character before the
2036first #. Now it works even in the presence of nulls.
2037
2038=item *
2039
2040An invalid range in C<tr///> or C<y///> no longer results in a memory leak.
2041
2042=item *
2043
2044String eval no longer treats a semicolon-delimited quote-like operator at
2045the very end (C<eval 'q;;'>) as a syntax error.
2046
2047=item *
2048
2049C<< warn {$_ => 1} + 1 >> is no longer a syntax error. The parser used to
2050get confused with certain list operators followed by an anonymous hash and
2051then an infix operator that shares its form with a unary operator.
2052
2053=item *
2054
2055C<(caller $n)[6]> (which gives the text of the eval) used to return the
2056actual parser buffer. Modifying it could result in crashes. Now it always
2057returns a copy. The string returned no longer has "\n;" tacked on to the
2058end. The returned text also includes here-doc bodies, which used to be
2059omitted.
2060
2061=item *
2062
2063Reset the utf8 position cache when accessing magical variables to avoid the
2064string buffer and the utf8 position cache getting out of sync
2065[perl #114410].
2066
2067=item *
2068
2069Various cases of get magic being called twice for magical utf8 strings have been
2070fixed.
2071
2072=item *
2073
2074This code (when not in the presence of C<$&> etc)
2075
2076 $_ = 'x' x 1_000_000;
2077 1 while /(.)/;
2078
2079used to skip the buffer copy for performance reasons, but suffered from C<$1>
2080etc changing if the original string changed. That's now been fixed.
2081
2082=item *
2083
2084Perl doesn't use PerlIO anymore to report out of memory messages, as PerlIO
2085might attempt to allocate more memory.
2086
2087=item *
2088
2089In a regular expression, if something is quantified with C<{n,m}> where
2090C<S<n E<gt> m>>, it can't possibly match. Previously this was a fatal
2091error, but now is merely a warning (and that something won't match).
2092[perl #82954].
2093
2094=item *
2095
2096It used to be possible for formats defined in subroutines that have
2097subsequently been undefined and redefined to close over variables in the
2098wrong pad (the newly-defined enclosing sub), resulting in crashes or
2099"Bizarre copy" errors.
2100
2101=item *
2102
2103Redefinition of XSUBs at run time could produce warnings with the wrong
2104line number.
2105
2106=item *
2107
2108The %vd sprintf format does not support version objects for alpha versions.
2109It used to output the format itself (%vd) when passed an alpha version, and
2110also emit an "Invalid conversion in printf" warning. It no longer does,
2111but produces the empty string in the output. It also no longer leaks
2112memory in this case.
2113
2114=item *
2115
2116C<< $obj->SUPER::method >> calls in the main package could fail if the
2117SUPER package had already been accessed by other means.
2118
2119=item *
2120
f105b7be 2121Stash aliasing (C<< *foo:: = *bar:: >>) no longer causes SUPER calls to ignore
5ed58cbd
RS
2122changes to methods or @ISA or use the wrong package.
2123
2124=item *
2125
2126Method calls on packages whose names end in ::SUPER are no longer treated
2127as SUPER method calls, resulting in failure to find the method.
2128Furthermore, defining subroutines in such packages no longer causes them to
2129be found by SUPER method calls on the containing package [perl #114924].
2130
2131=item *
2132
2133C<\w> now matches the code points U+200C (ZERO WIDTH NON-JOINER) and U+200D
2134(ZERO WIDTH JOINER). C<\W> no longer matches these. This change is because
2135Unicode corrected their definition of what C<\w> should match.
2136
2137=item *
2138
2139C<dump LABEL> no longer leaks its label.
2140
2141=item *
2142
2143Constant folding no longer changes the behaviour of functions like C<stat()>
2144and C<truncate()> that can take either filenames or handles.
2145C<stat 1 ? foo : bar> nows treats its argument as a file name (since it is an
2146arbitrary expression), rather than the handle "foo".
2147
2148=item *
2149
2150C<truncate FOO, $len> no longer falls back to treating "FOO" as a file name if
2151the filehandle has been deleted. This was broken in Perl 5.16.0.
2152
2153=item *
2154
2155Subroutine redefinitions after sub-to-glob and glob-to-glob assignments no
2156longer cause double frees or panic messages.
2157
2158=item *
2159
2160C<s///> now turns vstrings into plain strings when performing a substitution,
2161even if the resulting string is the same (C<s/a/a/>).
2162
2163=item *
2164
2165Prototype mismatch warnings no longer erroneously treat constant subs as having
2166no prototype when they actually have "".
2167
2168=item *
2169
2170Constant subroutines and forward declarations no longer prevent prototype
2171mismatch warnings from omitting the sub name.
2172
2173=item *
2174
2175C<undef> on a subroutine now clears call checkers.
2176
2177=item *
2178
2179The C<ref> operator started leaking memory on blessed objects in Perl 5.16.0.
2180This has been fixed [perl #114340].
2181
2182=item *
2183
2184C<use> no longer tries to parse its arguments as a statement, making
2185C<use constant { () };> a syntax error [perl #114222].
2186
2187=item *
2188
2189On debugging builds, "uninitialized" warnings inside formats no longer cause
2190assertion failures.
2191
2192=item *
2193
2194On debugging builds, subroutines nested inside formats no longer cause
2195assertion failures [perl #78550].
2196
2197=item *
2198
2199Formats and C<use> statements are now permitted inside formats.
2200
2201=item *
2202
2203C<print $x> and C<sub { print $x }-E<gt>()> now always produce the same output.
2204It was possible for the latter to refuse to close over $x if the variable was
2205not active; e.g., if it was defined outside a currently-running named
2206subroutine.
2207
2208=item *
2209
2210Similarly, C<print $x> and C<print eval '$x'> now produce the same output.
2211This also allows "my $x if 0" variables to be seen in the debugger [perl
2212#114018].
2213
2214=item *
2215
2216Formats called recursively no longer stomp on their own lexical variables, but
2217each recursive call has its own set of lexicals.
2218
2219=item *
2220
2221Attempting to free an active format or the handle associated with it no longer
2222results in a crash.
2223
2224=item *
2225
2226Format parsing no longer gets confused by braces, semicolons and low-precedence
2227operators. It used to be possible to use braces as format delimiters (instead
2228of C<=> and C<.>), but only sometimes. Semicolons and low-precedence operators
2229in format argument lines no longer confuse the parser into ignoring the line's
2230return value. In format argument lines, braces can now be used for anonymous
2231hashes, instead of being treated always as C<do> blocks.
2232
2233=item *
2234
2235Formats can now be nested inside code blocks in regular expressions and other
2236quoted constructs (C</(?{...})/> and C<qq/${...}/>) [perl #114040].
2237
2238=item *
2239
2240Formats are no longer created after compilation errors.
2241
2242=item *
2243
2244Under debugging builds, the B<-DA> command line option started crashing in Perl
22455.16.0. It has been fixed [perl #114368].
2246
2247=item *
2248
2249A potential deadlock scenario involving the premature termination of a pseudo-
2250forked child in a Windows build with ithreads enabled has been fixed. This
2251resolves the common problem of the F<t/op/fork.t> test hanging on Windows [perl
2252#88840].
2253
2254=item *
2255
5ed58cbd
RS
2256The code which generates errors from C<require()> could potentially read one or
2257two bytes before the start of the filename for filenames less than three bytes
2258long and ending C</\.p?\z/>. This has now been fixed. Note that it could
2259never have happened with module names given to C<use()> or C<require()> anyway.
2260
2261=item *
2262
2263The handling of pathnames of modules given to C<require()> has been made
2264thread-safe on VMS.
2265
2266=item *
2267
d85cd26b
RS
2268Non-blocking sockets have been fixed on VMS.
2269
2270=item *
2271
5ed58cbd
RS
2272A bug in the compilation of a C</(?{})/> expression which affected the TryCatch
2273test suite has been fixed [perl #114242].
2274
2275=item *
2276
2277Pod can now be nested in code inside a quoted construct outside of a string
2278eval. This used to work only within string evals [perl #114040].
2279
2280=item *
2281
2282C<goto ''> now looks for an empty label, producing the "goto must have
2283label" error message, instead of exiting the program [perl #111794].
2284
2285=item *
2286
2287C<goto "\0"> now dies with "Can't find label" instead of "goto must have
2288label".
2289
2290=item *
2291
2292The C function C<hv_store> used to result in crashes when used on C<%^H>
2293[perl #111000].
2294
2295=item *
2296
2297A call checker attached to a closure prototype via C<cv_set_call_checker>
2298is now copied to closures cloned from it. So C<cv_set_call_checker> now
2299works inside an attribute handler for a closure.
2300
2301=item *
2302
2303Writing to C<$^N> used to have no effect. Now it croaks with "Modification
2304of a read-only value" by default, but that can be overridden by a custom
2305regular expression engine, as with C<$1> [perl #112184].
2306
2307=item *
2308
2309C<undef> on a control character glob (C<undef *^H>) no longer emits an
2310erroneous warning about ambiguity [perl #112456].
2311
2312=item *
2313
2314For efficiency's sake, many operators and built-in functions return the
2315same scalar each time. Lvalue subroutines and subroutines in the CORE::
2316namespace were allowing this implementation detail to leak through.
2317C<print &CORE::uc("a"), &CORE::uc("b")> used to print "BB". The same thing
2318would happen with an lvalue subroutine returning the return value of C<uc>.
2319Now the value is copied in such cases.
2320
2321=item *
2322
2323C<method {}> syntax with an empty block or a block returning an empty list
2324used to crash or use some random value left on the stack as its invocant.
2325Now it produces an error.
2326
2327=item *
2328
2329C<vec> now works with extremely large offsets (E<gt>2 GB) [perl #111730].
2330
2331=item *
2332
2333Changes to overload settings now take effect immediately, as do changes to
2334inheritance that affect overloading. They used to take effect only after
2335C<bless>.
2336
2337Objects that were created before a class had any overloading used to remain
2338non-overloaded even if the class gained overloading through C<use overload>
2339or @ISA changes, and even after C<bless>. This has been fixed
2340[perl #112708].
2341
2342=item *
2343
2344Classes with overloading can now inherit fallback values.
2345
2346=item *
2347
2348Overloading was not respecting a fallback value of 0 if there were
2349overloaded objects on both sides of an assignment operator like C<+=>
2350[perl #111856].
2351
2352=item *
2353
2354C<pos> now croaks with hash and array arguments, instead of producing
2355erroneous warnings.
2356
2357=item *
2358
2359C<while(each %h)> now implies C<while(defined($_ = each %h))>, like
2360C<readline> and C<readdir>.
2361
2362=item *
2363
2364Subs in the CORE:: namespace no longer crash after C<undef *_> when called
2365with no argument list (C<&CORE::time> with no parentheses).
2366
2367=item *
2368
2369C<unpack> no longer produces the "'/' must follow a numeric type in unpack"
2370error when it is the data that are at fault [perl #60204].
2371
2372=item *
2373
2374C<join> and C<"@array"> now call FETCH only once on a tied C<$">
2375[perl #8931].
2376
2377=item *
2378
2379Some subroutine calls generated by compiling core ops affected by a
2380C<CORE::GLOBAL> override had op checking performed twice. The checking
2381is always idempotent for pure Perl code, but the double checking can
2382matter when custom call checkers are involved.
2383
2384=item *
2385
2386A race condition used to exist around fork that could cause a signal sent to
2387the parent to be handled by both parent and child. Signals are now blocked
2388briefly around fork to prevent this from happening [perl #82580].
2389
2390=item *
2391
2392The implementation of code blocks in regular expressions, such as C<(?{})>
2393and C<(??{})>, has been heavily reworked to eliminate a whole slew of bugs.
2394The main user-visible changes are:
2395
2396=over 4
2397
2398=item *
2399
2400Code blocks within patterns are now parsed in the same pass as the
2401surrounding code; in particular it is no longer necessary to have balanced
2402braces: this now works:
2403
2404 /(?{ $x='{' })/
2405
2406This means that this error message is no longer generated:
2407
2408 Sequence (?{...}) not terminated or not {}-balanced in regex
2409
2410but a new error may be seen:
2411
2412 Sequence (?{...}) not terminated with ')'
2413
2414In addition, literal code blocks within run-time patterns are only
2415compiled once, at perl compile-time:
2416
2417 for my $p (...) {
2418 # this 'FOO' block of code is compiled once,
2419 # at the same time as the surrounding 'for' loop
2420 /$p{(?{FOO;})/;
2421 }
2422
2423=item *
2424
2425Lexical variables are now sane as regards scope, recursion and closure
2426behavior. In particular, C</A(?{B})C/> behaves (from a closure viewpoint)
2427exactly like C</A/ && do { B } && /C/>, while C<qr/A(?{B})C/> is like
2428C<sub {/A/ && do { B } && /C/}>. So this code now works how you might
2429expect, creating three regexes that match 0, 1, and 2:
2430
2431 for my $i (0..2) {
2432 push @r, qr/^(??{$i})$/;
2433 }
2434 "1" =~ $r[1]; # matches
2435
2436=item *
2437
2438The C<use re 'eval'> pragma is now only required for code blocks defined
2439at runtime; in particular in the following, the text of the C<$r> pattern is
2440still interpolated into the new pattern and recompiled, but the individual
2441compiled code-blocks within C<$r> are reused rather than being recompiled,
2442and C<use re 'eval'> isn't needed any more:
2443
2444 my $r = qr/abc(?{....})def/;
2445 /xyz$r/;
2446
2447=item *
2448
2449Flow control operators no longer crash. Each code block runs in a new
2450dynamic scope, so C<next> etc. will not see
2451any enclosing loops. C<return> returns a value
2452from the code block, not from any enclosing subroutine.
2453
2454=item *
2455
2456Perl normally caches the compilation of run-time patterns, and doesn't
2457recompile if the pattern hasn't changed, but this is now disabled if
2458required for the correct behavior of closures. For example:
2459
2460 my $code = '(??{$x})';
2461 for my $x (1..3) {
2462 # recompile to see fresh value of $x each time
2463 $x =~ /$code/;
2464 }
2465
2466=item *
2467
2468The C</msix> and C<(?msix)> etc. flags are now propagated into the return
2469value from C<(??{})>; this now works:
2470
2471 "AB" =~ /a(??{'b'})/i;
2472
2473=item *
2474
2475Warnings and errors will appear to come from the surrounding code (or for
2476run-time code blocks, from an eval) rather than from an C<re_eval>:
2477
2478 use re 'eval'; $c = '(?{ warn "foo" })'; /$c/;
2479 /(?{ warn "foo" })/;
2480
2481formerly gave:
2482
2483 foo at (re_eval 1) line 1.
2484 foo at (re_eval 2) line 1.
2485
2486and now gives:
2487
2488 foo at (eval 1) line 1.
2489 foo at /some/prog line 2.
2490
2491=back
2492
2493=item *
2494
2e7bc647
KW
2495Perl now can be recompiled to use any Unicode version. In v5.16, it
2496worked on Unicodes 6.0 and 6.1, but there were various bugs if earlier
2497releases were used; the older the release the more problems.
5ed58cbd
RS
2498
2499=item *
2500
2501C<vec> no longer produces "uninitialized" warnings in lvalue context
2502[perl #9423].
2503
2504=item *
2505
2506An optimization involving fixed strings in regular expressions could cause
2507a severe performance penalty in edge cases. This has been fixed
2508[perl #76546].
2509
2510=item *
2511
2512In certain cases, including empty subpatterns within a regular expression (such
2513as C<(?:)> or C<(?:|)>) could disable some optimizations. This has been fixed.
2514
2515=item *
2516
2517The "Can't find an opnumber" message that C<prototype> produces when passed
2518a string like "CORE::nonexistent_keyword" now passes UTF-8 and embedded
2519NULs through unchanged [perl #97478].
2520
2521=item *
2522
2523C<prototype> now treats magical variables like C<$1> the same way as
2524non-magical variables when checking for the CORE:: prefix, instead of
2525treating them as subroutine names.
2526
2527=item *
2528
2529Under threaded perls, a runtime code block in a regular expression could
2530corrupt the package name stored in the op tree, resulting in bad reads
2531in C<caller>, and possibly crashes [perl #113060].
2532
2533=item *
2534
2535Referencing a closure prototype (C<\&{$_[1]}> in an attribute handler for a
2536closure) no longer results in a copy of the subroutine (or assertion
2537failures on debugging builds).
2538
2539=item *
2540
2541C<eval '__PACKAGE__'> now returns the right answer on threaded builds if
2542the current package has been assigned over (as in
2543C<*ThisPackage:: = *ThatPackage::>) [perl #78742].
2544
2545=item *
2546
2547If a package is deleted by code that it calls, it is possible for C<caller>
2548to see a stack frame belonging to that deleted package. C<caller> could
2549crash if the stash's memory address was reused for a scalar and a
2550substitution was performed on the same scalar [perl #113486].
2551
2552=item *
2553
2554C<UNIVERSAL::can> no longer treats its first argument differently
2555depending on whether it is a string or number internally.
2556
2557=item *
2558
2559C<open> with C<< <& >> for the mode checks to see whether the third argument is
2560a number, in determining whether to treat it as a file descriptor or a handle
2561name. Magical variables like C<$1> were always failing the numeric check and
2562being treated as handle names.
2563
2564=item *
2565
2566C<warn>'s handling of magical variables (C<$1>, ties) has undergone several
2567fixes. C<FETCH> is only called once now on a tied argument or a tied C<$@>
2568[perl #97480]. Tied variables returning objects that stringify as "" are
2569no longer ignored. A tied C<$@> that happened to return a reference the
2570I<previous> time it was used is no longer ignored.
2571
2572=item *
2573
2574C<warn ""> now treats C<$@> with a number in it the same way, regardless of
2575whether it happened via C<$@=3> or C<$@="3">. It used to ignore the
2576former. Now it appends "\t...caught", as it has always done with
2577C<$@="3">.
2578
2579=item *
2580
2581Numeric operators on magical variables (e.g., S<C<$1 + 1>>) used to use
2582floating point operations even where integer operations were more appropriate,
2583resulting in loss of accuracy on 64-bit platforms [perl #109542].
2584
2585=item *
2586
2587Unary negation no longer treats a string as a number if the string happened
2588to be used as a number at some point. So, if C<$x> contains the string "dogs",
2589C<-$x> returns "-dogs" even if C<$y=0+$x> has happened at some point.
2590
2591=item *
2592
2593In Perl 5.14, C<-'-10'> was fixed to return "10", not "+10". But magical
2594variables (C<$1>, ties) were not fixed till now [perl #57706].
2595
2596=item *
2597
2598Unary negation now treats strings consistently, regardless of the internal
2599C<UTF8> flag.
2600
2601=item *
2602
2603A regression introduced in Perl v5.16.0 involving
2604C<tr/I<SEARCHLIST>/I<REPLACEMENTLIST>/> has been fixed. Only the first
2605instance is supposed to be meaningful if a character appears more than
2606once in C<I<SEARCHLIST>>. Under some circumstances, the final instance
2607was overriding all earlier ones. [perl #113584]
2608
2609=item *
2610
2611Regular expressions like C<qr/\87/> previously silently inserted a NUL
2612character, thus matching as if it had been written C<qr/\00087/>. Now it
2613matches as if it had been written as C<qr/87/>, with a message that the
2614sequence C<"\8"> is unrecognized.
2615
2616=item *
2617
2618C<__SUB__> now works in special blocks (C<BEGIN>, C<END>, etc.).
2619
2620=item *
2621
2622Thread creation on Windows could theoretically result in a crash if done
2623inside a C<BEGIN> block. It still does not work properly, but it no longer
2624crashes [perl #111610].
2625
2626=item *
2627
2628C<\&{''}> (with the empty string) now autovivifies a stub like any other
2629sub name, and no longer produces the "Unable to create sub" error
2630[perl #94476].
2631
2632=item *
2633
2634A regression introduced in v5.14.0 has been fixed, in which some calls
2635to the C<re> module would clobber C<$_> [perl #113750].
2636
2637=item *
2638
2639C<do FILE> now always either sets or clears C<$@>, even when the file can't be
2640read. This ensures that testing C<$@> first (as recommended by the
2641documentation) always returns the correct result.
2642
2643=item *
2644
2645The array iterator used for the C<each @array> construct is now correctly
2646reset when C<@array> is cleared (RT #75596). This happens for example when the
2647array is globally assigned to, as in C<@array = (...)>, but not when its
2648B<values> are assigned to. In terms of the XS API, it means that C<av_clear()>
2649will now reset the iterator.
2650
2651This mirrors the behaviour of the hash iterator when the hash is cleared.
2652
2653=item *
2654
2655C<< $class->can >>, C<< $class->isa >>, and C<< $class->DOES >> now return
2656correct results, regardless of whether that package referred to by C<$class>
2657exists [perl #47113].
2658
2659=item *
2660
2661Arriving signals no longer clear C<$@> [perl #45173].
2662
2663=item *
2664
2665Allow C<my ()> declarations with an empty variable list [perl #113554].
2666
2667=item *
2668
2669During parsing, subs declared after errors no longer leave stubs
2670[perl #113712].
2671
2672=item *
2673
2674Closures containing no string evals no longer hang on to their containing
2675subroutines, allowing variables closed over by outer subroutines to be
2676freed when the outer sub is freed, even if the inner sub still exists
2677[perl #89544].
2678
2679=item *
2680
2681Duplication of in-memory filehandles by opening with a "<&=" or ">&=" mode
2682stopped working properly in 5.16.0. It was causing the new handle to
2683reference a different scalar variable. This has been fixed [perl #113764].
2684
2685=item *
2686
2687C<qr//> expressions no longer crash with custom regular expression engines
2688that do not set C<offs> at regular expression compilation time
2689[perl #112962].
2690
2691=item *
2692
2693C<delete local> no longer crashes with certain magical arrays and hashes
2694[perl #112966].
2695
2696=item *
2697
2698C<local> on elements of certain magical arrays and hashes used not to
2699arrange to have the element deleted on scope exit, even if the element did
2700not exist before C<local>.
2701
2702=item *
2703
2704C<scalar(write)> no longer returns multiple items [perl #73690].
2705
2706=item *
2707
2708String to floating point conversions no longer misparse certain strings under
2709C<use locale> [perl #109318].
2710
2711=item *
2712
2713C<@INC> filters that die no longer leak memory [perl #92252].
2714
2715=item *
2716
2717The implementations of overloaded operations are now called in the correct
2718context. This allows, among other things, being able to properly override
2719C<< <> >> [perl #47119].
2720
2721=item *
2722
2723Specifying only the C<fallback> key when calling C<use overload> now behaves
2724properly [perl #113010].
2725
2726=item *
2727
2728C<< sub foo { my $a = 0; while ($a) { ... } } >> and
2729C<< sub foo { while (0) { ... } } >> now return the same thing [perl #73618].
2730
2731=item *
2732
2733String negation now behaves the same under C<use integer;> as it does
2734without [perl #113012].
2735
2736=item *
2737
2738C<chr> now returns the Unicode replacement character (U+FFFD) for -1,
2739regardless of the internal representation. -1 used to wrap if the argument
2740was tied or a string internally.
2741
2742=item *
2743
2744Using a C<format> after its enclosing sub was freed could crash as of
2745perl 5.12.0, if the format referenced lexical variables from the outer sub.
2746
2747=item *
2748
2749Using a C<format> after its enclosing sub was undefined could crash as of
2750perl 5.10.0, if the format referenced lexical variables from the outer sub.
2751
2752=item *
2753
2754Using a C<format> defined inside a closure, which format references
2755lexical variables from outside, never really worked unless the C<write>
2756call was directly inside the closure. In 5.10.0 it even started crashing.
2757Now the copy of that closure nearest the top of the call stack is used to
2758find those variables.
2759
2760=item *
2761
2762Formats that close over variables in special blocks no longer crash if a
2763stub exists with the same name as the special block before the special
2764block is compiled.
2765
2766=item *
2767
2768The parser no longer gets confused, treating C<eval foo ()> as a syntax
2769error if preceded by C<print;> [perl #16249].
2770
2771=item *
2772
2773The return value of C<syscall> is no longer truncated on 64-bit platforms
2774[perl #113980].
2775
2776=item *
2777
2778Constant folding no longer causes C<print 1 ? FOO : BAR> to print to the
2779FOO handle [perl #78064].
2780
2781=item *
2782
2783C<do subname> now calls the named subroutine and uses the file name it
2784returns, instead of opening a file named "subname".
2785
2786=item *
2787
2788Subroutines looked up by rv2cv check hooks (registered by XS modules) are
2789now taken into consideration when determining whether C<foo bar> should be
2790the sub call C<foo(bar)> or the method call C<< "bar"->foo >>.
2791
2792=item *
2793
2794C<CORE::foo::bar> is no longer treated specially, allowing global overrides
2795to be called directly via C<CORE::GLOBAL::uc(...)> [perl #113016].
2796
2797=item *
2798
2799Calling an undefined sub whose typeglob has been undefined now produces the
2800customary "Undefined subroutine called" error, instead of "Not a CODE
2801reference".
2802
2803=item *
2804
2805Two bugs involving @ISA have been fixed. C<*ISA = *glob_without_array> and
2806C<undef *ISA; @{*ISA}> would prevent future modifications to @ISA from
2807updating the internal caches used to look up methods. The
2808*glob_without_array case was a regression from Perl 5.12.
2809
2810=item *
2811
2812Regular expression optimisations sometimes caused C<$> with C</m> to
2813produce failed or incorrect matches [perl #114068].
2814
2815=item *
2816
2817C<__SUB__> now works in a C<sort> block when the enclosing subroutine is
2818predeclared with C<sub foo;> syntax [perl #113710].
2819
2820=item *
2821
2822Unicode properties only apply to Unicode code points, which leads to
2823some subtleties when regular expressions are matched against
2824above-Unicode code points. There is a warning generated to draw your
2825attention to this. However, this warning was being generated
2826inappropriately in some cases, such as when a program was being parsed.
2827Non-Unicode matches such as C<\w> and C<[:word;]> should not generate the
2828warning, as their definitions don't limit them to apply to only Unicode
2829code points. Now the message is only generated when matching against
2830C<\p{}> and C<\P{}>. There remains a bug, [perl #114148], for the very
2831few properties in Unicode that match just a single code point. The
2832warning is not generated if they are matched against an above-Unicode
2833code point.
2834
2835=item *
2836
2837Uninitialized warnings mentioning hash elements would only mention the
2838element name if it was not in the first bucket of the hash, due to an
2839off-by-one error.
2840
2841=item *
2842
2843A regular expression optimizer bug could cause multiline "^" to behave
2844incorrectly in the presence of line breaks, such that
2845C<"/\n\n" =~ m#\A(?:^/$)#im> would not match [perl #115242].
2846
2847=item *
2848
2849Failed C<fork> in list context no longer corrupts the stack.
2850C<@a = (1, 2, fork, 3)> used to gobble up the 2 and assign C<(1, undef, 3)>
2851if the C<fork> call failed.
2852
2853=item *
2854
2855Numerous memory leaks have been fixed, mostly involving tied variables that
2856die, regular expression character classes and code blocks, and syntax
2857errors.
2858
2859=item *
2860
2861Assigning a regular expression (C<${qr//}>) to a variable that happens to
2862hold a floating point number no longer causes assertion failures on
2863debugging builds.
2864
2865=item *
2866
2867Assigning a regular expression to a scalar containing a number no longer
f105b7be 2868causes subsequent numification to produce random numbers.
5ed58cbd
RS
2869
2870=item *
2871
2872Assigning a regular expression to a magic variable no longer wipes away the
2ae351f8 2873magic. This was a regression from 5.10.
5ed58cbd
RS
2874
2875=item *
2876
2877Assigning a regular expression to a blessed scalar no longer results in
2ae351f8 2878crashes. This was also a regression from 5.10.
5ed58cbd
RS
2879
2880=item *
2881
2882Regular expression can now be assigned to tied hash and array elements with
2883flattening into strings.
2884
2885=item *
2886
f105b7be 2887Numifying a regular expression no longer results in an uninitialized
5ed58cbd
RS
2888warning.
2889
2890=item *
2891
2892Negative array indices no longer cause EXISTS methods of tied variables to
2ae351f8 2893be ignored. This was a regression from 5.12.
5ed58cbd
RS
2894
2895=item *
2896
2897Negative array indices no longer result in crashes on arrays tied to
2898non-objects.
2899
2900=item *
2901
2902C<$byte_overload .= $utf8> no longer results in doubly-encoded UTF8 if the
2903left-hand scalar happened to have produced a UTF8 string the last time
2904overloading was invoked.
2905
2906=item *
2907
2908C<goto &sub> now uses the current value of @_, instead of using the array
2909the subroutine was originally called with. This means
2910C<local @_ = (...); goto &sub> now works [perl #43077].
2911
2912=item *
2913
2914If a debugger is invoked recursively, it no longer stomps on its own
2915lexical variables. Formerly under recursion all calls would share the same
2916set of lexical variables [perl #115742].
2917
2918=item *
2919
2920C<*_{ARRAY}> returned from a subroutine no longer spontaneously
2921becomes empty.
2922
2923=back
2924
2925=head1 Known Problems
2926
2927=over 4
2928
2929=item *
2930
2931XXX: the imperfect behavior of the ** deprecation
2932
2933=back
2934
2935=head1 Acknowledgements
a75569c0 2936
5ed58cbd 2937XXX Generate this with:
a75569c0 2938
5ed58cbd 2939 perl Porting/acknowledgements.pl v5.18.0..HEAD
f5b73711 2940
44691e6f
AB
2941=head1 Reporting Bugs
2942
e08634c5
SH
2943If you find what you think is a bug, you might check the articles recently
2944posted to the comp.lang.perl.misc newsgroup and the perl bug database at
2945http://rt.perl.org/perlbug/ . There may also be information at
2946http://www.perl.org/ , the Perl Home Page.
44691e6f 2947
e08634c5
SH
2948If you believe you have an unreported bug, please run the L<perlbug> program
2949included with your release. Be sure to trim your bug down to a tiny but
2950sufficient test case. Your bug report, along with the output of C<perl -V>,
2951will be sent off to perlbug@perl.org to be analysed by the Perl porting team.
44691e6f
AB
2952
2953If the bug you are reporting has security implications, which make it
e08634c5
SH
2954inappropriate to send to a publicly archived mailing list, then please send it
2955to perl5-security-report@perl.org. This points to a closed subscription
2956unarchived mailing list, which includes all the core committers, who will be
2957able to help assess the impact of issues, figure out a resolution, and help
f9001595 2958co-ordinate the release of patches to mitigate or fix the problem across all
e08634c5
SH
2959platforms on which Perl is supported. Please only use this address for
2960security issues in the Perl core, not for modules independently distributed on
2961CPAN.
44691e6f
AB
2962
2963=head1 SEE ALSO
2964
e08634c5
SH
2965The F<Changes> file for an explanation of how to view exhaustive details on
2966what changed.
44691e6f
AB
2967
2968The F<INSTALL> file for how to build Perl.
2969
2970The F<README> file for general stuff.
2971
2972The F<Artistic> and F<Copying> files for copyright information.
2973
2974=cut