5 perldelta - what is new for perl v5.22.0
9 This document describes differences between the 5.20.0 release and the 5.22.0
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.
15 =head1 Core Enhancements
17 =head2 New bitwise operators
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<&= |= ^= &.= |.= ^.=>).
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>.
30 =head2 New double-diamond operator
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.
36 =head2 New \b boundaries in regular expressions
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.
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.
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.
61 =head2 C<no re> covers more and is lexical
63 Previously running C<no re> would turn off only 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.
67 =head2 Non-Capturing Regular Expression Flag
69 Regular expressions now support a C</n> flag that disables capturing
70 and filling in C<$1>, C<$2>, etc inside of groups:
72 "hello" =~ /(hi|hello)/n; # $1 is not set
74 This is equivalent to putting C<?:> at the beginning of every capturing group.
76 See L<perlre/"n"> for more information.
78 =head2 C<use re 'strict'>
80 This applies stricter syntax rules to regular expression patterns
81 compiled within its scope. This will hopefully alert you to typos and
82 other unintentional behavior that backwards-compatibility issues prevent
83 us from reporting 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 warning of category
86 C<experimental::re_strict>.
87 See L<'strict' in re|re/'strict' mode>.
89 =head2 Unicode 7.0 (with correction) is now supported
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>).
98 =head2 S<C<use locale>> can restrict which locale categories are affected
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.
104 =head2 Perl now supports POSIX 2008 locale currency additions
106 On platforms that are able to handle POSIX.1-2008, the
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>,
114 C<int_p_cs_precedes>,
115 C<int_p_sep_by_space>,
119 =head2 Better heuristics on older platforms for determining locale UTF-8ness
121 On platforms that implement neither the C99 standard nor the POSIX 2001
122 standard, determining if the current locale is UTF-8 or not depends on
123 heuristics. These are improved in this release.
125 =head2 Aliasing via reference
127 Variables and subroutines can now be aliased by assigning to a reference:
132 Aliasing can also be accomplished
133 by using a backslash before a C<foreach> iterator variable; this is
134 perhaps the most useful idiom this feature provides:
136 foreach \%hash (@array_of_hash_refs) { ... }
138 This feature is experimental and must be enabled via S<C<use feature
139 'refaliasing'>>. It will warn unless the C<experimental::refaliasing>
140 warnings category is disabled.
142 See L<perlref/Assigning to References>
144 =head2 C<prototype> with no arguments
146 C<prototype()> with no arguments now infers C<$_>.
147 L<[perl #123514]|https://rt.perl.org/Ticket/Display.html?id=123514>.
149 =head2 New C<:const> subroutine attribute
151 The C<const> attribute can be applied to an anonymous subroutine. It
152 causes the new sub to be executed immediately whenever one is created
153 (i.e. when the C<sub> expression is evaluated). Its value is captured
154 and used to create a new constant subroutine that is returned. This
155 feature is experimental. See L<perlsub/Constant Functions>.
157 =head2 C<fileno> now works on directory handles
159 When the relevant support is available in the operating system, the
160 C<fileno> builtin now works on directory handles, yielding the
161 underlying file descriptor in the same way as for filehandles. On
162 operating systems without such support, C<fileno> on a directory handle
163 continues to return the undefined value, as before, but also sets C<$!> to
164 indicate that the operation is not supported.
166 Currently, this uses either a C<dd_fd> member in the OS C<DIR>
167 structure, or a C<dirfd(3)> function as specified by POSIX.1-2008.
169 =head2 List form of pipe open implemented for Win32
171 The list form of pipe:
173 open my $fh, "-|", "program", @arguments;
175 is now implemented on Win32. It has the same limitations as C<system
176 LIST> on Win32, since the Win32 API doesn't accept program arguments
179 =head2 C<close> now sets C<$!>
181 When an I/O error occurs, the fact that there has been an error is recorded
182 in the handle. C<close> returns false for such a handle. Previously, the
183 value of C<$!> would be untouched by C<close>, so the common convention of
184 writing S<C<close $fh or die $!>> did not work reliably. Now the handle
185 records the value of C<$!>, too, and C<close> restores it.
187 =head2 Assignment to list repetition
189 C<(...) x ...> can now be used within a list that is assigned to, as long
190 as the left-hand side is a valid lvalue. This allows S<C<(undef,undef,$foo)
191 = that_function()>> to be written as S<C<((undef)x2, $foo) = that_function()>>.
193 =head2 Infinity and NaN (not-a-number) handling improved
195 Floating point values are able to hold the special values infinity, negative
196 infinity, and NaN (not-a-number). Now we more robustly recognize and
197 propagate the value in computations, and on output normalize them to the strings
198 C<Inf>, C<-Inf>, and C<NaN>.
200 See also the L<POSIX> enhancements.
202 =head2 Floating point parsing has been improved
204 Parsing and printing of floating point values has been improved.
206 As a completely new feature, hexadecimal floating point literals
207 (like C<0x1.23p-4>) are now supported, and they can be output with
208 S<C<printf "%a">>. See L<perldata/Scalar value constructors> for more
211 =head2 Packing infinity or not-a-number into a character is now fatal
213 Before, when trying to pack infinity or not-a-number into a
214 (signed) character, Perl would warn, and assumed you tried to
215 pack C<< 0xFF >>; if you gave it as an argument to C<< chr >>,
216 C<< U+FFFD >> was returned.
218 But now, all such actions (C<< pack >>, C<< chr >>, and C<< print '%c' >>)
219 result in a fatal error.
221 =head2 Experimental C Backtrace API
223 Perl now supports (via a C level API) retrieving
224 the C level backtrace (similar to what symbolic debuggers like gdb do).
226 The backtrace returns the stack trace of the C call frames,
227 with the symbol names (function names), the object names (like "perl"),
228 and if it can, also the source code locations (file:line).
230 The supported platforms are Linux and OS X (some *BSD might work at
231 least partly, but they have not yet been tested).
233 The feature needs to be enabled with C<Configure -Dusecbacktrace>.
235 See L<perlhacktips/"C backtrace"> for more information.
239 =head2 Perl is now compiled with -fstack-protector-strong if available
241 Perl has been compiled with the anti-stack-smashing option
242 C<-fstack-protector> since 5.10.1. Now Perl uses the newer variant
243 called C<-fstack-protector-strong>, if available.
245 =head2 The L<Safe> module could allow outside packages to be replaced
247 Critical bugfix: outside packages could be replaced. L<Safe> has
248 been patched to 2.38 to address this.
250 =head2 Perl is now always compiled with -D_FORTIFY_SOURCE=2 if available
252 The 'code hardening' option called C<_FORTIFY_SOURCE>, available in
253 gcc 4.*, is now always used for compiling Perl, if available.
255 Note that this isn't necessarily a huge step since in many platforms
256 the step had already been taken several years ago: many Linux
257 distributions (like Fedora) have been using this option for Perl,
258 and OS X has enforced the same for many years.
260 =head1 Incompatible Changes
262 =head2 Subroutine signatures moved before attributes
264 The experimental sub signatures feature, as introduced in 5.20, parsed
265 signatures after attributes. In this release, following feedback from users
266 of the experimental feature, the positioning has been moved such that
267 signatures occur after the subroutine name (if any) and before the attribute
270 =head2 C<&> and C<\&> prototypes accepts only subs
272 The C<&> prototype character now accepts only anonymous subs (C<sub
273 {...}>), things beginning with C<\&>, or an explicit C<undef>. Formerly
274 it erroneously also allowed references to arrays, hashes, and lists.
275 L<[perl #4539]|https://rt.perl.org/Ticket/Display.html?id=4539>.
276 L<[perl #123062]|https://rt.perl.org/Ticket/Display.html?id=123062>.
277 L<[perl #123062]|https://rt.perl.org/Ticket/Display.html?id=123475>.
279 In addition, the C<\&> prototype was allowing subroutine calls, whereas
280 now it only allows subroutines: C<&foo> is still permitted as an argument,
281 while C<&foo()> and C<foo()> no longer are.
282 L<[perl #77860]|https://rt.perl.org/Ticket/Display.html?id=77860>.
284 =head2 C<use encoding> is now lexical
286 The L<encoding> pragma's effect is now limited to lexical scope. This
287 pragma is deprecated, but in the meantime, it could adversely affect
288 unrelated modules that are included in the same program.
290 =head2 List slices returning empty lists
292 List slices now return an empty list only if the original list was empty
293 (or if there are no indices). Formerly, a list slice would return an empty
294 list if all indices fell outside the original list; now it returns a list
295 of C<undef> values in that case.
296 L<[perl #114498]|https://rt.perl.org/Ticket/Display.html?id=114498>.
298 =head2 C<\N{}> with a sequence of multiple spaces is now a fatal error
300 E.g. S<C<\N{TOOE<nbsp>E<nbsp>MANY SPACES}>> or S<C<\N{TRAILING SPACE }>>.
301 This has been deprecated since v5.18.
303 =head2 S<C<use UNIVERSAL '...'>> is now a fatal error
305 Importing functions from C<UNIVERSAL> has been deprecated since v5.12, and
306 is now a fatal error. S<C<use UNIVERSAL>> without any arguments is still
309 =head2 In double-quotish C<\cI<X>>, I<X> must now be a printable ASCII character
311 In prior releases, failure to do this raised a deprecation warning.
313 =head2 Splitting the tokens C<(?> and C<(*> in regular expressions is now a fatal compilation error.
315 These had been deprecated since v5.18.
317 =head2 C<qr/foo/x> now ignores all Unicode pattern white space
319 The C</x> regular expression modifier allows the pattern to contain
320 white space and comments (both of which are ignored) for improved
321 readability. Until now, not all the white space characters that Unicode
322 designates for this purpose were handled. The additional ones now
326 U+200E LEFT-TO-RIGHT MARK
327 U+200F RIGHT-TO-LEFT MARK
328 U+2028 LINE SEPARATOR
329 U+2029 PARAGRAPH SEPARATOR
331 The use of these characters with C</x> outside bracketed character
332 classes and when not preceded by a backslash has raised a deprecation
333 warning since v5.18. Now they will be ignored.
335 =head2 Comment lines within S<C<(?[ ])>> are now ended only by a C<\n>
337 S<C<(?[ ])>> is an experimental feature, introduced in v5.18. It operates
338 as if C</x> is always enabled. But there was a difference: comment
339 lines (following a C<#> character) were terminated by anything matching
340 C<\R> which includes all vertical whitespace, such as form feeds. For
341 consistency, this is now changed to match what terminates comment lines
342 outside S<C<(?[ ])>>, namely a C<\n> (even if escaped), which is the
343 same as what terminates a heredoc string and formats.
345 =head2 C<(?[...])> operators now follow standard Perl precedence
347 This experimental feature allows set operations in regular expression patterns.
348 Prior to this, the intersection operator had the same precedence as the other
349 binary operators. Now it has higher precedence. This could lead to different
350 outcomes than existing code expects (though the documentation has always noted
351 that this change might happen, recommending fully parenthesizing the
352 expressions). See L<perlrecharclass/Extended Bracketed Character Classes>.
354 =head2 Omitting C<%> and C<@> on hash and array names is no longer permitted
356 Really old Perl let you omit the C<@> on array names and the C<%> on hash
357 names in some spots. This has issued a deprecation warning since Perl
358 5.000, and is no longer permitted.
360 =head2 C<"$!"> text is now in English outside the scope of C<use locale>
362 Previously, the text, unlike almost everything else, always came out
363 based on the current underlying locale of the program. (Also affected
364 on some systems is C<"$^E">.) For programs that are unprepared to
365 handle locale differences, this can cause garbage text to be displayed.
366 It's better to display text that is translatable via some tool than
367 garbage text which is much harder to figure out.
369 =head2 C<"$!"> text will be returned in UTF-8 when appropriate
371 The stringification of C<$!> and C<$^E> will have the UTF-8 flag set
372 when the text is actually non-ASCII UTF-8. This will enable programs
373 that are set up to be locale-aware to properly output messages in the
374 user's native language. Code that needs to continue the 5.20 and
375 earlier behavior can do the stringification within the scopes of both
376 S<C<use bytes>> and S<C<use locale ":messages">>. Within these two
377 scopes, no other Perl operations will
378 be affected by locale; only C<$!> and C<$^E> stringification. The
379 C<bytes> pragma causes the UTF-8 flag to not be set, just as in previous
380 Perl releases. This resolves
381 L<[perl #112208]|https://rt.perl.org/Ticket/Display.html?id=112208>.
383 =head2 Support for C<?PATTERN?> without explicit operator has been removed
385 The C<m?PATTERN?> construct, which allows matching a regex only once,
386 previously had an alternative form that was written directly with a question
387 mark delimiter, omitting the explicit C<m> operator. This usage has produced
388 a deprecation warning since 5.14.0. It is now a syntax error, so that the
389 question mark can be available for use in new operators.
391 =head2 C<defined(@array)> and C<defined(%hash)> are now fatal errors
393 These have been deprecated since v5.6.1 and have raised deprecation
394 warnings since v5.16.
396 =head2 Using a hash or an array as a reference are now fatal errors
398 For example, C<< %foo->{"bar"} >> now causes a fatal compilation
399 error. These have been deprecated since before v5.8, and have raised
400 deprecation warnings since then.
402 =head2 Changes to the C<*> prototype
404 The C<*> character in a subroutine's prototype used to allow barewords to take
405 precedence over most, but not all, subroutine names. It was never
406 consistent and exhibited buggy behaviour.
408 Now it has been changed, so subroutines always take precedence over barewords,
409 which brings it into conformity with similarly prototyped built-in functions:
413 splat(foo); # now always splat(foo())
414 splat(bar); # still splat('bar') as before
415 close(foo); # close(foo())
416 close(bar); # close('bar')
420 =head2 Setting C<${^ENCODING}> to anything but C<undef>
422 This variable allows Perl scripts to be written in an encoding other than
423 ASCII or UTF-8. However, it affects all modules globally, leading
424 to wrong answers and segmentation faults. New scripts should be written
425 in UTF-8; old scripts should be converted to UTF-8, which is easily done
426 with the L<piconv> utility.
428 =head2 Use of non-graphic characters in single-character variable names
430 The syntax for single-character variable names is more lenient than
431 for longer variable names, allowing the one-character name to be a
432 punctuation character or even invisible (a non-graphic). Perl v5.20
433 deprecated the ASCII-range controls as such a name. Now, all
434 non-graphic characters that formerly were allowed are deprecated.
435 The practical effect of this occurs only when not under C<S<use
436 utf8>>, and affects just the C1 controls (code points 0x80 through
437 0xFF), NO-BREAK SPACE, and SOFT HYPHEN.
439 =head2 Inlining of C<sub () { $var }> with observable side-effects
441 In many cases Perl makes S<C<sub () { $var }>> into an inlinable constant
442 subroutine, capturing the value of C<$var> at the time the C<sub> expression
443 is evaluated. This can break the closure behaviour in those cases where
444 C<$var> is subsequently modified, since the subroutine won't return the
445 changed value. (Note that this all only applies to anonymous subroutines
446 with an empty prototype (S<C<sub ()>>).)
448 This usage is now deprecated in those cases where the variable could be
449 modified elsewhere. Perl detects those cases and emits a deprecation
450 warning. Such code will likely change in the future and stop producing a
453 If your variable is only modified in the place where it is declared, then
454 Perl will continue to make the sub inlinable with no warnings.
458 return sub () { $var }; # fine
461 sub make_constant_deprecated {
464 return sub () { $var }; # deprecated
467 sub make_constant_deprecated2 {
469 log_that_value($var); # could modify $var
470 return sub () { $var }; # deprecated
473 In the second example above, detecting that C<$var> is assigned to only once
474 is too hard to detect. That it happens in a spot other than the C<my>
475 declaration is enough for Perl to find it suspicious.
477 This deprecation warning happens only for a simple variable for the body of
478 the sub. (A C<BEGIN> block or C<use> statement inside the sub is ignored,
479 because it does not become part of the sub's body.) For more complex
480 cases, such as S<C<sub () { do_something() if 0; $var }>> the behaviour has
481 changed such that inlining does not happen if the variable is modifiable
482 elsewhere. Such cases should be rare.
484 =head2 Use of multiple /x regexp modifiers
486 It is now deprecated to say something like any of the following:
492 That is, now C<x> should only occur once in any string of contiguous
493 regular expression pattern modifiers. We do not believe there are any
494 occurrences of this in all of CPAN. This is in preparation for a future
495 Perl release having C</xx> permit white-space for readability in
496 bracketed character classes (those enclosed in square brackets:
499 =head2 Using a NO-BREAK space in a character alias for C<\N{...}> is now deprecated
501 This non-graphic character is essentially indistinguishable from a
502 regular space, and so should not be allowed. See
503 L<charnames/CUSTOM ALIASES>.
505 =head2 A literal C<"{"> should now be escaped in a pattern
507 If you want a literal left curly bracket (also called a left brace) in a
508 regular expression pattern, you should now escape it by either
509 preceding it with a backslash (C<"\{">) or enclosing it within square
510 brackets C<"[{]">, or by using C<\Q>; otherwise a deprecation warning
511 will be raised. This was first announced as forthcoming in the v5.16
512 release; it will allow future extensions to the language to happen.
514 =head2 Making all warnings fatal is discouraged
516 The documentation for L<fatal warnings|warnings/Fatal Warnings> notes that
517 C<< use warnings FATAL => 'all' >> is discouraged, and provides stronger
518 language about the risks of fatal warnings in general.
520 =head1 Performance Enhancements
526 If a method or class name is known at compile time, a hash is precomputed
527 to speed up run-time method lookup. Also, compound method names like
528 C<SUPER::new> are parsed at compile time, to save having to parse them at
533 Array and hash lookups (especially nested ones) that use only constants
534 or simple variables as keys, are now considerably faster. See
535 L</Internal Changes> for more details.
539 C<(...)x1>, C<("constant")x0> and C<($scalar)x0> are now optimised in list
540 context. If the right-hand argument is a constant 1, the repetition
541 operator disappears. If the right-hand argument is a constant 0, the whole
542 expression is optimised to the empty list, so long as the left-hand
543 argument is a simple scalar or constant. (That is, C<(foo())x0> is not
544 subject to this optimisation.)
548 C<substr> assignment is now optimised into 4-argument C<substr> at the end
549 of a subroutine (or as the argument to C<return>). Previously, this
550 optimisation only happened in void context.
554 In C<"\L...">, C<"\Q...">, etc., the extra "stringify" op is now optimised
555 away, making these just as fast as C<lcfirst>, C<quotemeta>, etc.
559 Assignment to an empty list is now sometimes faster. In particular, it
560 never calls C<FETCH> on tied arguments on the right-hand side, whereas it
565 There is a performance improvement of up to 20% when C<length> is applied to
566 a non-magical, non-tied string, and either C<use bytes> is in scope or the
567 string doesn't use UTF-8 internally.
571 On most perl builds with 64-bit integers, memory usage for non-magical,
572 non-tied scalars containing only a floating point value has been reduced
573 by between 8 and 32 bytes, depending on OS.
577 In C<@array = split>, the assignment can be optimized away, so that C<split>
578 writes directly to the array. This optimisation was happening only for
579 package arrays other than C<@_>, and only sometimes. Now this
580 optimisation happens almost all the time.
584 C<join> is now subject to constant folding. So for example
585 S<C<join "-", "a", "b">> is converted at compile-time to C<"a-b">.
586 Moreover, C<join> with a scalar or constant for the separator and a
587 single-item list to join is simplified to a stringification, and the
588 separator doesn't even get evaluated.
592 C<qq(@array)> is implemented using two ops: a stringify op and a join op.
593 If the C<qq> contains nothing but a single array, the stringification is
598 S<C<our $var>> and S<C<our($s,@a,%h)>> in void context are no longer evaluated at
599 run time. Even a whole sequence of S<C<our $foo;>> statements will simply be
600 skipped over. The same applies to C<state> variables.
604 Many internal functions have been refactored to improve performance and reduce
605 their memory footprints.
606 L<[perl #121436]|https://rt.perl.org/Ticket/Display.html?id=121436>
607 L<[perl #121906]|https://rt.perl.org/Ticket/Display.html?id=121906>
608 L<[perl #121969]|https://rt.perl.org/Ticket/Display.html?id=121969>
612 C<-T> and C<-B> filetests will return sooner when an empty file is detected.
613 L<[perl #121489]|https://rt.perl.org/Ticket/Display.html?id=121489>
617 Hash lookups where the key is a constant are faster.
621 Subroutines with an empty prototype and a body containing just C<undef> are now
622 eligible for inlining.
623 L<[perl #122728]|https://rt.perl.org/Ticket/Display.html?id=122728>
627 Subroutines in packages no longer need to be stored in typeglobs:
628 declaring a subroutine will now put a simple sub reference directly in the
629 stash if possible, saving memory. The typeglob still notionally exists,
630 so accessing it will cause the stash entry to be upgraded to a typeglob
631 (i.e. this is just an internal implementation detail).
632 This optimization does not currently apply to XSUBs or exported
633 subroutines, and method calls will undo it, since they cache things in
635 L<[perl #120441]|https://rt.perl.org/Ticket/Display.html?id=120441>
639 The functions C<utf8::native_to_unicode()> and C<utf8::unicode_to_native()>
640 (see L<utf8>) are now optimized out on ASCII platforms. There is now not even
641 a minimal performance hit in writing code portable between ASCII and EBCDIC
646 Win32 Perl uses 8 KB less of per-process memory than before for every perl
647 process, because some data is now memory mapped from disk and shared
648 between processes from the same perl binary.
652 =head1 Modules and Pragmata
654 Many of the libraries distributed with perl have been upgraded since v5.20.0.
655 For a complete list of changes, run:
657 corelist --diff 5.20.0 5.22.0
659 You can substitute your favorite version in place of 5.20.0, too.
661 =head2 Removed Modules and Pragmata
663 The following modules (and associated modules) have been removed from the core
680 =head2 New Documentation
682 =head3 L<perlunicook>
684 This document, by Tom Christiansen, provides examples of handling Unicode in
687 =head2 Changes to Existing Documentation
695 A note on long doubles has been added.
706 Note that C<SvSetSV> doesn't do set magic.
710 C<sv_usepvn_flags> - fix documentation to mention the use of C<Newx> instead of
713 L<[perl #121869]|https://rt.perl.org/Ticket/Display.html?id=121869>
717 Clarify where C<NUL> may be embedded or is required to terminate a string.
721 Some documentation that was previously missing due to formatting errors is
726 Entries are now organized into groups rather than by the file where they
731 Alphabetical sorting of entries is now done consistently (automatically
732 by the POD generator) to make entries easier to find when scanning.
742 The syntax of single-character variable names has been brought
743 up-to-date and more fully explained.
747 Hexadecimal floating point numbers are described, as are infinity and
758 This document has been significantly updated in the light of recent
759 improvements to EBCDIC support.
769 Added a L<LIMITATIONS|perlfilter/LIMITATIONS> section.
780 Mention that C<study()> is currently a no-op.
784 Calling C<delete> or C<exists> on array values is now described as "strongly
785 discouraged" rather than "deprecated".
789 Improve documentation of C<< our >>.
793 C<-l> now notes that it will return false if symlinks aren't supported by the
796 L<[perl #121523]|https://rt.perl.org/Ticket/Display.html?id=121523>
800 Note that C<exec LIST> and C<system LIST> may fall back to the shell on
801 Win32. Only the indirect-object syntax C<exec PROGRAM LIST> and
802 C<system PROGRAM LIST> will reliably avoid using the shell.
804 This has also been noted in L<perlport>.
806 L<[perl #122046]|https://rt.perl.org/Ticket/Display.html?id=122046>
816 The OOK example has been updated to account for COW changes and a change in the
817 storage of the offset.
821 Details on C level symbols and libperl.t added.
825 Information on Unicode handling has been added
829 Information on EBCDIC handling has been added
839 A note has been added about running on platforms with non-ASCII
844 A note has been added about performance testing
848 =head3 L<perlhacktips>
854 Documentation has been added illustrating the perils of assuming that
855 there is no change to the contents of static memory pointed to by the
856 return values of Perl's wrappers for C library functions.
860 Replacements for C<tmpfile>, C<atoi>, C<strtol>, and C<strtoul> are now
865 Updated documentation for the C<test.valgrind> C<make> target.
867 L<[perl #121431]|https://rt.perl.org/Ticket/Display.html?id=121431>
871 Information is given about writing test files portably to non-ASCII
876 A note has been added about how to get a C language stack backtrace.
886 Note that the message "Redeclaration of "sendpath" with a different
887 storage class specifier" is harmless.
897 Updated for the enhancements in v5.22, along with some clarifications.
901 =head3 L<perlmodstyle>
907 Instead of pointing to the module list, we are now pointing to
908 L<PrePAN|http://prepan.org/>.
918 Updated for the enhancements in v5.22, along with some clarifications.
922 =head3 L<perlpodspec>
928 The specification of the pod language is changing so that the default
929 encoding of pods that aren't in UTF-8 (unless otherwise indicated) is
930 CP1252 instead of ISO 8859-1 (Latin1).
940 We now have a code of conduct for the I<< p5p >> mailing list, as documented
941 in L<< perlpolicy/STANDARDS OF CONDUCT >>.
945 The conditions for marking an experimental feature as non-experimental are now
950 Clarification has been made as to what sorts of changes are permissible in
951 maintenance releases.
961 Out-of-date VMS-specific information has been fixed and/or simplified.
965 Notes about EBCDIC have been added.
975 The description of the C</x> modifier has been clarified to note that
976 comments cannot be continued onto the next line by escaping them; and
977 there is now a list of all the characters that are considered whitespace
982 The new C</n> modifier is described.
986 A note has been added on how to make bracketed character class ranges
987 portable to non-ASCII machines.
991 =head3 L<perlrebackslash>
997 Added documentation of C<\b{sb}>, C<\b{wb}>, C<\b{gcb}>, and C<\b{g}>.
1001 =head3 L<perlrecharclass>
1007 Clarifications have been added to L<perlrecharclass/Character Ranges>
1008 to the effect C<[A-Z]>, C<[a-z]>, C<[0-9]> and
1009 any subranges thereof in regular expression bracketed character classes
1010 are guaranteed to match exactly what a naive English speaker would
1011 expect them to match, even on platforms (such as EBCDIC) where special
1012 handling is required to accomplish this.
1016 The documentation of Bracketed Character Classes has been expanded to cover the
1017 improvements in C<qr/[\N{named sequence}]/> (see under L</Selected Bug Fixes>).
1027 A new section has been added
1028 L<Assigning to References|perlref/Assigning to References>
1038 Comments added on algorithmic complexity and tied hashes.
1048 An ambiguity in the documentation of the C<...> statement has been corrected.
1049 L<[perl #122661]|https://rt.perl.org/Ticket/Display.html?id=122661>
1053 The empty conditional in C<< for >> and C<< while >> is now documented
1058 =head3 L<perlunicode>
1064 This has had extensive revisions to bring it up-to-date with current
1065 Unicode support and to make it more readable. Notable is that Unicode
1066 7.0 changed what it should do with non-characters. Perl retains the old
1067 way of handling for reasons of backward compatibility. See
1068 L<perlunicode/Noncharacter code points>.
1072 =head3 L<perluniintro>
1078 Advice for how to make sure your strings and regular expression patterns are
1079 interpreted as Unicode has been updated.
1089 C<$]> is no longer listed as being deprecated. Instead, discussion has
1090 been added on the advantages and disadvantages of using it versus
1095 C<${^ENCODING}> is now marked as deprecated.
1099 The entry for C<%^H> has been clarified to indicate it can only handle
1110 Out-of-date and/or incorrect material has been removed.
1114 Updated documentation on environment and shell interaction in VMS.
1124 Added a discussion of locale issues in XS code.
1130 The following additions or changes have been made to diagnostic output,
1131 including warnings and fatal error messages. For the complete list of
1132 diagnostic messages, see L<perldiag>.
1134 =head2 New Diagnostics
1142 L<Bad symbol for scalar|perldiag/"Bad symbol for scalar">
1144 (P) An internal request asked to add a scalar entry to something that
1145 wasn't a symbol table entry.
1149 L<Can't use a hash as a reference|perldiag/"Can't use a hash as a reference">
1151 (F) You tried to use a hash as a reference, as in
1152 C<< %foo->{"bar"} >> or C<< %$ref->{"hello"} >>. Versions of perl E<lt>= 5.6.1
1153 used to allow this syntax, but shouldn't have.
1157 L<Can't use an array as a reference|perldiag/"Can't use an array as a reference">
1159 (F) You tried to use an array as a reference, as in
1160 C<< @foo->[23] >> or C<< @$ref->[99] >>. Versions of perl E<lt>= 5.6.1 used to
1161 allow this syntax, but shouldn't have.
1165 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()?)">
1167 (F) C<defined()> is not useful on arrays because it
1168 checks for an undefined I<scalar> value. If you want to see if the
1169 array is empty, just use S<C<if (@array) { # not empty }>> for example.
1173 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()?)">
1175 (F) C<defined()> is not usually right on hashes.
1177 Although S<C<defined %hash>> is false on a plain not-yet-used hash, it
1178 becomes true in several non-obvious circumstances, including iterators,
1179 weak references, stash names, even remaining true after S<C<undef %hash>>.
1180 These things make S<C<defined %hash>> fairly useless in practice, so it now
1181 generates a fatal error.
1183 If a check for non-empty is what you wanted then just put it in boolean
1184 context (see L<perldata/Scalar values>):
1190 If you had S<C<defined %Foo::Bar::QUUX>> to check whether such a package
1191 variable exists then that's never really been reliable, and isn't
1192 a good way to enquire about the features of a package, or whether
1197 L<Cannot chr %f|perldiag/"Cannot chr %f">
1199 (F) You passed an invalid number (like an infinity or not-a-number) to
1204 L<Cannot compress %f in pack|perldiag/"Cannot compress %f in pack">
1206 (F) You tried converting an infinity or not-a-number to an unsigned
1207 character, which makes no sense.
1211 L<Cannot pack %f with '%c'|perldiag/"Cannot pack %f with '%c'">
1213 (F) You tried converting an infinity or not-a-number to a character,
1214 which makes no sense.
1218 L<Cannot print %f with '%c'|perldiag/"Cannot printf %f with '%c'">
1220 (F) You tried printing an infinity or not-a-number as a character (C<%c>),
1221 which makes no sense. Maybe you meant C<'%s'>, or just stringifying it?
1225 L<charnames alias definitions may not contain a sequence of multiple spaces|perldiag/"charnames alias definitions may not contain a sequence of multiple spaces">
1227 (F) You defined a character name which had multiple space
1228 characters in a row. Change them to single spaces. Usually these
1229 names are defined in the C<:alias> import argument to C<use charnames>, but
1230 they could be defined by a translator installed into C<$^H{charnames}>.
1231 See L<charnames/CUSTOM ALIASES>.
1235 L<charnames alias definitions may not contain trailing white-space|perldiag/"charnames alias definitions may not contain trailing white-space">
1237 (F) You defined a character name which ended in a space
1238 character. Remove the trailing space(s). Usually these names are
1239 defined in the C<:alias> import argument to C<use charnames>, but they
1240 could be defined by a translator installed into C<$^H{charnames}>.
1241 See L<charnames/CUSTOM ALIASES>.
1245 L<:const is not permitted on named subroutines|perldiag/":const is not permitted on named subroutines">
1247 (F) The "const" attribute causes an anonymous subroutine to be run and
1248 its value captured at the time that it is cloned. Named subroutines are
1249 not cloned like this, so the attribute does not make sense on them.
1253 L<Hexadecimal float: internal error|perldiag/"Hexadecimal float: internal error">
1255 (F) Something went horribly bad in hexadecimal float handling.
1259 L<Hexadecimal float: unsupported long double format|perldiag/"Hexadecimal float: unsupported long double format">
1261 (F) You have configured Perl to use long doubles but
1262 the internals of the long double format are unknown,
1263 therefore the hexadecimal float output is impossible.
1267 L<Illegal suidscript|perldiag/"Illegal suidscript">
1269 (F) The script run under suidperl was somehow illegal.
1273 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/">
1275 (F) The two-character sequence C<"(?"> in
1276 this context in a regular expression pattern should be an
1277 indivisible token, with nothing intervening between the C<"(">
1278 and the C<"?">, but you separated them.
1282 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/">
1284 (F) The two-character sequence C<"(*"> in
1285 this context in a regular expression pattern should be an
1286 indivisible token, with nothing intervening between the C<"(">
1287 and the C<"*">, but you separated them.
1291 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/">
1293 (F) The pattern looks like a {min,max} quantifier, but the min or max could not
1294 be parsed as a valid number - either it has leading zeroes, or it represents
1295 too big a number to cope with. The S<<-- HERE> shows where in the regular
1296 expression the problem was discovered. See L<perlre>.
1306 L<\C is deprecated in regex|perldiag/"\C is deprecated in regex; marked by <-- HERE in m/%s/">
1308 (D deprecated) The C<< /\C/ >> character class was deprecated in v5.20, and
1309 now emits a warning. It is intended that it will become an error in v5.24.
1310 This character class matches a single byte even if it appears within a
1311 multi-byte character, breaks encapsulation, and can corrupt UTF-8
1316 L<'%s' is an unknown bound type in regex|perldiag/"'%s' is an unknown bound type in regex; marked by <-- HERE in m/%s/">
1318 You used C<\b{...}> or C<\B{...}> and the C<...> is not known to
1319 Perl. The current valid ones are given in
1320 L<perlrebackslash/\b{}, \b, \B{}, \B>.
1324 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>>
1326 (W regexp) (only under C<S<use re 'strict'>> or within C<(?[...])>)
1328 You specified a character that has the given plainer way of writing it,
1329 and which is also portable to platforms running with different character
1334 L<Argument "%s" treated as 0 in increment (++)|perldiag/"Argument "%s" treated
1335 as 0 in increment (++)">
1337 (W numeric) The indicated string was fed as an argument to the C<++> operator
1338 which expects either a number or a string matching C</^[a-zA-Z]*[0-9]*\z/>.
1339 See L<perlop/Auto-increment and Auto-decrement> for details.
1343 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/">
1345 (W regexp) (only under C<S<use re 'strict'>> or within C<(?[...])>)
1347 In a bracketed character class in a regular expression pattern, you
1348 had a range which has exactly one end of it specified using C<\N{}>, and
1349 the other end is specified using a non-portable mechanism. Perl treats
1350 the range as a Unicode range, that is, all the characters in it are
1351 considered to be the Unicode characters, and which may be different code
1352 points on some platforms Perl runs on. For example, C<[\N{U+06}-\x08]>
1353 is treated as if you had instead said C<[\N{U+06}-\N{U+08}]>, that is it
1354 matches the characters whose code points in Unicode are 6, 7, and 8.
1355 But that C<\x08> might indicate that you meant something different, so
1356 the warning gets raised.
1360 L<:const is experimental|perldiag/":const is experimental">
1362 (S experimental::const_attr) The "const" attribute is experimental.
1363 If you want to use the feature, disable the warning with C<no warnings
1364 'experimental::const_attr'>, but know that in doing so you are taking
1365 the risk that your code may break in a future Perl version.
1369 L<gmtime(%f) failed|perldiag/"gmtime(%f) failed">
1371 (W overflow) You called C<gmtime> with a number that it could not handle:
1372 too large, too small, or NaN. The returned value is C<undef>.
1376 L<Hexadecimal float: exponent overflow|perldiag/"Hexadecimal float: exponent overflow">
1378 (W overflow) The hexadecimal floating point has larger exponent
1379 than the floating point supports.
1383 L<Hexadecimal float: exponent underflow|perldiag/"Hexadecimal float: exponent underflow">
1385 (W overflow) The hexadecimal floating point has smaller exponent
1386 than the floating point supports.
1390 L<Hexadecimal float: mantissa overflow|perldiag/"Hexadecimal float: mantissa overflow">
1392 (W overflow) The hexadecimal floating point literal had more bits in
1393 the mantissa (the part between the 0x and the exponent, also known as
1394 the fraction or the significand) than the floating point supports.
1398 L<Hexadecimal float: precision loss|perldiag/"Hexadecimal float: precision loss">
1400 (W overflow) The hexadecimal floating point had internally more
1401 digits than could be output. This can be caused by unsupported
1402 long double formats, or by 64-bit integers not being available
1403 (needed to retrieve the digits under some configurations).
1407 L<localtime(%f) failed|perldiag/"localtime(%f) failed">
1409 (W overflow) You called C<localtime> with a number that it could not handle:
1410 too large, too small, or NaN. The returned value is C<undef>.
1414 L<Negative repeat count does nothing|perldiag/"Negative repeat count does nothing">
1416 (W numeric) You tried to execute the
1417 L<C<x>|perlop/Multiplicative Operators> repetition operator fewer than 0
1418 times, which doesn't make sense.
1422 L<NO-BREAK SPACE in a charnames alias definition is deprecated|perldiag/"NO-BREAK SPACE in a charnames alias definition is deprecated">
1424 (D deprecated) You defined a character name which contained a no-break
1425 space character. Change it to a regular space. Usually these names are
1426 defined in the C<:alias> import argument to C<use charnames>, but they
1427 could be defined by a translator installed into C<$^H{charnames}>. See
1428 L<charnames/CUSTOM ALIASES>.
1432 L<Non-finite repeat count does nothing|perldiag/"Non-finite repeat count does nothing">
1434 (W numeric) You tried to execute the
1435 L<C<x>|perlop/Multiplicative Operators> repetition operator C<Inf> (or
1436 C<-Inf>) or NaN times, which doesn't make sense.
1440 L<PerlIO layer ':win32' is experimental|perldiag/"PerlIO layer ':win32' is experimental">
1442 (S experimental::win32_perlio) The C<:win32> PerlIO layer is
1443 experimental. If you want to take the risk of using this layer,
1444 simply disable this warning:
1446 no warnings "experimental::win32_perlio";
1450 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>">
1452 (W regexp) (only under C<S<use re 'strict'>> or within C<(?[...])>)
1454 Stricter rules help to find typos and other errors. Perhaps you didn't
1455 even intend a range here, if the C<"-"> was meant to be some other
1456 character, or should have been escaped (like C<"\-">). If you did
1457 intend a range, the one that was used is not portable between ASCII and
1458 EBCDIC platforms, and doesn't have an obvious meaning to a casual
1461 [3-7] # OK; Obvious and portable
1462 [d-g] # OK; Obvious and portable
1463 [A-Y] # OK; Obvious and portable
1464 [A-z] # WRONG; Not portable; not clear what is meant
1465 [a-Z] # WRONG; Not portable; not clear what is meant
1466 [%-.] # WRONG; Not portable; not clear what is meant
1467 [\x41-Z] # WRONG; Not portable; not obvious to non-geek
1469 (You can force portability by specifying a Unicode range, which means that
1470 the endpoints are specified by
1471 L<C<\N{...}>|perlrecharclass/Character Ranges>, but the meaning may
1472 still not be obvious.)
1473 The stricter rules require that ranges that start or stop with an ASCII
1474 character that is not a control have all their endpoints be a literal
1475 character, and not some escape sequence (like C<"\x41">), and the ranges
1476 must be all digits, or all uppercase letters, or all lowercase letters.
1480 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/">
1482 (W regexp) (only under C<S<use re 'strict'>> or within C<(?[...])>)
1484 Stricter rules help to find typos and other errors. You included a
1485 range, and at least one of the end points is a decimal digit. Under the
1486 stricter rules, when this happens, both end points should be digits in
1487 the same group of 10 consecutive digits.
1491 L<Redundant argument in %s|perldiag/Redundant argument in %s>
1493 (W redundant) You called a function with more arguments than were
1494 needed, as indicated by information within other arguments you supplied
1495 (e.g. a printf format). Currently only emitted when a printf-type format
1496 required fewer arguments than were supplied, but might be used in the
1497 future for e.g. L<perlfunc/pack>.
1499 The warnings category C<< redundant >> is new. See also
1500 L<[perl #121025]|https://rt.perl.org/Ticket/Display.html?id=121025>.
1504 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">
1506 You are matching a regular expression using locale rules,
1507 and a Unicode boundary is being matched, but the locale is not a Unicode
1508 one. This doesn't make sense. Perl will continue, assuming a Unicode
1509 (UTF-8) locale, but the results could well be wrong except if the locale
1510 happens to be ISO-8859-1 (Latin1) where this message is spurious and can
1515 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>" >>
1517 You used a Unicode boundary (C<\b{...}> or C<\B{...}>) in a
1518 portion of a regular expression where the character set modifiers C</a>
1519 or C</aa> are in effect. These two modifiers indicate an ASCII
1520 interpretation, and this doesn't make sense for a Unicode definition.
1521 The generated regular expression will compile so that the boundary uses
1522 all of Unicode. No other portion of the regular expression is affected.
1526 L<The bitwise feature is experimental|perldiag/"The bitwise feature is experimental">
1528 This warning is emitted if you use bitwise
1529 operators (C<& | ^ ~ &. |. ^. ~.>) with the "bitwise" feature enabled.
1530 Simply suppress the warning if you want to use the feature, but know
1531 that in doing so you are taking the risk of using an experimental
1532 feature which may change or be removed in a future Perl version:
1534 no warnings "experimental::bitwise";
1535 use feature "bitwise";
1540 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/">
1542 (D deprecated, regexp) You used a literal C<"{"> character in a regular
1543 expression pattern. You should change to use C<"\{"> instead, because a future
1544 version of Perl (tentatively v5.26) will consider this to be a syntax error. If
1545 the pattern delimiters are also braces, any matching right brace
1546 (C<"}">) should also be escaped to avoid confusing the parser, for
1553 L<Use of literal non-graphic characters in variable names is deprecated|perldiag/"Use of literal non-graphic characters in variable names is deprecated">
1555 (D deprecated) Using literal non-graphic (including control)
1556 characters in the source to refer to the ^FOO variables, like C<$^X> and
1557 C<${^GLOBAL_PHASE}> is now deprecated.
1561 L<Useless use of attribute "const"|perldiag/Useless use of attribute "const">
1563 (W misc) The "const" attribute has no effect except
1564 on anonymous closure prototypes. You applied it to
1565 a subroutine via L<attributes.pm|attributes>. This is only useful
1566 inside an attribute handler for an anonymous subroutine.
1570 L<E<quot>use re 'strict'E<quot> is experimental|perldiag/"use re 'strict'" is experimental>
1572 (S experimental::re_strict) The things that are different when a regular
1573 expression pattern is compiled under C<'strict'> are subject to change
1574 in future Perl releases in incompatible ways; there are also proposals
1575 to change how to enable strict checking instead of using this subpragma.
1576 This means that a pattern that compiles today may not in a future Perl
1577 release. This warning is to alert you to that risk.
1581 L<Warning: unable to close filehandle properly: %s|perldiag/"Warning: unable to close filehandle properly: %s">
1583 L<Warning: unable to close filehandle %s properly: %s|perldiag/"Warning: unable to close filehandle %s properly: %s">
1585 (S io) Previously, perl silently ignored any errors when doing an implicit
1586 close of a filehandle, i.e. where the reference count of the filehandle
1587 reached zero and the user's code hadn't already called C<close()>; e.g.
1590 open my $fh, '>', $file or die "open: '$file': $!\n";
1591 print $fh, $data or die;
1592 } # implicit close here
1594 In a situation such as disk full, due to buffering, the error may only be
1595 detected during the final close, so not checking the result of the close is
1598 So perl now warns in such situations.
1602 L<Wide character (U+%X) in %s|perldiag/"Wide character (U+%X) in %s">
1604 (W locale) While in a single-byte locale (I<i.e.>, a non-UTF-8
1605 one), a multi-byte character was encountered. Perl considers this
1606 character to be the specified Unicode code point. Combining non-UTF-8
1607 locales and Unicode is dangerous. Almost certainly some characters
1608 will have two different representations. For example, in the ISO 8859-7
1609 (Greek) locale, the code point 0xC3 represents a Capital Gamma. But so
1610 also does 0x393. This will make string comparisons unreliable.
1612 You likely need to figure out how this multi-byte character got mixed up
1613 with your single-byte locale (or perhaps you thought you had a UTF-8
1614 locale, but Perl disagrees).
1618 The following two warnings for C<tr///> used to be skipped if the
1619 transliteration contained wide characters, but now they occur regardless of
1620 whether there are wide characters or not:
1622 L<Useless use of E<sol>d modifier in transliteration operator|perldiag/"Useless use of /d modifier in transliteration operator">
1624 L<Replacement list is longer than search list|perldiag/Replacement list is longer than search list>
1628 A new C<locale> warning category has been created, with the following warning
1629 messages currently in it:
1635 L<Locale '%s' may not work well.%s|perldiag/Locale '%s' may not work well.%s>
1637 (W locale) You are using the named locale, which is a non-UTF-8 one, and
1638 which Perl has determined is not fully compatible with Perl. The second
1639 C<%s> gives a reason.
1643 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".>
1645 (W locale) You are 1) running under "C<use locale>"; 2) the current
1646 locale is not a UTF-8 one; 3) you tried to do the designated case-change
1647 operation on the specified Unicode character; and 4) the result of this
1648 operation would mix Unicode and locale rules, which likely conflict.
1654 L<Missing or undefined argument to require|perldiag/Missing or undefined argument to require>
1656 (F) You tried to call C<require> with no argument or with an undefined
1657 value as an argument. C<require> expects either a package name or a
1658 file-specification as an argument. See L<perlfunc/require>.
1660 Formerly, C<require> with no argument or C<undef> warned about a Null filename.
1664 =head2 Changes to Existing Diagnostics
1672 This warning has been changed to
1673 L<< <> at require-statement should be quotes|perldiag/"<> at require-statement should be quotes" >>
1674 to make the issue more identifiable.
1678 L<Argument "%s" isn't numeric%s|perldiag/"Argument "%s" isn't numeric%s">
1680 The L<perldiag> entry for this warning has added this clarifying note:
1682 Note that for the Inf and NaN (infinity and not-a-number) the
1683 definition of "numeric" is somewhat unusual: the strings themselves
1684 (like "Inf") are considered numeric, and anything following them is
1685 considered non-numeric.
1689 L<Global symbol "%s" requires explicit package name|perldiag/"Global symbol "%s" requires explicit package name (did you forget to declare "my %s"?)">
1691 This message has had '(did you forget to declare "my %s"?)' appended to it, to
1692 make it more helpful to new Perl programmers.
1693 L<[perl #121638]|https://rt.perl.org/Ticket/Display.html?id=121638>
1697 '"my" variable &foo::bar can't be in a package' has been reworded to say
1698 'subroutine' instead of 'variable'.
1702 L<<< \N{} in character class restricted to one character in regex; marked by
1703 S<< <-- HERE >> in mE<sol>%sE<sol>|perldiag/"\N{} in inverted character
1704 class or as a range end-point is restricted to one character in regex;
1705 marked by <-- HERE in m/%s/" >>>
1707 This message has had I<character class> changed to I<inverted character
1708 class or as a range end-point is> to reflect improvements in
1709 C<qr/[\N{named sequence}]/> (see under L</Selected Bug Fixes>).
1713 L<panic: frexp|perldiag/"panic: frexp: %f">
1715 This message has had ': C<%f>' appended to it, to show what the offending
1716 floating point number is.
1720 I<Possible precedence problem on bitwise %c operator> reworded as
1721 L<Possible precedence problem on bitwise %s operator|perldiag/"Possible precedence problem on bitwise %s operator">.
1725 L<Unsuccessful %s on filename containing newline|perldiag/"Unsuccessful %s on filename containing newline">
1727 This warning is now only produced when the newline is at the end of
1732 "Variable C<%s> will not stay shared" has been changed to say "Subroutine"
1733 when it is actually a lexical sub that will not stay shared.
1737 L<Variable length lookbehind not implemented in regex mE<sol>%sE<sol>|perldiag/"Variable length lookbehind not implemented in regex m/%s/">
1739 The L<perldiag> entry for this warning has had information about Unicode
1744 =head2 Diagnostic Removals
1750 "Ambiguous use of -foo resolved as -&foo()"
1752 There is actually no ambiguity here, and this impedes the use of negated
1753 constants; e.g., C<-Inf>.
1757 "Constant is not a FOO reference"
1759 Compile-time checking of constant dereferencing (e.g., C<< my_constant->() >>)
1760 has been removed, since it was not taking overloading into account.
1761 L<[perl #69456]|https://rt.perl.org/Ticket/Display.html?id=69456>
1762 L<[perl #122607]|https://rt.perl.org/Ticket/Display.html?id=122607>
1766 =head1 Utility Changes
1768 =head2 F<find2perl>, F<s2p> and F<a2p> removal
1774 The F<x2p/> directory has been removed from the Perl core.
1776 This removes find2perl, s2p and a2p. They have all been released to CPAN as
1777 separate distributions (App::find2perl, App::s2p, App::a2p).
1787 F<h2ph> now handles hexadecimal constants in the compiler's predefined
1788 macro definitions, as visible in C<$Config{cppsymbols}>.
1789 L<[perl #123784]|https://rt.perl.org/Ticket/Display.html?id=123784>.
1799 No longer depends on non-core modules.
1803 =head1 Configuration and Compilation
1809 F<Configure> now checks for C<lrintl()>, C<lroundl()>, C<llrintl()>, and
1814 F<Configure> with C<-Dmksymlinks> should now be faster.
1815 L<[perl #122002]|https://rt.perl.org/Ticket/Display.html?id=122002>.
1819 The C<pthreads> and C<cl> libraries will be linked by default if present.
1820 This allows XS modules that require threading to work on non-threaded
1821 perls. Note that you must still pass C<-Dusethreads> if you want a
1826 For long doubles (to get more precision and range for floating point numbers)
1827 one can now use the GCC quadmath library which implements the quadruple
1828 precision floating point numbers on x86 and IA-64 platforms. See
1829 F<INSTALL> for details.
1833 MurmurHash64A and MurmurHash64B can now be configured as the internal hash
1838 C<make test.valgrind> now supports parallel testing.
1842 TEST_JOBS=9 make test.valgrind
1844 See L<perlhacktips/valgrind> for more information.
1846 L<[perl #121431]|https://rt.perl.org/Ticket/Display.html?id=121431>
1850 The MAD (Misc Attribute Decoration) build option has been removed
1852 This was an unmaintained attempt at preserving
1853 the Perl parse tree more faithfully so that automatic conversion of
1854 Perl 5 to Perl 6 would have been easier.
1856 This build-time configuration option had been unmaintained for years,
1857 and had probably seriously diverged on both Perl 5 and Perl 6 sides.
1861 A new compilation flag, C<< -DPERL_OP_PARENT >> is available. For details,
1862 see the discussion below at L<< /Internal Changes >>.
1866 Pathtools no longer tries to load XS on miniperl. This speeds up building perl
1877 F<t/porting/re_context.t> has been added to test that L<utf8> and its
1878 dependencies only use the subset of the C<$1..$n> capture vars that
1879 C<Perl_save_re_context()> is hard-coded to localize, because that function
1880 has no efficient way of determining at runtime what vars to localize.
1884 Tests for performance issues have been added in the file F<t/perf/taint.t>.
1888 Some regular expression tests are written in such a way that they will
1889 run very slowly if certain optimizations break. These tests have been
1890 moved into new files, F<< t/re/speed.t >> and F<< t/re/speed_thr.t >>,
1891 and are run with a C<< watchdog() >>.
1895 C<< test.pl >> now allows C<< plan skip_all => $reason >>, to make it
1896 more compatible with C<< Test::More >>.
1900 A new test script, F<op/infnan.t>, has been added to test if infinity and NaN are
1901 working correctly. See L</Infinity and NaN (not-a-number) handling improved>.
1905 =head1 Platform Support
1907 =head2 Regained Platforms
1911 =item IRIX and Tru64 platforms are working again.
1913 (Some C<make test> failures remain.)
1915 =item z/OS running EBCDIC Code Page 1047
1917 Core perl now works on this EBCDIC platform. Earlier perls also worked, but,
1918 even though support wasn't officially withdrawn, recent perls would not compile
1919 and run well. Perl 5.20 would work, but had many bugs which have now been
1920 fixed. Many CPAN modules that ship with Perl still fail tests, including
1921 Pod::Simple. However the version of Pod::Simple currently on CPAN should work;
1922 it was fixed too late to include in Perl 5.22. Work is under way to fix many
1923 of the still-broken CPAN modules, which likely will be installed on CPAN when
1924 completed, so that you may not have to wait until Perl 5.24 to get a working
1929 =head2 Discontinued Platforms
1933 =item NeXTSTEP/OPENSTEP
1935 NeXTSTEP was a proprietary operating system bundled with NeXT's
1936 workstations in the early to mid 90s; OPENSTEP was an API specification
1937 that provided a NeXTSTEP-like environment on a non-NeXTSTEP system. Both
1938 are now long dead, so support for building Perl on them has been removed.
1942 =head2 Platform-Specific Notes
1948 Special handling is required of the perl interpreter on EBCDIC platforms
1949 to get C<qr/[i-j]/> to match only C<"i"> and C<"j">, since there are 7
1950 characters between the
1951 code points for C<"i"> and C<"j">. This special handling had only been
1952 invoked when both ends of the range are literals. Now it is also
1953 invoked if any of the C<\N{...}> forms for specifying a character by
1954 name or Unicode code point is used instead of a literal. See
1955 L<perlrecharclass/Character Ranges>.
1959 The archname now distinguishes use64bitint from use64bitall.
1963 Build support has been improved for cross-compiling in general and for
1964 Android in particular.
1972 When spawning a subprocess without waiting, the return value is now
1977 Fix a prototype so linking doesn't fail under the VMS C++ compiler.
1981 C<finite>, C<finitel>, and C<isfinite> detection has been added to
1982 C<configure.com>, environment handling has had some minor changes, and
1983 a fix for legacy feature checking status.
1993 F<miniperl.exe> is now built with C<-fno-strict-aliasing>, allowing 64-bit
1994 builds to complete on GCC 4.8.
1995 L<[perl #123976]|https://rt.perl.org/Ticket/Display.html?id=123976>
1999 C<nmake minitest> now works on Win32. Due to dependency issues you
2000 need to build C<nmake test-prep> first, and a small number of the
2002 L<[perl #123394]|https://rt.perl.org/Ticket/Display.html?id=123394>
2006 Perl can now be built in C++ mode on Windows by setting the makefile macro
2007 C<USE_CPLUSPLUS> to the value "define".
2011 The list form of piped open has been implemented for Win32. Note: unlike
2012 C<system LIST> this does not fall back to the shell.
2013 L<[perl #121159]|https://rt.perl.org/Ticket/Display.html?id=121159>
2017 New C<DebugSymbols> and C<DebugFull> configuration options added to
2022 Previously compiling XS modules (including CPAN ones) using Visual C++ for
2023 Win64 resulted in around a dozen warnings per file from F<hv_func.h>. These
2024 warnings have been silenced.
2028 Support for building without PerlIO has been removed from the Windows
2029 makefiles. Non-PerlIO builds were all but deprecated in Perl 5.18.0 and are
2030 already not supported by F<Configure> on POSIX systems.
2034 Between 2 and 6 milliseconds and seven I/O calls have been saved per attempt
2035 to open a perl module for each path in C<@INC>.
2039 Intel C builds are now always built with C99 mode on.
2043 C<%I64d> is now being used instead of C<%lld> for MinGW.
2047 In the experimental C<:win32> layer, a crash in C<open> was fixed. Also
2048 opening F</dev/null> (which works under Win32 Perl's default C<:unix>
2049 layer) was implemented for C<:win32>.
2050 L<[perl #122224]|https://rt.perl.org/Ticket/Display.html?id=122224>
2054 A new makefile option, C<USE_LONG_DOUBLE>, has been added to the Windows
2055 dmake makefile for gcc builds only. Set this to "define" if you want perl to
2056 use long doubles to give more accuracy and range for floating point numbers.
2062 On OpenBSD, Perl will now default to using the system C<malloc> due to the
2063 security features it provides. Perl's own malloc wrapper has been in use
2064 since v5.14 due to performance reasons, but the OpenBSD project believes
2065 the tradeoff is worth it and would prefer that users who need the speed
2066 specifically ask for it.
2068 L<[perl #122000]|https://rt.perl.org/Ticket/Display.html?id=122000>.
2076 We now look for the Sun Studio compiler in both F</opt/solstudio*> and
2077 F</opt/solarisstudio*>.
2081 Builds on Solaris 10 with C<-Dusedtrace> would fail early since make
2082 didn't follow implied dependencies to build C<perldtrace.h>. Added an
2083 explicit dependency to C<depend>.
2084 L<[perl #120120]|https://rt.perl.org/Ticket/Display.html?id=120120>
2088 C<c99> options have been cleaned up; hints look for C<solstudio>
2089 as well as C<SUNWspro>; and support for native C<setenv> has been added.
2095 =head1 Internal Changes
2101 Experimental support has been added to allow ops in the optree to locate
2102 their parent, if any. This is enabled by the non-default build option
2103 C<-DPERL_OP_PARENT>. It is envisaged that this will eventually become
2104 enabled by default, so XS code which directly accesses the C<op_sibling>
2105 field of ops should be updated to be future-proofed.
2107 On C<PERL_OP_PARENT> builds, the C<op_sibling> field has been renamed
2108 C<op_sibparent> and a new flag, C<op_moresib>, added. On the last op in a
2109 sibling chain, C<op_moresib> is false and C<op_sibparent> points to the
2110 parent (if any) rather than being C<NULL>.
2112 To make existing code work transparently whether using C<PERL_OP_PARENT>
2113 or not, a number of new macros and functions have been added that should
2114 be used, rather than directly manipulating C<op_sibling>.
2116 For the case of just reading C<op_sibling> to determine the next sibling,
2117 two new macros have been added. A simple scan through a sibling chain
2120 for (; kid->op_sibling; kid = kid->op_sibling) { ... }
2122 should now be written as:
2124 for (; OpHAS_SIBLING(kid); kid = OpSIBLING(kid)) { ... }
2126 For altering optrees, a general-purpose function C<op_sibling_splice()>
2127 has been added, which allows for manipulation of a chain of sibling ops.
2128 By analogy with the Perl function C<splice()>, it allows you to cut out
2129 zero or more ops from a sibling chain and replace them with zero or more
2130 new ops. It transparently handles all the updating of sibling, parent,
2131 op_last pointers etc.
2133 If you need to manipulate ops at a lower level, then three new macros,
2134 C<OpMORESIB_set>, C<OpLASTSIB_set> and C<OpMAYBESIB_set> are intended to
2135 be a low-level portable way to set C<op_sibling> / C<op_sibparent> while
2136 also updating C<op_moresib>. The first sets the sibling pointer to a new
2137 sibling, the second makes the op the last sibling, and the third
2138 conditionally does the first or second action. Note that unlike
2139 C<op_sibling_splice()> these macros won't maintain consistency in the
2140 parent at the same time (e.g. by updating C<op_first> and C<op_last> where
2143 A C-level C<Perl_op_parent()> function and a Perl-level C<B::OP::parent()>
2144 method have been added. The C function only exists under
2145 C<PERL_OP_PARENT> builds (using it is build-time error on vanilla
2146 perls). C<B::OP::parent()> exists always, but on a vanilla build it
2147 always returns C<NULL>. Under C<PERL_OP_PARENT>, they return the parent
2148 of the current op, if any. The variable C<$B::OP::does_parent> allows you
2149 to determine whether C<B> supports retrieving an op's parent.
2151 C<PERL_OP_PARENT> was introduced in 5.21.2, but the interface was
2152 changed considerably in 5.21.11. If you updated your code before the
2153 5.21.11 changes, it may require further revision. The main changes after
2160 The C<OP_SIBLING> and C<OP_HAS_SIBLING> macros have been renamed
2161 C<OpSIBLING> and C<OpHAS_SIBLING> for consistency with other
2162 op-manipulating macros.
2166 The C<op_lastsib> field has been renamed C<op_moresib>, and its meaning
2171 The macro C<OpSIBLING_set> has been removed, and has been superseded by
2172 C<OpMORESIB_set> et al.
2176 The C<op_sibling_splice()> function now accepts a null C<parent> argument
2177 where the splicing doesn't affect the first or last ops in the sibling
2184 Macros have been created to allow XS code to better manipulate the POSIX locale
2185 category C<LC_NUMERIC>. See L<perlapi/Locale-related functions and macros>.
2189 The previous C<atoi> et al replacement function, C<grok_atou>, has now been
2190 superseded by C<grok_atoUV>. See L<perlclib> for details.
2194 A new function, C<Perl_sv_get_backrefs()>, has been added which allows you
2195 retrieve the weak references, if any, which point at an SV.
2199 The C<screaminstr()> function has been removed. Although marked as
2200 public API, it was undocumented and had no usage in CPAN modules. Calling
2201 it has been fatal since 5.17.0.
2205 The C<newDEFSVOP()>, C<block_start()>, C<block_end()> and C<intro_my()>
2206 functions have been added to the API.
2210 The internal C<convert> function in F<op.c> has been renamed
2211 C<op_convert_list> and added to the API.
2215 The C<sv_magic()> function no longer forbids "ext" magic on read-only
2216 values. After all, perl can't know whether the custom magic will modify
2218 L<[perl #123103]|https://rt.perl.org/Ticket/Display.html?id=123103>.
2222 Accessing L<perlapi/CvPADLIST> on an XSUB is now forbidden.
2224 The C<CvPADLIST> field has been reused for a different internal purpose
2225 for XSUBs. So in particular, you can no longer rely on it being NULL as a
2226 test of whether a CV is an XSUB. Use C<CvISXSUB()> instead.
2230 SVs of type C<SVt_NV> are now sometimes bodiless when the build
2231 configuration and platform allow it: specifically, when C<< sizeof(NV) <=
2232 sizeof(IV) >>. "Bodiless" means that the NV value is stored directly in
2233 the head of an SV, without requiring a separate body to be allocated. This
2234 trick has already been used for IVs since 5.9.2 (though in the case of
2235 IVs, it is always used, regardless of platform and build configuration).
2239 The C<$DB::single>, C<$DB::signal> and C<$DB::trace> variables now have set- and
2240 get-magic that stores their values as IVs, and those IVs are used when
2241 testing their values in C<pp_dbstate()>. This prevents perl from
2242 recursing infinitely if an overloaded object is assigned to any of those
2244 L<[perl #122445]|https://rt.perl.org/Ticket/Display.html?id=122445>.
2248 C<Perl_tmps_grow()>, which is marked as public API but is undocumented, has
2249 been removed from the public API. This change does not affect XS code that
2250 uses the C<EXTEND_MORTAL> macro to pre-extend the mortal stack.
2254 Perl's internals no longer sets or uses the C<SVs_PADMY> flag.
2255 C<SvPADMY()> now returns a true value for anything not marked C<PADTMP>
2256 and C<SVs_PADMY> is now defined as 0.
2260 The macros C<SETsv> and C<SETsvUN> have been removed. They were no longer used
2261 in the core since commit 6f1401dc2a five years ago, and have not been
2262 found present on CPAN.
2266 The C<< SvFAKE >> bit (unused on HVs) got informally reserved by
2267 David Mitchell for future work on vtables.
2271 The C<sv_catpvn_flags()> function accepts C<SV_CATBYTES> and C<SV_CATUTF8>
2272 flags, which specify whether the appended string is bytes or UTF-8,
2273 respectively. (These flags have in fact been present since 5.16.0, but
2274 were formerly not regarded as part of the API.)
2278 A new opcode class, C<< METHOP >>, has been introduced. It holds
2279 information used at runtime for improve the performance
2280 of class/object method calls.
2282 C<< OP_METHOD >> and C<< OP_METHOD_NAMED >> have changed from being
2283 C<< UNOP/SVOP >> to being C<< METHOP >>.
2287 C<cv_name()> is a new API function that can be passed a CV or GV. It
2288 returns an SV containing the name of the subroutine, for use in
2291 L<[perl #116735]|https://rt.perl.org/Ticket/Display.html?id=116735>
2292 L<[perl #120441]|https://rt.perl.org/Ticket/Display.html?id=120441>
2296 C<cv_set_call_checker_flags()> is a new API function that works like
2297 C<cv_set_call_checker()>, except that it allows the caller to specify
2298 whether the call checker requires a full GV for reporting the subroutine's
2299 name, or whether it could be passed a CV instead. Whatever value is
2300 passed will be acceptable to C<cv_name()>. C<cv_set_call_checker()>
2301 guarantees there will be a GV, but it may have to create one on the fly,
2302 which is inefficient.
2303 L<[perl #116735]|https://rt.perl.org/Ticket/Display.html?id=116735>
2307 C<CvGV> (which is not part of the API) is now a more complex macro, which may
2308 call a function and reify a GV. For those cases where it has been used as a
2309 boolean, C<CvHASGV> has been added, which will return true for CVs that
2310 notionally have GVs, but without reifying the GV. C<CvGV> also returns a GV
2311 now for lexical subs.
2312 L<[perl #120441]|https://rt.perl.org/Ticket/Display.html?id=120441>
2316 The L<perlapi/sync_locale> function has been added to the public API.
2317 Changing the program's locale should be avoided by XS code. Nevertheless,
2318 certain non-Perl libraries called from XS need to do so, such as C<Gtk>.
2319 When this happens, Perl needs to be told that the locale has
2320 changed. Use this function to do so, before returning to Perl.
2324 The defines and labels for the flags in the C<op_private> field of OPs are now
2325 auto-generated from data in F<regen/op_private>. The noticeable effect of this
2326 is that some of the flag output of C<Concise> might differ slightly, and the
2327 flag output of S<C<perl -Dx>> may differ considerably (they both use the same set
2328 of labels now). Also, debugging builds now have a new assertion in
2329 C<op_free()> to ensure that the op doesn't have any unrecognized flags set in
2334 The deprecated variable C<PL_sv_objcount> has been removed.
2338 Perl now tries to keep the locale category C<LC_NUMERIC> set to "C"
2339 except around operations that need it to be set to the program's
2340 underlying locale. This protects the many XS modules that cannot cope
2341 with the decimal radix character not being a dot. Prior to this
2342 release, Perl initialized this category to "C", but a call to
2343 C<POSIX::setlocale()> would change it. Now such a call will change the
2344 underlying locale of the C<LC_NUMERIC> category for the program, but the
2345 locale exposed to XS code will remain "C". There are new macros
2346 to manipulate the LC_NUMERIC locale, including
2347 C<STORE_LC_NUMERIC_SET_TO_NEEDED> and
2348 C<STORE_LC_NUMERIC_FORCE_TO_UNDERLYING>.
2349 See L<perlapi/Locale-related functions and macros>.
2353 A new macro L<C<isUTF8_CHAR>|perlapi/isUTF8_CHAR> has been written which
2354 efficiently determines if the string given by its parameters begins
2355 with a well-formed UTF-8 encoded character.
2359 The following private API functions had their context parameter removed:
2360 C<Perl_cast_ulong>, C<Perl_cast_i32>, C<Perl_cast_iv>, C<Perl_cast_uv>,
2361 C<Perl_cv_const_sv>, C<Perl_mg_find>, C<Perl_mg_findext>, C<Perl_mg_magical>,
2362 C<Perl_mini_mktime>, C<Perl_my_dirfd>, C<Perl_sv_backoff>, C<Perl_utf8_hop>.
2364 Note that the prefix-less versions of those functions that are part of the
2365 public API, such as C<cast_i32()>, remain unaffected.
2369 The C<PADNAME> and C<PADNAMELIST> types are now separate types, and no
2370 longer simply aliases for SV and AV.
2371 L<[perl #123223]|https://rt.perl.org/Ticket/Display.html?id=123223>.
2375 Pad names are now always UTF-8. The C<PadnameUTF8> macro always returns
2376 true. Previously, this was effectively the case already, but any support
2377 for two different internal representations of pad names has now been
2382 A new op class, C<UNOP_AUX>, has been added. This is a subclass of
2383 C<UNOP> with an C<op_aux> field added, which points to an array of unions
2384 of C<UV>, C<SV*> etc. It is intended for where an op needs to store more data
2385 than a simple C<op_sv> or whatever. Currently the only op of this type is
2386 C<OP_MULTIDEREF> (see below).
2390 A new op has been added, C<OP_MULTIDEREF>, which performs one or more
2391 nested array and hash lookups where the key is a constant or simple
2392 variable. For example the expression C<$a[0]{$k}[$i]>, which previously
2393 involved ten C<rv2Xv>, C<Xelem>, C<gvsv> and C<const> ops is now performed
2394 by a single C<multideref> op. It can also handle C<local>, C<exists> and
2395 C<delete>. A non-simple index expression, such as C<[$i+1]> is still done
2396 using C<aelem>/C<helem>, and single-level array lookup with a small constant
2397 index is still done using C<aelemfast>.
2401 =head1 Selected Bug Fixes
2407 C<pack("D", $x)> and C<pack("F", $x)> now zero the padding on x86 long
2408 double builds. Under some build options on GCC 4.8 and later, they used
2409 to either overwrite the zero-initialized padding, or bypass the
2410 initialized buffer entirely. This caused F<op/pack.t> to fail.
2411 L<[perl #123971]|https://rt.perl.org/Ticket/Display.html?id=123971>
2415 Extending an array cloned from a parent thread could result in "Modification of
2416 a read-only value attempted" errors when attempting to modify the new elements.
2417 L<[perl #124127]|https://rt.perl.org/Ticket/Display.html?id=124127>
2421 An assertion failure and subsequent crash with C<< *x=<y> >> has been fixed.
2422 L<[perl #123790]|https://rt.perl.org/Ticket/Display.html?id=123790>
2426 A possible crashing/looping bug related to compiling lexical subs has been
2428 L<[perl #124099]|https://rt.perl.org/Ticket/Display.html?id=124099>
2432 UTF-8 now works correctly in function names, in unquoted HERE-document
2433 terminators, and in variable names used as array indexes.
2434 L<[perl #124113]|https://rt.perl.org/Ticket/Display.html?id=124113>
2438 Repeated global pattern matches in scalar context on large tainted strings were
2439 exponentially slow depending on the current match position in the string.
2440 L<[perl #123202]|https://rt.perl.org/Ticket/Display.html?id=123202>
2444 Various crashes due to the parser getting confused by syntax errors have been
2446 L<[perl #123801]|https://rt.perl.org/Ticket/Display.html?id=123801>
2447 L<[perl #123802]|https://rt.perl.org/Ticket/Display.html?id=123802>
2448 L<[perl #123955]|https://rt.perl.org/Ticket/Display.html?id=123955>
2449 L<[perl #123995]|https://rt.perl.org/Ticket/Display.html?id=123995>
2453 C<split> in the scope of lexical C<$_> has been fixed not to fail assertions.
2454 L<[perl #123763]|https://rt.perl.org/Ticket/Display.html?id=123763>
2458 C<my $x : attr> syntax inside various list operators no longer fails
2460 L<[perl #123817]|https://rt.perl.org/Ticket/Display.html?id=123817>
2464 An C<@> sign in quotes followed by a non-ASCII digit (which is not a valid
2465 identifier) would cause the parser to crash, instead of simply trying the
2466 C<@> as literal. This has been fixed.
2467 L<[perl #123963]|https://rt.perl.org/Ticket/Display.html?id=123963>
2471 C<*bar::=*foo::=*glob_with_hash> has been crashing since Perl 5.14, but no
2473 L<[perl #123847]|https://rt.perl.org/Ticket/Display.html?id=123847>
2477 C<foreach> in scalar context was not pushing an item on to the stack, resulting
2478 in bugs. (S<C<print 4, scalar do { foreach(@x){} } + 1>> would print 5.)
2479 It has been fixed to return C<undef>.
2480 L<[perl #124004]|https://rt.perl.org/Ticket/Display.html?id=124004>
2484 Several cases of data used to store environment variable contents in core C
2485 code being potentially overwritten before being used have been fixed.
2486 L<[perl #123748]|https://rt.perl.org/Ticket/Display.html?id=123748>
2490 Some patterns starting with C</.*..../> matched against long strings have
2491 been slow since v5.8, and some of the form C</.*..../i> have been slow
2492 since v5.18. They are now all fast again.
2493 L<[perl #123743]|https://rt.perl.org/Ticket/Display.html?id=123743>.
2497 The original visible value of C<$/> is now preserved when it is set to
2498 an invalid value. Previously if you set C<$/> to a reference to an
2499 array, for example, perl would produce a runtime error and not set
2500 C<PL_rs>, but perl code that checked C<$/> would see the array
2502 L<[perl #123218]|https://rt.perl.org/Ticket/Display.html?id=123218>.
2506 In a regular expression pattern, a POSIX class, like C<[:ascii:]>, must
2507 be inside a bracketed character class, like C<qr/[[:ascii:]]/>. A
2508 warning is issued when something looking like a POSIX class is not
2509 inside a bracketed class. That warning wasn't getting generated when
2510 the POSIX class was negated: C<[:^ascii:]>. This is now fixed.
2514 Perl 5.14.0 introduced a bug whereby S<C<eval { LABEL: }>> would crash. This
2516 L<[perl #123652]|https://rt.perl.org/Ticket/Display.html?id=123652>.
2520 Various crashes due to the parser getting confused by syntax errors have
2522 L<[perl #123617]|https://rt.perl.org/Ticket/Display.html?id=123617>.
2523 L<[perl #123737]|https://rt.perl.org/Ticket/Display.html?id=123737>.
2524 L<[perl #123753]|https://rt.perl.org/Ticket/Display.html?id=123753>.
2525 L<[perl #123677]|https://rt.perl.org/Ticket/Display.html?id=123677>.
2529 Code like C</$a[/> used to read the next line of input and treat it as
2530 though it came immediately after the opening bracket. Some invalid code
2531 consequently would parse and run, but some code caused crashes, so this is
2533 L<[perl #123712]|https://rt.perl.org/Ticket/Display.html?id=123712>.
2537 Fix argument underflow for C<pack>.
2538 L<[perl #123874]|https://rt.perl.org/Ticket/Display.html?id=123874>.
2542 Fix handling of non-strict C<\x{}>. Now C<\x{}> is equivalent to C<\x{0}>
2543 instead of faulting.
2547 C<stat -t> is now no longer treated as stackable, just like C<-t stat>.
2548 L<[perl #123816]|https://rt.perl.org/Ticket/Display.html?id=123816>.
2552 The following no longer causes a SEGV: C<qr{x+(y(?0))*}>.
2556 Fixed infinite loop in parsing backrefs in regexp patterns.
2560 Several minor bug fixes in behavior of Infinity and NaN, including
2561 warnings when stringifying Infinity-like or NaN-like strings. For example,
2562 "NaNcy" doesn't numify to NaN anymore.
2566 A bug in regular expression patterns that could lead to segfaults and
2567 other crashes has been fixed. This occurred only in patterns compiled
2568 with C</i> while taking into account the current POSIX locale (which usually
2569 means they have to be compiled within the scope of C<S<use locale>>),
2570 and there must be a string of at least 128 consecutive bytes to match.
2571 L<[perl #123539]|https://rt.perl.org/Ticket/Display.html?id=123539>.
2575 C<s///g> now works on very long strings (where there are more than 2
2576 billion iterations) instead of dying with 'Substitution loop'.
2577 L<[perl #103260]|https://rt.perl.org/Ticket/Display.html?id=103260>.
2578 L<[perl #123071]|https://rt.perl.org/Ticket/Display.html?id=123071>.
2582 C<gmtime> no longer crashes with not-a-number values.
2583 L<[perl #123495]|https://rt.perl.org/Ticket/Display.html?id=123495>.
2587 C<\()> (a reference to an empty list), and C<y///> with lexical C<$_> in
2588 scope, could both do a bad write past the end of the stack. They have
2589 both been fixed to extend the stack first.
2593 C<prototype()> with no arguments used to read the previous item on the
2594 stack, so S<C<print "foo", prototype()>> would print foo's prototype.
2595 It has been fixed to infer C<$_> instead.
2596 L<[perl #123514]|https://rt.perl.org/Ticket/Display.html?id=123514>.
2600 Some cases of lexical state subs declared inside predeclared subs could
2601 crash, for example when evalling a string including the name of an outer
2602 variable, but no longer do.
2606 Some cases of nested lexical state subs inside anonymous subs could cause
2607 'Bizarre copy' errors or possibly even crashes.
2611 When trying to emit warnings, perl's default debugger (F<perl5db.pl>) was
2612 sometimes giving 'Undefined subroutine &DB::db_warn called' instead. This
2613 bug, which started to occur in Perl 5.18, has been fixed.
2614 L<[perl #123553]|https://rt.perl.org/Ticket/Display.html?id=123553>.
2618 Certain syntax errors in substitutions, such as C<< s/${<>{})// >>, would
2619 crash, and had done so since Perl 5.10. (In some cases the crash did not
2620 start happening till 5.16.) The crash has, of course, been fixed.
2621 L<[perl #123542]|https://rt.perl.org/Ticket/Display.html?id=123542>.
2625 Fix a couple of string grow size calculation overflows; in particular,
2626 a repeat expression like S<C<33 x ~3>> could cause a large buffer
2627 overflow since the new output buffer size was not correctly handled by
2628 C<SvGROW()>. An expression like this now properly produces a memory wrap
2630 L<[perl #123554]|https://rt.perl.org/Ticket/Display.html?id=123554>.
2634 C<< formline("@...", "a"); >> would crash. The C<FF_CHECKNL> case in
2635 pp_formline() didn't set the pointer used to mark the chop position,
2636 which led to the C<FF_MORE> case crashing with a segmentation fault.
2637 This has been fixed.
2638 L<[perl #123538]|https://rt.perl.org/Ticket/Display.html?id=123538>.
2642 A possible buffer overrun and crash when parsing a literal pattern during
2643 regular expression compilation has been fixed.
2644 L<[perl #123604]|https://rt.perl.org/Ticket/Display.html?id=123604>.
2648 C<fchmod()> and C<futimes()> now set C<$!> when they fail due to being
2649 passed a closed file handle.
2650 L<[perl #122703]|https://rt.perl.org/Ticket/Display.html?id=122703>.
2654 C<op_free()> and C<scalarvoid()> no longer crash due to a stack overflow
2655 when freeing a deeply recursive op tree.
2656 L<[perl #108276]|https://rt.perl.org/Ticket/Display.html?id=108276>.
2660 In Perl 5.20.0, C<$^N> accidentally had the internal UTF-8 flag turned off
2661 if accessed from a code block within a regular expression, effectively
2662 UTF-8-encoding the value. This has been fixed.
2663 L<[perl #123135]|https://rt.perl.org/Ticket/Display.html?id=123135>.
2667 A failed C<semctl> call no longer overwrites existing items on the stack,
2668 which means that C<(semctl(-1,0,0,0))[0]> no longer gives an
2669 "uninitialized" warning.
2673 C<else{foo()}> with no space before C<foo> is now better at assigning the
2674 right line number to that statement.
2675 L<[perl #122695]|https://rt.perl.org/Ticket/Display.html?id=122695>.
2679 Sometimes the assignment in C<@array = split> gets optimised so that C<split>
2680 itself writes directly to the array. This caused a bug, preventing this
2681 assignment from being used in lvalue context. So
2682 C<(@a=split//,"foo")=bar()> was an error. (This bug probably goes back to
2683 Perl 3, when the optimisation was added.) It has now been fixed.
2684 L<[perl #123057]|https://rt.perl.org/Ticket/Display.html?id=123057>.
2688 When an argument list fails the checks specified by a subroutine
2689 signature (which is still an experimental feature), the resulting error
2690 messages now give the file and line number of the caller, not of the
2692 L<[perl #121374]|https://rt.perl.org/Ticket/Display.html?id=121374>.
2696 The flip-flop operators (C<..> and C<...> in scalar context) used to maintain
2697 a separate state for each recursion level (the number of times the
2698 enclosing sub was called recursively), contrary to the documentation. Now
2699 each closure has one internal state for each flip-flop.
2700 L<[perl #122829]|https://rt.perl.org/Ticket/Display.html?id=122829>.
2704 The flip-flop operator (C<..> in scalar context) would return the same
2705 scalar each time, unless the containing subroutine was called recursively.
2706 Now it always returns a new scalar.
2707 L<[perl #122829]|https://rt.perl.org/Ticket/Display.html?id=122829>.
2711 C<use>, C<no>, statement labels, special blocks (C<BEGIN>) and pod are now
2712 permitted as the first thing in a C<map> or C<grep> block, the block after
2713 C<print> or C<say> (or other functions) returning a handle, and within
2714 C<${...}>, C<@{...}>, etc.
2715 L<[perl #122782]|https://rt.perl.org/Ticket/Display.html?id=122782>.
2719 The repetition operator C<x> now propagates lvalue context to its left-hand
2720 argument when used in contexts like C<foreach>. That allows
2721 S<C<for(($#that_array)x2) { ... }>> to work as expected if the loop modifies
2726 C<(...) x ...> in scalar context used to corrupt the stack if one operand
2727 was an object with "x" overloading, causing erratic behaviour.
2728 L<[perl #121827]|https://rt.perl.org/Ticket/Display.html?id=121827>.
2732 Assignment to a lexical scalar is often optimised away; for example in
2733 C<my $x; $x = $y + $z>, the assign operator is optimised away and the add
2734 operator writes its result directly to C<$x>. Various bugs related to
2735 this optimisation have been fixed. Certain operators on the right-hand
2736 side would sometimes fail to assign the value at all or assign the wrong
2737 value, or would call STORE twice or not at all on tied variables. The
2738 operators affected were C<$foo++>, C<$foo-->, and C<-$foo> under C<use
2739 integer>, C<chomp>, C<chr> and C<setpgrp>.
2743 List assignments were sometimes buggy if the same scalar ended up on both
2744 sides of the assignment due to use of C<tied>, C<values> or C<each>. The
2745 result would be the wrong value getting assigned.
2749 C<setpgrp($nonzero)> (with one argument) was accidentally changed in 5.16
2750 to mean C<setpgrp(0)>. This has been fixed.
2754 C<__SUB__> could return the wrong value or even corrupt memory under the
2755 debugger (the C<-d> switch) and in subs containing C<eval $string>.
2759 When S<C<sub () { $var }>> becomes inlinable, it now returns a different
2760 scalar each time, just as a non-inlinable sub would, though Perl still
2761 optimises the copy away in cases where it would make no observable
2766 S<C<my sub f () { $var }>> and S<C<sub () : attr { $var }>> are no longer
2767 eligible for inlining. The former would crash; the latter would just
2768 throw the attributes away. An exception is made for the little-known
2769 ":method" attribute, which does nothing much.
2773 Inlining of subs with an empty prototype is now more consistent than
2774 before. Previously, a sub with multiple statements, of which all but the last
2775 were optimised away, would be inlinable only if it were an anonymous sub
2776 containing a string C<eval> or C<state> declaration or closing over an
2777 outer lexical variable (or any anonymous sub under the debugger). Now any
2778 sub that gets folded to a single constant after statements have been
2779 optimised away is eligible for inlining. This applies to things like C<sub
2780 () { jabber() if DEBUG; 42 }>.
2782 Some subroutines with an explicit C<return> were being made inlinable,
2783 contrary to the documentation, Now C<return> always prevents inlining.
2787 On some systems, such as VMS, C<crypt> can return a non-ASCII string. If a
2788 scalar assigned to had contained a UTF-8 string previously, then C<crypt>
2789 would not turn off the UTF-8 flag, thus corrupting the return value. This
2790 would happen with S<C<$lexical = crypt ...>>.
2794 C<crypt> no longer calls C<FETCH> twice on a tied first argument.
2798 An unterminated here-doc on the last line of a quote-like operator
2799 (C<qq[${ <<END }]>, C</(?{ <<END })/>) no longer causes a double free. It
2800 started doing so in 5.18.
2804 C<index()> and C<rindex()> no longer crash when used on strings over 2GB in
2806 L<[perl #121562]|https://rt.perl.org/Ticket/Display.html?id=121562>.
2810 A small previously intentional memory leak in PERL_SYS_INIT/PERL_SYS_INIT3 on
2811 Win32 builds was fixed. This might affect embedders who repeatedly create and
2812 destroy perl engines within the same process.
2816 C<POSIX::localeconv()> now returns the data for the program's underlying
2817 locale even when called from outside the scope of S<C<use locale>>.
2821 C<POSIX::localeconv()> now works properly on platforms which don't have
2822 C<LC_NUMERIC> and/or C<LC_MONETARY>, or for which Perl has been compiled
2823 to disregard either or both of these locale categories. In such
2824 circumstances, there are now no entries for the corresponding values in
2825 the hash returned by C<localeconv()>.
2829 C<POSIX::localeconv()> now marks appropriately the values it returns as
2830 UTF-8 or not. Previously they were always returned as bytes, even if
2831 they were supposed to be encoded as UTF-8.
2835 On Microsoft Windows, within the scope of C<S<use locale>>, the following
2836 POSIX character classes gave results for many locales that did not
2837 conform to the POSIX standard:
2850 This was because the underlying Microsoft implementation does not
2851 follow the standard. Perl now takes special precautions to correct for
2856 Many issues have been detected by L<Coverity|http://www.coverity.com/> and
2861 C<system()> and friends should now work properly on more Android builds.
2863 Due to an oversight, the value specified through C<-Dtargetsh> to F<Configure>
2864 would end up being ignored by some of the build process. This caused perls
2865 cross-compiled for Android to end up with defective versions of C<system()>,
2866 C<exec()> and backticks: the commands would end up looking for C</bin/sh>
2867 instead of C</system/bin/sh>, and so would fail for the vast majority
2868 of devices, leaving C<$!> as C<ENOENT>.
2872 C<qr(...\(...\)...)>,
2873 C<qr[...\[...\]...]>,
2875 C<qr{...\{...\}...}>
2876 now work. Previously it was impossible to escape these three
2877 left-characters with a backslash within a regular expression pattern
2878 where otherwise they would be considered metacharacters, and the pattern
2879 opening delimiter was the character, and the closing delimiter was its
2884 C<< s///e >> on tainted UTF-8 strings corrupted C<< pos() >>. This bug,
2885 introduced in 5.20, is now fixed.
2886 L<[perl #122148]|https://rt.perl.org/Ticket/Display.html?id=122148>.
2890 A non-word boundary in a regular expression (C<< \B >>) did not always
2891 match the end of the string; in particular C<< q{} =~ /\B/ >> did not
2892 match. This bug, introduced in perl 5.14, is now fixed.
2893 L<[perl #122090]|https://rt.perl.org/Ticket/Display.html?id=122090>.
2897 C<< " P" =~ /(?=.*P)P/ >> should match, but did not. This is now fixed.
2898 L<[perl #122171]|https://rt.perl.org/Ticket/Display.html?id=122171>.
2902 Failing to compile C<use Foo> in an C<eval> could leave a spurious
2903 C<BEGIN> subroutine definition, which would produce a "Subroutine
2904 BEGIN redefined" warning on the next use of C<use>, or other C<BEGIN>
2906 L<[perl #122107]|https://rt.perl.org/Ticket/Display.html?id=122107>.
2910 C<method { BLOCK } ARGS> syntax now correctly parses the arguments if they
2911 begin with an opening brace.
2912 L<[perl #46947]|https://rt.perl.org/Ticket/Display.html?id=46947>.
2916 External libraries and Perl may have different ideas of what the locale is.
2917 This is problematic when parsing version strings if the locale's numeric
2918 separator has been changed. Version parsing has been patched to ensure
2919 it handles the locales correctly.
2920 L<[perl #121930]|https://rt.perl.org/Ticket/Display.html?id=121930>.
2924 A bug has been fixed where zero-length assertions and code blocks inside of a
2925 regex could cause C<pos> to see an incorrect value.
2926 L<[perl #122460]|https://rt.perl.org/Ticket/Display.html?id=122460>.
2930 Dereferencing of constants now works correctly for typeglob constants. Previously
2931 the glob was stringified and its name looked up. Now the glob itself is used.
2932 L<[perl #69456]|https://rt.perl.org/Ticket/Display.html?id=69456>
2936 When parsing a sigil (C<$> C<@> C<%> C<&)> followed by braces,
2938 longer tries to guess whether it is a block or a hash constructor (causing a
2939 syntax error when it guesses the latter), since it can only be a block.
2943 S<C<undef $reference>> now frees the referent immediately, instead of hanging on
2944 to it until the next statement.
2945 L<[perl #122556]|https://rt.perl.org/Ticket/Display.html?id=122556>
2949 Various cases where the name of a sub is used (autoload, overloading, error
2950 messages) used to crash for lexical subs, but have been fixed.
2954 Bareword lookup now tries to avoid vivifying packages if it turns out the
2955 bareword is not going to be a subroutine name.
2959 Compilation of anonymous constants (e.g., C<sub () { 3 }>) no longer deletes
2960 any subroutine named C<__ANON__> in the current package. Not only was
2961 C<*__ANON__{CODE}> cleared, but there was a memory leak, too. This bug goes
2966 Stub declarations like C<sub f;> and C<sub f ();> no longer wipe out constants
2967 of the same name declared by C<use constant>. This bug was introduced in Perl
2972 C<qr/[\N{named sequence}]/> now works properly in many instances.
2975 known to C<\N{...}> refer to a sequence of multiple characters, instead of the
2976 usual single character. Bracketed character classes generally only match
2977 single characters, but now special handling has been added so that they can
2978 match named sequences, but not if the class is inverted or the sequence is
2979 specified as the beginning or end of a range. In these cases, the only
2980 behavior change from before is a slight rewording of the fatal error message
2981 given when this class is part of a C<?[...])> construct. When the C<[...]>
2982 stands alone, the same non-fatal warning as before is raised, and only the
2983 first character in the sequence is used, again just as before.
2987 Tainted constants evaluated at compile time no longer cause unrelated
2988 statements to become tainted.
2989 L<[perl #122669]|https://rt.perl.org/Ticket/Display.html?id=122669>
2993 S<C<open $$fh, ...>>, which vivifies a handle with a name like
2994 C<"main::_GEN_0">, was not giving the handle the right reference count, so
2995 a double free could happen.
2999 When deciding that a bareword was a method name, the parser would get confused
3000 if an C<our> sub with the same name existed, and look up the method in the
3001 package of the C<our> sub, instead of the package of the invocant.
3005 The parser no longer gets confused by C<\U=> within a double-quoted string. It
3006 used to produce a syntax error, but now compiles it correctly.
3007 L<[perl #80368]|https://rt.perl.org/Ticket/Display.html?id=80368>
3011 It has always been the intention for the C<-B> and C<-T> file test operators to
3012 treat UTF-8 encoded files as text. (L<perlfunc|perlfunc/-X FILEHANDLE> has
3013 been updated to say this.) Previously, it was possible for some files to be
3014 considered UTF-8 that actually weren't valid UTF-8. This is now fixed. The
3015 operators now work on EBCDIC platforms as well.
3019 Under some conditions warning messages raised during regular expression pattern
3020 compilation were being output more than once. This has now been fixed.
3024 Perl 5.20.0 introduced a regression in which a UTF-8 encoded regular
3025 expression pattern that contains a single ASCII lowercase letter did not
3026 match its uppercase counterpart. That has been fixed in both 5.20.1 and
3028 L<[perl #122655]|https://rt.perl.org/Ticket/Display.html?id=122655>
3032 Constant folding could incorrectly suppress warnings if lexical warnings
3033 (C<use warnings> or C<no warnings>) were not in effect and C<$^W> were
3034 false at compile time and true at run time.
3038 Loading Unicode tables during a regular expression match could cause assertion
3039 failures under debugging builds if the previous match used the very same
3041 L<[perl #122747]|https://rt.perl.org/Ticket/Display.html?id=122747>
3045 Thread cloning used to work incorrectly for lexical subs, possibly causing
3046 crashes or double frees on exit.
3050 Since Perl 5.14.0, deleting C<$SomePackage::{__ANON__}> and then undefining an
3051 anonymous subroutine could corrupt things internally, resulting in
3052 L<Devel::Peek> crashing or L<B.pm|B> giving nonsensical data. This has been
3057 S<C<(caller $n)[3]>> now reports names of lexical subs, instead of
3058 treating them as C<"(unknown)">.
3062 C<sort subname LIST> now supports using a lexical sub as the comparison
3067 Aliasing (e.g., via S<C<*x = *y>>) could confuse list assignments that mention the
3068 two names for the same variable on either side, causing wrong values to be
3070 L<[perl #15667]|https://rt.perl.org/Ticket/Display.html?id=15667>
3074 Long here-doc terminators could cause a bad read on short lines of input. This
3075 has been fixed. It is doubtful that any crash could have occurred. This bug
3076 goes back to when here-docs were introduced in Perl 3.000 twenty-five years
3081 An optimization in C<split> to treat S<C<split /^/>> like S<C<split /^/m>> had the
3082 unfortunate side-effect of also treating S<C<split /\A/>> like S<C<split /^/m>>,
3083 which it should not. This has been fixed. (Note, however, that S<C<split /^x/>>
3084 does not behave like S<C<split /^x/m>>, which is also considered to be a bug and
3085 will be fixed in a future version.)
3086 L<[perl #122761]|https://rt.perl.org/Ticket/Display.html?id=122761>
3090 The little-known S<C<my Class $var>> syntax (see L<fields> and L<attributes>)
3091 could get confused in the scope of C<use utf8> if C<Class> were a constant
3092 whose value contained Latin-1 characters.
3096 Locking and unlocking values via L<Hash::Util> or C<Internals::SvREADONLY>
3097 no longer has any effect on values that were read-only to begin with.
3098 Previously, unlocking such values could result in crashes, hangs or
3099 other erratic behaviour.
3103 Some unterminated C<(?(...)...)> constructs in regular expressions would
3104 either crash or give erroneous error messages. C</(?(1)/> is one such
3109 S<C<pack "w", $tied>> no longer calls FETCH twice.
3113 List assignments like S<C<($x, $z) = (1, $y)>> now work correctly if C<$x> and
3114 C<$y> have been aliased by C<foreach>.
3118 Some patterns including code blocks with syntax errors, such as
3119 S<C</ (?{(^{})/>>, would hang or fail assertions on debugging builds. Now
3120 they produce errors.
3124 An assertion failure when parsing C<sort> with debugging enabled has been
3126 L<[perl #122771]|https://rt.perl.org/Ticket/Display.html?id=122771>.
3130 S<C<*a = *b; @a = split //, $b[1]>> could do a bad read and produce junk
3135 In S<C<() = @array = split>>, the S<C<() =>> at the beginning no longer confuses
3136 the optimizer into assuming a limit of 1.
3140 Fatal warnings no longer prevent the output of syntax errors.
3141 L<[perl #122966]|https://rt.perl.org/Ticket/Display.html?id=122966>.
3145 Fixed a NaN double-to-long-double conversion error on VMS. For quiet NaNs
3146 (and only on Itanium, not Alpha) negative infinity instead of NaN was
3151 Fixed the issue that caused C<< make distclean >> to incorrectly leave some
3153 L<[perl #122820]|https://rt.perl.org/Ticket/Display.html?id=122820>.
3157 AIX now sets the length in C<< getsockopt >> correctly.
3158 L<[perl #120835]|https://rt.perl.org/Ticket/Display.html?id=120835>.
3159 L<[cpan #91183]|https://rt.cpan.org/Ticket/Display.html?id=91183>.
3160 L<[cpan #85570]|https://rt.cpan.org/Ticket/Display.html?id=85570>.
3164 The optimization phase of a regexp compilation could run "forever" and
3165 exhaust all memory under certain circumstances; now fixed.
3166 L<[perl #122283]|https://rt.perl.org/Ticket/Display.html?id=122283>.
3170 The test script F<< t/op/crypt.t >> now uses the SHA-256 algorithm if the
3171 default one is disabled, rather than giving failures.
3172 L<[perl #121591]|https://rt.perl.org/Ticket/Display.html?id=121591>.
3176 Fixed an off-by-one error when setting the size of a shared array.
3177 L<[perl #122950]|https://rt.perl.org/Ticket/Display.html?id=122950>.
3181 Fixed a bug that could cause perl to enter an infinite loop during
3182 compilation. In particular, a C<while(1)> within a sublist, e.g.
3184 sub foo { () = ($a, my $b, ($c, do { while(1) {} })) }
3186 The bug was introduced in 5.20.0
3187 L<[perl #122995]|https://rt.perl.org/Ticket/Display.html?id=122995>.
3191 On Win32, if a variable was C<local>-ized in a pseudo-process that later
3192 forked, restoring the original value in the child pseudo-process caused
3193 memory corruption and a crash in the child pseudo-process (and therefore the
3195 L<[perl #40565]|https://rt.perl.org/Ticket/Display.html?id=40565>.
3199 Calling C<write> on a format with a C<^**> field could produce a panic
3200 in C<sv_chop()> if there were insufficient arguments or if the variable
3201 used to fill the field was empty.
3202 L<[perl #123245]|https://rt.perl.org/Ticket/Display.html?id=123245>.
3206 Non-ASCII lexical sub names now appear without trailing junk when they
3207 appear in error messages.
3211 The C<\@> subroutine prototype no longer flattens parenthesized arrays
3212 (taking a reference to each element), but takes a reference to the array
3214 L<[perl #47363]|https://rt.perl.org/Ticket/Display.html?id=47363>.
3218 A block containing nothing except a C-style C<for> loop could corrupt the
3219 stack, causing lists outside the block to lose elements or have elements
3220 overwritten. This could happen with C<map { for(...){...} } ...> and with
3221 lists containing C<do { for(...){...} }>.
3222 L<[perl #123286]|https://rt.perl.org/Ticket/Display.html?id=123286>.
3226 C<scalar()> now propagates lvalue context, so that
3227 S<C<for(scalar($#foo)) { ... }>> can modify C<$#foo> through C<$_>.
3231 C<qr/@array(?{block})/> no longer dies with "Bizarre copy of ARRAY".
3232 L<[perl #123344]|https://rt.perl.org/Ticket/Display.html?id=123344>.
3236 S<C<eval '$variable'>> in nested named subroutines would sometimes look up a
3237 global variable even with a lexical variable in scope.
3241 In perl 5.20.0, C<sort CORE::fake> where 'fake' is anything other than a
3242 keyword, started chopping off the last 6 characters and treating the result
3243 as a sort sub name. The previous behaviour of treating "CORE::fake" as a
3244 sort sub name has been restored.
3245 L<[perl #123410]|https://rt.perl.org/Ticket/Display.html?id=123410>.
3249 Outside of C<use utf8>, a single-character Latin-1 lexical variable is
3250 disallowed. The error message for it, "Can't use global C<$foo>...", was
3251 giving garbage instead of the variable name.
3255 C<readline> on a nonexistent handle was causing C<${^LAST_FH}> to produce a
3256 reference to an undefined scalar (or fail an assertion). Now
3257 C<${^LAST_FH}> ends up undefined.
3261 C<(...) x ...> in void context now applies scalar context to the left-hand
3262 argument, instead of the context the current sub was called in.
3263 L<[perl #123020]|https://rt.perl.org/Ticket/Display.html?id=123020>.
3267 =head1 Known Problems
3273 C<pack>-ing a NaN on a perl compiled with Visual C 6 does not behave properly,
3274 leading to a test failure in F<t/op/infnan.t>.
3275 L<[perl 125203]|https://rt.perl.org/Ticket/Display.html?id=125203>
3279 A goal is for Perl to be able to be recompiled to work reasonably well on any
3280 Unicode version. In Perl 5.22, though, the earliest such version is Unicode
3281 5.1 (current is 7.0).
3291 The C<cmp> (and hence C<sort>) operators do not necessarily give the
3292 correct results when both operands are UTF-EBCDIC encoded strings and
3293 there is a mixture of ASCII and/or control characters, along with other
3298 Ranges containing C<\N{...}> in the C<tr///> (and C<y///>)
3299 transliteration operators are treated differently than the equivalent
3300 ranges in regular expression patterns. They should, but don't, cause
3301 the values in the ranges to all be treated as Unicode code points, and
3302 not native ones. (L<perlre/Version 8 Regular Expressions> gives
3303 details as to how it should work.)
3307 Encode and encoding are mostly broken.
3311 Many CPAN modules that are shipped with core show failing tests.
3315 C<pack>/C<unpack> with C<"U0"> format may not work properly.
3321 The following modules are known to have test failures with this version of
3322 Perl. Patches have been submitted, so there will hopefully be new releases
3329 L<B::Generate> version 1.50
3333 L<B::Utils> version 0.25
3337 L<Dancer> version 1.3130
3341 L<Data::Alias> version 1.18
3345 L<Data::Util> version 0.63
3349 L<Devel::Spy> version 0.07
3353 L<invoker> version 0.34
3357 L<Lexical::Var> version 0.009
3361 L<Mason> version 2.22
3365 L<NgxQueue> version 0.02
3369 L<Padre> version 1.00
3373 L<Parse::Keyword> 0.08
3381 Brian McCauley died on May 8, 2015. He was a frequent poster to Usenet, Perl
3382 Monks, and other Perl forums, and made several CPAN contributions under the
3383 nick NOBULL, including to the Perl FAQ. He attended almost every
3384 YAPC::Europe, and indeed, helped organise YAPC::Europe 2006 and the QA
3385 Hackathon 2009. His wit and his delight in intricate systems were
3386 particularly apparent in his love of board games; many Perl mongers will
3387 have fond memories of playing Fluxx and other games with Brian. He will be
3390 =head1 Acknowledgements
3392 Perl 5.22.0 represents approximately 12 months of development since Perl 5.20.0
3393 and contains approximately 590,000 lines of changes across 2,400 files from 94
3396 Excluding auto-generated files, documentation and release tools, there were
3397 approximately 370,000 lines of changes to 1,500 .pm, .t, .c and .h files.
3399 Perl continues to flourish into its third decade thanks to a vibrant community
3400 of users and developers. The following people are known to have contributed the
3401 improvements that became Perl 5.22.0:
3403 Aaron Crane, Abhijit Menon-Sen, Abigail, Alberto Simões, Alex Solovey, Alex
3404 Vandiver, Alexandr Ciornii, Alexandre (Midnite) Jousset, Andreas König,
3405 Andreas Voegele, Andrew Fresh, Andy Dougherty, Anthony Heading, Aristotle
3406 Pagaltzis, brian d foy, Brian Fraser, Chad Granum, Chris 'BinGOs' Williams,
3407 Craig A. Berry, Dagfinn Ilmari Mannsåker, Daniel Dragan, Darin McBride, Dave
3408 Rolsky, David Golden, David Mitchell, David Wheeler, Dmitri Tikhonov, Doug
3409 Bell, E. Choroba, Ed J, Eric Herman, Father Chrysostomos, George Greer, Glenn
3410 D. Golden, Graham Knop, H.Merijn Brand, Herbert Breunung, Hugo van der Sanden,
3411 James E Keenan, James McCoy, James Raspass, Jan Dubois, Jarkko Hietaniemi,
3412 Jasmine Ngan, Jerry D. Hedden, Jim Cromie, John Goodyear, kafka, Karen
3413 Etheridge, Karl Williamson, Kent Fredric, kmx, Lajos Veres, Leon Timmermans,
3414 Lukas Mai, Mathieu Arnold, Matthew Horsfall, Max Maischein, Michael Bunk,
3415 Nicholas Clark, Niels Thykier, Niko Tyni, Norman Koch, Olivier Mengué, Peter
3416 John Acklam, Peter Martini, Petr Písař, Philippe Bruhat (BooK), Pierre
3417 Bogossian, Rafael Garcia-Suarez, Randy Stauner, Reini Urban, Ricardo Signes,
3418 Rob Hoelz, Rostislav Skudnov, Sawyer X, Shirakata Kentaro, Shlomi Fish,
3419 Sisyphus, Slaven Rezic, Smylers, Steffen Müller, Steve Hay, Sullivan Beck,
3420 syber, Tadeusz Sośnierz, Thomas Sibley, Todd Rinaldo, Tony Cook, Vincent Pit,
3421 Vladimir Marek, Yaroslav Kuzmin, Yves Orton, Ævar Arnfjörð Bjarmason.
3423 The list above is almost certainly incomplete as it is automatically generated
3424 from version control history. In particular, it does not include the names of
3425 the (very much appreciated) contributors who reported issues to the Perl bug
3428 Many of the changes included in this version originated in the CPAN modules
3429 included in Perl's core. We're grateful to the entire CPAN community for
3430 helping Perl to flourish.
3432 For a more complete list of all of Perl's historical contributors, please see
3433 the F<AUTHORS> file in the Perl source distribution.
3435 =head1 Reporting Bugs
3437 If you find what you think is a bug, you might check the articles recently
3438 posted to the comp.lang.perl.misc newsgroup and the perl bug database at
3439 https://rt.perl.org/ . There may also be information at
3440 http://www.perl.org/ , the Perl Home Page.
3442 If you believe you have an unreported bug, please run the L<perlbug> program
3443 included with your release. Be sure to trim your bug down to a tiny but
3444 sufficient test case. Your bug report, along with the output of C<perl -V>,
3445 will be sent off to perlbug@perl.org to be analysed by the Perl porting team.
3447 If the bug you are reporting has security implications, which make it
3448 inappropriate to send to a publicly archived mailing list, then please send it
3449 to perl5-security-report@perl.org. This points to a closed subscription
3450 unarchived mailing list, which includes all the core committers, who will be
3451 able to help assess the impact of issues, figure out a resolution, and help
3452 co-ordinate the release of patches to mitigate or fix the problem across all
3453 platforms on which Perl is supported. Please only use this address for
3454 security issues in the Perl core, not for modules independently distributed on
3459 The F<Changes> file for an explanation of how to view exhaustive details on
3462 The F<INSTALL> file for how to build Perl.
3464 The F<README> file for general stuff.
3466 The F<Artistic> and F<Copying> files for copyright information.