5 perl5160delta - what is new for perl v5.16.0
9 This document describes differences between the 5.14.0 release and
12 If you are upgrading from an earlier release such as 5.12.0, first read
13 L<perl5140delta>, which describes differences between 5.12.0 and
18 XXX Any important notices here
20 =head1 Core Enhancements
22 =head2 C<use I<VERSION>>
24 As of this release, version declarations like C<use v5.16> now disable
25 all features before enabling the new feature bundle. This means that
26 the following holds true:
29 # only 5.16 features enabled here
31 # only 5.14 features enabled here (not 5.16)
33 C<use v5.12> and higher continue to enable strict, but explicit C<use
34 strict> and C<no strict> now override the version declaration, even
41 There is a new ":default" feature bundle that represents the set of
42 features enabled before any version declaration or C<use feature> has
43 been seen. Version declarations below 5.10 now enable the ":default"
44 feature set. This does not actually change the behaviour of C<use
45 v5.8>, because features added to the ":default" set are those that were
46 traditionally enabled by default, before they could be turned off.
48 C<< no feature >> now resets to the default feature set. To disable all
49 features (which is likely to be a pretty special-purpose request, since
50 it presumably won't match any named set of semantics) you can now
51 write C<< no feature ':all' >>.
53 C<$[> is now disabled under C<use v5.16>. It is part of the default
54 feature set and can be turned on or off explicitly with C<use feature
59 The new C<__SUB__> token, available under the C<current_sub> feature
60 (see L<feature>) or C<use v5.16>, returns a reference to the current
61 subroutine, making it easier to write recursive closures.
63 =head2 New and Improved Built-ins
65 =head3 More consistent C<eval>
67 The C<eval> operator sometimes treats a string argument as a sequence of
68 characters and sometimes as a sequence of bytes, depending on the
69 internal encoding. The internal encoding is not supposed to make any
70 difference, but there is code that relies on this inconsistency.
72 The new C<unicode_eval> and C<evalbytes> features (enabled under C<use
73 5.16.0>) resolve this. The C<unicode_eval> feature causes C<eval
74 $string> to treat the string always as Unicode. The C<evalbytes>
75 features provides a function, itself called C<evalbytes>, which
76 evaluates its argument always as a string of bytes.
78 These features also fix oddities with source filters leaking to outer
81 See L<feature> for more detail.
83 =head3 C<substr> lvalue revamp
85 =for comment Can this be compacted some? -- rjbs, 2012-02-20
87 When C<substr> is called in lvalue or potential lvalue context with two
88 or three arguments, a special lvalue scalar is returned that modifies
89 the original string (the first argument) when assigned to.
91 Previously, the offsets (the second and third arguments) passed to
92 C<substr> would be converted immediately to match the string, negative
93 offsets being translated to positive and offsets beyond the end of the
94 string being truncated.
96 Now, the offsets are recorded without modification in the special
97 lvalue scalar that is returned, and the original string is not even
98 looked at by C<substr> itself, but only when the returned lvalue is
101 These changes result in several incompatible changes and bug fixes:
107 If the original string changes length after the call to C<substr> but
108 before assignment to its return value, negative offsets will remember
109 their position from the end of the string, affecting code like this:
111 my $string = "string";
112 my $lvalue = \substr $string, -4, 2;
113 print $lvalue, "\n"; # prints "ri"
114 $string = "bailing twine";
115 print $lvalue, "\n"; # prints "wi"; used to print "il"
117 The same thing happens with an omitted third argument. The returned
118 lvalue will always extend to the end of the string, even if the string
123 Tied (and otherwise magical) variables are no longer exempt from the
124 "Attempt to use reference as lvalue in substr" warning.
128 That warning now occurs when the returned lvalue is assigned to, not
129 when C<substr> itself is called. This only makes a difference if the
130 return value of C<substr> is referenced and assigned to later.
134 The order in which "uninitialized" warnings occur for arguments to
135 C<substr> has changed.
139 Passing a substring of a read-only value or a typeglob to a function
140 (potential lvalue context) no longer causes an immediate "Can't coerce"
141 or "Modification of a read-only value" error. That error only occurs
142 if and when the value passed is assigned to.
144 The same thing happens with the "substr outside of string" error. If
145 the lvalue is only read, not written to, it is now just a warning, as
146 with rvalue C<substr>.
150 C<substr> assignments no longer call FETCH twice if the first argument
151 is a tied variable, just once.
155 It was impossible to fix all the bugs without an incompatible change,
156 and the behaviour of negative offsets was never specified, so the
157 change was deemed acceptable.
159 =head3 Return value of C<tied>
161 The value returned by C<tied> on a tied variable is now the actual
162 scalar that holds the object to which the variable is tied. This
163 allows ties to be weakened with C<Scalar::Util::weaken(tied
166 =head2 Unicode Support
168 =head3 Supports (I<almost>) Unicode 6.1
170 Besides the addition of whole new scripts, and new characters in
171 existing scripts, this new version of Unicode, as always, makes some
172 changes to existing characters. One change that may trip up some
173 applications is that the General Category of two characters in the
174 Latin-1 range, PILCROW SIGN and SECTION SIGN, has been changed from
175 Other_Symbol to Other_Punctuation. The same change has been made for
176 a character in each of Tibetan, Ethiopic, and Aegean.
177 The code points U+3248..U+324F (CIRCLED NUMBER TEN ON BLACK SQUARE
178 through CIRCLED NUMBER EIGHTY ON BLACK SQUARE) have had their General
179 Category changed from Other_Symbol to Other_Numeric. The Line Break
180 property has changes for Hebrew and Japanese; and as a consequence of
181 other changes in 6.1, the Perl regular expression construct C<\X> now
182 works differently for some characters in Thai and Lao.
184 New aliases (synonyms) have been defined for many property values;
185 these, along with the previously existing ones, are all cross-indexed in
188 The return value of C<charnames::viacode()> is affected by other
191 Code point Old Name New Name
192 U+000A LINE FEED (LF) LINE FEED
193 U+000C FORM FEED (FF) FORM FEED
194 U+000D CARRIAGE RETURN (CR) CARRIAGE RETURN
195 U+0085 NEXT LINE (NEL) NEXT LINE
196 U+008E SINGLE-SHIFT 2 SINGLE-SHIFT-2
197 U+008F SINGLE-SHIFT 3 SINGLE-SHIFT-3
198 U+0091 PRIVATE USE 1 PRIVATE USE-1
199 U+0092 PRIVATE USE 2 PRIVATE USE-2
200 U+2118 SCRIPT CAPITAL P WEIERSTRASS ELLIPTIC FUNCTION
202 Perl will accept any of these names as input, but
203 C<charnames::viacode()> now returns the new name of each pair. The
204 change for U+2118 is considered by Unicode to be a correction, that is
205 the original name was a mistake (but again, it will remain forever valid
206 to use it to refer to U+2118). But most of these changes are the
207 fallout of the mistake Unicode 6.0 made in naming a character used in
208 Japanese cell phones to be "BELL", which conflicts with the longstanding
209 industry use of (and Unicode's recommendation to use) that name
210 to mean the ASCII control character at U+0007. As a result, that name
211 has been deprecated in Perl since v5.14; and any use of it will raise a
212 warning message (unless turned off). The name "ALERT" is now the
213 preferred name for this code point, with "BEL" being an acceptable short
214 form. The name for the new cell phone character, at code point U+1F514,
215 remains undefined in this version of Perl (hence we don't quite
216 implement all of Unicode 6.1), but starting in v5.18, BELL will mean
217 this character, and not U+0007.
219 Unicode has taken steps to make sure that this sort of mistake does not
220 happen again. The Standard now includes all the generally accepted
221 names and abbreviations for control characters, whereas previously it
222 didn't (though there were recommended names for most of them, which Perl
223 used). This means that most of those recommended names are now
224 officially in the Standard. Unicode did not recommend names for the
225 four code points listed above between U+008E and U+008F, and in
226 standardizing them Unicode subtly changed the names that Perl had
227 previously given them, by replacing the final blank in each name by a
228 hyphen. Unicode also officially accepts names that Perl had deprecated,
229 such as FILE SEPARATOR. Now the only deprecated name is BELL.
230 Finally, Perl now uses the new official names instead of the old
231 (now considered obsolete) names for the first four code points in the
232 list above (the ones which have the parentheses in them).
234 Now that the names have been placed in the Unicode standard, these kinds
235 of changes should not happen again, though corrections, such as to
236 U+2118, are still possible.
238 Unicode also added some name abbreviations, which Perl now accepts:
240 TAB for CHARACTER TABULATION;
241 NEW LINE, END OF LINE, NL, and EOL for LINE FEED;
242 LOCKING-SHIFT ONE for SHIFT OUT;
243 LOCKING-SHIFT ZERO for SHIFT IN;
244 and ZWNBSP for ZERO WIDTH NO-BREAK SPACE.
246 More details on this version of Unicode are provided in
247 L<http://www.unicode.org/versions/Unicode6.1.0/>.
249 =head3 C<use charnames> is no longer needed for C<\N{I<name>}>
251 When C<\N{I<name>}> is encountered, the C<charnames> module is now
252 automatically loaded when needed as if the C<:full> and C<:short>
253 options had been specified. See L<charnames> for more information.
255 =head3 C<\N{...}> can now have Unicode loose name matching
257 This is described in the C<charnames> item in
258 L</Updated Modules and Pragmata> below.
260 =head3 Unicode Symbol Names
262 Perl now has proper support for Unicode in symbol names. It used to be
263 that C<*{$foo}> would ignore the internal UTF8 flag and use the bytes of
264 the underlying representation to look up the symbol. That meant that
265 C<*{"\x{100}"}> and C<*{"\xc4\x80"}> would return the same thing. All
266 these parts of Perl have been fixed to account for Unicode:
272 Method names (including those passed to C<use overload>)
276 Typeglob names (including names of variables, subroutines and filehandles)
288 Symbolic dereferencing
292 Second argument to C<bless()> and C<tie()>
296 Return value of C<ref()>
300 Subroutine prototypes
308 Various warnings and error messages that mention variable names or values,
313 In addition, a parsing bug has been fixed that prevented C<*{Ć©}> from
314 implicitly quoting the name, but instead interpreted it as C<*{+Ć©}>, which
315 would cause a strict violation.
317 C<*{"*a::b"}> automatically strips off the * if it is followed by an ASCII
318 letter. That has been extended to all Unicode identifier characters.
320 One-character non-ASCII non-punctuation variables (like C<$Ć©>) are now
321 subject to "Used only once" warnings. They used to be exempt, as they
322 was treated as punctuation variables.
324 Also, single-character Unicode punctuation variables (like $ā°) are now
325 supported [perl #69032].
327 =head3 Improved ability to mix locales and Unicode, including UTF-8 locales
329 An optional parameter has been added to C<use locale>
331 use locale ':not_characters';
333 which tells Perl to use all but the C<LC_CTYPE> and C<LC_COLLATE>
334 portions of the current locale. Instead, the character set is assumed
335 to be Unicode. This allows locales and Unicode to be seamlessly mixed,
336 including the increasingly frequent UTF-8 locales. When using this
337 hybrid form of locales, the C<:locale> layer to the L<open> pragma can
338 be used to interface with the file system, and there are CPAN modules
339 available for ARGV and environment variable conversions.
341 Full details are in L<perllocale>.
343 =head3 New function C<fc> and corresponding escape sequence C<\F> for Unicode foldcase
345 Unicode foldcase is an extension to lowercase that gives better results
346 when comparing two strings case-insensitively. It has long been used
347 internally in regular expression C</i> matching. Now it is available
348 explicitly through the new C<fc> function call (enabled by
349 S<C<"use feature 'fc'">>, or C<use v5.16>, or explicitly callable via
350 C<CORE::fc>) or through the new C<\F> sequence in double-quotish
353 Full details are in L<perlfunc/fc>.
355 =head3 The Unicode C<Script_Extensions> property is now supported.
357 New in Unicode 6.0, this is an improved C<Script> property. Details
358 are in L<perlunicode/Scripts>.
362 =head3 Improved typemaps for Some Builtin Types
364 Most XS authors will be aware that there is a longstanding bug in the
365 OUTPUT typemap for T_AVREF (C<AV*>), T_HVREF (C<HV*>), T_CVREF (C<CV*>),
366 and T_SVREF (C<SVREF> or C<\$foo>) that requires manually decrementing
367 the reference count of the return value instead of the typemap taking
368 care of this. For backwards-compatibility, this cannot be changed in the
369 default typemaps. But we now provide additional typemaps
370 C<T_AVREF_REFCOUNT_FIXED>, etc. that do not exhibit this bug. Using
371 them in your extension is as simple as having one line in your
374 HV* T_HVREF_REFCOUNT_FIXED
376 =head3 C<is_utf8_char()>
378 The XS-callable function C<is_utf8_char()>, when presented with
379 malformed UTF-8 input, can read up to 12 bytes beyond the end of the
380 string. This cannot be fixed without changing its API. It is not
381 called from CPAN. The documentation now describes how to use it
384 =head3 Added C<is_utf8_char_buf()>
386 This function is designed to replace the deprecated L</is_utf8_char()>
387 function. It includes an extra parameter to make sure it doesn't read
388 past the end of the input buffer.
390 =head3 Other C<is_utf8_foo()> functions, as well as C<utf8_to_foo()>, etc.
392 Most of the other XS-callable functions that take UTF-8 encoded input
393 implicitly assume that the UTF-8 is valid (not malformed) in regards to
394 buffer length. Do not do things such as change a character's case or
395 see if it is alphanumeric without first being sure that it is valid
396 UTF-8. This can be safely done for a whole string by using one of the
397 functions C<is_utf8_string()>, C<is_utf8_string_loc()>, and
398 C<is_utf8_string_loclen()>.
402 Many new functions have been added to the API for manipulating lexical
403 pads. See L<perlapi/Pad Data Structures> for more information.
405 =head2 Changes to Special Variables
407 =head3 C<$$> can be assigned to
409 C<$$> was made read-only in Perl 5.8.0. But only sometimes: C<local $$>
410 would make it writable again. Some CPAN modules were using C<local $$> or
411 XS code to bypass the read-only check, so there is no reason to keep C<$$>
412 read-only. (This change also allowed a bug to be fixed while maintaining
413 backward compatibility.)
415 =head3 C<$^X> converted to an absolute path on FreeBSD, OS X and Solaris
417 C<$^X> is now converted to an absolute path on OS X, FreeBSD (without
418 needing F</proc> mounted) and Solaris 10 and 11. This augments the
419 previous approach of using F</proc> on Linux, FreeBSD and NetBSD
420 (in all cases, where mounted).
422 This makes relocatable perl installations more useful on these platforms.
423 (See "Relocatable @INC" in F<INSTALL>)
425 =head2 Debugger Changes
427 =head3 Features inside the debugger
429 The current Perl's L<feature> bundle is now enabled for commands entered
430 in the interactive debugger.
432 =head3 New option for the debugger's B<t> command
434 The B<t> command in the debugger, which toggles tracing mode, now
435 accepts a numeric argument that determines how many levels of subroutine
438 =head3 C<enable> and C<disable>
440 The debugger now has C<disable> and C<enable> commands for disabling
441 existing breakpoints and re-enabling them. See L<perldebug>.
443 =head3 Breakpoints with file names
445 The debugger's "b" command for setting breakpoints now allows a line
446 number to be prefixed with a file name. See
447 L<perldebug/"b [file]:[line] [condition]">.
449 =head2 The C<CORE> Namespace
451 =head3 The C<CORE::> prefix
453 The C<CORE::> prefix can now be used on keywords enabled by
454 L<feature.pm|feature>, even outside the scope of C<use feature>.
456 =head3 Subroutines in the C<CORE> namespace
458 Many Perl keywords are now available as subroutines in the CORE namespace.
459 This allows them to be aliased:
461 BEGIN { *entangle = \&CORE::tie }
462 entangle $variable, $package, @args;
464 And for prototypes to be bypassed:
466 sub mytie(\[%$*@]$@) {
467 my ($ref, $pack, @args) = @_;
472 Some of these cannot be called through references or via C<&foo> syntax,
473 but must be called as barewords.
475 See L<CORE> for details.
479 =head3 Anonymous handles
481 Automatically generated file handles are now named __ANONIO__ when the
482 variable name cannot be determined, rather than $__ANONIO__.
484 =head3 Autoloaded sort Subroutines
486 Custom sort subroutines can now be autoloaded [perl #30661]:
489 @sorted = sort foo @list; # uses AUTOLOAD
491 =head3 C<continue> no longer requires the "switch" feature
493 The C<continue> keyword has two meanings. It can introduce a C<continue>
494 block after a loop, or it can exit the current C<when> block. Up till now,
495 the latter meaning was only valid with the "switch" feature enabled, and
496 was a syntax error otherwise. Since the main purpose of feature.pm is to
497 avoid conflicts with user-defined subroutines, there is no reason for
498 C<continue> to depend on it.
500 =head3 DTrace probes for interpreter phase change
502 The C<phase-change> probes will fire when the interpreter's phase
503 changes, which tracks the C<${^GLOBAL_PHASE}> variable. C<arg0> is
504 the new phase name; C<arg1> is the old one. This is useful mostly
505 for limiting your instrumentation to one or more of: compile time,
506 run time, destruct time.
508 =head3 C<__FILE__()> Syntax
510 The C<__FILE__>, C<__LINE__> and C<__PACKAGE__> tokens can now be written
511 with an empty pair of parentheses after them. This makes them parse the
512 same way as C<time>, C<fork> and other built-in functions.
514 =head3 The C<\$> prototype accepts any scalar lvalue
516 The C<\$> and C<\[$]> subroutine prototypes now accept any scalar lvalue
517 argument. Previously they only accepted scalars beginning with C<$> and
518 hash and array elements. This change makes them consistent with the way
519 the built-in C<read> and C<recv> functions (among others) parse their
520 arguments. This means that one can override the built-in functions with
521 custom subroutines that parse their arguments the same way.
523 =head3 C<_> in subroutine prototypes
525 The C<_> character in subroutine prototypes is now allowed before C<@> or
530 =head2 Use C<is_utf8_char_buf()> and not C<is_utf8_char()>
532 The latter function is now deprecated because its API is insufficient to
533 guarantee that it doesn't read (up to 12 bytes in the worst case) beyond
534 the end of its input string. See
535 L<is_utf8_char_buf()|/Added is_utf8_char_buf()>.
537 =head2 C<File::Glob::bsd_glob()> memory error with GLOB_ALTDIRFUNC (CVE-2011-2728).
539 Calling C<File::Glob::bsd_glob> with the unsupported flag
540 GLOB_ALTDIRFUNC would cause an access violation / segfault. A Perl
541 program that accepts a flags value from an external source could expose
542 itself to denial of service or arbitrary code execution attacks. There
543 are no known exploits in the wild. The problem has been corrected by
544 explicitly disabling all unsupported flags and setting unused function
545 pointers to null. Bug reported by ClƩment Lecigne.
547 =head2 Privileges are now set correctly when assigning to C<$(>
549 A hypothetical bug (probably non-exploitable in practice) due to the
550 incorrect setting of the effective group ID while setting C<$(> has been
551 fixed. The bug would only have affected systems that have C<setresgid()>
552 but not C<setregid()>, but no such systems are known of.
556 =head2 Don't read the Unicode data base files in F<lib/unicore>
558 It is now deprecated to directly read the Unicode data base files.
559 These are stored in the F<lib/unicore> directory. Instead, you should
560 use the new functions in L<Unicode::UCD>. These provide a stable API,
561 and give complete information.
563 Perl may at some point in the future change or remove the files. The
564 file most likely for applications to have used is
565 F<lib/unicore/ToDigit.pl>. L<Unicode::UCD/prop_invmap()> can be used to
566 get at its data instead.
568 =head2 C<is_utf8_char()>
570 This function is deprecated because it could read beyond the end of the
571 input string. Use the new L<is_utf8_char_buf()|/Added is_utf8_char_buf()>
574 =head1 Future Deprecations
576 This section serves as a notice of features that are I<likely> to be
577 removed or L<deprecated|perlpolicy/deprecated> in the next release of
578 perl (5.18.0). If your code depends on these features, you should
579 contact the Perl 5 Porters via the L<mailing
580 list|http://lists.perl.org/list/perl5-porters.html> or L<perlbug> to
581 explain your use case and inform the deprecation process.
585 These modules may be marked as deprecated I<from the core>. This only
586 means that they will no longer be installed by default with the core
587 distribution, but will remain available on the CPAN.
605 Pod::Parser, Pod::LaTeX
621 =head2 Platforms with no supporting programmers:
623 These platforms will probably have their
624 special build support removed during the
625 5.17.0 development series.
663 =head2 Other Future Deprecations
669 Swapping of $< and $>
671 For more information about this future deprecation, see L<the relevant RT
672 ticket|https://rt.perl.org/rt3/Ticket/Display.html?id=96212>.
680 Unescaped literal C<< "{" >> in regular expressions.
682 It is planned starting in v5.20 to require a literal C<"{"> to be
683 escaped by, for example, preceding it with a backslash. In v5.18, a
684 deprecated warning message will be emitted for all such uses. Note that
685 this only affects patterns which are to match a literal C<"{">. Other
686 uses of this character, such as part of a quantifier or sequence like in
687 the ones below are completely unaffected:
693 The removal of this will allow extensions to pattern syntax, and better
694 error checking of existing syntax. See L<perlre/Quantifiers> for an
699 =head1 Incompatible Changes
701 =head2 Special blocks called in void context
703 Special blocks (C<BEGIN>, C<CHECK>, C<INIT>, C<UNITCHECK>, C<END>) are now
704 called in void context. This avoids wasteful copying of the result of the
705 last statement [perl #108794].
707 =head2 The C<overloading> pragma and regexp objects
709 With C<no overloading>, regular expression objects returned by C<qr//> are
710 now stringified as "Regexp=REGEXP(0xbe600d)" instead of the regular
711 expression itself [perl #108780].
713 =head2 Two XS typemap Entries removed
715 Two presumably unused XS typemap entries have been removed from the
716 core typemap: T_DATAUNIT and T_CALLBACK. If you are, against all odds,
717 a user of these, please see the instructions on how to regain them
720 =head2 Unicode 6.1 has incompatibilities with Unicode 6.0
722 These are detailed in L</Supports (almost) Unicode 6.1> above.
723 You can compile this version of Perl to use Unicode 6.0. See
724 L<perlunicode/Hacking Perl to work on earlier Unicode versions (for very serious hackers only)>.
726 =head2 Borland compiler
728 All support for the Borland compiler has been dropped. The code had not
729 worked for a long time anyway.
731 =head2 Certain deprecated Unicode properties are no longer supported by default
733 Perl should never have exposed certain Unicode properties that are used
734 by Unicode internally and not meant to be publicly available. Use of
735 these has generated deprecated warning messages since Perl 5.12. The
736 removed properties are Other_Alphabetic,
737 Other_Default_Ignorable_Code_Point, Other_Grapheme_Extend,
738 Other_ID_Continue, Other_ID_Start, Other_Lowercase, Other_Math, and
741 Perl may be recompiled to include any or all of them; instructions are
743 L<perluniprops/Unicode character properties that are NOT accepted by Perl>.
745 =head2 Dereferencing IO thingies as typeglobs
747 The C<*{...}> operator, when passed a reference to an IO thingy (as in
748 C<*{*STDIN{IO}}>), creates a new typeglob containing just that IO object.
749 Previously, it would stringify as an empty string, but some operators would
750 treat it as undefined, producing an "uninitialized" warning.
751 Now it stringifies as __ANONIO__ [perl #96326].
753 =head2 User-defined case changing operations.
755 This feature was deprecated in Perl 5.14, and has now been removed.
756 The CPAN module L<Unicode::Casing> provides better functionality without
757 the drawbacks that this feature had, as are detailed in the 5.14
759 L<http://perldoc.perl.org/5.14.0/perlunicode.html#User-Defined-Case-Mappings-%28for-serious-hackers-only%29>
761 =head2 XSUBs are now 'static'
763 XSUB C functions are now 'static', that is, they are not visible from
764 outside the compilation unit. Users can use the new C<XS_EXTERNAL(name)>
765 and C<XS_INTERNAL(name)> macros to pick the desired linking behaviour.
766 The ordinary C<XS(name)> declaration for XSUBs will continue to declare
767 non-'static' XSUBs for compatibility, but the XS compiler,
768 C<ExtUtils::ParseXS> (C<xsubpp>) will emit 'static' XSUBs by default.
769 C<ExtUtils::ParseXS>'s behaviour can be reconfigured from XS using the
770 C<EXPORT_XSUB_SYMBOLS> keyword. See L<perlxs> for details.
772 =head2 Weakening read-only references
774 Weakening read-only references is no longer permitted. It should never
775 have worked anyway, and in some cases could result in crashes.
777 =head2 Tying scalars that hold typeglobs
779 Attempting to tie a scalar after a typeglob was assigned to it would
780 instead tie the handle in the typeglob's IO slot. This meant that it was
781 impossible to tie the scalar itself. Similar problems affected C<tied> and
782 C<untie>: C<tied $scalar> would return false on a tied scalar if the last
783 thing returned was a typeglob, and C<untie $scalar> on such a tied scalar
786 We fixed this problem before Perl 5.14.0, but it caused problems with some
787 CPAN modules, so we put in a deprecation cycle instead.
789 Now the deprecation has been removed and this bug has been fixed. So
790 C<tie $scalar> will always tie the scalar, not the handle it holds. To tie
791 the handle, use C<tie *$scalar> (with an explicit asterisk). The same
792 applies to C<tied *$scalar> and C<untie *$scalar>.
794 =head2 IPC::Open3 no longer provides C<xfork()>, C<xclose_on_exec()>
797 All three functions were private, undocumented and unexported. They do
798 not appear to be used by any code on CPAN. Two have been inlined and one
801 =head2 C<$$> no longer caches PID
803 Previously, if one called fork(3) from C, Perl's
804 notion of C<$$> could go out of sync with what getpid() returns. By always
805 fetching the value of C<$$> via getpid(), this potential bug is eliminated.
806 Code that depends on the caching behavior will break. As described in
807 L<Core Enhancements|/C<$$> can be assigned to>,
808 C<$$> is now writable, but it will be reset during a
811 =head2 C<$$> and C<getppid()> no longer emulate POSIX semantics under LinuxThreads
813 The POSIX emulation of C<$$> and C<getppid()> under the obsolete
814 LinuxThreads implementation has been removed.
815 This only impacts users of Linux 2.4 and
816 users of Debian GNU/kFreeBSD up to and including 6.0, not the vast
817 majority of Linux installations that use NPTL threads.
819 This means that C<getppid()>, like C<$$>, is now always guaranteed to
820 return the OS's idea of the current state of the process, not perl's
821 cached version of it.
823 See the documentation for L<$$|perlvar/$$> for details.
825 =head2 C<< $< >>, C<< $> >>, C<$(> and C<$)> are no longer cached
827 Similarly to the changes to C<$$> and C<getppid()>, the internal
828 caching of C<< $< >>, C<< $> >>, C<$(> and C<$)> has been removed.
830 When we cached these values our idea of what they were would drift out
831 of sync with reality if someone (e.g., someone embedding perl) called
832 sete?[ug]id() without updating C<PL_e?[ug]id>. Having to deal with
833 this complexity wasn't worth it given how cheap the C<gete?[ug]id()>
836 This change will break a handful of CPAN modules that use the XS-level
837 C<PL_uid>, C<PL_gid>, C<PL_euid> or C<PL_egid> variables.
839 The fix for those breakages is to use C<PerlProc_gete?[ug]id()> to
840 retrieve them (e.g. C<PerlProc_getuid()>), and not to assign to
841 C<PL_e?[ug]id> if you change the UID/GID/EUID/EGID. There is no longer
842 any need to do so since perl will always retrieve the up-to-date
843 version of those values from the OS.
845 =head2 Which Non-ASCII characters get quoted by C<quotemeta> and C<\Q> has changed
847 This is unlikely to result in a real problem, as Perl does not attach
848 special meaning to any non-ASCII character, so it is currently
849 irrelevant which are quoted or not. This change fixes bug [perl #77654] and
850 bring Perl's behavior more into line with Unicode's recommendations.
851 See L<perlfunc/quotemeta>.
853 =head1 Performance Enhancements
859 Improved performance for Unicode properties in regular expressions
861 =for comment Can this be compacted some? -- rjbs, 2012-02-20
863 Matching a code point against a Unicode property is now done via a
864 binary search instead of linear. This means for example that the worst
865 case for a 1000 item property is 10 probes instead of 1000. This
866 inefficiency has been compensated for in the past by permanently storing
867 in a hash the results of a given probe plus the results for the adjacent
868 64 code points, under the theory that near-by code points are likely to
869 be searched for. A separate hash was used for each mention of a Unicode
870 property in each regular expression. Thus, C<qr/\p{foo}abc\p{foo}/>
871 would generate two hashes. Any probes in one instance would be unknown
872 to the other, and the hashes could expand separately to be quite large
873 if the regular expression were used on many different widely-separated
874 code points. This can lead to running out of memory in extreme cases.
875 Now, however, there is just one hash shared by all instances of a given
876 property. This means that if C<\p{foo}> is matched against "A" in one
877 regular expression in a thread, the result will be known immediately to
878 all regular expressions, and the relentless march of using up memory is
883 Version declarations with the C<use> keyword (e.g., C<use 5.012>) are now
884 faster, as they enable features without loading F<feature.pm>.
888 C<local $_> is faster now, as it no longer iterates through magic that it
889 is not going to copy anyway.
893 Perl 5.12.0 sped up the destruction of objects whose classes define
894 empty C<DESTROY> methods (to prevent autoloading), by simply not
895 calling such empty methods. This release takes this optimisation a
896 step further, by not calling any C<DESTROY> method that begins with a
897 C<return> statement. This can be useful for destructors that are only
900 use constant DEBUG => 1;
901 sub DESTROY { return unless DEBUG; ... }
903 Constant-folding will reduce the first statement to C<return;> if DEBUG
904 is set to 0, triggering this optimisation.
908 Assigning to a variable that holds a typeglob or copy-on-write scalar
909 is now much faster. Previously the typeglob would be stringified or
910 the copy-on-write scalar would be copied before being clobbered.
914 Assignment to C<substr> in void context is now more than twice its
915 previous speed. Instead of creating and returning a special lvalue
916 scalar that is then assigned to, C<substr> modifies the original string
921 C<substr> no longer calculates a value to return when called in void
926 Due to changes in L<File::Glob>, Perl's C<glob> function and its C<<
927 <...> >> equivalent are now much faster. The splitting of the pattern
928 into words has been rewritten in C, resulting in speed-ups of 20% in
931 This does not affect C<glob> on VMS, as it does not use File::Glob.
935 The short-circuiting operators C<&&>, C<||>, and C<//>, when chained
936 (such as C<$a || $b || $c>), are now considerably faster to short-circuit,
937 due to reduced optree traversal.
941 The implementation of C<s///r> makes one fewer copy of the scalar's value.
945 C<study> is now a no-op.
949 Recursive calls to lvalue subroutines in lvalue scalar context use less
954 =head1 Modules and Pragmata
956 XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/>
957 go here. If Module::CoreList is updated, generate an initial draft of the
958 following sections using F<Porting/corelist-perldelta.pl>, which prints stub
959 entries to STDOUT. Results can be pasted in place of the '=head2' entries
960 below. A paragraph summary for important changes should then be added by hand.
961 In an ideal world, dual-life modules would have a F<Changes> file that could be
964 [ Within each section, list entries as a =item entry ]
966 =head2 Deprecated Modules
970 =item L<Version::Requirements>
972 Version::Requirements is now DEPRECATED, use L<CPAN::Meta::Requirements>,
973 which is a drop-in replacement. It will be deleted from perl.git blead
978 =head2 New Modules and Pragmata
984 L<arybase> -- this new module implements the C<$[> variable.
988 C<PerlIO::mmap> 0.010 has been added to the Perl core.
990 The C<mmap> PerlIO layer is no longer implemented by perl itself, but has
991 been moved out into the new L<PerlIO::mmap> module.
995 =head2 Updated Modules and Pragmata
1001 L<XXX> has been upgraded from version 0.69 to version 0.70.
1005 =head2 Removed Modules and Pragmata
1007 As promised in Perl 5.14.0's release notes, the following modules have
1008 been removed from the core distribution, and if needed should be installed
1015 C<Devel::DProf> has been removed from the Perl core. Prior version was
1020 C<Shell> has been removed from the Perl core. Prior version was 0.72_01.
1024 =head1 Documentation
1026 =head2 New Documentation
1028 =head3 L<perldtrace>
1030 L<perldtrace> describes Perl's DTrace support, listing the provided probes
1031 and gives examples of their use.
1033 =head3 L<perlexperiment>
1035 This document is intended to provide a list of experimental features in
1036 Perl. It is still a work in progress.
1040 This a new OO tutorial. It focuses on basic OO concepts, and then recommends
1041 that readers choose an OO framework from CPAN.
1043 =head3 L<perlxstypemap>
1045 The new manual describes the XS typemapping mechanism in unprecedented
1046 detail and combines new documentation with information extracted from
1047 L<perlxs> and the previously unofficial list of all core typemaps.
1049 =head2 Changes to Existing Documentation
1057 The HV API has long accepted negative lengths to indicate that the key is
1058 in UTF8. Now this is documented.
1062 The C<boolSV()> macro is now documented.
1072 C<dbmopen> treats a 0 mode as a special case, that prevents a nonexistent
1073 file from being created. This has been the case since Perl 5.000, but was
1074 never documented anywhere. Now the perlfunc entry mentions it
1079 As an accident of history, C<open $fh, "<:", ...> applies the default
1080 layers for the platform (C<:raw> on Unix, C<:crlf> on Windows), ignoring
1081 whatever is declared by L<open.pm|open>. This seems such a useful feature
1082 it has been documented in L<perlfunc|perlfunc/open> and L<open>.
1086 The entry for C<split> has been rewritten. It is now far clearer than
1097 A new section, L<Autoloading with XSUBs|perlguts/Autoloading with XSUBs>,
1098 has been added, which explains the two APIs for accessing the name of the
1103 Some of the function descriptions in L<perlguts> were confusing, as it was
1104 not clear whether they referred to the function above or below the
1105 description. This has been clarified [perl #91790].
1115 This document has been rewritten from scratch, and its coverage of various OO
1116 concepts has been expanded.
1126 Documentation of the smartmatch operator has been reworked and moved from
1127 perlsyn to perlop where it belongs.
1129 It has also been corrected for the case of C<undef> on the left-hand
1130 side. The list of different smart match behaviours had an item in the
1135 Documentation of the ellipsis statement (C<...>) has been reworked and
1136 moved from perlop to perlsyn.
1140 The explanation of bitwise operators has been expanded to explain how they
1141 work on Unicode strings (5.14.1).
1145 More examples for C<m//g> have been added (5.14.1).
1149 The C<<< <<\FOO >>> here-doc syntax has been documented (5.14.1).
1153 =head3 L<perlpragma>
1159 There is now a standard convention for naming keys in the C<%^H>,
1160 documented under L<Key naming|perlpragma/Key naming>.
1164 =head3 L<perlsec/Laundering and Detecting Tainted Data>
1170 The example function for checking for taintedness contained a subtle
1171 error. C<$@> needs to be localized to prevent its changing this
1172 global's value outside the function. The preferred method to check for
1173 this remains L<Scalar::Util/tainted>.
1183 L<perllol> has been expanded with examples using the new C<push $scalar>
1184 syntax introduced in Perl 5.14.0 (5.14.1).
1194 L<perlmod> now states explicitly that some types of explicit symbol table
1195 manipulation are not supported. This codifies what was effectively already
1196 the case [perl #78074].
1200 =head3 L<perlpodstyle>
1206 The tips on which formatting codes to use have been corrected and greatly
1211 There are now a couple of example one-liners for previewing POD files after
1212 they have been edited.
1222 The C<(*COMMIT)> directive is now listed in the right section
1223 (L<Verbs without an argument|perlre/Verbs without an argument>).
1233 L<perlrun> has undergone a significant clean-up. Most notably, the
1234 B<-0x...> form of the B<-0> flag has been clarified, and the final section
1235 on environment variables has been corrected and expanded (5.14.1).
1245 The ($;) prototype syntax, which has existed for rather a long time, is now
1246 documented in L<perlsub>. It allows a unary function to have the same
1247 precedence as a list operator.
1257 The required syntax for tying handles has been documented.
1267 The documentation for L<$!|perlvar/$!> has been corrected and clarified.
1268 It used to state that $! could be C<undef>, which is not the case. It was
1269 also unclear as to whether system calls set C's C<errno> or Perl's C<$!>
1274 Documentation for L<$$|perlvar/$$> has been amended with additional
1275 cautions regarding changing the process ID.
1279 =head3 Other Changes
1285 L<perlxs> was extended with documentation on inline typemaps.
1289 L<perlref> has a new L<Circular References|perlref/Circular References>
1290 section explaining how circularities may not be freed and how to solve that
1291 with weak references.
1295 Parts of L<perlapi> were clarified, and Perl equivalents of some C
1296 functions have been added as an additional mode of exposition.
1300 A few parts of L<perlre> and L<perlrecharclass> were clarified.
1304 =head2 Removed Documentation
1306 =head3 Old OO Documentation
1308 All the old OO tutorials, perltoot, perltooc, and perlboot, have been
1309 removed. The perlbot (bag of object tricks) document has been removed
1312 =head3 Development Deltas
1314 The perldelta files for development releases are no longer packaged with
1315 perl. These can still be found in the perl source code repository.
1319 The following additions or changes have been made to diagnostic output,
1320 including warnings and fatal error messages. For the complete list of
1321 diagnostic messages, see L<perldiag>.
1323 =head2 New Diagnostics
1331 L<Cannot set tied @DB::args|perldiag/"Cannot set tied @DB::args">
1333 This error occurs when C<caller> tries to set C<@DB::args> but finds it
1334 tied. Before this error was added, it used to crash instead.
1338 L<Cannot tie unreifiable array|perldiag/"Cannot tie unreifiable array">
1340 This error is part of a safety check that the C<tie> operator does before
1341 tying a special array like C<@_>. You should never see this message.
1345 L<&CORE::%s cannot be called directly|perldiag/"&CORE::%s cannot be called directly">
1347 This occurs when a subroutine in the C<CORE::> namespace is called
1348 with C<&foo> syntax or through a reference. Some subroutines
1349 in this package cannot yet be called that way, but must be
1350 called as barewords. See L</Subroutines in the C<CORE> namespace>, above.
1354 L<Source filters apply only to byte streams|perldiag/"Source filters apply only to byte streams">
1356 This new error occurs when you try to activate a source filter (usually by
1357 loading a source filter module) within a string passed to C<eval> under the
1358 C<unicode_eval> feature.
1368 L<defined(@array) is deprecated|perldiag/"defined(@array) is deprecated">
1370 The long-deprecated C<defined(@array)> now also warns for package variables.
1371 Previously it only issued a warning for lexical variables.
1375 L<length() used on %s|perldiag/length() used on %s>
1377 This new warning occurs when C<length> is used on an array or hash, instead
1378 of C<scalar(@array)> or C<scalar(keys %hash)>.
1382 L<lvalue attribute %s already-defined subroutine|perldiag/"lvalue attribute %s already-defined subroutine">
1384 L<attributes.pm|attributes> now emits this warning when the :lvalue
1385 attribute is applied to a Perl subroutine that has already been defined, as
1386 doing so can have unexpected side-effects.
1390 L<overload arg '%s' is invalid|perldiag/"overload arg '%s' is invalid">
1392 This warning, in the "overload" category, is produced when the overload
1393 pragma is given an argument it doesn't recognize, presumably a mistyped
1398 L<$[ used in %s (did you mean $] ?)|perldiag/"$[ used in %s (did you mean $] ?)">
1400 This new warning exists to catch the mistaken use of C<$[> in version
1401 checks. C<$]>, not C<$[>, contains the version number.
1405 L<Useless assignment to a temporary|perldiag/"Useless assignment to a temporary">
1407 Assigning to a temporary scalar returned
1408 from an lvalue subroutine now produces this
1409 warning [perl #31946].
1413 L<Useless use of \E|perldiag/"Useless use of \E">
1415 C<\E> does nothing unless preceded by C<\Q>, C<\L> or C<\U>.
1419 =head2 Removed Errors
1425 "sort is now a reserved word"
1427 This error used to occur when C<sort> was called without arguments,
1428 followed by C<;> or C<)>. (E.g., C<sort;> would die, but C<{sort}> was
1429 OK.) This error message was added in Perl 3 to catch code like
1430 C<close(sort)> which would no longer work. More than two decades later,
1431 this message is no longer appropriate. Now C<sort> without arguments is
1432 always allowed, and returns an empty list, as it did in those cases
1433 where it was already allowed [perl #90030].
1437 =head2 Changes to Existing Diagnostics
1443 The "Applying pattern match..." or similar warning produced when an
1444 array or hash is on the left-hand side of the C<=~> operator now
1445 mentions the name of the variable.
1449 The "Attempt to free non-existent shared string" has had the spelling
1450 of "non-existent" corrected to "nonexistent". It was already listed
1451 with the correct spelling in L<perldiag>.
1455 The error messages for using C<default> and C<when> outside of a
1456 topicalizer have been standardised to match the messages for C<continue>
1457 and loop controls. They now read 'Can't "default" outside a
1458 topicalizer' and 'Can't "when" outside a topicalizer'. They both used
1459 to be 'Can't use when() outside a topicalizer' [perl #91514].
1463 The message, "Code point 0x%X is not Unicode, no properties match it;
1464 all inverse properties do" has been changed to "Code point 0x%X is not
1465 Unicode, all \p{} matches fail; all \P{} matches succeed".
1469 Redefinition warnings for constant subroutines used to be mandatory,
1470 even occurring under C<no warnings>. Now they respect the L<warnings>
1475 The "glob failed" warning message is now suppressible via C<no warnings>
1480 The L<Invalid version format|perldiag/"Invalid version format (%s)">
1481 error message now says "negative version number" within the parentheses,
1482 rather than "non-numeric data", for negative numbers.
1487 L<Possible attempt to put comments in qw() list|perldiag/"Possible attempt to put comments in qw() list">
1489 L<Possible attempt to separate words with commas|perldiag/"Possible attempt to separate words with commas">
1490 are no longer mutually exclusive: the same C<qw> construct may produce
1495 The uninitialized warning for C<y///r> when C<$_> is implicit and
1496 undefined now mentions the variable name, just like the non-/r variation
1501 The 'Use of "foo" without parentheses is ambiguous' warning has been
1502 extended to apply also to user-defined subroutines with a (;$)
1503 prototype, and not just to built-in functions.
1507 Warnings that mention the names of lexical (C<my>) variables with
1508 Unicode characters in them now respect the presence or absence of the
1509 C<:utf8> layer on the output handle, instead of outputting UTF8
1510 regardless. Also, the correct names are included in the strings passed
1511 to C<$SIG{__WARN__}> handlers, rather than the raw UTF8 bytes.
1515 =head1 Utility Changes
1523 L<h2ph> used to generate code of the form
1525 unless(defined(&FOO)) {
1529 But the subroutine is a compile-time declaration, and is hence unaffected
1530 by the condition. It has now been corrected to emit a string C<eval>
1531 around the subroutine [perl #99368].
1541 F<splain> no longer emits backtraces with the first line number repeated.
1545 Uncaught exception from user code:
1546 Cannot fwiddle the fwuddle at -e line 1.
1548 main::baz() called at -e line 1
1549 main::bar() called at -e line 1
1550 main::foo() called at -e line 1
1554 Uncaught exception from user code:
1555 Cannot fwiddle the fwuddle at -e line 1.
1556 main::baz() called at -e line 1
1557 main::bar() called at -e line 1
1558 main::foo() called at -e line 1
1562 Some error messages consist of multiple lines that are listed as separate
1563 entries in L<perldiag>. splain has been taught to find the separate
1564 entries in these cases, instead of simply failing to find the message.
1568 =head3 L<zipdetails>
1574 This is a new utility, included as part of an
1575 L<IO::Compress::Base> upgrade.
1577 L<zipdetails> displays information about the internal record structure
1578 of the zip file. It is not concerned with displaying any details of
1579 the compressed data stored in the zip file.
1583 =head1 Configuration and Compilation
1589 The C<-Dusesitecustomize> and C<-Duserelocatableinc> options now work
1594 F<regexp.h> has been modified for compatibility with GCC's B<-Werror>
1595 option, as used by some projects that include perl's header files (5.14.1).
1599 C<USE_LOCALE{,_COLLATE,_CTYPE,_NUMERIC}> have been added the output of perl -V
1600 as they have affect the behaviour of the interpreter binary (albeit only
1605 The code and tests for L<IPC::Open2> have been moved from F<ext/IPC-Open2>
1606 into F<ext/IPC-Open3>, as C<IPC::Open2::open2()> is implemented as a thin
1607 wrapper around C<IPC::Open3::_open3()>, and hence is very tightly coupled to
1612 The magic types and magic vtables are now generated from data in a new script
1613 F<regen/mg_vtable.pl>, instead of being
1614 maintained by hand. As different EBCDIC
1615 variants can't agree on the code point for '~', the character to code point
1616 conversion is done at build time by F<generate_uudmap> to a new generated header
1617 F<mg_data.h>. C<PL_vtbl_bm> and C<PL_vtbl_fm> are now defined by the
1618 pre-processor as C<PL_vtbl_regexp>, instead of being distinct C variables.
1619 C<PL_vtbl_sig> has been removed.
1623 Building with C<-DPERL_GLOBAL_STRUCT>
1624 works again. This configuration is not
1629 Perl configured with I<MAD> now correctly frees C<MADPROP> structures when
1630 OPs are freed. C<MADPROP>s are now allocated with
1631 C<PerlMemShared_malloc()>
1637 XXX Any significant changes to the testing of a freshly built perl should be
1638 listed here. Changes which create B<new> files in F<t/> go here as do any
1639 large changes to the testing harness (e.g. when parallel testing was added).
1640 Changes to existing files in F<t/> aren't worth summarising, although the bugs
1641 that they represent may be covered elsewhere.
1643 [ List each test improvement as a =item entry ]
1653 =head1 Platform Support
1655 XXX Any changes to platform support should be listed in the sections below.
1657 [ Within the sections, list each platform as a =item entry with specific
1658 changes as paragraphs below it. ]
1660 =head2 New Platforms
1662 XXX List any platforms that this version of perl compiles on, that previous
1663 versions did not. These will either be enabled by new files in the F<hints/>
1664 directories, or new subdirectories and F<README> files at the top level of the
1669 =item XXX-some-platform
1675 =head2 Discontinued Platforms
1677 XXX List any platforms that this version of perl no longer compiles on.
1681 =item XXX-some-platform
1687 =head2 Platform-Specific Notes
1695 Since version 1.7, Cygwin supports native UTF-8 paths. If Perl is built
1696 under that environment, directory and filenames will be UTF-8 encoded.
1698 Cygwin does not initialize all original Win32 environment variables. See
1699 F<README.cygwin> for a discussion of the newly-added
1700 C<Cygwin::sync_winenv()> function [perl #110190] and for
1711 Remove unnecessary includes, fix miscellaneous compiler warnings and
1712 close some unclosed comments on F<vms/vms.c>.
1714 Remove sockadapt layer from the VMS build.
1718 Explicit support for VMS versions prior to v7.0 and DEC C versions
1719 prior to v6.0 has been removed.
1723 Since Perl 5.10.1, the home-grown C<stat> wrapper has been unable to
1724 distinguish between a directory name containing an underscore and an
1725 otherwise-identical filename containing a dot in the same position
1726 (e.g., t/test_pl as a directory and t/test.pl as a file). This problem
1731 The build on VMS now allows names of the resulting symbols in C code for
1732 Perl longer than 31 characters. Symbols like
1733 C<Perl__it_was_the_best_of_times_it_was_the_worst_of_times> can now be
1734 created freely without causing the VMS linker to seize up.
1740 Numerous build and test failures on GNU/Hurd have been resolved with hints
1741 for building DBM modules, detection of the library search path, and enabling
1742 of large file support.
1746 Perl is now built with dynamic linking on OpenVOS, the minimum supported
1747 version of which is now Release 17.1.0.
1751 The CC workshop C++ compiler is now detected and used on systems that ship
1754 =head1 Internal Changes
1760 There are now feature bundle hints in C<PL_hints> (C<$^H>) that version
1761 declarations use, to avoid having to load F<feature.pm>. One setting of
1762 the hint bits indicates a "custom" feature bundle, which means that the
1763 entries in C<%^H> still apply. F<feature.pm> uses that.
1765 The C<HINT_FEATURE_MASK> macro is defined in F<perl.h> along with other
1766 hints. Other macros for setting and testing features and bundles are in
1767 the new F<feature.h>. C<FEATURE_IS_ENABLED> (which has moved to
1768 F<feature.h>) is no longer used throughout the codebase, but more specific
1769 macros, e.g., C<FEATURE_SAY_IS_ENABLED>, that are defined in F<feature.h>.
1773 F<lib/feature.pm> is now a generated file, created by the new
1774 F<regen/feature.pl> script, which also generates F<feature.h>.
1778 Tied arrays are now always C<AvREAL>. If C<@_> or C<DB::args> is tied, it
1779 is reified first, to make sure this is always the case.
1783 The C<is_gv_magical_sv> function has been eliminated and merged with
1784 C<gv_fetchpvn_flags>. It used to be called to determine whether a GV
1785 should be autovivified in rvalue context. Now it has been replaced with a
1786 new C<GV_ADDMG> flag (not part of the API).
1790 Padlists are now marked C<AvREAL>; i.e., reference-counted. They have
1791 always been reference-counted, but were not marked real, because F<pad.c>
1792 did its own clean-up, instead of using the usual clean-up code in F<sv.c>.
1793 That caused problems in thread cloning, so now the C<AvREAL> flag is on,
1794 but is turned off in F<pad.c> right before the padlist is freed (after
1795 F<pad.c> has done its custom freeing of the pads).
1799 All the C files that make up the Perl core have been converted to UTF-8.
1803 =head1 Selected Bug Fixes
1805 =head2 Regular expressions and character classes
1811 C</[[:ascii:]]/> and C</[[:blank:]]/> now use locale rules under
1812 C<use locale> when the platform supports that. Previously, they used
1813 the platform's native character set.
1817 C<m/[[:ascii:]]/i> and C</\p{ASCII}/i> now match identically (when not
1818 under a differing locale). This fixes a regression introduced in 5.14
1819 in which the first expression could match characters outside of ASCII,
1820 such as the KELVIN SIGN.
1824 C</.*/g> would sometimes refuse to match at the end of a string that ends
1825 with "\n". This has been fixed [perl #109206].
1829 Starting with 5.12.0, Perl used to get its internal bookkeeping muddled up
1830 after assigning C<${ qr// }> to a hash element and locking it with
1831 L<Hash::Util>. This could result in double frees, crashes or erratic
1836 The new (in 5.14.0) regular expression modifier C</a> when repeated like
1837 C</aa> forbids the characters outside the ASCII range that match
1838 characters inside that range from matching under C</i>. This did not
1839 work under some circumstances, all involving alternation, such as:
1841 "\N{KELVIN SIGN}" =~ /k|foo/iaa;
1843 succeeded inappropriately. This is now fixed.
1847 5.14.0 introduced some memory leaks in regular expression character
1848 classes such as C<[\w\s]>, which have now been fixed. (5.14.1)
1852 An edge case in regular expression matching could potentially loop.
1853 This happened only under C</i> in bracketed character classes that have
1854 characters with multi-character folds, and the target string to match
1855 against includes the first portion of the fold, followed by another
1856 character that has a multi-character fold that begins with the remaining
1857 portion of the fold, plus some more.
1859 "s\N{U+DF}" =~ /[\x{DF}foo]/i
1861 is one such case. C<\xDF> folds to C<"ss">. (5.14.1)
1865 A few characters in regular expression pattern matches did not
1866 match correctly in some circumstances, all involving C</i>. The
1867 affected characters are:
1868 COMBINING GREEK YPOGEGRAMMENI,
1869 GREEK CAPITAL LETTER IOTA,
1870 GREEK CAPITAL LETTER UPSILON,
1871 GREEK PROSGEGRAMMENI,
1872 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA,
1873 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS,
1874 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA,
1875 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS,
1876 LATIN SMALL LETTER LONG S,
1877 LATIN SMALL LIGATURE LONG S T,
1879 LATIN SMALL LIGATURE ST.
1883 A memory leak regression in regular expression compilation
1884 under threading has been fixed.
1888 A regression introduced in 5.13.6 has
1889 been fixed. This involved an inverted
1890 bracketed character class in a regular expression that consisted solely
1891 of a Unicode property. That property wasn't getting inverted outside the
1902 A number of edge cases have been fixed with formats and C<formline>;
1903 in particular, where the format itself is potentially variable (such as
1904 with ties and overloading), and where the format and data differ in their
1905 encoding. In both these cases, it used to possible for the output to be
1906 corrupted [perl #91032].
1910 C<formline> no longer converts its argument into a string in-place. So
1911 passing a reference to C<formline> no longer destroys the reference
1916 =head2 Copy-on-write scalars
1918 Copy-on-write scalars were introduced in 5.8.0, but most Perl code
1919 did not encounter them (they were used mostly internally). Perl
1920 5.10.0 extended them, such that assigning C<__PACKAGE__> or a
1921 hash key to a scalar would make it copy-on-write. Several parts
1922 of Perl were not updated to account for them, but have now been fixed.
1928 C<utf8::decode> had a nasty bug that would modify copy-on-write scalars'
1929 string buffers in place (i.e., skipping the copy). This could result in
1930 hashes having two elements with the same key [perl #91834].
1934 Lvalue subroutines were not allowing COW scalars to be returned. This was
1935 fixed for lvalue scalar context in Perl 5.12.3 and 5.14.0, but list context
1936 was not fixed until this release.
1940 Elements of restricted hashes (see the L<fields> pragma) containing
1941 copy-on-write values couldn't be deleted, nor could such hashes be cleared
1946 Localising a tied variable used to make it read-only if it contained a
1947 copy-on-write string.
1951 L<Storable>, L<Devel::Peek> and L<PerlIO::scalar> had similar problems.
1952 See L</Updated Modules and Pragmata>, above.
1954 XXX That section is empty.
1958 =head2 Lvalue subroutines
1960 There have been various fixes to lvalue subroutines.
1966 Explicit return now returns the actual argument passed to return, instead
1967 of copying it [perl #72724, #72706].
1971 Lvalue subroutines used to enforce lvalue syntax (i.e., whatever can go on
1972 the left-hand side of C<=>) for the last statement and the arguments to
1973 return. Since lvalue subroutines are not always called in lvalue context,
1974 this restriction has been lifted.
1978 Lvalue subroutines are less restrictive as to what values can be returned.
1979 It used to croak on values returned by C<shift> and C<delete> and from
1980 other subroutines, but no longer does so [perl #71172].
1984 Empty lvalue subroutines (C<sub :lvalue {}>) used to return C<@_> in list
1985 context. In fact, all subroutines used to, but regular subs were fixed in
1986 Perl 5.8.2. Now lvalue subroutines have been likewise fixed.
1990 Autovivification now works on values returned from lvalue subroutines
1991 [perl #7946], as does returning C<keys> in lvalue context.
1995 Lvalue subroutines used to copy their return values in rvalue context. Not
1996 only was this a waste of CPU cycles, but it also caused bugs. A C<($)>
1997 prototype would cause an lvalue sub to copy its return value [perl #51408],
1998 and C<while(lvalue_sub() =~ m/.../g) { ... }> would loop endlessly
2003 When called in potential lvalue context
2004 (e.g., subroutine arguments or a list
2005 passed to C<for>), lvalue subroutines used to copy
2006 any read-only value that was returned. E.g., C< sub :lvalue { $] } >
2007 would not return C<$]>, but a copy of it.
2011 When called in potential lvalue context, an lvalue subroutine returning
2012 arrays or hashes used to bind the arrays or hashes to scalar variables,
2013 resulting in bugs. This was fixed in 5.14.0 if an array were the first
2014 thing returned from the subroutine (but not for C<$scalar, @array> or
2015 hashes being returned). Now a more general fix has been applied
2020 Method calls whose arguments were all surrounded with C<my()> or C<our()>
2021 (as in C<< $object->method(my($a,$b)) >>) used to force lvalue context on
2022 the subroutine. This would prevent lvalue methods from returning certain
2027 Lvalue sub calls that are not determined to be such at compile time
2028 (C<&$name> or &{"name"}) are no longer exempt from strict refs if they
2029 occur in the last statement of an lvalue subroutine [perl #102486].
2033 Sub calls whose subs are not visible at compile time, if
2034 they occurred in the last statement of an lvalue subroutine,
2035 would reject non-lvalue subroutines and die with "Can't modify non-lvalue
2036 subroutine call" [perl #102486].
2038 Non-lvalue sub calls whose subs I<are> visible at compile time exhibited
2039 the opposite bug. If the call occurred in the last statement of an lvalue
2040 subroutine, there would be no error when the lvalue sub was called in
2041 lvalue context. Perl would blindly assign to the temporary value returned
2042 by the non-lvalue subroutine.
2046 C<AUTOLOAD> routines used to take precedence over the actual sub being
2047 called (i.e., when autoloading wasn't needed), for sub calls in lvalue or
2048 potential lvalue context, if the subroutine was not visible at compile
2053 Applying the C<:lvalue> attribute to an XSUB or to an aliased subroutine
2054 stub with C<< sub foo :lvalue; >> syntax stopped working in Perl 5.12.
2055 This has been fixed.
2059 Applying the :lvalue attribute to subroutine that is already defined does
2060 not work properly, as the attribute changes the way the sub is compiled.
2061 Hence, Perl 5.12 began warning when an attempt is made to apply the
2062 attribute to an already defined sub. In such cases, the attribute is
2065 But the change in 5.12 missed the case where custom attributes are also
2066 present: that case still silently and ineffectively applied the attribute.
2067 That omission has now been corrected. C<sub foo :lvalue :Whatever> (when
2068 C<foo> is already defined) now warns about the :lvalue attribute, and does
2073 A bug affecting lvalue context propagation through nested lvalue subroutine
2074 calls has been fixed. Previously, returning a value in nested rvalue
2075 context would be treated as lvalue context by the inner subroutine call,
2076 resulting in some values (such as read-only values) being rejected.
2080 =head2 Compile-time hints
2086 Tying C<%^H> no longer causes perl to crash or ignore the contents of
2087 C<%^H> when entering a compilation scope [perl #106282].
2091 C<eval $string> and C<require> used not to
2092 localise C<%^H> when compiling its argument if it
2093 was empty at the time the C<eval> call itself was compiled. This could
2094 lead to scary side effects, like C<use re "/m"> enabling other flags that
2095 the surrounding code was trying to enable for its caller [perl #68750].
2099 C<eval $string> and C<require> no longer localise hints (C<$^H> and C<%^H>)
2100 at run time, but only during compilation of the $string or required file.
2101 This makes C<BEGIN { $^H{foo}=7 }> equivalent to
2102 C<BEGIN { eval '$^H{foo}=7' }> [perl #70151].
2106 Creating a BEGIN block from XS code (via C<newXS> or C<newATTRSUB>) would,
2107 on completion, make the hints of the current compiling code the current
2108 hints. This could cause warnings to occur in a non-warning scope.
2112 =head2 Fixes related to hashes and arrays
2118 A bug has been fixed that would cause a "Use of freed value in iteration"
2119 error if the next two hash elements that would be iterated over are
2120 deleted [perl #85026]. (5.14.1)
2124 Deleting the current hash iterator (the hash element that would be returend
2125 by the next call to C<each>) in void context used not to free it
2130 Deletion of methods via C<delete $Class::{method}> syntax used to update
2131 method caches if called in void context, but not scalar or list context.
2135 When hash elements are deleted in void context, the internal hash entry is
2136 now freed before the value is freed, to prevent destructors called by that
2137 latter freeing from seeing the hash in an inconsistent state. It was
2138 possible to cause double-frees if the destructor freed the hash itself
2143 A C<keys> optimisation in Perl 5.12.0 to make it faster on empty hashes
2144 caused C<each> not to reset the iterator if called after the last element
2149 Freeing deeply nested hashes no longer crashes [perl #44225].
2153 It is possible from XS code to create hashes with elements that have no
2154 values. The hash element and slice operators used to crash
2155 when handling these in lvalue context. They now
2156 produce a "Modification of non-creatable hash value attempted" error
2161 If list assignment to a hash or array triggered destructors that freed the
2162 hash or array itself, a crash would ensue. This is no longer the case
2167 It used to be possible to free the typeglob of a localised array or hash
2168 (e.g., C<local @{"x"}; delete $::{x}>), resulting in a crash on scope exit.
2172 =head2 Weak references
2178 Weakening the first argument to an automatically-invoked C<DESTROY> method
2179 could result in erroneous "DESTROY created new reference" errors or
2180 crashes. Now it is an error to weaken a read-only reference.
2184 Weak references to lexical hashes going out of scope were not going stale
2185 (becoming undefined), but continued to point to the hash.
2189 Weak references to lexical variables going out of scope are now broken
2190 before any magical methods (e.g., DESTROY on a tie object) are called.
2191 This prevents such methods from modifying the variable that will be seen
2192 the next time the scope is entered.
2196 Creating a weak reference to an @ISA array or accessing the array index
2197 (C<$#ISA>) could result in confused internal bookkeeping for elements
2198 subsequently added to the @ISA array. For instance, creating a weak
2199 reference to the element itself could push that weak reference on to @ISA;
2200 and elements added after use of C<$#ISA> would be ignored by method lookup
2205 =head2 Support for embedded nulls
2207 Some parts of Perl did not work correctly with nulls (C<chr 0>) embedded in
2208 strings. That meant that, for instance, C<< $m = "a\0b"; foo->$m >> would
2209 call the "a" method, instead of the actual method name contained in $m.
2210 These parts of perl have been fixed to support nulls:
2220 Typeglob names (including filehandle and subroutine names)
2224 Package names, including the return value of C<ref()>
2228 Typeglob elements (C<*foo{"THING\0stuff"}>)
2236 Various warnings and error messages that mention variable names or values,
2241 One side effect of these changes is that blessing into "\0" no longer
2242 causes C<ref()> to return false.
2244 =head2 Filetests and C<stat>
2246 The term "filetests" refers to the operators that consist of a hyphen
2247 followed by a single letter: C<-r>, C<-x>, C<-M>, etc. The term "stacked"
2248 when applied to filetests means followed by another filetest operator
2249 sharing the same operand, as in C<-r -x -w $fooo>.
2255 C<stat> produces more consistent warnings. It no longer warns for "_"
2256 [perl #71002] and no longer skips the warning at times for other unopened
2261 C<-T _> with no preceding C<stat> used to produce a
2262 confusing "uninitialized" warning, even though there
2263 is no visible uninitialized value to speak of.
2267 C<-T>, C<-B> and C<-t> now work when stacked with other filetest operators
2272 Stacked filetest operators now only call FETCH once on a tied argument.
2276 Perl keeps several internal variables to keep track of the last stat
2277 buffer, from which file(handle) it originated, what type it was, and
2278 whether the last stat succeeded.
2280 There were various cases where these could get out of synch, resulting in
2281 inconsistent or erratic behaviour in edge cases (every mention of C<-T>
2282 applies to C<-B> as well):
2288 C<-T I<HANDLE>>, even though it does a C<stat>, was not resetting the last
2289 stat type, so an C<lstat _> following it would merrily return the wrong
2290 results. Also, it was not setting the success status.
2294 Freeing the handle last used by C<stat> or a filetest could result in
2295 S<C<-T _>> using an unrelated handle.
2299 C<stat> with an IO reference would not reset the stat type or record the
2300 filehandle for S<C<-T _>> to use.
2304 Fatal warnings could cause the stat buffer not to be reset
2305 for a filetest operator on an unopened filehandle or C<-l> on any handle.
2306 Fatal warnings also stopped C<-T> from setting C<$!>.
2310 When the last stat was on an unreadable file, C<-T _> is supposed to
2311 return C<undef>, leaving the last stat buffer unchanged. But it was
2312 setting the stat type, causing C<lstat _> to stop working.
2316 C<-T I<FILENAME>> was not resetting the internal stat buffers for
2321 These have all been fixed.
2325 C<stat I<HANDLE>> and fstat failures
2327 If the operating system's C<fstat> function failed, C<stat> would warn
2328 about an unopened handle, even though that was not the case. This has been
2335 C<lstat> is documented to fall back to C<stat> (with a warning) when given
2336 a filehandle. When passed an IO reference, it was actually doing the
2337 equivalent of S<C<stat _>> and ignoring the handle.
2341 stat() would always return the inode number as an IV, even when the
2342 original was unsigned, or too large to fit in an IV. stat() now
2343 returns the inode number as the type that would best preserve the
2344 original value. [perl #84590]
2348 In 5.14.0, filetest ops (C<-r>, C<-x>, etc.) started calling FETCH on a
2349 tied argument belonging to the previous argument to a list operator, if
2350 called with a bareword argument or no argument at all. This has been
2351 fixed, so C<push @foo, $tied, -r> no longer calls FETCH on C<$tied>.
2355 Stacked C<-l> (followed immediately by other filetest operators) did not
2356 work previously; now it does. It is only permitted when the rightmost
2357 filetest op has the special "_" handle for its argument and the most
2358 recent C<stat>/C<lstat> call was an C<lstat>.
2362 In Perl 5.6, C<-l> followed by anything other than a bareword would treat
2363 its argument as a file name. That was changed in 5.8 for glob references
2364 (C<\*foo>), but not for globs themselves (C<*foo>). C<-l> started
2365 returning C<undef> for glob references without setting the last
2366 stat buffer that the "_" handle uses, but only if warnings
2367 were turned on. With warnings off, it was the same as 5.6.
2368 In other words, it was simply buggy and inconsistent. Now the 5.6
2369 behaviour has been restored.
2373 =head2 Other notable fixes
2379 Last-accessed filehandle
2381 Perl has an internal variable that stores the last filehandle to be
2382 accessed. It is used by C<$.> and by C<tell> and C<eof> without
2385 It used to be possible to set this internal variable to a glob copy and
2386 then modify that glob copy to be something other than a glob, and still
2387 have the last-accessed filehandle associated with the variable after
2388 assigning a glob to it again:
2390 my $foo = *STDOUT; # $foo is a glob copy
2391 <$foo>; # $foo is now the last-accessed handle
2392 $foo = 3; # no longer a glob
2393 $foo = *STDERR; # still the last-accessed handle
2395 Now the C<$foo = 3> assignment unsets that internal variable, so there
2396 is no last-accessed filehandle, just as if C<< <$foo> >> had never
2401 C<~~> now correctly handles the precedence of Any~~Object, and is not tricked
2402 by an overloaded object on the left-hand side.
2406 C<quotemeta> now quotes consistently the same non-ASCII characters under
2407 C<use feature 'unicode_strings'>, regardless of whether the string is
2408 encoded in UTF-8 or not, hence fixing the last vestiges (we hope) of the
2409 infamous L<perlunicode/The "Unicode Bug">. [perl #77654].
2411 Which of these code points is quoted has changed, based on Unicode's
2412 recommendations. See L<perlfunc/quotemeta> for details.
2418 The bitwise complement operator (and possibly other operators, too) when
2419 passed a vstring would leave vstring magic attached to the return value,
2420 even though the string had changed. This meant that
2421 C<< version->new(~v1.2.3) >> would create a version looking like "v1.2.3"
2422 even though the string passed to C<< version->new >> was actually
2423 "\376\375\374". This also caused L<B::Deparse> to deparse C<~v1.2.3>
2424 incorrectly, without the C<~> [perl #29070].
2428 Vstrings blowing away magic
2430 Assigning a vstring to a magic (e.g., tied, C<$!>) variable and then
2431 assigning something else used to blow away all the magic. This meant that
2432 tied variables would come undone, C<$!> would stop getting updated on
2433 failed system calls, C<$|> would stop setting autoflush, and other
2434 mischief would take place. This has been fixed.
2438 C<newHVhv> and tied hashes
2440 The C<newHVhv> XS function now works on tied hashes, instead of crashing or
2441 returning an empty hash.
2445 No warning for C<open(foo::bar)>
2447 When one writes C<open foo || die>, which used to work in Perl 4, a
2448 "Precedence problem" warning is produced. This warning used erroneously to
2449 apply to fully-qualified bareword handle names not followed by C<||>. This
2454 C<select> and package aliasing
2456 After package aliasing (C<*foo:: = *bar::>), C<select> with 0 or 1 argument
2457 would sometimes return a name that could not be used to refer to the
2458 filehandle, or sometimes it would return C<undef> even when a filehandle
2459 was selected. Now it returns a typeglob reference in such cases.
2463 C<PerlIO::get_layers> and tied variables
2465 C<PerlIO::get_layers> no longer ignores FETCH on tied variables as it used
2466 to most of the time [perl #97956].
2470 C<PerlIO::get_layers> and numbers
2472 C<PerlIO::get_layers> no longer ignores some arguments that it thinks are
2473 numeric, while treating others as filehandle names. It is now consistent
2474 for flat scalars (i.e., not references).
2478 C<caller> and tied C<@DB::args>
2480 C<caller> sets C<@DB::args> to the subroutine arguments when called from
2481 the DB package. It used to crash when doing so if C<@DB::args> happened to
2482 be tied. Now it croaks instead.
2488 Under debugging builds, this code:
2490 sub TIEARRAY{bless[]}
2496 use to produce an "av_reify called on tied array" warning. It doesn't any
2501 Unrecognised switches on C<#!> line
2503 If a switch, such as B<-x>, that cannot occur on the C<#!> line is used
2504 there, perl dies with "Can't emulate...".
2506 It used to produce the same message for switches that perl did not
2507 recognise at all, whether on the command line or the C<#!> line.
2509 Now it produces the "Unrecognized switch" error message [perl #104288].
2513 C<system> and SIGCHLD
2515 C<system> now temporarily blocks the SIGCHLD signal handler, to prevent the
2516 signal handler from stealing the exit status [perl #105700].
2520 C<(s)printf>'s %n formatting code
2522 The %n formatting code, which causes the number of characters to be
2523 assigned to the next argument to C<printf> or C<sprintf> now actually
2524 assigns the number of characters, instead of the number of bytes.
2526 It also works now with special lvalue functions like C<substr> and with
2527 nonexistent hash and array elements [perl #3471, #103492].
2531 Typeglobs and threads
2533 Typeglobs returned from threads are no longer cloned if the parent thread
2534 already has a glob with the same name. This means that returned
2535 subroutines will now assign to the right package variables [perl #107366].
2541 In Perl 5.14, C<local $_> was changed to create a new variable not tied to
2542 anything, even if $_ was tied before that. But, due to an oversight, it
2543 would still call FETCH once on a tied $_ before replacing it with the new
2544 variable. This has been fixed [perl #105912].
2548 Returning tied variables
2550 When returning a value from a non-lvalue subroutine, Perl copies the value.
2551 Sometimes it cheats for the sake of speed, and does not copy the value if
2552 it makes no observable difference. This optimisation was erroneously
2553 allowing the copy to be skipped on tied variables, causing a difference in
2554 behaviour depending on the tied variable's reference count. This has been
2555 fixed [perl #95548].
2559 C<utf8::decode> now refuses to modify read-only scalars [perl #91850].
2563 C<dbmopen> with undefined mode
2565 C<dbmopen> now only warns once, rather than three times, if the mode
2566 argument is C<undef> [perl #90064].
2570 DELETE on scalar ties
2572 Tying an element of %ENV or C<%^H> and then deleting that element would
2573 result in a call to the tie object's DELETE method, even though tying the
2574 element itself is supposed to be equivalent to tying a scalar (the element
2575 is, of course, a scalar) [perl #67490].
2579 Freeing $_ inside C<grep> or C<map>
2581 Freeing $_ inside a C<grep> or C<map> block or a code block embedded in a
2582 regular expression used to result in double frees [perl #92254, #92256].
2588 The C<+=> operator does not usually warn when the left-hand side is
2589 C<undef>, but it was doing so for tied variables. This has been fixed
2594 Tying and autovivification
2596 When Perl autovivifies an element of a tied array or hash (which entails
2597 calling STORE with a new reference), it now calls FETCH immediately after
2598 the STORE, instead of assuming that FETCH would have returned the same
2599 reference. This can make it easier to implement tied objects [perl #35865, #43011].
2605 Mentioning a variable named "&" other than C<$&> (i.e., C<@&> or C<%&>) no
2606 longer stops C<$&> from working. The same applies to variables named "'"
2607 and "`" [perl #24237].
2611 Bitwise assignment operators and copy-on-write
2613 In 5.14.0, the bitwise assignment operators C<|=>, C<^=> and C<&=> started
2614 leaving the left-hand side undefined if it happened to be a copy-on-write
2615 string. This has been fixed [perl #108480].
2619 Three problematic Unicode characters now work better in regex pattern matching under C</i>
2621 In the past, three Unicode characters:
2622 LATIN SMALL LETTER SHARP S,
2623 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS,
2625 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS,
2626 along with the sequences that they fold to
2627 (including "ss" in the case of LATIN SMALL LETTER SHARP S),
2628 did not properly match under C</i>. 5.14.0 fixed some of these cases,
2629 but introduced others, including a panic when one of the characters or
2630 sequences was used in the C<(?(DEFINE)> regular expression predicate.
2631 The known bugs that were introduced in 5.14 have now been fixed; as well
2632 as some other edge cases that have never worked until now. All these
2633 involve using the characters and sequences outside bracketed character
2634 classes under C</i>. This closes [perl #98546].
2636 There remain known problems when using certain characters with
2637 multi-character folds inside bracketed character classes, including such
2638 constructs as C<qr/[\N{LATIN SMALL LETTER SHARP}a-z]/i>. These
2639 remaining bugs are addressed in [perl #89774].
2643 RT #78266: The regex engine has been leaking memory when accessing
2644 named captures that weren't matched as part of a regex ever since 5.10
2645 when they were introduced, e.g. this would consume over a hundred MB of
2648 for (1..10_000_000) {
2649 if ("foo" =~ /(foo|(?<capture>bar))?/) {
2650 my $capture = $+{capture}
2653 system "ps -o rss $$"'
2657 A constant subroutine assigned to a glob whose name contains a null
2658 will no longer cause extra globs to pop into existence when the
2659 constant is referenced under its new name.
2663 C<sort> was not treating C<sub {}> and C<sub {()}> as equivalent when
2664 such a sub was provided as the comparison routine. It used to croak on
2669 Subroutines from the C<autouse> namespace are once more exempt from
2670 redefinition warnings. This used to work in 5.005, but was broken in
2671 5.6 for most subroutines. For subs created via XS that redefine
2672 subroutines from the C<autouse> package, this stopped working in 5.10.
2676 New XSUBs now produce redefinition warnings if they overwrite existing
2677 subs, as they did in 5.8.x. (The C<autouse> logic was reversed in
2678 5.10-14. Only subroutines from the C<autouse> namespace would warn
2683 C<newCONSTSUB> used to use compile-time warning hints, instead of
2684 run-time hints. The following code should never produce a redefinition
2685 warning, but it used to, if C<newCONSTSUB> redefined an existing
2691 some_XS_function_that_calls_new_CONSTSUB();
2696 Redefinition warnings for constant subroutines are on by default (what
2697 are known as severe warnings in L<perldiag>). This was only the case
2698 when it was a glob assignment or declaration of a Perl subroutine that
2699 caused the warning. If the creation of XSUBs triggered the warning, it
2700 was not a default warning. This has been corrected.
2704 The internal check to see whether a redefinition warning should occur
2705 used to emit "uninitialized" warnings in cases like this:
2707 use warnings "uninitialized";
2708 use constant {u => undef, v => undef};
2714 A bug fix in Perl 5.14 introduced a new bug, causing "uninitialized"
2715 warnings to report the wrong variable if the operator in question had
2716 two operands and one was C<%{...}> or C<@{...}>. This has been fixed
2721 C<< version->new("version") >> and C<printf "%vd", "version"> no longer
2722 crash [perl #102586].
2726 C<$tied =~ y/a/b/>, C<chop $tied> and C<chomp $tied> now call FETCH
2727 just once when $tied holds a reference.
2731 Four-argument C<select> now always calls FETCH on tied arguments. It
2732 used to skip the call if the tied argument happened to hold C<undef> or
2737 Four-argument C<select> no longer produces its "Non-string passed as
2738 bitmask" warning on tied or tainted variables that are strings.
2742 C<sysread> now always calls FETCH on the buffer passed to it if the
2743 buffer is tied. It used to skip the call if the tied variable happened
2748 C<< $tied .= <> >> now calls FETCH once on C<$tied>. It used to call
2749 it multiple times if the last value assigned to or returned from the
2750 tied variable was anything other than a string or typeglob.
2754 Return value of C<eval>
2756 C<eval> returns C<undef> in scalar context or an empty list in list
2757 context when there is a run-time error. When C<eval> was passed a
2758 string in list context and a syntax error occurred, it used to return a
2759 list containing a single undefined element. Now it returns an empty
2760 list in list context for all errors [perl #80630].
2764 C<goto &func> no longer crashes, but produces an error message, when
2765 the unwinding of the current subroutine's scope fires a destructor that
2766 undefines the subroutine being "goneto" [perl #99850].
2770 Arithmetic assignment (C<$left += $right>) involving overloaded objects
2771 that rely on the 'nomethod' override no longer segfault when the left
2772 operand is not overloaded.
2776 Assigning C<__PACKAGE__> or any other shared hash key scalar to a stash
2777 element no longer causes a double free. Regardless of this change, the
2778 results of such assignments are still undefined.
2782 Assigning C<__PACKAGE__> or another shared hash key string to a
2783 variable no longer stops that variable from being tied if it happens to
2784 be a PVMG or PVLV internally.
2788 Creating a C<UNIVERSAL::AUTOLOAD> sub no longer stops C<%+>, C<%-> and
2789 C<%!> from working some of the time [perl #105024].
2793 When presented with malformed UTF-8 input, the XS-callable functions
2794 C<is_utf8_string()>, C<is_utf8_string_loc()>, and
2795 C<is_utf8_string_loclen()> could read beyond the end of the input
2796 string by up to 12 bytes. This no longer happens. [perl #32080].
2797 However, currently, C<is_utf8_char()> still has this defect, see
2798 L</is_utf8_char()> above.
2802 Doing a substitution on a tied variable returning a copy-on-write
2803 scalar used to cause an assertion failure or an "Attempt to free
2804 nonexistent shared string" warning.
2808 The debugger no longer tries to do C<local $_> when dumping data
2813 Calling C<readline($fh)> where $fh is a glob copy (e.g., after C<$fh =
2814 *STDOUT>), assigning something other than a glob to $fh, and then
2815 freeing $fh (e.g., by leaving the scope where it is defined) no longer
2816 causes the internal variable used by C<$.> (C<PL_last_in_gv>) to point
2817 to a freed scalar, that could be reused for some other glob, causing
2818 C<$.> to use some unrelated filehandle [perl #97988].
2822 A regression in 5.14 caused these statements not to set the internal
2823 variable that holds the handle used by C<$.>:
2834 This is now fixed, but C<tell *{ *$fh }> still has the problem, and it
2835 is not clear how to fix it [perl #106536].
2839 Version comparisons, such as those that happen implicitly with C<use
2840 v5.43>, no longer cause locale settings to change [perl #105784].
2844 Perl now holds an extra reference count on the package that code is
2845 currently compiling in. This means that the following code no longer crashes [perl #101486]:
2848 BEGIN {*Foo:: = *Bar::}
2853 F<dumpvar.pl>, and consequently the C<x> command in the debugger, have been
2854 fixed to handle objects blessed into classes whose names contain "=". The
2855 contents of such objects used not to be dumped [perl #101814].
2859 The C<x> repetition operator no longer crashes on 64-bit builds with large
2860 repeat counts [perl #94560].
2864 On OSes other than VMS, Perl's C<glob> operator (and the C<< <...> >> form)
2865 use L<File::Glob> underneath. L<File::Glob> splits the pattern into words,
2866 before feeding each word to its C<bsd_glob> function.
2868 There were several inconsistencies in the way the split was done. Now
2869 quotation marks (' and ") are always treated as shell-style word delimiters
2870 (that allow whitespace as part of a word) and backslashes are always
2871 preserved, unless they exist to escape quotation marks. Before, those
2872 would only sometimes be the case, depending on whether the pattern
2873 contained whitespace. Also, escaped whitespace at the end of the pattern
2874 is no longer stripped [perl #40470].
2878 C<CORE::glob> now works as a way to call the default globbing function. It
2879 used to respect overrides, despite the C<CORE::> prefix.
2883 In 5.14, C</[[:lower:]]/i> and C</[[:upper:]]/i> no longer matched the
2884 opposite case. This has been fixed [perl #101970].
2888 A regular expression match with an overloaded object on the right-hand side
2889 would in some cases stringify the object too many times.
2893 The C-level C<pregcomp> function could become confused as to whether the
2894 pattern was in UTF8 if the pattern was an overloaded, tied, or otherwise
2895 magical scalar [perl #101940].
2899 A regression has been fixed that was introduced in 5.14, in C</i>
2900 regular expression matching, in which a match improperly fails if the
2901 pattern is in UTF-8, the target string is not, and a Latin-1 character
2902 precedes a character in the string that should match the pattern.
2907 The C<#line 42 foo> directive used not to update the arrays of lines used
2908 by the debugger if it occurred in a string eval. This was partially fixed
2909 in 5.14, but it only worked for a single C<#line 42 foo> in each eval. Now
2910 it works for multiple.
2914 When subroutine calls are intercepted by the debugger, the name of the
2915 subroutine or a reference to it is stored in C<$DB::sub>, for the debugger
2916 to access. In some cases (such as C<$foo = *bar; undef *bar; &$foo>)
2917 C<$DB::sub> would be set to a name that could not be used to find the
2918 subroutine, and so the debugger's attempt to call it would fail. Now the
2919 check to see whether a reference is needed is more robust, so those
2920 problems should not happen anymore [rt.cpan.org #69862].
2924 Localising a tied scalar that returns a typeglob no longer stops it from
2925 being tied till the end of the scope.
2929 When C<open> is called with three arguments, the third being a file handle
2930 (as in C<< open $fh, ">&", $fh2 >>), if the third argument is tied or a
2931 reference to a tied variable, FETCH is now called exactly once, instead of
2932 0, 2, or 3 times (all of which could occur in various circumstances).
2936 C<sort> no longer ignores FETCH when passed a reference to a tied glob for
2937 the comparison routine.
2941 Warnings emitted by C<sort> when a custom comparison routine returns a
2942 non-numeric value now show the line number of the C<sort> operator, rather
2943 than the last line of the comparison routine. The warnings also occur now
2944 only if warnings are enabled in the scope where C<sort> occurs. Previously
2945 the warnings would occur if enabled in the comparison routine's scope.
2949 C<Internals::SvREFCNT> now behaves consistently in 'get' and 'set' scenarios
2950 [perl #103222] and also treats the reference count as unsigned.
2954 Calling C<require> on an implicit C<$_> when C<*CORE::GLOBAL::require> has
2955 been overridden does not segfault anymore, and C<$_> is now passed to the
2956 overriding subroutine [perl #78260].
2960 In Perl 5.14.0, C<$tainted ~~ @array> stopped working properly. Sometimes
2961 it would erroneously fail (when C<$tainted> contained a string that occurs
2962 in the array I<after> the first element) or erroneously succeed (when
2963 C<undef> occurred after the first element) [perl #93590].
2967 C<use> and C<require> are no longer affected by the I/O layers active in
2968 the caller's scope (enabled by L<open.pm|open>) [perl #96008].
2972 Errors that occur when methods cannot be found during overloading now
2973 mention the correct package name, as they did in 5.8.x, instead of
2974 erroneously mentioning the "overload" package, as they have since 5.10.0.
2978 Undefining C<%overload::> no longer causes a crash.
2982 C<our $::Ć©; $Ć©> (which is invalid) no longer produces the "Compilation
2983 error at lib/utf8_heavy.pl..." error message, which it started emitting in
2984 5.10.0 [perl #99984].
2988 In case-insensitive regular expression pattern matching, no longer on
2989 UTF-8 encoded strings does the scan for the start of match only look at
2990 the first possible position. This caused matches such as
2991 C<"f\x{FB00}" =~ /ff/i> to fail.
2995 On 64-bit systems, C<read()> now understands large string offsets beyond
3000 Errors that occur when processing subroutine attributes no longer cause the
3001 subroutine's op tree to leak.
3005 C<sort> now works once more with custom sort routines that are XSUBs. It
3006 stopped working in 5.10.0.
3010 C<sort> with a constant for a custom sort routine, although it produces
3011 unsorted results, no longer crashes. It started crashing in 5.10.0.
3015 Warnings produced when a custom sort routine returns a non-numeric value
3016 now contain "in sort"; e.g., "Use of uninitialized value in sort".
3020 C<< sort { $a <=> $b } >>, which is optimised internally, now produces
3021 "uninitialized" warnings for NaNs (not-a-number values), since C<< <=> >>
3022 returns C<undef> for those. This brings it in line with
3023 S<C<< sort { 1; $a <=> $b } >>> and other more complex cases, which are not
3024 optimised [perl #94390].
3028 C<..> and C<...> in list context now call FETCH only once on tied
3029 arguments, instead of three or four times [perl #53554].
3033 C<..> and C<...> in list context now mention the name of the variable in
3034 "uninitialized" warnings for string (as opposed to numeric) ranges.
3038 Passing the same constant subroutine to both C<index> and C<formline> no
3039 longer causes one or the other to fail [perl #89218]. (5.14.1)
3043 List assignment to lexical variables declared with attributes in the same
3044 statement (C<my ($x,@y) : blimp = (72,94)>) stopped working in Perl 5.8.0.
3045 It has now been fixed.
3049 Perl 5.10.0 introduced some faulty logic that made "U*" in the middle of
3050 a pack template equivalent to "U0" if the input string was empty. This has
3051 been fixed [perl #90160].
3055 Destructors on objects were not called during global destruction on objects
3056 that were not referenced by any scalars. This could happen if an array
3057 element were blessed (e.g., C<bless \$a[0]>) or if a closure referenced a
3058 blessed variable (C<bless \my @a; sub foo { @a }>).
3060 Now there is an extra pass during global destruction to fire destructors on
3061 any objects that might be left after the usual passes that check for
3062 objects referenced by scalars [perl #36347].
3064 This bug fix was added in Perl 5.13.9, but caused problems with some CPAN
3065 modules that were relying on the bug. Since it was so close to Perl
3066 5.14.0, the fix was reverted in 5.13.10, to allow more time for the modules
3067 to adapt. Hopefully they will be fixed soon (see L</Known Problems>,
3072 C<given> was not calling set-magic on the implicit lexical C<$_> that it
3073 uses. This meant, for example, that C<pos> would be remembered from one
3074 execution of the same C<given> block to the next, even if the input were a
3075 different variable [perl #84526].
3079 The "R" command for restarting a debugger session has been fixed to work on
3080 Windows, or any other system lacking a C<POSIX::_SC_OPEN_MAX> constant
3085 Fixed a case where it was possible that a freed buffer may have been read
3086 from when parsing a here document [perl #90128]. (5.14.1)
3090 The C<study> function could become confused if fed a string longer than
3091 2**31 characters. Now that it's a no-op, it can't.
3095 C<each(I<ARRAY>)> is now wrapped in C<defined(...)>, like C<each(I<HASH>)>,
3096 inside a C<while> condition [perl #90888].
3100 In @INC filters (subroutines returned by subroutines in @INC), $_ used to
3101 misbehave: If returned from a subroutine, it would not be copied, but the
3102 variable itself would be returned; and freeing $_ (e.g., with C<undef *_>)
3103 would cause perl to crash. This has been fixed [perl #91880].
3107 An ASCII single quote (') in a symbol name is meant to be equivalent to a
3108 double colon (::) except at the end of the name. It was not equivalent if
3109 followed by a null character, but now it is [perl #88138].
3113 The abbreviations for four C1 control characters C<MW> C<PM>, C<RI>, and
3114 C<ST> were previously unrecognized by C<\N{}>, vianame(), and
3119 Some cases of threads crashing due to memory allocation during cloning have
3120 been fixed [perl #90006].
3124 Attempting to C<goto> out of a tied handle method used to cause memory
3125 corruption or crashes. Now it produces an error message instead
3130 Perl skips copying values returned from a subroutine if it thinks the value
3131 is not in use elsewhere. Due to faulty logic, this would happen with the
3132 result of C<delete>, C<shift> or C<splice>, even if the result was
3133 referenced elsewhere. So C<< \sub { delete $_[0] }->($x) >> would return a
3134 reference to C<$x>. This has been fixed [perl #91844].
3138 The C<prototype> function no longer dies for the C<__FILE__>, C<__LINE__>
3139 and C<__PACKAGE__> directives. It now returns an empty-string prototype
3140 for them, because they are syntactically very similar to nullary functions
3145 C<prototype> now returns C<undef> for all overridable infix operators,
3146 such as C<eq>, which are not callable in any way resembling functions.
3147 It used to return incorrect prototypes for some and die for others
3152 Some core bugs affecting L<Hash::Util> have been fixed: locking a hash
3153 element that is a glob copy no longer causes subsequent assignment to it to
3154 corrupt the glob, and unlocking a hash element that holds a copy-on-write
3155 scalar no longer causes modifications to that scalar to modify other
3156 scalars that were sharing the same string buffer.
3160 C<when> blocks are now capable of returning variables declared inside the
3161 enclosing C<given> block [perl #93548].
3165 A problem with context propagation when a C<do> block is an argument to
3166 C<return> has been fixed. It used to cause C<undef> to be returned in
3167 some cases of a C<return> inside an C<if> block which itself is followed by
3172 Calling C<index> with a tainted constant no longer causes constants in
3173 subsequently compiled code to become tainted [perl #64804].
3177 Use of lexical (C<my>) variables in code blocks embedded in regular
3178 expressions will no longer result in memory corruption or crashes.
3180 Nevertheless, these code blocks are still experimental, as there are still
3181 problems with the wrong variables being closed over (in loops for instance)
3182 and with abnormal exiting (e.g., C<die>) causing memory corruption.
3186 The C<SvIsCOW> C macro now returns false for read-only copies of typeglobs,
3187 such as those created by:
3190 Hash::Util::lock_value %hash, 'elem';
3192 It used to return true.
3196 Assignment to C<$^A> (the format output accumulator) now recalculates
3197 the number of lines output.
3201 The regexp optimiser no longer crashes on debugging builds when merging
3202 fixed-string nodes with inconvenient contents.
3206 Locking a subroutine (via C<lock &sub>) is no longer a compile-time error
3207 for regular subs. For lvalue subroutines, it no longer tries to return the
3208 sub as a scalar, resulting in strange side effects like C<ref \$_>
3209 returning "CODE" in some instances.
3211 C<lock &sub> is now a run-time error if L<threads::shared> is loaded (a
3212 no-op otherwise), but that may be rectified in a future version.
3216 The prototypes of several built-in functions--C<getprotobynumber>, C<lock>,
3217 C<not> and C<select>--have been corrected, or at least are now closer to
3218 reality than before.
3222 Most dereferencing operators (C<${}>, etc.) used to call C<FETCH> twice on
3223 a tied operand when doing a symbolic dereference (looking up a variable by
3224 name, which is not permitted under C<use strict 'refs'>). Only C<&{}> did
3225 not have this problem. This has been fixed.
3229 A panic involving the combination of the regular expression modifiers
3230 C</aa> and the C<\b> escape sequence introduced in 5.14.0 has been
3231 fixed [perl #95964].
3235 The combination of the regular expression modifiers C</aa> and the C<\b>
3236 and C<\B> escape sequences did not work properly on UTF-8 encoded
3237 strings. All non-ASCII characters under C</aa> should be treated as
3238 non-word characters, but what was happening was that Unicode rules were
3239 used to determine wordness/non-wordness for non-ASCII characters. This
3240 is now fixed [perl #95968].
3244 Infinite loops like C<1 while 1> used to stop C<strict 'subs'> mode from
3245 working for the rest of the block.t
3249 The C<\h>, C<\H>, C<\v> and C<\V> regular expression metacharacters used to
3250 cause a panic error message when attempting to match at the end of the
3251 string [perl #96354].
3255 For list assignments like C<($a,$b) = ($b,$a)>, Perl has to make a copy of
3256 the items on the right-hand side before assignment them to the left. For
3257 efficiency's sake, it assigns the values on the right straight to the items
3258 on the left no variable is mentioned on both sides, as in
3259 C<($a,$b) = ($c,$d)>. The logic for determining when it can cheat was
3260 faulty, in that C<&&> and C<||> on the right-hand side could fool it. So
3261 C<($a,$b) = $some_true_value && ($b,$a)> would end up assigning the value
3262 of C<$b> to both scalars.
3266 Perl no longer tries to apply lvalue context to the string in
3267 C<("string", $variable) ||= 1> (which used to be an error). Since the
3268 left-hand side of C<||=> is evaluated in scalar context, that's a scalar
3269 comma operator, which gives all but the last item void context. There is
3270 no such thing as void lvalue context, so it was a mistake for Perl to try
3271 to force it [perl #96942].
3275 Every subroutine has a filename associated with it, that the debugger uses.
3276 The one associated with constant subroutines used to be misallocated when
3277 cloned under threads. Consequently, debugging threaded applications could
3278 result in memory corruption [perl #96126].
3282 C<caller> no longer leaks memory when called from the DB package if
3283 C<@DB::args> was assigned to after the first call to C<caller>. L<Carp>
3284 was triggering this bug [perl #97010].
3288 C<defined(${"..."})>, C<defined(*{"..."})>, etc., used to
3289 return true for most, but not all built-in variables, if
3290 they had not been used yet. Many times that new built-in
3291 variables were added in past versions, this construct was
3292 not taken into account, so this affected C<${^GLOBAL_PHASE}> and
3293 C<${^UTF8CACHE}>, among others. It also used to return false if the
3294 package name was given as well (C<${"::!"}>) [perl #97978, #97492].
3298 Perl 5.10.0 introduced a similar bug: C<defined(*{"foo"})> where "foo"
3299 represents the name of a built-in global variable used to return false if
3300 the variable had never been used before, but only on the I<first> call.
3301 This, too, has been fixed.
3305 Various functions that take a filehandle argument in rvalue context
3306 (C<close>, C<readline>, etc.) used to call C<FETCH> multiple times, if it
3307 was a tied variable, and warn twice, if it was C<undef> [perl #97482].
3311 C<close> and similar filehandle functions, when called on built-in global
3312 variables (like C<$+>), used to die if the variable happened to hold the
3313 undefined value, instead of producing the usual "Use of uninitialized
3318 When autovivified file handles were introduced in Perl 5.6.0, C<readline>
3319 was inadvertently made to autovivify when called as C<readline($foo)> (but
3320 not as C<E<lt>$fooE<gt>>). It has now been fixed never to autovivify.
3324 C<defined ${ $tied_variable }> used to call C<FETCH> multiple times, but
3325 now calls it just once.
3329 Some cases of dereferencing a complex expression, such as
3330 C<${ (), $tied } = 1>, used to call C<FETCH> multiple times, but now call
3335 For a tied variable returning a package name, C<$tied-E<gt>method> used to
3336 call C<FETCH> multiple times (even up to six!), and sometimes would
3337 fail to call the method, due to memory corruption.
3341 Calling an undefined anonymous subroutine (e.g., what $x holds after
3342 C<undef &{$x = sub{}}>) used to cause a "Not a CODE reference" error, which
3343 has been corrected to "Undefined subroutine called" [perl #71154].
3347 Causing C<@DB::args> to be freed between uses of C<caller> no longer
3348 results in a crash [perl #93320].
3352 Since 5.6.0, C<*{ ... }> has been inconsistent in how it treats undefined
3353 values. It would die in strict mode or lvalue context for most undefined
3354 values, but would be treated as the empty string (with a warning) for the
3355 specific scalar return by C<undef()> (C<&PL_sv_undef> internally). This
3356 has been corrected. C<undef()> is now treated like other undefined
3357 scalars, as in Perl 5.005.
3361 C<setpgrp($foo)> used to be equivalent to C<($foo, setpgrp)>, because
3362 C<setpgrp> was ignoring its argument if there was just one. Now it is
3363 equivalent to C<setpgrp($foo,0)>.
3367 Assignments like C<*$tied = \&{"..."}> and C<*glob = $tied> now call FETCH
3372 C<chdir>, C<chmod>, C<chown>, C<utime>, C<truncate>, C<stat>, C<lstat> and
3373 the filetest ops (C<-r>, C<-x>, etc.) now always call FETCH if passed a tied
3374 variable as the last argument. They used to ignore tiedness if the last
3375 thing return from or assigned to the variable was a typeglob or reference
3380 If things were arranged in memory the right way, it was possible for
3381 thread joining to emit "Attempt to free unreferenced scalar" warnings if
3382 C<caller> had been used from the C<DB> package prior to thread creation,
3383 due to the way pads were reference-counted and cloned [perl #98092].
3387 A bug has been fixed that occurs when a tied variable is used as a
3388 subroutine reference: if the last thing assigned to or returned from the
3389 variable was a reference or typeglob, the C<\&$tied> could either crash or
3390 return the wrong subroutine. The reference case is a regression introduced
3391 in Perl 5.10.0. For typeglobs, it has probably never worked till now.
3395 C<given> was not scoping its implicit $_ properly, resulting in memory
3396 leaks or "Variable is not available" warnings [perl #94682].
3400 C<-l> followed by a bareword no longer "eats" the previous argument to
3401 the list operator in whose argument list it resides. In less convoluted
3402 English: C<print "bar", -l foo> now actually prints "bar", because C<-l>
3407 C<shmread> was not setting the scalar flags correctly when reading from
3408 shared memory, causing the existing cached numeric representation in the
3409 scalar to persist [perl #98480].
3413 Under miniperl (used to configure modules when perl itself is built),
3414 C<glob> now clears %ENV before calling csh, since the latter croaks on some
3415 systems if it does not like the contents of the LS_COLORS enviroment
3416 variable [perl #98662].
3420 C<++> and C<--> now work on copies of globs, instead of dying.
3424 C<splice()> doesn't warn when truncating
3426 You can now limit the size of an array using C<splice(@a,MAX_LEN)> without
3427 worrying about warnings.
3431 The C<SvPVutf8> C function no longer tries to modify its argument,
3432 resulting in errors [perl #108994].
3436 C<SvPVutf8> now works properly with magical variables.
3440 C<SvPVbyte> now works properly non-PVs.
3444 Version objects no longer cause memory leaks in boolean context
3449 C<< $$ >> is no longer tainted. Since this value comes directly from
3450 C<< getpid() >>, it is always safe.
3454 The parser no longer leaks a filehandle if STDIN was closed before parsing
3455 started [perl #37033].
3459 C<< (?foo: ...) >> no longer loses passed in character set.
3463 C<< die; >> with a non-reference, non-string, or magical (e.g., tainted)
3464 value in $@ now properly
3465 propagates that value [perl #111654].
3469 The trie optimisation used to have problems with alternations containing
3470 an empty C<(?:)>, causing C<< "x" =~ /\A(?>(?:(?:)A|B|C?x))\z/ >> not to
3471 match, whereas it should [perl #111842].
3475 =head1 Known Problems
3481 On Solaris, we have two kinds of failure.
3483 If F<make> is Sun's F<makeā„>, we get an error about a badly formed macro
3484 assignment in the F<Makefile>. That happens when F<./Configure> tries to
3485 make depends. F<Configure> then exits 0, but further F<make>-ing fails.
3487 If F<make> is F<gmake>, F<Configure> completes, then we get errors related
3488 to F</usr/include/stdbool.h>
3492 The following CPAN modules have test failures with perl 5.16. Patches have
3493 been submitted for all of these, so hopefully there will be new releases
3500 L<Date::Pcalc> version 6.1
3504 L<Encode::JP::Mobile> version 0.27
3508 L<Module::CPANTS::Analyse> version 0.85
3510 This fails due to problems in L<Module::Find> 0.10 and L<File::MMagic>
3515 L<PerlIO::Util> version 0.72
3523 XXX If any significant core contributor has died, we've added a short obituary
3526 =head1 Acknowledgements
3528 XXX Generate this with:
3530 perl Porting/acknowledgements.pl v5.14.0..HEAD
3532 =head1 Reporting Bugs
3534 If you find what you think is a bug, you might check the articles
3535 recently posted to the comp.lang.perl.misc newsgroup and the perl
3536 bug database at L<http://rt.perl.org/perlbug/>. There may also be
3537 information at L<http://www.perl.org/>, the Perl Home Page.
3539 If you believe you have an unreported bug, please run the L<perlbug>
3540 program included with your release. Be sure to trim your bug down
3541 to a tiny but sufficient test case. Your bug report, along with the
3542 output of C<perl -V>, will be sent off to perlbug@perl.org to be
3543 analysed by the Perl porting team.
3545 If the bug you are reporting has security implications, which make it
3546 inappropriate to send to a publicly archived mailing list, then please
3547 send it to perl5-security-report@perl.org. This points to a closed
3548 subscription unarchived mailing list, which includes all the core
3549 committers, who will be able to help assess the impact of issues, figure
3550 out a resolution, and help co-ordinate the release of patches to
3551 mitigate or fix the problem across all platforms on which Perl is
3552 supported. Please only use this address for security issues in the Perl
3553 core, not for modules independently distributed on CPAN.
3557 The F<Changes> file for an explanation of how to view exhaustive details
3560 The F<INSTALL> file for how to build Perl.
3562 The F<README> file for general stuff.
3564 The F<Artistic> and F<Copying> files for copyright information.