From 1ea91bbecf634e3f601b9bcc90c6665cbd6f9ae9 Mon Sep 17 00:00:00 2001 From: Florian Ragwitz Date: Wed, 19 Sep 2012 13:23:48 -0400 Subject: [PATCH] Perldelta up to 3b9aea0 --- pod/perldelta.pod | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/pod/perldelta.pod b/pod/perldelta.pod index e698041..2e48439 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -309,6 +309,11 @@ trailing semicolons in formats. =item * +L has been upgraded from version 0.9130 to 0.9131. This resolves +issues with the SQLite source engine. + +=item * + L has been upgraded from version 1.826 to 1.827. The main Perl module no longer uses the C<"@_"> construct. @@ -378,12 +383,21 @@ handling. =item * +L has been upgraded from version 0.31 to 0.32. This includes +several documentation and bug fixes. + +=item * + L has been upgraded from version 1.40 to 1.41. This adds the option to warn about or ignore attempts to clone structures that can't be cloned, as opposed to just unconditionally dying in that case. =item * +L has been upgraded from version 0.99 to 0.9901. + +=item * + L has been upgraded from version 0.15 to 0.16. =back @@ -520,6 +534,13 @@ future Perl version: no warnings "experimental:lexical_subs"; use feature "lexical_subs"; +=item * + +L + +(W overflow) You called C with a number that was larger than it can +reliably handle and C probably slept for less time than requested. + =back =head2 Changes to Existing Diagnostics @@ -536,6 +557,17 @@ This warning was not suppressable, even with C. Now it is suppressible, and has been moved from the "internal" category to the "printf" category. +=item * + +C<< Can't do {n,m} with n > m in regex; marked by <-- HERE in m/%s/ >> + +This fatal error has been turned into a warning that reads: + +L<< Quantifier {n,m} with n > m can't match in regex | perldiag/Quantifier {n,m} with n > m can't match in regex >> + +(W regexp) Minima should be less than or equal to maxima. If you really want +your regexp to match something 0 times, just put {0}. + =back =head1 Utility Changes -- 2.7.4