This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Note the PerlIO::encoding upgrade in perldelta
[perl5.git] / pod / perldelta.pod
CommitLineData
44691e6f
AB
1=encoding utf8
2
3=head1 NAME
4
5076a392 5perldelta - what is new for perl v5.14.0
c71a852f 6
5076a392
FC
7=head1 DESCRIPTION
8
9This document describes differences between the 5.12.0 release and
10the 5.14.0 release.
11
0980abf1
FC
12If you are upgrading from an earlier release such as 5.10.0, first read
13L<perl5120delta>, which describes differences between 5.10.0 and
145.12.0.
15
5076a392
FC
16Some of the bug fixes in this release have been backported to subsequent
17releases of 5.12.x. Those are indicated with the 5.12.x version in
18parentheses.
19
5076a392
FC
20=head1 Notice
21
22XXX Any important notices here
23
24=head1 Core Enhancements
25
1f539a1a 26=head2 Unicode
5076a392 27
1f539a1a 28=head3 Unicode Version 6.0 is now supported (mostly)
5076a392 29
1f539a1a
FC
30Perl comes with the Unicode 6.0 data base updated with
31L<Corrigendum #8|http://www.unicode.org/versions/corrigendum8.html>,
32with one exception noted below.
33See L<http://unicode.org/versions/Unicode6.0.0> for details on the new
34release. Perl does not support any Unicode provisional properties,
a3c24add 35including the new ones for this release.
5076a392 36
1f539a1a 37Unicode 6.0 has chosen to use the name C<BELL> for the character at U+1F514,
e1b1739f 38which is a symbol that looks like a bell, and is used in Japanese cell
1f539a1a
FC
39phones. This conflicts with the long-standing Perl usage of having
40C<BELL> mean the ASCII C<BEL> character, U+0007. In Perl 5.14,
41C<\N{BELL}> will continue to mean U+0007, but its use will generate a
42deprecated warning message, unless such warnings are turned off. The
43new name for U+0007 in Perl will be C<ALERT>, which corresponds nicely
44with the existing shorthand sequence for it, C<"\a">. C<\N{BEL}> will
45mean U+0007, with no warning given. The character at U+1F514 will not
46have a name in 5.14, but can be referred to by C<\N{U+1F514}>. The plan
47is that in Perl 5.16, C<\N{BELL}> will refer to U+1F514, and so all code
48that uses C<\N{BELL}> should convert by then to using C<\N{ALERT}>,
49C<\N{BEL}>, or C<"\a"> instead.
5076a392 50
1f539a1a 51=head3 Full functionality for C<use feature 'unicode_strings'>
5076a392 52
1f539a1a
FC
53This release provides full functionality for C<use feature
54'unicode_strings'>. Under its scope, all string operations executed and
55regular expressions compiled (even if executed outside its scope) have
56Unicode semantics. See L<feature>.
5076a392 57
1f539a1a
FC
58This feature avoids most forms of the "Unicode Bug" (See
59L<perlunicode/The "Unicode Bug"> for details.) If there is a
60possibility that your code will process Unicode strings, you are
61B<strongly> encouraged to use this subpragma to avoid nasty surprises.
5076a392 62
1f539a1a 63=head3 C<\N{I<name>}> and C<charnames> enhancements
5076a392 64
1f539a1a 65=over
5076a392 66
1f539a1a 67=item *
5076a392
FC
68
69C<\N{}> and C<charnames::vianame> now know about the abbreviated
e1b1739f
FC
70character names listed by Unicode, such as NBSP, SHY, LRO, ZWJ, etc., all
71the customary abbreviations for the C0 and C1 control characters (such as
72ACK, BEL, CAN, etc.), and a few new variants of some C1 full names that
73are in common usage.
5076a392 74
1f539a1a
FC
75=item *
76
959ad7d5
FC
77Unicode has a number of named character sequences, in which particular sequences
78of code points are given names. C<\N{...}> now recognizes these.
79
1f539a1a
FC
80=item *
81
959ad7d5
FC
82C<\N{}>, C<charnames::vianame>, C<charnames::viacode> now know about every
83character in Unicode. Previously, they didn't know about the Hangul syllables
84nor a number of CJK (Chinese/Japanese/Korean) characters.
85
1f539a1a
FC
86=item *
87
5076a392
FC
88In the past, it was ineffective to override one of Perl's abbreviations
89with your own custom alias. Now it works.
90
1f539a1a
FC
91=item *
92
e1b1739f 93You can also create a custom alias of the ordinal of a
5076a392
FC
94character, known by C<\N{...}>, C<charnames::vianame()>, and
95C<charnames::viacode()>. Previously, an alias had to be to an official
96Unicode character name. This made it impossible to create an alias for
e1b1739f
FC
97a code point that had no name, such as those reserved for private
98use.
5076a392 99
1f539a1a
FC
100=item *
101
959ad7d5
FC
102A new function, C<charnames::string_vianame()>, has been added.
103This function is a run-time version of C<\N{...}>, returning the string
104of characters whose Unicode name is its parameter. It can handle
105Unicode named character sequences, whereas the pre-existing
106C<charnames::vianame()> cannot, as the latter returns a single code
107point.
108
1f539a1a
FC
109=back
110
5076a392
FC
111See L<charnames> for details on all these changes.
112
22349846
KW
113=head3 New warnings categories for problematic (non-)Unicode code points.
114
115Three new warnings subcategories of "utf8" have been added. These
116allow you to turn off some "utf8" warnings, while allowing
117others warnings to remain on. The three categories are:
118C<surrogate> when UTF-16 surrogates are encountered;
119C<nonchar> when Unicode non-character code points are encountered;
120and C<non_unicode> when code points that are above the legal Unicode
121maximum of 0x10FFFF are encountered.
122
1f539a1a 123=head3 Any unsigned value can be encoded as a character
5076a392 124
1f539a1a
FC
125With this release, Perl is adopting a model that any unsigned value can
126be treated as a code point and encoded internally (as utf8) without
54c7bb16 127warnings - not just the code points that are legal in Unicode.
22349846
KW
128However, unless utf8 or the corresponding sub-category (see previous
129item) warnings have been
1f539a1a
FC
130explicitly lexically turned off, outputting or performing a
131Unicode-defined operation (such as upper-casing) on such a code point
132will generate a warning. Attempting to input these using strict rules
133(such as with the C<:encoding('UTF-8')> layer) will continue to fail.
134Prior to this release the handling was very inconsistent, and incorrect
135in places. Also, the Unicode non-characters, some of which previously were
136erroneously considered illegal in places by Perl, contrary to the Unicode
137standard, are now always legal internally. But inputting or outputting
138them will work the same as for the non-legal Unicode code points, as the
139Unicode standard says they are illegal for "open interchange".
5076a392 140
daef9d5b
KW
141=head3 Unicode database files not installed
142
143The Unicode database files are no longer installed with Perl. This
144doesn't affect any functionality in Perl and saves significant disk
145space. If you previously were explicitly opening and reading those
146files, you can download them from
147L<http://www.unicode.org/Public/zipped/6.0.0/>.
148
1f539a1a 149=head2 Regular Expressions
5076a392 150
1f539a1a 151=head3 C<(?^...)> construct to signify default modifiers
5076a392 152
e1b1739f
FC
153An ASCII caret (also called a "circumflex accent") C<"^">
154immediately following a C<"(?"> in a regular expression
155now means that the subexpression does not inherit the
156surrounding modifiers such as C</i>, but reverts to the
5076a392
FC
157Perl defaults. Any modifiers following the caret override the defaults.
158
159The stringification of regular expressions now uses this
160notation. E.g., before, C<qr/hlagh/i> would be stringified as
161C<(?i-xsm:hlagh)>, but now it's stringified as C<(?^i:hlagh)>.
162
163The main purpose of this is to allow tests that rely on the
e1b1739f 164stringification not to have to change when new modifiers are added.
5076a392
FC
165See L<perlre/Extended Patterns>.
166
1f539a1a 167=head3 C</d>, C</l>, C</u>, C</a>, and C</aa> modifiers
5076a392 168
959ad7d5
FC
169Four new regular expression modifiers have been added. These are mutually
170exclusive; one only can be turned on at a time.
5076a392 171
959ad7d5 172The C</l> modifier says to compile the regular expression as if it were
5076a392
FC
173in the scope of C<use locale>, even if it is not.
174
959ad7d5 175The C</u> modifier says to compile the regular expression as if it were
5076a392
FC
176in the scope of a C<use feature "unicode_strings"> pragma.
177
e1b1739f 178The C</d> (default) modifier is used to override any C<use locale> and
5076a392
FC
179C<use feature "unicode_strings"> pragmas that are in effect at the time
180of compiling the regular expression.
181
959ad7d5 182The C</a> regular expression modifier restricts C<\s>, C<\d> and C<\w> and
7baaf023 183the Posix (C<[[:posix:]]>) character classes to the ASCII range. Their
959ad7d5
FC
184complements and C<\b> and C<\B> are correspondingly
185affected. Otherwise, C</a> behaves like the C</u> modifier, in that
e1b1739f 186case-insensitive matching uses Unicode semantics.
5076a392 187
959ad7d5
FC
188The C</aa> modifier is like C</a>, except that, in case-insensitive matching, no ASCII character will match a
189non-ASCII character. For example,
5076a392 190
959ad7d5 191 'k' =~ /\N{KELVIN SIGN}/ai
5076a392 192
959ad7d5 193will match; it won't under C</aa>.
5076a392 194
959ad7d5 195See L<perlre/Modifiers> for more detail.
5076a392 196
1f539a1a 197=head3 Non-destructive substitution
5076a392 198
1f539a1a
FC
199The substitution (C<s///>) and transliteration
200(C<y///>) operators now support an C</r> option that
201copies the input variable, carries out the substitution on
202the copy and returns the result. The original remains unmodified.
5076a392 203
1f539a1a
FC
204 my $old = 'cat';
205 my $new = $old =~ s/cat/dog/r;
206 # $old is 'cat' and $new is 'dog'
5076a392 207
1f539a1a 208This is particularly useful with C<map>. See L<perlop> for more examples.
5076a392 209
1f539a1a 210=head3 Reentrant regular expression engine
5076a392 211
1f539a1a
FC
212It is now safe to use regular expressions within C<(?{...})> and
213C<(??{...})> code blocks inside regular expressions.
5076a392 214
1f539a1a 215These block are still experimental, however, and still have problems with
e1b1739f 216lexical (C<my>) variables and abnormal exiting.
5076a392 217
1f539a1a 218=head3 C<use re '/flags';>
5076a392
FC
219
220The C<re> pragma now has the ability to turn on regular expression flags
221till the end of the lexical scope:
222
223 use re '/x';
224 "foo" =~ / (.+) /; # /x implied
225
226See L<re/"'/flags' mode"> for details.
227
1f539a1a 228=head3 \o{...} for octals
5076a392 229
e1b1739f
FC
230There is a new octal escape sequence, C<"\o">, in double-quote-like
231contexts. This construct allows large octal ordinals beyond the
1f539a1a
FC
232current max of 0777 to be represented. It also allows you to specify a
233character in octal which can safely be concatenated with other regex
234snippets and which won't be confused with being a backreference to
235a regex capture group. See L<perlre/Capture groups>.
236
237=head3 Add C<\p{Titlecase}> as a synonym for C<\p{Title}>
238
239This synonym is added for symmetry with the Unicode property names
240C<\p{Uppercase}> and C<\p{Lowercase}>.
5076a392 241
1f539a1a
FC
242=head3 Regular expression debugging output improvement
243
244Regular expression debugging output (turned on by C<use re 'debug';>) now
245uses hexadecimal when escaping non-ASCII characters, instead of octal.
246
1e463951
FC
247=head3 Return value of C<delete $+{...}>
248
249Custom regular expression engines can now determine the return value of
250C<delete> on an entry of C<%+> or C<%->.
251
1f539a1a
FC
252=head2 Syntactical Enhancements
253
254=head3 Array and hash container functions accept references
5076a392
FC
255
256All built-in functions that operate directly on array or hash
257containers now also accept hard references to arrays or hashes:
258
259 |----------------------------+---------------------------|
260 | Traditional syntax | Terse syntax |
261 |----------------------------+---------------------------|
262 | push @$arrayref, @stuff | push $arrayref, @stuff |
263 | unshift @$arrayref, @stuff | unshift $arrayref, @stuff |
264 | pop @$arrayref | pop $arrayref |
265 | shift @$arrayref | shift $arrayref |
266 | splice @$arrayref, 0, 2 | splice $arrayref, 0, 2 |
267 | keys %$hashref | keys $hashref |
268 | keys @$arrayref | keys $arrayref |
269 | values %$hashref | values $hashref |
270 | values @$arrayref | values $arrayref |
271 | ($k,$v) = each %$hashref | ($k,$v) = each $hashref |
272 | ($k,$v) = each @$arrayref | ($k,$v) = each $arrayref |
273 |----------------------------+---------------------------|
274
275This allows these built-in functions to act on long dereferencing chains
276or on the return value of subroutines without needing to wrap them in
277C<@{}> or C<%{}>:
278
279 push @{$obj->tags}, $new_tag; # old way
280 push $obj->tags, $new_tag; # new way
281
282 for ( keys %{$hoh->{genres}{artists}} ) {...} # old way
283 for ( keys $hoh->{genres}{artists} ) {...} # new way
284
285For C<push>, C<unshift> and C<splice>, the reference will auto-vivify
286if it is not defined, just as if it were wrapped with C<@{}>.
287
5076a392
FC
288For C<keys>, C<values>, C<each>, when overloaded dereferencing is
289present, the overloaded dereference is used instead of dereferencing the
e1b1739f
FC
290underlying reftype. Warnings are issued about assumptions made in
291ambiguous cases.
5076a392 292
1f539a1a
FC
293=head3 Single term prototype
294
295The C<+> prototype is a special alternative to C<$> that will act like
296C<\[@%]> when given a literal array or hash variable, but will otherwise
e1b1739f 297force scalar context on the argument. See L<perlsub/Prototypes>.
1f539a1a
FC
298
299=head3 C<package> block syntax
300
301A package declaration can now contain a code block, in which case the
302declaration is in scope only inside that block. So C<package Foo { ... }>
303is precisely equivalent to C<{ package Foo; ... }>. It also works with
304a version number in the declaration, as in C<package Foo 1.2 { ... }>.
e1b1739f 305See L<perlfunc>.
1f539a1a
FC
306
307=head3 Statement labels can appear in more places
308
309Statement labels can now occur before any type of statement or declaration,
310such as C<package>.
311
312=head3 Stacked labels
313
314Multiple statement labels can now appear before a single statement.
315
316=head3 Uppercase X/B allowed in hexadecimal/binary literals
317
318Literals may now use either upper case C<0X...> or C<0B...> prefixes,
319in addition to the already supported C<0x...> and C<0b...>
e1b1739f 320syntax [perl #76296].
1f539a1a
FC
321
322C, Ruby, Python and PHP already supported this syntax, and it makes
323Perl more internally consistent. A round-trip with C<eval sprintf
e1b1739f 324"%#X", 0x10> now returns C<16>, the way C<eval sprintf "%#x", 0x10> does.
1f539a1a 325
1e463951
FC
326=head3 Overridable tie functions
327
328C<tie>, C<tied> and C<untie> can now be overridden [perl #75902].
329
1f539a1a
FC
330=head2 Exception Handling
331
332Several changes have been made to the way C<die>, C<warn>, and C<$@>
333behave, in order to make them more reliable and consistent.
334
335When an exception is thrown inside an C<eval>, the exception is no
336longer at risk of being clobbered by code running during unwinding
337(e.g., destructors). Previously, the exception was written into C<$@>
338early in the throwing process, and would be overwritten if C<eval> was
339used internally in the destructor for an object that had to be freed
340while exiting from the outer C<eval>. Now the exception is written
341into C<$@> last thing before exiting the outer C<eval>, so the code
342running immediately thereafter can rely on the value in C<$@> correctly
343corresponding to that C<eval>. (C<$@> is still also set before exiting the
344C<eval>, for the sake of destructors that rely on this.)
345
346Likewise, a C<local $@> inside an C<eval> will no longer clobber any
347exception thrown in its scope. Previously, the restoration of C<$@> upon
348unwinding would overwrite any exception being thrown. Now the exception
349gets to the C<eval> anyway. So C<local $@> is safe before a C<die>.
350
351Exceptions thrown from object destructors no longer modify the C<$@>
352of the surrounding context. (If the surrounding context was exception
353unwinding, this used to be another way to clobber the exception being
354thrown.) Previously such an exception was
355sometimes emitted as a warning, and then either was
356string-appended to the surrounding C<$@> or completely replaced the
357surrounding C<$@>, depending on whether that exception and the surrounding
358C<$@> were strings or objects. Now, an exception in this situation is
359always emitted as a warning, leaving the surrounding C<$@> untouched.
360In addition to object destructors, this also affects any function call
361performed by XS code using the C<G_KEEPERR> flag.
362
363Warnings for C<warn> can now be objects, in the same way as exceptions
364for C<die>. If an object-based warning gets the default handling,
365of writing to standard error, it is stringified as
366before, with the file and line number appended. But
367a C<$SIG{__WARN__}> handler will now receive an
368object-based warning as an object, where previously it was passed the
369result of stringifying the object.
370
371=head2 Other Enhancements
372
373=head3 Assignment to C<$0> sets the legacy process name with C<prctl()> on Linux
374
375On Linux the legacy process name will be set with L<prctl(2)>, in
376addition to altering the POSIX name via C<argv[0]> as perl has done
377since version 4.000. Now system utilities that read the legacy process
378name such as ps, top and killall will recognize the name you set when
379assigning to C<$0>. The string you supply will be cut off at 16 bytes,
380this is a limitation imposed by Linux.
381
382=head3 C<srand()> now returns the seed
383
e1b1739f
FC
384This allows programs that need to have repeatable results not to have to come
385up with their own seed-generating mechanism. Instead, they can use C<srand()>
386and stash the return value for future use. Typical is a test program which
1f539a1a 387has too many combinations to test comprehensively in the time available to it
e1b1739f 388each run. It can test a random subset each time and, should there be a failure,
1f539a1a 389log the seed used for that run so that it can later be used to reproduce the
e1b1739f 390same results.
1f539a1a
FC
391
392=head3 printf-like functions understand post-1980 size modifiers
393
394Perl's printf and sprintf operators, and Perl's internal printf replacement
395function, now understand the C90 size modifiers "hh" (C<char>), "z"
396(C<size_t>), and "t" (C<ptrdiff_t>). Also, when compiled with a C99
397compiler, Perl now understands the size modifier "j" (C<intmax_t>).
398
399So, for example, on any modern machine, C<sprintf('%hhd', 257)> returns '1'.
400
401=head3 New global variable C<${^GLOBAL_PHASE}>
5076a392
FC
402
403A new global variable, C<${^GLOBAL_PHASE}>, has been added to allow
404introspection of the current phase of the perl interpreter. It's explained in
405detail in L<perlvar/"${^GLOBAL_PHASE}"> and
406L<perlmod/"BEGIN, UNITCHECK, CHECK, INIT and END">.
407
1f539a1a 408=head3 C<-d:-foo> calls C<Devel::foo::unimport>
5076a392
FC
409
410The syntax C<-dI<B<:>foo>> was extended in 5.6.1 to make C<-dI<:fooB<=bar>>>
411equivalent to C<-MDevel::foo=bar>, which expands
412internally to C<use Devel::foo 'bar';>.
413F<perl> now allows prefixing the module name with C<->, with the same
414semantics as C<-M>, I<i.e.>
415
416=over 4
417
418=item C<-d:-foo>
419
420Equivalent to C<-M-Devel::foo>, expands to
421C<no Devel::foo;>, calls C<< Devel::foo->unimport() >>
422if the method exists.
423
424=item C<-d:-foo=bar>
425
426Equivalent to C<-M-Devel::foo=bar>, expands to C<no Devel::foo 'bar';>,
427calls C<< Devel::foo->unimport('bar') >> if the method exists.
428
429=back
430
e1b1739f 431This is particularly useful for suppressing the default actions of a
5076a392
FC
432C<Devel::*> module's C<import> method whilst still loading it for debugging.
433
1f539a1a 434=head3 Filehandle method calls load L<IO::File> on demand
5076a392
FC
435
436When a method call on a filehandle would die because the method cannot
437be resolved, and L<IO::File> has not been loaded, Perl now loads L<IO::File>
438via C<require> and attempts method resolution again:
439
440 open my $fh, ">", $file;
441 $fh->binmode(":raw"); # loads IO::File and succeeds
442
443This also works for globs like STDOUT, STDERR and STDIN:
444
445 STDOUT->autoflush(1);
446
447Because this on-demand load only happens if method resolution fails, the
448legacy approach of manually loading an L<IO::File> parent class for partial
449method support still works as expected:
450
451 use IO::Handle;
452 open my $fh, ">", $file;
453 $fh->autoflush(1); # IO::File not loaded
454
1984204c
FC
455=head3 IPv6 support
456
457The C<Socket> module provides new affordances for IPv6,
458including implementations of the C<Socket::getaddrinfo()> and
459C<Socket::getnameinfo()> functions, along with related constants, and a
460handful of new functions. See L<Socket>.
461
1f539a1a 462=head3 DTrace probes now include package name
5076a392
FC
463
464The DTrace probes now include an additional argument (C<arg3>) which contains
465the package the subroutine being entered or left was compiled in.
466
467For example using the following DTrace script:
468
469 perl$target:::sub-entry
470 {
471 printf("%s::%s\n", copyinstr(arg0), copyinstr(arg3));
472 }
473
474and then running:
475
476 perl -e'sub test { }; test'
477
478DTrace will print:
479
480 main::test
481
9378886b
FC
482=head2 New C APIs
483
1e463951 484See L</Internal Changes>.
9378886b 485
5076a392
FC
486=head1 Security
487
948b8455 488=head2 User-defined regular expression properties
5076a392
FC
489
490In L<perlunicode/"User-Defined Character Properties">, it says you can
491create custom properties by defining subroutines whose names begin with
948b8455
FC
492"In" or "Is". However, Perl did not actually enforce that naming
493restriction, so \p{foo::bar} could call foo::bar() if it existed. Now this
494convention has been enforced.
5076a392 495
948b8455
FC
496Also, Perl no longer allows a tainted regular expression to invoke a
497user-defined. It simply dies instead [perl #82616].
5076a392
FC
498
499=head1 Incompatible Changes
500
61752d82
FC
501Perl 5.14.0 is not binary-compatible with any previous stable release.
502
1e463951
FC
503In addition to the sections that follow, see L</C API Changes>.
504
61752d82
FC
505=head2 Regular Expressions and String Escapes
506
54c7bb16 507=head3 \400-\777
5076a392 508
54c7bb16 509Use of C<\400>-C<\777> in regexes in certain circumstances has given
5076a392
FC
510different, anomalous behavior than their use in all other
511double-quote-like contexts. Since 5.10.1, a deprecated warning message
512has been raised when this happens. Now, all double-quote-like contexts
513have the same behavior, namely to be equivalent to C<\x{100}> -
514C<\x{1FF}>, with no deprecation warning. Use of these values in the
515command line option C<"-0"> retains the current meaning to slurp input
516files whole; previously, this was documented only for C<"-0777">. It is
517recommended, however, because of various ambiguities, to use the new
518C<\o{...}> construct to represent characters in octal.
5076a392 519
61752d82 520=head3 Most C<\p{}> properties are now immune to case-insensitive matching
5076a392 521
61752d82
FC
522For most Unicode properties, it doesn't make sense to have them match
523differently under C</i> case-insensitive matching than not. And doing
524so leads to unexpected results and potential security holes. For
525example
5076a392 526
61752d82 527 m/\p{ASCII_Hex_Digit}+/i
5076a392 528
61752d82 529could previously match non-ASCII characters because of the Unicode
4cf6a51f
KW
530matching rules (although there were a number of bugs with this). Now
531matching under C</i> gives the same results as non-C</i> matching except
532for those few properties where people have come to expect differences,
533namely the ones where casing is an integral part of their meaning, such
534as C<m/\p{Uppercase}/i> and C<m/\p{Lowercase}/i>, both of which match
535the exact same code points, namely those matched by C<m/\p{Cased}/i>.
536Details are in L<perlrecharclass/Unicode Properties>.
5076a392 537
61752d82 538User-defined property handlers that need to match differently under
4cf6a51f 539C</i> must change to read the new boolean parameter passed to them which is
61752d82
FC
540non-zero if case-insensitive matching is in effect or 0 otherwise. See
541L<perluniprops/User-Defined Character Properties>.
5076a392 542
61752d82 543=head3 \p{} implies Unicode semantics
5076a392 544
61752d82
FC
545Now, a Unicode property match specified in the pattern will indicate
546that the pattern is meant for matching according to Unicode rules, the way
bc15a0a0 547C<\N{}> does.
5076a392 548
61752d82 549=head3 Regular expressions retain their localeness when interpolated
5076a392 550
61752d82
FC
551Regular expressions compiled under C<"use locale"> now retain this when
552interpolated into a new regular expression compiled outside a
553C<"use locale">, and vice-versa.
5076a392 554
61752d82
FC
555Previously, a regular expression interpolated into another one inherited
556the localeness of the surrounding one, losing whatever state it
557originally had. This is considered a bug fix, but may trip up code that
558has come to rely on the incorrect behavior.
5076a392 559
61752d82 560=head3 Stringification of regexes has changed
5076a392
FC
561
562Default regular expression modifiers are now notated by using
563C<(?^...)>. Code relying on the old stringification will fail. The
564purpose of this is so that when new modifiers are added, such code will
565not have to change (after this one time), as the stringification will
566automatically incorporate the new modifiers.
567
568Code that needs to work properly with both old- and new-style regexes
f318e2e6 569can avoid the whole issue by using (for Perls since 5.9.5; see L<re>):
5076a392
FC
570
571 use re qw(regexp_pattern);
572 my ($pat, $mods) = regexp_pattern($re_ref);
573
5076a392
FC
574If the actual stringification is important, or older Perls need to be
575supported, you can use something like the following:
576
577 # Accept both old and new-style stringification
578 my $modifiers = (qr/foobar/ =~ /\Q(?^/) ? '^' : '-xism';
579
580And then use C<$modifiers> instead of C<-xism>.
581
61752d82 582=head3 Run-time code blocks in regular expressions inherit pragmata
5076a392 583
61752d82
FC
584Code blocks in regular expressions (C<(?{...})> and C<(??{...})>) used not
585to inherit any pragmata (strict, warnings, etc.) if the regular expression
586was compiled at run time as happens in cases like these two:
5076a392 587
61752d82
FC
588 use re 'eval';
589 $foo =~ $bar; # when $bar contains (?{...})
590 $foo =~ /$bar(?{ $finished = 1 })/;
591
592This was a bug, which has now been fixed. But it has the potential to break
593any code that was relying on it.
5076a392 594
61752d82 595=head2 Stashes and Package Variables
5076a392 596
61752d82 597=head3 Localised tied hashes and arrays are no longed tied
5076a392 598
61752d82 599In the following:
5076a392 600
61752d82
FC
601 tie @a, ...;
602 {
603 local @a;
604 # here, @a is a now a new, untied array
605 }
606 # here, @a refers again to the old, tied array
5076a392 607
61752d82
FC
608The new local array used to be made tied too, which was fairly pointless,
609and has now been fixed. This fix could however potentially cause a change
610in behaviour of some code.
5076a392 611
61752d82 612=head3 Stashes are now always defined
5076a392 613
61752d82
FC
614C<defined %Foo::> now always returns true, even when no symbols have yet been
615defined in that package.
5076a392 616
61752d82
FC
617This is a side effect of removing a special case kludge in the tokeniser,
618added for 5.10.0, to hide side effects of changes to the internal storage of
619hashes that drastically reduce their memory usage overhead.
620
621Calling defined on a stash has been deprecated since 5.6.0, warned on
622lexicals since 5.6.0, and warned for stashes (and other package
623variables) since 5.12.0. C<defined %hash> has always exposed an
624implementation detail - emptying a hash by deleting all entries from it does
625not make C<defined %hash> false, hence C<defined %hash> is not valid code to
626determine whether an arbitrary hash is empty. Instead, use the behaviour
627that an empty C<%hash> always returns false in a scalar context.
628
629=head3 Dereferencing typeglobs
5076a392
FC
630
631If you assign a typeglob to a scalar variable:
632
633 $glob = *foo;
634
635the glob that is copied to C<$glob> is marked with a special flag
636indicating that the glob is just a copy. This allows subsequent assignments
637to C<$glob> to overwrite the glob. The original glob, however, is
638immutable.
639
640Many Perl operators did not distinguish between these two types of globs.
641This would result in strange behaviour in edge cases: C<untie $scalar>
642would do nothing if the last thing assigned to the scalar was a glob
643(because it treated it as C<untie *$scalar>, which unties a handle).
f318e2e6 644Assignment to a glob slot (e.g., C<*$glob = \@some_array>) would simply
5076a392
FC
645assign C<\@some_array> to C<$glob>.
646
647To fix this, the C<*{}> operator (including the C<*foo> and C<*$foo> forms)
648has been modified to make a new immutable glob if its operand is a glob
e262cb24
FC
649copy. This allows operators that make a distinction between globs and
650scalars to be modified to treat only immutable globs as globs. (C<tie>,
651C<tied> and C<untie> have been left as they are for compatibility's sake,
61752d82 652but will warn. See L</Deprecations>.)
5076a392
FC
653
654This causes an incompatible change in code that assigns a glob to the
655return value of C<*{}> when that operator was passed a glob copy. Take the
656following code, for instance:
657
658 $glob = *foo;
659 *$glob = *bar;
660
661The C<*$glob> on the second line returns a new immutable glob. That new
662glob is made an alias to C<*bar>. Then it is discarded. So the second
663assignment has no effect.
664
5076a392
FC
665See L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=77810> for even
666more detail.
667
61752d82 668=head3 Clearing stashes
5076a392
FC
669
670Stash list assignment C<%foo:: = ()> used to make the stash anonymous
671temporarily while it was being emptied. Consequently, any of its
672subroutines referenced elsewhere would become anonymous (showing up as
673"(unknown)" in C<caller>). Now they retain their package names, such that
674C<caller> will return the original sub name if there is still a reference
675to its typeglob, or "foo::__ANON__" otherwise [perl #79208].
676
61752d82
FC
677=head3 Magic variables outside the main package
678
679In previous versions of Perl, magic variables like C<$!>, C<%SIG>, etc. would
680'leak' into other packages. So C<%foo::SIG> could be used to access signals,
681C<${"foo::!"}> (with strict mode off) to access C's C<errno>, etc.
682
683This was a bug, or an 'unintentional' feature, which caused various ill effects,
684such as signal handlers being wiped when modules were loaded, etc.
685
686This has been fixed (or the feature has been removed, depending on how you see
687it).
688
689=head2 Changes to Syntax or to Perl Operators
690
691=head3 C<given> return values
692
693C<given> blocks now return the last evaluated
694expression, or an empty list if the block was exited by C<break>. Thus you
695can now write:
696
697 my $type = do {
698 given ($num) {
699 break when undef;
700 'integer' when /^[+-]?[0-9]+$/;
701 'float' when /^[+-]?[0-9]+(?:\.[0-9]+)?$/;
702 'unknown';
703 }
704 };
705
706See L<perlsyn/Return value> for details.
707
708=head3 Change in the parsing of certain prototypes
709
710Functions declared with the following prototypes now behave correctly as unary
711functions:
712
713 *
714 \$ \% \@ \* \&
715 \[...]
716 ;$ ;*
717 ;\$ ;\% etc.
718 ;\[...]
719
720Due to this bug fix [perl #75904], functions
721using the C<(*)>, C<(;$)> and C<(;*)> prototypes
722are parsed with higher precedence than before. So in the following example:
723
724 sub foo($);
725 foo $a < $b;
726
727the second line is now parsed correctly as C<< foo($a) < $b >>, rather than
728C<< foo($a < $b) >>. This happens when one of these operators is used in
729an unparenthesised argument:
730
731 < > <= >= lt gt le ge
732 == != <=> eq ne cmp ~~
733 &
734 | ^
735 &&
736 || //
737 .. ...
738 ?:
739 = += -= *= etc.
740
741=head3 Smart-matching against array slices
742
743Previously, the following code resulted in a successful match:
744
745 my @a = qw(a y0 z);
746 my @b = qw(a x0 z);
747 @a[0 .. $#b] ~~ @b;
748
749This odd behaviour has now been fixed [perl #77468].
750
751=head3 Negation treats strings differently from before
752
753The unary negation operator C<-> now treats strings that look like numbers
754as numbers [perl #57706].
755
756=head3 Negative zero
757
758Negative zero (-0.0), when converted to a string, now becomes "0" on all
759platforms. It used to become "-0" on some, but "0" on others.
760
761If you still need to determine whether a zero is negative, use
762C<sprintf("%g", $zero) =~ /^-/> or the L<Data::Float> module on CPAN.
763
764=head3 C<:=> is now a syntax error
5076a392
FC
765
766Previously C<my $pi := 4;> was exactly equivalent to C<my $pi : = 4;>,
767with the C<:> being treated as the start of an attribute list, ending before
768the C<=>. The use of C<:=> to mean C<: => was deprecated in 5.12.0, and is now
769a syntax error. This will allow the future use of C<:=> as a new token.
770
771We find no Perl 5 code on CPAN using this construction, outside the core's
772tests for it, so we believe that this change will have very little impact on
773real-world codebases.
774
775If it is absolutely necessary to have empty attribute lists (for example,
776because of a code generator) then avoid the error by adding a space before
777the C<=>.
778
61752d82 779=head2 Threads and Processes
5076a392 780
61752d82 781=head3 Directory handles not copied to threads
5076a392 782
61752d82
FC
783On systems other than Windows that do not have
784a C<fchdir> function, newly-created threads no
785longer inherit directory handles from their parent threads. Such programs
786would usually have crashed anyway [perl #75154].
5076a392 787
61752d82 788=head3 C<close> on shared pipes
5076a392 789
61752d82
FC
790The C<close> function no longer waits for the child process to exit if the
791underlying file descriptor is still in use by another thread, to avoid
792deadlocks. It returns true in such cases.
5076a392 793
144b6ea2
FC
794=head3 fork() emulation will not wait for signalled children
795
796On Windows parent processes would not terminate until all forked
797childred had terminated first. However, C<kill('KILL', ...)> is
798inherently unstable on pseudo-processes, and C<kill('TERM', ...)>
799might not get delivered if the child if blocked in a system call.
800
801To avoid the deadlock and still provide a safe mechanism to terminate
802the hosting process, Perl will now no longer wait for children that
803have been sent a SIGTERM signal. It is up to the parent process to
804waitpid() for these children if child clean-up processing must be
805allowed to finish. However, it is also the responsibility of the
806parent then to avoid the deadlock by making sure the child process
807can't be blocked on I/O either.
808
809See L<perlfork> for more information about the fork() emulation on
810Windows.
811
61752d82 812=head2 Configuration
5076a392 813
61752d82 814=head3 Naming fixes in Policy_sh.SH may invalidate Policy.sh
5076a392 815
61752d82
FC
816Several long-standing typos and naming confusions in Policy_sh.SH have
817been fixed, standardizing on the variable names used in config.sh.
5076a392 818
61752d82
FC
819This will change the behavior of Policy.sh if you happen to have been
820accidentally relying on the Policy.sh incorrect behavior.
f318e2e6 821
5a1f7719
FC
822=head3 Perl source code is read in text mode on Windows
823
824Perl scripts used to be read in binary mode on Windows for the benefit
825of the ByteLoader module (which is no longer part of core Perl). This
826had the side effect of breaking various operations on the DATA filehandle,
827including seek()/tell(), and even simply reading from DATA after file handles
828have been flushed by a call to system(), backticks, fork() etc.
829
830The default build options for Windows have been changed to read Perl source
831code on Windows in text mode now. Hopefully ByteLoader will be updated on
832CPAN to automatically handle this situation [perl #28106].
833
5076a392
FC
834=head1 Deprecations
835
1e463951
FC
836See also L</Deprecated C APIs>.
837
5076a392
FC
838=head2 Omitting a space between a regular expression and subsequent word
839
18139a1b
FC
840Omitting a space between a regular expression operator or
841its modifiers and the following word is deprecated. For
842example, C<< m/foo/sand $bar >> will still be parsed
843as C<< m/foo/s and $bar >> but will issue a warning.
5076a392 844
e683df94
KW
845=head2 C<\cI<X>>
846
847The backslash-c construct was designed as a way of specifying
848non-printable characters, but there were no restrictions (on ASCII
849platforms) on what the character following the C<c> could be. Now,
850a deprecation warning is raised if that character isn't an ASCII character.
851Also, a deprecation warning is raised for C<"\c{"> (which is the same
852as simply saying C<";">).
853
4528361d
KW
854=head2 C<"\b{"> and C<"\B{">
855
856In regular expressions, a literal C<"{"> immediately following a C<"\b">
857(not in a bracketed character class) or a C<"\B{"> is now deprecated
858to allow for its future use by Perl itself.
859
5076a392
FC
860=head2 Deprecation warning added for deprecated-in-core .pl libs
861
862This is a mandatory warning, not obeying -X or lexical warning bits.
863The warning is modelled on that supplied by deprecate.pm for
864deprecated-in-core .pm libraries. It points to the specific CPAN
823d0e46
FC
865distribution that contains the .pl libraries. The CPAN version, of
866course, does not generate the warning.
5076a392
FC
867
868=head2 List assignment to C<$[>
869
823d0e46
FC
870Assignment to C<$[> was deprecated and started to give warnings in
871Perl version 5.12.0. This version of perl also starts to emit a warning when
872assigning to C<$[> in list context. This fixes an oversight in 5.12.0.
5076a392
FC
873
874=head2 Use of qw(...) as parentheses
875
876Historically the parser fooled itself into thinking that C<qw(...)> literals
877were always enclosed in parentheses, and as a result you could sometimes omit
878parentheses around them:
879
880 for $x qw(a b c) { ... }
881
882The parser no longer lies to itself in this way. Wrap the list literal in
823d0e46 883parentheses, like this:
5076a392
FC
884
885 for $x (qw(a b c)) { ... }
886
887=head2 C<\N{BELL}> is deprecated
888
889This is because Unicode is using that name for a different character.
890See L</Unicode Version 6.0 is now supported (mostly)> for more
891explanation.
892
893=head2 C<?PATTERN?> is deprecated
894
895C<?PATTERN?> (without the initial m) has been deprecated and now produces
896a warning. This is to allow future use of C<?> in new operators.
897The match-once functionality is still available in the form of C<m?PATTERN?>.
898
5076a392
FC
899=head2 Tie functions on scalars holding typeglobs
900
901Calling a tie function (C<tie>, C<tied>, C<untie>) with a scalar argument
902acts on a file handle if the scalar happens to hold a typeglob.
903
904This is a long-standing bug that will be removed in Perl 5.16, as
905there is currently no way to tie the scalar itself when it holds
906a typeglob, and no way to untie a scalar that has had a typeglob
907assigned to it.
908
823d0e46 909Now there is a deprecation warning whenever a tie
5076a392
FC
910function is used on a handle without an explicit C<*>.
911
18139a1b 912=head2 User-defined case-mapping
5076a392 913
18139a1b
FC
914This feature is being deprecated due to its many issues, as documented in
915L<perlunicode/User-Defined Case Mappings (for serious hackers only)>.
e48f36f0
KW
916It is planned to remove this feature in Perl 5.16. Instead use the CPAN module
917L<Unicode::Casing>, which provides improved functionality.
823d0e46 918
18139a1b 919=head2 Deprecated modules
5076a392
FC
920
921The following modules will be removed from the core distribution in a
922future release, and should be installed from CPAN instead. Distributions
923on CPAN which require these should add them to their prerequisites. The
823d0e46 924core versions of these modules will issue a deprecation warning.
5076a392
FC
925
926If you ship a packaged version of Perl, either alone or as part of a
927larger system, then you should carefully consider the repercussions of
823d0e46 928core module deprecations. You may want to consider shipping your default
5076a392 929build of Perl with packages for some or all deprecated modules which
823d0e46 930install into C<vendor> or C<site> perl library directories. This will
5076a392
FC
931inhibit the deprecation warnings.
932
933Alternatively, you may want to consider patching F<lib/deprecate.pm>
934to provide deprecation warnings specific to your packaging system
935or distribution of Perl, consistent with how your packaging system
936or distribution manages a staged transition from a release where the
937installation of a single package provides the given functionality, to
938a later release where the system administrator needs to know to install
939multiple packages to get that same functionality.
940
941You can silence these deprecation warnings by installing the modules
942in question from CPAN. To install the latest version of all of them,
943just install C<Task::Deprecations::5_14>.
944
945=over
946
947=item L<Devel::DProf>
948
949We strongly recommend that you install and used L<Devel::NYTProf> in
950preference, as it offers significantly improved profiling and reporting.
951
952=back
953
5076a392
FC
954=head1 Performance Enhancements
955
54c7bb16 956=head2 "Safe signals" optimisation
df91d470
FC
957
958Signal dispatch has been moved from the runloop into control ops. This
959should give a few percent speed increase, and eliminates almost all of
960the speed penalty caused by the introduction of "safe signals" in
9615.8.0. Signals should still be dispatched within the same statement as
962they were previously - if this is not the case, or it is possible to
963create uninterruptible loops, this is a bug, and reports are encouraged
964of how to recreate such issues.
965
54c7bb16 966=head2 Optimisation of shift; and pop; calls without arguments
df91d470 967
111b6aa7
FC
968Two fewer OPs are used for shift and pop calls with no argument (with
969implicit C<@_>). This change makes C<shift;> 5% faster than C<shift @_;>
970on non-threaded perls and 25% faster on threaded.
df91d470 971
fa232254 972=head2 Optimisation of regexp engine string comparison work
df91d470 973
fa232254
FC
974The foldEQ_utf8 API function for case-insensitive comparison of strings (which
975is used heavily by the regexp engine) was substantially refactored and
976optimised - and its documentation much improved as a free bonus gift.
df91d470 977
fa232254 978=head2 Regular expression compilation speed-up
df91d470 979
fa232254
FC
980Compiling regular expressions has been made faster for the case where upgrading
981the regex to utf8 is necessary but that isn't known when the compilation begins.
df91d470 982
fa232254 983=head2 String appending is 100 times faster
df91d470 984
fa232254
FC
985When doing a lot of string appending, perl could end up allocating a lot more
986memory than needed in a very inefficient way, if perl was configured to use the
987system's C<malloc> implementation instead of its own.
988
989C<sv_grow>, which is what's being used to allocate more memory if necessary
990when appending to a string, has now been taught how to round up the memory
991it requests to a certain geometric progression, making it much faster on
992certain platforms and configurations. On Win32, it's now about 100 times
993faster.
994
995=head2 Eliminate C<PL_*> accessor functions under ithreads
996
997When C<MULTIPLICITY> was first developed, and interpreter state moved into
998an interpreter struct, thread and interpreter local C<PL_*> variables were
999defined as macros that called accessor functions, returning the address of
1000the value, outside of the perl core. The intent was to allow members
1001within the interpreter struct to change size without breaking binary
1002compatibility, so that bug fixes could be merged to a maintenance branch
1003that necessitated such a size change.
1004
1005However, some non-core code defines C<PERL_CORE>, sometimes intentionally
1006to bypass this mechanism for speed reasons, sometimes for other reasons but
1007with the inadvertent side effect of bypassing this mechanism. As some of
1008this code is widespread in production use, the result is that the core
1009I<can't> change the size of members of the interpreter struct, as it will
1010break such modules compiled against a previous release on that maintenance
1011branch. The upshot is that this mechanism is redundant, and well-behaved
1012code is penalised by it. Hence it can and should be removed (and has
1013been).
1014
1015=head2 Freeing weak references
1016
1017When an object has many weak references to it, freeing that object
1018can under some some circumstances take O(N^2) time to free (where N is the
1019number of references). The number of circumstances has been reduced
1020[perl #75254]
1021
1022=head2 Lexical array and hash assignments
1023
1024An earlier optimisation to speed up C<my @array = ...> and
1025C<my %hash = ...> assignments caused a bug and was disabled in Perl 5.12.0.
1026
1027Now we have found another way to speed up these assignments [perl #82110].
df91d470 1028
111b6aa7 1029=head2 C<@_> uses less memory
df91d470 1030
111b6aa7
FC
1031Previously, C<@_> was allocated for every subroutine at compile time with
1032enough space for four entries. Now this allocation is done on demand when
1033the subroutine is called [perl #72416].
5076a392 1034
5076a392
FC
1035=head2 Size optimisations to SV and HV structures
1036
1037xhv_fill has been eliminated from struct xpvhv, saving 1 IV per hash and
111b6aa7 1038on some systems will cause struct xpvhv to become cache-aligned. To avoid
5076a392
FC
1039this memory saving causing a slowdown elsewhere, boolean use of HvFILL
1040now calls HvTOTALKEYS instead (which is equivalent) - so while the fill
111b6aa7
FC
1041data when actually required are now calculated on demand, the cases when
1042this needs to be done should be few and far between.
5076a392 1043
111b6aa7
FC
1044The order of structure elements in SV bodies has changed. Effectively,
1045the NV slot has swapped location with STASH and MAGIC. As all access to
1046SV members is via macros, this should be completely transparent. This
5076a392
FC
1047change allows the space saving for PVHVs documented above, and may reduce
1048the memory allocation needed for PVIVs on some architectures.
1049
fa232254
FC
1050C<XPV>, C<XPVIV>, and C<XPVNV> now only allocate the parts of the C<SV> body
1051they actually use, saving some space.
5076a392 1052
fa232254
FC
1053Scalars containing regular expressions now only allocate the part of the C<SV>
1054body they actually use, saving some space.
5076a392
FC
1055
1056=head2 Memory consumption improvements to Exporter
1057
1058The @EXPORT_FAIL AV is no longer created unless required, hence neither is
111b6aa7
FC
1059the typeglob backing it. This saves about 200 bytes for every package that
1060uses Exporter but doesn't use this functionality.
5076a392 1061
111b6aa7 1062=head2 Memory savings for weak references
5076a392
FC
1063
1064For weak references, the common case of just a single weak reference per
1065referent has been optimised to reduce the storage required. In this case it
111b6aa7 1066saves the equivalent of one small Perl array per referent.
5076a392 1067
111b6aa7 1068=head2 C<%+> and C<%-> use less memory
5076a392
FC
1069
1070The bulk of the C<Tie::Hash::NamedCapture> module used to be in the perl
111b6aa7 1071core. It has now been moved to an XS module, to reduce the overhead for
5076a392
FC
1072programs that do not use C<%+> or C<%->.
1073
fa232254 1074=head2 Multiple small improvements to threads
5076a392 1075
fa232254
FC
1076The internal structures of threading now make fewer API calls and fewer
1077allocations, resulting in noticeably smaller object code. Additionally,
1078many thread context checks have been deferred so that they're only done
1079when required (although this is only possible for non-debugging builds).
5076a392 1080
fa232254 1081=head2 Adjacent pairs of nextstate opcodes are now optimized away
5076a392 1082
fa232254 1083Previously, in code such as
5076a392 1084
fa232254 1085 use constant DEBUG => 0;
5076a392 1086
fa232254
FC
1087 sub GAK {
1088 warn if DEBUG;
1089 print "stuff\n";
1090 }
5076a392 1091
fa232254
FC
1092the ops for C<warn if DEBUG;> would be folded to a C<null> op (C<ex-const>), but
1093the C<nextstate> op would remain, resulting in a runtime op dispatch of
1094C<nextstate>, C<nextstate>, ....
5076a392 1095
fa232254
FC
1096The execution of a sequence of C<nextstate> ops is indistinguishable from just
1097the last C<nextstate> op so the peephole optimizer now eliminates the first of
1098a pair of C<nextstate> ops, except where the first carries a label, since labels
1099must not be eliminated by the optimizer and label usage isn't conclusively known
1100at compile time.
5076a392
FC
1101
1102=head1 Modules and Pragmata
1103
1104=head2 New Modules and Pragmata
1105
1106=over 4
1107
1108=item *
1109
1110C<CPAN::Meta::YAML> 0.003 has been added as a dual-life module. It supports a
1111subset of YAML sufficient for reading and writing META.yml and MYMETA.yml files
1112included with CPAN distributions or generated by the module installation
1113toolchain. It should not be used for any other general YAML parsing or
1114generation task.
1115
1116=item *
1117
1118C<CPAN::Meta> version 2.110440 has been added as a dual-life module. It
1119provides a standard library to read, interpret and write CPAN distribution
1120metadata files (e.g. META.json and META.yml) which describes a
1121distribution, its contents, and the requirements for building it and
1122installing it. The latest CPAN distribution metadata specification is
1123included as C<CPAN::Meta::Spec> and notes on changes in the specification
1124over time are given in C<CPAN::Meta::History>.
1125
1126=item *
1127
5a553547 1128C<HTTP::Tiny> 0.011 has been added as a dual-life module. It is a very
5076a392
FC
1129small, simple HTTP/1.1 client designed for simple GET requests and file
1130mirroring. It has has been added to enable CPAN.pm and CPANPLUS to
1131"bootstrap" HTTP access to CPAN using pure Perl without relying on external
1132binaries like F<curl> or F<wget>.
1133
1134=item *
1135
1136C<JSON::PP> 2.27105 has been added as a dual-life module, for the sake of
1137reading F<META.json> files in CPAN distributions.
1138
1139=item *
1140
21ef4e45 1141C<Module::Metadata> 1.000004 has been added as a dual-life module. It gathers
5076a392
FC
1142package and POD information from Perl module files. It is a standalone module
1143based on Module::Build::ModuleInfo for use by other module installation
1144toolchain components. Module::Build::ModuleInfo has been deprecated in
1145favor of this module instead.
1146
1147=item *
1148
1149C<Perl::OSType> 1.002 has been added as a dual-life module. It maps Perl
1150operating system names (e.g. 'dragonfly' or 'MSWin32') to more generic types
1151with standardized names (e.g. "Unix" or "Windows"). It has been refactored
1152out of Module::Build and ExtUtils::CBuilder and consolidates such mappings into
1153a single location for easier maintenance.
1154
1155=item *
1156
1157The following modules were added by the C<Unicode::Collate>
1158upgrade. See below for details.
1159
1160C<Unicode::Collate::CJK::Big5>
1161
1162C<Unicode::Collate::CJK::GB2312>
1163
1164C<Unicode::Collate::CJK::JISX0208>
1165
1166C<Unicode::Collate::CJK::Korean>
1167
1168C<Unicode::Collate::CJK::Pinyin>
1169
1170C<Unicode::Collate::CJK::Stroke>
1171
1172=item *
1173
1174C<Version::Requirements> version 0.101020 has been added as a dual-life
1175module. It provides a standard library to model and manipulates module
1176prerequisites and version constraints as defined in the L<CPAN::Meta::Spec>.
1177
1178=back
1179
a5794e94 1180=head2 Updated Modules and Pragma
5076a392
FC
1181
1182=over 4
1183
1184=item *
1185
81a53be2
FR
1186C<attributes> has been upgraded from version 0.12 to 0.14.
1187
1188=item *
1189
5076a392
FC
1190C<Archive::Extract> has been upgraded from version 0.38 to 0.48.
1191
1192Updates since 0.38 include: a safe print method that guards
1193Archive::Extract from changes to $\; a fix to the tests when run in core
1984204c
FC
1194perl; support for TZ files; a modification for the lzma
1195logic to favour IO::Uncompress::Unlzma; and a fix
1196for an issue with NetBSD-current and its new unzip
5076a392
FC
1197executable.
1198
1199=item *
1200
1201C<Archive::Tar> has been upgraded from version 1.54 to 1.76.
1202
1984204c
FC
1203Important changes since 1.54 include the following:
1204
1205=over
1206
1207=item *
1208
1209Compatibility with busybox implementations of tar
1210
1211=item *
1212
1213A fix so that C<write()> and C<create_archive()>
1214close only handles they opened
1215
1216=item *
1217
1218A bug was fixed regarding the exit code of extract_archive.
5076a392 1219
1984204c
FC
1220=item *
1221
4f978a3b 1222The C<ptar> utility has a new option to allow safe
5076a392
FC
1223creation of tarballs without world-writable files on Windows, allowing those
1224archives to be uploaded to CPAN.
1225
1984204c
FC
1226=item *
1227
1228A new ptargrep utility for using regular expressions against
5076a392
FC
1229the contents of files in a tar archive.
1230
1984204c
FC
1231=item *
1232
1233Pax extended headers are now skipped.
1234
1235=back
5076a392
FC
1236
1237=item *
1238
fcd5df6d
FR
1239C<Attribute::Handlers> has been upgraded from version 0.87 to 0.89.
1240
1241=item *
1242
3f5a47e4
FR
1243C<autodie> has been upgraded from version 2.06_01 to 2.1001.
1244
1245=item *
1246
578e7c9d
FR
1247C<AutoLoader> has been upgraded from version 5.70 to 5.71.
1248
1249=item *
1250
a13baafd 1251C<B> has been upgraded from version 1.23 to 1.29.
5076a392
FC
1252
1253It no longer crashes when taking apart a C<y///> containing characters
1254outside the octet range or compiled in a C<use utf8> scope.
1255
1256The size of the shared object has been reduced by about 40%, with no
1257reduction in functionality.
1258
1259=item *
1260
4a75fbf5 1261C<B::Concise> has been upgraded from version 0.78 to 0.83.
5076a392
FC
1262
1263B::Concise marks rv2sv, rv2av and rv2hv ops with the new OPpDEREF flag
1264as "DREFed".
1265
1266It no longer produces mangled output with the C<-tree> option
1267[perl #80632].
1268
1269=item *
1270
6bb8c1e3
FR
1271C<B::Debug> has been upgraded from version 1.12 to 1.16.
1272
1273=item *
1274
c67a4e29 1275C<B::Deparse> has been upgraded from version 0.96 to 1.03.
5076a392 1276
1984204c 1277The deparsing of a nextstate op has changed when it has both a
5076a392
FC
1278change of package (relative to the previous nextstate), or a change of
1279C<%^H> or other state, and a label. Previously the label was emitted
cdc10f43 1280first, but now the label is emitted last (5.12.1).
5076a392 1281
5a553547
FC
1282The C<no 5.13.2> or similar form is now correctly handled by B::Deparse
1283(5.12.3).
5076a392
FC
1284
1285B::Deparse now properly handles the code that applies a conditional
1286pattern match against implicit C<$_> as it was fixed in [perl #20444].
1287
1984204c
FC
1288Deparsing of C<our> followed by a variable with funny characters
1289(as permitted under the C<utf8> pragma) has also been fixed [perl #33752].
5076a392
FC
1290
1291=item *
1292
d97c5d3b
FR
1293C<B::Lint> has been upgraded from version 1.11_01 to 1.13.
1294
1295=item *
1296
5aef2c44
FR
1297C<base> has been upgraded from version 2.15 to 2.16.
1298
1299=item *
1300
e539ae69
FR
1301C<bignum> has been upgraded from version 0.23 to 0.26.
1302
1303=item *
1304
c74c1fa8 1305C<Carp> has been upgraded from version 1.15 to 1.20.
5076a392
FC
1306
1307L<Carp> now detects incomplete L<caller()|perlfunc/"caller EXPR"> overrides and
d430b8e7
FC
1308avoids using bogus C<@DB::args>. To provide backtraces,
1309Carp relies on particular behaviour of the C<caller>
1310built-in. Carp now detects if other code has
5076a392 1311overridden this with an incomplete implementation, and modifies its backtrace
d430b8e7
FC
1312accordingly. Previously incomplete overrides would cause incorrect values
1313in backtraces (best case), or obscure fatal errors (worst case).
5076a392
FC
1314
1315This fixes certain cases of C<Bizarre copy of ARRAY> caused by modules
d430b8e7 1316overriding C<caller()> incorrectly (5.12.2).
5076a392 1317
1984204c 1318It now also avoids using regular expressions that cause perl to
5076a392
FC
1319load its Unicode tables, in order to avoid the 'BEGIN not safe after
1320errors' error that will ensue if there has been a syntax error
1321[perl #82854].
1322
1323=item *
1324
9eb7ad55 1325C<CGI> has been upgraded from version 3.48 to 3.52.
5076a392
FC
1326
1327This provides the following security fixes: the MIME boundary in
1984204c
FC
1328multipart_init is now random and the handling of
1329newlines embedded in header values has been improved.
5076a392
FC
1330
1331=item *
1332
5076a392
FC
1333C<Compress::Raw::Bzip2> has been upgraded from version 2.024 to 2.033.
1334
1984204c 1335It has been updated to use bzip2 1.0.6.
5076a392
FC
1336
1337=item *
1338
51090521
FR
1339C<Compress::Raw::Zlib> has been upgraded from version 2.024 to 2.033.
1340
1341=item *
1342
f75b7efc 1343C<CPAN> has been upgraded from version 1.94_56 to 1.9600.
1984204c
FC
1344
1345Major highlights:
5076a392
FC
1346
1347=over 4
1348
1984204c 1349=item * much less configuration dialog hassle
5076a392 1350
1984204c 1351=item * support for META/MYMETA.json
5076a392 1352
1984204c 1353=item * support for local::lib
5076a392 1354
1984204c 1355=item * support for HTTP::Tiny to reduce the dependency on ftp sites
5076a392 1356
1984204c 1357=item * automatic mirror selection
5076a392 1358
1984204c 1359=item * iron out all known bugs in configure_requires
5076a392 1360
1984204c
FC
1361=item * support for distributions compressed with bzip2
1362
1363=item * allow Foo/Bar.pm on the commandline to mean Foo::Bar
1364
1365=back
5076a392
FC
1366
1367=item *
1368
d430b8e7
FC
1369C<CPANPLUS> has been upgraded from version 0.90 to 0.9103.
1370
1371A change to F<cpanp-run-perl>
1372resolves L<RT #55964|http://rt.cpan.org/Public/Bug/Display.html?id=55964>
1373and L<RT #57106|http://rt.cpan.org/Public/Bug/Display.html?id=57106>, both
1374of which related to failures to install distributions that use
1375C<Module::Install::DSL> (5.12.2).
5076a392 1376
1984204c
FC
1377A dependency on Config was not recognised as a
1378core module dependency. This has been fixed.
5076a392 1379
1984204c 1380CPANPLUS now includes support for META.json and MYMETA.json.
5076a392
FC
1381
1382=item *
1383
4467e8f7
FR
1384C<CPANPLUS::Dist::Build> has been upgraded from version 0.46 to 0.54.
1385
1386=item *
1387
5076a392
FC
1388C<Data::Dumper> has been upgraded from version 2.125 to 2.130_02.
1389
4ed2cea4
FC
1390The indentation used to be off when C<$Data::Dumper::Terse> was set. This
1391has been fixed [perl #73604].
1392
1984204c
FC
1393This upgrade also fixes a crash when using custom sort functions that might
1394cause the stack to change [perl #74170].
5076a392
FC
1395
1396C<Dumpxs> no longer crashes with globs returned by C<*$io_ref>
1397[perl #72332].
1398
1399=item *
1400
549d34f5
FR
1401C<DB_File> has been upgraded from version 1.820 to 1.821.
1402
1403=item *
1404
5076a392
FC
1405C<Devel::DProf> has been upgraded from version 20080331.00 to 20110228.00.
1406
1407Merely loading C<Devel::DProf> now no longer triggers profiling to start.
1408C<use Devel::DProf> and C<perl -d:DProf ...> still behave as before and start
1409the profiler.
1410
1411NOTE: C<Devel::DProf> is deprecated and will be removed from a future
1984204c 1412version of Perl. We strongly recommend that you install and use
5076a392
FC
1413L<Devel::NYTProf> instead, as it offers significantly improved
1414profiling and reporting.
1415
1416=item *
1417
868625d2
FR
1418C<Devel::Peek> has been upgraded from version 1.04 to 1.07.
1419
1420=item *
1421
66899ca3
FR
1422C<Devel::SelfStubber> has been upgraded from version 1.03 to 1.05.
1423
1424=item *
1425
5076a392
FC
1426C<diagnostics> has been upgraded from version 1.19 to 1.22.
1427
1428It now renders pod links slightly better, and has been taught to find
1429descriptions for messages that share their descriptions with other
1430messages.
1431
1432=item *
1433
1434C<Digest::MD5> has been upgraded from version 2.39 to 2.51.
1435
1436It is now safe to use this module in combination with threads.
1437
1438=item *
1439
1440C<Digest::SHA> has been upgraded from version 5.47 to 5.61.
1441
1442C<shasum> now more closely mimics C<sha1sum>/C<md5sum>.
1443
1444C<Addfile> accepts all POSIX filenames.
1445
1984204c
FC
1446New SHA-512/224 and SHA-512/256 transforms (ref. NIST Draft FIPS 180-4
1447[February 2011])
5076a392
FC
1448
1449=item *
1450
e53cbaa3
FR
1451C<Dumpvalue> has been upgraded from version 1.13 to 1.16.
1452
1453=item *
1454
31e8b85a 1455C<DynaLoader> has been upgraded from version 1.10 to 1.13.
5076a392
FC
1456
1457It fixes a buffer overflow when passed a very long file name.
1458
1459It no longer inherits from AutoLoader; hence it no longer
1460produces weird error messages for unsuccessful method calls on classes that
1461inherit from DynaLoader [perl #84358].
1462
1463=item *
1464
1465C<Encode> has been upgraded from version 2.39 to 2.42.
1466
1467Now, all 66 Unicode non-characters are treated the same way U+FFFF has
1984204c
FC
1468always been treated; in cases when it was disallowed, all 66 are
1469disallowed; in those cases where it warned, all 66 warn.
5076a392
FC
1470
1471=item *
1472
68f90ac3
FR
1473C<Env> has been upgraded from version 1.01 to 1.02.
1474
1475=item *
1476
5076a392
FC
1477C<Errno> has been upgraded from version 1.11 to 1.13.
1478
1479The implementation of C<Errno> has been refactored to use about 55% less memory.
5076a392
FC
1480
1481On some platforms with unusual header files, like Win32/gcc using mingw64
1482headers, some constants which weren't actually error numbers have been exposed
1483by C<Errno>. This has been fixed [perl #77416].
1484
1485=item *
1486
1487C<Exporter> has been upgraded from version 5.64_01 to 5.64_03.
1488
1489Exporter no longer overrides C<$SIG{__WARN__}> [perl #74472]
1490
1491=item *
1492
25fe7f8f
FR
1493C<ExtUtils::CBuilder> has been upgraded from version 0.27 to 0.280202.
1494
1495=item *
1496
2292e71e
FR
1497C<ExtUtils::Command> has been upgraded from version 1.16 to 1.17.
1498
1499=item *
1500
5076a392
FC
1501C<ExtUtils::Constant> has been upgraded from 0.22 to 0.23.
1502
1503The C<AUTOLOAD> helper code generated by C<ExtUtils::Constant::ProxySubs>
1504can now C<croak> for missing constants, or generate a complete C<AUTOLOAD>
1984204c
FC
1505subroutine in XS, allowing simplification of many modules that use it
1506(C<Fcntl>, C<File::Glob>, C<GDBM_File>, C<I18N::Langinfo>, C<POSIX>,
1507C<Socket>).
5076a392
FC
1508
1509C<ExtUtils::Constant::ProxySubs> can now optionally push the names of all
1984204c 1510constants onto the package's C<@EXPORT_OK>.
5076a392
FC
1511
1512=item *
1513
588c5853
FR
1514C<ExtUtils::Install> has been upgraded from version 1.55 to 1.56.
1515
1516=item *
1517
5418ffb3
FR
1518C<ExtUtils::MakeMaker> has been upgraded from version 6.56 to 6.57_05.
1519
1520=item *
1521
f40ab45f
FR
1522C<ExtUtils::Manifest> has been upgraded from version 1.57 to 1.58.
1523
1524=item *
1525
b7064dd7
FR
1526C<ExtUtils::ParseXS> has been upgraded from version 2.21 to 2.2209.
1527
1528=item *
1529
8b87be80
FR
1530C<Fcntl> has been upgraded from version 1.06 to 1.11.
1531
1532=item *
1533
05102622
FR
1534C<File::CheckTree> has been upgraded from version 4.4 to 4.41.
1535
1536=item *
1537
e12786fa 1538C<File::DosGlob> has been upgraded from version 1.01 to 1.04.
5076a392
FC
1539
1540It allows patterns containing literal parentheses (they no longer need to
1984204c
FC
1541be escaped). On Windows, it no longer
1542adds an extra F<./> to the file names
5076a392
FC
1543returned when the pattern is a relative glob with a drive specification,
1544like F<c:*.pl> [perl #71712].
1545
1546=item *
1547
1548C<File::Fetch> has been upgraded from version 0.24 to 0.32.
1549
1550C<HTTP::Lite> is now supported for 'http' scheme.
1551
1552The C<fetch> utility is supported on FreeBSD, NetBSD and
1553Dragonfly BSD for the C<http> and C<ftp> schemes.
1554
1555=item *
1556
23f2cbb1 1557C<File::Find> has been upgraded from version 1.15 to 1.19.
5076a392 1558
1984204c 1559It improves handling of backslashes on Windows, so that paths like
5076a392
FC
1560F<c:\dir\/file> are no longer generated [perl #71710].
1561
1562=item *
1563
0ae9f678
FR
1564C<File::Glob> has been upgraded from version 1.07 to 1.12.
1565
1566=item *
1567
d430b8e7
FC
1568C<File::Spec> has been upgraded from version 3.31 to 3.33.
1569
1570Several portability fixes were made in C<File::Spec::VMS>: a colon is now
1571recognized as a delimiter in native filespecs; caret-escaped delimiters are
1572recognized for better handling of extended filespecs; C<catpath()> returns
1573an empty directory rather than the current directory if the input directory
1574name is empty; C<abs2rel()> properly handles Unix-style input (5.12.2).
1575
1576=item *
1577
46ba0657 1578C<File::stat> has been upgraded from 1.02 to 1.05.
5076a392
FC
1579
1580The C<-x> and C<-X> file test operators now work correctly under the root
1581user.
1582
1583=item *
1584
b7edcc3c
FR
1585C<Filter::Simple> has been upgraded from version 0.84 to 0.86.
1586
1587=item *
1588
dc6857fd 1589C<GDBM_File> has been upgraded from 1.10 to 1.14.
5076a392
FC
1590
1591This fixes a memory leak when DBM filters are used.
1592
1593=item *
1594
6e107b45 1595C<Hash::Util> has been upgraded from 0.07 to 0.11.
5076a392 1596
1984204c
FC
1597Hash::Util no longer emits spurious "uninitialized" warnings when
1598recursively locking hashes that have undefined values [perl #74280].
5076a392
FC
1599
1600=item *
1601
89ce9b34
FR
1602C<Hash::Util::FieldHash> has been upgraded from version 1.04 to 1.09.
1603
1604=item *
1605
eec33fe6
FR
1606C<I18N::Collate> has been upgraded from version 1.01 to 1.02.
1607
1608=item *
1609
ad5f8f47 1610C<I18N::Langinfo> has been upgraded from version 0.03 to 0.08.
5076a392
FC
1611
1612C<langinfo()> now defaults to using C<$_> if there is no argument given, just
5334145a 1613as the documentation has always claimed.
5076a392
FC
1614
1615=item *
1616
c41635f7
FR
1617C<I18N::LangTags> has been upgraded from version 0.35 to 0.35_01.
1618
1619=item *
1620
98a6a4ff
FR
1621C<if> has been upgraded from version 0.05 to 0.0601.
1622
1623=item *
1624
f6ff7fb6
FR
1625C<IO> has been upgraded from version 1.25_02 to 1.25_04.
1626
1627=item *
1628
d13528c5 1629C<IO::Select> has been upgraded from version 1.17 to 1.20.
5076a392
FC
1630
1631It now allows IO::Handle objects (and objects in derived classes) to be
1632removed from an IO::Select set even if the underlying file descriptor is
1633closed or invalid.
1634
1635=item *
1636
d07561d3 1637C<IPC::Cmd> has been upgraded from version 0.54 to 0.70.
5076a392 1638
1984204c
FC
1639Resolves an issue with splitting Win32 command lines. An argument
1640consisting of the single character "0" used to be omitted (CPAN RT #62961).
5076a392
FC
1641
1642=item *
1643
3f16e4eb 1644C<IPC::Open3> has been upgraded from 1.05 to 1.09.
5076a392 1645
4ed2cea4
FC
1646C<open3> now produces an error if the C<exec> call fails, allowing this
1647condition to be distinguished from a child process that exited with a
1648non-zero status [perl #72016].
1649
5076a392
FC
1650The internal C<xclose> routine now knows how to handle file descriptors, as
1651documented, so duplicating STDIN in a child process using its file
1652descriptor now works [perl #76474].
1653
1654=item *
1655
c8b41807
FR
1656C<IPC::SysV> has been upgraded from version 2.01 to 2.03.
1657
1658=item *
1659
ef79f038
FR
1660C<lib> has been upgraded from version 0.62 to 0.63.
1661
1662=item *
1663
5b1884f4 1664C<Locale::Maketext> has been upgraded from version 1.14 to 1.19.
5076a392 1665
1984204c 1666Locale::Maketext now supports external caches.
5076a392 1667
1984204c
FC
1668This upgrade also fixes an infinite loop in
1669C<Locale::Maketext::Guts::_compile()> when
5076a392
FC
1670working with tainted values (CPAN RT #40727).
1671
1984204c 1672C<< ->maketext >> calls will now back up and restore C<$@> so that error
5076a392
FC
1673messages are not suppressed (CPAN RT #34182).
1674
1675=item *
1676
3811bd2b
FR
1677C<Log::Message> has been upgraded from version 0.02 to 0.04.
1678
1679=item *
1680
8eb65377
FR
1681C<Log::Message::Simple> has been upgraded from version 0.06 to 0.08.
1682
1683=item *
1684
5076a392
FC
1685C<Math::BigInt> has been upgraded from version 1.89_01 to 1.994.
1686
1687This fixes, among other things, incorrect results when computing binomial
1688coefficients [perl #77640].
1689
1984204c 1690It also prevents C<sqrt($int)> from crashing under C<use bigrat;>
5076a392
FC
1691[perl #73534].
1692
1693=item *
1694
846c1cec
FR
1695C<Math::BigInt::FastCalc> has been upgraded from version 0.19 to 0.28.
1696
1697=item *
1698
fce4aef3
FR
1699C<Math::BigRat> has been upgraded from version 0.24 to 0.26_02.
1700
1701=item *
1702
12e26027
FR
1703C<Memoize> has been upgraded from version 1.01_03 to 1.02.
1704
1705=item *
1706
5076a392
FC
1707C<MIME::Base64> has been upgraded from 3.08 to 3.13.
1708
1709Includes new functions to calculate the length of encoded and decoded
1710base64 strings.
1711
1712Now provides C<encode_base64url> and C<decode_base64url> functions to process
1713the base64 scheme for "URL applications".
1714
1715=item *
1716
1717C<Module::Build> has been upgraded from version 0.3603 to 0.3800.
1718
1719A notable change is the deprecation of several modules.
1720Module::Build::Version has been deprecated and Module::Build now relies
1721directly upon L<version>. Module::Build::ModuleInfo has been deprecated in
1722favor of a standalone copy of it called L<Module::Metadata>.
1723Module::Build::YAML has been deprecated in favor of L<CPAN::Meta::YAML>.
1724
1725Module::Build now also generates META.json and MYMETA.json files
1726in accordance with version 2 of the CPAN distribution metadata specification,
1727L<CPAN::Meta::Spec>. The older format META.yml and MYMETA.yml files are
1728still generated, as well.
1729
1730=item *
1731
7259fe26 1732C<Module::CoreList> has been upgraded from version 2.29 to 2.47.
5076a392
FC
1733
1734Besides listing the updated core modules of this release, it also stops listing
1984204c 1735the C<Filespec> module. That module never existed in core. The scripts
5076a392 1736generating C<Module::CoreList> confused it with C<VMS::Filespec>, which actually
1984204c 1737is a core module as of perl 5.8.7.
5076a392
FC
1738
1739=item *
1740
193af05b
FR
1741C<Module::Load> has been upgraded from version 0.16 to 0.18.
1742
1743=item *
1744
5b3a054f
FR
1745C<Module::Load::Conditional> has been upgraded from version 0.34 to 0.44.
1746
1747=item *
1748
01835e3a
FR
1749C<mro> has been upgraded from version 1.02 to 1.07.
1750
1751=item *
1752
bfe7bf96 1753C<NDBM_File> has been upgraded from version 1.08 to 1.12.
4f978a3b
FR
1754
1755This fixes a memory leak when DBM filters are used.
1756
1757=item *
1758
d0aa5c91
FR
1759C<Net::Ping> has been upgraded from version 2.36 to 2.38.
1760
1761=item *
1762
d44b8a8c
FR
1763C<NEXT> has been upgraded from version 0.64 to 0.65.
1764
1765=item *
1766
678d4fd4
FR
1767C<Object::Accessor> has been upgraded from version 0.36 to 0.38.
1768
1769=item *
1770
34188656 1771C<ODBM_File> have been upgraded from version 1.07 to 1.10.
5076a392
FC
1772
1773This fixes a memory leak when DBM filters are used.
1774
1775=item *
1776
4c69840c
FR
1777C<Opcode> has been upgraded from version 1.15 to 1.18.
1778
1779=item *
1780
77be713d 1781C<overload> has been upgraded from 1.10 to 1.12.
5076a392
FC
1782
1783C<overload::Method> can now handle subroutines that are themselves blessed
1784into overloaded classes [perl #71998].
1785
5076a392
FC
1786The documentation has greatly improved. See L</Documentation> below.
1787
1788=item *
1789
f84c796e
FR
1790C<Params::Check> has been upgraded from version 0.26 to 0.28.
1791
1792=item *
1793
550ee92b
FR
1794C<parent> has been upgraded from version 0.223 to 0.225.
1795
1796=item *
1797
5076a392
FC
1798C<Parse::CPAN::Meta> has been upgraded from version 1.40 to 1.4401.
1799
1984204c 1800The latest Parse::CPAN::Meta can now read YAML and JSON files using
5076a392
FC
1801L<CPAN::Meta::YAML> and L<JSON::PP>, which are now part of the Perl core.
1802
1803=item *
1804
e981cf86
FR
1805C<PerlIO::encoding> has been upgraded from version 0.12 to 0.14.
1806
1807=item *
1808
5076a392
FC
1809C<PerlIO::scalar> has been upgraded from 0.07 to 0.11.
1810
1811A C<read> after a C<seek> beyond the end of the string no longer thinks it
1812has data to read [perl #78716].
1813
1814=item *
1815
be3c8498
FR
1816C<Pod::LaTeX> has been upgraded from version 0.58 to 0.59.
1817
1818=item *
1819
fd8a2e89
FR
1820C<Pod::Perldoc> has been upgraded from version 3.15_02 to 3.15_03.
1821
1822=item *
1823
5bcb6583
FR
1824C<Pod::Simple> has been upgraded from version 3.13 to 3.16.
1825
1826=item *
1827
abb8c779 1828C<POSIX> has been upgraded from 1.19 to 1.24.
5076a392
FC
1829
1830It now includes constants for POSIX signal constants.
1831
1832=item *
1833
1984204c 1834C<re> has been upgraded from version 0.11 to 0.17.
5076a392
FC
1835
1836New C<use re "/flags"> pragma
1837
5076a392 1838The C<regmust> function used to crash when called on a regular expression
1984204c 1839belonging to a pluggable engine. Now it croaks instead.
5076a392
FC
1840
1841C<regmust> no longer leaks memory.
1842
1843=item *
1844
1845C<Safe> has been upgraded from version 2.25 to 2.29.
1846
cdc10f43
FC
1847Coderefs returned by C<reval()> and C<rdo()> are now wrapped via
1848C<wrap_code_refs> (5.12.1).
1849
5076a392
FC
1850This fixes a possible infinite loop when looking for coderefs.
1851
cdc10f43 1852It adds several version::vxs::* routines to the default share.
5076a392
FC
1853
1854=item *
1855
5076a392
FC
1856C<SelfLoader> has been upgraded from 1.17 to 1.18.
1857
1858It now works in taint mode [perl #72062].
1859
1860=item *
1861
1862C<sigtrap> has been upgraded from version 1.04 to 1.05.
1863
1864It no longer tries to modify read-only arguments when generating a
1865backtrace [perl #72340].
1866
1867=item *
1868
1984204c 1869C<Socket> has been upgraded from version 1.87 to 1.94.
5076a392 1870
1984204c 1871See L</IPv6 support>, above.
5076a392
FC
1872
1873=item *
1874
1875C<Storable> has been upgraded from version 2.22 to 2.27.
1876
1877Includes performance improvement for overloaded classes.
1878
5076a392 1879This adds support for serialising code references that contain UTF-8 strings
1984204c
FC
1880correctly. The Storable minor version
1881number changed as a result, meaning that
5076a392
FC
1882Storable users who set C<$Storable::accept_future_minor> to a C<FALSE> value
1883will see errors (see L<Storable/FORWARD COMPATIBILITY> for more details).
1884
1885Freezing no longer gets confused if the Perl stack gets reallocated
1886during freezing [perl #80074].
1887
1888=item *
1889
90c6e78f
FR
1890C<Term::ANSIColor> has been upgraded from version 2.02 to 3.00.
1891
1892=item *
1893
d9f2f059
FR
1894C<Term::UI> has been upgraded from version 0.20 to 0.26.
1895
1896=item *
1897
80ebb519
FR
1898C<Test::Harness> has been upgraded from version 3.17 to 3.23.
1899
1900=item *
1901
5076a392
FC
1902C<Test::Simple> has been upgraded from version 0.94 to 0.98.
1903
1904Among many other things, subtests without a C<plan> or C<no_plan> now have an
1905implicit C<done_testing()> added to them.
1906
1907=item *
1908
5076a392
FC
1909C<Thread::Semaphore> has been upgraded from version 2.09 to 2.12.
1910
1984204c
FC
1911It provides two new methods that give more control over the decrementing of
1912semaphores: C<down_nb> and C<down_force>.
5076a392
FC
1913
1914=item *
1915
f0d895e1
FR
1916C<Thread::Queue> has been upgraded from version 2.11 to 2.12.
1917
1918=item *
1919
1a6b954e
FR
1920C<threads> has been upgraded from version 1.75 to 1.83.
1921
1922=item *
1923
55816daa
FR
1924C<threads::shared> has been upgraded from version 1.32 to 1.36.
1925
1926=item *
1927
5076a392
FC
1928C<Tie::Hash> has been upgraded from version 1.03 to 1.04.
1929
1930Calling C<< Tie::Hash-E<gt>TIEHASH() >> used to loop forever. Now it C<croak>s.
1931
1932=item *
1933
ed68b07e
FR
1934C<Tie::RefHash> has been upgraded from version 1.38 to 1.39.
1935
1936=item *
1937
bb3c221a
FR
1938C<Time::HiRes> has been upgraded from version 1.9719 to 1.9721_01.
1939
1940=item *
1941
97fa568b
FR
1942C<Time::Local> has been upgraded from version 1.1901_01 to 1.2000.
1943
1944=item *
1945
a83cb732
FR
1946C<Time::Piece> has been upgraded from version 1.15_01 to 1.20_01.
1947
1948=item *
1949
5076a392
FC
1950C<Unicode::Collate> has been upgraded from version 0.52_01 to 0.73.
1951
1984204c 1952Unicode::Collate has been updated to use Unicode 6.0.0.
5076a392 1953
1984204c
FC
1954Unicode::Collate::Locale now supports a plethora of new locales: ar, be,
1955bg, de__phonebook, hu, hy, kk, mk, nso, om, tn, vi, hr, ig, ja, ko, ru, sq,
1956se, sr, to, uk, zh, zh__big5han, zh__gb2312han, zh__pinyin and zh__stroke.
5076a392
FC
1957
1958The following modules have been added:
1959
1960C<Unicode::Collate::CJK::Big5> for C<zh__big5han> which makes
1961tailoring of CJK Unified Ideographs in the order of CLDR's big5han ordering.
1962
1963C<Unicode::Collate::CJK::GB2312> for C<zh__gb2312han> which makes
1964tailoring of CJK Unified Ideographs in the order of CLDR's gb2312han ordering.
1965
1966C<Unicode::Collate::CJK::JISX0208> which makes tailoring of 6355 kanji
1967(CJK Unified Ideographs) in the JIS X 0208 order.
1968
1969C<Unicode::Collate::CJK::Korean> which makes tailoring of CJK Unified Ideographs
1970in the order of CLDR's Korean ordering.
1971
1972C<Unicode::Collate::CJK::Pinyin> for C<zh__pinyin> which makes
1973tailoring of CJK Unified Ideographs in the order of CLDR's pinyin ordering.
1974
1975C<Unicode::Collate::CJK::Stroke> for C<zh__stroke> which makes
1976tailoring of CJK Unified Ideographs in the order of CLDR's stroke ordering.
1977
5076a392
FC
1978This also sees the switch from using the pure-perl version of this
1979module to the XS version.
1980
1981=item *
1982
ec52b54b
FR
1983C<Unicode::Normalize> has been upgraded from version 1.03 to 1.10.
1984
1985=item *
1986
5076a392
FC
1987C<Unicode::UCD> has been upgraded from version 0.27 to 0.32.
1988
1984204c
FC
1989A new function, C<Unicode::UCD::num()>, has been added. This function
1990returns the numeric value of the string passed it or C<undef> if the string
1991in its entirety has no "safe" numeric value. (For more detail, and for the
1992definition of "safe", see L<Unicode::UCD/num>.)
5076a392 1993
1984204c 1994This upgrade also includes a number of bug fixes:
5076a392
FC
1995
1996=over 4
1997
1998=item charinfo()
1999
2000=over 4
2001
2002=item *
2003
2004It is now updated to Unicode Version 6 with Corrigendum #8, except,
2005as with Perl 5.14, the code point at U+1F514 has no name.
2006
2007=item *
2008
2009The Hangul syllable code points have the correct names, and their
2010decompositions are always output without requiring L<Lingua::KO::Hangul::Util>
2011to be installed.
2012
2013=item *
2014
54c7bb16
FC
2015The CJK (Chinese-Japanese-Korean) code points U+2A700 to U+2B734
2016and U+2B740 to U+2B81D are now properly handled.
5076a392
FC
2017
2018=item *
2019
2020The numeric values are now output for those CJK code points that have them.
2021
2022=item *
2023
2024The names that are output for code points with multiple aliases are now the
2025corrected ones.
2026
2027=back
2028
2029=item charscript()
2030
2031This now correctly returns "Unknown" instead of C<undef> for the script
2032of a code point that hasn't been assigned another one.
2033
2034=item charblock()
2035
2036This now correctly returns "No_Block" instead of C<undef> for the block
2037of a code point that hasn't been assigned to another one.
2038
2039=back
2040
5076a392
FC
2041=item *
2042
2043C<version> has been upgraded from 0.82 to 0.88.
2044
1984204c 2045Due to a bug, now fixed, the C<is_strict> and C<is_lax> functions did not
cdc10f43 2046work when exported (5.12.1).
5076a392
FC
2047
2048=item *
2049
3e625598 2050C<warnings> has been upgraded from version 1.09 to 1.12.
5076a392
FC
2051
2052Calling C<use warnings> without arguments is now significantly more efficient.
2053
4f978a3b
FR
2054=item *
2055
2056C<warnings::register> have been upgraded from version 1.01 to 1.02.
2057
5076a392
FC
2058It is now possible to register warning categories other than the names of
2059packages using C<warnings::register>. See L<perllexwarn> for more information.
2060
2061=item *
2062
62e270c2
FR
2063C<XSLoader> has been upgraded from version 0.10 to 0.13.
2064
2065=item *
2066
5076a392
FC
2067C<VMS::DCLsym> has been upgraded from version 1.03 to 1.05.
2068
2069Two bugs have been fixed [perl #84086]:
2070
2071The symbol table name was lost when tying a hash, due to a thinko in
2072C<TIEHASH>. The result was that all tied hashes interacted with the
2073local symbol table.
2074
2075Unless a symbol table name had been explicitly specified in the call
2076to the constructor, querying the special key ':LOCAL' failed to
2077identify objects connected to the local symbol table.
2078
2079=item *
2080
2081C<Win32> has been upgraded from version 0.39 to 0.44.
2082
1984204c
FC
2083This release has several new functions: C<Win32::GetSystemMetrics>,
2084C<Win32::GetProductInfo>, C<Win32::GetOSDisplayName>.
5076a392 2085
1984204c
FC
2086The names returned by C<Win32::GetOSName> and C<Win32::GetOSDisplayName>
2087have been corrected.
5076a392 2088
5076a392
FC
2089=back
2090
5076a392
FC
2091=head2 Removed Modules and Pragmata
2092
2093The following modules have been removed from the core distribution, and if
2094needed should be installed from CPAN instead.
2095
2096=over
2097
4f978a3b
FR
2098=item *
2099
2100C<Class::ISA> has been removed from the Perl core. Prior version was 0.36.
5076a392 2101
4f978a3b
FR
2102=item *
2103
2104C<Pod::Plainer> has been removed from the Perl core. Prior version was 1.02.
2105
2106=item *
5076a392 2107
4f978a3b 2108C<Switch> has been removed from the Perl core. Prior version was 2.16.
5076a392
FC
2109
2110=back
2111
2112The removal of C<Shell> has been deferred until after 5.14, as the
2113implementation of C<Shell> shipped with 5.12.0 did not correctly issue the
2114warning that it was to be removed from core.
2115
2116=head1 Documentation
2117
5076a392
FC
2118=head2 New Documentation
2119
41e29def 2120=head3 L<perlgpl>
5076a392
FC
2121
2122L<perlgpl> has been updated to contain GPL version 1, as is included in the
cdc10f43 2123F<README> distributed with perl (5.12.1).
5076a392 2124
41e29def 2125=head3 Perl 5.12.x delta files
5076a392 2126
41e29def
FC
2127The perldelta files for Perl 5.12.1 to 5.12.3 have been added from the
2128maintenance branch: L<perl5121delta>, L<perl5122delta>, L<perl5123delta>.
5076a392
FC
2129
2130=head3 L<perlpodstyle>
2131
2132New style guide for POD documentation,
2133split mostly from the NOTES section of the pod2man man page.
2134
41e29def
FC
2135=head3 L<perlsource>, L<perlinterp>, L<perlhacktut>, and L<perlhacktips>
2136
cc13eef1 2137See L</perlhack and perlrepository revamp>, below.
5076a392
FC
2138
2139=head2 Changes to Existing Documentation
2140
41e29def 2141=head3 L<perlmodlib> is now complete
4ed2cea4
FC
2142
2143The perlmodlib page that came with Perl 5.12.0 was missing a lot of
2144modules, due to a bug in the script that generates the list. This has been
cdc10f43 2145fixed [perl #74332] (5.12.1).
4ed2cea4 2146
41e29def 2147=head3 Replace wrong tr/// table in L<perlebcdic>
5076a392 2148
41e29def 2149L<perlebcdic> contains a helpful table to use in tr/// to convert
5076a392
FC
2150between EBCDIC and Latin1/ASCII. Unfortunately, the table was the
2151inverse of the one it describes, though the code that used the table
2152worked correctly for the specific example given.
2153
2154The table has been changed to its inverse, and the sample code changed
2155to correspond, as this is easier for the person trying to follow the
2156instructions since deriving the old table is somewhat more complicated.
2157
2158The table has also been changed to hex from octal, as that is more the norm
2159these days, and the recipes in the pod altered to print out leading
41e29def 2160zeros to make all the values the same length.
5076a392 2161
41e29def 2162=head3 Tricks for user-defined casing
5076a392 2163
41e29def
FC
2164L<perlunicode> now contains an explanation of how to override, mangle
2165and otherwise tweak the way perl handles upper-, lower- and other-case
2166conversions on Unicode data, and how to provide scoped changes to alter
2167one's own code's behaviour without stomping on anybody else.
5076a392
FC
2168
2169=head3 INSTALL explicitly states the requirement for C89
2170
d430b8e7
FC
2171This was already true but it's now Officially Stated For The Record
2172(5.12.2).
5076a392 2173
41e29def 2174=head3 Explanation of C<\xI<HH>> and C<\oI<OOO>> escapes
5076a392 2175
41e29def
FC
2176L<perlop> has been updated with more detailed explanation of these two
2177character escapes.
5076a392 2178
41e29def 2179=head3 C<-0I<NNN>> switch
5076a392 2180
41e29def 2181In L<perlrun>, the behavior of the C<-0NNN> switch for C<-0400> or higher
d430b8e7 2182has been clarified (5.12.2).
5076a392 2183
cdc10f43
FC
2184=head3 Maintenance policy
2185
2186L<perlpolicy> now contains the policy on what patches are acceptable for
2187maintenance branches (5.12.1).
2188
41e29def 2189=head3 Deprecation policy
5076a392 2190
41e29def 2191L<perlpolicy> now contains the policy on compatibility and deprecation
d430b8e7 2192along with definitions of terms like "deprecation" (5.12.2).
5076a392 2193
41e29def 2194=head3 New descriptions in L<perldiag>
5076a392
FC
2195
2196The following existing diagnostics are now documented:
2197
2198=over 4
2199
2200=item *
2201
2202L<Ambiguous use of %c resolved as operator %c|perldiag/"Ambiguous use of %c resolved as operator %c">
2203
2204=item *
2205
2206L<Ambiguous use of %c{%s} resolved to %c%s|perldiag/"Ambiguous use of %c{%s} resolved to %c%s">
2207
2208=item *
2209
2210L<Ambiguous use of %c{%s%s} resolved to %c%s%s|perldiag/"Ambiguous use of %c{%s%s} resolved to %c%s%s">
2211
2212=item *
2213
2214L<Ambiguous use of -%s resolved as -&%s()|perldiag/"Ambiguous use of -%s resolved as -&%s()">
2215
2216=item *
2217
2218L<Invalid strict version format (%s)|perldiag/"Invalid strict version format (%s)">
2219
2220=item *
2221
2222L<Invalid version format (%s)|perldiag/"Invalid version format (%s)">
2223
2224=item *
2225
2226L<Invalid version object|perldiag/"Invalid version object">
2227
2228=back
2229
5076a392
FC
2230=head3 L<perlbook>
2231
41e29def 2232L<perlbook> has been expanded to cover many more popular books.
5076a392 2233
41e29def 2234=head3 C<SvTRUE> macro
5076a392 2235
41e29def
FC
2236The documentation for the C<SvTRUE> macro in
2237L<perlapi> was simply wrong in stating that
5076a392
FC
2238get-magic is not processed. It has been corrected.
2239
41e29def 2240=head3 L<perlvar> revamp
5076a392 2241
41e29def 2242L<perlvar> reorders the variables and groups them by topic. Each variable
5076a392 2243introduced after Perl 5.000 notes the first version in which it is
41e29def 2244available. L<perlvar> also has a new section for deprecated variables to
5076a392
FC
2245note when they were removed.
2246
41e29def 2247=head3 Array and hash slices in scalar context
5076a392 2248
41e29def 2249These are now documented in L<perldata>.
5076a392 2250
41e29def 2251=head3 C<use locale> and formats
5076a392
FC
2252
2253L<perlform> and L<perllocale> have been corrected to state that
2254C<use locale> affects formats.
2255
5076a392
FC
2256=head3 L<overload>
2257
5076a392
FC
2258L<overload>'s documentation has practically undergone a rewrite. It
2259is now much more straightforward and clear.
2260
cc13eef1 2261=head3 perlhack and perlrepository revamp
5076a392
FC
2262
2263The L<perlhack> and perlrepository documents have been heavily edited and
2264split up into several new documents.
2265
2266The L<perlhack> document is now much shorter, and focuses on the Perl 5
2267development process and submitting patches to Perl. The technical content has
2268been moved to several new documents, L<perlsource>, L<perlinterp>,
2269L<perlhacktut>, and L<perlhacktips>. This technical content has only been
2270lightly edited.
2271
2272The perlrepository document has been renamed to L<perlgit>. This new document
2273is just a how-to on using git with the Perl source code. Any other content
2274that used to be in perlrepository has been moved to perlhack.
2275
41e29def 2276=head3 Time::Piece examples
5076a392
FC
2277
2278Examples in L<perlfaq4> have been updated to show the use of
41e29def 2279L<Time::Piece>.
5076a392
FC
2280
2281=head1 Diagnostics
2282
2283The following additions or changes have been made to diagnostic output,
2284including warnings and fatal error messages. For the complete list of
2285diagnostic messages, see L<perldiag>.
2286
2287=head2 New Diagnostics
2288
a593b319
FC
2289=head3 New Errors
2290
5076a392
FC
2291=over
2292
a593b319 2293=item Closure prototype called
5076a392 2294
a593b319
FC
2295This error occurs when a subroutine reference passed to an attribute
2296handler is called, if the subroutine is a closure [perl #68560].
5076a392 2297
a593b319 2298=item Insecure user-defined property %s
5076a392 2299
a593b319
FC
2300Perl detected tainted data when trying to compile a regular
2301expression that contains a call to a user-defined character property
2302function, i.e. C<\p{IsFoo}> or C<\p{InFoo}>.
2303See L<perlunicode/User-Defined Character Properties> and L<perlsec>.
5076a392 2304
a593b319 2305=item panic: gp_free failed to free glob pointer - something is repeatedly re-creating entries
5076a392 2306
a593b319
FC
2307This new error is triggered if a destructor called on an object in a
2308typeglob that is being freed creates a new typeglob entry containing an
2309object with a destructor that creates a new entry containing an object....
5076a392 2310
a593b319 2311=item Parsing code internal error (%s)
5076a392 2312
a593b319
FC
2313This new fatal error is produced when parsing
2314code supplied by an extension violates the
2315parser's API in a detectable way.
5076a392 2316
a593b319 2317=item refcnt: fd %d%s
5076a392 2318
a593b319
FC
2319This new error only occurs if a internal consistency check fails when a
2320pipe is about to be closed.
5076a392 2321
a593b319 2322=item Regexp modifier "/%c" may not appear twice
5076a392 2323
a593b319
FC
2324The regular expression pattern has one of the
2325mutually exclusive modifiers repeated.
5076a392 2326
a593b319 2327=item Regexp modifiers "/%c" and "/%c" are mutually exclusive
5076a392 2328
a593b319
FC
2329The regular expression pattern has more than one of the mutually
2330exclusive modifiers.
5076a392 2331
a593b319 2332=item Using !~ with %s doesn't make sense
5076a392 2333
a593b319 2334This error occurs when C<!~> is used with C<s///r> or C<y///r>.
5076a392 2335
a593b319 2336=back
5076a392 2337
a593b319 2338=head3 New Warnings
5076a392 2339
a593b319 2340=over
5076a392 2341
a593b319 2342=item "\b{" is deprecated; use "\b\{" instead
5076a392 2343
a593b319 2344=item "\B{" is deprecated; use "\B\{" instead
5076a392 2345
a593b319
FC
2346Use of an unescaped "{" immediately following a C<\b> or C<\B> is now
2347deprecated so as to reserve its use for Perl itself in a future release.
5076a392 2348
a593b319 2349=item Operation "%s" returns its argument for ...
5076a392 2350
a593b319
FC
2351Performing an operation requiring Unicode semantics (such as case-folding)
2352on a Unicode surrogate or a non-Unicode character now triggers a warning:
2353'Operation "%s" returns its argument for ...'.
5076a392 2354
a593b319
FC
2355=item Use of qw(...) as parentheses is deprecated
2356
2357See L</"Use of qw(...) as parentheses">, above, for details.
5076a392
FC
2358
2359=back
2360
2361=head2 Changes to Existing Diagnostics
2362
2363=over 4
2364
2365=item *
2366
4ed2cea4
FC
2367The "Variable $foo is not imported" warning that precedes a
2368C<strict 'vars'> error has now been assigned the "misc" category, so that
2369C<no warnings> will suppress it [perl #73712].
2370
2371=item *
2372
5076a392
FC
2373C<warn> and C<die> now produce 'Wide character' warnings when fed a
2374character outside the byte range if STDERR is a byte-sized handle.
2375
2376=item *
2377
2378The 'Layer does not match this perl' error message has been replaced with
a593b319 2379these more helpful messages [perl #73754]:
5076a392
FC
2380
2381=over 4
2382
2383=item *
2384
2385PerlIO layer function table size (%d) does not match size expected by this
2386perl (%d)
2387
2388=item *
2389
2390PerlIO layer instance size (%d) does not match size expected by this perl
2391(%d)
2392
2393=back
2394
5076a392
FC
2395=item *
2396
2397The "Found = in conditional" warning that is emitted when a constant is
2398assigned to a variable in a condition is now withheld if the constant is
2399actually a subroutine or one generated by C<use constant>, since the value
2400of the constant may not be known at the time the program is written
2401[perl #77762].
2402
2403=item *
2404
2405Previously, if none of the C<gethostbyaddr>, C<gethostbyname> and
2406C<gethostent> functions were implemented on a given platform, they would
2407all die with the message 'Unsupported socket function "gethostent" called',
2408with analogous messages for C<getnet*> and C<getserv*>. This has been
2409corrected.
2410
2411=item *
2412
a593b319
FC
2413The warning message about unrecognized regular expression escapes passed
2414through has been changed to include any literal '{' following the
2415two-character escape. E.g., "\q{" is now emitted instead of "\q".
5076a392
FC
2416
2417=back
2418
2419=head1 Utility Changes
2420
0b88cc74 2421=head3 L<perlbug>
5076a392
FC
2422
2423=over 4
2424
2425=item *
2426
0b88cc74
FC
2427L<perlbug> now looks in the EMAIL environment variable for a return address
2428if the REPLY-TO and REPLYTO variables are empty.
5076a392
FC
2429
2430=item *
2431
0b88cc74
FC
2432L<perlbug> did not previously generate a From: header, potentially
2433resulting in dropped mail. Now it does include that header.
5076a392
FC
2434
2435=item *
2436
0b88cc74 2437The user's address is now used as the return-path.
4ed2cea4 2438
0b88cc74
FC
2439Many systems these days don't have a valid Internet domain name and
2440perlbug@perl.org does not accept email with a return-path that does
2441not resolve. So the user's address is now passed to sendmail so it's
2442less likely to get stuck in a mail queue somewhere [perl #82996].
5076a392 2443
2c389f6c
FC
2444=item *
2445
d430b8e7
FC
2446L<perlbug> now always gives the reporter a chance to change the email
2447address it guesses for them (5.12.2).
2448
2449=item *
2450
2451L<perlbug> should no longer warn about uninitialized values when using the C<-d>
2452and C<-v> options (5.12.2).
2c389f6c 2453
5076a392
FC
2454=back
2455
0b88cc74 2456=head3 L<perl5db.pl>
5076a392 2457
0b88cc74 2458=over
5076a392
FC
2459
2460=item *
2461
0b88cc74
FC
2462The remote terminal works after forking and spawns new sessions - one
2463for each forked process.
5076a392
FC
2464
2465=back
2466
0b88cc74 2467=head3 L<ptargrep>
5076a392
FC
2468
2469=over 4
2470
2471=item *
2472
0b88cc74
FC
2473L<ptargrep> is a new utility to apply pattern matching to the contents of
2474files in a tar archive. It comes with C<Archive::Tar>.
5076a392
FC
2475
2476=back
2477
2478=head1 Configuration and Compilation
2479
61752d82
FC
2480See also L</"Naming fixes in Policy_sh.SH may invalidate Policy.sh">,
2481above.
2482
5076a392
FC
2483=over 4
2484
2485=item *
2486
87595b22
FC
2487CCINCDIR and CCLIBDIR for the mingw64
2488cross-compiler are now correctly under
5076a392
FC
2489$(CCHOME)\mingw\include and \lib rather than immediately below $(CCHOME).
2490
5076a392
FC
2491This means the 'incpath', 'libpth', 'ldflags', 'lddlflags' and
2492'ldflags_nolargefiles' values in Config.pm and Config_heavy.pl are now
87595b22 2493set correctly.
5076a392
FC
2494
2495=item *
2496
87595b22
FC
2497'make test.valgrind' has been adjusted to account for cpan/dist/ext
2498separation.
5076a392
FC
2499
2500=item *
2501
2502On compilers that support it, C<-Wwrite-strings> is now added to cflags by
2503default.
2504
2505=item *
2506
2507The C<Encode> module can now (once again) be included in a static Perl
2508build. The special-case handling for this situation got broken in Perl
25095.11.0, and has now been repaired.
2510
1e463951
FC
2511=item *
2512
2513The previous default size of a PerlIO buffer (4096 bytes) has been increased
2514to the larger of 8192 bytes and your local BUFSIZ. Benchmarks show that doubling
2515this decade-old default increases read and write performance in the neighborhood
2516of 25% to 50% when using the default layers of perlio on top of unix. To choose
2517a non-default size, such as to get back the old value or to obtain an even
2518larger value, configure with:
2519
2520 ./Configure -Accflags=-DPERLIOBUF_DEFAULT_BUFSIZ=N
2521
2522where N is the desired size in bytes; it should probably be a multiple of
2523your page size.
2524
d430b8e7
FC
2525=item *
2526
2527An "incompatible operand types" error in ternary expressions when building
2528with C<clang> has been fixed (5.12.2).
2529
2530=item *
2531
2532Perl now skips setuid C<File::Copy> tests on partitions it detects to be mounted
2533as C<nosuid> (5.12.2).
2534
5076a392
FC
2535=back
2536
5076a392
FC
2537=head1 Platform Support
2538
5076a392
FC
2539=head2 New Platforms
2540
5076a392
FC
2541=over 4
2542
2543=item AIX
2544
cdc10f43 2545Perl now builds on AIX 4.2 (5.12.1).
5076a392
FC
2546
2547=back
2548
2549=head2 Discontinued Platforms
2550
2551=over 4
2552
5076a392
FC
2553=item Apollo DomainOS
2554
2555The last vestiges of support for this platform have been excised from the
2556Perl distribution. It was officially discontinued in version 5.12.0. It had
2557not worked for years before that.
2558
2559=item MacOS Classic
2560
2561The last vestiges of support for this platform have been excised from the
2562Perl distribution. It was officially discontinued in an earlier version.
2563
2564=back
2565
2566=head2 Platform-Specific Notes
2567
d430b8e7
FC
2568=head3 AIX
2569
2570=over
2571
2572=item *
2573
2574F<README.aix> has been updated with information about the XL C/C++ V11 compiler
2575suite (5.12.2).
2576
2577=back
2578
2579=head3 ARM
2580
2581=over
2582
2583=item *
2584
2585The C<d_u32align> configuration probe on ARM has been fixed (5.12.2).
2586
2587=back
2588
554003a2 2589=head3 Cygwin
5076a392
FC
2590
2591=over 4
2592
2593=item *
2594
554003a2 2595MakeMaker has been updated to build man pages on cygwin.
5076a392
FC
2596
2597=item *
2598
554003a2
FC
2599Improved rebase behaviour
2600
2601If a dll is updated on cygwin the old imagebase address is reused.
2602This solves most rebase errors, especially when updating on core dll's.
2603See L<http://www.tishler.net/jason/software/rebase/rebase-2.4.2.README> for more information.
5076a392
FC
2604
2605=item *
2606
554003a2 2607Support for the standard cygwin dll prefix, which is e.g. needed for FFI's
5076a392
FC
2608
2609=item *
2610
554003a2 2611Updated build hints file
5076a392
FC
2612
2613=back
2614
cdc10f43
FC
2615=head3 FreeBSD 7
2616
2617=over
2618
2619=item *
2620
2621FreeBSD 7 no longer contains F</usr/bin/objformat>. At build time,
2622Perl now skips the F<objformat> check for versions 7 and higher and
2623assumes ELF (5.12.1).
2624
2625=back
2626
2627=head3 HP-UX
2628
2629=over
2630
2631=item *
2632
2633Perl now allows -Duse64bitint without promoting to use64bitall on HP-UX
2634(5.12.1).
2635
2636=back
2637
554003a2 2638=head3 IRIX
5076a392
FC
2639
2640Conversion of strings to floating-point numbers is now more accurate on
2641IRIX systems [perl #32380].
2642
554003a2 2643=head3 Mac OS X
5076a392
FC
2644
2645Early versions of Mac OS X (Darwin) had buggy implementations of the
2646C<setregid>, C<setreuid>, C<setrgid> and C<setruid> functions, so perl
2647would pretend they did not exist.
2648
2649These functions are now recognised on Mac OS 10.5 (Leopard; Darwin 9) and
2650higher, as they have been fixed [perl #72990].
2651
554003a2 2652=head3 MirBSD
5076a392 2653
554003a2
FC
2654Previously if you built perl with a shared libperl.so on MirBSD (the
2655default config), it would work up to the installation; however, once
2656installed, it would be unable to find libperl. So path handling is now
2657treated as in the other BSD dialects.
5076a392 2658
554003a2 2659=head3 NetBSD
5076a392 2660
554003a2
FC
2661The NetBSD hints file has been changed to make the system's malloc the
2662default.
5076a392 2663
554003a2 2664=head3 Recent OpenBSDs now use perl's malloc
5076a392 2665
554003a2
FC
2666OpenBSD E<gt> 3.7 has a new malloc implementation which is mmap-based
2667and as such can release memory back to the OS; however, perl's use of
2668this malloc causes a substantial slowdown so we now default to using
2669perl's malloc instead [perl #75742].
5076a392 2670
554003a2 2671=head3 OpenVOS
5076a392 2672
554003a2 2673perl now builds again with OpenVOS (formerly known as Stratus VOS)
5a553547 2674[perl #78132] (5.12.3).
5076a392 2675
554003a2 2676=head3 Solaris
5076a392 2677
554003a2 2678DTrace is now supported on Solaris. There used to be build failures, but
5a553547 2679these have been fixed [perl #73630] (5.12.3).
5076a392 2680
554003a2 2681=head3 VMS
5076a392
FC
2682
2683=over
2684
2685=item *
2686
cdc10f43
FC
2687It's now possible to build extensions on older (pre 7.3-2) VMS systems.
2688
2689DCL symbol length was limited to 1K up until about seven years or
2690so ago, but there was no particularly deep reason to prevent those
2691older systems from configuring and building Perl (5.12.1).
2692
2693=item *
2694
2695We fixed the previously-broken C<-Uuseperlio> build on VMS.
2696
2697We were checking a variable that doesn't exist in the non-default
2698case of disabling perlio. Now we only look at it when it exists (5.12.1).
2699
2700=item *
2701
2702We fixed the -Uuseperlio command-line option in configure.com.
2703
2704Formerly it only worked if you went through all the questions
2705interactively and explicitly answered no (5.12.1).
2706
2707=item *
2708
554003a2 2709C<PerlIOUnix_open> now honours the default permissions on VMS.
5076a392 2710
554003a2
FC
2711When C<perlio> became the default and C<unixio> became the default bottom layer,
2712the most common path for creating files from Perl became C<PerlIOUnix_open>,
2713which has always explicitly used C<0666> as the permission mask.
5076a392 2714
554003a2
FC
2715To avoid this, C<0777> is now passed as the permissions to C<open()>. In the
2716VMS CRTL, C<0777> has a special meaning over and above intersecting with the
2717current umask; specifically, it allows Unix syscalls to preserve native default
5a553547
FC
2718permissions (5.12.3).
2719
2720=item *
2721
2722Spurious record boundaries are no longer
2723introduced by the PerlIO layer during output (5.12.3).
5076a392
FC
2724
2725=item *
2726
554003a2
FC
2727The shortening of symbols longer than 31 characters in the C sources is
2728now done by the compiler rather than by xsubpp (which could only do so
2729for generated symbols in XS code).
5076a392
FC
2730
2731=item *
2732
554003a2
FC
2733Record-oriented files (record format variable or variable with fixed control)
2734opened for write by the perlio layer will now be line-buffered to prevent the
2735introduction of spurious line breaks whenever the perlio buffer fills up.
5076a392 2736
d430b8e7
FC
2737=item *
2738
2739F<git_version.h> is now installed on VMS. This was an oversight in v5.12.0 which
2740caused some extensions to fail to build (5.12.2).
2741
2742=item *
2743
2744Several memory leaks in L<stat()|perlfunc/"stat FILEHANDLE"> have been fixed (5.12.2).
2745
2746=item *
2747
2748A memory leak in C<Perl_rename()> due to a double allocation has been
2749fixed (5.12.2).
2750
2751=item *
2752
2753A memory leak in C<vms_fid_to_name()> (used by C<realpath()> and
2754C<realname()>) has been fixed (5.12.2).
2755
5076a392
FC
2756=back
2757
554003a2 2758=head3 Windows
5076a392 2759
5a1f7719
FC
2760See also L</"fork() emulation will not wait for signalled children"> and
2761L</"Perl source code is read in text mode on Windows">, above.
2762
5076a392
FC
2763=over 4
2764
2765=item *
2766
554003a2 2767Fixed build process for SDK2003SP1 compilers.
5076a392 2768
554003a2 2769=item *
5076a392 2770
01b1a9e4
FC
2771Compilation with Visual Studio 2010 is now supported.
2772
2773=item *
2774
554003a2
FC
2775When using old 32-bit compilers, the define C<_USE_32BIT_TIME_T> will now
2776be set in C<$Config{ccflags}>. This improves portability when compiling
2777XS extensions using new compilers, but for a perl compiled with old 32-bit
2778compilers.
5076a392
FC
2779
2780=item *
2781
554003a2
FC
2782C<$Config{gccversion}> is now set correctly when perl is built using the
2783mingw64 compiler from L<http://mingw64.org> [perl #73754].
5076a392 2784
554003a2
FC
2785=item *
2786
d430b8e7
FC
2787When building Perl with the mingw64 x64 cross-compiler C<incpath>,
2788C<libpth>, C<ldflags>, C<lddlflags> and C<ldflags_nolargefiles> values
2789in F<Config.pm> and F<Config_heavy.pl> were not previously being set
2790correctly because, with that compiler, the include and lib directories
2791are not immediately below C<$(CCHOME)> (5.12.2).
2792
2793=item *
2794
554003a2
FC
2795The build process proceeds more smoothly with mingw and dmake when
2796F<C:\MSYS\bin> is in the PATH, due to a C<Cwd> fix.
5076a392
FC
2797
2798=item *
2799
554003a2
FC
2800Support for building with Visual C++ 2010 is now underway, but is not yet
2801complete. See F<README.win32> or L<perlwin32> for more details.
5076a392 2802
554003a2
FC
2803=item *
2804
2805The option to use an externally-supplied C<crypt()>, or to build with no
2806C<crypt()> at all, has been removed. Perl supplies its own C<crypt()>
2807implementation for Windows, and the political situation that required
2808this part of the distribution to sometimes be omitted is long gone.
5076a392
FC
2809
2810=back
2811
2812=head1 Internal Changes
2813
1e463951 2814=head2 New APIs
5076a392 2815
1e463951 2816=head3 CLONE_PARAMS structure added to ease correct thread creation
5076a392 2817
1e463951
FC
2818Modules that create threads should now create C<CLONE_PARAMS> structures
2819by calling the new function C<Perl_clone_params_new()>, and free them with
2820C<Perl_clone_params_del()>. This will ensure compatibility with any future
2821changes to the internals of the C<CLONE_PARAMS> structure layout, and that
2822it is correctly allocated and initialised.
5076a392 2823
1e463951 2824=head3 New parsing functions
5076a392 2825
1e463951
FC
2826Several functions have been added for parsing statements or multiple
2827statements:
5076a392 2828
1e463951 2829=over
5076a392
FC
2830
2831=item *
2832
1e463951 2833C<parse_fullstmt> parses a complete Perl statement.
5076a392
FC
2834
2835=item *
2836
1e463951
FC
2837C<parse_stmtseq> parses a sequence of statements, up
2838to closing brace or EOF.
5076a392
FC
2839
2840=item *
2841
1e463951 2842C<parse_block> parses a block [perl #78222].
5076a392
FC
2843
2844=item *
2845
1e463951
FC
2846C<parse_barestmt> parses a statement
2847without a label.
5076a392
FC
2848
2849=item *
2850
1e463951 2851C<parse_label> parses a statement label, separate from statements.
5076a392 2852
1e463951 2853=back
5076a392 2854
1e463951
FC
2855The
2856L<C<parse_fullexpr()>|perlapi/parse_fullexpr>,
2857L<C<parse_listexpr()>|perlapi/parse_listexpr>,
2858L<C<parse_termexpr()>|perlapi/parse_termexpr>, and
2859L<C<parse_arithexpr()>|perlapi/parse_arithexpr>
2860functions have been added to the API. They perform
2861recursive-descent parsing of expressions at various precedence levels.
2862They are expected to be used by syntax plugins.
5076a392 2863
1e463951 2864See L<perlapi> for details.
5076a392 2865
1e463951 2866=head3 Hints hash API
5076a392 2867
1e463951
FC
2868A new C API for introspecting the hinthash C<%^H> at runtime has been
2869added. See C<cop_hints_2hv>, C<cop_hints_fetchpvn>, C<cop_hints_fetchpvs>,
2870C<cop_hints_fetchsv>, and C<hv_copy_hints_hv> in L<perlapi> for details.
5076a392 2871
1e463951
FC
2872A new, experimental API has been added for accessing the internal
2873structure that Perl uses for C<%^H>. See the functions beginning with
2874C<cophh_> in L<perlapi>.
5076a392 2875
1e463951 2876=head3 C interface to C<caller()>
5076a392 2877
1e463951
FC
2878The C<caller_cx> function has been added as an XSUB-writer's equivalent of
2879C<caller()>. See L<perlapi> for details.
5076a392 2880
1e463951 2881=head3 Custom per-subroutine check hooks
5076a392 2882
1e463951
FC
2883XS code in an extension module can now annotate a subroutine (whether
2884implemented in XS or in Perl) so that nominated XS code will be called
2885at compile time (specifically as part of op checking) to change the op
2886tree of that subroutine. The compile-time check function (supplied by
2887the extension module) can implement argument processing that can't be
2888expressed as a prototype, generate customised compile-time warnings,
2889perform constant folding for a pure function, inline a subroutine
2890consisting of sufficiently simple ops, replace the whole call with a
2891custom op, and so on. This was previously all possible by hooking the
2892C<entersub> op checker, but the new mechanism makes it easy to tie the
2893hook to a specific subroutine. See L<perlapi/cv_set_call_checker>.
5076a392 2894
1e463951
FC
2895To help in writing custom check hooks, several subtasks within standard
2896C<entersub> op checking have been separated out and exposed in the API.
5076a392 2897
1e463951 2898=head3 Improved support for custom OPs
5076a392 2899
1e463951
FC
2900Custom ops can now be registered with the new C<custom_op_register> C
2901function and the C<XOP> structure. This will make it easier to add new
2902properties of custom ops in the future. Two new properties have been added
2903already, C<xop_class> and C<xop_peep>.
5076a392 2904
1e463951
FC
2905C<xop_class> is one of the OA_*OP constants, and allows L<B> and other
2906introspection mechanisms to work with custom ops
2907that aren't BASEOPs. C<xop_peep> is a pointer to
2908a function that will be called for ops of this
2909type from C<Perl_rpeep>.
5076a392 2910
1e463951
FC
2911See L<perlguts/Custom Operators> and L<perlapi/Custom Operators> for more
2912detail.
5076a392 2913
1e463951
FC
2914The old C<PL_custom_op_names>/C<PL_custom_op_descs> interface is still
2915supported but discouraged.
5076a392 2916
1e463951 2917=head3 Scope hooks
5076a392 2918
1e463951
FC
2919It is now possible for XS code to hook into Perl's lexical scope
2920mechanism at compile time, using the new C<Perl_blockhook_register>
2921function. See L<perlguts/"Compile-time scope hooks">.
5076a392 2922
1e463951 2923=head3 The recursive part of the peephole optimizer is now hookable
5076a392
FC
2924
2925In addition to C<PL_peepp>, for hooking into the toplevel peephole optimizer, a
2926C<PL_rpeepp> is now available to hook into the optimizer recursing into
2927side-chains of the optree.
2928
1e463951 2929=head3 New non-magical variants of existing functions
5076a392 2930
1e463951
FC
2931The following functions/macros have been added to the API. The C<*_nomg>
2932macros are equivalent to their non-_nomg variants, except that they ignore
2933get-magic. Those ending in C<_flags> allow one to specify whether
2934get-magic is processed.
5076a392 2935
1e463951
FC
2936 sv_2bool_flags
2937 SvTRUE_nomg
2938 sv_2nv_flags
2939 SvNV_nomg
2940 sv_cmp_flags
2941 sv_cmp_locale_flags
2942 sv_eq_flags
2943 sv_collxfrm_flags
5076a392 2944
1e463951 2945In some of these cases, the non-_flags functions have
5076a392
FC
2946been replaced with wrappers around the new functions.
2947
1e463951 2948=head3 pv/pvs/sv versions of existing functions
5076a392 2949
1e463951 2950Many functions ending with pvn now have equivalent pv/pvs/sv versions.
5076a392 2951
1e463951 2952=head3 List op-building functions
5076a392 2953
1e463951
FC
2954List op-building functions have been added to the
2955API. See L<op_append_elem|perlapi/op_append_elem>,
2956L<op_append_list|perlapi/op_append_list>, and
2957L<op_prepend_elem|perlapi/op_prepend_elem> in L<perlapi>.
5076a392 2958
1e463951 2959=head3 C<LINKLIST>
5076a392 2960
1e463951
FC
2961The L<LINKLIST|perlapi/LINKLIST> macro, part of op building that
2962constructs the execution-order op chain, has been added to the API.
5076a392 2963
1e463951 2964=head3 Localisation functions
5076a392 2965
1e463951
FC
2966The C<save_freeop>, C<save_op>, C<save_pushi32ptr> and C<save_pushptrptr>
2967functions have been added to the API.
5076a392 2968
1e463951 2969=head3 Stash names
5076a392 2970
1e463951
FC
2971A stash can now have a list of effective names in addition to its usual
2972name. The first effective name can be accessed via the C<HvENAME> macro,
2973which is now the recommended name to use in MRO linearisations (C<HvNAME>
2974being a fallback if there is no C<HvENAME>).
5076a392 2975
1e463951
FC
2976These names are added and deleted via C<hv_ename_add> and
2977C<hv_ename_delete>. These two functions are I<not> part of the API.
5076a392 2978
1e463951 2979=head3 New functions for finding and removing magic
5076a392 2980
1e463951
FC
2981The L<C<mg_findext()>|perlapi/mg_findext> and
2982L<C<sv_unmagicext()>|perlapi/sv_unmagicext>
2983functions have been added to the API.
2984They allow extension authors to find and remove magic attached to
2985scalars based on both the magic type and the magic virtual table, similar to how
2986C<sv_magicext()> attaches magic of a certain type and with a given virtual table
2987to a scalar. This eliminates the need for extensions to walk the list of
2988C<MAGIC> pointers of an C<SV> to find the magic that belongs to them.
5076a392 2989
1e463951 2990=head3 C<find_rundefsv>
5076a392 2991
1e463951
FC
2992This function returns the SV representing C<$_>, whether it's lexical
2993or dynamic.
5076a392 2994
1e463951 2995=head3 C<Perl_croak_no_modify>
5076a392 2996
1e463951
FC
2997C<Perl_croak_no_modify()> is short-hand for
2998C<Perl_croak("%s", PL_no_modify)>.
5076a392 2999
1e463951 3000=head3 C<PERL_STATIC_INLINE> define
5076a392 3001
1e463951
FC
3002The C<PERL_STATIC_INLINE> define has been added to provide the best-guess
3003incantation to use for static inline functions, if the C compiler supports
3004C99-style static inline. If it doesn't, it'll give a plain C<static>.
5076a392 3005
1e463951
FC
3006C<HAS_STATIC_INLINE> can be used to check if the compiler actually supports
3007inline functions.
5076a392 3008
1e463951 3009=head3 New C<pv_escape> option for hexadecimal escapes
5076a392 3010
1e463951
FC
3011A new option, C<PERL_PV_ESCAPE_NONASCII>, has been added to C<pv_escape> to
3012dump all characters above ASCII in hexadecimal. Before, one could get all
3013characters as hexadecimal or the Latin1 non-ASCII as octal.
5076a392 3014
1e463951 3015=head3 C<lex_start>
5076a392 3016
1e463951 3017C<lex_start> has been added to the API, but is considered experimental.
5076a392 3018
1e463951 3019=head3 C<op_scope()> and C<op_lvalue()>
5076a392 3020
1e463951
FC
3021The C<op_scope()> and C<op_lvalue()> functions have been added to the API,
3022but are considered experimental.
5076a392 3023
1e463951 3024=head2 C API Changes
5076a392 3025
1e463951 3026=head3 C<PERL_POLLUTE> has been removed
5076a392 3027
1e463951
FC
3028The option to define C<PERL_POLLUTE> to expose older 5.005 symbols for
3029backwards compatibility has been removed. It's use was always discouraged,
3030and MakeMaker contains a more specific escape hatch:
5076a392 3031
1e463951 3032 perl Makefile.PL POLLUTE=1
5076a392 3033
1e463951
FC
3034This can be used for modules that have not been upgraded to 5.6 naming
3035conventions (and really should be completely obsolete by now).
5076a392 3036
1e463951 3037=head3 Check API compatibility when loading XS modules
5076a392 3038
1e463951
FC
3039When perl's API changes in incompatible ways (which usually happens between
3040major releases), XS modules compiled for previous versions of perl will not
3041work anymore. They will need to be recompiled against the new perl.
5076a392 3042
1e463951
FC
3043In order to ensure that modules are recompiled, and to prevent users from
3044accidentally loading modules compiled for old perls into newer ones, the
3045C<XS_APIVERSION_BOOTCHECK> macro has been added. That macro, which is
3046called when loading every newly compiled extension, compares the API
3047version of the running perl with the version a module has been compiled for
3048and raises an exception if they don't match.
5076a392 3049
1e463951 3050=head3 Perl_fetch_cop_label
5076a392 3051
1e463951
FC
3052The first argument of the C API function C<Perl_fetch_cop_label> has changed
3053from C<struct refcounted he *> to C<COP *>, to insulate the user from
3054implementation details.
5076a392 3055
1e463951
FC
3056This API function was marked as "may change", and likely isn't in use outside
3057the core. (Neither an unpacked CPAN, nor Google's codesearch, finds any other
3058references to it.)
5076a392 3059
1e463951 3060=head3 GvCV() and GvGP() are no longer lvalues
5076a392 3061
1e463951
FC
3062The new GvCV_set() and GvGP_set() macros are now provided to replace
3063assignment to those two macros.
5076a392 3064
1e463951
FC
3065This allows a future commit to eliminate some backref magic between GV
3066and CVs, which will require complete control over assignment to the
3067gp_cv slot.
5076a392 3068
1e463951 3069=head3 CvGV() is no longer an lvalue
5076a392 3070
1e463951
FC
3071Under some circumstances, the C<CvGV()> field of a CV is now
3072reference-counted. To ensure consistent behaviour, direct assignment to
3073it, for example C<CvGV(cv) = gv> is now a compile-time error. A new macro,
3074C<CvGV_set(cv,gv)> has been introduced to perform this operation
3075safely. Note that modification of this field is not part of the public
3076API, regardless of this new macro (and despite its being listed in this section).
5076a392 3077
1e463951 3078=head3 CvSTASH() is no longer an lvalue
5076a392 3079
1e463951
FC
3080The C<CvSTASH()> macro can now only be used as an rvalue. C<CvSTASH_set()>
3081has been added to replace assignment to C<CvSTASH()>. This is to ensure
3082that backreferences are handled properly. These macros are not part of the
3083API.
5076a392 3084
1e463951 3085=head3 Calling conventions for C<newFOROP> and C<newWHILEOP>
5076a392 3086
1e463951
FC
3087The way the parser handles labels has been cleaned up and refactored. As a
3088result, the C<newFOROP()> constructor function no longer takes a parameter
3089stating what label is to go in the state op.
5076a392 3090
1e463951
FC
3091The C<newWHILEOP()> and C<newFOROP()> functions no longer accept a line
3092number as a parameter.
5076a392 3093
1e463951 3094=head3 Flags passed to C<uvuni_to_utf8_flags> and C<utf8n_to_uvuni>
5076a392 3095
1e463951
FC
3096Some of the flags parameters to uvuni_to_utf8_flags() and
3097utf8n_to_uvuni() have changed. This is a result of Perl's now allowing
5076a392
FC
3098internal storage and manipulation of code points that are problematic
3099in some situations. Hence, the default actions for these functions has
3100been complemented to allow these code points. The new flags are
3101documented in L<perlapi>. Code that requires the problematic code
483b16f3 3102points to be rejected needs to change to use the new flags. Some flag
5076a392
FC
3103names are retained for backward source compatibility, though they do
3104nothing, as they are now the default. However the flags
3105C<UNICODE_ALLOW_FDD0>, C<UNICODE_ALLOW_FFFF>, C<UNICODE_ILLEGAL>, and
3106C<UNICODE_IS_ILLEGAL> have been removed, as they stem from a
3107fundamentally broken model of how the Unicode non-character code points
3108should be handled, which is now described in
3109L<perlunicode/Non-character code points>. See also L</Selected Bug Fixes>.
3110
1e463951 3111XXX Which bugs in particular? Selected Bug Fixes is too long for this link
483b16f3
KW
3112to be meaningful right now
3113I don't see the bugs in that section currently -- khw
5076a392 3114
1e463951 3115=head2 Deprecated C APIs
5076a392 3116
1e463951 3117=over
5076a392 3118
1e463951 3119=item C<Perl_ptr_table_clear>
5076a392 3120
1e463951
FC
3121C<Perl_ptr_table_clear> is no longer part of Perl's public API. Calling it
3122now generates a deprecation warning, and it will be removed in a future
3123release.
5076a392 3124
1e463951 3125=item C<sv_compile_2op>
5076a392 3126
1e463951
FC
3127The C<sv_compile_2op()> API function is now deprecated. Searches suggest
3128that nothing on CPAN is using it, so this should have zero impact.
5076a392 3129
1e463951
FC
3130It attempted to provide an API to compile code down to an optree, but failed
3131to bind correctly to lexicals in the enclosing scope. It's not possible to
3132fix this problem within the constraints of its parameters and return value.
5076a392 3133
1e463951 3134=item C<find_rundefsvoffset>
5076a392 3135
1e463951
FC
3136The C<find_rundefsvoffset> function has been deprecated. It appeared that
3137its design was insufficient for reliably getting the lexical C<$_> at
3138run-time.
5076a392 3139
1e463951
FC
3140Use the new C<find_rundefsv> function or the C<UNDERBAR> macro
3141instead. They directly return the right SV representing C<$_>, whether it's
3142lexical or dynamic.
5076a392 3143
1e463951 3144=item C<CALL_FPTR> and C<CPERLscope>
5076a392 3145
1e463951
FC
3146Those are left from an old implementation of C<MULTIPLICITY> using C++ objects,
3147which was removed in Perl 5.8. Nowadays these macros do exactly nothing, so
3148they shouldn't be used anymore.
5076a392 3149
1e463951
FC
3150For compatibility, they are still defined for external C<XS> code. Only
3151extensions defining C<PERL_CORE> must be updated now.
5076a392 3152
1e463951 3153=back
5076a392 3154
1e463951 3155=head2 Other Internal Changes
5076a392 3156
1e463951 3157=head3 Stack unwinding
5076a392 3158
1e463951
FC
3159The protocol for unwinding the C stack at the last stage of a C<die>
3160has changed how it identifies the target stack frame. This now uses
3161a separate variable C<PL_restartjmpenv>, where previously it relied on
3162the C<blk_eval.cur_top_env> pointer in the C<eval> context frame that
3163has nominally just been discarded. This change means that code running
3164during various stages of Perl-level unwinding no longer needs to take
3165care to avoid destroying the ghost frame.
5076a392 3166
1e463951 3167=head3 Scope stack entries
5076a392 3168
1e463951
FC
3169The format of entries on the scope stack has been changed, resulting in a
3170reduction of memory usage of about 10%. In particular, the memory used by
3171the scope stack to record each active lexical variable has been halved.
5076a392 3172
1e463951 3173=head3 Memory allocation for pointer tables
5076a392 3174
1e463951
FC
3175Memory allocation for pointer tables has been changed. Previously
3176C<Perl_ptr_table_store> allocated memory from the same arena system as
3177C<SV> bodies and C<HE>s, with freed memory remaining bound to those arenas
3178until interpreter exit. Now it allocates memory from arenas private to the
3179specific pointer table, and that memory is returned to the system when
3180C<Perl_ptr_table_free> is called. Additionally, allocation and release are
3181both less CPU intensive.
5076a392 3182
1e463951 3183=head3 C<UNDERBAR>
5076a392 3184
1e463951
FC
3185The C<UNDERBAR> macro now calls C<find_rundefsv>. C<dUNDERBAR> is now a
3186noop but should still be used to ensure past and future compatibility.
5076a392 3187
1e463951 3188=head3 String comparison routines renamed
5076a392 3189
1e463951
FC
3190The ibcmp_* functions have been renamed and are now called foldEQ,
3191foldEQ_locale and foldEQ_utf8. The old names are still available as
3192macros.
3193
3194=head3 C<chop> and C<chomp> implementations merged
3195
3196The opcode bodies for C<chop> and C<chomp> and for C<schop> and C<schomp>
3197have been merged. The implementation functions C<Perl_do_chop()> and
3198C<Perl_do_chomp()>, never part of the public API, have been merged and
3199moved to a static function in F<pp.c>. This shrinks the perl binary
3200slightly, and should not affect any code outside the core (unless it is
3201relying on the order of side effects when C<chomp> is passed a I<list> of
3202values).
5076a392
FC
3203
3204=head1 Selected Bug Fixes
3205
e8e35311
FC
3206=head2 I/O
3207
5076a392
FC
3208=over 4
3209
3210=item *
3211
e8e35311 3212Perl no longer produces this warning:
a593b319
FC
3213
3214 $ perl -we 'open my $f, ">", \my $x; binmode $f, "scalar"'
3215 Use of uninitialized value in binmode at -e line 1.
3216
3217=item *
3218
e8e35311
FC
3219Opening a glob reference via C<< open $fh, "E<gt>", \*glob >> will no longer
3220cause the glob to be corrupted when the filehandle is printed to. This would
3221cause perl to crash whenever the glob's contents were accessed
3222[perl #77492].
4ed2cea4
FC
3223
3224=item *
3225
e8e35311
FC
3226PerlIO no longer crashes when called recursively, e.g., from a signal
3227handler. Now it just leaks memory [perl #75556].
4ed2cea4
FC
3228
3229=item *
3230
e8e35311
FC
3231Most I/O functions were not warning for unopened handles unless the
3232'closed' and 'unopened' warnings categories were both enabled. Now only
3233C<use warnings 'unopened'> is necessary to trigger these warnings (as was
438c239f 3234always meant to be the case).
4ed2cea4
FC
3235
3236=item *
3237
438c239f 3238There have been several fixes to PerlIO layers:
e8e35311 3239
438c239f
FC
3240When C<binmode FH, ":crlf"> pushes the C<:crlf> layer on top of the stack,
3241it no longer enables crlf layers lower in the stack, to avoid unexpected
3242results [perl #38456].
4ed2cea4 3243
438c239f
FC
3244Opening a file in C<:raw> mode now does what it advertises to do (first
3245open the file, then binmode it), instead of simply leaving off the top
3246layer [perl #80764].
5076a392 3247
438c239f
FC
3248The three layers C<:pop>, C<:utf8> and C<:bytes> didn't allow stacking when
3249opening a file. For example
e8e35311 3250this:
5076a392 3251
e8e35311 3252 open FH, '>:pop:perlio', 'some.file' or die $!;
5076a392 3253
438c239f
FC
3254Would throw an error: "Invalid argument". This has been fixed in this
3255release [perl #82484].
5076a392 3256
e8e35311
FC
3257=back
3258
3259=head2 Regular Expression Bug Fixes
3260
3261=over
5076a392
FC
3262
3263=item *
3264
e8e35311
FC
3265The regular expression engine no longer loops when matching
3266C<"\N{LATIN SMALL LIGATURE FF}" =~ /f+/i> and similar expressions
cdc10f43 3267[perl #72998] (5.12.1).
5076a392
FC
3268
3269=item *
3270
e8e35311
FC
3271The trie runtime code should no longer allocate massive amounts of memory,
3272fixing #74484.
5076a392
FC
3273
3274=item *
3275
438c239f
FC
3276Syntax errors in C<< (?{...}) >> blocks no longer cause panic messages
3277[perl #2353].
5076a392
FC
3278
3279=item *
3280
438c239f
FC
3281A pattern like C<(?:(o){2})?> no longer causes a "panic" error
3282[perl #39233].
5076a392
FC
3283
3284=item *
3285
438c239f 3286A fatal error in regular expressions containing C<(.*?)> when processing
d430b8e7 3287UTF-8 data has been fixed [perl #75680] (5.12.2).
5076a392
FC
3288
3289=item *
3290
e8e35311 3291An erroneous regular expression engine optimisation that caused regex verbs like
438c239f 3292C<*COMMIT> sometimes to be ignored has been removed.
5076a392
FC
3293
3294=item *
3295
e8e35311
FC
3296The regular expression bracketed character class C<[\8\9]> was effectively the
3297same as C<[89\000]>, incorrectly matching a NULL character. It also gave
3298incorrect warnings that the C<8> and C<9> were ignored. Now C<[\8\9]> is the
3299same as C<[89]> and gives legitimate warnings that C<\8> and C<\9> are
3300unrecognized escape sequences, passed-through.
5076a392
FC
3301
3302=item *
3303
e8e35311
FC
3304A regular expression match in the right-hand side of a global substitution
3305(C<s///g>) that is in the same scope will no longer cause match variables
3306to have the wrong values on subsequent iterations. This can happen when an
3307array or hash subscript is interpolated in the right-hand side, as in
3308C<s|(.)|@a{ print($1), /./ }|g> [perl #19078].
5076a392
FC
3309
3310=item *
3311
438c239f
FC
3312Several cases in which characters in the Latin-1 non-ASCII range (0x80 to
33130xFF) used not to match themselves or used to match both a character class
3314and its complement have been fixed. For instance, U+00E2 could match both
3315C<\w> and C<\W> [perl #78464] [perl #18281] [perl #60156].
5076a392
FC
3316
3317=item *
3318
e8e35311
FC
3319Matching a Unicode character against an alternation containing characters
3320that happened to match continuation bytes in the former's UTF8
3321representation (C<qq{\x{30ab}} =~ /\xab|\xa9/>) would cause erroneous
3322warnings [perl #70998].
5076a392
FC
3323
3324=item *
3325
e8e35311
FC
3326The trie optimisation was not taking empty groups into account, preventing
3327'foo' from matching C</\A(?:(?:)foo|bar|zot)\z/> [perl #78356].
5076a392
FC
3328
3329=item *
3330
e8e35311
FC
3331A pattern containing a C<+> inside a lookahead would sometimes cause an
3332incorrect match failure in a global match (e.g., C</(?=(\S+))/g>)
3333[perl #68564].
5076a392
FC
3334
3335=item *
3336
e8e35311
FC
3337A regular expression optimisation would sometimes cause a match with a
3338C<{n,m}> quantifier to fail when it should match [perl #79152].
5076a392
FC
3339
3340=item *
3341
e8e35311 3342Case insensitive matching in regular expressions compiled under C<use
438c239f
FC
3343locale> now works much more sanely when the pattern or
3344target string is encoded internally in
3345UTF8. Previously, under these conditions the localeness
e8e35311
FC
3346was completely lost. Now, code points above 255 are treated as Unicode,
3347but code points between 0 and 255 are treated using the current locale
438c239f
FC
3348rules, regardless of whether the pattern or the string is encoded in UTF8.
3349The few case-insensitive matches that cross the 255/256 boundary are not
e8e35311
FC
3350allowed. For example, 0xFF does not caselessly match the character at
33510x178, LATIN CAPITAL LETTER Y WITH DIAERESIS, because 0xFF may not be
3352LATIN SMALL LETTER Y in the current locale, and Perl has no way of
3353knowing if that character even exists in the locale, much less what code
3354point it is.
5076a392
FC
3355
3356=item *
3357
e8e35311
FC
3358The C<(?|...)> regular expression construct no longer crashes if the final
3359branch has more sets of capturing parentheses than any other branch. This
3360was fixed in Perl 5.10.1 for the case of a single branch, but that fix did
3361not take multiple branches into account [perl #84746].
5076a392
FC
3362
3363=item *
3364
e8e35311
FC
3365A bug has been fixed in the implementation of C<{...}> quantifiers in
3366regular expressions that prevented the code block in
3367C</((\w+)(?{ print $2 })){2}/> from seeing the C<$2> sometimes
3368[perl #84294].
5076a392 3369
e8e35311 3370=back
5076a392 3371
e8e35311
FC
3372=head2 Syntax/Parsing Bugs
3373
3374=over
5076a392
FC
3375
3376=item *
3377
e8e35311 3378C<when(scalar){...}> no longer crashes, but produces a syntax error
cdc10f43 3379[perl #74114] (5.12.1).
5076a392
FC
3380
3381=item *
3382
e8e35311
FC
3383A label right before a string eval (C<foo: eval $string>) no longer causes
3384the label to be associated also with the first statement inside the eval
3385[perl #74290] (5.12.1).
5076a392
FC
3386
3387=item *
3388
b2c076b5 3389The C<no 5.13.2;> form of C<no> no longer tries to turn on features or
d430b8e7 3390pragmata (i.e., strict) [perl #70075] (5.12.2).
5076a392
FC
3391
3392=item *
3393
b2c076b5
FC
3394C<BEGIN {require 5.12.0}> now behaves as documented, rather than behaving
3395identically to C<use 5.12.0;>. Previously, C<require> in a C<BEGIN> block
3396was erroneously executing the C<use feature ':5.12.0'> and
3397C<use strict;> behaviour, which only C<use> was documented to
3398provide [perl #69050].
5076a392
FC
3399
3400=item *
3401
5076a392
FC
3402A regression introduced in Perl 5.12.0, making
3403C<< my $x = 3; $x = length(undef) >> result in C<$x> set to C<3> has been
d430b8e7 3404fixed. C<$x> will now be C<undef> [perl #85508] (5.12.2).
b2c076b5
FC
3405
3406=item *
3407
3408When strict 'refs' mode is off, C<%{...}> in rvalue context returns
3409C<undef> if its argument is undefined. An optimisation introduced in perl
34105.12.0 to make C<keys %{...}> faster when used as a boolean did not take
3411this into account, causing C<keys %{+undef}> (and C<keys %$foo> when
3412C<$foo> is undefined) to be an error, which it should only be in strict
3413mode [perl #81750].
5076a392
FC
3414
3415=item *
3416
e8e35311 3417Constant-folding used to cause
5076a392 3418
e8e35311 3419 $text =~ ( 1 ? /phoo/ : /bear/)
5076a392 3420
e8e35311
FC
3421to turn into
3422
3423 $text =~ /phoo/
3424
3425at compile time. Now it correctly matches against C<$_> [perl #20444].
5076a392
FC
3426
3427=item *
3428
e8e35311
FC
3429Parsing Perl code (either with string C<eval> or by loading modules) from
3430within a C<UNITCHECK> block no longer causes the interpreter to crash
3431[perl #70614].
5076a392
FC
3432
3433=item *
3434
b2c076b5
FC
3435String evals no longer fail after 2 billion scopes have been
3436compiled [perl #83364].
3437
3438=item *
3439
e8e35311
FC
3440The parser no longer hangs when encountering certain Unicode characters,
3441such as U+387 [perl #74022].
5076a392
FC
3442
3443=item *
3444
b2c076b5
FC
3445Several contexts no longer allow a Unicode character to begin a word
3446that should never begin words, for an example an accent that must follow
3447another character previously could precede all other characters.
5076a392
FC
3448
3449=item *
3450
e8e35311
FC
3451Defining a constant with the same name as one of perl's special blocks
3452(e.g., INIT) stopped working in 5.12.0, but has now been fixed
3453[perl #78634].
5076a392
FC
3454
3455=item *
3456
e8e35311
FC
3457A reference to a literal value used as a hash key (C<$hash{\"foo"}>) used
3458to be stringified, even if the hash was tied [perl #79178].
5076a392
FC
3459
3460=item *
3461
e8e35311
FC
3462A closure containing an C<if> statement followed by a constant or variable
3463is no longer treated as a constant [perl #63540].
5076a392
FC
3464
3465=item *
3466
e8e35311
FC
3467C<state> can now be used with attributes. It used to mean the same thing as
3468C<my> if attributes were present [perl #68658].
5076a392
FC
3469
3470=item *
3471
e8e35311
FC
3472Expressions like C<< @$a > 3 >> no longer cause C<$a> to be mentioned in
3473the "Use of uninitialized value in numeric gt" warning when C<$a> is
3474undefined (since it is not part of the C<E<gt>> expression, but the operand
3475of the C<@>) [perl #72090].
5076a392
FC
3476
3477=item *
3478
e8e35311
FC
3479Accessing an element of a package array with a hard-coded number (as
3480opposed to an arbitrary expression) would crash if the array did not exist.
3481Usually the array would be autovivified during compilation, but typeglob
3482manipulation could remove it, as in these two cases which used to crash:
5076a392 3483
e8e35311
FC
3484 *d = *a; print $d[0];
3485 undef *d; print $d[0];
5076a392 3486
2c389f6c
FC
3487=item *
3488
3489The C<-C> command line option, when used on the shebang line, can now be
3490followed by other options [perl #72434].
3491
3492=item *
3493
3494The C<B> module was returning C<B::OP>s instead of C<B::LOGOP>s for C<entertry> [perl #80622].
3495This was due to a bug in the perl core, not in C<B> itself.
3496
e8e35311 3497=back
5076a392 3498
e262cb24
FC
3499=head2 Stashes, Globs and Method Lookup
3500
3501Perl 5.10.0 introduced a new internal mechanism for caching MROs (method
3502resolution orders, or lists of parent classes; aka "isa" caches) to make
3503method lookup faster (so @ISA arrays would not have to be searched
3504repeatedly). Unfortunately, this brought with it quite a few bugs. Almost
3505all of these have been fixed now, along with a few MRO-related bugs that
3506existed before 5.10.0:
3507
3508=over
3509
3510=item *
3511
3512The following used to have erratic effects on method resolution, because
3513the "isa" caches were not reset or otherwise ended up listing the wrong
3514classes. These have been fixed.
3515
3516=over
3517
3518=item Aliasing packages by assigning to globs [perl #77358]
3519
3520=item Deleting packages by deleting their containing stash elements
3521
3522=item Undefining the glob containing a package (C<undef *Foo::>)
3523
3524=item Undefining an ISA glob (C<undef *Foo::ISA>)
3525
3526=item Deleting an ISA stash element (C<delete $Foo::{ISA}>)
3527
3528=item Sharing @ISA arrays between classes (via C<*Foo::ISA = \@Bar::ISA> or
3529C<*Foo::ISA = *Bar::ISA>) [perl #77238]
3530
3531=back
3532
3533C<undef *Foo::ISA> would even stop a new C<@Foo::ISA> array from updating
3534caches.
3535
3536=item *
3537
3538Typeglob assignments would crash if the glob's stash no longer existed, so
3539long as the glob assigned to was named 'ISA' or the glob on either side of
3540the assignment contained a subroutine.
3541
3542=item *
3543
3544C<PL_isarev>, which is accessible to Perl via C<mro::get_isarev> is now
3545updated properly when packages are deleted or removed from the C<@ISA> of
3546other classes. This allows many packages to be created and deleted without
3547causing a memory leak [perl #75176].
3548
3549=back
3550
3551In addition, various other bugs related to typeglobs and stashes have been
3552fixed:
5076a392 3553
e8e35311 3554=over
5076a392
FC
3555
3556=item *
3557
e8e35311 3558Some work has been done on the internal pointers that link between symbol
e262cb24 3559tables (stashes), typeglobs and subroutines. This has the effect that
e8e35311
FC
3560various edge cases related to deleting stashes or stash entries (e.g.
3561<%FOO:: = ()>), and complex typeglob or code reference aliasing, will no
3562longer crash the interpreter.
5076a392
FC
3563