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