X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/405fd67ea799e305822e4c34efb193e8866f623f..2ffefa5a34345a0b799ca4de804636808273b9b2:/pod/perldelta.pod diff --git a/pod/perldelta.pod b/pod/perldelta.pod index a3c89ce..dd25a9a 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -53,6 +53,21 @@ The C<"d"> modifier is used in the scope of C to compile the regular expression as if it were not in that scope. See L. +=head2 C<\N{...}> now handles Unicode named character sequences + +Unicode has a number of named character sequences, in which particular sequences +of code points are given names. C<\N{...}> now recognizes these. +See L. + +=head2 New function C + +This function is a run-time version of C<\N{...}>, returning the string +of characters whose Unicode name is its parameter. It can handle +Unicode named character sequences, whereas the pre-existing +C cannot, as the latter returns a single code +point. +See L. + =head1 Security XXX Any security-related notices go here. In particular, any security @@ -154,6 +169,27 @@ XXX =item * +C has been upgraded from version 1.18 to 1.19. + +It no longer autovivifies the C<*CORE::GLOBAL::caller> glob, something it +started doing in 1.18, which was released with perl 5.13.4 +L<[perl #78082]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=78082> + +=item * + +C has been upgraded from version 2.128 to 2.129. + +C no longer crashes with globs returned by C<*$io_ref> +L<[perl #72332]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=72332>. + +=item * + +C has been upgraded from version 2.40 to 2.50. + +It is now safe to use this module in combination with threads. + +=item * + C has been upgraded from version 1.02 to 1.03. It allows patterns containing literal parentheses (they no longer need to @@ -172,6 +208,27 @@ L<[perl #71710]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=71710>. =item * +C has been upgraded from version 0.05 to 0.06 + +=item * + +C has been upgraded from version 1.06 to 1.07. + +The internal C routine now knows how to handle file descriptors, as +documented, so duplicating STDIN in a child process using its file +descriptor now works +L<[perl #76474]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=71710>. + +=item * + +C has been upgraded from version 1.15 to 1.16. + +It fixes an infinite loop in C when +working with tainted values +(L). + +=item * + C has been upgraded from version 0.64 to 0.65. =item * @@ -231,7 +288,8 @@ section. =item * -XXX Description of the change here +The documentation for the C macro was simply wrong in stating that +get-magic is not processed. It has been corrected. =back @@ -266,7 +324,24 @@ XXX Changes (i.e. rewording) of diagnostic messages go here =item * -XXX +The 'Layer does not match this perl' error message has been replaced with +these more helpful messages: + +=over 4 + +=item * + +PerlIO layer function table size (%d) does not match size expected by this +perl (%d) + +=item * + +PerlIO layer instance size (%d) does not match size expected by this perl +(%d) + +=back + +L<[perl #73754]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=73754> =back @@ -367,9 +442,13 @@ L section. =over 4 -=item XXX-some-platform +=item Windows -XXX +C<$Config{gccversion}> is now set correctly when perl is built using the +mingw64 compiler from L +L<[perl #73754]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=73754>. + +=back =back @@ -388,6 +467,37 @@ be noted as well. See L, above. +=item * + +The C, C, C and +C functions have been added. These are like their +non-_flags counterparts, but allow one to specify whether get-magic is +processed. + +The C, C, C and C functions have +been replaced with wrappers around the new functions. + +=item * + +A new C function has been added. + +This is like C, but it lets the calling code decide whether +get-magic is handled. C is now a macro that calls the new +function. + +=item * + +A new macro, C, has been added. + +This is like C, except that it does not process magic. It uses the +new C function. + +=item * + +C no longer calls C on its second argument (the +source string) if the flags passed to it do not include SV_GMAGIC. So it +now matches what the documentation says it does. + =back =head1 Selected Bug Fixes @@ -436,6 +546,49 @@ sometimes did not, depending on what order things happened to be arranged in memory L<[perl #71806]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=71806>. +=item * + +The C or C operator now calls get-magic (e.g., the C +method of a tie) on its left-hand side just once, not twice +L<[perl #76814]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=76814>. + +=item * + +String comparison (C, C, C, C, C, C and +C) and logical not (C and C) operators no longer call magic +(e.g., tie methods) twice on their operands +L<[perl #76814]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=76814>. + +This bug was introduced in an earlier 5.13 release, and does not affect +perl 5.12. + +=item * + +When a tied (or other magic) variable is used as, or in, a regular +expression, it no longer has its C method called twice +L<[perl #76814]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=76814>. + +This bug was introduced in an earlier 5.13 release, and does not affect +perl 5.12. + +=item * + +The C<-C> command line option can now be followed by other options +L<[perl #72434]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=72434>. + +=item * + +Assigning a glob to a PVLV used to convert it to a plain string. Now it +works correctly, and a PVLV can hold a glob. This would happen when a +nonexistent hash or array element was passed to a subroutine: + + sub { $_[0] = *foo }->($hash{key}); + # $_[0] would have been the string "*main::foo" + +It also happened when a glob was assigned to, or returned from, an element +of a tied array or hash +L<[perl #36051]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=36051>. + =back =head1 Known Problems