5 perl5140delta - what is new for perl v5.14.0
9 This document describes differences between the 5.12.0 release and
12 If you are upgrading from an earlier release such as 5.10.0, first read
13 L<perl5120delta>, which describes differences between 5.10.0 and
16 Some of the bug fixes in this release have been backported to subsequent
17 releases of 5.12.x. Those are indicated with the 5.12.x version in
22 As described in L<perlpolicy>, the release of Perl 5.14.0 marks the
23 official end of support for Perl 5.10. Users of Perl 5.10 or earlier
24 should consider upgrading to a more recent release of Perl.
26 =head1 Core Enhancements
30 =head3 Unicode Version 6.0 is now supported (mostly)
32 Perl comes with the Unicode 6.0 data base updated with
33 L<Corrigendum #8|http://www.unicode.org/versions/corrigendum8.html>,
34 with one exception noted below.
35 See L<http://unicode.org/versions/Unicode6.0.0/> for details on the new
36 release. Perl does not support any Unicode provisional properties,
37 including the new ones for this release.
39 Unicode 6.0 has chosen to use the name C<BELL> for the character at U+1F514,
40 which is a symbol that looks like a bell, and is used in Japanese cell
41 phones. This conflicts with the long-standing Perl usage of having
42 C<BELL> mean the ASCII C<BEL> character, U+0007. In Perl 5.14,
43 C<\N{BELL}> continues to mean U+0007, but its use generates a
44 deprecation warning message unless such warnings are turned off. The
45 new name for U+0007 in Perl is C<ALERT>, which corresponds nicely
46 with the existing shorthand sequence for it, C<"\a">. C<\N{BEL}>
47 means U+0007, with no warning given. The character at U+1F514 has no
48 name in 5.14, but can be referred to by C<\N{U+1F514}>.
49 In Perl 5.16, C<\N{BELL}> will refer to U+1F514; all code
50 that uses C<\N{BELL}> should be converted to use C<\N{ALERT}>,
51 C<\N{BEL}>, or C<"\a"> before upgrading.
53 =head3 Full functionality for C<use feature 'unicode_strings'>
55 This release provides full functionality for C<use feature
56 'unicode_strings'>. Under its scope, all string operations executed and
57 regular expressions compiled (even if executed outside its scope) have
58 Unicode semantics. See L<feature/"the 'unicode_strings' feature">.
59 However, see L</Inverted bracketed character classes and multi-character folds>,
62 This feature avoids most forms of the "Unicode Bug" (see
63 L<perlunicode/The "Unicode Bug"> for details). If there is any
64 possibility that your code will process Unicode strings, you are
65 I<strongly> encouraged to use this subpragma to avoid nasty surprises.
67 =head3 C<\N{I<NAME>}> and C<charnames> enhancements
73 C<\N{I<NAME>}> and C<charnames::vianame> now know about the abbreviated
74 character names listed by Unicode, such as NBSP, SHY, LRO, ZWJ, etc.; all
75 customary abbreviations for the C0 and C1 control characters (such as
76 ACK, BEL, CAN, etc.); and a few new variants of some C1 full names that
81 Unicode has several I<named character sequences>, in which particular sequences
82 of code points are given names. C<\N{I<NAME>}> now recognizes these.
86 C<\N{I<NAME>}>, C<charnames::vianame>, and C<charnames::viacode>
87 now know about every character in Unicode. In earlier releases of
88 Perl, they didn't know about the Hangul syllables nor several
89 CJK (Chinese/Japanese/Korean) characters.
93 It is now possible to override Perl's abbreviations with your own custom aliases.
97 You can now create a custom alias of the ordinal of a
98 character, known by C<\N{I<NAME>}>, C<charnames::vianame()>, and
99 C<charnames::viacode()>. Previously, aliases had to be to official
100 Unicode character names. This made it impossible to create an alias for
101 unnamed code points, such as those reserved for private
106 The new function charnames::string_vianame() is a run-time version
107 of C<\N{I<NAME>}}>, returning the string of characters whose Unicode
108 name is its parameter. It can handle Unicode named character
109 sequences, whereas the pre-existing charnames::vianame() cannot,
110 as the latter returns a single code point.
114 See L<charnames> for details on all these changes.
116 =head3 New warnings categories for problematic (non-)Unicode code points.
118 Three new warnings subcategories of "utf8" have been added. These
119 allow you to turn off some "utf8" warnings, while allowing
120 other warnings to remain on. The three categories are:
121 C<surrogate> when UTF-16 surrogates are encountered;
122 C<nonchar> when Unicode non-character code points are encountered;
123 and C<non_unicode> when code points above the legal Unicode
124 maximum of 0x10FFFF are encountered.
126 =head3 Any unsigned value can be encoded as a character
128 With this release, Perl is adopting a model that any unsigned value
129 can be treated as a code point and encoded internally (as utf8)
130 without warnings, not just the code points that are legal in Unicode.
131 However, unless utf8 or the corresponding sub-category (see previous
132 item) of lexical warnings have been explicitly turned off, outputting
133 or executing a Unicode-defined operation such as upper-casing
134 on such a code point generates a warning. Attempting to input these
135 using strict rules (such as with the C<:encoding(UTF-8)> layer)
136 will continue to fail. Prior to this release, handling was
137 inconsistent and in places, incorrect.
139 Unicode non-characters, some of which previously were erroneously
140 considered illegal in places by Perl, contrary to the Unicode Standard,
141 are now always legal internally. Inputting or outputting them
142 works the same as with the non-legal Unicode code points, because the Unicode
143 Standard says they are (only) illegal for "open interchange".
145 =head3 Unicode database files not installed
147 The Unicode database files are no longer installed with Perl. This
148 doesn't affect any functionality in Perl and saves significant disk
149 space. If you need these files, you can download them from
150 L<http://www.unicode.org/Public/zipped/6.0.0/>.
152 =head2 Regular Expressions
154 =head3 C<(?^...)> construct signifies default modifiers
156 An ASCII caret C<"^"> immediately following a C<"(?"> in a regular
157 expression now means that the subexpression does not inherit surrounding
158 modifiers such as C</i>, but reverts to the Perl defaults. Any modifiers
159 following the caret override the defaults.
161 Stringification of regular expressions now uses this notation.
162 For example, C<qr/hlagh/i> would previously be stringified as
163 C<(?i-xsm:hlagh)>, but now it's stringified as C<(?^i:hlagh)>.
165 The main purpose of this change is to allow tests that rely on the
166 stringification I<not> to have to change whenever new modifiers are added.
167 See L<perlre/Extended Patterns>.
169 This change is likely to break code that compares stringified regular
170 expressions with fixed strings containing C<?-xism>.
172 =head3 C</d>, C</l>, C</u>, and C</a> modifiers
174 Four new regular expression modifiers have been added. These are mutually
175 exclusive: one only can be turned on at a time.
181 The C</l> modifier says to compile the regular expression as if it were
182 in the scope of C<use locale>, even if it is not.
186 The C</u> modifier says to compile the regular expression as if it were
187 in the scope of a C<use feature 'unicode_strings'> pragma.
191 The C</d> (default) modifier is used to override any C<use locale> and
192 C<use feature 'unicode_strings'> pragmas in effect at the time
193 of compiling the regular expression.
197 The C</a> regular expression modifier restricts C<\s>, C<\d> and C<\w> and
198 the POSIX (C<[[:posix:]]>) character classes to the ASCII range. Their
199 complements and C<\b> and C<\B> are correspondingly
200 affected. Otherwise, C</a> behaves like the C</u> modifier, in that
201 case-insensitive matching uses Unicode semantics.
203 If the C</a> modifier is repeated, then additionally in case-insensitive
204 matching, no ASCII character can match a non-ASCII character.
207 "k" =~ /\N{KELVIN SIGN}/ai
212 "k" =~ /\N{KELVIN SIGN}/aai
219 See L<perlre/Modifiers> for more detail.
221 =head3 Non-destructive substitution
223 The substitution (C<s///>) and transliteration
224 (C<y///>) operators now support an C</r> option that
225 copies the input variable, carries out the substitution on
226 the copy, and returns the result. The original remains unmodified.
229 my $new = $old =~ s/cat/dog/r;
230 # $old is "cat" and $new is "dog"
232 This is particularly useful with C<map>. See L<perlop> for more examples.
234 =head3 Re-entrant regular expression engine
236 It is now safe to use regular expressions within C<(?{...})> and
237 C<(??{...})> code blocks inside regular expressions.
239 These blocks are still experimental, however, and still have problems with
240 lexical (C<my>) variables and abnormal exiting.
242 =head3 C<use re '/flags'>
244 The C<re> pragma now has the ability to turn on regular expression flags
245 till the end of the lexical scope:
248 "foo" =~ / (.+) /; # /x implied
250 See L<re/"'/flags' mode"> for details.
252 =head3 \o{...} for octals
254 There is a new octal escape sequence, C<"\o">, in doublequote-like
255 contexts. This construct allows large octal ordinals beyond the
256 current max of 0777 to be represented. It also allows you to specify a
257 character in octal which can safely be concatenated with other regex
258 snippets and which won't be confused with being a backreference to
259 a regex capture group. See L<perlre/Capture groups>.
261 =head3 Add C<\p{Titlecase}> as a synonym for C<\p{Title}>
263 This synonym is added for symmetry with the Unicode property names
264 C<\p{Uppercase}> and C<\p{Lowercase}>.
266 =head3 Regular expression debugging output improvement
268 Regular expression debugging output (turned on by C<use re 'debug'>) now
269 uses hexadecimal when escaping non-ASCII characters, instead of octal.
271 =head3 Return value of C<delete $+{...}>
273 Custom regular expression engines can now determine the return value of
274 C<delete> on an entry of C<%+> or C<%->.
276 =head2 Syntactical Enhancements
278 =head3 Array and hash container functions accept references
280 B<Warning:> This feature is considered experimental, as the exact behaviour
281 may change in a future version of Perl.
283 All builtin functions that operate directly on array or hash
284 containers now also accept unblessed hard references to arrays
287 |----------------------------+---------------------------|
288 | Traditional syntax | Terse syntax |
289 |----------------------------+---------------------------|
290 | push @$arrayref, @stuff | push $arrayref, @stuff |
291 | unshift @$arrayref, @stuff | unshift $arrayref, @stuff |
292 | pop @$arrayref | pop $arrayref |
293 | shift @$arrayref | shift $arrayref |
294 | splice @$arrayref, 0, 2 | splice $arrayref, 0, 2 |
295 | keys %$hashref | keys $hashref |
296 | keys @$arrayref | keys $arrayref |
297 | values %$hashref | values $hashref |
298 | values @$arrayref | values $arrayref |
299 | ($k,$v) = each %$hashref | ($k,$v) = each $hashref |
300 | ($k,$v) = each @$arrayref | ($k,$v) = each $arrayref |
301 |----------------------------+---------------------------|
303 This allows these builtin functions to act on long dereferencing chains
304 or on the return value of subroutines without needing to wrap them in
307 push @{$obj->tags}, $new_tag; # old way
308 push $obj->tags, $new_tag; # new way
310 for ( keys %{$hoh->{genres}{artists}} ) {...} # old way
311 for ( keys $hoh->{genres}{artists} ) {...} # new way
313 =head3 Single term prototype
315 The C<+> prototype is a special alternative to C<$> that acts like
316 C<\[@%]> when given a literal array or hash variable, but will otherwise
317 force scalar context on the argument. See L<perlsub/Prototypes>.
319 =head3 C<package> block syntax
321 A package declaration can now contain a code block, in which case the
322 declaration is in scope inside that block only. So C<package Foo { ... }>
323 is precisely equivalent to C<{ package Foo; ... }>. It also works with
324 a version number in the declaration, as in C<package Foo 1.2 { ... }>,
325 which is its most attractive feature. See L<perlfunc>.
327 =head3 Statement labels can appear in more places
329 Statement labels can now occur before any type of statement or declaration,
332 =head3 Stacked labels
334 Multiple statement labels can now appear before a single statement.
336 =head3 Uppercase X/B allowed in hexadecimal/binary literals
338 Literals may now use either upper case C<0X...> or C<0B...> prefixes,
339 in addition to the already supported C<0x...> and C<0b...>
340 syntax [perl #76296].
342 C, Ruby, Python, and PHP already support this syntax, and it makes
343 Perl more internally consistent: a round-trip with C<eval sprintf
344 "%#X", 0x10> now returns C<16>, just like C<eval sprintf "%#x", 0x10>.
346 =head3 Overridable tie functions
348 C<tie>, C<tied> and C<untie> can now be overridden [perl #75902].
350 =head2 Exception Handling
352 To make them more reliable and consistent, several changes have been made
353 to how C<die>, C<warn>, and C<$@> behave.
359 When an exception is thrown inside an C<eval>, the exception is no
360 longer at risk of being clobbered by destructor code running during unwinding.
361 Previously, the exception was written into C<$@>
362 early in the throwing process, and would be overwritten if C<eval> was
363 used internally in the destructor for an object that had to be freed
364 while exiting from the outer C<eval>. Now the exception is written
365 into C<$@> last thing before exiting the outer C<eval>, so the code
366 running immediately thereafter can rely on the value in C<$@> correctly
367 corresponding to that C<eval>. (C<$@> is still also set before exiting the
368 C<eval>, for the sake of destructors that rely on this.)
370 Likewise, a C<local $@> inside an C<eval> no longer clobbers any
371 exception thrown in its scope. Previously, the restoration of C<$@> upon
372 unwinding would overwrite any exception being thrown. Now the exception
373 gets to the C<eval> anyway. So C<local $@> is safe before a C<die>.
375 Exceptions thrown from object destructors no longer modify the C<$@>
376 of the surrounding context. (If the surrounding context was exception
377 unwinding, this used to be another way to clobber the exception being
378 thrown.) Previously such an exception was
379 sometimes emitted as a warning, and then either was
380 string-appended to the surrounding C<$@> or completely replaced the
381 surrounding C<$@>, depending on whether that exception and the surrounding
382 C<$@> were strings or objects. Now, an exception in this situation is
383 always emitted as a warning, leaving the surrounding C<$@> untouched.
384 In addition to object destructors, this also affects any function call
385 run by XS code using the C<G_KEEPERR> flag.
389 Warnings for C<warn> can now be objects in the same way as exceptions
390 for C<die>. If an object-based warning gets the default handling
391 of writing to standard error, it is stringified as before with the
392 filename and line number appended. But a C<$SIG{__WARN__}> handler now
393 receives an object-based warning as an object, where previously it
394 was passed the result of stringifying the object.
398 =head2 Other Enhancements
400 =head3 Assignment to C<$0> sets the legacy process name with prctl() on Linux
402 On Linux the legacy process name is now set with L<prctl(2)>, in
403 addition to altering the POSIX name via C<argv[0]>, as Perl has done
404 since version 4.000. Now system utilities that read the legacy process
405 name such as I<ps>, I<top>, and I<killall> recognize the name you set when
406 assigning to C<$0>. The string you supply is truncated at 16 bytes;
407 this limitation is imposed by Linux.
409 =head3 srand() now returns the seed
411 This allows programs that need to have repeatable results not to have to come
412 up with their own seed-generating mechanism. Instead, they can use srand()
413 and stash the return value for future use. One example is a test program with
414 too many combinations to test comprehensively in the time available for
415 each run. It can test a random subset each time and, should there be a failure,
416 log the seed used for that run so this can later be used to produce the same results.
418 =head3 printf-like functions understand post-1980 size modifiers
420 Perl's printf and sprintf operators, and Perl's internal printf replacement
421 function, now understand the C90 size modifiers "hh" (C<char>), "z"
422 (C<size_t>), and "t" (C<ptrdiff_t>). Also, when compiled with a C99
423 compiler, Perl now understands the size modifier "j" (C<intmax_t>)
424 (but this is not portable).
426 So, for example, on any modern machine, C<sprintf("%hhd", 257)> returns "1".
428 =head3 New global variable C<${^GLOBAL_PHASE}>
430 A new global variable, C<${^GLOBAL_PHASE}>, has been added to allow
431 introspection of the current phase of the Perl interpreter. It's explained in
432 detail in L<perlvar/"${^GLOBAL_PHASE}"> and in
433 L<perlmod/"BEGIN, UNITCHECK, CHECK, INIT and END">.
435 =head3 C<-d:-foo> calls C<Devel::foo::unimport>
437 The syntax B<-d:foo> was extended in 5.6.1 to make B<-d:foo=bar>
438 equivalent to B<-MDevel::foo=bar>, which expands
439 internally to C<use Devel::foo 'bar'>.
440 Perl now allows prefixing the module name with B<->, with the same
441 semantics as B<-M>; that is:
447 Equivalent to B<-M-Devel::foo>: expands to
448 C<no Devel::foo> and calls C<< Devel::foo->unimport() >>
449 if that method exists.
453 Equivalent to B<-M-Devel::foo=bar>: expands to C<no Devel::foo 'bar'>,
454 and calls C<< Devel::foo->unimport("bar") >> if that method exists.
458 This is particularly useful for suppressing the default actions of a
459 C<Devel::*> module's C<import> method whilst still loading it for debugging.
461 =head3 Filehandle method calls load L<IO::File> on demand
463 When a method call on a filehandle would die because the method cannot
464 be resolved and L<IO::File> has not been loaded, Perl now loads L<IO::File>
465 via C<require> and attempts method resolution again:
467 open my $fh, ">", $file;
468 $fh->binmode(":raw"); # loads IO::File and succeeds
470 This also works for globs like C<STDOUT>, C<STDERR>, and C<STDIN>:
472 STDOUT->autoflush(1);
474 Because this on-demand load happens only if method resolution fails, the
475 legacy approach of manually loading an L<IO::File> parent class for partial
476 method support still works as expected:
479 open my $fh, ">", $file;
480 $fh->autoflush(1); # IO::File not loaded
482 =head3 Improved IPv6 support
484 The C<Socket> module provides new affordances for IPv6,
485 including implementations of the C<Socket::getaddrinfo()> and
486 C<Socket::getnameinfo()> functions, along with related constants and a
487 handful of new functions. See L<Socket>.
489 =head3 DTrace probes now include package name
491 The C<DTrace> probes now include an additional argument, C<arg3>, which contains
492 the package the subroutine being entered or left was compiled in.
494 For example, using the following DTrace script:
496 perl$target:::sub-entry
498 printf("%s::%s\n", copyinstr(arg0), copyinstr(arg3));
503 $ perl -e 'sub test { }; test'
505 C<DTrace> will print:
511 See L</Internal Changes>.
515 =head2 User-defined regular expression properties
517 L<perlunicode/"User-Defined Character Properties"> documented that you can
518 create custom properties by defining subroutines whose names begin with
519 "In" or "Is". However, Perl did not actually enforce that naming
520 restriction, so C<\p{foo::bar}> could call foo::bar() if it existed. The documented
521 convention is now enforced.
523 Also, Perl no longer allows tainted regular expressions to invoke a
524 user-defined property. It simply dies instead [perl #82616].
526 =head1 Incompatible Changes
528 Perl 5.14.0 is not binary-compatible with any previous stable release.
530 In addition to the sections that follow, see L</C API Changes>.
532 =head2 Regular Expressions and String Escapes
534 =head3 Inverted bracketed character classes and multi-character folds
536 Some characters match a sequence of two or three characters in C</i>
537 regular expression matching under Unicode rules. One example is
538 C<LATIN SMALL LETTER SHARP S> which matches the sequence C<ss>.
540 'ss' =~ /\A[\N{LATIN SMALL LETTER SHARP S}]\z/i # Matches
542 This, however, can lead to very counter-intuitive results, especially
543 when inverted. Because of this, Perl 5.14 does not use multi-character C</i>
544 matching in inverted character classes.
546 'ss' =~ /\A[^\N{LATIN SMALL LETTER SHARP S}]+\z/i # ???
548 This should match any sequences of characters that aren't the C<SHARP S>
549 nor what C<SHARP S> matches under C</i>. C<"s"> isn't C<SHARP S>, but
550 Unicode says that C<"ss"> is what C<SHARP S> matches under C</i>. So
551 which one "wins"? Do you fail the match because the string has C<ss> or
552 accept it because it has an C<s> followed by another C<s>?
554 Earlier releases of Perl did allow this multi-character matching,
555 but due to bugs, it mostly did not work.
559 In certain circumstances, C<\400>-C<\777> in regexes have behaved
560 differently than they behave in all other doublequote-like contexts.
561 Since 5.10.1, Perl has issued a deprecation warning when this happens.
562 Now, these literals behave the same in all doublequote-like contexts,
563 namely to be equivalent to C<\x{100}>-C<\x{1FF}>, with no deprecation
566 Use of C<\400>-C<\777> in the command-line option B<-0> retain their
567 conventional meaning. They slurp whole input files; previously, this
568 was documented only for B<-0777>.
570 Because of various ambiguities, you should use the new
571 C<\o{...}> construct to represent characters in octal instead.
573 =head3 Most C<\p{}> properties are now immune to case-insensitive matching
575 For most Unicode properties, it doesn't make sense to have them match
576 differently under C</i> case-insensitive matching. Doing so can lead
577 to unexpected results and potential security holes. For example
579 m/\p{ASCII_Hex_Digit}+/i
581 could previously match non-ASCII characters because of the Unicode
582 matching rules (although there were several bugs with this). Now
583 matching under C</i> gives the same results as non-C</i> matching except
584 for those few properties where people have come to expect differences,
585 namely the ones where casing is an integral part of their meaning, such
586 as C<m/\p{Uppercase}/i> and C<m/\p{Lowercase}/i>, both of which match
587 the same code points as matched by C<m/\p{Cased}/i>.
588 Details are in L<perlrecharclass/Unicode Properties>.
590 User-defined property handlers that need to match differently under C</i>
591 must be changed to read the new boolean parameter passed to them, which
592 is non-zero if case-insensitive matching is in effect and 0 otherwise.
593 See L<perlunicode/User-Defined Character Properties>.
595 =head3 \p{} implies Unicode semantics
597 Specifying a Unicode property in the pattern indicates
598 that the pattern is meant for matching according to Unicode rules, the way
601 =head3 Regular expressions retain their localeness when interpolated
603 Regular expressions compiled under C<use locale> now retain this when
604 interpolated into a new regular expression compiled outside a
605 C<use locale>, and vice-versa.
607 Previously, one regular expression interpolated into another inherited
608 the localeness of the surrounding regex, losing whatever state it
609 originally had. This is considered a bug fix, but may trip up code that
610 has come to rely on the incorrect behaviour.
612 =head3 Stringification of regexes has changed
614 Default regular expression modifiers are now notated using
615 C<(?^...)>. Code relying on the old stringification will fail.
616 This is so that when new modifiers are added, such code won't
617 have to keep changing each time this happens, because the stringification
618 will automatically incorporate the new modifiers.
620 Code that needs to work properly with both old- and new-style regexes
621 can avoid the whole issue by using (for perls since 5.9.5; see L<re>):
623 use re qw(regexp_pattern);
624 my ($pat, $mods) = regexp_pattern($re_ref);
626 If the actual stringification is important or older Perls need to be
627 supported, you can use something like the following:
629 # Accept both old and new-style stringification
630 my $modifiers = (qr/foobar/ =~ /\Q(?^/) ? "^" : "-xism";
632 And then use C<$modifiers> instead of C<-xism>.
634 =head3 Run-time code blocks in regular expressions inherit pragmata
636 Code blocks in regular expressions (C<(?{...})> and C<(??{...})>) previously
637 did not inherit pragmata (strict, warnings, etc.) if the regular expression
638 was compiled at run time as happens in cases like these two:
641 $foo =~ $bar; # when $bar contains (?{...})
642 $foo =~ /$bar(?{ $finished = 1 })/;
644 This bug has now been fixed, but code that relied on the buggy behaviour
645 may need to be fixed to account for the correct behaviour.
647 =head2 Stashes and Package Variables
649 =head3 Localised tied hashes and arrays are no longed tied
656 # here, @a is a now a new, untied array
658 # here, @a refers again to the old, tied array
660 Earlier versions of Perl incorrectly tied the new local array. This has
661 now been fixed. This fix could however potentially cause a change in
662 behaviour of some code.
664 =head3 Stashes are now always defined
666 C<defined %Foo::> now always returns true, even when no symbols have yet been
667 defined in that package.
669 This is a side-effect of removing a special-case kludge in the tokeniser,
670 added for 5.10.0, to hide side-effects of changes to the internal storage of
671 hashes. The fix drastically reduces hashes' memory overhead.
673 Calling defined on a stash has been deprecated since 5.6.0, warned on
674 lexicals since 5.6.0, and warned for stashes and other package
675 variables since 5.12.0. C<defined %hash> has always exposed an
676 implementation detail: emptying a hash by deleting all entries from it does
677 not make C<defined %hash> false. Hence C<defined %hash> is not valid code to
678 determine whether an arbitrary hash is empty. Instead, use the behaviour
679 of an empty C<%hash> always returning false in scalar context.
681 =head3 Clearing stashes
683 Stash list assignment C<%foo:: = ()> used to make the stash temporarily
684 anonymous while it was being emptied. Consequently, any of its
685 subroutines referenced elsewhere would become anonymous, showing up as
686 "(unknown)" in C<caller>. They now retain their package names such that
687 C<caller> returns the original sub name if there is still a reference
688 to its typeglob and "foo::__ANON__" otherwise [perl #79208].
690 =head3 Dereferencing typeglobs
692 If you assign a typeglob to a scalar variable:
696 the glob that is copied to C<$glob> is marked with a special flag
697 indicating that the glob is just a copy. This allows subsequent
698 assignments to C<$glob> to overwrite the glob. The original glob,
699 however, is immutable.
701 Some Perl operators did not distinguish between these two types of globs.
702 This would result in strange behaviour in edge cases: C<untie $scalar>
703 would not untie the scalar if the last thing assigned to it was a glob
704 (because it treated it as C<untie *$scalar>, which unties a handle).
705 Assignment to a glob slot (such as C<*$glob = \@some_array>) would simply
706 assign C<\@some_array> to C<$glob>.
708 To fix this, the C<*{}> operator (including its C<*foo> and C<*$foo> forms)
709 has been modified to make a new immutable glob if its operand is a glob
710 copy. This allows operators that make a distinction between globs and
711 scalars to be modified to treat only immutable globs as globs. (C<tie>,
712 C<tied> and C<untie> have been left as they are for compatibility's sake,
713 but will warn. See L</Deprecations>.)
715 This causes an incompatible change in code that assigns a glob to the
716 return value of C<*{}> when that operator was passed a glob copy. Take the
717 following code, for instance:
722 The C<*$glob> on the second line returns a new immutable glob. That new
723 glob is made an alias to C<*bar>. Then it is discarded. So the second
724 assignment has no effect.
726 See L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=77810> for
729 =head3 Magic variables outside the main package
731 In previous versions of Perl, magic variables like C<$!>, C<%SIG>, etc. would
732 "leak" into other packages. So C<%foo::SIG> could be used to access signals,
733 C<${"foo::!"}> (with strict mode off) to access C's C<errno>, etc.
735 This was a bug, or an "unintentional" feature, which caused various ill effects,
736 such as signal handlers being wiped when modules were loaded, etc.
738 This has been fixed (or the feature has been removed, depending on how you see
741 =head3 local($_) strips all magic from $_
743 local() on scalar variables gives them a new value but keeps all
744 their magic intact. This has proven problematic for the default
745 scalar variable $_, where L<perlsub> recommends that any subroutine
746 that assigns to $_ should first localize it. This would throw an
747 exception if $_ is aliased to a read-only variable, and could in general have
748 various unintentional side-effects.
750 Therefore, as an exception to the general rule, local($_) will not
751 only assign a new value to $_, but also remove all existing magic from
754 =head3 Parsing of package and variable names
756 Parsing the names of packages and package variables has changed:
757 multiple adjacent pairs of colons, as in C<foo::::bar>, are now all
758 treated as package separators.
760 Regardless of this change, the exact parsing of package separators has
761 never been guaranteed and is subject to change in future Perl versions.
763 =head2 Changes to Syntax or to Perl Operators
765 =head3 C<given> return values
767 C<given> blocks now return the last evaluated
768 expression, or an empty list if the block was exited by C<break>. Thus you
774 "integer" when /^[+-]?[0-9]+$/;
775 "float" when /^[+-]?[0-9]+(?:\.[0-9]+)?$/;
780 See L<perlsyn/Return value> for details.
782 =head3 Change in parsing of certain prototypes
784 Functions declared with the following prototypes now behave correctly as unary
794 Due to this bug fix [perl #75904], functions
795 using the C<(*)>, C<(;$)> and C<(;*)> prototypes
796 are parsed with higher precedence than before. So
797 in the following example:
802 the second line is now parsed correctly as C<< foo($a) < $b >>, rather than
803 C<< foo($a < $b) >>. This happens when one of these operators is used in
804 an unparenthesised argument:
806 < > <= >= lt gt le ge
807 == != <=> eq ne cmp ~~
817 =head3 Smart-matching against array slices
819 Previously, the following code resulted in a successful match:
825 This odd behaviour has now been fixed [perl #77468].
827 =head3 Negation treats strings differently from before
829 The unary negation operator, C<->, now treats strings that look like numbers
830 as numbers [perl #57706].
834 Negative zero (-0.0), when converted to a string, now becomes "0" on all
835 platforms. It used to become "-0" on some, but "0" on others.
837 If you still need to determine whether a zero is negative, use
838 C<sprintf("%g", $zero) =~ /^-/> or the L<Data::Float> module on CPAN.
840 =head3 C<:=> is now a syntax error
842 Previously C<my $pi := 4> was exactly equivalent to C<my $pi : = 4>,
843 with the C<:> being treated as the start of an attribute list, ending before
844 the C<=>. The use of C<:=> to mean C<: => was deprecated in 5.12.0, and is
845 now a syntax error. This allows future use of C<:=> as a new token.
847 Outside the core's tests for it, we find no Perl 5 code on CPAN
848 using this construction, so we believe that this change will have
849 little impact on real-world codebases.
851 If it is absolutely necessary to have empty attribute lists (for example,
852 because of a code generator), simply avoid the error by adding a space before
855 =head3 Change in the parsing of identifiers
857 Characters outside the Unicode "XIDStart" set are no longer allowed at the
858 beginning of an identifier. This means that certain accents and marks
859 that normally follow an alphabetic character may no longer be the first
860 character of an identifier.
862 =head2 Threads and Processes
864 =head3 Directory handles not copied to threads
866 On systems other than Windows that do not have
867 a C<fchdir> function, newly-created threads no
868 longer inherit directory handles from their parent threads. Such programs
869 would usually have crashed anyway [perl #75154].
871 =head3 C<close> on shared pipes
873 To avoid deadlocks, the C<close> function no longer waits for the
874 child process to exit if the underlying file descriptor is still
875 in use by another thread. It returns true in such cases.
877 =head3 fork() emulation will not wait for signalled children
879 On Windows parent processes would not terminate until all forked
880 children had terminated first. However, C<kill("KILL", ...)> is
881 inherently unstable on pseudo-processes, and C<kill("TERM", ...)>
882 might not get delivered if the child is blocked in a system call.
884 To avoid the deadlock and still provide a safe mechanism to terminate
885 the hosting process, Perl now no longer waits for children that
886 have been sent a SIGTERM signal. It is up to the parent process to
887 waitpid() for these children if child-cleanup processing must be
888 allowed to finish. However, it is also then the responsibility of the
889 parent to avoid the deadlock by making sure the child process
890 can't be blocked on I/O.
892 See L<perlfork> for more information about the fork() emulation on
897 =head3 Naming fixes in Policy_sh.SH may invalidate Policy.sh
899 Several long-standing typos and naming confusions in F<Policy_sh.SH> have
900 been fixed, standardizing on the variable names used in F<config.sh>.
902 This will change the behaviour of F<Policy.sh> if you happen to have been
903 accidentally relying on its incorrect behaviour.
905 =head3 Perl source code is read in text mode on Windows
907 Perl scripts used to be read in binary mode on Windows for the benefit
908 of the L<ByteLoader> module (which is no longer part of core Perl). This
909 had the side-effect of breaking various operations on the C<DATA> filehandle,
910 including seek()/tell(), and even simply reading from C<DATA> after filehandles
911 have been flushed by a call to system(), backticks, fork() etc.
913 The default build options for Windows have been changed to read Perl source
914 code on Windows in text mode now. L<ByteLoader> will (hopefully) be updated on
915 CPAN to automatically handle this situation [perl #28106].
919 See also L</Deprecated C APIs>.
921 =head2 Omitting a space between a regular expression and subsequent word
923 Omitting the space between a regular expression operator or
924 its modifiers and the following word is deprecated. For
925 example, C<< m/foo/sand $bar >> is for now still parsed
926 as C<< m/foo/s and $bar >>, but will now issue a warning.
930 The backslash-c construct was designed as a way of specifying
931 non-printable characters, but there were no restrictions (on ASCII
932 platforms) on what the character following the C<c> could be. Now,
933 a deprecation warning is raised if that character isn't an ASCII character.
934 Also, a deprecation warning is raised for C<"\c{"> (which is the same
935 as simply saying C<";">).
937 =head2 C<"\b{"> and C<"\B{">
939 In regular expressions, a literal C<"{"> immediately following a C<"\b">
940 (not in a bracketed character class) or a C<"\B{"> is now deprecated
941 to allow for its future use by Perl itself.
943 =head2 Perl 4-era .pl libraries
945 Perl bundles a handful of library files that predate Perl 5.
946 This bundling is now deprecated for most of these files, which are now
947 available from CPAN. The affected files now warn when run, if they were
948 installed as part of the core.
950 This is a mandatory warning, not obeying B<-X> or lexical warning bits.
951 The warning is modelled on that supplied by F<deprecate.pm> for
952 deprecated-in-core F<.pm> libraries. It points to the specific CPAN
953 distribution that contains the F<.pl> libraries. The CPAN versions, of
954 course, do not generate the warning.
956 =head2 List assignment to C<$[>
958 Assignment to C<$[> was deprecated and started to give warnings in
959 Perl version 5.12.0. This version of Perl (5.14) now also emits a warning
960 when assigning to C<$[> in list context. This fixes an oversight in 5.12.0.
962 =head2 Use of qw(...) as parentheses
964 Historically the parser fooled itself into thinking that C<qw(...)> literals
965 were always enclosed in parentheses, and as a result you could sometimes omit
966 parentheses around them:
968 for $x qw(a b c) { ... }
970 The parser no longer lies to itself in this way. Wrap the list literal in
971 parentheses like this:
973 for $x (qw(a b c)) { ... }
975 This is being deprecated because the parentheses in C<for $i (1,2,3) { ... }>
976 are not part of expression syntax. They are part of the statement
977 syntax, with the C<for> statement wanting literal parentheses.
978 The synthetic parentheses that a C<qw> expression acquired were only
979 intended to be treated as part of expression syntax.
981 Note that this does not change the behaviour of cases like:
983 use POSIX qw(setlocale localeconv);
984 our @EXPORT = qw(foo bar baz);
986 where parentheses were never required around the expression.
990 This is because Unicode is using that name for a different character.
991 See L</Unicode Version 6.0 is now supported (mostly)> for more
996 C<?PATTERN?> (without the initial C<m>) has been deprecated and now produces
997 a warning. This is to allow future use of C<?> in new operators.
998 The match-once functionality is still available as C<m?PATTERN?>.
1000 =head2 Tie functions on scalars holding typeglobs
1002 Calling a tie function (C<tie>, C<tied>, C<untie>) with a scalar argument
1003 acts on a filehandle if the scalar happens to hold a typeglob.
1005 This is a long-standing bug that will be removed in Perl 5.16, as
1006 there is currently no way to tie the scalar itself when it holds
1007 a typeglob, and no way to untie a scalar that has had a typeglob
1010 Now there is a deprecation warning whenever a tie
1011 function is used on a handle without an explicit C<*>.
1013 =head2 User-defined case-mapping
1015 This feature is being deprecated due to its many issues, as documented in
1016 L<perlunicode/User-Defined Case Mappings (for serious hackers only)>.
1017 This feature will be removed in Perl 5.16. Instead use the CPAN module
1018 L<Unicode::Casing>, which provides improved functionality.
1020 =head2 Deprecated modules
1022 The following module will be removed from the core distribution in a
1023 future release, and should be installed from CPAN instead. Distributions
1024 on CPAN that require this should add it to their prerequisites. The
1025 core version of these module now issues a deprecation warning.
1027 If you ship a packaged version of Perl, either alone or as part of a
1028 larger system, then you should carefully consider the repercussions of
1029 core module deprecations. You may want to consider shipping your default
1030 build of Perl with a package for the deprecated module that
1031 installs into C<vendor> or C<site> Perl library directories. This will
1032 inhibit the deprecation warnings.
1034 Alternatively, you may want to consider patching F<lib/deprecate.pm>
1035 to provide deprecation warnings specific to your packaging system
1036 or distribution of Perl, consistent with how your packaging system
1037 or distribution manages a staged transition from a release where the
1038 installation of a single package provides the given functionality, to
1039 a later release where the system administrator needs to know to install
1040 multiple packages to get that same functionality.
1042 You can silence these deprecation warnings by installing the module
1043 in question from CPAN. To install the latest version of it by role
1044 rather than by name, just install C<Task::Deprecations::5_14>.
1048 =item L<Devel::DProf>
1050 We strongly recommend that you install and use L<Devel::NYTProf> instead
1051 of L<Devel::DProf>, as L<Devel::NYTProf> offers significantly
1052 improved profiling and reporting.
1056 =head1 Performance Enhancements
1058 =head2 "Safe signals" optimisation
1060 Signal dispatch has been moved from the runloop into control ops.
1061 This should give a few percent speed increase, and eliminates nearly
1062 all the speed penalty caused by the introduction of "safe signals"
1063 in 5.8.0. Signals should still be dispatched within the same
1064 statement as they were previously. If this does I<not> happen, or
1065 if you find it possible to create uninterruptible loops, this is a
1066 bug, and reports are encouraged of how to recreate such issues.
1068 =head2 Optimisation of shift() and pop() calls without arguments
1070 Two fewer OPs are used for shift() and pop() calls with no argument (with
1071 implicit C<@_>). This change makes shift() 5% faster than C<shift @_>
1072 on non-threaded perls, and 25% faster on threaded ones.
1074 =head2 Optimisation of regexp engine string comparison work
1076 The C<foldEQ_utf8> API function for case-insensitive comparison of strings (which
1077 is used heavily by the regexp engine) was substantially refactored and
1078 optimised -- and its documentation much improved as a free bonus.
1080 =head2 Regular expression compilation speed-up
1082 Compiling regular expressions has been made faster when upgrading
1083 the regex to utf8 is necessary but this isn't known when the compilation begins.
1085 =head2 String appending is 100 times faster
1087 When doing a lot of string appending, perls built to use the system's
1088 C<malloc> could end up allocating a lot more memory than needed in a
1091 C<sv_grow>, the function used to allocate more memory if necessary
1092 when appending to a string, has been taught to round up the memory
1093 it requests to a certain geometric progression, making it much faster on
1094 certain platforms and configurations. On Win32, it's now about 100 times
1097 =head2 Eliminate C<PL_*> accessor functions under ithreads
1099 When C<MULTIPLICITY> was first developed, and interpreter state moved into
1100 an interpreter struct, thread- and interpreter-local C<PL_*> variables
1101 were defined as macros that called accessor functions (returning the
1102 address of the value) outside the Perl core. The intent was to allow
1103 members within the interpreter struct to change size without breaking
1104 binary compatibility, so that bug fixes could be merged to a maintenance
1105 branch that necessitated such a size change. This mechanism was redundant
1106 and penalised well-behaved code. It has been removed.
1108 =head2 Freeing weak references
1110 When there are many weak references to an object, freeing that object
1111 can under some circumstances take O(I<NE<0xB2>>) time to free, where
1112 I<N> is the number of references. The circumstances in which this can happen
1113 have been reduced [perl #75254]
1115 =head2 Lexical array and hash assignments
1117 An earlier optimisation to speed up C<my @array = ...> and
1118 C<my %hash = ...> assignments caused a bug and was disabled in Perl 5.12.0.
1120 Now we have found another way to speed up these assignments [perl #82110].
1122 =head2 C<@_> uses less memory
1124 Previously, C<@_> was allocated for every subroutine at compile time with
1125 enough space for four entries. Now this allocation is done on demand when
1126 the subroutine is called [perl #72416].
1128 =head2 Size optimisations to SV and HV structures
1130 C<xhv_fill> has been eliminated from C<struct xpvhv>, saving 1 IV per hash and
1131 on some systems will cause C<struct xpvhv> to become cache-aligned. To avoid
1132 this memory saving causing a slowdown elsewhere, boolean use of C<HvFILL>
1133 now calls C<HvTOTALKEYS> instead (which is equivalent), so while the fill
1134 data when actually required are now calculated on demand, cases when
1135 this needs to be done should be rare.
1137 The order of structure elements in SV bodies has changed. Effectively,
1138 the NV slot has swapped location with STASH and MAGIC. As all access to
1139 SV members is via macros, this should be completely transparent. This
1140 change allows the space saving for PVHVs documented above, and may reduce
1141 the memory allocation needed for PVIVs on some architectures.
1143 C<XPV>, C<XPVIV>, and C<XPVNV> now allocate only the parts of the C<SV> body
1144 they actually use, saving some space.
1146 Scalars containing regular expressions now allocate only the part of the C<SV>
1147 body they actually use, saving some space.
1149 =head2 Memory consumption improvements to Exporter
1151 The C<@EXPORT_FAIL> AV is no longer created unless needed, hence neither is
1152 the typeglob backing it. This saves about 200 bytes for every package that
1153 uses Exporter but doesn't use this functionality.
1155 =head2 Memory savings for weak references
1157 For weak references, the common case of just a single weak reference
1158 per referent has been optimised to reduce the storage required. In this
1159 case it saves the equivalent of one small Perl array per referent.
1161 =head2 C<%+> and C<%-> use less memory
1163 The bulk of the C<Tie::Hash::NamedCapture> module used to be in the Perl
1164 core. It has now been moved to an XS module to reduce overhead for
1165 programs that do not use C<%+> or C<%->.
1167 =head2 Multiple small improvements to threads
1169 The internal structures of threading now make fewer API calls and fewer
1170 allocations, resulting in noticeably smaller object code. Additionally,
1171 many thread context checks have been deferred so they're done only
1172 as needed (although this is only possible for non-debugging builds).
1174 =head2 Adjacent pairs of nextstate opcodes are now optimized away
1176 Previously, in code such as
1178 use constant DEBUG => 0;
1185 the ops for C<warn if DEBUG> would be folded to a C<null> op (C<ex-const>), but
1186 the C<nextstate> op would remain, resulting in a runtime op dispatch of
1187 C<nextstate>, C<nextstate>, etc.
1189 The execution of a sequence of C<nextstate> ops is indistinguishable from just
1190 the last C<nextstate> op so the peephole optimizer now eliminates the first of
1191 a pair of C<nextstate> ops except when the first carries a label, since labels
1192 must not be eliminated by the optimizer, and label usage isn't conclusively known
1195 =head1 Modules and Pragmata
1197 =head2 New Modules and Pragmata
1203 L<CPAN::Meta::YAML> 0.003 has been added as a dual-life module. It supports a
1204 subset of YAML sufficient for reading and writing F<META.yml> and F<MYMETA.yml> files
1205 included with CPAN distributions or generated by the module installation
1206 toolchain. It should not be used for any other general YAML parsing or
1211 L<CPAN::Meta> version 2.110440 has been added as a dual-life module. It
1212 provides a standard library to read, interpret and write CPAN distribution
1213 metadata files (like F<META.json> and F<META.yml)> that describe a
1214 distribution, its contents, and the requirements for building it and
1215 installing it. The latest CPAN distribution metadata specification is
1216 included as L<CPAN::Meta::Spec> and notes on changes in the specification
1217 over time are given in L<CPAN::Meta::History>.
1221 L<HTTP::Tiny> 0.012 has been added as a dual-life module. It is a very
1222 small, simple HTTP/1.1 client designed for simple GET requests and file
1223 mirroring. It has been added so that F<CPAN.pm> and L<CPANPLUS> can
1224 "bootstrap" HTTP access to CPAN using pure Perl without relying on external
1225 binaries like L<curl(1)> or L<wget(1)>.
1229 L<JSON::PP> 2.27105 has been added as a dual-life module to allow CPAN
1230 clients to read F<META.json> files in CPAN distributions.
1234 L<Module::Metadata> 1.000004 has been added as a dual-life module. It gathers
1235 package and POD information from Perl module files. It is a standalone module
1236 based on L<Module::Build::ModuleInfo> for use by other module installation
1237 toolchain components. L<Module::Build::ModuleInfo> has been deprecated in
1238 favor of this module instead.
1242 L<Perl::OSType> 1.002 has been added as a dual-life module. It maps Perl
1243 operating system names (like "dragonfly" or "MSWin32") to more generic types
1244 with standardized names (like "Unix" or "Windows"). It has been refactored
1245 out of L<Module::Build> and L<ExtUtils::CBuilder> and consolidates such mappings into
1246 a single location for easier maintenance.
1250 The following modules were added by the L<Unicode::Collate>
1251 upgrade. See below for details.
1253 L<Unicode::Collate::CJK::Big5>
1255 L<Unicode::Collate::CJK::GB2312>
1257 L<Unicode::Collate::CJK::JISX0208>
1259 L<Unicode::Collate::CJK::Korean>
1261 L<Unicode::Collate::CJK::Pinyin>
1263 L<Unicode::Collate::CJK::Stroke>
1267 L<Version::Requirements> version 0.101020 has been added as a dual-life
1268 module. It provides a standard library to model and manipulates module
1269 prerequisites and version constraints defined in L<CPAN::Meta::Spec>.
1273 =head2 Updated Modules and Pragma
1279 L<attributes> has been upgraded from version 0.12 to 0.14.
1283 L<Archive::Extract> has been upgraded from version 0.38 to 0.48.
1285 Updates since 0.38 include: a safe print method that guards
1286 L<Archive::Extract> from changes to C<$\>; a fix to the tests when run in core
1287 Perl; support for TZ files; a modification for the lzma
1288 logic to favour L<IO::Uncompress::Unlzma>; and a fix
1289 for an issue with NetBSD-current and its new L<unzip(1)>
1294 L<Archive::Tar> has been upgraded from version 1.54 to 1.76.
1296 Important changes since 1.54 include the following:
1302 Compatibility with busybox implementations of L<tar(1)>.
1306 A fix so that write() and create_archive()
1307 close only filehandles they themselves opened.
1311 A bug was fixed regarding the exit code of extract_archive.
1315 The L<ptar(1)> utility has a new option to allow safe creation of
1316 tarballs without world-writable files on Windows, allowing those
1317 archives to be uploaded to CPAN.
1321 A new L<ptargrep(1)> utility for using regular expressions against
1322 the contents of files in a tar archive.
1326 L<pax> extended headers are now skipped.
1332 L<Attribute::Handlers> has been upgraded from version 0.87 to 0.89.
1336 L<autodie> has been upgraded from version 2.06_01 to 2.1001.
1340 L<AutoLoader> has been upgraded from version 5.70 to 5.71.
1344 The L<B> module has been upgraded from version 1.23 to 1.29.
1346 It no longer crashes when taking apart a C<y///> containing characters
1347 outside the octet range or compiled in a C<use utf8> scope.
1349 The size of the shared object has been reduced by about 40%, with no
1350 reduction in functionality.
1354 L<B::Concise> has been upgraded from version 0.78 to 0.83.
1356 L<B::Concise> marks rv2sv(), rv2av(), and rv2hv() ops with the new
1357 C<OPpDEREF> flag as "DREFed".
1359 It no longer produces mangled output with the B<-tree> option
1364 L<B::Debug> has been upgraded from version 1.12 to 1.16.
1368 L<B::Deparse> has been upgraded from version 0.96 to 1.03.
1370 The deparsing of a C<nextstate> op has changed when it has both a
1371 change of package relative to the previous nextstate, or a change of
1372 C<%^H> or other state and a label. The label was previously emitted
1373 first, but is now emitted last (5.12.1).
1375 The C<no 5.13.2> or similar form is now correctly handled by L<B::Deparse>
1378 L<B::Deparse> now properly handles the code that applies a conditional
1379 pattern match against implicit C<$_> as it was fixed in [perl #20444].
1381 Deparsing of C<our> followed by a variable with funny characters
1382 (as permitted under the C<use utf8> pragma) has also been fixed [perl #33752].
1386 L<B::Lint> has been upgraded from version 1.11_01 to 1.13.
1390 L<base> has been upgraded from version 2.15 to 2.16.
1394 L<Benchmark> has been upgraded from version 1.11 to 1.12.
1398 L<bignum> has been upgraded from version 0.23 to 0.27.
1402 L<Carp> has been upgraded from version 1.15 to 1.20.
1404 L<Carp> now detects incomplete L<caller()|perlfunc/"caller EXPR">
1405 overrides and avoids using bogus C<@DB::args>. To provide backtraces,
1406 Carp relies on particular behaviour of the caller() builtin.
1407 L<Carp> now detects if other code has overridden this with an
1408 incomplete implementation, and modifies its backtrace accordingly.
1409 Previously incomplete overrides would cause incorrect values in
1410 backtraces (best case), or obscure fatal errors (worst case).
1412 This fixes certain cases of "Bizarre copy of ARRAY" caused by modules
1413 overriding caller() incorrectly (5.12.2).
1415 It now also avoids using regular expressions that cause Perl to
1416 load its Unicode tables, so as to avoid the "BEGIN not safe after
1417 errors" error that ensue if there has been a syntax error
1422 L<CGI> has been upgraded from version 3.48 to 3.52.
1424 This provides the following security fixes: the MIME boundary in
1425 multipart_init() is now random and the handling of
1426 newlines embedded in header values has been improved.
1430 L<Compress::Raw::Bzip2> has been upgraded from version 2.024 to 2.033.
1432 It has been updated to use L<bzip2(1)> 1.0.6.
1436 L<Compress::Raw::Zlib> has been upgraded from version 2.024 to 2.033.
1440 L<constant> has been upgraded from version 1.20 to 1.21.
1442 Unicode constants work once more. They have been broken since Perl 5.10.0
1447 L<CPAN> has been upgraded from version 1.94_56 to 1.9600.
1453 =item * much less configuration dialog hassle
1455 =item * support for F<META/MYMETA.json>
1457 =item * support for L<local::lib>
1459 =item * support for L<HTTP::Tiny> to reduce the dependency on FTP sites
1461 =item * automatic mirror selection
1463 =item * iron out all known bugs in configure_requires
1465 =item * support for distributions compressed with L<bzip2(1)>
1467 =item * allow F<Foo/Bar.pm> on the command line to mean C<Foo::Bar>
1473 L<CPANPLUS> has been upgraded from version 0.90 to 0.9103.
1475 A change to F<cpanp-run-perl>
1476 resolves L<RT #55964|http://rt.cpan.org/Public/Bug/Display.html?id=55964>
1477 and L<RT #57106|http://rt.cpan.org/Public/Bug/Display.html?id=57106>, both
1478 of which related to failures to install distributions that use
1479 C<Module::Install::DSL> (5.12.2).
1481 A dependency on L<Config> was not recognised as a
1482 core module dependency. This has been fixed.
1484 L<CPANPLUS> now includes support for F<META.json> and F<MYMETA.json>.
1488 L<CPANPLUS::Dist::Build> has been upgraded from version 0.46 to 0.54.
1492 L<Data::Dumper> has been upgraded from version 2.125 to 2.130_02.
1494 The indentation used to be off when C<$Data::Dumper::Terse> was set. This
1495 has been fixed [perl #73604].
1497 This upgrade also fixes a crash when using custom sort functions that might
1498 cause the stack to change [perl #74170].
1500 L<Dumpxs> no longer crashes with globs returned by C<*$io_ref>
1505 L<DB_File> has been upgraded from version 1.820 to 1.821.
1509 L<DBM_Filter> has been upgraded from version 0.03 to 0.04.
1513 L<Devel::DProf> has been upgraded from version 20080331.00 to 20110228.00.
1515 Merely loading L<Devel::DProf> now no longer triggers profiling to start.
1516 Both C<use Devel::DProf> and C<perl -d:DProf ...> behave as before and start
1519 B<NOTE>: L<Devel::DProf> is deprecated and will be removed from a future
1520 version of Perl. We strongly recommend that you install and use
1521 L<Devel::NYTProf> instead, as it offers significantly improved
1522 profiling and reporting.
1526 L<Devel::Peek> has been upgraded from version 1.04 to 1.07.
1530 L<Devel::SelfStubber> has been upgraded from version 1.03 to 1.05.
1534 L<diagnostics> has been upgraded from version 1.19 to 1.22.
1536 It now renders pod links slightly better, and has been taught to find
1537 descriptions for messages that share their descriptions with other
1542 L<Digest::MD5> has been upgraded from version 2.39 to 2.51.
1544 It is now safe to use this module in combination with threads.
1548 L<Digest::SHA> has been upgraded from version 5.47 to 5.61.
1550 L<shasum> now more closely mimics L<sha1sum(1)>/L<md5sum(1)>.
1552 L<Addfile> accepts all POSIX filenames.
1554 New SHA-512/224 and SHA-512/256 transforms (ref. NIST Draft FIPS 180-4
1559 L<DirHandle> has been upgraded from version 1.03 to 1.04.
1563 L<Dumpvalue> has been upgraded from version 1.13 to 1.16.
1567 L<DynaLoader> has been upgraded from version 1.10 to 1.13.
1569 It fixes a buffer overflow when passed a very long file name.
1571 It no longer inherits from L<AutoLoader>; hence it no longer
1572 produces weird error messages for unsuccessful method calls on classes that
1573 inherit from L<DynaLoader> [perl #84358].
1577 L<Encode> has been upgraded from version 2.39 to 2.42.
1579 Now, all 66 Unicode non-characters are treated the same way U+FFFF has
1580 always been treated: in cases when it was disallowed, all 66 are
1581 disallowed, and in cases where it warned, all 66 warn.
1585 L<Env> has been upgraded from version 1.01 to 1.02.
1589 L<Errno> has been upgraded from version 1.11 to 1.13.
1591 The implementation of L<Errno> has been refactored to use about 55% less memory.
1593 On some platforms with unusual header files, like Win32 L<gcc(1)> using C<mingw64>
1594 headers, some constants that weren't actually error numbers have been exposed
1595 by L<Errno>. This has been fixed [perl #77416].
1599 L<Exporter> has been upgraded from version 5.64_01 to 5.64_03.
1601 Exporter no longer overrides C<$SIG{__WARN__}> [perl #74472]
1605 L<ExtUtils::CBuilder> has been upgraded from version 0.27 to 0.280203.
1609 L<ExtUtils::Command> has been upgraded from version 1.16 to 1.17.
1613 L<ExtUtils::Constant> has been upgraded from 0.22 to 0.23.
1615 The L<AUTOLOAD> helper code generated by C<ExtUtils::Constant::ProxySubs>
1616 can now croak() for missing constants, or generate a complete C<AUTOLOAD>
1617 subroutine in XS, allowing simplification of many modules that use it
1618 (L<Fcntl>, L<File::Glob>, L<GDBM_File>, L<I18N::Langinfo>, L<POSIX>,
1621 L<ExtUtils::Constant::ProxySubs> can now optionally push the names of all
1622 constants onto the package's C<@EXPORT_OK>.
1626 L<ExtUtils::Install> has been upgraded from version 1.55 to 1.56.
1630 L<ExtUtils::MakeMaker> has been upgraded from version 6.56 to 6.57_05.
1634 L<ExtUtils::Manifest> has been upgraded from version 1.57 to 1.58.
1638 L<ExtUtils::ParseXS> has been upgraded from version 2.21 to 2.2210.
1642 L<Fcntl> has been upgraded from version 1.06 to 1.11.
1646 L<File::Basename> has been upgraded from version 2.78 to 2.82.
1650 L<File::CheckTree> has been upgraded from version 4.4 to 4.41.
1654 L<File::Copy> has been upgraded from version 2.17 to 2.21.
1658 L<File::DosGlob> has been upgraded from version 1.01 to 1.04.
1660 It allows patterns containing literal parentheses: they no longer need to
1661 be escaped. On Windows, it no longer
1662 adds an extra F<./> to file names
1663 returned when the pattern is a relative glob with a drive specification,
1664 like F<C:*.pl> [perl #71712].
1668 L<File::Fetch> has been upgraded from version 0.24 to 0.32.
1670 L<HTTP::Lite> is now supported for the "http" scheme.
1672 The L<fetch(1)> utility is supported on FreeBSD, NetBSD, and
1673 Dragonfly BSD for the C<http> and C<ftp> schemes.
1677 L<File::Find> has been upgraded from version 1.15 to 1.19.
1679 It improves handling of backslashes on Windows, so that paths like
1680 F<C:\dir\/file> are no longer generated [perl #71710].
1684 L<File::Glob> has been upgraded from version 1.07 to 1.12.
1688 L<File::Spec> has been upgraded from version 3.31 to 3.33.
1690 Several portability fixes were made in L<File::Spec::VMS>: a colon is now
1691 recognized as a delimiter in native filespecs; caret-escaped delimiters are
1692 recognized for better handling of extended filespecs; catpath() returns
1693 an empty directory rather than the current directory if the input directory
1694 name is empty; and abs2rel() properly handles Unix-style input (5.12.2).
1698 L<File::stat> has been upgraded from 1.02 to 1.05.
1700 The C<-x> and C<-X> file test operators now work correctly when run
1705 L<Filter::Simple> has been upgraded from version 0.84 to 0.86.
1709 L<GDBM_File> has been upgraded from 1.10 to 1.14.
1711 This fixes a memory leak when DBM filters are used.
1715 L<Hash::Util> has been upgraded from 0.07 to 0.11.
1717 L<Hash::Util> no longer emits spurious "uninitialized" warnings when
1718 recursively locking hashes that have undefined values [perl #74280].
1722 L<Hash::Util::FieldHash> has been upgraded from version 1.04 to 1.09.
1726 L<I18N::Collate> has been upgraded from version 1.01 to 1.02.
1730 L<I18N::Langinfo> has been upgraded from version 0.03 to 0.08.
1732 langinfo() now defaults to using C<$_> if there is no argument given, just
1733 as the documentation has always claimed.
1737 L<I18N::LangTags> has been upgraded from version 0.35 to 0.35_01.
1741 L<if> has been upgraded from version 0.05 to 0.0601.
1745 L<IO> has been upgraded from version 1.25_02 to 1.25_04.
1747 This version of L<IO> includes a new L<IO::Select>, which now allows L<IO::Handle>
1748 objects (and objects in derived classes) to be removed from an L<IO::Select> set
1749 even if the underlying file descriptor is closed or invalid.
1753 L<IPC::Cmd> has been upgraded from version 0.54 to 0.70.
1755 Resolves an issue with splitting Win32 command lines. An argument
1756 consisting of the single character "0" used to be omitted (CPAN RT #62961).
1760 L<IPC::Open3> has been upgraded from 1.05 to 1.09.
1762 open3() now produces an error if the C<exec> call fails, allowing this
1763 condition to be distinguished from a child process that exited with a
1764 non-zero status [perl #72016].
1766 The internal xclose() routine now knows how to handle file descriptors as
1767 documented, so duplicating C<STDIN> in a child process using its file
1768 descriptor now works [perl #76474].
1772 L<IPC::SysV> has been upgraded from version 2.01 to 2.03.
1776 L<lib> has been upgraded from version 0.62 to 0.63.
1780 L<Locale::Maketext> has been upgraded from version 1.14 to 1.19.
1782 L<Locale::Maketext> now supports external caches.
1784 This upgrade also fixes an infinite loop in
1785 C<Locale::Maketext::Guts::_compile()> when
1786 working with tainted values (CPAN RT #40727).
1788 C<< ->maketext >> calls now back up and restore C<$@> so error
1789 messages are not suppressed (CPAN RT #34182).
1793 L<Log::Message> has been upgraded from version 0.02 to 0.04.
1797 L<Log::Message::Simple> has been upgraded from version 0.06 to 0.08.
1801 L<Math::BigInt> has been upgraded from version 1.89_01 to 1.994.
1803 This fixes, among other things, incorrect results when computing binomial
1804 coefficients [perl #77640].
1806 It also prevents C<sqrt($int)> from crashing under C<use bigrat>.
1811 L<Math::BigInt::FastCalc> has been upgraded from version 0.19 to 0.28.
1815 L<Math::BigRat> has been upgraded from version 0.24 to 0.26_02.
1819 L<Memoize> has been upgraded from version 1.01_03 to 1.02.
1823 L<MIME::Base64> has been upgraded from 3.08 to 3.13.
1825 Includes new functions to calculate the length of encoded and decoded
1828 Now provides encode_base64url() and decode_base64url() functions to process
1829 the base64 scheme for "URL applications".
1833 L<Module::Build> has been upgraded from version 0.3603 to 0.3800.
1835 A notable change is the deprecation of several modules.
1836 L<Module::Build::Version> has been deprecated and L<Module::Build> now
1837 relies on the L<version> pragma directly. L<Module::Build::ModuleInfo> has
1838 been deprecated in favor of a standalone copy called L<Module::Metadata>.
1839 L<Module::Build::YAML> has been deprecated in favor of L<CPAN::Meta::YAML>.
1841 L<Module::Build> now also generates F<META.json> and F<MYMETA.json> files
1842 in accordance with version 2 of the CPAN distribution metadata specification,
1843 L<CPAN::Meta::Spec>. The older format F<META.yml> and F<MYMETA.yml> files are
1848 L<Module::CoreList> has been upgraded from version 2.29 to 2.47.
1850 Besides listing the updated core modules of this release, it also stops listing
1851 the C<Filespec> module. That module never existed in core. The scripts
1852 generating L<Module::CoreList> confused it with L<VMS::Filespec>, which actually
1853 is a core module as of Perl 5.8.7.
1857 L<Module::Load> has been upgraded from version 0.16 to 0.18.
1861 L<Module::Load::Conditional> has been upgraded from version 0.34 to 0.44.
1865 The L<mro> pragma has been upgraded from version 1.02 to 1.07.
1869 L<NDBM_File> has been upgraded from version 1.08 to 1.12.
1871 This fixes a memory leak when DBM filters are used.
1875 L<Net::Ping> has been upgraded from version 2.36 to 2.38.
1879 L<NEXT> has been upgraded from version 0.64 to 0.65.
1883 L<Object::Accessor> has been upgraded from version 0.36 to 0.38.
1887 L<ODBM_File> has been upgraded from version 1.07 to 1.10.
1889 This fixes a memory leak when DBM filters are used.
1893 L<Opcode> has been upgraded from version 1.15 to 1.18.
1897 The L<overload> pragma has been upgraded from 1.10 to 1.13.
1899 C<overload::Method> can now handle subroutines that are themselves blessed
1900 into overloaded classes [perl #71998].
1902 The documentation has greatly improved. See L</Documentation> below.
1906 L<Params::Check> has been upgraded from version 0.26 to 0.28.
1910 The L<parent> pragma has been upgraded from version 0.223 to 0.225.
1914 L<Parse::CPAN::Meta> has been upgraded from version 1.40 to 1.4401.
1916 The latest Parse::CPAN::Meta can now read YAML and JSON files using
1917 L<CPAN::Meta::YAML> and L<JSON::PP>, which are now part of the Perl core.
1921 L<PerlIO::encoding> has been upgraded from version 0.12 to 0.14.
1925 L<PerlIO::scalar> has been upgraded from 0.07 to 0.11.
1927 A read() after a seek() beyond the end of the string no longer thinks it
1928 has data to read [perl #78716].
1932 L<PerlIO::via> has been upgraded from version 0.09 to 0.11.
1936 L<Pod::Html> has been upgraded from version 1.09 to 1.11.
1940 L<Pod::LaTeX> has been upgraded from version 0.58 to 0.59.
1944 L<Pod::Perldoc> has been upgraded from version 3.15_02 to 3.15_03.
1948 L<Pod::Simple> has been upgraded from version 3.13 to 3.16.
1952 L<POSIX> has been upgraded from 1.19 to 1.24.
1954 It now includes constants for POSIX signal constants.
1958 The L<re> pragma has been upgraded from version 0.11 to 0.18.
1960 The C<use re '/flags'> subpragma is new.
1962 The regmust() function used to crash when called on a regular expression
1963 belonging to a pluggable engine. Now it croaks instead.
1965 regmust() no longer leaks memory.
1969 L<Safe> has been upgraded from version 2.25 to 2.29.
1971 Coderefs returned by reval() and rdo() are now wrapped via
1972 wrap_code_refs() (5.12.1).
1974 This fixes a possible infinite loop when looking for coderefs.
1976 It adds several C<version::vxs::*> routines to the default share.
1980 L<SDBM_File> has been upgraded from version 1.06 to 1.09.
1984 L<SelfLoader> has been upgraded from 1.17 to 1.18.
1986 It now works in taint mode [perl #72062].
1990 The L<sigtrap> pragma has been upgraded from version 1.04 to 1.05.
1992 It no longer tries to modify read-only arguments when generating a
1993 backtrace [perl #72340].
1997 L<Socket> has been upgraded from version 1.87 to 1.94.
1999 See L</Improved IPv6 support> above.
2003 L<Storable> has been upgraded from version 2.22 to 2.27.
2005 Includes performance improvement for overloaded classes.
2007 This adds support for serialising code references that contain UTF-8 strings
2008 correctly. The L<Storable> minor version
2009 number changed as a result, meaning that
2010 L<Storable> users who set C<$Storable::accept_future_minor> to a C<FALSE> value
2011 will see errors (see L<Storable/FORWARD COMPATIBILITY> for more details).
2013 Freezing no longer gets confused if the Perl stack gets reallocated
2014 during freezing [perl #80074].
2018 L<Sys::Hostname> has been upgraded from version 1.11 to 1.16.
2022 L<Term::ANSIColor> has been upgraded from version 2.02 to 3.00.
2026 L<Term::UI> has been upgraded from version 0.20 to 0.26.
2030 L<Test::Harness> has been upgraded from version 3.17 to 3.23.
2034 L<Test::Simple> has been upgraded from version 0.94 to 0.98.
2036 Among many other things, subtests without a C<plan> or C<no_plan> now have an
2037 implicit done_testing() added to them.
2041 L<Thread::Semaphore> has been upgraded from version 2.09 to 2.12.
2043 It provides two new methods that give more control over the decrementing of
2044 semaphores: C<down_nb> and C<down_force>.
2048 L<Thread::Queue> has been upgraded from version 2.11 to 2.12.
2052 The L<threads> pragma has been upgraded from version 1.75 to 1.83.
2056 The L<threads::shared> pragma has been upgraded from version 1.32 to 1.37.
2060 L<Tie::Hash> has been upgraded from version 1.03 to 1.04.
2062 Calling C<< Tie::Hash->TIEHASH() >> used to loop forever. Now it C<croak>s.
2066 L<Tie::Hash::NamedCapture> has been upgraded from version 0.06 to 0.08.
2070 L<Tie::RefHash> has been upgraded from version 1.38 to 1.39.
2074 L<Time::HiRes> has been upgraded from version 1.9719 to 1.9721_01.
2078 L<Time::Local> has been upgraded from version 1.1901_01 to 1.2000.
2082 L<Time::Piece> has been upgraded from version 1.15_01 to 1.20_01.
2086 L<Unicode::Collate> has been upgraded from version 0.52_01 to 0.73.
2088 L<Unicode::Collate> has been updated to use Unicode 6.0.0.
2090 L<Unicode::Collate::Locale> now supports a plethora of new locales: I<ar, be,
2091 bg, de__phonebook, hu, hy, kk, mk, nso, om, tn, vi, hr, ig, ja, ko, ru, sq,
2092 se, sr, to, uk, zh, zh__big5han, zh__gb2312han, zh__pinyin>, and I<zh__stroke>.
2094 The following modules have been added:
2096 L<Unicode::Collate::CJK::Big5> for C<zh__big5han> which makes
2097 tailoring of CJK Unified Ideographs in the order of CLDR's big5han ordering.
2099 L<Unicode::Collate::CJK::GB2312> for C<zh__gb2312han> which makes
2100 tailoring of CJK Unified Ideographs in the order of CLDR's gb2312han ordering.
2102 L<Unicode::Collate::CJK::JISX0208> which makes tailoring of 6355 kanji
2103 (CJK Unified Ideographs) in the JIS X 0208 order.
2105 L<Unicode::Collate::CJK::Korean> which makes tailoring of CJK Unified Ideographs
2106 in the order of CLDR's Korean ordering.
2108 L<Unicode::Collate::CJK::Pinyin> for C<zh__pinyin> which makes
2109 tailoring of CJK Unified Ideographs in the order of CLDR's pinyin ordering.
2111 L<Unicode::Collate::CJK::Stroke> for C<zh__stroke> which makes
2112 tailoring of CJK Unified Ideographs in the order of CLDR's stroke ordering.
2114 This also sees the switch from using the pure-Perl version of this
2115 module to the XS version.
2119 L<Unicode::Normalize> has been upgraded from version 1.03 to 1.10.
2123 L<Unicode::UCD> has been upgraded from version 0.27 to 0.32.
2125 A new function, Unicode::UCD::num(), has been added. This function
2126 returns the numeric value of the string passed it or C<undef> if the string
2127 in its entirety has no "safe" numeric value. (For more detail, and for the
2128 definition of "safe", see L<Unicode::UCD/num>.)
2130 This upgrade also includes several bug fixes:
2140 It is now updated to Unicode Version 6.0.0 with I<Corrigendum #8>,
2141 excepting that, just as with Perl 5.14, the code point at U+1F514 has no name.
2145 Hangul syllable code points have the correct names, and their
2146 decompositions are always output without requiring L<Lingua::KO::Hangul::Util>
2151 CJK (Chinese-Japanese-Korean) code points U+2A700 to U+2B734
2152 and U+2B740 to U+2B81D are now properly handled.
2156 Numeric values are now output for those CJK code points that have them.
2160 Names output for code points with multiple aliases are now the
2167 This now correctly returns "Unknown" instead of C<undef> for the script
2168 of a code point that hasn't been assigned another one.
2172 This now correctly returns "No_Block" instead of C<undef> for the block
2173 of a code point that hasn't been assigned to another one.
2179 The L<version> pragma has been upgraded from 0.82 to 0.88.
2181 Because of a bug, now fixed, the is_strict() and is_lax() functions did not
2182 work when exported (5.12.1).
2186 The L<warnings> pragma has been upgraded from version 1.09 to 1.12.
2188 Calling C<use warnings> without arguments is now significantly more efficient.
2192 The L<warnings::register> pragma has been upgraded from version 1.01 to 1.02.
2194 It is now possible to register warning categories other than the names of
2195 packages using L<warnings::register>. See L<perllexwarn(1)> for more information.
2199 L<XSLoader> has been upgraded from version 0.10 to 0.13.
2203 L<VMS::DCLsym> has been upgraded from version 1.03 to 1.05.
2205 Two bugs have been fixed [perl #84086]:
2207 The symbol table name was lost when tying a hash, due to a thinko in
2208 C<TIEHASH>. The result was that all tied hashes interacted with the
2211 Unless a symbol table name had been explicitly specified in the call
2212 to the constructor, querying the special key C<:LOCAL> failed to
2213 identify objects connected to the local symbol table.
2217 The L<Win32> module has been upgraded from version 0.39 to 0.44.
2219 This release has several new functions: Win32::GetSystemMetrics(),
2220 Win32::GetProductInfo(), Win32::GetOSDisplayName().
2222 The names returned by Win32::GetOSName() and Win32::GetOSDisplayName()
2223 have been corrected.
2227 L<XS::Typemap> has been upgraded from version 0.03 to 0.05.
2231 =head2 Removed Modules and Pragmata
2233 As promised in Perl 5.12.0's release notes, the following modules have
2234 been removed from the core distribution, and if needed should be installed
2241 L<Class::ISA> has been removed from the Perl core. Prior version was 0.36.
2245 L<Pod::Plainer> has been removed from the Perl core. Prior version was 1.02.
2249 L<Switch> has been removed from the Perl core. Prior version was 2.16.
2253 The removal of L<Shell> has been deferred until after 5.14, as the
2254 implementation of L<Shell> shipped with 5.12.0 did not correctly issue the
2255 warning that it was to be removed from core.
2257 =head1 Documentation
2259 =head2 New Documentation
2263 L<perlgpl> has been updated to contain GPL version 1, as is included in the
2264 F<README> distributed with Perl (5.12.1).
2266 =head3 Perl 5.12.x delta files
2268 The perldelta files for Perl 5.12.1 to 5.12.3 have been added from the
2269 maintenance branch: L<perl5121delta>, L<perl5122delta>, L<perl5123delta>.
2271 =head3 L<perlpodstyle>
2273 New style guide for POD documentation,
2274 split mostly from the NOTES section of the L<pod2man(1)> manpage.
2276 =head3 L<perlsource>, L<perlinterp>, L<perlhacktut>, and L<perlhacktips>
2278 See L</perlhack and perlrepository revamp>, below.
2280 =head2 Changes to Existing Documentation
2282 =head3 L<perlmodlib> is now complete
2284 The L<perlmodlib> manpage that came with Perl 5.12.0 was missing several
2285 modules due to a bug in the script that generates the list. This has been
2286 fixed [perl #74332] (5.12.1).
2288 =head3 Replace incorrect tr/// table in L<perlebcdic>
2290 L<perlebcdic> contains a helpful table to use in C<tr///> to convert
2291 between EBCDIC and Latin1/ASCII. The table was the inverse of the one
2292 it describes, though the code that used the table worked correctly for
2293 the specific example given.
2295 The table has been corrected and the sample code changed to correspond.
2297 The table has also been changed to hex from octal, and the recipes in the
2298 pod have been altered to print out leading zeros to make all values
2301 =head3 Tricks for user-defined casing
2303 L<perlunicode> now contains an explanation of how to override, mangle
2304 and otherwise tweak the way Perl handles upper-, lower- and other-case
2305 conversions on Unicode data, and how to provide scoped changes to alter
2306 one's own code's behaviour without stomping on anybody else's.
2308 =head3 INSTALL explicitly states that Perl requires a C89 compiler
2310 This was already true, but it's now Officially Stated For The Record
2313 =head3 Explanation of C<\xI<HH>> and C<\oI<OOO>> escapes
2315 L<perlop> has been updated with more detailed explanation of these two
2318 =head3 B<-0I<NNN>> switch
2320 In L<perlrun>, the behaviour of the B<-0NNN> switch for B<-0400> or higher
2321 has been clarified (5.12.2).
2323 =head3 Maintenance policy
2325 L<perlpolicy> now contains the policy on what patches are acceptable for
2326 maintenance branches (5.12.1).
2328 =head3 Deprecation policy
2330 L<perlpolicy> now contains the policy on compatibility and deprecation
2331 along with definitions of terms like "deprecation" (5.12.2).
2333 =head3 New descriptions in L<perldiag>
2335 The following existing diagnostics are now documented:
2341 L<Ambiguous use of %c resolved as operator %c|perldiag/"Ambiguous use of %c resolved as operator %c">
2345 L<Ambiguous use of %c{%s} resolved to %c%s|perldiag/"Ambiguous use of %c{%s} resolved to %c%s">
2349 L<Ambiguous use of %c{%s[...]} resolved to %c%s[...]|perldiag/"Ambiguous use of %c{%s[...]} resolved to %c%s[...]">
2353 L<Ambiguous use of %c{%s{...}} resolved to %c%s{...}|perldiag/"Ambiguous use of %c{%s{...}} resolved to %c%s{...}">
2357 L<Ambiguous use of -%s resolved as -&%s()|perldiag/"Ambiguous use of -%s resolved as -&%s()">
2361 L<Invalid strict version format (%s)|perldiag/"Invalid strict version format (%s)">
2365 L<Invalid version format (%s)|perldiag/"Invalid version format (%s)">
2369 L<Invalid version object|perldiag/"Invalid version object">
2375 L<perlbook> has been expanded to cover many more popular books.
2377 =head3 C<SvTRUE> macro
2379 The documentation for the C<SvTRUE> macro in
2380 L<perlapi> was simply wrong in stating that
2381 get-magic is not processed. It has been corrected.
2383 =head3 op manipulation functions
2385 Several API functions that process optrees have been newly documented.
2387 =head3 L<perlvar> revamp
2389 L<perlvar> reorders the variables and groups them by topic. Each variable
2390 introduced after Perl 5.000 notes the first version in which it is
2391 available. L<perlvar> also has a new section for deprecated variables to
2392 note when they were removed.
2394 =head3 Array and hash slices in scalar context
2396 These are now documented in L<perldata>.
2398 =head3 C<use locale> and formats
2400 L<perlform> and L<perllocale> have been corrected to state that
2401 C<use locale> affects formats.
2405 L<overload>'s documentation has practically undergone a rewrite. It
2406 is now much more straightforward and clear.
2408 =head3 perlhack and perlrepository revamp
2410 The L<perlhack> document is now much shorter, and focuses on the Perl 5
2411 development process and submitting patches to Perl. The technical content
2412 has been moved to several new documents, L<perlsource>, L<perlinterp>,
2413 L<perlhacktut>, and L<perlhacktips>. This technical content has
2414 been only lightly edited.
2416 The perlrepository document has been renamed to L<perlgit>. This new
2417 document is just a how-to on using git with the Perl source code.
2418 Any other content that used to be in perlrepository has been moved
2421 =head3 Time::Piece examples
2423 Examples in L<perlfaq4> have been updated to show the use of
2428 The following additions or changes have been made to diagnostic output,
2429 including warnings and fatal error messages. For the complete list of
2430 diagnostic messages, see L<perldiag>.
2432 =head2 New Diagnostics
2438 =item Closure prototype called
2440 This error occurs when a subroutine reference passed to an attribute
2441 handler is called, if the subroutine is a closure [perl #68560].
2443 =item Insecure user-defined property %s
2445 Perl detected tainted data when trying to compile a regular
2446 expression that contains a call to a user-defined character property
2447 function, meaning C<\p{IsFoo}> or C<\p{InFoo}>.
2448 See L<perlunicode/User-Defined Character Properties> and L<perlsec>.
2450 =item panic: gp_free failed to free glob pointer - something is repeatedly re-creating entries
2452 This new error is triggered if a destructor called on an object in a
2453 typeglob that is being freed creates a new typeglob entry containing an
2454 object with a destructor that creates a new entry containing an object etc.
2456 =item Parsing code internal error (%s)
2458 This new fatal error is produced when parsing
2459 code supplied by an extension violates the
2460 parser's API in a detectable way.
2462 =item refcnt: fd %d%s
2464 This new error only occurs if a internal consistency check fails when a
2465 pipe is about to be closed.
2467 =item Regexp modifier "/%c" may not appear twice
2469 The regular expression pattern has one of the
2470 mutually exclusive modifiers repeated.
2472 =item Regexp modifiers "/%c" and "/%c" are mutually exclusive
2474 The regular expression pattern has more than one of the mutually
2475 exclusive modifiers.
2477 =item Using !~ with %s doesn't make sense
2479 This error occurs when C<!~> is used with C<s///r> or C<y///r>.
2487 =item "\b{" is deprecated; use "\b\{" instead
2489 =item "\B{" is deprecated; use "\B\{" instead
2491 Use of an unescaped "{" immediately following a C<\b> or C<\B> is now
2492 deprecated in order to reserve its use for Perl itself in a future release.
2494 =item Operation "%s" returns its argument for ...
2496 Performing an operation requiring Unicode semantics (such as case-folding)
2497 on a Unicode surrogate or a non-Unicode character now triggers this
2500 =item Use of qw(...) as parentheses is deprecated
2502 See L</"Use of qw(...) as parentheses">, above, for details.
2506 =head2 Changes to Existing Diagnostics
2512 The "Variable $foo is not imported" warning that precedes a
2513 C<strict 'vars'> error has now been assigned the "misc" category, so that
2514 C<no warnings> will suppress it [perl #73712].
2518 warn() and die() now produce "Wide character" warnings when fed a
2519 character outside the byte range if C<STDERR> is a byte-sized handle.
2523 The "Layer does not match this perl" error message has been replaced with
2524 these more helpful messages [perl #73754]:
2530 PerlIO layer function table size (%d) does not match size expected by this
2535 PerlIO layer instance size (%d) does not match size expected by this perl
2542 The "Found = in conditional" warning that is emitted when a constant is
2543 assigned to a variable in a condition is now withheld if the constant is
2544 actually a subroutine or one generated by C<use constant>, since the value
2545 of the constant may not be known at the time the program is written
2550 Previously, if none of the gethostbyaddr(), gethostbyname() and
2551 gethostent() functions were implemented on a given platform, they would
2552 all die with the message "Unsupported socket function 'gethostent' called",
2553 with analogous messages for getnet*() and getserv*(). This has been
2558 The warning message about unrecognized regular expression escapes passed
2559 through has been changed to include any literal "{" following the
2560 two-character escape. For example, "\q{" is now emitted instead of "\q".
2564 =head1 Utility Changes
2566 =head3 L<perlbug(1)>
2572 L<perlbug> now looks in the EMAIL environment variable for a return address
2573 if the REPLY-TO and REPLYTO variables are empty.
2577 L<perlbug> did not previously generate a "From:" header, potentially
2578 resulting in dropped mail; it now includes that header.
2582 The user's address is now used as the Return-Path.
2584 Many systems these days don't have a valid Internet domain name, and
2585 perlbug@perl.org does not accept email with a return-path that does
2586 not resolve. So the user's address is now passed to sendmail so it's
2587 less likely to get stuck in a mail queue somewhere [perl #82996].
2591 L<perlbug> now always gives the reporter a chance to change the email
2592 address it guesses for them (5.12.2).
2596 L<perlbug> should no longer warn about uninitialized values when using the B<-d>
2597 and B<-v> options (5.12.2).
2601 =head3 L<perl5db.pl>
2607 The remote terminal works after forking and spawns new sessions, one
2618 L<ptargrep> is a new utility to apply pattern matching to the contents of
2619 files in a tar archive. It comes with C<Archive::Tar>.
2623 =head1 Configuration and Compilation
2625 See also L</"Naming fixes in Policy_sh.SH may invalidate Policy.sh">,
2632 CCINCDIR and CCLIBDIR for the mingw64 cross-compiler are now correctly
2633 under F<$(CCHOME)\mingw\include> and F<\lib> rather than immediately below
2636 This means the "incpath", "libpth", "ldflags", "lddlflags" and
2637 "ldflags_nolargefiles" values in F<Config.pm> and F<Config_heavy.pl> are now
2642 C<make test.valgrind> has been adjusted to account for F<cpan/dist/ext>
2647 On compilers that support it, B<-Wwrite-strings> is now added to cflags by
2652 The L<Encode> module can now (once again) be included in a static Perl
2653 build. The special-case handling for this situation got broken in Perl
2654 5.11.0, and has now been repaired.
2658 The previous default size of a PerlIO buffer (4096 bytes) has been increased
2659 to the larger of 8192 bytes and your local BUFSIZ. Benchmarks show that doubling
2660 this decade-old default increases read and write performance by around
2661 25% to 50% when using the default layers of perlio on top of unix. To choose
2662 a non-default size, such as to get back the old value or to obtain an even
2663 larger value, configure with:
2665 ./Configure -Accflags=-DPERLIOBUF_DEFAULT_BUFSIZ=N
2667 where N is the desired size in bytes; it should probably be a multiple of
2672 An "incompatible operand types" error in ternary expressions when building
2673 with C<clang> has been fixed (5.12.2).
2677 Perl now skips setuid L<File::Copy> tests on partitions it detects mounted
2678 as C<nosuid> (5.12.2).
2682 =head1 Platform Support
2684 =head2 New Platforms
2690 Perl now builds on AIX 4.2 (5.12.1).
2694 =head2 Discontinued Platforms
2698 =item Apollo DomainOS
2700 The last vestiges of support for this platform have been excised from
2701 the Perl distribution. It was officially discontinued in version 5.12.0.
2702 It had not worked for years before that.
2706 The last vestiges of support for this platform have been excised from the
2707 Perl distribution. It was officially discontinued in an earlier version.
2711 =head2 Platform-Specific Notes
2719 F<README.aix> has been updated with information about the XL C/C++ V11 compiler
2730 The C<d_u32align> configuration probe on ARM has been fixed (5.12.2).
2740 L<MakeMaker> has been updated to build manpages on cygwin.
2744 Improved rebase behaviour
2746 If a DLL is updated on cygwin the old imagebase address is reused.
2747 This solves most rebase errors, especially when updating on core DLL's.
2748 See L<http://www.tishler.net/jason/software/rebase/rebase-2.4.2.README>
2749 for more information.
2753 Support for the standard cygwin dll prefix (needed for FFIs)
2757 Updated build hints file
2767 FreeBSD 7 no longer contains F</usr/bin/objformat>. At build time,
2768 Perl now skips the F<objformat> check for versions 7 and higher and
2769 assumes ELF (5.12.1).
2779 Perl now allows B<-Duse64bitint> without promoting to C<use64bitall> on HP-UX
2790 Conversion of strings to floating-point numbers is now more accurate on
2791 IRIX systems [perl #32380].
2801 Early versions of Mac OS X (Darwin) had buggy implementations of the
2802 setregid(), setreuid(), setrgid(,) and setruid() functions, so Perl
2803 would pretend they did not exist.
2805 These functions are now recognised on Mac OS 10.5 (Leopard; Darwin 9) and
2806 higher, as they have been fixed [perl #72990].
2816 Previously if you built Perl with a shared F<libperl.so> on MirBSD (the
2817 default config), it would work up to the installation; however, once
2818 installed, it would be unable to find F<libperl>. Path handling is now
2819 treated as in the other BSD dialects.
2829 The NetBSD hints file has been changed to make the system malloc the
2840 OpenBSD E<gt> 3.7 has a new malloc implementation which is I<mmap>-based,
2841 and as such can release memory back to the OS; however, Perl's use of
2842 this malloc causes a substantial slowdown, so we now default to using
2843 Perl's malloc instead [perl #75742].
2853 Perl now builds again with OpenVOS (formerly known as Stratus VOS)
2854 [perl #78132] (5.12.3).
2864 DTrace is now supported on Solaris. There used to be build failures, but
2865 these have been fixed [perl #73630] (5.12.3).
2875 Extension building on older (pre 7.3-2) VMS systems was broken because
2876 configure.com hit the DCL symbol length limit of 1K. We now work within
2877 this limit when assembling the list of extensions in the core build (5.12.1).
2881 We fixed configuring and building Perl with B<-Uuseperlio> (5.12.1).
2885 C<PerlIOUnix_open> now honours the default permissions on VMS.
2887 When C<perlio> became the default and C<unix> became the default bottom layer,
2888 the most common path for creating files from Perl became C<PerlIOUnix_open>,
2889 which has always explicitly used C<0666> as the permission mask. This prevents
2890 inheriting permissions from RMS defaults and ACLs, so to avoid that problem,
2891 we now pass C<0777> to open(). In theVMS CRTL, C<0777> has a special
2892 meaning over and above intersecting with the current umask; specifically, it
2893 allows Unix syscalls to preserve native default permissions (5.12.3).
2897 The shortening of symbols longer than 31 characters in the core C sources
2898 and in extensions is now by default done by the C compiler rather than by
2899 xsubpp (which could only do so for generated symbols in XS code). You can
2900 reenable xsubpp's symbol shortening by configuring with -Uuseshortenedsymbols,
2901 but you'll have some work to do to get the core sources to compile.
2905 Record-oriented files (record format variable or variable with fixed control)
2906 opened for write by the C<perlio> layer will now be line-buffered to prevent the
2907 introduction of spurious line breaks whenever the perlio buffer fills up.
2911 F<git_version.h> is now installed on VMS. This was an oversight in v5.12.0 which
2912 caused some extensions to fail to build (5.12.2).
2916 Several memory leaks in L<stat()|perlfunc/"stat FILEHANDLE"> have been fixed (5.12.2).
2920 A memory leak in Perl_rename() due to a double allocation has been
2925 A memory leak in vms_fid_to_name() (used by realpath() and
2926 realname()> has been fixed (5.12.2).
2932 See also L</"fork() emulation will not wait for signalled children"> and
2933 L</"Perl source code is read in text mode on Windows">, above.
2939 Fixed build process for SDK2003SP1 compilers.
2943 Compilation with Visual Studio 2010 is now supported.
2947 When using old 32-bit compilers, the define C<_USE_32BIT_TIME_T> is now
2948 set in C<$Config{ccflags}>. This improves portability when compiling
2949 XS extensions using new compilers, but for a Perl compiled with old 32-bit
2954 C<$Config{gccversion}> is now set correctly when Perl is built using the
2955 mingw64 compiler from L<http://mingw64.org> [perl #73754].
2959 When building Perl with the mingw64 x64 cross-compiler C<incpath>,
2960 C<libpth>, C<ldflags>, C<lddlflags> and C<ldflags_nolargefiles> values
2961 in F<Config.pm> and F<Config_heavy.pl> were not previously being set
2962 correctly because, with that compiler, the include and lib directories
2963 are not immediately below C<$(CCHOME)> (5.12.2).
2967 The build process proceeds more smoothly with mingw and dmake when
2968 F<C:\MSYS\bin> is in the PATH, due to a C<Cwd> fix.
2972 Support for building with Visual C++ 2010 is now underway, but is not yet
2973 complete. See F<README.win32> or L<perlwin32> for more details.
2977 The option to use an externally-supplied crypt(), or to build with no
2978 crypt() at all, has been removed. Perl supplies its own crypt()
2979 implementation for Windows, and the political situation that required
2980 this part of the distribution to sometimes be omitted is long gone.
2984 =head1 Internal Changes
2988 =head3 CLONE_PARAMS structure added to ease correct thread creation
2990 Modules that create threads should now create C<CLONE_PARAMS> structures
2991 by calling the new function Perl_clone_params_new(), and free them with
2992 Perl_clone_params_del(). This will ensure compatibility with any future
2993 changes to the internals of the C<CLONE_PARAMS> structure layout, and that
2994 it is correctly allocated and initialised.
2996 =head3 New parsing functions
2998 Several functions have been added for parsing Perl statements and
2999 expressions. These functions are meant to be used by XS code invoked
3000 during Perl parsing, in a recursive-descent manner, to allow modules to
3001 augment the standard Perl syntax.
3007 L<parse_stmtseq()|perlapi/parse_stmtseq>
3008 parses a sequence of statements, up to closing brace or EOF.
3012 L<parse_fullstmt()|perlapi/parse_fullstmt>
3013 parses a complete Perl statement, including optional label.
3017 L<parse_barestmt()|perlapi/parse_barestmt>
3018 parses a statement without a label.
3022 L<parse_block()|perlapi/parse_block>
3023 parses a code block.
3027 L<parse_label()|perlapi/parse_label>
3028 parses a statement label, separate from statements.
3032 L<C<parse_fullexpr()>|perlapi/parse_fullexpr>,
3033 L<C<parse_listexpr()>|perlapi/parse_listexpr>,
3034 L<C<parse_termexpr()>|perlapi/parse_termexpr>, and
3035 L<C<parse_arithexpr()>|perlapi/parse_arithexpr>
3036 parse expressions at various precedence levels.
3040 =head3 Hints hash API
3042 A new C API for introspecting the hinthash C<%^H> at runtime has been
3043 added. See C<cop_hints_2hv>, C<cop_hints_fetchpvn>, C<cop_hints_fetchpvs>,
3044 C<cop_hints_fetchsv>, and C<hv_copy_hints_hv> in L<perlapi> for details.
3046 A new, experimental API has been added for accessing the internal
3047 structure that Perl uses for C<%^H>. See the functions beginning with
3048 C<cophh_> in L<perlapi>.
3050 =head3 C interface to caller()
3052 The C<caller_cx> function has been added as an XSUB-writer's equivalent of
3053 caller(). See L<perlapi> for details.
3055 =head3 Custom per-subroutine check hooks
3057 XS code in an extension module can now annotate a subroutine (whether
3058 implemented in XS or in Perl) so that nominated XS code will be called
3059 at compile time (specifically as part of op checking) to change the op
3060 tree of that subroutine. The compile-time check function (supplied by
3061 the extension module) can implement argument processing that can't be
3062 expressed as a prototype, generate customised compile-time warnings,
3063 perform constant folding for a pure function, inline a subroutine
3064 consisting of sufficiently simple ops, replace the whole call with a
3065 custom op, and so on. This was previously all possible by hooking the
3066 C<entersub> op checker, but the new mechanism makes it easy to tie the
3067 hook to a specific subroutine. See L<perlapi/cv_set_call_checker>.
3069 To help in writing custom check hooks, several subtasks within standard
3070 C<entersub> op checking have been separated out and exposed in the API.
3072 =head3 Improved support for custom OPs
3074 Custom ops can now be registered with the new C<custom_op_register> C
3075 function and the C<XOP> structure. This will make it easier to add new
3076 properties of custom ops in the future. Two new properties have been added
3077 already, C<xop_class> and C<xop_peep>.
3079 C<xop_class> is one of the OA_*OP constants. It allows L<B> and other
3080 introspection mechanisms to work with custom ops
3081 that aren't BASEOPs. C<xop_peep> is a pointer to
3082 a function that will be called for ops of this
3083 type from C<Perl_rpeep>.
3085 See L<perlguts/Custom Operators> and L<perlapi/Custom Operators> for more
3088 The old C<PL_custom_op_names>/C<PL_custom_op_descs> interface is still
3089 supported but discouraged.
3093 It is now possible for XS code to hook into Perl's lexical scope
3094 mechanism at compile time, using the new C<Perl_blockhook_register>
3095 function. See L<perlguts/"Compile-time scope hooks">.
3097 =head3 The recursive part of the peephole optimizer is now hookable
3099 In addition to C<PL_peepp>, for hooking into the toplevel peephole optimizer, a
3100 C<PL_rpeepp> is now available to hook into the optimizer recursing into
3101 side-chains of the optree.
3103 =head3 New non-magical variants of existing functions
3105 The following functions/macros have been added to the API. The C<*_nomg>
3106 macros are equivalent to their non-C<_nomg> variants, except that they ignore
3107 get-magic. Those ending in C<_flags> allow one to specify whether
3108 get-magic is processed.
3119 In some of these cases, the non-C<_flags> functions have
3120 been replaced with wrappers around the new functions.
3122 =head3 pv/pvs/sv versions of existing functions
3124 Many functions ending with pvn now have equivalent C<pv/pvs/sv> versions.
3126 =head3 List op-building functions
3128 List op-building functions have been added to the
3129 API. See L<op_append_elem|perlapi/op_append_elem>,
3130 L<op_append_list|perlapi/op_append_list>, and
3131 L<op_prepend_elem|perlapi/op_prepend_elem> in L<perlapi>.
3135 The L<LINKLIST|perlapi/LINKLIST> macro, part of op building that
3136 constructs the execution-order op chain, has been added to the API.
3138 =head3 Localisation functions
3140 The C<save_freeop>, C<save_op>, C<save_pushi32ptr> and C<save_pushptrptr>
3141 functions have been added to the API.
3145 A stash can now have a list of effective names in addition to its usual
3146 name. The first effective name can be accessed via the C<HvENAME> macro,
3147 which is now the recommended name to use in MRO linearisations (C<HvNAME>
3148 being a fallback if there is no C<HvENAME>).
3150 These names are added and deleted via C<hv_ename_add> and
3151 C<hv_ename_delete>. These two functions are I<not> part of the API.
3153 =head3 New functions for finding and removing magic
3155 The L<C<mg_findext()>|perlapi/mg_findext> and
3156 L<C<sv_unmagicext()>|perlapi/sv_unmagicext>
3157 functions have been added to the API.
3158 They allow extension authors to find and remove magic attached to
3159 scalars based on both the magic type and the magic virtual table, similar to how
3160 sv_magicext() attaches magic of a certain type and with a given virtual table
3161 to a scalar. This eliminates the need for extensions to walk the list of
3162 C<MAGIC> pointers of an C<SV> to find the magic that belongs to them.
3164 =head3 C<find_rundefsv>
3166 This function returns the SV representing C<$_>, whether it's lexical
3169 =head3 C<Perl_croak_no_modify>
3171 Perl_croak_no_modify() is short-hand for
3172 C<Perl_croak("%s", PL_no_modify)>.
3174 =head3 C<PERL_STATIC_INLINE> define
3176 The C<PERL_STATIC_INLINE> define has been added to provide the best-guess
3177 incantation to use for static inline functions, if the C compiler supports
3178 C99-style static inline. If it doesn't, it'll give a plain C<static>.
3180 C<HAS_STATIC_INLINE> can be used to check if the compiler actually supports
3183 =head3 New C<pv_escape> option for hexadecimal escapes
3185 A new option, C<PERL_PV_ESCAPE_NONASCII>, has been added to C<pv_escape> to
3186 dump all characters above ASCII in hexadecimal. Before, one could get all
3187 characters as hexadecimal or the Latin1 non-ASCII as octal.
3191 C<lex_start> has been added to the API, but is considered experimental.
3193 =head3 op_scope() and op_lvalue()
3195 The op_scope() and op_lvalue() functions have been added to the API,
3196 but are considered experimental.
3198 =head2 C API Changes
3200 =head3 C<PERL_POLLUTE> has been removed
3202 The option to define C<PERL_POLLUTE> to expose older 5.005 symbols for
3203 backwards compatibility has been removed. Its use was always discouraged,
3204 and MakeMaker contains a more specific escape hatch:
3206 perl Makefile.PL POLLUTE=1
3208 This can be used for modules that have not been upgraded to 5.6 naming
3209 conventions (and really should be completely obsolete by now).
3211 =head3 Check API compatibility when loading XS modules
3213 When Perl's API changes in incompatible ways (which usually happens between
3214 major releases), XS modules compiled for previous versions of Perl will no
3215 longer work. They need to be recompiled against the new Perl.
3217 The C<XS_APIVERSION_BOOTCHECK> macro has been added to ensure that modules
3218 are recompiled and to prevent users from accidentally loading modules
3219 compiled for old perls into newer perls. That macro, which is called when
3220 loading every newly compiled extension, compares the API version of the
3221 running perl with the version a module has been compiled for and raises an
3222 exception if they don't match.
3224 =head3 Perl_fetch_cop_label
3226 The first argument of the C API function C<Perl_fetch_cop_label> has changed
3227 from C<struct refcounted_he *> to C<COP *>, to insulate the user from
3228 implementation details.
3230 This API function was marked as "may change", and likely isn't in use outside
3231 the core. (Neither an unpacked CPAN nor Google's codesearch finds any other
3234 =head3 GvCV() and GvGP() are no longer lvalues
3236 The new GvCV_set() and GvGP_set() macros are now provided to replace
3237 assignment to those two macros.
3239 This allows a future commit to eliminate some backref magic between GV
3240 and CVs, which will require complete control over assignment to the
3243 =head3 CvGV() is no longer an lvalue
3245 Under some circumstances, the CvGV() field of a CV is now
3246 reference-counted. To ensure consistent behaviour, direct assignment to
3247 it, for example C<CvGV(cv) = gv> is now a compile-time error. A new macro,
3248 C<CvGV_set(cv,gv)> has been introduced to run this operation
3249 safely. Note that modification of this field is not part of the public
3250 API, regardless of this new macro (and despite its being listed in this section).
3252 =head3 CvSTASH() is no longer an lvalue
3254 The CvSTASH() macro can now only be used as an rvalue. CvSTASH_set()
3255 has been added to replace assignment to CvSTASH(). This is to ensure
3256 that backreferences are handled properly. These macros are not part of the
3259 =head3 Calling conventions for C<newFOROP> and C<newWHILEOP>
3261 The way the parser handles labels has been cleaned up and refactored. As a
3262 result, the newFOROP() constructor function no longer takes a parameter
3263 stating what label is to go in the state op.
3265 The newWHILEOP() and newFOROP() functions no longer accept a line
3266 number as a parameter.
3268 =head3 Flags passed to C<uvuni_to_utf8_flags> and C<utf8n_to_uvuni>
3270 Some of the flags parameters to uvuni_to_utf8_flags() and
3271 utf8n_to_uvuni() have changed. This is a result of Perl's now allowing
3272 internal storage and manipulation of code points that are problematic
3273 in some situations. Hence, the default actions for these functions has
3274 been complemented to allow these code points. The new flags are
3275 documented in L<perlapi>. Code that requires the problematic code
3276 points to be rejected needs to change to use the new flags. Some flag
3277 names are retained for backward source compatibility, though they do
3278 nothing, as they are now the default. However the flags
3279 C<UNICODE_ALLOW_FDD0>, C<UNICODE_ALLOW_FFFF>, C<UNICODE_ILLEGAL>, and
3280 C<UNICODE_IS_ILLEGAL> have been removed, as they stem from a
3281 fundamentally broken model of how the Unicode non-character code points
3282 should be handled, which is now described in
3283 L<perlunicode/Non-character code points>. See also the Unicode section
3284 under L</Selected Bug Fixes>.
3286 =head2 Deprecated C APIs
3290 =item C<Perl_ptr_table_clear>
3292 C<Perl_ptr_table_clear> is no longer part of Perl's public API. Calling it
3293 now generates a deprecation warning, and it will be removed in a future
3296 =item C<sv_compile_2op>
3298 The sv_compile_2op() API function is now deprecated. Searches suggest
3299 that nothing on CPAN is using it, so this should have zero impact.
3301 It attempted to provide an API to compile code down to an optree, but failed
3302 to bind correctly to lexicals in the enclosing scope. It's not possible to
3303 fix this problem within the constraints of its parameters and return value.
3305 =item C<find_rundefsvoffset>
3307 The C<find_rundefsvoffset> function has been deprecated. It appeared that
3308 its design was insufficient for reliably getting the lexical C<$_> at
3311 Use the new C<find_rundefsv> function or the C<UNDERBAR> macro
3312 instead. They directly return the right SV
3313 representing C<$_>, whether it's
3316 =item C<CALL_FPTR> and C<CPERLscope>
3318 Those are left from an old implementation of C<MULTIPLICITY> using C++ objects,
3319 which was removed in Perl 5.8. Nowadays these macros do exactly nothing, so
3320 they shouldn't be used anymore.
3322 For compatibility, they are still defined for external C<XS> code. Only
3323 extensions defining C<PERL_CORE> must be updated now.
3327 =head2 Other Internal Changes
3329 =head3 Stack unwinding
3331 The protocol for unwinding the C stack at the last stage of a C<die>
3332 has changed how it identifies the target stack frame. This now uses
3333 a separate variable C<PL_restartjmpenv>, where previously it relied on
3334 the C<blk_eval.cur_top_env> pointer in the C<eval> context frame that
3335 has nominally just been discarded. This change means that code running
3336 during various stages of Perl-level unwinding no longer needs to take
3337 care to avoid destroying the ghost frame.
3339 =head3 Scope stack entries
3341 The format of entries on the scope stack has been changed, resulting in a
3342 reduction of memory usage of about 10%. In particular, the memory used by
3343 the scope stack to record each active lexical variable has been halved.
3345 =head3 Memory allocation for pointer tables
3347 Memory allocation for pointer tables has been changed. Previously
3348 C<Perl_ptr_table_store> allocated memory from the same arena system as
3349 C<SV> bodies and C<HE>s, with freed memory remaining bound to those arenas
3350 until interpreter exit. Now it allocates memory from arenas private to the
3351 specific pointer table, and that memory is returned to the system when
3352 C<Perl_ptr_table_free> is called. Additionally, allocation and release are
3353 both less CPU intensive.
3357 The C<UNDERBAR> macro now calls C<find_rundefsv>. C<dUNDERBAR> is now a
3358 noop but should still be used to ensure past and future compatibility.
3360 =head3 String comparison routines renamed
3362 The C<ibcmp_*> functions have been renamed and are now called C<foldEQ>,
3363 C<foldEQ_locale>, and C<foldEQ_utf8>. The old names are still available as
3366 =head3 C<chop> and C<chomp> implementations merged
3368 The opcode bodies for C<chop> and C<chomp> and for C<schop> and C<schomp>
3369 have been merged. The implementation functions Perl_do_chop() and
3370 Perl_do_chomp(), never part of the public API, have been merged and
3371 moved to a static function in F<pp.c>. This shrinks the Perl binary
3372 slightly, and should not affect any code outside the core (unless it is
3373 relying on the order of side-effects when C<chomp> is passed a I<list> of
3376 =head1 Selected Bug Fixes
3384 Perl no longer produces this warning:
3386 $ perl -we 'open(my $f, ">", \my $x); binmode($f, "scalar")'
3387 Use of uninitialized value in binmode at -e line 1.
3391 Opening a glob reference via C<< open($fh, ">", \*glob) >> no longer
3392 causes the glob to be corrupted when the filehandle is printed to. This would
3393 cause Perl to crash whenever the glob's contents were accessed
3398 PerlIO no longer crashes when called recursively, such as from a signal
3399 handler. Now it just leaks memory [perl #75556].
3403 Most I/O functions were not warning for unopened handles unless the
3404 "closed" and "unopened" warnings categories were both enabled. Now only
3405 C<use warnings 'unopened'> is necessary to trigger these warnings, as
3406 had always been the intention.
3410 There have been several fixes to PerlIO layers:
3412 When C<binmode(FH, ":crlf")> pushes the C<:crlf> layer on top of the stack,
3413 it no longer enables crlf layers lower in the stack so as to avoid
3414 unexpected results [perl #38456].
3416 Opening a file in C<:raw> mode now does what it advertises to do (first
3417 open the file, then C<binmode> it), instead of simply leaving off the top
3418 layer [perl #80764].
3420 The three layers C<:pop>, C<:utf8>, and C<:bytes> didn't allow stacking when
3421 opening a file. For example
3424 open(FH, ">:pop:perlio", "some.file") or die $!;
3426 would throw an "Invalid argument" error. This has been fixed in this
3427 release [perl #82484].
3431 =head2 Regular Expression Bug Fixes
3437 The regular expression engine no longer loops when matching
3438 C<"\N{LATIN SMALL LIGATURE FF}" =~ /f+/i> and similar expressions
3439 [perl #72998] (5.12.1).
3443 The trie runtime code should no longer allocate massive amounts of memory,
3448 Syntax errors in C<< (?{...}) >> blocks no longer cause panic messages
3453 A pattern like C<(?:(o){2})?> no longer causes a "panic" error
3458 A fatal error in regular expressions containing C<(.*?)> when processing
3459 UTF-8 data has been fixed [perl #75680] (5.12.2).
3463 An erroneous regular expression engine optimisation that caused regex verbs like
3464 C<*COMMIT> sometimes to be ignored has been removed.
3468 The regular expression bracketed character class C<[\8\9]> was effectively the
3469 same as C<[89\000]>, incorrectly matching a NULL character. It also gave
3470 incorrect warnings that the C<8> and C<9> were ignored. Now C<[\8\9]> is the
3471 same as C<[89]> and gives legitimate warnings that C<\8> and C<\9> are
3472 unrecognized escape sequences, passed-through.
3476 A regular expression match in the right-hand side of a global substitution
3477 (C<s///g>) that is in the same scope will no longer cause match variables
3478 to have the wrong values on subsequent iterations. This can happen when an
3479 array or hash subscript is interpolated in the right-hand side, as in
3480 C<s|(.)|@a{ print($1), /./ }|g> [perl #19078].
3484 Several cases in which characters in the Latin-1 non-ASCII range (0x80 to
3485 0xFF) used not to match themselves, or used to match both a character class
3486 and its complement, have been fixed. For instance, U+00E2 could match both
3487 C<\w> and C<\W> [perl #78464] [perl #18281] [perl #60156].
3491 Matching a Unicode character against an alternation containing characters
3492 that happened to match continuation bytes in the former's UTF8
3493 representation (like C<qq{\x{30ab}} =~ /\xab|\xa9/>) would cause erroneous
3494 warnings [perl #70998].
3498 The trie optimisation was not taking empty groups into account, preventing
3499 "foo" from matching C</\A(?:(?:)foo|bar|zot)\z/> [perl #78356].
3503 A pattern containing a C<+> inside a lookahead would sometimes cause an
3504 incorrect match failure in a global match (for example, C</(?=(\S+))/g>)
3509 A regular expression optimisation would sometimes cause a match with a
3510 C<{n,m}> quantifier to fail when it should have matched [perl #79152].
3514 Case-insensitive matching in regular expressions compiled under
3515 C<use locale> now works much more sanely when the pattern or target
3516 string is internally encoded in UTF8. Previously, under these
3517 conditions the localeness was completely lost. Now, code points
3518 above 255 are treated as Unicode, but code points between 0 and 255
3519 are treated using the current locale rules, regardless of whether
3520 the pattern or the string is encoded in UTF8. The few case-insensitive
3521 matches that cross the 255/256 boundary are not allowed. For
3522 example, 0xFF does not caselessly match the character at 0x178,
3523 LATIN CAPITAL LETTER Y WITH DIAERESIS, because 0xFF may not be LATIN
3524 SMALL LETTER Y in the current locale, and Perl has no way of knowing
3525 if that character even exists in the locale, much less what code
3530 The C<(?|...)> regular expression construct no longer crashes if the final
3531 branch has more sets of capturing parentheses than any other branch. This
3532 was fixed in Perl 5.10.1 for the case of a single branch, but that fix did
3533 not take multiple branches into account [perl #84746].
3537 A bug has been fixed in the implementation of C<{...}> quantifiers in
3538 regular expressions that prevented the code block in
3539 C</((\w+)(?{ print $2 })){2}/> from seeing the C<$2> sometimes
3544 =head2 Syntax/Parsing Bugs
3550 C<when (scalar) {...}> no longer crashes, but produces a syntax error
3551 [perl #74114] (5.12.1).
3555 A label right before a string eval (C<foo: eval $string>) no longer causes
3556 the label to be associated also with the first statement inside the eval
3557 [perl #74290] (5.12.1).
3561 The C<no 5.13.2> form of C<no> no longer tries to turn on features or
3562 pragmata (like L<strict>) [perl #70075] (5.12.2).
3566 C<BEGIN {require 5.12.0}> now behaves as documented, rather than behaving
3567 identically to C<use 5.12.0>. Previously, C<require> in a C<BEGIN> block
3568 was erroneously executing the C<use feature ':5.12.0'> and
3569 C<use strict> behaviour, which only C<use> was documented to
3570 provide [perl #69050].
3574 A regression introduced in Perl 5.12.0, making
3575 C<< my $x = 3; $x = length(undef) >> result in C<$x> set to C<3> has been
3576 fixed. C<$x> will now be C<undef> [perl #85508] (5.12.2).
3580 When strict "refs" mode is off, C<%{...}> in rvalue context returns
3581 C<undef> if its argument is undefined. An optimisation introduced in Perl
3582 5.12.0 to make C<keys %{...}> faster when used as a boolean did not take
3583 this into account, causing C<keys %{+undef}> (and C<keys %$foo> when
3584 C<$foo> is undefined) to be an error, which it should be so in strict
3585 mode only [perl #81750].
3589 Constant-folding used to cause
3591 $text =~ ( 1 ? /phoo/ : /bear/)
3597 at compile time. Now it correctly matches against C<$_> [perl #20444].
3601 Parsing Perl code (either with string C<eval> or by loading modules) from
3602 within a C<UNITCHECK> block no longer causes the interpreter to crash
3607 String C<eval>s no longer fail after 2 billion scopes have been
3608 compiled [perl #83364].
3612 The parser no longer hangs when encountering certain Unicode characters,
3613 such as U+387 [perl #74022].
3617 Defining a constant with the same name as one of Perl's special blocks
3618 (like C<INIT>) stopped working in 5.12.0, but has now been fixed
3623 A reference to a literal value used as a hash key (C<$hash{\"foo"}>) used
3624 to be stringified, even if the hash was tied [perl #79178].
3628 A closure containing an C<if> statement followed by a constant or variable
3629 is no longer treated as a constant [perl #63540].
3633 C<state> can now be used with attributes. It
3634 used to mean the same thing as
3635 C<my> if any attributes were present [perl #68658].
3639 Expressions like C<< @$a > 3 >> no longer cause C<$a> to be mentioned in
3640 the "Use of uninitialized value in numeric gt" warning when C<$a> is
3641 undefined (since it is not part of the C<< > >> expression, but the operand
3642 of the C<@>) [perl #72090].
3646 Accessing an element of a package array with a hard-coded number (as
3647 opposed to an arbitrary expression) would crash if the array did not exist.
3648 Usually the array would be autovivified during compilation, but typeglob
3649 manipulation could remove it, as in these two cases which used to crash:
3651 *d = *a; print $d[0];
3652 undef *d; print $d[0];
3656 The B<-C> command-line option, when used on the shebang line, can now be
3657 followed by other options [perl #72434].
3661 The C<B> module was returning C<B::OP>s instead of C<B::LOGOP>s for
3662 C<entertry> [perl #80622]. This was due to a bug in the Perl core,
3667 =head2 Stashes, Globs and Method Lookup
3669 Perl 5.10.0 introduced a new internal mechanism for caching MROs (method
3670 resolution orders, or lists of parent classes; aka "isa" caches) to make
3671 method lookup faster (so C<@ISA> arrays would not have to be searched
3672 repeatedly). Unfortunately, this brought with it quite a few bugs. Almost
3673 all of these have been fixed now, along with a few MRO-related bugs that
3674 existed before 5.10.0:
3680 The following used to have erratic effects on method resolution, because
3681 the "isa" caches were not reset or otherwise ended up listing the wrong
3682 classes. These have been fixed.
3686 =item Aliasing packages by assigning to globs [perl #77358]
3688 =item Deleting packages by deleting their containing stash elements
3690 =item Undefining the glob containing a package (C<undef *Foo::>)
3692 =item Undefining an ISA glob (C<undef *Foo::ISA>)
3694 =item Deleting an ISA stash element (C<delete $Foo::{ISA}>)
3696 =item Sharing @ISA arrays between classes (via C<*Foo::ISA = \@Bar::ISA> or
3697 C<*Foo::ISA = *Bar::ISA>) [perl #77238]
3701 C<undef *Foo::ISA> would even stop a new C<@Foo::ISA> array from updating
3706 Typeglob assignments would crash if the glob's stash no longer existed, so
3707 long as the glob assigned to were named C<ISA> or the glob on either side of
3708 the assignment contained a subroutine.
3712 C<PL_isarev>, which is accessible to Perl via C<mro::get_isarev> is now
3713 updated properly when packages are deleted or removed from the C<@ISA> of
3714 other classes. This allows many packages to be created and deleted without
3715 causing a memory leak [perl #75176].
3719 In addition, various other bugs related to typeglobs and stashes have been
3726 Some work has been done on the internal pointers that link between symbol
3727 tables (stashes), typeglobs, and subroutines. This has the effect that
3728 various edge cases related to deleting stashes or stash entries (for example,
3729 <%FOO:: = ()>), and complex typeglob or code-reference aliasing, will no
3730 longer crash the interpreter.
3734 Assigning a reference to a glob copy now assigns to a glob slot instead of
3735 overwriting the glob with a scalar [perl #1804] [perl #77508].
3739 A bug when replacing the glob of a loop variable within the loop has been fixed
3741 means the following code will no longer crash:
3749 Assigning a glob to a PVLV used to convert it to a plain string. Now it
3750 works correctly, and a PVLV can hold a glob. This would happen when a
3751 nonexistent hash or array element was passed to a subroutine:
3753 sub { $_[0] = *foo }->($hash{key});
3754 # $_[0] would have been the string "*main::foo"
3756 It also happened when a glob was assigned to, or returned from, an element
3757 of a tied array or hash [perl #36051].
3761 When trying to report C<Use of uninitialized value $Foo::BAR>, crashes could
3762 occur if the glob holding the global variable in question had been detached
3763 from its original stash by, for example, C<delete $::{"Foo::"}>. This has
3764 been fixed by disabling the reporting of variable names in those
3769 During the restoration of a localised typeglob on scope exit, any
3770 destructors called as a result would be able to see the typeglob in an
3771 inconsistent state, containing freed entries, which could result in a
3772 crash. This would affect code like this:
3775 eval { die bless [] }; # puts an object in $@
3780 Now the glob entries are cleared before any destructors are called. This
3781 also means that destructors can vivify entries in the glob. So Perl tries
3782 again and, if the entries are re-created too many times, dies with a
3783 "panic: gp_free ..." error message.
3787 If a typeglob is freed while a subroutine attached to it is still
3788 referenced elsewhere, the subroutine is renamed to C<__ANON__> in the same
3789 package, unless the package has been undefined, in which case the C<__ANON__>
3790 package is used. This could cause packages to be sometimes autovivified,
3791 such as if the package had been deleted. Now this no longer occurs.
3792 The C<__ANON__> package is also now used when the original package is
3793 no longer attached to the symbol table. This avoids memory leaks in some
3794 cases [perl #87664].
3798 Subroutines and package variables inside a package whose name ends with
3799 C<::> can now be accessed with a fully qualified name.
3809 What has become known as "the Unicode Bug" is almost completely resolved in
3810 this release. Under C<use feature 'unicode_strings'> (which is
3811 automatically selected by C<use 5.012> and above), the internal
3812 storage format of a string no longer affects the external semantics.
3815 There are two known exceptions:
3821 The now-deprecated, user-defined case-changing
3822 functions require utf8-encoded strings to operate. The CPAN module
3823 L<Unicode::Casing> has been written to replace this feature without its
3824 drawbacks, and the feature is scheduled to be removed in 5.16.
3828 quotemeta() (and its in-line equivalent C<\Q>) can also give different
3829 results depending on whether a string is encoded in UTF-8. See
3830 L<perlunicode/The "Unicode Bug">.
3836 Handling of Unicode non-character code points has changed.
3837 Previously they were mostly considered illegal, except that in some
3838 place only one of the 66 of them was known. The Unicode Standard
3839 considers them all legal, but forbids their "open interchange".
3840 This is part of the change to allow internal use of any code
3841 point (see L</Core Enhancements>). Together, these changes resolve
3842 [perl #38722], [perl #51918], [perl #51936], and [perl #63446].
3846 Case-insensitive C<"/i"> regular expression matching of Unicode
3847 characters that match multiple characters now works much more as
3848 intended. For example
3850 "\N{LATIN SMALL LIGATURE FFI}" =~ /ffi/ui
3854 "ffi" =~ /\N{LATIN SMALL LIGATURE FFI}/ui
3856 are both true. Previously, there were many bugs with this feature.
3857 What hasn't been fixed are the places where the pattern contains the
3858 multiple characters, but the characters are split up by other things,
3861 "\N{LATIN SMALL LIGATURE FFI}" =~ /(f)(f)i/ui
3865 "\N{LATIN SMALL LIGATURE FFI}" =~ /ffi*/ui
3869 "\N{LATIN SMALL LIGATURE FFI}" =~ /[a-f][f-m][g-z]/ui
3871 None of these match.
3873 Also, this matching doesn't fully conform to the current Unicode
3874 Standard, which asks that the matching be made upon the NFD
3875 (Normalization Form Decomposed) of the text. However, as of this
3876 writing (April 2010), the Unicode Standard is currently in flux about
3877 what they will recommend doing with regard in such scenarios. It may be
3878 that they will throw out the whole concept of multi-character matches.
3883 Naming a deprecated character in C<\N{I<NAME>}> no longer leaks memory.
3887 We fixed a bug that could cause C<\N{I<NAME>}> constructs followed by
3888 a single C<"."> to be parsed incorrectly [perl #74978] (5.12.1).
3892 C<chop> now correctly handles characters above C<"\x{7fffffff}">
3897 Passing to C<index> an offset beyond the end of the string when the string
3898 is encoded internally in UTF8 no longer causes panics [perl #75898].
3902 warn() and die() now respect utf8-encoded scalars [perl #45549].
3906 Sometimes the UTF8 length cache would not be reset on a value
3907 returned by substr, causing C<length(substr($uni_string, ...))> to give
3908 wrong answers. With C<${^UTF8CACHE}> set to -1, it would also produce
3909 a "panic" error message [perl #77692].
3913 =head2 Ties, Overloading and Other Magic
3919 Overloading now works properly in conjunction with tied
3920 variables. What formerly happened was that most ops checked their
3921 arguments for overloading I<before> checking for magic, so for example
3922 an overloaded object returned by a tied array access would usually be
3923 treated as not overloaded [RT #57012].
3927 Various instances of magic (like tie methods) being called on tied variables
3928 too many or too few times have been fixed:
3934 C<< $tied->() >> did not always call FETCH [perl #8438].
3938 Filetest operators and C<y///> and C<tr///> were calling FETCH too
3943 The C<=> operator used to ignore magic on its right-hand side if the
3944 scalar happened to hold a typeglob (if a typeglob was the last thing
3945 returned from or assigned to a tied scalar) [perl #77498].
3949 Dereference operators used to ignore magic if the argument was a
3950 reference already (such as from a previous FETCH) [perl #72144].
3954 C<splice> now calls set-magic (so changes made
3955 by C<splice @ISA> are respected by method calls) [perl #78400].
3959 In-memory files created by C<< open($fh, ">", \$buffer) >> were not calling
3960 FETCH/STORE at all [perl #43789] (5.12.2).
3964 utf8::is_utf8() now respects get-magic (like C<$1>) (5.12.1).
3970 Non-commutative binary operators used to swap their operands if the same
3971 tied scalar was used for both operands and returned a different value for
3972 each FETCH. For instance, if C<$t> returned 2 the first time and 3 the
3973 second, then C<$t/$t> would evaluate to 1.5. This has been fixed
3978 String C<eval> now detects taintedness of overloaded or tied
3979 arguments [perl #75716].
3983 String C<eval> and regular expression matches against objects with string
3984 overloading no longer cause memory corruption or crashes [perl #77084].
3988 L<readline|perlfunc/"readline EXPR"> now honors C<< <> >> overloading on tied
3993 C<< <expr> >> always respects overloading now if the expression is
3996 Because "S<< <> as >> glob" was parsed differently from
3997 "S<< <> as >> filehandle" from 5.6 onwards, something like C<< <$foo[0]> >> did
3998 not handle overloading, even if C<$foo[0]> was an overloaded object. This
3999 was contrary to the documentation for L<overload>, and meant that C<< <> >>
4000 could not be used as a general overloaded iterator operator.
4004 The fallback behaviour of overloading on binary operators was asymmetric
4009 Magic applied to variables in the main package no longer affects other packages.
4010 See L</Magic variables outside the main package> above [perl #76138].
4014 Sometimes magic (ties, taintedness, etc.) attached to variables could cause
4015 an object to last longer than it should, or cause a crash if a tied
4016 variable were freed from within a tie method. These have been fixed
4021 DESTROY methods of objects implementing ties are no longer able to crash by
4022 accessing the tied variable through a weak reference [perl #86328].
4026 Fixed a regression of kill() when a match variable is used for the
4027 process ID to kill [perl #75812].
4031 C<$AUTOLOAD> used to remain tainted forever if it ever became tainted. Now
4032 it is correctly untainted if an autoloaded method is called and the method
4033 name was not tainted.
4037 C<sprintf> now dies when passed a tainted scalar for the format. It did
4038 already die for arbitrary expressions, but not for simple scalars
4043 C<lc>, C<uc>, C<lcfirst>, and C<ucfirst> no longer return untainted strings
4044 when the argument is tainted. This has been broken since perl 5.8.9
4055 The Perl debugger now also works in taint mode [perl #76872].
4059 Subroutine redefinition works once more in the debugger [perl #48332].
4063 When B<-d> is used on the shebang (C<#!>) line, the debugger now has access
4064 to the lines of the main program. In the past, this sometimes worked and
4065 sometimes did not, depending on the order in which things happened to be
4066 arranged in memory [perl #71806].
4070 A possible memory leak when using L<caller()|perlfunc/"caller EXPR"> to set
4071 C<@DB::args> has been fixed (5.12.2).
4075 Perl no longer stomps on C<$DB::single>, C<$DB::trace>, and C<$DB::signal>
4076 if these variables already have values when C<$^P> is assigned to [perl #72422].
4080 C<#line> directives in string evals were not properly updating the arrays
4081 of lines of code (C<< @{"_< ..."} >>) that the debugger (or any debugging or
4082 profiling module) uses. In threaded builds, they were not being updated at
4083 all. In non-threaded builds, the line number was ignored, so any change to
4084 the existing line number would cause the lines to be misnumbered
4095 Perl no longer accidentally clones lexicals in scope within active stack
4096 frames in the parent when creating a child thread [perl #73086].
4100 Several memory leaks in cloning and freeing threaded Perl interpreters have been
4101 fixed [perl #77352].
4105 Creating a new thread when directory handles were open used to cause a
4106 crash, because the handles were not cloned, but simply passed to the new
4107 thread, resulting in a double free.
4109 Now directory handles are cloned properly on Windows
4110 and on systems that have a C<fchdir> function. On other
4111 systems, new threads simply do not inherit directory
4112 handles from their parent threads [perl #75154].
4116 The typeglob C<*,>, which holds the scalar variable C<$,> (output field
4117 separator), had the wrong reference count in child threads.
4121 [perl #78494] When pipes are shared between threads, the C<close> function
4122 (and any implicit close, such as on thread exit) no longer blocks.
4126 Perl now does a timely cleanup of SVs that are cloned into a new
4127 thread but then discovered to be orphaned (that is, their owners
4128 are I<not> cloned). This eliminates several "scalars leaked"
4129 warnings when joining threads.
4133 =head2 Scoping and Subroutines
4139 Lvalue subroutines are again able to return copy-on-write scalars. This
4140 had been broken since version 5.10.0 [perl #75656] (5.12.3).
4144 C<require> no longer causes C<caller> to return the wrong file name for
4145 the scope that called C<require> and other scopes higher up that had the
4146 same file name [perl #68712].
4150 C<sort> with a C<($$)>-prototyped comparison routine used to cause the value
4151 of C<@_> to leak out of the sort. Taking a reference to C<@_> within the
4152 sorting routine could cause a crash [perl #72334].
4156 Match variables (like C<$1>) no longer persist between calls to a sort
4157 subroutine [perl #76026].
4161 Iterating with C<foreach> over an array returned by an lvalue sub now works
4166 C<$@> is now localised during calls to C<binmode> to prevent action at a
4167 distance [perl #78844].
4171 Calling a closure prototype (what is passed to an attribute handler for a
4172 closure) now results in a "Closure prototype called" error message instead
4173 of a crash [perl #68560].
4177 Mentioning a read-only lexical variable from the enclosing scope in a
4178 string C<eval> no longer causes the variable to become writable
4189 Within signal handlers, C<$!> is now implicitly localized.
4193 CHLD signals are no longer unblocked after a signal handler is called if
4194 they were blocked before by C<POSIX::sigprocmask> [perl #82040].
4198 A signal handler called within a signal handler could cause leaks or
4199 double-frees. Now fixed [perl #76248].
4203 =head2 Miscellaneous Memory Leaks
4209 Several memory leaks when loading XS modules were fixed (5.12.2).
4213 L<substr()|perlfunc/"substr EXPR,OFFSET,LENGTH,REPLACEMENT">,
4214 L<pos()|perlfunc/"index STR,SUBSTR,POSITION">, L<keys()|perlfunc/"keys HASH">,
4215 and L<vec()|perlfunc/"vec EXPR,OFFSET,BITS"> could, when used in combination
4216 with lvalues, result in leaking the scalar value they operate on, and cause its
4217 destruction to happen too late. This has now been fixed.
4221 The postincrement and postdecrement operators, C<++> and C<-->, used to cause
4222 leaks when used on references. This has now been fixed.
4226 Nested C<map> and C<grep> blocks no longer leak memory when processing
4227 large lists [perl #48004].
4231 C<use I<VERSION>> and C<no I<VERSION>> no longer leak memory [perl #78436]
4236 C<.=> followed by C<< <> >> or C<readline> would leak memory if C<$/>
4237 contained characters beyond the octet range and the scalar assigned to
4238 happened to be encoded as UTF8 internally [perl #72246].
4242 C<eval 'BEGIN{die}'> no longer leaks memory on non-threaded builds.
4246 =head2 Memory Corruption and Crashes
4252 glob() no longer crashes when C<%File::Glob::> is empty and
4253 C<CORE::GLOBAL::glob> isn't present [perl #75464] (5.12.2).
4257 readline() has been fixed when interrupted by signals so it no longer
4258 returns the "same thing" as before or random memory.
4262 When assigning a list with duplicated keys to a hash, the assignment used to
4263 return garbage and/or freed values:
4265 @a = %h = (list with some duplicate keys);
4267 This has now been fixed [perl #31865].
4271 The mechanism for freeing objects in globs used to leave dangling
4272 pointers to freed SVs, meaning Perl users could see corrupted state
4275 Perl now frees only the affected slots of the GV, rather than freeing
4276 the GV itself. This makes sure that there are no dangling refs or
4277 corrupted state during destruction.
4281 The interpreter no longer crashes when freeing deeply-nested arrays of
4282 arrays. Hashes have not been fixed yet [perl #44225].
4286 Concatenating long strings under C<use encoding> no longer causes Perl to
4287 crash [perl #78674].
4291 Calling C<< ->import >> on a class lacking an import method could corrupt
4292 the stack, resulting in strange behaviour. For instance,
4294 push @a, "foo", $b = bar->import;
4296 would assign "foo" to C<$b> [perl #63790].
4300 The C<recv> function could crash when called with the MSG_TRUNC flag
4305 C<formline> no longer crashes when passed a tainted format picture. It also
4306 taints C<$^A> now if its arguments are tainted [perl #79138].
4310 A bug in how we process filetest operations could cause a segfault.
4311 Filetests don't always expect an op on the stack, so we now use
4312 TOPs only if we're sure that we're not C<stat>ing the C<_> filehandle.
4313 This is indicated by C<OPf_KIDS> (as checked in ck_ftst) [perl #74542]
4318 unpack() now handles scalar context correctly for C<%32H> and C<%32u>,
4319 fixing a potential crash. split() would crash because the third item
4320 on the stack wasn't the regular expression it expected. C<unpack("%2H",
4321 ...)> would return both the unpacked result and the checksum on the stack,
4322 as would C<unpack("%2u", ...)> [perl #73814] (5.12.2).
4326 =head2 Fixes to Various Perl Operators
4332 The C<&>, C<|>, and C<^> bitwise operators no longer coerce read-only arguments
4337 Stringifying a scalar containing "-0.0" no longer has the effect of turning
4338 false into true [perl #45133].
4342 Some numeric operators were converting integers to floating point,
4343 resulting in loss of precision on 64-bit platforms [perl #77456].
4347 sprintf() was ignoring locales when called with constant arguments
4352 Combining the vector (C<%v>) flag and dynamic precision would
4353 cause C<sprintf> to confuse the order of its arguments, making it
4354 treat the string as the precision and vice-versa [perl #83194].
4358 =head2 Bugs Relating to the C API
4364 The C-level C<lex_stuff_pvn> function would sometimes cause a spurious
4365 syntax error on the last line of the file if it lacked a final semicolon
4366 [perl #74006] (5.12.1).
4370 The C<eval_sv> and C<eval_pv> C functions now set C<$@> correctly when
4371 there is a syntax error and no C<G_KEEPERR> flag, and never set it if the
4372 C<G_KEEPERR> flag is present [perl #3719].
4376 The XS multicall API no longer causes subroutines to lose reference counts
4377 if called via the multicall interface from within those very subroutines.
4378 This affects modules like L<List::Util>. Calling one of its functions with an
4379 active subroutine as the first argument could cause a crash [perl #78070].
4383 The C<SvPVbyte> function available to XS modules now calls magic before
4384 downgrading the SV, to avoid warnings about wide characters [perl #72398].
4388 The ref types in the typemap for XS bindings now support magical variables
4393 C<sv_catsv_flags> no longer calls C<mg_get> on its second argument (the
4394 source string) if the flags passed to it do not include SV_GMAGIC. So it
4395 now matches the documentation.
4399 C<my_strftime> no longer leaks memory. This fixes a memory leak in
4400 C<POSIX::strftime> [perl #73520].
4404 F<XSUB.h> now correctly redefines fgets under PERL_IMPLICIT_SYS [perl #55049]
4409 XS code using fputc() or fputs() on Windows could cause an error
4410 due to their arguments being swapped [perl #72704] (5.12.1).
4414 A possible segfault in the C<T_PTROBJ> default typemap has been fixed
4419 A bug that could cause "Unknown error" messages when
4420 C<call_sv(code, G_EVAL)> is called from an XS destructor has been fixed
4425 =head1 Known Problems
4427 This is a list of significant unresolved issues which are regressions
4428 from earlier versions of Perl or which affect widely-used CPAN modules.
4434 C<List::Util::first> misbehaves in the presence of a lexical C<$_>
4435 (typically introduced by C<my $_> or implicitly by C<given>). The variable
4436 that gets set for each iteration is the package variable C<$_>, not the
4439 A similar issue may occur in other modules that provide functions which
4440 take a block as their first argument, like
4442 foo { ... $_ ...} list
4444 See also: L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=67694>
4448 readline() returns an empty string instead of a cached previous value
4449 when it is interrupted by a signal
4453 The changes in prototype handling break L<Switch>. A patch has been sent
4454 upstream and will hopefully appear on CPAN soon.
4458 The upgrade to F<ExtUtils-MakeMaker-6.57_05> has caused
4459 some tests in the F<Module-Install> distribution on CPAN to
4460 fail. (Specifically, F<02_mymeta.t> tests 5 and 21; F<18_all_from.t>
4461 tests 6 and 15; F<19_authors.t> tests 5, 13, 21, and 29; and
4462 F<20_authors_with_special_characters.t> tests 6, 15, and 23 in version
4463 1.00 of that distribution now fail.)
4467 On VMS, C<Time::HiRes> tests will fail due to a bug in the CRTL's
4468 implementation of C<setitimer>: previous timer values would be cleared
4469 if a timer expired but not if the timer was reset before expiring. HP
4470 OpenVMS Engineering have corrected the problem and will release a patch
4471 in due course (Quix case # QXCM1001115136).
4475 On VMS, there were a handful of C<Module::Build> test failures we didn't
4476 get to before the release; please watch CPAN for updates.
4482 =head2 keys(), values(), and each() work on arrays
4484 You can now use the keys(), values(), and each() builtins on arrays;
4485 previously you could use them only on hashes. See L<perlfunc> for details.
4486 This is actually a change introduced in perl 5.12.0, but it was missed from
4487 that release's L<perl5120delta>.
4489 =head2 split() and C<@_>
4491 split() no longer modifies C<@_> when called in scalar or void context.
4492 In void context it now produces a "Useless use of split" warning.
4493 This was also a perl 5.12.0 change that missed the perldelta.
4497 Randy Kobes, creator of http://kobesearch.cpan.org/ and
4498 contributor/maintainer to several core Perl toolchain modules, passed
4499 away on September 18, 2010 after a battle with lung cancer. The community
4500 was richer for his involvement. He will be missed.
4502 =head1 Acknowledgements
4504 Perl 5.14.0 represents one year of development since
4505 Perl 5.12.0 and contains nearly 550,000 lines of changes across nearly
4506 3,000 files from 150 authors and committers.
4508 Perl continues to flourish into its third decade thanks to a vibrant
4509 community of users and developers. The following people are known to
4510 have contributed the improvements that became Perl 5.14.0:
4512 Aaron Crane, Abhijit Menon-Sen, Abigail, Ævar Arnfjörð Bjarmason,
4513 Alastair Douglas, Alexander Alekseev, Alexander Hartmaier, Alexandr
4514 Ciornii, Alex Davies, Alex Vandiver, Ali Polatel, Allen Smith, Andreas
4515 König, Andrew Rodland, Andy Armstrong, Andy Dougherty, Aristotle
4516 Pagaltzis, Arkturuz, Arvan, A. Sinan Unur, Ben Morrow, Bo Lindbergh,
4517 Boris Ratner, Brad Gilbert, Bram, brian d foy, Brian Phillips, Casey
4518 West, Charles Bailey, Chas. Owens, Chip Salzenberg, Chris 'BinGOs'
4519 Williams, chromatic, Craig A. Berry, Curtis Jewell, Dagfinn Ilmari
4520 Mannsåker, Dan Dascalescu, Dave Rolsky, David Caldwell, David Cantrell,
4521 David Golden, David Leadbeater, David Mitchell, David Wheeler, Eric
4522 Brine, Father Chrysostomos, Fingle Nark, Florian Ragwitz, Frank Wiegand,
4523 Franz Fasching, Gene Sullivan, George Greer, Gerard Goossen, Gisle Aas,
4524 Goro Fuji, Grant McLean, gregor herrmann, H.Merijn Brand, Hongwen Qiu,
4525 Hugo van der Sanden, Ian Goodacre, James E Keenan, James Mastros, Jan
4526 Dubois, Jay Hannah, Jerry D. Hedden, Jesse Vincent, Jim Cromie, Jirka
4527 Hruška, John Peacock, Joshua ben Jore, Joshua Pritikin, Karl Williamson,
4528 Kevin Ryde, kmx, Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯, Larwan Berke, Leon Brocard, Leon
4529 Timmermans, Lubomir Rintel, Lukas Mai, Maik Hentsche, Marty Pauley,
4530 Marvin Humphrey, Matt Johnson, Matt S Trout, Max Maischein, Michael
4531 Breen, Michael Fig, Michael G Schwern, Michael Parker, Michael Stevens,
4532 Michael Witten, Mike Kelly, Moritz Lenz, Nicholas Clark, Nick Cleaton,
4533 Nick Johnston, Nicolas Kaiser, Niko Tyni, Noirin Shirley, Nuno Carvalho,
4534 Paul Evans, Paul Green, Paul Johnson, Paul Marquess, Peter J. Holzer,
4535 Peter John Acklam, Peter Martini, Philippe Bruhat (BooK), Piotr Fusik,
4536 Rafael Garcia-Suarez, Rainer Tammer, Reini Urban, Renee Baecker, Ricardo
4537 Signes, Richard Möhn, Richard Soderberg, Rob Hoelz, Robin Barker, Ruslan
4538 Zakirov, Salvador Fandiño, Salvador Ortiz Garcia, Shlomi Fish, Sinan
4539 Unur, Sisyphus, Slaven Rezic, Steffen Müller, Steve Hay, Steven
4540 Schubiger, Steve Peters, Sullivan Beck, Tatsuhiko Miyagawa, Tim Bunce,
4541 Todd Rinaldo, Tom Christiansen, Tom Hukins, Tony Cook, Tye McQueen,
4542 Vadim Konovalov, Vernon Lyon, Vincent Pit, Walt Mankowski, Wolfram
4543 Humann, Yves Orton, Zefram, and Zsbán Ambrus.
4545 This is woefully incomplete as it's automatically generated from version
4546 control history. In particular, it doesn't include the names of the
4547 (very much appreciated) contributors who reported issues in previous
4548 versions of Perl that helped make Perl 5.14.0 better. For a more complete
4549 list of all of Perl's historical contributors, please see the C<AUTHORS>
4550 file in the Perl 5.14.0 distribution.
4552 Many of the changes included in this version originated in the CPAN
4553 modules included in Perl's core. We're grateful to the entire CPAN
4554 community for helping Perl to flourish.
4556 =head1 Reporting Bugs
4558 If you find what you think is a bug, you might check the articles
4559 recently posted to the comp.lang.perl.misc newsgroup and the Perl
4560 bug database at http://rt.perl.org/perlbug/ . There may also be
4561 information at http://www.perl.org/ , the Perl Home Page.
4563 If you believe you have an unreported bug, please run the L<perlbug>
4564 program included with your release. Be sure to trim your bug down
4565 to a tiny but sufficient test case. Your bug report, along with the
4566 output of C<perl -V>, will be sent off to perlbug@perl.org to be
4567 analysed by the Perl porting team.
4569 If the bug you are reporting has security implications, which make it
4570 inappropriate to send to a publicly archived mailing list, then please send
4571 it to perl5-security-report@perl.org. This points to a closed subscription
4572 unarchived mailing list, which includes all the core committers, who be able
4573 to help assess the impact of issues, figure out a resolution, and help
4574 co-ordinate the release of patches to mitigate or fix the problem across all
4575 platforms on which Perl is supported. Please use this address for
4576 security issues in the Perl core I<only>, not for modules independently
4577 distributed on CPAN.
4581 The F<Changes> file for an explanation of how to view exhaustive details
4584 The F<INSTALL> file for how to build Perl.
4586 The F<README> file for general stuff.
4588 The F<Artistic> and F<Copying> files for copyright information.