=encoding utf8 =head1 NAME perl5216delta - what is new for perl v5.21.6 =head1 DESCRIPTION This document describes differences between the 5.21.5 release and the 5.21.6 release. If you are upgrading from an earlier release such as 5.21.4, first read L, which describes differences between 5.21.4 and 5.21.5. =head1 Core Enhancements =head2 List form of pipe open implemented for Win32 The list form of pipe: open my $fh, "-|", "program", @arguments; is now implemented on Win32. It has the same limitations as C on Win32, since the Win32 API doesn't accept program arguments as a list. =head2 Assignment to list repetition C<(...) x ...> can now be used within a list that is assigned to, as long as the left-hand side is a valid lvalue. This allows C<(undef,undef,$foo) = that_function()> to be written as C<((undef)x2, $foo) = that_function()>. =head2 C now sets C<$!> When an I/O error occurs, the fact that there has been an error is recorded in the handle. C returns false for such a handle. Previously, the value of C<$!> would be untouched by C, so the common convention of writing C did not work reliably. Now the handle records the value of C<$!>, too, and C restores it. =head1 Deprecations =head2 Use of non-graphic characters in single-character variable names The syntax for single-character variable names is more lenient than for longer variable names, allowing the one-character name to be a punctuation character or even invisible (a non-graphic). Perl v5.20 deprecated the ASCII-range controls as such a name. Now, all non-graphic characters that formerly were allowed are deprecated. The practical effect of this occurs only when not under C>, and affects just the C1 controls (code points 0x80 through 0xFF), NO-BREAK SPACE, and SOFT HYPHEN. =head2 Inlining of C with observable side-effects In many cases Perl makes sub () { $var } into an inlinable constant subroutine, capturing the value of $var at the time the C expression is evaluated. This can break the closure behaviour in those cases where $var is subsequently modified. The subroutine won't return the new value. This usage is now deprecated in those cases where the variable could be modified elsewhere. Perl detects those cases and emits a deprecation warning. Such code will likely change in the future and stop producing a constant. If your variable is only modified in the place where it is declared, then Perl will continue to make the sub inlinable with no warnings. sub make_constant { my $var = shift; return sub () { $var }; # fine } sub make_constant_deprecated { my $var; $var = shift; return sub () { $var }; # deprecated } sub make_constant_deprecated2 { my $var = shift; log_that_value($var); # could modify $var return sub () { $var }; # deprecated } In the second example above, detecting that $var is assigned to only once is too hard to detect. That it happens in a spot other than the C declaration is enough for Perl to find it suspicious. This deprecation warning happens only for a simple variable for the body of the sub. (A C block or C statement inside the sub is ignored, because it does not become part of the sub's body.) For more complex cases, such as C the behaviour has changed such that inlining does not happen if the variable is modifiable elsewhere. Such cases should be rare. =head1 Performance Enhancements =over 4 =item * C<(...)x1>, C<("constant")x0> and C<($scalar)x0> are now optimised in list context. If the right-hand argument is a constant 1, the repetition operator disappears. If the right-hand argument is a constant 0, the whole expressions is optimised to the empty list, so long as the left-hand argument is a simple scalar or constant. C<(foo())x0> is not optimised. =item * C assignment is now optimised into 4-argument C at the end of a subroutine (or as the argument to C). Previously, this optimisation only happened in void context. =item * Assignment to lexical variables is often optimised away. For instance, in C<$lexical = chr $foo>, the C operator writes directly to the lexical variable instead of returning a value that gets copied. This optimisation has been extended to C, C and C on the right-hand side. It has also been made to work with state variable initialization. =item * In "\L...", "\Q...", etc., the extra "stringify" op is now optimised away, making these just as fast as C, C, etc. =item * Assignment to an empty list is now sometimes faster. In particular, it never calls C on tied arguments on the right-hand side, whereas it used to sometimes. =back =head1 Modules and Pragmata =head2 Updated Modules and Pragmata =over 4 =item * L has been upgraded from version 1.52 to 1.53. =item * L has been upgraded from version 0.994 to 0.995. =item * L has been upgraded from version 1.29 to 1.30. It now deparses C<+sub : attr { ... }> correctly at the start of a statement. Without the initial C<+>, C would be a statement label. C blocks are now emitted in the right place most of the time, but the change unfortunately introduced a regression, in that C blocks occurring just before the end of the enclosing block may appear below it instead. So this change may need to be reverted if it cannot be fixed before Perl 5.22. [perl #77452] B::Deparse no longer puts erroneous C here and there, such as for C. [perl #119815] Adjacent C statements are no longer accidentally nested if one contains a C block. [perl #115066] =item * L has been upgraded from version 5.021005 to 5.021006. It now includes a hash named C<%ops_using>, list all op types that use a particular private flag. =item * L has been upgraded from version 2.142690 to 2.143240. =item * L has been upgraded from version 2.128 to 2.130. =item * L has been upgraded from version 1.18 to 1.19. =item * L has been upgraded from version 5.92 to 5.93. =item * L has been upgraded from version 1.27 to 1.28. =item * L has been upgraded from version 2.62 to 2.64. =item * L has been upgraded from version 0.012 to 0.013. =item * L has been upgraded from version 5.71 to 5.72. =item * L has been upgraded from version 6.98 to 7.02. =item * L has been upgraded from version 1.68 to 1.69. =item * L has been upgraded from version 3.25 to 3.26. =item * L has been upgraded from version 0.050 to 0.051. =item * L has been upgraded from version 0.11 to 0.12. =item * L has been upgraded from version 1.37 to 1.38. Document the limitations of the connected() method. [perl #123096] =item * L has been upgraded from version 1.04 to 1.05. =item * L has been upgraded from version 5.20141020 to 5.20141120. =item * L has been upgraded from version 1.23 to 1.24. =item * L has been upgraded from version 0.19 to 0.20. =item * L has been upgraded from version 0.19 to 0.20. =item * L has been upgraded from version 1.45 to 1.46. =item * L has been upgraded from version 0.27 to 0.28. =item * L has been upgraded from version 3.33 to 3.34. =item * L has been upgraded from version 1.001008 to 1.301001_075. =item * L has been upgraded from version 0.58 to 0.59. =item * L has been upgraded from version 1.28 to 1.29. =item * L has been upgraded from version 0.18 to 0.19. =back =head1 Documentation =head2 Changes to Existing Documentation =head3 L =over 4 =item * The syntax of single-character variable names has been brought up-to-date and more fully explained. =back =head1 Diagnostics The following additions or changes have been made to diagnostic output, including warnings and fatal error messages. For the complete list of diagnostic messages, see L. =head2 New Diagnostics =head3 New Warnings =over 4 =item * L =item * A new C warning category has been created, with the following warning messages currently in it: =over 4 =item * L =item * L =back =item * L =item * The following two warnings for C used to be skipped if the transliteration contained wide characters, but now they occur regardless of whether there are wide characters or not: Ld modifier in transliteration operator|perldiag/"Useless use of /d modifier in transliteration operator"> L =back =head2 Changes to Existing Diagnostics =over 4 =item * L%sE|perldiag/"Quantifier unexpected on zero-length expression in regex m/%s/">. This message has had the S<"<-- HERE"> marker removed, as it was always placed at the end of the regular expression, regardless of where the problem actually occurred. [perl #122680] =item * L to a reference to %s as a form of slurp is deprecated, treating as undef|perldiag/"Setting $/ to a reference to %s as a form of slurp is deprecated, treating as undef"> This warning is now a default warning, like other deprecation warnings. =back =head1 Configuration and Compilation =over 4 =item * F with C<-Dmksymlinks> should now be faster. [perl #122002] =back =over 4 =item * As well as the gzip and bzip2 tarballs, this release has been made available as an xz utils compressed tarball. =back =head1 Platform Support =head2 Platform-Specific Notes =head3 Win32 =over 4 =item * In the experimental C<:win32> layer, a crash in C was fixed. Also opening C, which works the Win32 Perl's normal C<:unix> layer, was implemented for C<:win32>. L<[perl #122224]|https://rt.perl.org/Ticket/Display.html?id=122224> =item * A new makefile option, C, has been added to the Windows dmake makefile for gcc builds only. Set this to "define" if you want perl to use long doubles to give more accuracy and range for floating point numbers. =back =head1 Internal Changes =over 4 =item * C has been removed. Although marked as public API, it is undocumented and has no usage in modern perl versions on CPAN Grep. Calling it has been fatal since 5.17.0. =item * C, C, C and C have been added to the API. =item * The internal C function in F has been renamed C and added to the API. =item * C no longer forbids "ext" magic on read-only values. After all, perl can't know whether the custom magic will modify the SV or not. [perl #123103] =item * Starting in 5.21.6, accessing L in an XSUB is forbidden. CvPADLIST has be reused for a different internal purpose for XSUBs. Guard all CvPADLIST expressions with C if your code doesn't already block XSUB CV*s from going through optree CV* expecting code. =back =head1 Selected Bug Fixes =over 4 =item * fchmod() and futimes() now set C<$!> when they fail due to being passed a closed file handle. [perl #122703] =item * Perl now comes with a corrected Unicode 7.0 for the erratum issued on October 21, 2014 (see L), dealing with glyph shaping in Arabic. =item * op_free() no longer crashes due to a stack overflow when freeing a deeply recursive op tree. [perl #108276] =item * scalarvoid() would crash due to a stack overflow when processing a deeply recursive op tree. [perl #108276] =item * In Perl 5.20.0, C<$^N> accidentally had the internal UTF8 flag turned off if accessed from a code block within a regular expression, effectively UTF8-encoding the value. This has been fixed. [perl #123135] =item * A failed C call no longer overwrites existing items on the stack, causing C<(semctl(-1,0,0,0))[0]> to give an "uninitialized" warning. =item * C with no space before C is now better at assigning the right line number to that statement. [perl #122695] =item * Sometimes the assignment in C<@array = split> gets optimised and C itself writes directly to the array. This caused a bug, preventing this assignment from being used in lvalue context. So C<(@a=split//,"foo")=bar()> was an error. (This bug probably goes back to Perl 3, when the optimisation was added.) This optimisation, and the bug, started to happen in more cases in 5.21.5. It has now been fixed. [perl #123057] =item * When argument lists that fail the checks installed by subroutine signatures, the resulting error messages now give the file and line number of the caller, not of the called subroutine. [perl #121374] =item * Flip-flop operators (C<..> and C<...> in scalar context) used to maintain a separate state for each recursion level (the number of times the enclosing sub was called recursively), contrary to the documentation. Now each closure has one internal state for each flip-flop. [perl #122829] =item * C, C, statement labels, special blocks (C) and pod are now permitted as the first thing in a C or C block, the block after C or C (or other functions) returning a handle, and within C<${...}>, C<@{...}>, etc. [perl #122782] =item * The repetition operator C now propagates lvalue context to its left-hand argument when used in contexts like C. That allows C to work as expected if the loop modifies $_. =item * C<(...) x ...> in scalar context used to corrupt the stack if one operand were an object with "x" overloading, causing erratic behaviour. [perl #121827] =item * Assignment to a lexical scalar is often optimised away (as mentioned under L). Various bugs related to this optimisation have been fixed. Certain operators on the right-hand side would sometimes fail to assign the value at all or assign the wrong value, or would call STORE twice or not at all on tied variables. The operators affected were C<$foo++>, C<$foo-->, and C<-$foo> under C, C, C and C. =item * List assignments were sometimes buggy if the same scalar ended up on both sides of the assignment due to used of C, C or C. The result would be the wrong value getting assigned. =item * C (with one argument) was accidentally changed in 5.16 to mean C. This has been fixed. =item * C<__SUB__> could return the wrong value or even corrupt memory under the debugger (the B<-d> switch) and in subs containing C. =item * When C becomes inlinable, it now returns a different scalar each time, just as a non-inlinable sub would, though Perl still optimises the copy away in cases where it would make no observable difference. =item * C and C are no longer eligible for inlining. The former would crash; the latter would just throw the attributes away. An exception is made for the little-known ":method" attribute, which does nothing much. =item * Inlining of subs with an empty prototype is now more consistent than before. Previously, a sub with multiple statements, all but the last optimised away, would be inlinable only if it were an anonymous sub containing a string C or C declaration or closing over an outer lexical variable (or any anonymous sub under the debugger). Now any sub that gets folded to a single constant after statements have been optimised away is eligible for inlining. This applies to things like C. Some subroutines with an explicit C were being made inlinable, contrary to the documentation, Now C always prevents inlining. =item * On some systems, such as VMS, C can return a non-ASCII string. If a scalar assigned to had contained a UTF8 string previously, then C would not turn off the UTF8 flag, thus corrupting the return value. This would happen with C<$lexical = crypt ...>. =item * C no longer calls C twice on a tied first argument. =item * An unterminated here-doc on the last line of a quote-like operator (C, C) no longer causes a double free. It started doing so in 5.18. =item * Fixed two assertion failures introduced into C<-DPERL_OP_PARENT> builds. [perl #108276] =back =head1 Known Problems =over 4 =item * Builds on FreeBSD 10.x currently fail when compiling L. A workaround is to specify C<-Ui_fenv> when running C. =back =head1 Errata From Previous Releases =over 4 =item * Due to a mistake in the string-copying logic, copying the value of a state variable could instead steal the value and undefine the variable. This bug, introduced in 5.20, would happen mostly for long strings (1250 chars or more), but could happen for any strings under builds with copy-on-write disabled. [perl #123029] This bug was actually fixed in 5.21.5, but it was not until after that release that this bug, and the fact that it had been fixed, were discovered. =item * If a named sub tries to access a scalar declared in an outer anonymous sub, the variable is not available, so the named sub gets its own undefined scalar. In 5.10, attempts to take a reference to the variable (C<\$that_variable>) began returning a reference to a I of it instead. This was accidentally fixed in 5.21.4, but the bug and its fix were not noticed till now. =back =head1 Acknowledgements Perl 5.21.6 represents approximately 4 weeks of development since Perl 5.21.5 and contains approximately 60,000 lines of changes across 920 files from 25 authors. Excluding auto-generated files, documentation and release tools, there were approximately 48,000 lines of changes to 630 .pm, .t, .c and .h files. Perl continues to flourish into its third decade thanks to a vibrant community of users and developers. The following people are known to have contributed the improvements that became Perl 5.21.6: Aaron Crane, Abigail, Andrew Fresh, Andy Dougherty, Brian Fraser, Chad Granum, Chris 'BinGOs' Williams, Craig A. Berry, Daniel Dragan, David Mitchell, Doug Bell, Father Chrysostomos, Glenn D. Golden, James E Keenan, Jarkko Hietaniemi, Jim Cromie, Karen Etheridge, Karl Williamson, Lukas Mai, Ricardo Signes, Shlomi Fish, Slaven Rezic, Steve Hay, Tony Cook, Yaroslav Kuzmin. The list above is almost certainly incomplete as it is automatically generated from version control history. In particular, it does not include the names of the (very much appreciated) contributors who reported issues to the Perl bug tracker. Many of the changes included in this version originated in the CPAN modules included in Perl's core. We're grateful to the entire CPAN community for helping Perl to flourish. For a more complete list of all of Perl's historical contributors, please see the F file in the Perl source distribution. =head1 Reporting Bugs If you find what you think is a bug, you might check the articles recently posted to the comp.lang.perl.misc newsgroup and the perl bug database at https://rt.perl.org/ . There may also be information at http://www.perl.org/ , the Perl Home Page. If you believe you have an unreported bug, please run the L program included with your release. Be sure to trim your bug down to a tiny but sufficient test case. Your bug report, along with the output of C, will be sent off to perlbug@perl.org to be analysed by the Perl porting team. If the bug you are reporting has security implications, which make it inappropriate to send to a publicly archived mailing list, then please send it to perl5-security-report@perl.org. This points to a closed subscription unarchived mailing list, which includes all the core committers, who will be able to help assess the impact of issues, figure out a resolution, and help co-ordinate the release of patches to mitigate or fix the problem across all platforms on which Perl is supported. Please only use this address for security issues in the Perl core, not for modules independently distributed on CPAN. =head1 SEE ALSO The F file for an explanation of how to view exhaustive details on what changed. The F file for how to build Perl. The F file for general stuff. The F and F files for copyright information. =cut