=item *
-Strings with code points over 0xFF may not be mapped into in-memory file
-handles
+L<'Strings with code points over 0xFF may not be mapped into in-memory file handles'|perldiag/"Strings with code points over 0xFF may not be mapped into in-memory file handles">
=item *
=item *
-Accessing C<$&> after a pattern match now works if it had not been seen
-before the match. I.e., this applies to C<${'&'}> (under C<no strict>) and
-C<eval '$&'>. The same applies to C<$'> and C<$`> [perl #4289].
-
-=item *
-
Several bugs involving C<local *ISA> and C<local *Foo::> causing stale
MRO caches have been fixed.
=item *
-Reset the UTF-8 position cache when accessing magical variables to avoid the
-string buffer and the UTF-8 position cache getting out of sync
+The UTF-8 position cache is now reset when accessing magical variables, to
+avoid the string buffer and the UTF-8 position cache getting out of sync
[perl #114410].
=item *
=item *
-A bug in the compilation of a C</(?{})/> expression which affected the TryCatch
-test suite has been fixed [perl #114242].
-
-=item *
-
Pod can now be nested in code inside a quoted construct outside of a string
eval. This used to work only within string evals [perl #114040].