This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for commits:
authorJames E Keenan <jkeenan@cpan.org>
Wed, 17 Oct 2018 13:00:43 +0000 (09:00 -0400)
committerJames E Keenan <jkeenan@cpan.org>
Wed, 17 Oct 2018 13:00:43 +0000 (09:00 -0400)
1f692f6a78e6beb89aeeae9497d98bc08ac936cf
dcb414ac3e404a94d6b3ba0a9a06e72ae0ab368d
d8ff3e95e0f2357b6f26f5a94c52c46231fb1a74
df8b709bfcaea9932dd434f18393bfcb4e3d5568

pod/perldelta.pod

index f99b60a..a896b74 100644 (file)
@@ -86,6 +86,32 @@ could lead to invalidly encoded perl scalars.
 
 [perl #125760]
 
+=head2 my() in false conditional prohibited
+
+Declarations such as C<my $x if 0> are no longer permitted.
+
+[perl #133543]
+
+=head2 Fatalize $* and $#
+
+These special variables, long deprecated, now throw exceptions when used.
+
+[perl #133583]
+
+=head2 Fatalize unqualified use of dump()
+
+The C<dump()> function, long discouraged, may no longer be used unless it is
+fully qualified, I<i.e.>, C<CORE::dump()>.
+
+[perl #133584]
+
+=head2 Remove File::Glob::glob()
+
+The C<File::Glob::glob()> function, long deprecated, has been removed and now
+throws an exception which advises use of C<File::Glob::bsd_glob()> instead.
+
+[perl #133586]
+
 =head1 Deprecations
 
 XXX Any deprecated features, syntax, modules etc. should be listed here.