In perl.git, the branch maint-5.20 has been updated <http://perl5.git.perl.org/perl.git/commitdiff/f947d41d07cd7cfa746c0a7e8c01b7099faff2df?hp=e09e307ffd4bcda8a241d894c7a458e3dac363ec>
- Log ----------------------------------------------------------------- commit f947d41d07cd7cfa746c0a7e8c01b7099faff2df Author: Steve Hay <[email protected]> Date: Wed Dec 31 12:01:01 2014 +0000 Move perldelta entry from Errata to Bug Fixes, where it is more appropriate for maint M pod/perldelta.pod commit 032512d3850bc25011ebc732c184e9df68ffc348 Author: Father Chrysostomos <[email protected]> Date: Sun Nov 16 10:53:41 2014 -0800 perldelta for #123029 Inadvertently fixed by c0683843e92. Follow-up commits specific to this bug: c4a33ec [perl #123029]: add regression test a4f1ca6 state.t: Improve test for #123029 9f53080 sv.c: Always #define COW threshold constants (cherry picked from commit 857f4fb1c22a29afdfe39e929702476b8a82d7c5) M pod/perldelta.pod commit 88e9c588ef1a81ce08c15217d83cdfb5834ce085 Author: Father Chrysostomos <[email protected]> Date: Sun Sep 14 12:43:20 2014 -0700 perldelta for 2c1f00b/#122747 (cherry picked from commit 13dd5671ecb824f71dfe100fbf3b7d5ee9170636) M pod/perldelta.pod commit 51bef330e699df896d9a1aa65321e7eed95a72be Author: Father Chrysostomos <[email protected]> Date: Sun Oct 12 23:00:40 2014 -0700 perldelta for 4c62787/#122771 (cherry picked from commit c1662923fd698c3467e36017e0b303046f173e13) M pod/perldelta.pod ----------------------------------------------------------------------- Summary of changes: pod/perldelta.pod | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pod/perldelta.pod b/pod/perldelta.pod index edf59c5..90064cf 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -352,6 +352,25 @@ UTF8-encoding the value. This has been fixed. [perl #123135] Various cases where the name of a sub is used (autoload, overloading, error messages) used to crash for lexical subs, but have been fixed. +=item * + +An assertion failure when parsing C<sort> with debugging enabled has been +fixed. [perl #122771] + +=item * + +Loading UTF8 tables during a regular expression match could cause assertion +failures under debugging builds if the previous match used the very same +regular expression. [perl #122747] + +=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] + =back =head1 Known Problems -- Perl5 Master Repository
