This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
50a4c7ea2d1b9b90e7a32930720e4eb701afc434
[perl5.git] / pod / perldelta.pod
1 =encoding utf8
2
3 =head1 NAME
4
5 perldelta - what is new for perl v5.22.0
6
7 =head1 DESCRIPTION
8
9 This document describes differences between the 5.20.0 release and the 5.22.0
10 release.
11
12 If you are upgrading from an earlier release such as 5.18.0, first read
13 L<perl5200delta>, which describes differences between 5.18.0 and 5.20.0.
14
15 =head1 Core Enhancements
16
17 =head2 New bitwise operators
18
19 A new experimental facility has been added that makes the four standard
20 bitwise operators (C<& | ^ ~>) treat their operands consistently as
21 numbers, and introduces four new dotted operators (C<&. |. ^. ~.>) that
22 treat their operands consistently as strings.  The same applies to the
23 assignment variants (C<&= |= ^= &.= |.= ^.=>).
24
25 To use this, enable the "bitwise" feature and disable the
26 "experimental::bitwise" warnings category.  See L<perlop/Bitwise String
27 Operators> for details.
28 L<[perl #123466]|https://rt.perl.org/Ticket/Display.html?id=123466>.
29
30 =head2 New double-diamond operator
31
32 C<<< <<>> >>> is like C<< <> >> but uses three-argument C<open> to open
33 each file in C<@ARGV>.  This means that each element of C<@ARGV> will be treated
34 as an actual file name, and C<"|foo"> won't be treated as a pipe open.
35
36 =head2 New \b boundaries in regular expressions
37
38 =head3 qr/\b{gcb}/
39
40 C<gcb> stands for Grapheme Cluster Boundary.  It is a Unicode property
41 that finds the boundary between sequences of characters that look like a
42 single character to a native speaker of a language.  Perl has long had
43 the ability to deal with these through the C<\X> regular escape
44 sequence.  Now, there is an alternative way of handling these.  See
45 L<perlrebackslash/\b{}, \b, \B{}, \B> for details.
46
47 =head3 qr/\b{wb}/
48
49 C<wb> stands for Word Boundary.  It is a Unicode property
50 that finds the boundary between words.  This is similar to the plain
51 C<\b> (without braces) but is more suitable for natural language
52 processing.  It knows, for example, that apostrophes can occur in the
53 middle of words.  See L<perlrebackslash/\b{}, \b, \B{}, \B> for details.
54
55 =head3 qr/\b{sb}/
56
57 C<sb> stands for Sentence Boundary.  It is a Unicode property
58 to aid in parsing natural language sentences.
59 See L<perlrebackslash/\b{}, \b, \B{}, \B> for details.
60
61 =head2 C<no re> covers more and is lexical
62
63 Previously running C<no re> would only turn off a few things. Now it
64 turns off all the enabled things. For example, previously, you
65 couldn't turn off debugging, once enabled, inside the same block.
66
67 =head2 Non-Capturing Regular Expression Flag
68
69 Regular expressions now support a C</n> flag that disables capturing
70 and filling in C<$1>, C<$2>, etc... inside of groups:
71
72   "hello" =~ /(hi|hello)/n; # $1 is not set
73
74 This is equivalent to putting C<?:> at the beginning of every capturing group.
75
76 See L<perlre/"n"> for more information.
77
78 =head2 C<use re 'strict'>
79
80 This applies stricter syntax rules to regular expression patterns
81 compiled within its scope, which hopefully will alert you to typos and
82 other unintentional behavior that backwards-compatibility issues prevent
83 us from doing in normal regular expression compilations.  Because the
84 behavior of this is subject to change in future Perl releases as we gain
85 experience, using this pragma will raise a category
86 C<experimental::re_strict> warning.
87 See L<'strict' in re|re/'strict' mode>.
88
89 =head2 Unicode 7.0 (with correction) is now supported
90
91 For details on what is in this release, see
92 L<http://www.unicode.org/versions/Unicode7.0.0/>.
93 The version of Unicode 7.0 that comes with Perl includes
94 a correction dealing with glyph shaping in Arabic
95 (see L<http://www.unicode.org/errata/#current_errata>).
96
97
98 =head2 S<C<use locale>> can restrict which locale categories are affected
99
100 It is now possible to pass a parameter to S<C<use locale>> to specify
101 a subset of locale categories to be locale-aware, with the remaining
102 ones unaffected.  See L<perllocale/The "use locale" pragma> for details.
103
104 =head2 Perl now supports POSIX 2008 locale currency additions
105
106 On platforms that are able to handle POSIX.1-2008, the
107 hash returned by
108 L<C<POSIX::localeconv()>|perllocale/The localeconv function>
109 includes the international currency fields added by that version of the
110 POSIX standard.  These are
111 C<int_n_cs_precedes>,
112 C<int_n_sep_by_space>,
113 C<int_n_sign_posn>,
114 C<int_p_cs_precedes>,
115 C<int_p_sep_by_space>,
116 and
117 C<int_p_sign_posn>.
118
119 =head2 Better heuristics on older platforms for determining locale UTF8ness
120
121 On platforms that implement neither the C99 standard nor the POSIX 2001
122 standard, determining if the current locale is UTF8 or not depends on
123 heuristics.  These are improved in this release.
124
125 =head2 Aliasing via reference
126
127 Variables and subroutines can now be aliased by assigning to a reference:
128
129     \$c = \$d;
130     \&x = \&y;
131
132 Or by using a backslash before a C<foreach> iterator variable, which is
133 perhaps the most useful idiom this feature provides:
134
135     foreach \%hash (@array_of_hash_refs) { ... }
136
137 This feature is experimental and must be enabled via C<use feature
138 'refaliasing'>.  It will warn unless the C<experimental::refaliasing>
139 warnings category is disabled.
140
141 See L<perlref/Assigning to References>
142
143 =head2 C<prototype> with no arguments
144
145 C<prototype()> with no arguments now infers C<$_>.
146 L<[perl #123514]|https://rt.perl.org/Ticket/Display.html?id=123514>.
147
148 =head2 New "const" subroutine attribute
149
150 The "const" attribute can be applied to an anonymous subroutine.  It
151 causes the new sub to be executed immediately whenever one is created
152 (i.e. when the C<sub> expression is evaluated).  Its value is captured
153 and used to create a new constant subroutine that is returned.  This
154 feature is experimental.  See L<perlsub/Constant Functions>.
155
156 =head2 C<fileno> now works on directory handles
157
158 When the relevant support is available in the operating system, the
159 C<fileno> builtin now works on directory handles, yielding the
160 underlying file descriptor in the same way as for filehandles. On
161 operating systems without such support, C<fileno> on a directory handle
162 continues to return the undefined value, as before, but also sets C<$!> to
163 indicate that the operation is not supported.
164
165 Currently, this uses either a C<dd_fd> member in the OS C<DIR>
166 structure, or a C<dirfd(3)> function as specified by POSIX.1-2008.
167
168 =head2 List form of pipe open implemented for Win32
169
170 The list form of pipe:
171
172   open my $fh, "-|", "program", @arguments;
173
174 is now implemented on Win32.  It has the same limitations as C<system
175 LIST> on Win32, since the Win32 API doesn't accept program arguments
176 as a list.
177
178 =head2 C<close> now sets C<$!>
179
180 When an I/O error occurs, the fact that there has been an error is recorded
181 in the handle.  C<close> returns false for such a handle.  Previously, the
182 value of C<$!> would be untouched by C<close>, so the common convention of
183 writing S<C<close $fh or die $!>> did not work reliably.  Now the handle
184 records the value of C<$!>, too, and C<close> restores it.
185
186 =head2 Assignment to list repetition
187
188 C<(...) x ...> can now be used within a list that is assigned to, as long
189 as the left-hand side is a valid lvalue.  This allows S<C<(undef,undef,$foo)
190 = that_function()>> to be written as S<C<((undef)x2, $foo) = that_function()>>.
191
192 =head2 Infinity and NaN (not-a-number) handling improved
193
194 Floating point values are able to hold the special values infinity (also
195 -infinity), and NaN (not-a-number).  Now we more robustly recognize and
196 propagate the value in computations, and on output normalize them to C<Inf> and
197 C<NaN>.
198
199 See also the L<POSIX> enhancements.
200
201 =head2 Floating point parsing has been improved
202
203 Parsing and printing of floating point values has been improved.
204
205 As a completely new feature, hexadecimal floating point literals
206 (like C<0x1.23p-4>)  are now supported, and they can be output with
207 C<printf %a>.
208
209 =head2 Packing infinity or not-a-number into a character is now fatal
210
211 Before, when trying to pack infinity or not-a-number into a
212 (signed) character, Perl would warn, and assumed you tried to
213 pack C<< 0xFF >>; if you gave it as an argument to C<< chr >>,
214 C<< U+FFFD >> was returned.
215
216 But now, all such actions (C<< pack >>, C<< chr >>, and C<< print '%c' >>)
217 result in a fatal error.
218
219 =head2 Experimental C Backtrace API
220
221 Perl now supports (via a C level API) retrieving
222 the C level backtrace (similar to what symbolic debuggers like gdb do).
223
224 The backtrace returns the stack trace of the C call frames,
225 with the symbol names (function names), the object names (like "perl"),
226 and if it can, also the source code locations (file:line).
227
228 The supported platforms are Linux and OS X (some *BSD might work at
229 least partly, but they have not yet been tested).
230
231 The feature needs to be enabled with C<Configure -Dusecbacktrace>.
232
233 See L<perlhacktips/"C backtrace"> for more information.
234
235 =head1 Security
236
237 =head2 Perl is now compiled with -fstack-protector-strong if available
238
239 Perl has been compiled with the anti-stack-smashing option
240 C<-fstack-protector> since 5.10.1.  Now Perl uses the newer variant
241 called C<-fstack-protector-strong>, if available.
242
243 =head2 The L<Safe> module could allow outside packages to be replaced
244
245 Critical bugfix: outside packages could be replaced.  L<Safe> has
246 been patched to 2.38 to address this.
247
248 =head2 Perl is now always compiled with -D_FORTIFY_SOURCE=2 if available
249
250 The 'code hardening' option called C<_FORTIFY_SOURCE>, available in
251 gcc 4.*, is now always used for compiling Perl, if available.
252
253 Note that this isn't necessarily a huge step since in many platforms
254 the step had already been taken several years ago: many Linux
255 distributions (like Fedora) have been using this option for Perl,
256 and OS X has enforced the same for many years.
257
258 =head1 Incompatible Changes
259
260 =head2 Subroutine signatures moved before attributes
261
262 The experimental sub signatures feature, as introduced in 5.20, parsed
263 signatures after attributes.  In this release, the positioning has been
264 moved such that signatures occur after the subroutine name (if any) and
265 before the attribute list (if any).
266
267 =head2 C<&> and C<\&> prototypes accepts only subs
268
269 The C<&> prototype character now accepts only anonymous subs (C<sub
270 {...}>), things beginning with C<\&>, or an explicit C<undef>.  Formerly
271 it erroneously also allowed references to arrays, hashes, and lists.
272 L<[perl #4539]|https://rt.perl.org/Ticket/Display.html?id=4539>.
273 L<[perl #123062]|https://rt.perl.org/Ticket/Display.html?id=123062>.
274 L<[perl #123062]|https://rt.perl.org/Ticket/Display.html?id=123475>.
275
276 In addition, the C<\&> prototype was allowing subroutine calls, whereas
277 now it only allows subroutines: C<&foo> is still permitted as an argument,
278 while C<&foo()> and C<foo()> no longer are.
279 L<[perl #77860]|https://rt.perl.org/Ticket/Display.html?id=77860>.
280
281 =head2 C<use encoding> is now lexical
282
283 The L<encoding> pragma's effect is now limited to lexical scope.  This
284 pragma is deprecated, but in the meantime, it could adversely affect
285 unrelated modules that are included in the same program.
286
287 =head2 List slices returning empty lists
288
289 List slices return an empty list now only if the original list was empty
290 (or if there are no indices).  Formerly, a list slice would return an empty
291 list if all indices fell outside the original list; now it returns a list
292 of undef values.
293 L<[perl #114498]|https://rt.perl.org/Ticket/Display.html?id=114498>.
294
295 =head2 C<\N{}> with a sequence of multiple spaces is now a fatal error
296
297 E.g. C<\N{TOO  MANY SPACES}> or C<\N{TRAILING SPACE }>.
298 This has been deprecated since v5.18.
299
300 =head2 S<C<use UNIVERSAL '...'>> is now a fatal error
301
302 Importing functions from C<UNIVERSAL> has been deprecated since v5.12, and
303 is now a fatal error.  S<C<"use UNIVERSAL">> without any arguments is still
304 allowed.
305
306 =head2 In double-quotish C<\cI<X>>, I<X> must now be a printable ASCII character
307
308 In prior releases, failure to do this raised a deprecation warning.
309
310 =head2 Splitting the tokens C<(?> and C<(*> in regular expressions is
311 now a fatal compilation error.
312
313 These had been deprecated since v5.18.
314
315 =head2 C<qr/foo/x> now ignores all Unicode pattern white space
316
317 The C</x> regular expression modifier allows the pattern to contain
318 white space and comments (both of which are ignored) for improved
319 readability.  Until now, not all the white space characters that Unicode
320 designates for this purpose were handled.  The additional ones now
321 recognized are
322
323     U+0085 NEXT LINE
324     U+200E LEFT-TO-RIGHT MARK
325     U+200F RIGHT-TO-LEFT MARK
326     U+2028 LINE SEPARATOR
327     U+2029 PARAGRAPH SEPARATOR
328
329 The use of these characters with C</x> outside bracketed character
330 classes and when not preceded by a backslash has raised a deprecation
331 warning since v5.18.  Now they will be ignored.
332
333 =head2 Comment lines within S<C<(?[ ])>> are now ended only by a C<\n>
334
335 S<C<(?[ ])>>  is an experimental feature, introduced in v5.18.  It operates
336 as if C</x> is always enabled.  But there was a difference: comment
337 lines (following a C<#> character) were terminated by anything matching
338 C<\R> which includes all vertical whitespace, such as form feeds.  For
339 consistency, this is now changed to match what terminates comment lines
340 outside S<C<(?[ ])>>, namely a C<\n> (even if escaped), which is the
341 same as what terminates a heredoc string and formats.
342
343 =head2 C<(?[...])> operators now follow standard Perl precedence
344
345 This experimental feature allows set operations in regular expression patterns.
346 Prior to this, the intersection operator had the same precedence as the other
347 binary operators.  Now it has higher precedence.  This could lead to different
348 outcomes than existing code expects (though the documentation has always noted
349 that this change might happen, recommending fully parenthesizing the
350 expressions).  See L<perlrecharclass/Extended Bracketed Character Classes>.
351
352 =head2 Omitting C<%> and C<@> on hash and array names is no longer permitted
353
354 Really old Perl let you omit the C<@> on array names and the C<%> on hash
355 names in some spots.  This has issued a deprecation warning since Perl
356 5.000, and is no longer permitted.
357
358 =head2 C<"$!"> text is now in English outside C<"use locale"> scope
359
360 Previously, the text, unlike almost everything else, always came out
361 based on the current underlying locale of the program.  (Also affected
362 on some systems is C<"$^E>".)  For programs that are unprepared to
363 handle locale, this can cause garbage text to be displayed.  It's better
364 to display text that is translatable via some tool than garbage text
365 which is much harder to figure out.
366
367 =head2 C<"$!"> text will be returned in UTF-8 when appropriate
368
369 The stringification of C<$!> and C<$^E> will have the UTF-8 flag set
370 when the text is actually non-ASCII UTF-8.  This will enable programs
371 that are set up to be locale-aware to properly output messages in the
372 user's native language.  Code that needs to continue the 5.20 and
373 earlier behavior can do the stringification within the scopes of both
374 S<C<'use bytes'>> and S<C<'use locale ":messages">>.  No other Perl
375 operations will
376 be affected by locale; only C<$!> and C<$^E> stringification.  The
377 'bytes' pragma causes the UTF-8 flag to not be set, just as in previous
378 Perl releases.  This resolves
379 L<[perl #112208]|https://rt.perl.org/Ticket/Display.html?id=112208>.
380
381 =head2 Support for C<?PATTERN?> without explicit operator has been removed
382
383 Starting regular expressions matching only once directly with the
384 question mark delimiter is now a syntax error, so that the question mark
385 can be available for use in new operators.  Write C<m?PATTERN?> instead,
386 explicitly using the C<m> operator: the question mark delimiter still
387 invokes match-once behaviour.
388
389 =head2 C<defined(@array)> and C<defined(%hash)> are now fatal errors
390
391 These have been deprecated since v5.6.1 and have raised deprecation
392 warnings since v5.16.
393
394 =head2 Using a hash or an array as a reference are now fatal errors
395
396 For example, C<< %foo->{"bar"} >> now causes a fatal compilation
397 error.  These have been deprecated since before v5.8, and have raised
398 deprecation warnings since then.
399
400 =head2 Changes to the C<*> prototype
401
402 The C<*> character in a subroutine's prototype used to allow barewords to take
403 precedence over most, but not all, subroutine names.  It was never
404 consistent and exhibited buggy behaviour.
405
406 Now it has been changed, so subroutines always take precedence over barewords,
407 which brings it into conformity with similarly prototyped built-in functions:
408
409     sub splat(*) { ... }
410     sub foo { ... }
411     splat(foo); # now always splat(foo())
412     splat(bar); # still splat('bar') as before
413     close(foo); # close(foo())
414     close(bar); # close('bar')
415
416 =head1 Deprecations
417
418 =head2 Setting C<${^ENCODING}> to anything but C<undef>
419
420 This variable allows Perl scripts to be written in a non-ASCII,
421 non-UTF-8 encoding.  However, it affects all modules globally, leading
422 to wrong answers and segmentation faults.  New scripts should be written
423 in UTF-8; old scripts should be converted to UTF-8, which is easily done
424 with the L<encoding> pragma.
425
426 =head2 Use of non-graphic characters in single-character variable names
427
428 The syntax for single-character variable names is more lenient than
429 for longer variable names, allowing the one-character name to be a
430 punctuation character or even invisible (a non-graphic).  Perl v5.20
431 deprecated the ASCII-range controls as such a name.  Now, all
432 non-graphic characters that formerly were allowed are deprecated.
433 The practical effect of this occurs only when not under C<S<"use
434 utf8">>, and affects just the C1 controls (code points 0x80 through
435 0xFF), NO-BREAK SPACE, and SOFT HYPHEN.
436
437 =head2 Inlining of C<sub () { $var }> with observable side-effects
438
439 In many cases Perl makes S<C<sub () { $var }>> into an inlinable constant
440 subroutine, capturing the value of C<$var> at the time the C<sub> expression
441 is evaluated.  This can break the closure behaviour in those cases where
442 C<$var> is subsequently modified, since the subroutine won't return the
443 changed value. (Note that this all only applies to anonymous subroutines
444 with an empty prototype (C<sub ()>).)
445
446 This usage is now deprecated in those cases where the variable could be
447 modified elsewhere.  Perl detects those cases and emits a deprecation
448 warning.  Such code will likely change in the future and stop producing a
449 constant.
450
451 If your variable is only modified in the place where it is declared, then
452 Perl will continue to make the sub inlinable with no warnings.
453
454     sub make_constant {
455         my $var = shift;
456         return sub () { $var }; # fine
457     }
458
459     sub make_constant_deprecated {
460         my $var;
461         $var = shift;
462         return sub () { $var }; # deprecated
463     }
464
465     sub make_constant_deprecated2 {
466         my $var = shift;
467         log_that_value($var); # could modify $var
468         return sub () { $var }; # deprecated
469     }
470
471 In the second example above, detecting that C<$var> is assigned to only once
472 is too hard to detect.  That it happens in a spot other than the C<my>
473 declaration is enough for Perl to find it suspicious.
474
475 This deprecation warning happens only for a simple variable for the body of
476 the sub.  (A C<BEGIN> block or C<use> statement inside the sub is ignored,
477 because it does not become part of the sub's body.)  For more complex
478 cases, such as S<C<sub () { do_something() if 0; $var }>> the behaviour has
479 changed such that inlining does not happen if the variable is modifiable
480 elsewhere.  Such cases should be rare.
481
482 =head2 Use of multiple /x regexp modifiers
483
484 It is now deprecated to say something like any of the following:
485
486     qr/foo/xx;
487     /(?xax:foo)/;
488     use re qw(/amxx);
489
490 That is, now C<x> should only occur once in any string of contiguous
491 regular expression pattern modifiers.  We do not believe there are any
492 occurrences of this in all of CPAN.  This is in preparation for a future
493 Perl release having C</xx> mean to allow white-space for readability in
494 bracketed character classes (those enclosed in square brackets:
495 C<[...]>).
496
497 =head2 Using a NO-BREAK space in a character alias for C<\N{...}> is now
498 deprecated
499
500 This non-graphic character is essentially indistinguishable from a
501 regular space, and so should not be allowed.  See
502 L<charnames/CUSTOM ALIASES>.
503
504 =head2 A literal C<"{"> should now be escaped in a pattern
505
506 If you want a literal left curly bracket (also called a left brace) in a
507 regular expression pattern, you should now escape it by either
508 preceding it with a backslash (C<"\{">) or enclosing it within square
509 brackets C<"[{]">, or by using C<\Q>; otherwise a deprecation warning
510 will be raised.  This was first announced as forthcoming in the v5.16
511 release; it will allow future extensions to the language to happen.
512
513 =head2 Making all warnings fatal is discouraged
514
515 The documentation for L<fatal warnings|warnings/Fatal Warnings> notes that
516 C<< use warnings FATAL => 'all' >> is discouraged and provides stronger
517 language about the risks of fatal warnings in general.
518
519 =head1 Performance Enhancements
520
521 =over 4
522
523 =item *
524
525 If a method or class name is known at compile time, a hash is precomputed
526 to speed up run-time method lookup.  Also, compound method names like
527 C<SUPER::new> are parsed at compile time, to save having to parse them at
528 run time.
529
530 =item *
531
532 Array and hash lookups (especially nested ones) that use only constants
533 or simple variables as keys, are now considerably faster. See
534 L</Internal Changes> for more details.
535
536 =item *
537
538 C<(...)x1>, C<("constant")x0> and C<($scalar)x0> are now optimised in list
539 context.  If the right-hand argument is a constant 1, the repetition
540 operator disappears.  If the right-hand argument is a constant 0, the whole
541 expression is optimised to the empty list, so long as the left-hand
542 argument is a simple scalar or constant.  C<(foo())x0> is not optimised.
543
544 =item *
545
546 C<substr> assignment is now optimised into 4-argument C<substr> at the end
547 of a subroutine (or as the argument to C<return>).  Previously, this
548 optimisation only happened in void context.
549
550 =item *
551
552 Assignment to lexical variables is now more often optimised away.  For
553 instance, in
554 C<$lexical = chr $foo>, the C<chr> operator writes directly to the lexical
555 variable instead of returning a value that gets copied.  This optimisation
556 has been extended to C<split>, C<x> and C<vec> on the right-hand side.  It
557 has also been made to work with state variable initialization.
558
559 =item *
560
561 In C<"\L...">, C<"\Q...">, etc., the extra "stringify" op is now optimised
562 away, making these just as fast as C<lcfirst>, C<quotemeta>, etc.
563
564 =item *
565
566 Assignment to an empty list is now sometimes faster.  In particular, it
567 never calls C<FETCH> on tied arguments on the right-hand side, whereas it
568 used to sometimes.
569
570 =item *
571
572 C<length> is up to 20% faster for non-magical/non-tied scalars containing a
573 string if it is a non-utf8 string or if is in scope of C<use bytes>.
574
575 =item *
576
577 On most perl builds with 64 bit integers, non-magical/non-tied scalars
578 that contain only a floating point value now use between 8 and 32 less bytes
579 of memory, depending on OS.
580
581 =item *
582
583 In C<@array = split>, the assignment can be optimized away with C<split>
584 writing directly to the array.  This optimisation was happening only for
585 package arrays other than C<@_>, and only sometimes.  Now this
586 optimisation happens almost all the time.
587
588 =item *
589
590 C<join> is now subject to constant folding.  So for example
591 C<join "-", "a", "b"> is converted at compile-time to C<"a-b">.
592 Moreover, C<join> with a scalar or constant for the separator and a
593 single-item list to join is simplified to a stringification.  The
594 separator doesn't even get evaluated.
595
596 =item *
597
598 C<qq(@array)> is implemented using two ops: a stringify op and a join op.
599 If the C<qq> contains nothing but a single array, the stringification is
600 optimized away.
601
602 =item *
603
604 S<C<our $var>> and S<C<our($s,@a,%h)>> in void context are no longer evaluated at
605 run time.  Even a whole sequence of S<C<our $foo;>> statements will simply be
606 skipped over.  The same applies to C<state> variables.
607
608 =item *
609
610 Many internal functions have been refactored to improve performance and reduce
611 their memory footprints.
612 L<[perl #121436]|https://rt.perl.org/Ticket/Display.html?id=121436>
613 L<[perl #121906]|https://rt.perl.org/Ticket/Display.html?id=121906>
614 L<[perl #121969]|https://rt.perl.org/Ticket/Display.html?id=121969>
615
616 =item *
617
618 C<-T> and C<-B> filetests will return sooner when an empty file is detected.
619 L<[perl #121489]|https://rt.perl.org/Ticket/Display.html?id=121489>
620
621 =item *
622
623 Hash lookups where the key is a constant are faster.
624
625 =item *
626
627 Subroutines with an empty prototype and bodies containing just C<undef> are now
628 eligible for inlining.
629 L<[perl #122728]|https://rt.perl.org/Ticket/Display.html?id=122728>
630
631 =item *
632
633 Subroutines in packages no longer need to be stored in typeglobs:
634 declaring a subroutine will now put a simple sub reference directly in the
635 stash if possible, saving memory.  The typeglob still notionally exists,
636 so accessing it will cause the stash entry to be upgraded to a typeglob
637 (i.e. this is just an internal implementation detail).
638 This optimization does not currently apply to XSUBs or exported
639 subroutines, and method calls will undo it, since they cache things in
640 typeglobs.
641 L<[perl #120441]|https://rt.perl.org/Ticket/Display.html?id=120441>
642
643 =item *
644
645 The functions C<utf8::native_to_unicode()> and C<utf8::unicode_to_native()>
646 (see L<utf8>) are now optimized out on ASCII platforms.  There is now not even
647 a minimal performance hit in writing code portable between ASCII and EBCDIC
648 platforms.
649
650 =item *
651
652 Win32 Perl uses 8 KB less of per-process memory than before for every perl
653 process, because some data is now memory mapped from disk and shared
654 between perl processes from the same perl binary.
655
656 =back
657
658 =head1 Modules and Pragmata
659
660 XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/>
661 go here.  If Module::CoreList is updated, generate an initial draft of the
662 following sections using F<Porting/corelist-perldelta.pl>.  A paragraph summary
663 for important changes should then be added by hand.  In an ideal world,
664 dual-life modules would have a F<Changes> file that could be cribbed.
665
666 [ Within each section, list entries as a =item entry ]
667
668 =head2 New Modules and Pragmata
669
670 =over 4
671
672 =item *
673
674 XXX
675
676 =back
677
678 =head2 Updated Modules and Pragmata
679
680 =over 4
681
682 =item *
683
684 L<ExtUtils::MakeMaker> has been upgraded from version 6.98 to 7.04_01.
685
686 Some changes from github have been backported to prevent failures and
687 noise on Win32 when C<chcp> is missing or unavailable.
688 L<[perl #123998]|https://rt.perl.org/Ticket/Display.html?id=123998>
689
690 =back
691
692 =head2 Removed Modules and Pragmata
693
694 =over 4
695
696 =item *
697
698 XXX
699
700 =back
701
702 =head1 Documentation
703
704 =head2 New Documentation
705
706 =head3 L<perlunicook>
707
708 This document, by Tom Christiansen, provides examples of handling Unicode in
709 Perl.
710
711 =head2 Changes to Existing Documentation
712
713 =head3 L<perlapi>
714
715 =over 4
716
717 =item *
718
719 Note that C<SvSetSV> doesn't do set magic.
720
721 =item *
722
723 C<sv_usepvn_flags> - Fix documentation to mention the use of C<NewX> instead of
724 C<malloc>.
725
726 L<[perl #121869]|https://rt.perl.org/Ticket/Display.html?id=121869>
727
728 =item *
729
730 Clarify where C<NUL> may be embedded or is required to terminate a string.
731
732 =item *
733
734 Previously missing documentation due to formatting errors are now included.
735
736 =item *
737
738 Entries are now organized into groups rather than by file where they are found.
739
740 =item *
741
742 Alphabetical sorting of entries is now handled by the POD generator to make
743 entries easier to find when scanning.
744
745 =back
746
747 =head3 L<perldata>
748
749 =over 4
750
751 =item *
752
753 The syntax of single-character variable names has been brought
754 up-to-date and more fully explained.
755
756 =back
757
758 =head3 L<perlebcdic>
759
760 =over 4
761
762 =item *
763
764 This document has been significantly updated in the light of recent
765 improvements to EBCDIC support.
766
767 =back
768
769 =head3 L<perlfunc>
770
771 =over 4
772
773 =item *
774
775 Mention that C<study()> is currently a no-op.
776
777 =item *
778
779 Calling C<delete> or C<exists> on array values is now described as "strongly
780 discouraged" rather than "deprecated".
781
782 =item *
783
784 Improve documentation of C<< our >>.
785
786 =item *
787
788 C<-l> now notes that it will return false if symlinks aren't supported by the
789 file system.
790
791 L<[perl #121523]|https://rt.perl.org/Ticket/Display.html?id=121523>
792
793 =item *
794
795 Note that C<exec LIST> and C<system LIST> may fall back to the shell on
796 Win32. Only C<exec PROGRAM LIST> and C<system PROGRAM LIST> indirect object
797 syntax will reliably avoid using the shell.
798
799 This has also been noted in L<perlport>.
800
801 L<[perl #122046]|https://rt.perl.org/Ticket/Display.html?id=122046>
802
803 =back
804
805 =head3 L<perlguts>
806
807 =over 4
808
809 =item *
810
811 The OOK example has been updated to account for COW changes and a change in the
812 storage of the offset.
813
814 =item *
815
816 Details on C level symbols and libperl.t added.
817
818 =item *
819
820 Information on Unicode handling has been added
821
822 =item *
823
824 Information on EBCDIC handling has been added
825
826 =back
827
828 =head3 L<perlhacktips>
829
830 =over 4
831
832 =item *
833
834 Documentation has been added illustrating the perils of assuming the contents
835 of static memory pointed to by the return values of Perl wrappers for C library
836 functions doesn't change.
837
838 =item *
839
840 Recommended replacements for tmpfile, atoi, strtol, and strtoul added.
841
842 =item *
843
844 Updated documentation for the C<test.valgrind> C<make> target.
845
846 L<[perl #121431]|https://rt.perl.org/Ticket/Display.html?id=121431>
847
848 =back
849
850 =head3 L<perlmodstyle>
851
852 =over 4
853
854 =item *
855
856 Instead of pointing to the module list, we are now pointing to
857 L<PrePAN|http://prepan.org/>.
858
859 =back
860
861 =head3 L<perlpolicy>
862
863 =over 4
864
865 =item *
866
867 We now have a code of conduct for the I<< p5p >> mailing list, as documented
868 in L<< perlpolicy/STANDARDS OF CONDUCT >>.
869
870 =item *
871
872 The conditions for marking an experimental feature as non-experimental are now
873 set out.
874
875 =back
876
877 =head3 L<perlport>
878
879 =over 4
880
881 =item *
882
883 Out-of-date VMS-specific information has been fixed/simplified.
884
885 =item *
886
887 Notes about EBCDIC have been added.
888
889 =back
890
891 =head3 L<perlre>
892
893 =over 4
894
895 =item *
896
897 The C</x> modifier has been clarified to note that comments cannot be continued
898 onto the next line by escaping them.
899
900 =back
901
902 =head3 L<perlrebackslash>
903
904 =over 4
905
906 =item *
907
908 Added documentation of C<\b{sb}>, C<\b{wb}>, C<\b{gcb}>, and C<\b{g}>.
909
910 =back
911
912 =head3 L<perlrecharclass>
913
914 =over 4
915
916 =item *
917
918 Clarifications have been added to L<perlrecharclass/Character Ranges>
919 to the effect that Perl guarantees that C<[A-Z]>, C<[a-z]>, C<[0-9]> and
920 any subranges thereof in regular expression bracketed character classes
921 are guaranteed to match exactly what a naive English speaker would
922 expect them to match, even on platforms (such as EBCDIC) where special
923 handling is required to accomplish this.
924
925 =item *
926
927 The documentation of Bracketed Character Classes has been expanded to cover the
928 improvements in C<qr/[\N{named sequence}]/> (see under L</Selected Bug Fixes>).
929
930 =back
931
932 =head3 L<perlsec>
933
934 =over 4
935
936 =item *
937
938 Comments added on algorithmic complexity and tied hashes.
939
940 =back
941
942 =head3 L<perlsyn>
943
944 =over 4
945
946 =item *
947
948 An ambiguity in the documentation of the C<...> statement has been corrected.
949 L<[perl #122661]|https://rt.perl.org/Ticket/Display.html?id=122661>
950
951 =item *
952
953 The empty conditional in C<< for >> and C<< while >> is now documented
954 in L<< perlsyn >>.
955
956 =back
957
958 =head3 L<perlunicode>
959
960 =over 4
961
962 =item *
963
964 This has had extensive revisions to bring it up-to-date with current
965 Unicode support and to make it more readable.
966
967 =back
968
969 =head3 L<perluniintro>
970
971 =over 4
972
973 =item *
974
975 Advice for how to make sure your strings and regular expression patterns are
976 interpreted as Unicode has been updated.
977
978 =back
979
980 =head3 L<perlvar>
981
982 =over 4
983
984 =item *
985
986 Further clarify version number representations and usage.
987
988 =back
989
990 =head3 L<perlvms>
991
992 =over 4
993
994 =item *
995
996 Out-of-date and/or incorrect material has been removed.
997
998 =item *
999
1000 Updated documentation on environment and shell interaction in VMS.
1001
1002 =back
1003
1004 =head3 L<perlxs>
1005
1006 =over 4
1007
1008 =item *
1009
1010 Added a discussion of locale issues in XS code.
1011
1012 =back
1013
1014 =head1 Diagnostics
1015
1016 The following additions or changes have been made to diagnostic output,
1017 including warnings and fatal error messages.  For the complete list of
1018 diagnostic messages, see L<perldiag>.
1019
1020 =head2 New Diagnostics
1021
1022 =head3 New Errors
1023
1024 =over 4
1025
1026 =item *
1027
1028 L<Bad symbol for scalar|perldiag/"Bad symbol for scalar">
1029
1030 (P) An internal request asked to add a scalar entry to something that
1031 wasn't a symbol table entry.
1032
1033 =item *
1034
1035 L<Can't use a hash as a reference|perldiag/"Can't use a hash as a reference">
1036
1037 (F) You tried to use a hash as a reference, as in
1038 C<< %foo->{"bar"} >> or C<< %$ref->{"hello"} >>.  Versions of perl E<lt>= 5.6.1
1039 used to allow this syntax, but shouldn't have.
1040
1041 =item *
1042
1043 L<Can't use an array as a reference|perldiag/"Can't use an array as a reference">
1044
1045 (F) You tried to use an array as a reference, as in
1046 C<< @foo->[23] >> or C<< @$ref->[99] >>.  Versions of perl E<lt>= 5.6.1 used to
1047 allow this syntax, but shouldn't have.
1048
1049 =item *
1050
1051 L<Can't use 'defined(@array)' (Maybe you should just omit the defined()?)|perldiag/"Can't use 'defined(@array)' (Maybe you should just omit the defined()?)">
1052
1053 (F) C<defined()> is not useful on arrays because it
1054 checks for an undefined I<scalar> value.  If you want to see if the
1055 array is empty, just use S<C<if (@array) { # not empty }>> for example.
1056
1057 =item *
1058
1059 L<Can't use 'defined(%hash)' (Maybe you should just omit the defined()?)|perldiag/"Can't use 'defined(%hash)' (Maybe you should just omit the defined()?)">
1060
1061 (F) C<defined()> is not usually right on hashes.
1062
1063 Although S<C<defined %hash>> is false on a plain not-yet-used hash, it
1064 becomes true in several non-obvious circumstances, including iterators,
1065 weak references, stash names, even remaining true after S<C<undef %hash>>.
1066 These things make S<C<defined %hash>> fairly useless in practice, so it now
1067 generates a fatal error.
1068
1069 If a check for non-empty is what you wanted then just put it in boolean
1070 context (see L<perldata/Scalar values>):
1071
1072     if (%hash) {
1073        # not empty
1074     }
1075
1076 If you had S<C<defined %Foo::Bar::QUUX>> to check whether such a package
1077 variable exists then that's never really been reliable, and isn't
1078 a good way to enquire about the features of a package, or whether
1079 it's loaded, etc.
1080
1081 =item *
1082
1083 L<Cannot chr %f|perldiag/"Cannot chr %f">
1084
1085 (F) You passed an invalid number (like an infinity or not-a-number) to
1086 C<chr>.
1087
1088 =item *
1089
1090 L<Cannot compress %f in pack|perldiag/"Cannot compress %f in pack">
1091
1092 (F) You tried converting an infinity or not-a-number to an unsigned
1093 character, which makes no sense.
1094
1095 =item *
1096
1097 L<Cannot pack %f with '%c'|perldiag/"Cannot pack %f with '%c'">
1098
1099 (F) You tried converting an infinity or not-a-number to a character,
1100 which makes no sense.
1101
1102 =item *
1103
1104 L<Cannot print %f with '%c'|perldiag/"Cannot printf %f with '%c'">
1105
1106 (F) You tried printing an infinity or not-a-number as a character (C<%c>),
1107 which makes no sense.  Maybe you meant C<'%s'>, or just stringifying it?
1108
1109 =item *
1110
1111 L<charnames alias definitions may not contain a sequence of multiple spaces|perldiag/"charnames alias definitions may not contain a sequence of multiple spaces">
1112
1113 (F) You defined a character name which had multiple space
1114 characters in a row.  Change them to single spaces.  Usually these
1115 names are defined in the C<:alias> import argument to C<use charnames>, but
1116 they could be defined by a translator installed into C<$^H{charnames}>.
1117 See L<charnames/CUSTOM ALIASES>.
1118
1119 =item *
1120
1121 L<charnames alias definitions may not contain trailing white-space|perldiag/"charnames alias definitions may not contain trailing white-space">
1122
1123 (F) You defined a character name which ended in a space
1124 character.  Remove the trailing space(s).  Usually these names are
1125 defined in the C<:alias> import argument to C<use charnames>, but they
1126 could be defined by a translator installed into C<$^H{charnames}>.
1127 See L<charnames/CUSTOM ALIASES>.
1128
1129 =item *
1130
1131 L<:const is not permitted on named subroutines|perldiag/":const is not permitted on named subroutines">
1132
1133 (F) The "const" attribute causes an anonymous subroutine to be run and
1134 its value captured at the time that it is cloned.  Names subroutines are
1135 not cloned like this, so the attribute does not make sense on them.
1136
1137 =item *
1138
1139 L<Hexadecimal float: internal error|perldiag/"Hexadecimal float: internal error">
1140
1141 (F) Something went horribly bad in hexadecimal float handling.
1142
1143 =item *
1144
1145 L<Hexadecimal float: unsupported long double format|perldiag/"Hexadecimal float: unsupported long double format">
1146
1147 (F) You have configured Perl to use long doubles but
1148 the internals of the long double format are unknown,
1149 therefore the hexadecimal float output is impossible.
1150
1151 =item *
1152
1153 L<Illegal suidscript|perldiag/"Illegal suidscript">
1154
1155 (F) The script run under suidperl was somehow illegal.
1156
1157 =item *
1158
1159 L<In '(?...)', the '(' and '?' must be adjacent in regex; marked by S<<-- HERE> in mE<sol>%sE<sol>|perldiag/"In '(?...)', the '(' and '?' must be adjacent in regex; marked by <-- HERE in m/%s/">
1160
1161 (F) The two-character sequence C<"(?"> in
1162 this context in a regular expression pattern should be an
1163 indivisible token, with nothing intervening between the C<"(">
1164 and the C<"?">, but you separated them.
1165
1166 =item *
1167
1168 L<In '(*VERB...)', the '(' and '*' must be adjacent in regex; marked by S<<-- HERE> in mE<sol>%sE<sol>|perldiag/"In '(*VERB...)', the '(' and '*' must be adjacent in regex; marked by <-- HERE in m/%s/">
1169
1170 (F) The two-character sequence C<"(*"> in
1171 this context in a regular expression pattern should be an
1172 indivisible token, with nothing intervening between the C<"(">
1173 and the C<"*">, but you separated them.
1174
1175 =item *
1176
1177 L<Invalid quantifier in {,} in regex; marked by <-- HERE in mE<sol>%sE<sol>|perldiag/"Invalid quantifier in {,} in regex; marked by <-- HERE in m/%s/">
1178
1179 (F) The pattern looks like a {min,max} quantifier, but the min or max could not
1180 be parsed as a valid number - either it has leading zeroes, or it represents
1181 too big a number to cope with.  The S<<-- HERE> shows where in the regular
1182 expression the problem was discovered.  See L<perlre>.
1183
1184 =back
1185
1186 =head3 New Warnings
1187
1188 =over 4
1189
1190 =item *
1191
1192 L<\C is deprecated in regex|perldiag/"\C is deprecated in regex; marked by <-- HERE in m/%s/">
1193
1194 (D deprecated) The C<< /\C/ >> character class was deprecated in v5.20, and
1195 now emits a warning. It is intended that it will become an error in v5.24.
1196 This character class matches a single byte even if it appears within a
1197 multi-byte character, breaks encapsulation, and can corrupt utf8
1198 strings.
1199
1200 =item *
1201
1202 L<'%s' is an unknown bound type in regex|perldiag/"'%s' is an unknown bound type in regex; marked by <-- HERE in m/%s/">
1203
1204 You used C<\b{...}> or C<\B{...}> and the C<...> is not known to
1205 Perl.  The current valid ones are given in
1206 L<perlrebackslash/\b{}, \b, \B{}, \B>.
1207
1208 =item *
1209
1210 L<"%s" is more clearly written simply as "%s" in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>|perldiag/"%s" is more clearly written simply as "%s" in regex; marked by <-- HERE in mE<sol>%sE<sol>>
1211
1212 (W regexp) (only under C<S<use re 'strict'>> or within C<(?[...])>)
1213
1214 You specified a character that has the given plainer way of writing it,
1215 and which is also portable to platforms running with different character
1216 sets.
1217
1218 =item *
1219
1220 L<Argument "%s" treated as 0 in increment (++)|perldiag/"Argument "%s" treated
1221 as 0 in increment (++)">
1222
1223 (W numeric) The indicated string was fed as an argument to the C<++> operator
1224 which expects either a number or a string matching C</^[a-zA-Z]*[0-9]*\z/>.
1225 See L<perlop/Auto-increment and Auto-decrement> for details.
1226
1227 =item *
1228
1229 L<Both or neither range ends should be Unicode in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>|perldiag/"Both or neither range ends should be Unicode in regex; marked by <-- HERE in m/%s/">
1230
1231 (W regexp) (only under C<S<use re 'strict'>> or within C<(?[...])>)
1232
1233 In a bracketed character class in a regular expression pattern, you
1234 had a range which has exactly one end of it specified using C<\N{}>, and
1235 the other end is specified using a non-portable mechanism.  Perl treats
1236 the range as a Unicode range, that is, all the characters in it are
1237 considered to be the Unicode characters, and which may be different code
1238 points on some platforms Perl runs on.  For example, C<[\N{U+06}-\x08]>
1239 is treated as if you had instead said C<[\N{U+06}-\N{U+08}]>, that is it
1240 matches the characters whose code points in Unicode are 6, 7, and 8.
1241 But that C<\x08> might indicate that you meant something different, so
1242 the warning gets raised.
1243
1244 =item *
1245
1246 L<:const is experimental|perldiag/":const is experimental">
1247
1248 (S experimental::const_attr) The "const" attribute is experimental.
1249 If you want to use the feature, disable the warning with C<no warnings
1250 'experimental::const_attr'>, but know that in doing so you are taking
1251 the risk that your code may break in a future Perl version.
1252
1253 =item *
1254
1255 L<gmtime(%f) failed|perldiag/"gmtime(%f) failed">
1256
1257 (W overflow) You called C<gmtime> with a number that it could not handle:
1258 too large, too small, or NaN.  The returned value is C<undef>.
1259
1260 =item *
1261
1262 L<Hexadecimal float: exponent overflow|perldiag/"Hexadecimal float: exponent overflow">
1263
1264 (W overflow) The hexadecimal floating point has larger exponent
1265 than the floating point supports.
1266
1267 =item *
1268
1269 L<Hexadecimal float: exponent underflow|perldiag/"Hexadecimal float: exponent underflow">
1270
1271 (W overflow) The hexadecimal floating point has smaller exponent
1272 than the floating point supports.
1273
1274 =item *
1275
1276 L<Hexadecimal float: mantissa overflow|perldiag/"Hexadecimal float: mantissa overflow">
1277
1278 (W overflow) The hexadecimal floating point literal had more bits in
1279 the mantissa (the part between the 0x and the exponent, also known as
1280 the fraction or the significand) than the floating point supports.
1281
1282 =item *
1283
1284 L<Hexadecimal float: precision loss|perldiag/"Hexadecimal float: precision loss">
1285
1286 (W overflow) The hexadecimal floating point had internally more
1287 digits than could be output.  This can be caused by unsupported
1288 long double formats, or by 64-bit integers not being available
1289 (needed to retrieve the digits under some configurations).
1290
1291 =item *
1292
1293 L<localtime(%f) failed|perldiag/"localtime(%f) failed">
1294
1295 (W overflow) You called C<localtime> with a number that it could not handle:
1296 too large, too small, or NaN.  The returned value is C<undef>.
1297
1298 =item *
1299
1300 L<Negative repeat count does nothing|perldiag/"Negative repeat count does nothing">
1301
1302 (W numeric) You tried to execute the
1303 L<C<x>|perlop/Multiplicative Operators> repetition operator fewer than 0
1304 times, which doesn't make sense.
1305
1306 =item *
1307
1308 L<NO-BREAK SPACE in a charnames alias definition is deprecated|perldiag/"NO-BREAK SPACE in a charnames alias definition is deprecated">
1309
1310 (D deprecated) You defined a character name which contained a no-break
1311 space character.  Change it to a regular space.  Usually these names are
1312 defined in the C<:alias> import argument to C<use charnames>, but they
1313 could be defined by a translator installed into C<$^H{charnames}>.  See
1314 L<charnames/CUSTOM ALIASES>.
1315
1316 =item *
1317
1318 L<Non-finite repeat count does nothing|perldiag/"Non-finite repeat count does nothing">
1319
1320 (W numeric) You tried to execute the
1321 L<C<x>|perlop/Multiplicative Operators> repetition operator C<Inf> (or
1322 C<-Inf>) or C<NaN> times, which doesn't make sense.
1323
1324 =item *
1325
1326 L<PerlIO layer ':win32' is experimental|perldiag/"PerlIO layer ':win32' is experimental">
1327
1328 (S experimental::win32_perlio) The C<:win32> PerlIO layer is
1329 experimental.  If you want to take the risk of using this layer,
1330 simply disable this warning:
1331
1332     no warnings "experimental::win32_perlio";
1333
1334 =item *
1335
1336 L<Ranges of ASCII printables should be some subset of "0-9", "A-Z", or "a-z" in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>|perldiag/"Ranges of ASCII printables should be some subset of "0-9", "A-Z", or "a-z" in regex; marked by <-- HERE in mE<sol>%sE<sol>">
1337
1338 (W regexp) (only under C<S<use re 'strict'>> or within C<(?[...])>)
1339
1340 Stricter rules help to find typos and other errors.  Perhaps you didn't
1341 even intend a range here, if the C<"-"> was meant to be some other
1342 character, or should have been escaped (like C<"\-">).  If you did
1343 intend a range, the one that was used is not portable between ASCII and
1344 EBCDIC platforms, and doesn't have an obvious meaning to a casual
1345 reader.
1346
1347  [3-7]    # OK; Obvious and portable
1348  [d-g]    # OK; Obvious and portable
1349  [A-Y]    # OK; Obvious and portable
1350  [A-z]    # WRONG; Not portable; not clear what is meant
1351  [a-Z]    # WRONG; Not portable; not clear what is meant
1352  [%-.]    # WRONG; Not portable; not clear what is meant
1353  [\x41-Z] # WRONG; Not portable; not obvious to non-geek
1354
1355 (You can force portability by specifying a Unicode range, which means that
1356 the endpoints are specified by
1357 L<C<\N{...}>|perlrecharclass/Character Ranges>, but the meaning may
1358 still not be obvious.)
1359 The stricter rules require that ranges that start or stop with an ASCII
1360 character that is not a control have all their endpoints be a literal
1361 character, and not some escape sequence (like C<"\x41">), and the ranges
1362 must be all digits, or all uppercase letters, or all lowercase letters.
1363
1364 =item *
1365
1366 L<Ranges of digits should be from the same group in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>|perldiag/"Ranges of digits should be from the same group in regex; marked by <-- HERE in m/%s/">
1367
1368 (W regexp) (only under C<S<use re 'strict'>> or within C<(?[...])>)
1369
1370 Stricter rules help to find typos and other errors.  You included a
1371 range, and at least one of the end points is a decimal digit.  Under the
1372 stricter rules, when this happens, both end points should be digits in
1373 the same group of 10 consecutive digits.
1374
1375 =item *
1376
1377 L<Redundant argument in %s|perldiag/Redundant argument in %s>
1378
1379 (W redundant) You called a function with more arguments than other
1380 arguments you supplied indicated would be needed. Currently only
1381 emitted when a printf-type format required fewer arguments than were
1382 supplied, but might be used in the future for e.g. L<perlfunc/pack>.
1383
1384 The warnings category C<< redundant >> is new. See also
1385 L<[perl #121025]|https://rt.perl.org/Ticket/Display.html?id=121025>.
1386
1387 =item *
1388
1389 L<Use of \b{} for non-UTF-8 locale is wrong.  Assuming a UTF-8 locale|perldiag/"Use of \b{} for non-UTF-8 locale is wrong.  Assuming a UTF-8 locale">
1390
1391 You are matching a regular expression using locale rules,
1392 and a Unicode boundary is being matched, but the locale is not a Unicode
1393 one.  This doesn't make sense.  Perl will continue, assuming a Unicode
1394 (UTF-8) locale, but the results could well be wrong except if the locale
1395 happens to be ISO-8859-1 (Latin1) where this message is spurious and can
1396 be ignored.
1397
1398 =item *
1399
1400 L<< Using E<sol>u for '%s' instead of E<sol>%s in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>|perldiag/"Using E<sol>u for '%s' instead of E<sol>%s in regex; marked by <-- HERE in mE<sol>%sE<sol>" >>
1401
1402 You used a Unicode boundary (C<\b{...}> or C<\B{...}>) in a
1403 portion of a regular expression where the character set modifiers C</a>
1404 or C</aa> are in effect.  These two modifiers indicate an ASCII
1405 interpretation, and this doesn't make sense for a Unicode definition.
1406 The generated regular expression will compile so that the boundary uses
1407 all of Unicode.  No other portion of the regular expression is affected.
1408
1409 =item *
1410
1411 L<The bitwise feature is experimental|perldiag/"The bitwise feature is experimental">
1412
1413 This warning is emitted if you use bitwise
1414 operators (C<& | ^ ~ &. |. ^. ~.>) with the "bitwise" feature enabled.
1415 Simply suppress the warning if you want to use the feature, but know
1416 that in doing so you are taking the risk of using an experimental
1417 feature which may change or be removed in a future Perl version:
1418
1419     no warnings "experimental::bitwise";
1420     use feature "bitwise";
1421     $x |.= $y;
1422
1423 =item *
1424
1425 L<Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in mE<sol>%sE<sol>|perldiag/"Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/%s/">
1426
1427 (D deprecated, regexp) You used a literal C<"{"> character in a regular
1428 expression pattern. You should change to use C<"\{"> instead, because a future
1429 version of Perl (tentatively v5.26) will consider this to be a syntax error.  If
1430 the pattern delimiters are also braces, any matching right brace
1431 (C<"}">) should also be escaped to avoid confusing the parser, for
1432 example,
1433
1434     qr{abc\{def\}ghi}
1435
1436 =item *
1437
1438 L<Use of literal non-graphic characters in variable names is deprecated|perldiag/"Use of literal non-graphic characters in variable names is deprecated">
1439
1440 =item *
1441
1442 L<Useless use of attribute "const"|perldiag/Useless use of attribute "const">
1443
1444 (W misc) The "const" attribute has no effect except
1445 on anonymous closure prototypes.  You applied it to
1446 a subroutine via L<attributes.pm|attributes>.  This is only useful
1447 inside an attribute handler for an anonymous subroutine.
1448
1449 =item *
1450
1451 L<E<quot>use re 'strict'E<quot> is experimental|perldiag/"use re 'strict'" is experimental>
1452
1453 (S experimental::re_strict) The things that are different when a regular
1454 expression pattern is compiled under C<'strict'> are subject to change
1455 in future Perl releases in incompatible ways.  This means that a pattern
1456 that compiles today may not in a future Perl release.  This warning is
1457 to alert you to that risk.
1458
1459 =item *
1460
1461 L<Warning: unable to close filehandle properly: %s|perldiag/"Warning: unable to close filehandle properly: %s">
1462
1463 L<Warning: unable to close filehandle %s properly: %s|perldiag/"Warning: unable to close filehandle %s properly: %s">
1464
1465 (S io) An error occurred when Perl implicitly closed a filehandle.  This
1466 usually indicates your file system ran out of disk space.
1467
1468 =item *
1469
1470 L<Wide character (U+%X) in %s|perldiag/"Wide character (U+%X) in %s">
1471
1472 (W locale) While in a single-byte locale (I<i.e.>, a non-UTF-8
1473 one), a multi-byte character was encountered.   Perl considers this
1474 character to be the specified Unicode code point.  Combining non-UTF8
1475 locales and Unicode is dangerous.  Almost certainly some characters
1476 will have two different representations.  For example, in the ISO 8859-7
1477 (Greek) locale, the code point 0xC3 represents a Capital Gamma.  But so
1478 also does 0x393.  This will make string comparisons unreliable.
1479
1480 You likely need to figure out how this multi-byte character got mixed up
1481 with your single-byte locale (or perhaps you thought you had a UTF-8
1482 locale, but Perl disagrees).
1483
1484 =item *
1485
1486 The following two warnings for C<tr///> used to be skipped if the
1487 transliteration contained wide characters, but now they occur regardless of
1488 whether there are wide characters or not:
1489
1490 L<Useless use of E<sol>d modifier in transliteration operator|perldiag/"Useless use of /d modifier in transliteration operator">
1491
1492 L<Replacement list is longer than search list|perldiag/Replacement list is longer than search list>
1493
1494 =item *
1495
1496 A new C<locale> warning category has been created, with the following warning
1497 messages currently in it:
1498
1499 =over 4
1500
1501 =item *
1502
1503 L<Locale '%s' may not work well.%s|perldiag/Locale '%s' may not work well.%s>
1504
1505 =item *
1506
1507 L<Can't do %s("%s") on non-UTF-8 locale; resolved to "%s".|perldiag/Can't do %s("%s") on non-UTF-8 locale; resolved to "%s".>
1508
1509 =back
1510
1511 =back
1512
1513 =head2 Changes to Existing Diagnostics
1514
1515 =over 4
1516
1517 =item *
1518
1519 <> should be quotes
1520
1521 This warning has been changed to
1522 L<< <> at require-statement should be quotes|perldiag/"<> at require-statement should be quotes" >>
1523 to make the issue more identifiable.
1524
1525 =item *
1526
1527 L<Argument "%s" isn't numeric%s|perldiag/"Argument "%s" isn't numeric%s">
1528 now adds the following note:
1529
1530  Note that for the Inf and NaN (infinity and not-a-number) the
1531  definition of "numeric" is somewhat unusual: the strings themselves
1532  (like "Inf") are considered numeric, and anything following them is
1533  considered non-numeric.
1534
1535 =item *
1536
1537 L<Global symbol "%s" requires explicit package name|perldiag/"Global symbol "%s" requires explicit package name (did you forget to declare "my %s"?)">
1538
1539 This message has had '(did you forget to declare "my %s"?)' appended to it, to
1540 make it more helpful to new Perl programmers.
1541 L<[perl #121638]|https://rt.perl.org/Ticket/Display.html?id=121638>
1542
1543 =item *
1544
1545 '"my" variable &foo::bar can't be in a package' has been reworded to say
1546 'subroutine' instead of 'variable'.
1547
1548 =item *
1549
1550 L<\N{} in character class restricted to one character in regex; marked by S<<-- HERE> in mE<sol>%sE<sol>|perldiag/"\N{} in inverted character class or as a range end-point is restricted to one character in regex; marked by <-- HERE in m/%s/">
1551
1552 This message has had 'character class' changed to 'inverted character class or
1553 as a range end-point is' to reflect improvements in C<qr/[\N{named sequence}]/>
1554 (see under L</Selected Bug Fixes>).
1555
1556 =item *
1557
1558 L<panic: frexp|perldiag/"panic: frexp: %f">
1559
1560 This message has had ': C<%f>' appended to it, to show what the offending floating
1561 point number is.
1562
1563 =item *
1564
1565 B<Possible precedence problem on bitwise %c operator> reworded as
1566 L<Possible precedence problem on bitwise %s operator|perldiag/"Possible precedence problem on bitwise %s operator">.
1567
1568 =item *
1569
1570 C<require> with no argument or undef used to warn about a Null filename; now
1571 it dies with C<Missing or undefined argument to require>.
1572
1573 =item *
1574
1575 L<Unsuccessful %s on filename containing newline|perldiag/"Unsuccessful %s on filename containing newline">
1576
1577 This warning is now only produced when the newline is at the end of
1578 the filename.
1579
1580 =item *
1581
1582 "Variable C<%s> will not stay shared" has been changed to say "Subroutine"
1583 when it is actually a lexical sub that will not stay shared.
1584
1585 =item *
1586
1587 L<Variable length lookbehind not implemented in regex mE<sol>%sE<sol>|perldiag/"Variable length lookbehind not implemented in regex m/%s/">
1588
1589 Information about Unicode behaviour has been added.
1590
1591 =back
1592
1593 =head2 Diagnostic Removals
1594
1595 =over
1596
1597 =item *
1598
1599 "Ambiguous use of -foo resolved as -&foo()"
1600
1601 There is actually no ambiguity here, and this impedes the use of negated
1602 constants; e.g., C<-Inf>.
1603
1604 =item *
1605
1606 "Constant is not a FOO reference"
1607
1608 Compile-time checking of constant dereferencing (e.g., C<< my_constant->() >>)
1609 has been removed, since it was not taking overloading into account.
1610 L<[perl #69456]|https://rt.perl.org/Ticket/Display.html?id=69456>
1611 L<[perl #122607]|https://rt.perl.org/Ticket/Display.html?id=122607>
1612
1613 =back
1614
1615 =head1 Utility Changes
1616
1617 =head2 F<x2p/>
1618
1619 =over 4
1620
1621 =item *
1622
1623 The F<x2p/> directory has been removed from the Perl core.
1624
1625 This removes find2perl, s2p and a2p. They have all been released to CPAN as
1626 separate distributions (App::find2perl, App::s2p, App::a2p).
1627
1628 =back
1629
1630 =head2 L<h2ph>
1631
1632 =over 4
1633
1634 =item *
1635
1636 F<h2ph> now handles hexadecimal constants in the compiler's predefined
1637 macro definitions, as visible in C<$Config{cppsymbols}>.
1638 L<[perl #123784]|https://rt.perl.org/Ticket/Display.html?id=123784>.
1639
1640 =back
1641
1642 =head2 L<encguess>
1643
1644 =over 4
1645
1646 =item *
1647
1648 No longer depends on non-core modules.
1649
1650 =back
1651
1652 =head1 Configuration and Compilation
1653
1654 =over 4
1655
1656 =item *
1657
1658 F<Configure> now checks for F<lrintl>, F<lroundl>, F<llrintl>, and F<llroundl>.
1659
1660 =item *
1661
1662 F<Configure> with C<-Dmksymlinks> should now be faster.
1663 L<[perl #122002]|https://rt.perl.org/Ticket/Display.html?id=122002>.
1664
1665 =item *
1666
1667 pthreads and lcl will be linked by default if present. This allows XS modules
1668 that require threading to work on non-threaded perls. Note that you must still
1669 pass C<-Dusethreads> if you want a threaded perl.
1670
1671 =item *
1672
1673 For long doubles (to get more precision and range for floating point numbers)
1674 one can now use the GCC quadmath library which implements the quadruple
1675 precision floating point numbers on x86 and IA-64 platforms.  See
1676 F<INSTALL> for details.
1677
1678 =item *
1679
1680 MurmurHash64A and MurmurHash64B can now be configured as the internal hash
1681 function.
1682
1683 =item *
1684
1685 C<make test.valgrind> now supports parallel testing.
1686
1687 For example:
1688
1689     TEST_JOBS=9 make test.valgrind
1690
1691 See L<perlhacktips/valgrind> for more information.
1692
1693 L<[perl #121431]|https://rt.perl.org/Ticket/Display.html?id=121431>
1694
1695 =item *
1696
1697 The MAD (Misc Attribute Decoration) build option has been removed
1698
1699 This was an unmaintained attempt at preserving
1700 the Perl parse tree more faithfully so that automatic conversion of
1701 Perl 5 to Perl 6 would have been easier.
1702
1703 This build-time configuration option had been unmaintained for years,
1704 and had probably seriously diverged on both Perl 5 and Perl 6 sides.
1705
1706 =item *
1707
1708 A new compilation flag, C<< -DPERL_OP_PARENT >> is available. For details,
1709 see the discussion below at L<< /Internal Changes >>.
1710
1711 =item *
1712
1713 Pathtools no longer tries to load XS on miniperl. This speeds up building perl
1714 slightly.
1715
1716
1717 =back
1718
1719 =head1 Testing
1720
1721 =over 4
1722
1723 =item *
1724
1725 F<t/porting/re_context.t> has been added to test that L<utf8> and its
1726 dependencies only use the subset of the C<$1..$n> capture vars that
1727 C<Perl_save_re_context()> is hard-coded to localize, because that function has no
1728 efficient way of determining at runtime what vars to localize.
1729
1730 =item *
1731
1732 Tests for performance issues have been added in the file F<t/perf/taint.t>.
1733
1734 =item *
1735
1736 Some regular expression tests are written in such a way that they will
1737 run very slowly if certain optimizations break. These tests have been
1738 moved into new files, F<< t/re/speed.t >> and F<< t/re/speed_thr.t >>,
1739 and are run with a C<< watchdog() >>.
1740
1741 =item *
1742
1743 C<< test.pl >> now allows C<< plan skip_all => $reason >>, to make it
1744 more compatible with C<< Test::More >>.
1745
1746 =item *
1747
1748 A new test script, F<op/infnan.t>, has been added to test if Inf and NaN are
1749 working correctly.  See L</Infinity and NaN (not-a-number) handling improved>.
1750
1751 =back
1752
1753 =head1 Platform Support
1754
1755 =head2 Regained Platforms
1756
1757 =over 4
1758
1759 =item IRIX and Tru64 platforms are working again.
1760
1761 (Some C<make test> failures remain.)
1762
1763 =item z/OS running EBCDIC Code Page 1047
1764
1765 Core perl now works on this EBCDIC platform.  Earlier perls also worked, but,
1766 even though support wasn't officially withdrawn, recent perls would not compile
1767 and run well.  Perl 5.20 would work, but had many bugs which have now been
1768 fixed.  Many CPAN modules that ship with Perl still fail tests, including
1769 Pod::Simple.  However the version of Pod::Simple currently on CPAN should work;
1770 it was fixed too late to include in Perl 5.22.  Work is under way to fix many
1771 of the still-broken CPAN modules, which likely will be installed on CPAN when
1772 completed, so that you may not have to wait until Perl 5.24 to get a working
1773 version.
1774
1775 =back
1776
1777 =head2 Discontinued Platforms
1778
1779 =over 4
1780
1781 =item NeXTSTEP/OPENSTEP
1782
1783 NeXTSTEP was a proprietary operating system bundled with NeXT's
1784 workstations in the early to mid 90s; OPENSTEP was an API specification
1785 that provided a NeXTSTEP-like environment on a non-NeXTSTEP system.  Both
1786 are now long dead, so support for building Perl on them has been removed.
1787
1788 =back
1789
1790 =head2 Platform-Specific Notes
1791
1792 =over 4
1793
1794 =item EBCDIC
1795
1796 Special handling is required on EBCDIC platforms to get C<qr/[i-j]/> to
1797 match only C<"i"> and C<"j">, since there are 7 characters between the
1798 code points for C<"i"> and C<"j">.  This special handling had only been
1799 invoked when both ends of the range are literals.  Now it is also
1800 invoked if any of the C<\N{...}> forms for specifying a character by
1801 name or Unicode code point is used instead of a literal.  See
1802 L<perlrecharclass/Character Ranges>.
1803
1804 =item HP-UX
1805
1806 The archname now distinguishes use64bitint from use64bitall.
1807
1808 =item Android
1809
1810 Build support has been improved for cross-compiling in general and for
1811 Android in particular.
1812
1813 =item VMS
1814
1815 =over 4
1816
1817 =item *
1818
1819 When spawning a subprocess without waiting, the return value is now
1820 the correct PID.
1821
1822 =item *
1823
1824 Fix a prototype so linking doesn't fail under the VMS C++ compiler.
1825
1826 =item *
1827
1828 C<finite>, C<finitel>, and C<isfinite> detection has been added to
1829 C<configure.com>, environment handling has had some minor changes, and
1830 a fix for legacy feature checking status.
1831
1832 =back
1833
1834 =item Win32
1835
1836 =over 4
1837
1838 =item *
1839
1840 F<miniperl.exe> is now built with C<-fno-strict-aliasing>, allowing 64-bit
1841 builds to complete on GCC 4.8.
1842 L<[perl #123976]|https://rt.perl.org/Ticket/Display.html?id=123976>
1843
1844 =item *
1845
1846 C<nmake minitest> now works on Win32.  Due to dependency issues you
1847 need to build C<nmake test-prep> first, and a small number of the
1848 tests fail.
1849 L<[perl #123394]|https://rt.perl.org/Ticket/Display.html?id=123394>
1850
1851 =item *
1852
1853 Perl can now be built in C++ mode on Windows by setting the makefile macro
1854 C<USE_CPLUSPLUS> to the value "define".
1855
1856 =item *
1857
1858 List form of pipe open has been implemented for Win32.  Note: unlike
1859 C< system LIST >> this does not fall back to the shell.
1860 L<[perl #121159]|https://rt.perl.org/Ticket/Display.html?id=121159>
1861
1862 =item *
1863
1864 New C<DebugSymbols> and C<DebugFull> configuration options added to
1865 Windows makefiles.
1866
1867 =item *
1868
1869 L<B> now compiles again on Windows.
1870
1871 =item *
1872
1873 Previously compiling XS modules (including CPAN ones) using Visual C++ for
1874 Win64 resulted in around a dozen warnings per file from hv_func.h.  These
1875 warnings have been silenced.
1876
1877 =item *
1878
1879 Support for building without PerlIO has been removed from the Windows
1880 makefiles.  Non-PerlIO builds were all but deprecated in Perl 5.18.0 and are
1881 already not supported by F<Configure> on POSIX systems.
1882
1883 =item *
1884
1885 Between 2 and 6 ms and 7 I/O calls have been saved per attempt to open a perl
1886 module for each path in C<@INC>.
1887
1888 =item *
1889
1890 Intel C builds are now always built with C99 mode on.
1891
1892 =item *
1893
1894 C<%I64d> is now being used instead of C<%lld> for MinGW.
1895
1896 =item *
1897
1898 In the experimental C<:win32> layer, a crash in C<open> was fixed. Also
1899 opening C</dev/null>, which works the Win32 Perl's normal C<:unix> layer, was
1900 implemented for C<:win32>.
1901 L<[perl #122224]|https://rt.perl.org/Ticket/Display.html?id=122224>
1902
1903 =item *
1904
1905 A new makefile option, C<USE_LONG_DOUBLE>, has been added to the Windows
1906 dmake makefile for gcc builds only.  Set this to "define" if you want perl to
1907 use long doubles to give more accuracy and range for floating point numbers.
1908
1909 =back
1910
1911 =item OpenBSD
1912
1913 On OpenBSD, Perl will now default to using the system C<malloc> due to the
1914 security features it provides. Perl's own malloc wrapper has been in use
1915 since v5.14 due to performance reasons, but the OpenBSD project believes
1916 the tradeoff is worth it and would prefer that users who need the speed
1917 specifically ask for it.
1918
1919 L<[perl #122000]|https://rt.perl.org/Ticket/Display.html?id=122000>.
1920
1921 =item Solaris
1922
1923 =over 4
1924
1925 =item *
1926
1927 We now look for the Sun Studio compiler in both F</opt/solstudio*> and
1928 F</opt/solarisstudio*>.
1929
1930 =item *
1931
1932 Builds on Solaris 10 with C<-Dusedtrace> would fail early since make
1933 didn't follow implied dependencies to build C<perldtrace.h>.  Added an
1934 explicit dependency to C<depend>.
1935 L<[perl #120120]|https://rt.perl.org/Ticket/Display.html?id=120120>
1936
1937 =item *
1938
1939 C<c99> options have been cleaned up, hints look for C<solstudio>
1940 as well as C<SUNWspro>, and support for native C<setenv> has been added.
1941
1942 =back
1943
1944 =back
1945
1946 =head1 Internal Changes
1947
1948 =over 4
1949
1950 =item *
1951
1952 Experimental support has been added to allow ops in the optree to locate
1953 their parent, if any. This is enabled by the non-default build option
1954 C<-DPERL_OP_PARENT>. It is envisaged that this will eventually become
1955 enabled by default, so XS code which directly accesses the C<op_silbing>
1956 field of ops should be updated to be future-proofed.
1957
1958 On C<PERL_OP_PARENT> builds, the C<op_sibling> field has been renamed
1959 C<op_sibparent> and a new flag, C<op_moresib>, added. On the last op in a
1960 sibling chain, C<op_moresib> is false and C<op_sibparent> points to the
1961 parent (if any) rather than to being C<NULL>.
1962
1963 To make existing code work transparently whether using C<-DPERL_OP_PARENT>
1964 or not, a number of new macros and functions have been added that should
1965 be used, rather than directly manipulating C<op_sibling>.
1966
1967 For the case of just reading C<op_sibling> to determine the next sibling,
1968 two new macros have been added. A simple scan through a sibling chain
1969 like this:
1970
1971     for (; kid->op_sibling; kid = kid->op_sibling) { ...  }
1972
1973 should now be written as:
1974
1975     for (; OpHAS_SIBLING(kid); kid = OpSIBLING(kid)) { ...  }
1976
1977 For altering optrees, A general-purpose function C<op_sibling_splice()>
1978 has been added, which allows for manipulation of a chain of sibling ops.
1979 By analogy with the Perl function C<splice()>, it allows you to cut out
1980 zero or more ops from a sibling chain and replace them with zero or more
1981 new ops.  It transparently handles all the updating of sibling, parent,
1982 op_last pointers etc.
1983
1984 If you need to manipulate ops at a lower level, then three new macros,
1985 C<OpMORESIB_set>, C<OpLASTSIB_set> and C<OpMAYBESIB_set> are intended to
1986 be a low-level portable way to set C<op_sibling> / C<op_sibparent> while
1987 also updating C<op_moresib>.  The first sets the sibling pointer to a new
1988 sibling, the second makes the op the last sibling, and the third
1989 conditionally does the first or second action.  Note that unlike
1990 C<op_sibling_splice()> these macros won't maintain consistency in the
1991 parent at the same time (e.g. by updating C<op_first> and C<op_last> where
1992 appropriate).
1993
1994 A C-level C<Perl_op_parent()> function and a perl-level C<B::OP::parent()>
1995 method have been added. The C function only exists under
1996 C<-DPERL_OP_PARENT> builds (using it is build-time error on vanilla
1997 perls).  C<B::OP::parent()> exists always, but on a vanilla build it
1998 always returns C<NULL>. Under C<-DPERL_OP_PARENT>, they return the parent
1999 of the current op, if any. The variable C<$B::OP::does_parent> allows you
2000 to determine whether C<B> supports retrieving an op's parent.
2001
2002 XXX C<-DPERL_OP_PARENT> was introduced in 5.21.2, but the interface was
2003 changed considerably in 5.21.11. If you updated your code before the
2004 5.21.11 changes, it may require further revision. The main changes after
2005 5.21.2 were:
2006
2007 =over 4
2008
2009 =item *
2010
2011 The C<OP_SIBLING> and C<OP_HAS_SIBLING> macros have been renamed
2012 C<OpSIBLING> and C<OpHAS_SIBLING> for consistency with other
2013 op-manipulating macros.
2014
2015 =item *
2016
2017 The C<op_lastsib> field has been renamed C<op_moresib>, and its meaning
2018 inverted.
2019
2020 =item *
2021
2022 The macro C<OpSIBLING_set> has been removed, and has been superseded by
2023 C<OpMORESIB_set> et al.
2024
2025 =item *
2026
2027 The C<op_sibling_splice()> function now accepts a null C<parent> argument
2028 where the splicing doesn't affect the first or last ops in the sibling
2029 chain
2030
2031 =back
2032
2033 =item *
2034
2035 Macros have been created to allow XS code to better manipulate the POSIX locale
2036 category C<LC_NUMERIC>.  See L<perlapi/Locale-related functions and macros>.
2037
2038 =item *
2039
2040 The previous C<atoi> et al replacement function, C<grok_atou>, has now been
2041 superseded by C<grok_atoUV>.  See L<perlclib> for details.
2042
2043 =item *
2044
2045 Added C<Perl_sv_get_backrefs()> to determine if an SV is a weak-referent.
2046
2047 Function either returns an SV * of type AV, which contains the set of
2048 weakreferences which reference the passed in SV, or a simple RV * which
2049 is the only weakref to this item.
2050
2051 =item *
2052
2053 The C<screaminstr> perl function has been removed. Although marked as
2054 public API, it was undocumented and had no usage in CPAN modules. Calling
2055 it has been fatal since 5.17.0.
2056
2057 =item *
2058
2059 C<newDEFSVOP>, C<block_start>, C<block_end> and C<intro_my> have been added
2060 to the API.
2061
2062 =item *
2063
2064 The internal C<convert> function in F<op.c> has been renamed
2065 C<op_convert_list> and added to the API.
2066
2067 =item *
2068
2069 C<sv_magic> no longer forbids "ext" magic on read-only values.  After all,
2070 perl can't know whether the custom magic will modify the SV or not.
2071 L<[perl #123103]|https://rt.perl.org/Ticket/Display.html?id=123103>.
2072
2073 =item *
2074
2075 Accessing L<perlapi/CvPADLIST> in an XSUB is now forbidden.
2076 C<CvPADLIST> has been reused for a different internal purpose for XSUBs. Guard all
2077 C<CvPADLIST> expressions with C<CvISXSUB()> if your code doesn't already block
2078 XSUB CV*s from going through optree CV* expecting code.
2079
2080 =item *
2081
2082 SVs of type SVt_NV are now bodyless when a build configure and platform allow
2083 it, specifically C<sizeof(NV) <= sizeof(IV)>. The bodyless trick is the same one
2084 as for IVs since 5.9.2, but for NVs, unlike IVs, is not guaranteed on all
2085 platforms and build configurations.
2086
2087 =item *
2088
2089 The C<$DB::single>, C<$DB::signal> and C<$DB::trace> now have set and
2090 get magic that stores their values as IVs and those IVs are used when
2091 testing their values in C<pp_dbstate>.  This prevents perl from
2092 recursing infinitely if an overloaded object is assigned to any of those
2093 variables.
2094 L<[perl #122445]|https://rt.perl.org/Ticket/Display.html?id=122445>.
2095
2096 =item *
2097
2098 C<Perl_tmps_grow> which is marked as public API but is undocumented, has been
2099 removed from public API. If you use C<EXTEND_MORTAL> macro in your XS code to
2100 preextend the mortal stack, you are unaffected by this change.
2101
2102 =item *
2103
2104 XXX C<cv_name>, which was introduced in 5.21.4, has been changed incompatibly.
2105 It now has a flags field that allows the caller to specify whether the name
2106 should be fully qualified.  See L<perlapi/cv_name>.
2107
2108 =item *
2109
2110 Internally Perl no longer uses the C<SVs_PADMY> flag.  C<SvPADMY()> now
2111 returns a true value for anything not marked PADTMP.  C<SVs_PADMY> is now
2112 defined as 0.
2113
2114 =item *
2115
2116 The macros SETsv and SETsvUN have been removed. They were no longer used
2117 in the core since commit 6f1401dc2a, and have not been found present on
2118 CPAN.
2119
2120 =item *
2121
2122 The C<< SvFAKE >> bit (unused on HVs) got informally reserved by
2123 David Mitchell for future work on vtables.
2124
2125 =item *
2126
2127 The C<sv_catpvn_flags> function accepts C<SV_CATBYTES> and C<SV_CATUTF8>
2128 flags, which specify whether the appended string is bytes or utf8,
2129 respectively.
2130
2131 =item *
2132
2133 A new opcode class, C<< METHOP >>, has been introduced. It holds
2134 class/method related info needed at runtime to improve performance
2135 of class/object method calls.
2136
2137 C<< OP_METHOD >> and C<< OP_METHOD_NAMED >> are moved from being
2138 C<< UNOP/SVOP >> to being C<< METHOP >>.
2139
2140 =item *
2141
2142 C<save_re_context> no longer does anything and has been moved to F<mathoms.c>.
2143
2144 =item *
2145
2146 C<cv_name> is a new API function that can be passed a CV or GV.  It returns an
2147 SV containing the name of the subroutine for use in diagnostics.
2148 L<[perl #116735]|https://rt.perl.org/Ticket/Display.html?id=116735>
2149 L<[perl #120441]|https://rt.perl.org/Ticket/Display.html?id=120441>
2150
2151 =item *
2152
2153 C<cv_set_call_checker_flags> is a new API function that works like
2154 C<cv_set_call_checker>, except that it allows the caller to specify whether the
2155 call checker requires a full GV for reporting the subroutine's name, or whether
2156 it could be passed a CV instead.  Whatever value is passed will be acceptable
2157 to C<cv_name>.  C<cv_set_call_checker> guarantees there will be a GV, but it
2158 may have to create one on the fly, which is inefficient.
2159 L<[perl #116735]|https://rt.perl.org/Ticket/Display.html?id=116735>
2160
2161 =item *
2162
2163 C<CvGV> (which is not part of the API) is now a more complex macro, which may
2164 call a function and reify a GV.  For those cases where is has been used as a
2165 boolean, C<CvHASGV> has been added, which will return true for CVs that
2166 notionally have GVs, but without reifying the GV.  C<CvGV> also returns a GV
2167 now for lexical subs.
2168 L<[perl #120441]|https://rt.perl.org/Ticket/Display.html?id=120441>
2169
2170 =item *
2171
2172 Added L<perlapi/sync_locale>.  Changing the program's locale should be avoided
2173 by XS code.  Nevertheless, certain non-Perl libraries called from XS, such as
2174 C<Gtk> do so.  When this happens, Perl needs to be told that the locale has
2175 changed.  Use this function to do so, before returning to Perl.
2176
2177 =item *
2178
2179 The defines and labels for the flags in the C<op_private> field of OPs are now
2180 auto-generated from data in F<regen/op_private>.  The noticeable effect of this
2181 is that some of the flag output of C<Concise> might differ slightly, and the
2182 flag output of C<perl -Dx> may differ considerably (they both use the same set
2183 of labels now).  Also in debugging builds, there is a new assert in
2184 C<op_free()> that checks that the op doesn't have any unrecognized flags set in
2185 C<op_private>.
2186
2187 =item *
2188
2189 The deprecated variable C<PL_sv_objcount> has been removed.
2190
2191 =item *
2192
2193 Perl now tries to keep the locale category C<LC_NUMERIC> set to "C"
2194 except around operations that need it to be set to the program's
2195 underlying locale.  This protects the many XS modules that cannot cope
2196 with the decimal radix character not being a dot.  Prior to this
2197 release, Perl initialized this category to "C", but a call to
2198 C<POSIX::setlocale()> would change it.  Now such a call will change the
2199 underlying locale of the C<LC_NUMERIC> category for the program, but the
2200 locale exposed to XS code will remain "C".  There are new macros
2201 to manipulate the LC_NUMERIC locale, including
2202 C<STORE_LC_NUMERIC_SET_TO_NEEDED> and
2203 C<STORE_LC_NUMERIC_FORCE_TO_UNDERLYING>.
2204 See L<perlapi/Locale-related functions and macros>.
2205
2206 =item *
2207
2208 A new macro L<C<isUTF8_CHAR>|perlapi/isUTF8_CHAR> has been written which
2209 efficiently determines if the string given by its parameters begins
2210 with a well-formed UTF-8 encoded character.
2211
2212 =item *
2213
2214 The following private API functions had their context parameter removed,
2215 C<Perl_cast_ulong>,  C<Perl_cast_i32>, C<Perl_cast_iv>,    C<Perl_cast_uv>,
2216 C<Perl_cv_const_sv>, C<Perl_mg_find>,  C<Perl_mg_findext>, C<Perl_mg_magical>,
2217 C<Perl_mini_mktime>, C<Perl_my_dirfd>, C<Perl_sv_backoff>, C<Perl_utf8_hop>.
2218
2219 Users of the public API prefix-less calls remain unaffected.
2220
2221 =item *
2222
2223 The PADNAME and PADNAMELIST types are now separate types, and no longer
2224 simply aliases for SV and AV.
2225 L<[perl #123223]|https://rt.perl.org/Ticket/Display.html?id=123223>.
2226
2227 =item *
2228
2229 Pad names are now always UTF8.  The C<PadnameUTF8> macro always returns
2230 true.  Previously, this was effectively the case already, but any support
2231 for two different internal representations of pad names has now been
2232 removed.
2233
2234 =item *
2235
2236 A new op class, C<UNOP_AUX>, has been added. This is a subclass of
2237 C<UNOP> with an C<op_aux> field added, which points to an array of unions
2238 of C<UV>, C<SV*> etc. It is intended for where an op needs to store more data
2239 than a simple C<op_sv> or whatever. Currently the only op of this type is
2240 C<OP_MULTIDEREF> (see below).
2241
2242 =item *
2243
2244 A new op has been added, C<OP_MULTIDEREF>, which performs one or more
2245 nested array and hash lookups where the key is a constant or simple
2246 variable. For example the expression C<$a[0]{$k}[$i]>, which previously
2247 involved ten C<rv2Xv>, C<Xelem>, C<gvsv> and C<const> ops is now performed
2248 by a single C<multideref> op. It can also handle C<local>, C<exists> and
2249 C<delete>. A non-simple index expression, such as C<[$i+1]> is still done
2250 using C<aelem>/C<helem>, and single-level array lookup with a small constant
2251 index is still done using C<aelemfast>.
2252
2253 =back
2254
2255 =head1 Selected Bug Fixes
2256
2257 =over 4
2258
2259 =item *
2260
2261 C<pack("D", $x)> and C<pack("F", $x)> now zero the padding on x86 long double
2262 builds.  GCC 4.8 and later, under some build options, would either overwrite
2263 the zero-initialized padding, or bypass the initialized buffer entirely.  This
2264 caused F<op/pack.t> to fail.
2265 L<[perl #123971]|https://rt.perl.org/Ticket/Display.html?id=123971>
2266
2267 =item *
2268
2269 Extending an array cloned from a parent thread could result in "Modification of
2270 a read-only value attempted" errors when attempting to modify the new elements.
2271 L<[perl #124127]|https://rt.perl.org/Ticket/Display.html?id=124127>
2272
2273 =item *
2274
2275 An assertion failure and subsequent crash with C<< *x=<y> >> has been fixed.
2276 L<[perl #123790]|https://rt.perl.org/Ticket/Display.html?id=123790>
2277
2278 =item *
2279
2280 XXX An optimization for state variable initialization introduced in Perl 5.21.6 has
2281 been reverted because it was found to exacerbate some other existing buggy
2282 behaviour.
2283 L<[perl #124160]|https://rt.perl.org/Ticket/Display.html?id=124160>
2284
2285 =item *
2286
2287 XXX The extension of another optimization to cover more ops in Perl 5.21 has also
2288 been reverted to its Perl 5.20 state as a temporary fix for regression issues
2289 that it caused.
2290 L<[perl #123790]|https://rt.perl.org/Ticket/Display.html?id=123790>
2291
2292 =item *
2293
2294 A possible crashing/looping bug has been fixed.
2295 L<[perl #124099]|https://rt.perl.org/Ticket/Display.html?id=124099>
2296
2297 =item *
2298
2299 UTF-8 variable names used in array indexes, unquoted UTF-8 HERE-document
2300 terminators and UTF-8 function names all now work correctly.
2301 L<[perl #124113]|https://rt.perl.org/Ticket/Display.html?id=124113>
2302
2303 =item *
2304
2305 Repeated global pattern matches in scalar context on large tainted strings were
2306 exponentially slow depending on the current match position in the string.
2307 L<[perl #123202]|https://rt.perl.org/Ticket/Display.html?id=123202>
2308
2309 =item *
2310
2311 Various crashes due to the parser getting confused by syntax errors have been
2312 fixed.
2313 L<[perl #123801]|https://rt.perl.org/Ticket/Display.html?id=123801>
2314 L<[perl #123802]|https://rt.perl.org/Ticket/Display.html?id=123802>
2315 L<[perl #123955]|https://rt.perl.org/Ticket/Display.html?id=123955>
2316 L<[perl #123995]|https://rt.perl.org/Ticket/Display.html?id=123995>
2317
2318 =item *
2319
2320 C<split> in the scope of lexical C<$>_ has been fixed not to fail assertions.
2321 L<[perl #123763]|https://rt.perl.org/Ticket/Display.html?id=123763>
2322
2323 =item *
2324
2325 C<my $x : attr> syntax inside various list operators no longer fails
2326 assertions.
2327 L<[perl #123817]|https://rt.perl.org/Ticket/Display.html?id=123817>
2328
2329 =item *
2330
2331 An C<@> sign in quotes followed by a non-ASCII digit (which is not a valid
2332 identifier) would cause the parser to crash, instead of simply trying the C<@> as
2333 literal.  This has been fixed.
2334 L<[perl #123963]|https://rt.perl.org/Ticket/Display.html?id=123963>
2335
2336 =item *
2337
2338 C<*bar::=*foo::=*glob_with_hash> has been crashing since Perl 5.14, but no
2339 longer does.
2340 L<[perl #123847]|https://rt.perl.org/Ticket/Display.html?id=123847>
2341
2342 =item *
2343
2344 C<foreach> in scalar context was not pushing an item on to the stack, resulting
2345 in bugs.  (S<C<print 4, scalar do { foreach(@x){} } + 1>> would print 5.)  It has
2346 been fixed to return C<undef>.
2347 L<[perl #124004]|https://rt.perl.org/Ticket/Display.html?id=124004>
2348
2349 =item *
2350
2351 A regression in the behaviour of the C<readline> built-in function, caused by
2352 the introduction of the C<< <<>> >> operator, has been fixed.
2353 L<[perl #123990]|https://rt.perl.org/Ticket/Display.html?id=123990>
2354
2355 =item *
2356
2357 Several cases of data used to store environment variable contents in core C
2358 code being potentially overwritten before being used have been fixed.
2359 L<[perl #123748]|https://rt.perl.org/Ticket/Display.html?id=123748>
2360
2361 =item *
2362
2363 Patterns starting with C</.*/> are now fast again.
2364 L<[perl #123743]|https://rt.perl.org/Ticket/Display.html?id=123743>.
2365
2366 =item *
2367
2368 The original visible value of C<$/> is now preserved when it is set to
2369 an invalid value.  Previously if you set C<$/> to a reference to an
2370 array, for example, perl would produce a runtime error and not set
2371 C<PL_rs>, but perl code that checked C<$/> would see the array
2372 reference.
2373 L<[perl #123218]|https://rt.perl.org/Ticket/Display.html?id=123218>.
2374
2375 =item *
2376
2377 In a regular expression pattern, a POSIX class, like C<[:ascii:]>, must
2378 be inside a bracketed character class, like C<qr/[[:ascii:]]/>.  A
2379 warning is issued when something looking like a POSIX class is not
2380 inside a bracketed class.  That warning wasn't getting generated when
2381 the POSIX class was negated: C<[:^ascii:]>.  This is now fixed.
2382
2383 =item *
2384
2385 Fix a couple of size calculation overflows.
2386 L<[perl #123554]|https://rt.perl.org/Ticket/Display.html?id=123554>.
2387
2388 =item *
2389
2390 Perl 5.14.0 introduced a bug whereby C<eval { LABEL: }> would crash.  This
2391 has been fixed.
2392 L<[perl #123652]|https://rt.perl.org/Ticket/Display.html?id=123652>.
2393
2394 =item *
2395
2396 Various crashes due to the parser getting confused by syntax errors have
2397 been fixed.
2398 L<[perl #123617]|https://rt.perl.org/Ticket/Display.html?id=123617>.
2399 L<[perl #123737]|https://rt.perl.org/Ticket/Display.html?id=123737>.
2400 L<[perl #123753]|https://rt.perl.org/Ticket/Display.html?id=123753>.
2401 L<[perl #123677]|https://rt.perl.org/Ticket/Display.html?id=123677>.
2402
2403 =item *
2404
2405 Code like C</$a[/> used to read the next line of input and treat it as
2406 though it came immediately after the opening bracket.  Some invalid code
2407 consequently would parse and run, but some code caused crashes, so this is
2408 now disallowed.
2409 L<[perl #123712]|https://rt.perl.org/Ticket/Display.html?id=123712>.
2410
2411 =item *
2412
2413 Fix argument underflow for C<pack>.
2414 L<[perl #123874]|https://rt.perl.org/Ticket/Display.html?id=123874>.
2415
2416 =item *
2417
2418 Fix handling of non-strict C<\x{}>. Now C<\x{}> is equivalent to C<\x{0}>
2419 instead of faulting.
2420
2421 =item *
2422
2423 C<stat -t> is now no longer treated as stackable, just like C<-t stat>.
2424 L<[perl #123816]|https://rt.perl.org/Ticket/Display.html?id=123816>.
2425
2426 =item *
2427
2428 The following no longer causes a SEGV: C<qr{x+(y(?0))*}>.
2429
2430 =item *
2431
2432 Fixed infinite loop in parsing backrefs in regexp patterns.
2433
2434 =item *
2435
2436 Several minor bug fixes in behavior of Inf and NaN, including
2437 warnings when stringifying Inf-like or NaN-like strings. For example,
2438 "NaNcy" doesn't numify to NaN anymore.
2439
2440 =item *
2441
2442 Only stringy classnames are now shared. This fixes some failures in L<autobox>.
2443 L<[perl #100819]|https://rt.cpan.org/Ticket/Display.html?id=100819>.
2444
2445 =item *
2446
2447 A bug in regular expression patterns that could lead to segfaults and
2448 other crashes has been fixed.  This occurred only in patterns compiled
2449 with C<"/i">, while taking into account the current POSIX locale (this usually
2450 means they have to be compiled within the scope of C<S<"use locale">>),
2451 and there must be a string of at least 128 consecutive bytes to match.
2452 L<[perl #123539]|https://rt.perl.org/Ticket/Display.html?id=123539>.
2453
2454 =item *
2455
2456 C<s///> now works on very long strings instead of dying with 'Substitution
2457 loop'.
2458 L<[perl #103260]|https://rt.perl.org/Ticket/Display.html?id=103260>.
2459 L<[perl #123071]|https://rt.perl.org/Ticket/Display.html?id=123071>.
2460
2461 =item *
2462
2463 C<gmtime> no longer crashes with not-a-number values.
2464 L<[perl #123495]|https://rt.perl.org/Ticket/Display.html?id=123495>.
2465
2466 =item *
2467
2468 C<\()> (reference to an empty list) and C<y///> with lexical C<$_> in scope
2469 could do a bad write past the end of the stack.  They have been fixed
2470 to extend the stack first.
2471
2472 =item *
2473
2474 C<prototype()> with no arguments used to read the previous item on the
2475 stack, so C<print "foo", prototype()> would print foo's prototype.  It has
2476 been fixed to infer C<$_> instead.
2477 L<[perl #123514]|https://rt.perl.org/Ticket/Display.html?id=123514>.
2478
2479 =item *
2480
2481 Some cases of lexical state subs inside predeclared subs could crash but no
2482 longer do.
2483
2484 =item *
2485
2486 Some cases of nested lexical state subs inside anonymous subs could cause
2487 'Bizarre copy' errors or possibly even crash.
2488
2489 =item *
2490
2491 When trying to emit warnings, perl's default debugger (F<perl5db.pl>) was
2492 sometimes giving 'Undefined subroutine &DB::db_warn called' instead.  This
2493 bug, which started to occur in Perl 5.18, has been fixed.
2494 L<[perl #123553]|https://rt.perl.org/Ticket/Display.html?id=123553>.
2495
2496 =item *
2497
2498 Certain syntax errors in substitutions, such as C<< s/${E<lt>E<gt>{})// >>, would
2499 crash, and had done so since Perl 5.10.  (In some cases the crash did not
2500 start happening till 5.16.)  The crash has, of course, been fixed.
2501 L<[perl #123542]|https://rt.perl.org/Ticket/Display.html?id=123542>.
2502
2503 =item *
2504
2505 A repeat expression like C<33 x ~3> could cause a large buffer
2506 overflow since the new output buffer size was not correctly handled by
2507 SvGROW().  An expression like this now properly produces a memory wrap
2508 panic.
2509 L<[perl #123554]|https://rt.perl.org/Ticket/Display.html?id=123554>.
2510
2511 =item *
2512
2513 C<< formline("@...", "a"); >> would crash.  The C<FF_CHECKNL> case in
2514 pp_formline() didn't set the pointer used to mark the chop position,
2515 which led to the C<FF_MORE> case crashing with a segmentation fault.
2516 This has been fixed.
2517 L<[perl #123538]|https://rt.perl.org/Ticket/Display.html?id=123538>.
2518
2519 =item *
2520
2521 A possible buffer overrun and crash when parsing a literal pattern during
2522 regular expression compilation has been fixed.
2523 L<[perl #123604]|https://rt.perl.org/Ticket/Display.html?id=123604>.
2524
2525 =item *
2526
2527 C<fchmod()> and C<futimes()> now set C<$!> when they fail due to being
2528 passed a closed file handle.
2529 L<[perl #122703]|https://rt.perl.org/Ticket/Display.html?id=122703>.
2530
2531 =item *
2532
2533 op_free() no longer crashes due to a stack overflow when freeing a
2534 deeply recursive op tree.
2535 L<[perl #108276]|https://rt.perl.org/Ticket/Display.html?id=108276>.
2536
2537 =item *
2538
2539 scalarvoid() would crash due to a stack overflow when processing a
2540 deeply recursive op tree.
2541 L<[perl #108276]|https://rt.perl.org/Ticket/Display.html?id=108276>.
2542
2543 =item *
2544
2545 In Perl 5.20.0, C<$^N> accidentally had the internal UTF8 flag turned off
2546 if accessed from a code block within a regular expression, effectively
2547 UTF8-encoding the value.  This has been fixed.
2548 L<[perl #123135]|https://rt.perl.org/Ticket/Display.html?id=123135>.
2549
2550 =item *
2551
2552 A failed C<semctl> call no longer overwrites existing items on the stack,
2553 causing C<(semctl(-1,0,0,0))[0]> to give an "uninitialized" warning.
2554
2555 =item *
2556
2557 C<else{foo()}> with no space before C<foo> is now better at assigning the
2558 right line number to that statement.
2559 L<[perl #122695]|https://rt.perl.org/Ticket/Display.html?id=122695>.
2560
2561 =item *
2562
2563 Sometimes the assignment in C<@array = split> gets optimised and C<split>
2564 itself writes directly to the array.  This caused a bug, preventing this
2565 assignment from being used in lvalue context.  So
2566 C<(@a=split//,"foo")=bar()> was an error.  (This bug probably goes back to
2567 Perl 3, when the optimisation was added.)  This optimisation, and the bug,
2568 started to happen in more cases in XXX 5.21.5.  It has now been fixed.
2569 L<[perl #123057]|https://rt.perl.org/Ticket/Display.html?id=123057>.
2570
2571 =item *
2572
2573 When argument lists that fail the checks installed by subroutine
2574 signatures, the resulting error messages now give the file and line number
2575 of the caller, not of the called subroutine.
2576 L<[perl #121374]|https://rt.perl.org/Ticket/Display.html?id=121374>.
2577
2578 =item *
2579
2580 Flip-flop operators (C<..> and C<...> in scalar context) used to maintain
2581 a separate state for each recursion level (the number of times the
2582 enclosing sub was called recursively), contrary to the documentation.  Now
2583 each closure has one internal state for each flip-flop.
2584 L<[perl #122829]|https://rt.perl.org/Ticket/Display.html?id=122829>.
2585
2586 =item *
2587
2588 C<use>, C<no>, statement labels, special blocks (C<BEGIN>) and pod are now
2589 permitted as the first thing in a C<map> or C<grep> block, the block after
2590 C<print> or C<say> (or other functions) returning a handle, and within
2591 C<${...}>, C<@{...}>, etc.
2592 L<[perl #122782]|https://rt.perl.org/Ticket/Display.html?id=122782>.
2593
2594 =item *
2595
2596 The repetition operator C<x> now propagates lvalue context to its left-hand
2597 argument when used in contexts like C<foreach>.  That allows
2598 S<C<for(($#that_array)x2) { ... }>> to work as expected if the loop modifies
2599 $_.
2600
2601 =item *
2602
2603 C<(...) x ...> in scalar context used to corrupt the stack if one operand
2604 were an object with "x" overloading, causing erratic behaviour.
2605 L<[perl #121827]|https://rt.perl.org/Ticket/Display.html?id=121827>.
2606
2607 =item *
2608
2609 Assignment to a lexical scalar is often optimised away (as mentioned under
2610 L</Performance Enhancements>).  Various bugs related to this optimisation
2611 have been fixed.  Certain operators on the right-hand side would sometimes
2612 fail to assign the value at all or assign the wrong value, or would call
2613 STORE twice or not at all on tied variables.  The operators affected were
2614 C<$foo++>, C<$foo-->, and C<-$foo> under C<use integer>, C<chomp>, C<chr>
2615 and C<setpgrp>.
2616
2617 =item *
2618
2619 List assignments were sometimes buggy if the same scalar ended up on both
2620 sides of the assignment due to used of C<tied>, C<values> or C<each>.  The
2621 result would be the wrong value getting assigned.
2622
2623 =item *
2624
2625 C<setpgrp($nonzero)> (with one argument) was accidentally changed in 5.16
2626 to mean C<setpgrp(0)>.  This has been fixed.
2627
2628 =item *
2629
2630 C<__SUB__> could return the wrong value or even corrupt memory under the
2631 debugger (the C<-d> switch) and in subs containing C<eval $string>.
2632
2633 =item *
2634
2635 When S<C<sub () { $var }>> becomes inlinable, it now returns a different
2636 scalar each time, just as a non-inlinable sub would, though Perl still
2637 optimises the copy away in cases where it would make no observable
2638 difference.
2639
2640 =item *
2641
2642 S<C<my sub f () { $var }>> and S<C<sub () : attr { $var }>> are no longer
2643 eligible for inlining.  The former would crash; the latter would just
2644 throw the attributes away.  An exception is made for the little-known
2645 ":method" attribute, which does nothing much.
2646
2647 =item *
2648
2649 Inlining of subs with an empty prototype is now more consistent than
2650 before.  Previously, a sub with multiple statements, all but the last
2651 optimised away, would be inlinable only if it were an anonymous sub
2652 containing a string C<eval> or C<state> declaration or closing over an
2653 outer lexical variable (or any anonymous sub under the debugger).  Now any
2654 sub that gets folded to a single constant after statements have been
2655 optimised away is eligible for inlining.  This applies to things like C<sub
2656 () { jabber() if DEBUG; 42 }>.
2657
2658 Some subroutines with an explicit C<return> were being made inlinable,
2659 contrary to the documentation,  Now C<return> always prevents inlining.
2660
2661 =item *
2662
2663 On some systems, such as VMS, C<crypt> can return a non-ASCII string.  If a
2664 scalar assigned to had contained a UTF8 string previously, then C<crypt>
2665 would not turn off the UTF8 flag, thus corrupting the return value.  This
2666 would happen with C<$lexical = crypt ...>.
2667
2668 =item *
2669
2670 C<crypt> no longer calls C<FETCH> twice on a tied first argument.
2671
2672 =item *
2673
2674 An unterminated here-doc on the last line of a quote-like operator
2675 (C<qq[${ <<END }]>, C</(?{ <<END })/>) no longer causes a double free.  It
2676 started doing so in 5.18.
2677
2678 =item *
2679
2680 Fixed two assertion failures introduced into C<-DPERL_OP_PARENT>
2681 builds.
2682 L<[perl #108276]|https://rt.perl.org/Ticket/Display.html?id=108276>.
2683
2684 =item *
2685
2686 C<index()> and C<rindex()> no longer crash when used on strings over 2GB in
2687 size.
2688 L<[perl #121562]|https://rt.perl.org/Ticket/Display.html?id=121562>.
2689
2690 =item *
2691
2692 A small previously intentional memory leak in PERL_SYS_INIT/PERL_SYS_INIT3 on
2693 Win32 builds was fixed. This might affect embedders who repeatedly create and
2694 destroy perl engines within the same process.
2695
2696 =item *
2697
2698 C<POSIX::localeconv()> now returns the data for the program's underlying
2699 locale even when called from outside the scope of S<C<use locale>>.
2700
2701 =item *
2702
2703 C<POSIX::localeconv()> now works properly on platforms which don't have
2704 C<LC_NUMERIC> and/or C<LC_MONETARY>, or for which Perl has been compiled
2705 to disregard either or both of these locale categories.  In such
2706 circumstances, there are now no entries for the corresponding values in
2707 the hash returned by C<localeconv()>.
2708
2709 =item *
2710
2711 C<POSIX::localeconv()> now marks appropriately the values it returns as
2712 UTF-8 or not.  Previously they were always returned as bytes, even if
2713 they were supposed to be encoded as UTF-8.
2714
2715 =item *
2716
2717 On Microsoft Windows, within the scope of C<S<use locale>>, the following
2718 POSIX character classes gave results for many locales that did not
2719 conform to the POSIX standard:
2720 C<[[:alnum:]]>,
2721 C<[[:alpha:]]>,
2722 C<[[:blank:]]>,
2723 C<[[:digit:]]>,
2724 C<[[:graph:]]>,
2725 C<[[:lower:]]>,
2726 C<[[:print:]]>,
2727 C<[[:punct:]]>,
2728 C<[[:upper:]]>,
2729 C<[[:word:]]>,
2730 and
2731 C<[[:xdigit:]]>.
2732 This was because the underlying Microsoft implementation does not
2733 follow the standard.  Perl now takes special precautions to correct for
2734 this.
2735
2736 =item *
2737
2738 Many issues have been detected by L<Coverity|http://www.coverity.com/> and
2739 fixed.
2740
2741 =item *
2742
2743 system() and friends should now work properly on more Android builds.
2744
2745 Due to an oversight, the value specified through C<-Dtargetsh> to F<Configure>
2746 would end up being ignored by some of the build process.  This caused perls
2747 cross-compiled for Android to end up with defective versions of C<system()>,
2748 exec() and backticks: the commands would end up looking for C</bin/sh>
2749 instead of C</system/bin/sh>, and so would fail for the vast majority
2750 of devices, leaving C<$!> as C<ENOENT>.
2751
2752 =item *
2753
2754 C<qr(...\(...\)...)>,
2755 C<qr[...\[...\]...]>,
2756 and
2757 C<qr{...\{...\}...}>
2758 now work.  Previously it was impossible to escape these three
2759 left-characters with a backslash within a regular expression pattern
2760 where otherwise they would be considered metacharacters, and the pattern
2761 opening delimiter was the character, and the closing delimiter was its
2762 mirror character.
2763
2764 =item *
2765
2766 C<< s///e >> on tainted utf8 strings got C<< pos() >> messed up. This bug,
2767 introduced in 5.20, is now fixed.
2768 L<[perl #122148]|https://rt.perl.org/Ticket/Display.html?id=122148>.
2769
2770 =item *
2771
2772 A non-word boundary in a regular expression (C<< \B >>) did not always
2773 match the end of the string; in particular C<< q{} =~ /\B/ >> did not
2774 match. This bug, introduced in perl 5.14, is now fixed.
2775 L<[perl #122090]|https://rt.perl.org/Ticket/Display.html?id=122090>.
2776
2777 =item *
2778
2779 C<< " P" =~ /(?=.*P)P/ >> should match, but did not. This is now fixed.
2780 L<[perl #122171]|https://rt.perl.org/Ticket/Display.html?id=122171>.
2781
2782 =item *
2783
2784 Failing to compile C<use Foo> in an eval could leave a spurious
2785 C<BEGIN> subroutine definition, which would produce a "Subroutine
2786 BEGIN redefined" warning on the next use of C<use>, or other C<BEGIN>
2787 block.
2788 L<[perl #122107]|https://rt.perl.org/Ticket/Display.html?id=122107>.
2789
2790 =item *
2791
2792 C<method { BLOCK } ARGS> syntax now correctly parses the arguments if they
2793 begin with an opening brace.
2794 L<[perl #46947]|https://rt.perl.org/Ticket/Display.html?id=46947>.
2795
2796 =item *
2797
2798 External libraries and Perl may have different ideas of what the locale is.
2799 This is problematic when parsing version strings if the locale's numeric
2800 separator has been changed.  Version parsing has been patched to ensure
2801 it handles the locales correctly.
2802 L<[perl #121930]|https://rt.perl.org/Ticket/Display.html?id=121930>.
2803
2804 =item *
2805
2806 A bug has been fixed where zero-length assertions and code blocks inside of a
2807 regex could cause C<pos> to see an incorrect value.
2808 L<[perl #122460]|https://rt.perl.org/Ticket/Display.html?id=122460>.
2809
2810 =item *
2811
2812 Constant dereferencing now works correctly for typeglob constants.  Previously
2813 the glob was stringified and its name looked up.  Now the glob itself is used.
2814 L<[perl #69456]|https://rt.perl.org/Ticket/Display.html?id=69456>
2815
2816 =item *
2817
2818 When parsing a funny character (C<$> C<@> C<%> C<&)> followed by braces,
2819 the parser no
2820 longer tries to guess whether it is a block or a hash constructor (causing a
2821 syntax error when it guesses the latter), since it can only be a block.
2822
2823 =item *
2824
2825 S<C<undef $reference>> now frees the referent immediately, instead of hanging on
2826 to it until the next statement.
2827 L<[perl #122556]|https://rt.perl.org/Ticket/Display.html?id=122556>
2828
2829 =item *
2830
2831 Various cases where the name of a sub is used (autoload, overloading, error
2832 messages) used to crash for lexical subs, but have been fixed.
2833
2834 =item *
2835
2836 Bareword lookup now tries to avoid vivifying packages if it turns out the
2837 bareword is not going to be a subroutine name.
2838
2839 =item *
2840
2841 Compilation of anonymous constants (e.g., C<sub () { 3 }>) no longer deletes
2842 any subroutine named C<__ANON__> in the current package.  Not only was
2843 C<*__ANON__{CODE}> cleared, but there was a memory leak, too.  This bug goes
2844 back to Perl 5.8.0.
2845
2846 =item *
2847
2848 Stub declarations like C<sub f;> and C<sub f ();> no longer wipe out constants
2849 of the same name declared by C<use constant>.  This bug was introduced in Perl
2850 5.10.0.
2851
2852 =item *
2853
2854 C<qr/[\N{named sequence}]/> now works properly in many instances.  Some names
2855 known to C<\N{...}> refer to a sequence of multiple characters, instead of the
2856 usual single character.  Bracketed character classes generally only match
2857 single characters, but now special handling has been added so that they can
2858 match named sequences, but not if the class is inverted or the sequence is
2859 specified as the beginning or end of a range.  In these cases, the only
2860 behavior change from before is a slight rewording of the fatal error message
2861 given when this class is part of a C<?[...])> construct.  When the C<[...]>
2862 stands alone, the same non-fatal warning as before is raised, and only the
2863 first character in the sequence is used, again just as before.
2864
2865 =item *
2866
2867 Tainted constants evaluated at compile time no longer cause unrelated
2868 statements to become tainted.
2869 L<[perl #122669]|https://rt.perl.org/Ticket/Display.html?id=122669>
2870
2871 =item *
2872
2873 S<C<open $$fh, ...>>, which vivifies a handle with a name like C<"main::_GEN_0">, was
2874 not giving the handle the right reference count, so a double free could happen.
2875
2876 =item *
2877
2878 When deciding that a bareword was a method name, the parser would get confused
2879 if an C<our> sub with the same name existed, and look up the method in the
2880 package of the C<our> sub, instead of the package of the invocant.
2881
2882 =item *
2883
2884 The parser no longer gets confused by C<\U=> within a double-quoted string.  It
2885 used to produce a syntax error, but now compiles it correctly.
2886 L<[perl #80368]|https://rt.perl.org/Ticket/Display.html?id=80368>
2887
2888 =item *
2889
2890 It has always been the intention for the C<-B> and C<-T> file test operators to
2891 treat UTF-8 encoded files as text.  (L<perlfunc|perlfunc/-X FILEHANDLE> has
2892 been updated to say this.)  Previously, it was possible for some files to be
2893 considered UTF-8 that actually weren't valid UTF-8.  This is now fixed.  The
2894 operators now work on EBCDIC platforms as well.
2895
2896 =item *
2897
2898 Under some conditions warning messages raised during regular expression pattern
2899 compilation were being output more than once.  This has now been fixed.
2900
2901 =item *
2902
2903 A regression has been fixed that was introduced in Perl 5.20.0 (fixed in Perl
2904 5.20.1 as well as here) in which a UTF-8 encoded regular expression pattern
2905 that contains a single ASCII lowercase letter does not match its uppercase
2906 counterpart.
2907 L<[perl #122655]|https://rt.perl.org/Ticket/Display.html?id=122655>
2908
2909 =item *
2910
2911 Constant folding could incorrectly suppress warnings if lexical warnings (C<use
2912 warnings> or C<no warnings>) were not in effect and C<$^W> were false at
2913 compile time and true at run time.
2914
2915 =item *
2916
2917 Loading UTF8 tables during a regular expression match could cause assertion
2918 failures under debugging builds if the previous match used the very same
2919 regular expression.
2920 L<[perl #122747]|https://rt.perl.org/Ticket/Display.html?id=122747>
2921
2922 =item *
2923
2924 Thread cloning used to work incorrectly for lexical subs, possibly causing
2925 crashes or double frees on exit.
2926
2927 =item *
2928
2929 Since Perl 5.14.0, deleting C<$SomePackage::{__ANON__}> and then undefining an
2930 anonymous subroutine could corrupt things internally, resulting in
2931 L<Devel::Peek> crashing or L<B.pm|B> giving nonsensical data.  This has been
2932 fixed.
2933
2934 =item *
2935
2936 S<C<(caller $n)[3]>> now reports names of lexical subs, instead of treating them
2937 as C<"(unknown)">.
2938
2939 =item *
2940
2941 C<sort subname LIST> now supports lexical subs for the comparison routine.
2942
2943 =item *
2944
2945 Aliasing (e.g., via C<*x = *y>) could confuse list assignments that mention the
2946 two names for the same variable on either side, causing wrong values to be
2947 assigned.
2948 L<[perl #15667]|https://rt.perl.org/Ticket/Display.html?id=15667>
2949
2950 =item *
2951
2952 Long here-doc terminators could cause a bad read on short lines of input.  This
2953 has been fixed.  It is doubtful that any crash could have occurred.  This bug
2954 goes back to when here-docs were introduced in Perl 3.000 twenty-five years
2955 ago.
2956
2957 =item *
2958
2959 An optimization in C<split> to treat C<split/^/> like C<split/^/m> had the
2960 unfortunate side-effect of also treating C<split/\A/> like C<split/^/m>, which
2961 it should not.  This has been fixed.  (Note, however, that C<split/^x/> does
2962 not behave like C<split/^x/m>, which is also considered to be a bug and will be
2963 fixed in a future version.)
2964 L<[perl #122761]|https://rt.perl.org/Ticket/Display.html?id=122761>
2965
2966 =item *
2967
2968 The little-known S<C<my Class $var>> syntax (see L<fields> and L<attributes>)
2969 could get confused in the scope of C<use utf8> if C<Class> were a constant
2970 whose value contained Latin-1 characters.
2971
2972 =item *
2973
2974 Locking and unlocking values via L<Hash::Util> or C<Internals::SvREADONLY>
2975 no longer has any effect on values that are read-only to begin.
2976 Previously, unlocking such values could result in crashes, hangs or
2977 other erratic behaviour.
2978
2979 =item *
2980
2981 The flip-flop operator (C<..> in scalar context) would return the same
2982 scalar each time, unless the containing subroutine was called recursively.
2983 Now it always returns a new scalar.
2984 L<[perl #122829]|https://rt.perl.org/Ticket/Display.html?id=122829>.
2985
2986 =item *
2987
2988 Some unterminated C<(?(...)...)> constructs in regular expressions would
2989 either crash or give erroneous error messages.  C</(?(1)/> is one such
2990 example.
2991
2992 =item *
2993
2994 S<C<pack "w", $tied>> no longer calls FETCH twice.
2995
2996 =item *
2997
2998 List assignments like S<C<($x, $z) = (1, $y)>> now work correctly if C<$x> and
2999 C<$y> have been aliased by C<foreach>.
3000
3001 =item *
3002
3003 Some patterns including code blocks with syntax errors, such as
3004 C</ (?{(^{})/>, would hang or fail assertions on debugging builds.  Now
3005 they produce errors.
3006
3007 =item *
3008
3009 An assertion failure when parsing C<sort> with debugging enabled has been
3010 fixed.
3011 L<[perl #122771]|https://rt.perl.org/Ticket/Display.html?id=122771>.
3012
3013 =item *
3014
3015 S<C<*a = *b; @a = split //, $b[1]>> could do a bad read and produce junk
3016 results.
3017
3018 =item *
3019
3020 In S<C<() = @array = split>>, the S<C<() =>> at the beginning no longer confuses
3021 the optimizer, making it assume a limit of 1.
3022
3023 =item *
3024
3025 Fatal warnings no longer prevent the output of syntax errors.
3026 L<[perl #122966]|https://rt.perl.org/Ticket/Display.html?id=122966>.
3027
3028 =item *
3029
3030 Fixed a NaN double to long double conversion error on VMS. For quiet NaNs
3031 (and only on Itanium, not Alpha) negative infinity instead of NaN was
3032 produced.
3033
3034 =item *
3035
3036 Fixed the issue that caused C<< make distclean >> to leave files behind
3037 that shouldn't.
3038 L<[perl #122820]|https://rt.perl.org/Ticket/Display.html?id=122820>.
3039
3040 =item *
3041
3042 AIX now sets the length in C<< getsockopt >> correctly.
3043 L<[perl #120835]|https://rt.perl.org/Ticket/Display.html?id=120835>.
3044 L<[cpan #91183]|https://rt.cpan.org/Ticket/Display.html?id=91183>.
3045 L<[cpan #85570]|https://rt.cpan.org/Ticket/Display.html?id=85570>.
3046
3047 =item *
3048
3049 During the pattern optimization phase, we no longer recurse into
3050 C<GOSUB>/C<GOSTART> when not C<SCF_DO_SUBSTR>. This prevents the optimizer
3051 to run "forever" and exhaust all memory.
3052 L<[perl #122283]|https://rt.perl.org/Ticket/Display.html?id=122283>.
3053
3054 =item *
3055
3056 F<< t/op/crypt.t >> now performs SHA-256 algorithm if the default one
3057 is disabled.
3058 L<[perl #121591]|https://rt.perl.org/Ticket/Display.html?id=121591>.
3059
3060 =item *
3061
3062 Fixed an off-by-one error when setting the size of shared array.
3063 L<[perl #122950]|https://rt.perl.org/Ticket/Display.html?id=122950>.
3064
3065 =item *
3066
3067 Fixed a bug that could cause perl to execute an infinite loop during
3068 compilation.
3069 L<[perl #122995]|https://rt.perl.org/Ticket/Display.html?id=122995>.
3070
3071 =item *
3072
3073 On Win32, restoring in a child pseudo-process a variable that was
3074 C<local()>ed in a parent pseudo-process before the C<fork> happened caused
3075 memory corruption and a crash in the child pseudo-process (and therefore OS
3076 process).
3077 L<[perl #40565]|https://rt.perl.org/Ticket/Display.html?id=40565>.
3078
3079 =item *
3080
3081 Calling C<write> on a format with a C<^**> field could produce a panic
3082 in C<sv_chop()> if there were insufficient arguments or if the variable
3083 used to fill the field was empty.
3084 L<[perl #123245]|https://rt.perl.org/Ticket/Display.html?id=123245>.
3085
3086 =item *
3087
3088 Non-ASCII lexical sub names (use in error messages) on longer have extra
3089 junk on the end.
3090
3091 =item *
3092
3093 The C<\@> subroutine prototype no longer flattens parenthesized arrays
3094 (taking a reference to each element), but takes a reference to the array
3095 itself.
3096 L<[perl #47363]|https://rt.perl.org/Ticket/Display.html?id=47363>.
3097
3098 =item *
3099
3100 A block containing nothing except a C-style C<for> loop could corrupt the
3101 stack, causing lists outside the block to lose elements or have elements
3102 overwritten.  This could happen with C<map { for(...){...} } ...> and with
3103 lists containing C<do { for(...){...} }>.
3104 L<[perl #123286]|https://rt.perl.org/Ticket/Display.html?id=123286>.
3105
3106 =item *
3107
3108 C<scalar()> now propagates lvalue context, so that
3109 S<C<for(scalar($#foo)) { ... }>> can modify C<$#foo> through C<$_>.
3110
3111 =item *
3112
3113 C<qr/@array(?{block})/> no longer dies with "Bizarre copy of ARRAY".
3114 L<[perl #123344]|https://rt.perl.org/Ticket/Display.html?id=123344>.
3115
3116 =item *
3117
3118 S<C<eval '$variable'>> in nested named subroutines would sometimes look up a
3119 global variable even with a lexical variable in scope.
3120
3121 =item *
3122
3123 In perl 5.20.0, C<sort CORE::fake> where 'fake' is anything other than a
3124 keyword started chopping of the last 6 characters and treating the result
3125 as a sort sub name.  The previous behaviour of treating "CORE::fake" as a
3126 sort sub name has been restored.
3127 L<[perl #123410]|https://rt.perl.org/Ticket/Display.html?id=123410>.
3128
3129 =item *
3130
3131 Outside of C<use utf8>, a single-character Latin-1 lexical variable is
3132 disallowed.  The error message for it, "Can't use global C<$foo>...", was
3133 giving garbage instead of the variable name.
3134
3135 =item *
3136
3137 C<readline> on a nonexistent handle was causing C<${^LAST_FH}> to produce a
3138 reference to an undefined scalar (or fail an assertion).  Now
3139 C<${^LAST_FH}> ends up undefined.
3140
3141 =item *
3142
3143 C<(...)x...> in void context now applies scalar context to the left-hand
3144 argument, instead of the context the current sub was called in.
3145 L<[perl #123020]|https://rt.perl.org/Ticket/Display.html?id=123020>.
3146
3147 =back
3148
3149 =head1 Known Problems
3150
3151 =over 4
3152
3153 =item *
3154
3155 A goal is for Perl to be able to be recompiled to work reasonably well on any
3156 Unicode version.  In Perl 5.22, though, the earliest such version is Unicode
3157 5.1 (current is 7.0).
3158
3159 =item *
3160
3161 EBCDIC platforms
3162
3163 =over 4
3164
3165 =item *
3166
3167 The C<cmp> (and hence C<sort>) operators do not necessarily give the
3168 correct results when both operands are UTF-EBCDIC encoded strings and
3169 there is a mixture of ASCII and/or control characters, along with other
3170 characters.
3171
3172 =item *
3173
3174 Ranges containing C<\N{...}> in the C<tr///> (and C<y///>)
3175 transliteration operators are treated differently than the equivalent
3176 ranges in regular expression pattersn.  They should, but don't, cause
3177 the values in the ranges to all be treated as Unicode code points, and
3178 not native ones.  (L<perlre/Version 8 Regular Expressions> gives
3179 details as to how it should work.)
3180
3181 =item *
3182
3183 Encode and encoding are mostly broken.
3184
3185 =item *
3186
3187 Many CPAN modules that are shipped with core show failing tests.
3188
3189 =item *
3190
3191 C<pack>/C<unpack> with C<"U0"> format may not work properly.
3192
3193 =back
3194
3195 =item *
3196
3197 The following modules are known to have test failures with this version of
3198 Perl.  Patches have been submitted, so there will hopefully be new releases
3199 soon:
3200
3201 =over
3202
3203 =item *
3204
3205 L<B::Generate> version 1.50
3206
3207 =item *
3208
3209 L<B::Utils> version 0.25
3210
3211 =item *
3212
3213 L<Dancer> version 1.3130
3214
3215 =item *
3216
3217 L<Data::Alias> version 1.18
3218
3219 =item *
3220
3221 L<Data::Util> version 0.63
3222
3223 =item *
3224
3225 L<Devel::Spy> version 0.07
3226
3227 =item *
3228
3229 L<invoker> version 0.34
3230
3231 =item *
3232
3233 L<Lexical::Var> version 0.009
3234
3235 =item *
3236
3237 L<Mason> version 2.22
3238
3239 =item *
3240
3241 L<NgxQueue> version 0.02
3242
3243 =item *
3244
3245 L<Padre> version 1.00
3246
3247 =item *
3248
3249 L<Parse::Keyword> 0.08
3250
3251 =back
3252
3253 =back
3254
3255 =head1 Obituary
3256
3257 Brian McCauley died on May 8, 2015.  He was a frequent poster to Usenet, Perl
3258 Monks, and other Perl forums, and made several CPAN contributions under the
3259 nick NOBULL, including to the Perl FAQ.  He attended almost every
3260 YAPC::Europe, and indeed, helped organise YAPC::Europe 2006 and the QA
3261 Hackathon 2009.  His wit and his delight in intricate systems were
3262 particularly apparent in his love of board games; many Perl mongers will
3263 have fond memories of playing Fluxx and other games with Brian.  He will be
3264 missed.
3265
3266 =head1 Acknowledgements
3267
3268 XXX Generate this with:
3269
3270   perl Porting/acknowledgements.pl v5.20.0..HEAD
3271
3272 =head1 Reporting Bugs
3273
3274 If you find what you think is a bug, you might check the articles recently
3275 posted to the comp.lang.perl.misc newsgroup and the perl bug database at
3276 https://rt.perl.org/ .  There may also be information at
3277 http://www.perl.org/ , the Perl Home Page.
3278
3279 If you believe you have an unreported bug, please run the L<perlbug> program
3280 included with your release.  Be sure to trim your bug down to a tiny but
3281 sufficient test case.  Your bug report, along with the output of C<perl -V>,
3282 will be sent off to perlbug@perl.org to be analysed by the Perl porting team.
3283
3284 If the bug you are reporting has security implications, which make it
3285 inappropriate to send to a publicly archived mailing list, then please send it
3286 to perl5-security-report@perl.org.  This points to a closed subscription
3287 unarchived mailing list, which includes all the core committers, who will be
3288 able to help assess the impact of issues, figure out a resolution, and help
3289 co-ordinate the release of patches to mitigate or fix the problem across all
3290 platforms on which Perl is supported.  Please only use this address for
3291 security issues in the Perl core, not for modules independently distributed on
3292 CPAN.
3293
3294 =head1 SEE ALSO
3295
3296 The F<Changes> file for an explanation of how to view exhaustive details on
3297 what changed.
3298
3299 The F<INSTALL> file for how to build Perl.
3300
3301 The F<README> file for general stuff.
3302
3303 The F<Artistic> and F<Copying> files for copyright information.
3304
3305 =cut