=item AIX
-=over 0
-
Removed F<libbsd> for AIX 5L and 6.1. Only flock() was used from F<libbsd>.
Removed F<libgdbm> for AIX 5L and 6.1. The F<libgdbm> is delivered as an
Hints changes mean that AIX 4.2 should work again.
-=back
-
=item Cygwin
On Cygwin we now strip the last number from the DLL. This has been the
=item VMS
-=over 0
-
Reads from the in-memory temporary files of C<PerlIO::scalar> used to fail
if C<$/> was set to a numeric reference (to indicate record-style reads).
This is now fixed.
=back
-=back
-
=head1 Selected Bug Fixes
=over 4
=item *
Under ithreads, the regex in C<PL_reg_curpm> is now reference counted. This
-eliminates a lot of hackish work-arounds to cope with it not being reference
+eliminates a lot of hackish workarounds to cope with it not being reference
counted.
=item *
=head1 Known Problems
-XXX
+This is a list of some significant unfixed bugs, which are regressions
+from either 5.10.0 or 5.8.x.
+
+=over 4
+
+=item *
+
+C<List::Util::first> misbehaves in the presence of a lexical C<$_>
+(typically introduced by C<my $_> or implicitly by C<given>). The variable
+which gets set for each iteration is the package variable C<$_>, not the
+lexical C<$_> [RT #67694].
+
+A similar issue may occur in other modules that provide functions which
+take a block as their first argument, like
+
+ foo { ... $_ ...} list
+
+=item *
+
+The C<charnames> pragma may generate a run-time error when a regex is
+interpolated [RT #56444]:
+
+ use charnames ':full';
+ my $r1 = qr/\N{THAI CHARACTER SARA I}/;
+ "foo" =~ $r1; # okay
+ "foo" =~ /$r1+/; # runtime error
+
+A workaround is to generate the character outside of the regex:
+
+ my $a = "\N{THAI CHARACTER SARA I}";
+ my $r1 = qr/$a/;
+
+=item *
+
+Some regexes may run much more slowly when run in a child thread compared
+with the thread the pattern was compiled into [RT #55600].
+
+
+=back
=head1 Deprecations