This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Suppress test warning added by 04698ff6
[perl5.git] / pod / perldelta.pod
index b445eeb..7e30a87 100644 (file)
@@ -1,5 +1,8 @@
 =encoding utf8
 
+=for comment
+This has been completed up to a3179684.
+
 =head1 NAME
 
 [ this is a template for a new perldelta file. Any text flagged as
@@ -31,7 +34,8 @@ here, but most should go in the L</Performance Enhancements> section.
 =head2 C<-d:-foo> calls C<Devel::foo::unimport>
 
 The syntax C<-dI<B<:>foo>> was extended in 5.6.1 to make C<-dI<:fooB<=bar>>>
-equivalent to C<-Mfoo=bar>, which expands internally to C<use foo 'bar';>.
+equivalent to C<-MDevel::foo=bar>, which expands
+internally to C<use Devel::foo 'bar';>.
 F<perl> now allows prefixing the module name with C<->, with the same
 semantics as C<-M>, I<i.e.>
 
@@ -39,13 +43,14 @@ semantics as C<-M>, I<i.e.>
 
 =item C<-d:-foo>
 
-Equivalent to C<-M-foo>, expands to C<no foo;>, calls C<< foo->unimport() >>
+Equivalent to C<-M-Devel::foo>, expands to
+C<no Devel::foo;>, calls C<< Devel::foo->unimport() >>
 if the method exists.
 
 =item C<-d:-foo=bar>
 
-Equivalent to C<-M-foo=bar>, expands to C<no foo 'bar';>, calls
-C<< foo->unimport('bar') >> if the method exists.
+Equivalent to C<-M-Devel::foo=bar>, expands to C<no Devel::foo 'bar';>,
+calls C<< Devel::foo->unimport('bar') >> if the method exists.
 
 =back
 
@@ -77,6 +82,11 @@ listed as an updated module in the L</Modules and Pragmata> section.
 
 [ List each deprecation as a =head2 entry ]
 
+=head2 C<?PATTERN?> is deprecated
+
+C<?PATTERN?> (without the initial m) has been deprecated and now produces
+a warning.
+
 =head2 C<sv_compile_2op> is now deprecated
 
 The C<sv_compile_2op> is now deprecated, and will be removed. Searches suggest
@@ -136,7 +146,7 @@ and documentation enhancements.
 
 =item *
 
-C<MIME::Base64> has been upgraded from 3.10 to 3.12
+C<MIME::Base64> has been upgraded from 3.10 to 3.13
 
 Now provides encode_base64url and decode_base64url functions to process
 the base64 scheme for "URL applications".
@@ -147,7 +157,7 @@ C<Unicode::Collate> has been upgraded from 0.67 to 0.68
 
 =item *
 
-XXX
+C<Unicode::UCD> has been upgraded from 0.29 to 0.30.
 
 =back