This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Unicode::UCD: Add charprops_all() public function
[perl5.git] / pod / perl5216delta.pod
index f995285..b8c48cd 100644 (file)
@@ -229,7 +229,7 @@ L<I18N::Langinfo> has been upgraded from version 0.11 to 0.12.
 
 L<IO::Socket> has been upgraded from version 1.37 to 1.38.
 
-Document the limitations of the isconnected() method.  [perl #123096]
+Document the limitations of the connected() method.  [perl #123096]
 
 =item *
 
@@ -432,8 +432,16 @@ C<sv_magic> no longer forbids "ext" magic on read-only values.  After all,
 perl can't know whether the custom magic will modify the SV or not.
 [perl #123103]
 
+=item *
+
+Starting in 5.21.6, accessing L<perlapi/CvPADLIST> in an XSUB is forbidden.
+CvPADLIST has be reused for a different internal purpose for XSUBs. Guard all
+CvPADLIST expressions with C<CvISXSUB()> if your code doesn't already block
+XSUB CV*s from going through optree CV* expecting code.
+
 =back
 
+
 =head1 Selected Bug Fixes
 
 =over 4
@@ -602,17 +610,6 @@ builds. [perl #108276]
 
 =item *
 
-Starting in 5.21.6, accessing L<perlapi/CvPADLIST> in an XSUB is forbidden.
-CvPADLIST has be reused for a different internal purpose for XSUBs. Guard all
-CvPADLIST expressions with C<CvISXSUB()> if your code doesn't already block
-XSUB CV*s from going through optree CV* expecting code.
-
-=back
-
-=over 4
-
-=item *
-
 Builds on FreeBSD 10.x currently fail when compiling L<POSIX>. A workaround is
 to specify C<-Ui_fenv> when running C<Configure>.