This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlfunc: Fix confusing entries for splice
[perl5.git] / pod / perldelta.pod
1 =encoding utf8
2
3 =head1 NAME
4
5 perldelta - what is new for perl v5.22.0
6
7 =head1 DESCRIPTION
8
9 This document describes differences between the 5.20.0 release and the 5.22.0
10 release.
11
12 If you are upgrading from an earlier release such as 5.18.0, first read
13 L<perl5200delta>, which describes differences between 5.18.0 and 5.20.0.
14
15 =head1 Core Enhancements
16
17 =head2 New bitwise operators
18
19 A new experimental facility has been added that makes the four standard
20 bitwise operators (C<& | ^ ~>) treat their operands consistently as
21 numbers, and introduces four new dotted operators (C<&. |. ^. ~.>) that
22 treat their operands consistently as strings.  The same applies to the
23 assignment variants (C<&= |= ^= &.= |.= ^.=>).
24
25 To use this, enable the "bitwise" feature and disable the
26 "experimental::bitwise" warnings category.  See L<perlop/Bitwise String
27 Operators> for details.
28 L<[perl #123466]|https://rt.perl.org/Ticket/Display.html?id=123466>.
29
30 =head2 New double-diamond operator
31
32 C<<< <<>> >>> is like C<< <> >> but uses three-argument C<open> to open
33 each file in C<@ARGV>.  This means that each element of C<@ARGV> will be treated
34 as an actual file name, and C<"|foo"> won't be treated as a pipe open.
35
36 =head2 New \b boundaries in regular expressions
37
38 =head3 qr/\b{gcb}/
39
40 C<gcb> stands for Grapheme Cluster Boundary.  It is a Unicode property
41 that finds the boundary between sequences of characters that look like a
42 single character to a native speaker of a language.  Perl has long had
43 the ability to deal with these through the C<\X> regular escape
44 sequence.  Now, there is an alternative way of handling these.  See
45 L<perlrebackslash/\b{}, \b, \B{}, \B> for details.
46
47 =head3 qr/\b{wb}/
48
49 C<wb> stands for Word Boundary.  It is a Unicode property
50 that finds the boundary between words.  This is similar to the plain
51 C<\b> (without braces) but is more suitable for natural language
52 processing.  It knows, for example, that apostrophes can occur in the
53 middle of words.  See L<perlrebackslash/\b{}, \b, \B{}, \B> for details.
54
55 =head3 qr/\b{sb}/
56
57 C<sb> stands for Sentence Boundary.  It is a Unicode property
58 to aid in parsing natural language sentences.
59 See L<perlrebackslash/\b{}, \b, \B{}, \B> for details.
60
61 =head2 C<no re> covers more and is lexical
62
63 Previously running C<no re> would 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.
66
67 =head2 Non-Capturing Regular Expression Flag
68
69 Regular expressions now support a C</n> flag that disables capturing
70 and filling in C<$1>, C<$2>, etc inside of groups:
71
72   "hello" =~ /(hi|hello)/n; # $1 is not set
73
74 This is equivalent to putting C<?:> at the beginning of every capturing group.
75
76 See L<perlre/"n"> for more information.
77
78 =head2 C<use re 'strict'>
79
80 This applies stricter syntax rules to regular expression patterns
81 compiled within its scope. 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>.
88
89 =head2 Unicode 7.0 (with correction) is now supported
90
91 For details on what is in this release, see
92 L<http://www.unicode.org/versions/Unicode7.0.0/>.
93 The version of Unicode 7.0 that comes with Perl includes
94 a correction dealing with glyph shaping in Arabic
95 (see L<http://www.unicode.org/errata/#current_errata>).
96
97
98 =head2 S<C<use locale>> can restrict which locale categories are affected
99
100 It is now possible to pass a parameter to S<C<use locale>> to specify
101 a subset of locale categories to be locale-aware, with the remaining
102 ones unaffected.  See L<perllocale/The "use locale" pragma> for details.
103
104 =head2 Perl now supports POSIX 2008 locale currency additions
105
106 On platforms that are able to handle POSIX.1-2008, the
107 hash returned by
108 L<C<POSIX::localeconv()>|perllocale/The localeconv function>
109 includes the international currency fields added by that version of the
110 POSIX standard.  These are
111 C<int_n_cs_precedes>,
112 C<int_n_sep_by_space>,
113 C<int_n_sign_posn>,
114 C<int_p_cs_precedes>,
115 C<int_p_sep_by_space>,
116 and
117 C<int_p_sign_posn>.
118
119 =head2 Better heuristics on older platforms for determining locale UTF-8ness
120
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.
124
125 =head2 Aliasing via reference
126
127 Variables and subroutines can now be aliased by assigning to a reference:
128
129     \$c = \$d;
130     \&x = \&y;
131
132 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:
135
136     foreach \%hash (@array_of_hash_refs) { ... }
137
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.
141
142 See L<perlref/Assigning to References>
143
144 =head2 C<prototype> with no arguments
145
146 C<prototype()> with no arguments now infers C<$_>.
147 L<[perl #123514]|https://rt.perl.org/Ticket/Display.html?id=123514>.
148
149 =head2 New C<:const> subroutine attribute
150
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>.
156
157 =head2 C<fileno> now works on directory handles
158
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.
165
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.
168
169 =head2 List form of pipe open implemented for Win32
170
171 The list form of pipe:
172
173   open my $fh, "-|", "program", @arguments;
174
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
177 as a list.
178
179 =head2 C<close> now sets C<$!>
180
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.
186
187 =head2 Assignment to list repetition
188
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()>>.
192
193 =head2 Infinity and NaN (not-a-number) handling improved
194
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>.
199
200 See also the L<POSIX> enhancements.
201
202 =head2 Floating point parsing has been improved
203
204 Parsing and printing of floating point values has been improved.
205
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
209 details.
210
211 =head2 Packing infinity or not-a-number into a character is now fatal
212
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.
217
218 But now, all such actions (C<< pack >>, C<< chr >>, and C<< print '%c' >>)
219 result in a fatal error.
220
221 =head2 Experimental C Backtrace API
222
223 Perl now supports (via a C level API) retrieving
224 the C level backtrace (similar to what symbolic debuggers like gdb do).
225
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).
229
230 The supported platforms are Linux and OS X (some *BSD might work at
231 least partly, but they have not yet been tested).
232
233 The feature needs to be enabled with C<Configure -Dusecbacktrace>.
234
235 See L<perlhacktips/"C backtrace"> for more information.
236
237 =head1 Security
238
239 =head2 Perl is now compiled with -fstack-protector-strong if available
240
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.
244
245 =head2 The L<Safe> module could allow outside packages to be replaced
246
247 Critical bugfix: outside packages could be replaced.  L<Safe> has
248 been patched to 2.38 to address this.
249
250 =head2 Perl is now always compiled with -D_FORTIFY_SOURCE=2 if available
251
252 The 'code hardening' option called C<_FORTIFY_SOURCE>, available in
253 gcc 4.*, is now always used for compiling Perl, if available.
254
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.
259
260 =head1 Incompatible Changes
261
262 =head2 Subroutine signatures moved before attributes
263
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
268 list (if any).
269
270 =head2 C<&> and C<\&> prototypes accepts only subs
271
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>.
278
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>.
283
284 =head2 C<use encoding> is now lexical
285
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.
289
290 =head2 List slices returning empty lists
291
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>.
297
298 =head2 C<\N{}> with a sequence of multiple spaces is now a fatal error
299
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.
302
303 =head2 S<C<use UNIVERSAL '...'>> is now a fatal error
304
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
307 allowed.
308
309 =head2 In double-quotish C<\cI<X>>, I<X> must now be a printable ASCII character
310
311 In prior releases, failure to do this raised a deprecation warning.
312
313 =head2 Splitting the tokens C<(?> and C<(*> in regular expressions is now a fatal compilation error.
314
315 These had been deprecated since v5.18.
316
317 =head2 C<qr/foo/x> now ignores all Unicode pattern white space
318
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
323 recognized are
324
325     U+0085 NEXT LINE
326     U+200E LEFT-TO-RIGHT MARK
327     U+200F RIGHT-TO-LEFT MARK
328     U+2028 LINE SEPARATOR
329     U+2029 PARAGRAPH SEPARATOR
330
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.
334
335 =head2 Comment lines within S<C<(?[ ])>> are now ended only by a C<\n>
336
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.
344
345 =head2 C<(?[...])> operators now follow standard Perl precedence
346
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>.
353
354 =head2 Omitting C<%> and C<@> on hash and array names is no longer permitted
355
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.
359
360 =head2 C<"$!"> text is now in English outside the scope of C<use locale>
361
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.
368
369 =head2 C<"$!"> text will be returned in UTF-8 when appropriate
370
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>.
382
383 =head2 Support for C<?PATTERN?> without explicit operator has been removed
384
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.
390
391 =head2 C<defined(@array)> and C<defined(%hash)> are now fatal errors
392
393 These have been deprecated since v5.6.1 and have raised deprecation
394 warnings since v5.16.
395
396 =head2 Using a hash or an array as a reference are now fatal errors
397
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.
401
402 =head2 Changes to the C<*> prototype
403
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.
407
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:
410
411     sub splat(*) { ... }
412     sub foo { ... }
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')
417
418 =head1 Deprecations
419
420 =head2 Setting C<${^ENCODING}> to anything but C<undef>
421
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.
427
428 =head2 Use of non-graphic characters in single-character variable names
429
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.
438
439 =head2 Inlining of C<sub () { $var }> with observable side-effects
440
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 ()>>).)
447
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
451 constant.
452
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.
455
456     sub make_constant {
457         my $var = shift;
458         return sub () { $var }; # fine
459     }
460
461     sub make_constant_deprecated {
462         my $var;
463         $var = shift;
464         return sub () { $var }; # deprecated
465     }
466
467     sub make_constant_deprecated2 {
468         my $var = shift;
469         log_that_value($var); # could modify $var
470         return sub () { $var }; # deprecated
471     }
472
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.
476
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.
483
484 =head2 Use of multiple /x regexp modifiers
485
486 It is now deprecated to say something like any of the following:
487
488     qr/foo/xx;
489     /(?xax:foo)/;
490     use re qw(/amxx);
491
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:
497 C<[...]>).
498
499 =head2 Using a NO-BREAK space in a character alias for C<\N{...}> is now deprecated
500
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>.
504
505 =head2 A literal C<"{"> should now be escaped in a pattern
506
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.
513
514 =head2 Making all warnings fatal is discouraged
515
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.
519
520 =head1 Performance Enhancements
521
522 =over 4
523
524 =item *
525
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
529 run time.
530
531 =item *
532
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.
536
537 =item *
538
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.)
545
546 =item *
547
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.
551
552 =item *
553
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.
556
557 =item *
558
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
561 used to sometimes.
562
563 =item *
564
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.
568
569 =item *
570
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.
574
575 =item *
576
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.
581
582 =item *
583
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.
589
590 =item *
591
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
594 optimized away.
595
596 =item *
597
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.
601
602 =item *
603
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>
609
610 =item *
611
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>
614
615 =item *
616
617 Hash lookups where the key is a constant are faster.
618
619 =item *
620
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>
624
625 =item *
626
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
634 typeglobs.
635 L<[perl #120441]|https://rt.perl.org/Ticket/Display.html?id=120441>
636
637 =item *
638
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
642 platforms.
643
644 =item *
645
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.
649
650 =back
651
652 =head1 Modules and Pragmata
653
654 Many of the libraries distributed with perl have been upgraded since v5.20.0.
655 For a complete list of changes, run:
656
657   corelist --diff 5.20.0 5.22.0
658
659 You can substitute your favorite version in place of 5.20.0, too.
660
661 =head2 Removed Modules and Pragmata
662
663 The following modules (and associated modules) have been removed from the core
664 perl distribution:
665
666 =over 4
667
668 =item *
669
670 L<CGI>
671
672 =item *
673
674 L<Module::Build>
675
676 =back
677
678 =head1 Documentation
679
680 =head2 New Documentation
681
682 =head3 L<perlunicook>
683
684 This document, by Tom Christiansen, provides examples of handling Unicode in
685 Perl.
686
687 =head2 Changes to Existing Documentation
688
689 =head3 L<perlaix>
690
691 =over 4
692
693 =item *
694
695 A note on long doubles has been added.
696
697 =back
698
699
700 =head3 L<perlapi>
701
702 =over 4
703
704 =item *
705
706 Note that C<SvSetSV> doesn't do set magic.
707
708 =item *
709
710 C<sv_usepvn_flags> - fix documentation to mention the use of C<Newx> instead of
711 C<malloc>.
712
713 L<[perl #121869]|https://rt.perl.org/Ticket/Display.html?id=121869>
714
715 =item *
716
717 Clarify where C<NUL> may be embedded or is required to terminate a string.
718
719 =item *
720
721 Some documentation that was previously missing due to formatting errors is
722 now included.
723
724 =item *
725
726 Entries are now organized into groups rather than by the file where they
727 are found.
728
729 =item *
730
731 Alphabetical sorting of entries is now done consistently (automatically
732 by the POD generator) to make entries easier to find when scanning.
733
734 =back
735
736 =head3 L<perldata>
737
738 =over 4
739
740 =item *
741
742 The syntax of single-character variable names has been brought
743 up-to-date and more fully explained.
744
745 =item *
746
747 Hexadecimal floating point numbers are described, as are infinity and
748 NaN.
749
750 =back
751
752 =head3 L<perlebcdic>
753
754 =over 4
755
756 =item *
757
758 This document has been significantly updated in the light of recent
759 improvements to EBCDIC support.
760
761 =back
762
763 =head3 L<perlfilter>
764
765 =over 4
766
767 =item *
768
769 Added a L<LIMITATIONS|perlfilter/LIMITATIONS> section.
770
771 =back
772
773
774 =head3 L<perlfunc>
775
776 =over 4
777
778 =item *
779
780 Mention that C<study()> is currently a no-op.
781
782 =item *
783
784 Calling C<delete> or C<exists> on array values is now described as "strongly
785 discouraged" rather than "deprecated".
786
787 =item *
788
789 Improve documentation of C<< our >>.
790
791 =item *
792
793 C<-l> now notes that it will return false if symlinks aren't supported by the
794 file system.
795
796 L<[perl #121523]|https://rt.perl.org/Ticket/Display.html?id=121523>
797
798 =item *
799
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.
803
804 This has also been noted in L<perlport>.
805
806 L<[perl #122046]|https://rt.perl.org/Ticket/Display.html?id=122046>
807
808 =back
809
810 =head3 L<perlguts>
811
812 =over 4
813
814 =item *
815
816 The OOK example has been updated to account for COW changes and a change in the
817 storage of the offset.
818
819 =item *
820
821 Details on C level symbols and libperl.t added.
822
823 =item *
824
825 Information on Unicode handling has been added
826
827 =item *
828
829 Information on EBCDIC handling has been added
830
831 =back
832
833 =head3 L<perlhack>
834
835 =over 4
836
837 =item *
838
839 A note has been added about running on platforms with non-ASCII
840 character sets
841
842 =item *
843
844 A note has been added about performance testing
845
846 =back
847
848 =head3 L<perlhacktips>
849
850 =over 4
851
852 =item *
853
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.
857
858 =item *
859
860 Replacements for C<tmpfile>, C<atoi>, C<strtol>, and C<strtoul> are now
861 recommended.
862
863 =item *
864
865 Updated documentation for the C<test.valgrind> C<make> target.
866
867 L<[perl #121431]|https://rt.perl.org/Ticket/Display.html?id=121431>
868
869 =item *
870
871 Information is given about writing test files portably to non-ASCII
872 platforms.
873
874 =item *
875
876 A note has been added about how to get a C language stack backtrace.
877
878 =back
879
880 =head3 L<perlhpux>
881
882 =over 4
883
884 =item *
885
886 Note that the message "Redeclaration of "sendpath" with a different
887 storage class specifier" is harmless.
888
889 =back
890
891 =head3 L<perllocale>
892
893 =over 4
894
895 =item *
896
897 Updated for the enhancements in v5.22, along with some clarifications.
898
899 =back
900
901 =head3 L<perlmodstyle>
902
903 =over 4
904
905 =item *
906
907 Instead of pointing to the module list, we are now pointing to
908 L<PrePAN|http://prepan.org/>.
909
910 =back
911
912 =head3 L<perlop>
913
914 =over 4
915
916 =item *
917
918 Updated for the enhancements in v5.22, along with some clarifications.
919
920 =back
921
922 =head3 L<perlpodspec>
923
924 =over 4
925
926 =item *
927
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).
931
932 =back
933
934 =head3 L<perlpolicy>
935
936 =over 4
937
938 =item *
939
940 We now have a code of conduct for the I<< p5p >> mailing list, as documented
941 in L<< perlpolicy/STANDARDS OF CONDUCT >>.
942
943 =item *
944
945 The conditions for marking an experimental feature as non-experimental are now
946 set out.
947
948 =item *
949
950 Clarification has been made as to what sorts of changes are permissible in
951 maintenance releases.
952
953 =back
954
955 =head3 L<perlport>
956
957 =over 4
958
959 =item *
960
961 Out-of-date VMS-specific information has been fixed and/or simplified.
962
963 =item *
964
965 Notes about EBCDIC have been added.
966
967 =back
968
969 =head3 L<perlre>
970
971 =over 4
972
973 =item *
974
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
978 by this modifier.
979
980 =item *
981
982 The new C</n> modifier is described.
983
984 =item *
985
986 A note has been added on how to make bracketed character class ranges
987 portable to non-ASCII machines.
988
989 =back
990
991 =head3 L<perlrebackslash>
992
993 =over 4
994
995 =item *
996
997 Added documentation of C<\b{sb}>, C<\b{wb}>, C<\b{gcb}>, and C<\b{g}>.
998
999 =back
1000
1001 =head3 L<perlrecharclass>
1002
1003 =over 4
1004
1005 =item *
1006
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.
1013
1014 =item *
1015
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>).
1018
1019 =back
1020
1021 =head3 L<perlref>
1022
1023 =over 4
1024
1025 =item *
1026
1027 A new section has been added
1028 L<Assigning to References|perlref/Assigning to References>
1029
1030 =back
1031
1032 =head3 L<perlsec>
1033
1034 =over 4
1035
1036 =item *
1037
1038 Comments added on algorithmic complexity and tied hashes.
1039
1040 =back
1041
1042 =head3 L<perlsyn>
1043
1044 =over 4
1045
1046 =item *
1047
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>
1050
1051 =item *
1052
1053 The empty conditional in C<< for >> and C<< while >> is now documented
1054 in L<< perlsyn >>.
1055
1056 =back
1057
1058 =head3 L<perlunicode>
1059
1060 =over 4
1061
1062 =item *
1063
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>.
1069
1070 =back
1071
1072 =head3 L<perluniintro>
1073
1074 =over 4
1075
1076 =item *
1077
1078 Advice for how to make sure your strings and regular expression patterns are
1079 interpreted as Unicode has been updated.
1080
1081 =back
1082
1083 =head3 L<perlvar>
1084
1085 =over 4
1086
1087 =item *
1088
1089 C<$]> is no longer listed as being deprecated.  Instead, discussion has
1090 been added on the advantages and disadvantages of using it versus
1091 C<$^V>.
1092
1093 =item *
1094
1095 C<${^ENCODING}> is now marked as deprecated.
1096
1097 =item *
1098
1099 The entry for C<%^H> has been clarified to indicate it can only handle
1100 simple values.
1101
1102 =back
1103
1104 =head3 L<perlvms>
1105
1106 =over 4
1107
1108 =item *
1109
1110 Out-of-date and/or incorrect material has been removed.
1111
1112 =item *
1113
1114 Updated documentation on environment and shell interaction in VMS.
1115
1116 =back
1117
1118 =head3 L<perlxs>
1119
1120 =over 4
1121
1122 =item *
1123
1124 Added a discussion of locale issues in XS code.
1125
1126 =back
1127
1128 =head1 Diagnostics
1129
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>.
1133
1134 =head2 New Diagnostics
1135
1136 =head3 New Errors
1137
1138 =over 4
1139
1140 =item *
1141
1142 L<Bad symbol for scalar|perldiag/"Bad symbol for scalar">
1143
1144 (P) An internal request asked to add a scalar entry to something that
1145 wasn't a symbol table entry.
1146
1147 =item *
1148
1149 L<Can't use a hash as a reference|perldiag/"Can't use a hash as a reference">
1150
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.
1154
1155 =item *
1156
1157 L<Can't use an array as a reference|perldiag/"Can't use an array as a reference">
1158
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.
1162
1163 =item *
1164
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()?)">
1166
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.
1170
1171 =item *
1172
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()?)">
1174
1175 (F) C<defined()> is not usually right on hashes.
1176
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.
1182
1183 If a check for non-empty is what you wanted then just put it in boolean
1184 context (see L<perldata/Scalar values>):
1185
1186     if (%hash) {
1187        # not empty
1188     }
1189
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
1193 it's loaded, etc.
1194
1195 =item *
1196
1197 L<Cannot chr %f|perldiag/"Cannot chr %f">
1198
1199 (F) You passed an invalid number (like an infinity or not-a-number) to
1200 C<chr>.
1201
1202 =item *
1203
1204 L<Cannot compress %f in pack|perldiag/"Cannot compress %f in pack">
1205
1206 (F) You tried converting an infinity or not-a-number to an unsigned
1207 character, which makes no sense.
1208
1209 =item *
1210
1211 L<Cannot pack %f with '%c'|perldiag/"Cannot pack %f with '%c'">
1212
1213 (F) You tried converting an infinity or not-a-number to a character,
1214 which makes no sense.
1215
1216 =item *
1217
1218 L<Cannot print %f with '%c'|perldiag/"Cannot printf %f with '%c'">
1219
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?
1222
1223 =item *
1224
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">
1226
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>.
1232
1233 =item *
1234
1235 L<charnames alias definitions may not contain trailing white-space|perldiag/"charnames alias definitions may not contain trailing white-space">
1236
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>.
1242
1243 =item *
1244
1245 L<:const is not permitted on named subroutines|perldiag/":const is not permitted on named subroutines">
1246
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.
1250
1251 =item *
1252
1253 L<Hexadecimal float: internal error|perldiag/"Hexadecimal float: internal error">
1254
1255 (F) Something went horribly bad in hexadecimal float handling.
1256
1257 =item *
1258
1259 L<Hexadecimal float: unsupported long double format|perldiag/"Hexadecimal float: unsupported long double format">
1260
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.
1264
1265 =item *
1266
1267 L<Illegal suidscript|perldiag/"Illegal suidscript">
1268
1269 (F) The script run under suidperl was somehow illegal.
1270
1271 =item *
1272
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/">
1274
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.
1279
1280 =item *
1281
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/">
1283
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.
1288
1289 =item *
1290
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/">
1292
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>.
1297
1298 =back
1299
1300 =head3 New Warnings
1301
1302 =over 4
1303
1304 =item *
1305
1306 L<\C is deprecated in regex|perldiag/"\C is deprecated in regex; marked by <-- HERE in m/%s/">
1307
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
1312 strings.
1313
1314 =item *
1315
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/">
1317
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>.
1321
1322 =item *
1323
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>>
1325
1326 (W regexp) (only under C<S<use re 'strict'>> or within C<(?[...])>)
1327
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
1330 sets.
1331
1332 =item *
1333
1334 L<Argument "%s" treated as 0 in increment (++)|perldiag/"Argument "%s" treated
1335 as 0 in increment (++)">
1336
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.
1340
1341 =item *
1342
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/">
1344
1345 (W regexp) (only under C<S<use re 'strict'>> or within C<(?[...])>)
1346
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.
1357
1358 =item *
1359
1360 L<:const is experimental|perldiag/":const is experimental">
1361
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.
1366
1367 =item *
1368
1369 L<gmtime(%f) failed|perldiag/"gmtime(%f) failed">
1370
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>.
1373
1374 =item *
1375
1376 L<Hexadecimal float: exponent overflow|perldiag/"Hexadecimal float: exponent overflow">
1377
1378 (W overflow) The hexadecimal floating point has larger exponent
1379 than the floating point supports.
1380
1381 =item *
1382
1383 L<Hexadecimal float: exponent underflow|perldiag/"Hexadecimal float: exponent underflow">
1384
1385 (W overflow) The hexadecimal floating point has smaller exponent
1386 than the floating point supports.
1387
1388 =item *
1389
1390 L<Hexadecimal float: mantissa overflow|perldiag/"Hexadecimal float: mantissa overflow">
1391
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.
1395
1396 =item *
1397
1398 L<Hexadecimal float: precision loss|perldiag/"Hexadecimal float: precision loss">
1399
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).
1404
1405 =item *
1406
1407 L<localtime(%f) failed|perldiag/"localtime(%f) failed">
1408
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>.
1411
1412 =item *
1413
1414 L<Negative repeat count does nothing|perldiag/"Negative repeat count does nothing">
1415
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.
1419
1420 =item *
1421
1422 L<NO-BREAK SPACE in a charnames alias definition is deprecated|perldiag/"NO-BREAK SPACE in a charnames alias definition is deprecated">
1423
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>.
1429
1430 =item *
1431
1432 L<Non-finite repeat count does nothing|perldiag/"Non-finite repeat count does nothing">
1433
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.
1437
1438 =item *
1439
1440 L<PerlIO layer ':win32' is experimental|perldiag/"PerlIO layer ':win32' is experimental">
1441
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:
1445
1446     no warnings "experimental::win32_perlio";
1447
1448 =item *
1449
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>">
1451
1452 (W regexp) (only under C<S<use re 'strict'>> or within C<(?[...])>)
1453
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
1459 reader.
1460
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
1468
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.
1477
1478 =item *
1479
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/">
1481
1482 (W regexp) (only under C<S<use re 'strict'>> or within C<(?[...])>)
1483
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.
1488
1489 =item *
1490
1491 L<Redundant argument in %s|perldiag/Redundant argument in %s>
1492
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>.
1498
1499 The warnings category C<< redundant >> is new. See also
1500 L<[perl #121025]|https://rt.perl.org/Ticket/Display.html?id=121025>.
1501
1502 =item *
1503
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">
1505
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
1511 be ignored.
1512
1513 =item *
1514
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>" >>
1516
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.
1523
1524 =item *
1525
1526 L<The bitwise feature is experimental|perldiag/"The bitwise feature is experimental">
1527
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:
1533
1534     no warnings "experimental::bitwise";
1535     use feature "bitwise";
1536     $x |.= $y;
1537
1538 =item *
1539
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/">
1541
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
1547 example,
1548
1549     qr{abc\{def\}ghi}
1550
1551 =item *
1552
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">
1554
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.
1558
1559 =item *
1560
1561 L<Useless use of attribute "const"|perldiag/Useless use of attribute "const">
1562
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.
1567
1568 =item *
1569
1570 L<E<quot>use re 'strict'E<quot> is experimental|perldiag/"use re 'strict'" is experimental>
1571
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.
1578
1579 =item *
1580
1581 L<Warning: unable to close filehandle properly: %s|perldiag/"Warning: unable to close filehandle properly: %s">
1582
1583 L<Warning: unable to close filehandle %s properly: %s|perldiag/"Warning: unable to close filehandle %s properly: %s">
1584
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.
1588
1589     {
1590         open my $fh, '>', $file  or die "open: '$file': $!\n";
1591         print $fh, $data  or die;
1592     } # implicit close here
1593
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
1596 dangerous.
1597
1598 So perl now warns in such situations.
1599
1600 =item *
1601
1602 L<Wide character (U+%X) in %s|perldiag/"Wide character (U+%X) in %s">
1603
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.
1611
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).
1615
1616 =item *
1617
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:
1621
1622 L<Useless use of E<sol>d modifier in transliteration operator|perldiag/"Useless use of /d modifier in transliteration operator">
1623
1624 L<Replacement list is longer than search list|perldiag/Replacement list is longer than search list>
1625
1626 =item *
1627
1628 A new C<locale> warning category has been created, with the following warning
1629 messages currently in it:
1630
1631 =over 4
1632
1633 =item *
1634
1635 L<Locale '%s' may not work well.%s|perldiag/Locale '%s' may not work well.%s>
1636
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.
1640
1641 =item *
1642
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".>
1644
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.
1649
1650 =back
1651
1652 =item *
1653
1654 L<Missing or undefined argument to require|perldiag/Missing or undefined argument to require>
1655
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>.
1659
1660 Formerly, C<require> with no argument or C<undef> warned about a Null filename.
1661
1662 =back
1663
1664 =head2 Changes to Existing Diagnostics
1665
1666 =over 4
1667
1668 =item *
1669
1670 <> should be quotes
1671
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.
1675
1676 =item *
1677
1678 L<Argument "%s" isn't numeric%s|perldiag/"Argument "%s" isn't numeric%s">
1679
1680 The L<perldiag> entry for this warning has added this clarifying note:
1681
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.
1686
1687 =item *
1688
1689 L<Global symbol "%s" requires explicit package name|perldiag/"Global symbol "%s" requires explicit package name (did you forget to declare "my %s"?)">
1690
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>
1694
1695 =item *
1696
1697 '"my" variable &foo::bar can't be in a package' has been reworded to say
1698 'subroutine' instead of 'variable'.
1699
1700 =item *
1701
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/" >>>
1706
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>).
1710
1711 =item *
1712
1713 L<panic: frexp|perldiag/"panic: frexp: %f">
1714
1715 This message has had ': C<%f>' appended to it, to show what the offending
1716 floating point number is.
1717
1718 =item *
1719
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">.
1722
1723 =item *
1724
1725 L<Unsuccessful %s on filename containing newline|perldiag/"Unsuccessful %s on filename containing newline">
1726
1727 This warning is now only produced when the newline is at the end of
1728 the filename.
1729
1730 =item *
1731
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.
1734
1735 =item *
1736
1737 L<Variable length lookbehind not implemented in regex mE<sol>%sE<sol>|perldiag/"Variable length lookbehind not implemented in regex m/%s/">
1738
1739 The L<perldiag> entry for this warning has had information about Unicode
1740 behaviour added.
1741
1742 =back
1743
1744 =head2 Diagnostic Removals
1745
1746 =over
1747
1748 =item *
1749
1750 "Ambiguous use of -foo resolved as -&foo()"
1751
1752 There is actually no ambiguity here, and this impedes the use of negated
1753 constants; e.g., C<-Inf>.
1754
1755 =item *
1756
1757 "Constant is not a FOO reference"
1758
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>
1763
1764 =back
1765
1766 =head1 Utility Changes
1767
1768 =head2 F<find2perl>, F<s2p> and F<a2p> removal
1769
1770 =over 4
1771
1772 =item *
1773
1774 The F<x2p/> directory has been removed from the Perl core.
1775
1776 This removes find2perl, s2p and a2p. They have all been released to CPAN as
1777 separate distributions (App::find2perl, App::s2p, App::a2p).
1778
1779 =back
1780
1781 =head2 L<h2ph>
1782
1783 =over 4
1784
1785 =item *
1786
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>.
1790
1791 =back
1792
1793 =head2 L<encguess>
1794
1795 =over 4
1796
1797 =item *
1798
1799 No longer depends on non-core modules.
1800
1801 =back
1802
1803 =head1 Configuration and Compilation
1804
1805 =over 4
1806
1807 =item *
1808
1809 F<Configure> now checks for C<lrintl()>, C<lroundl()>, C<llrintl()>, and
1810 C<llroundl()>.
1811
1812 =item *
1813
1814 F<Configure> with C<-Dmksymlinks> should now be faster.
1815 L<[perl #122002]|https://rt.perl.org/Ticket/Display.html?id=122002>.
1816
1817 =item *
1818
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
1822 threaded perl.
1823
1824 =item *
1825
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.
1830
1831 =item *
1832
1833 MurmurHash64A and MurmurHash64B can now be configured as the internal hash
1834 function.
1835
1836 =item *
1837
1838 C<make test.valgrind> now supports parallel testing.
1839
1840 For example:
1841
1842     TEST_JOBS=9 make test.valgrind
1843
1844 See L<perlhacktips/valgrind> for more information.
1845
1846 L<[perl #121431]|https://rt.perl.org/Ticket/Display.html?id=121431>
1847
1848 =item *
1849
1850 The MAD (Misc Attribute Decoration) build option has been removed
1851
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.
1855
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.
1858
1859 =item *
1860
1861 A new compilation flag, C<< -DPERL_OP_PARENT >> is available. For details,
1862 see the discussion below at L<< /Internal Changes >>.
1863
1864 =item *
1865
1866 Pathtools no longer tries to load XS on miniperl. This speeds up building perl
1867 slightly.
1868
1869 =back
1870
1871 =head1 Testing
1872
1873 =over 4
1874
1875 =item *
1876
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.
1881
1882 =item *
1883
1884 Tests for performance issues have been added in the file F<t/perf/taint.t>.
1885
1886 =item *
1887
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() >>.
1892
1893 =item *
1894
1895 C<< test.pl >> now allows C<< plan skip_all => $reason >>, to make it
1896 more compatible with C<< Test::More >>.
1897
1898 =item *
1899
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>.
1902
1903 =back
1904
1905 =head1 Platform Support
1906
1907 =head2 Regained Platforms
1908
1909 =over 4
1910
1911 =item IRIX and Tru64 platforms are working again.
1912
1913 (Some C<make test> failures remain.)
1914
1915 =item z/OS running EBCDIC Code Page 1047
1916
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
1925 version.
1926
1927 =back
1928
1929 =head2 Discontinued Platforms
1930
1931 =over 4
1932
1933 =item NeXTSTEP/OPENSTEP
1934
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.
1939
1940 =back
1941
1942 =head2 Platform-Specific Notes
1943
1944 =over 4
1945
1946 =item EBCDIC
1947
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>.
1956
1957 =item HP-UX
1958
1959 The archname now distinguishes use64bitint from use64bitall.
1960
1961 =item Android
1962
1963 Build support has been improved for cross-compiling in general and for
1964 Android in particular.
1965
1966 =item VMS
1967
1968 =over 4
1969
1970 =item *
1971
1972 When spawning a subprocess without waiting, the return value is now
1973 the correct PID.
1974
1975 =item *
1976
1977 Fix a prototype so linking doesn't fail under the VMS C++ compiler.
1978
1979 =item *
1980
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.
1984
1985 =back
1986
1987 =item Win32
1988
1989 =over 4
1990
1991 =item *
1992
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>
1996
1997 =item *
1998
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
2001 tests fail.
2002 L<[perl #123394]|https://rt.perl.org/Ticket/Display.html?id=123394>
2003
2004 =item *
2005
2006 Perl can now be built in C++ mode on Windows by setting the makefile macro
2007 C<USE_CPLUSPLUS> to the value "define".
2008
2009 =item *
2010
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>
2014
2015 =item *
2016
2017 New C<DebugSymbols> and C<DebugFull> configuration options added to
2018 Windows makefiles.
2019
2020 =item *
2021
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.
2025
2026 =item *
2027
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.
2031
2032 =item *
2033
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>.
2036
2037 =item *
2038
2039 Intel C builds are now always built with C99 mode on.
2040
2041 =item *
2042
2043 C<%I64d> is now being used instead of C<%lld> for MinGW.
2044
2045 =item *
2046
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>
2051
2052 =item *
2053
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.
2057
2058 =back
2059
2060 =item OpenBSD
2061
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.
2067
2068 L<[perl #122000]|https://rt.perl.org/Ticket/Display.html?id=122000>.
2069
2070 =item Solaris
2071
2072 =over 4
2073
2074 =item *
2075
2076 We now look for the Sun Studio compiler in both F</opt/solstudio*> and
2077 F</opt/solarisstudio*>.
2078
2079 =item *
2080
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>
2085
2086 =item *
2087
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.
2090
2091 =back
2092
2093 =back
2094
2095 =head1 Internal Changes
2096
2097 =over 4
2098
2099 =item *
2100
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.
2106
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>.
2111
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>.
2115
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
2118 like this:
2119
2120     for (; kid->op_sibling; kid = kid->op_sibling) { ... }
2121
2122 should now be written as:
2123
2124     for (; OpHAS_SIBLING(kid); kid = OpSIBLING(kid)) { ... }
2125
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.
2132
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
2141 appropriate).
2142
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.
2150
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
2154 5.21.2 were:
2155
2156 =over 4
2157
2158 =item *
2159
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.
2163
2164 =item *
2165
2166 The C<op_lastsib> field has been renamed C<op_moresib>, and its meaning
2167 inverted.
2168
2169 =item *
2170
2171 The macro C<OpSIBLING_set> has been removed, and has been superseded by
2172 C<OpMORESIB_set> et al.
2173
2174 =item *
2175
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
2178 chain
2179
2180 =back
2181
2182 =item *
2183
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>.
2186
2187 =item *
2188
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.
2191
2192 =item *
2193
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.
2196
2197 =item *
2198
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.
2202
2203 =item *
2204
2205 The C<newDEFSVOP()>, C<block_start()>, C<block_end()> and C<intro_my()>
2206 functions have been added to the API.
2207
2208 =item *
2209
2210 The internal C<convert> function in F<op.c> has been renamed
2211 C<op_convert_list> and added to the API.
2212
2213 =item *
2214
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
2217 the SV or not.
2218 L<[perl #123103]|https://rt.perl.org/Ticket/Display.html?id=123103>.
2219
2220 =item *
2221
2222 Accessing L<perlapi/CvPADLIST> on an XSUB is now forbidden.
2223
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.
2227
2228 =item *
2229
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).
2236
2237 =item *
2238
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
2243 variables.
2244 L<[perl #122445]|https://rt.perl.org/Ticket/Display.html?id=122445>.
2245
2246 =item *
2247
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.
2251
2252 =item *
2253
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.
2257
2258 =item *
2259
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.
2263
2264 =item *
2265
2266 The C<< SvFAKE >> bit (unused on HVs) got informally reserved by
2267 David Mitchell for future work on vtables.
2268
2269 =item *
2270
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.)
2275
2276 =item *
2277
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.
2281
2282 C<< OP_METHOD >> and C<< OP_METHOD_NAMED >> have changed from being
2283 C<< UNOP/SVOP >> to being C<< METHOP >>.
2284
2285 =item *
2286
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
2289 diagnostics.
2290
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>
2293
2294 =item *
2295
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>
2304
2305 =item *
2306
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>
2313
2314 =item *
2315
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.
2321
2322 =item *
2323
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
2330 C<op_private>.
2331
2332 =item *
2333
2334 The deprecated variable C<PL_sv_objcount> has been removed.
2335
2336 =item *
2337
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>.
2350
2351 =item *
2352
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.
2356
2357 =item *
2358
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>.
2363
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.
2366
2367 =item *
2368
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>.
2372
2373 =item *
2374
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
2378 removed.
2379
2380 =item *
2381
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).
2387
2388 =item *
2389
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>.
2398
2399 =back
2400
2401 =head1 Selected Bug Fixes
2402
2403 =over 4
2404
2405 =item *
2406
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>
2412
2413 =item *
2414
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>
2418
2419 =item *
2420
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>
2423
2424 =item *
2425
2426 A possible crashing/looping bug related to compiling lexical subs has been
2427 fixed.
2428 L<[perl #124099]|https://rt.perl.org/Ticket/Display.html?id=124099>
2429
2430 =item *
2431
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>
2435
2436 =item *
2437
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>
2441
2442 =item *
2443
2444 Various crashes due to the parser getting confused by syntax errors have been
2445 fixed.
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>
2450
2451 =item *
2452
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>
2455
2456 =item *
2457
2458 C<my $x : attr> syntax inside various list operators no longer fails
2459 assertions.
2460 L<[perl #123817]|https://rt.perl.org/Ticket/Display.html?id=123817>
2461
2462 =item *
2463
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>
2468
2469 =item *
2470
2471 C<*bar::=*foo::=*glob_with_hash> has been crashing since Perl 5.14, but no
2472 longer does.
2473 L<[perl #123847]|https://rt.perl.org/Ticket/Display.html?id=123847>
2474
2475 =item *
2476
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>
2481
2482 =item *
2483
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>
2487
2488 =item *
2489
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>.
2494
2495 =item *
2496
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
2501 reference.
2502 L<[perl #123218]|https://rt.perl.org/Ticket/Display.html?id=123218>.
2503
2504 =item *
2505
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.
2511
2512 =item *
2513
2514 Perl 5.14.0 introduced a bug whereby S<C<eval { LABEL: }>> would crash.  This
2515 has been fixed.
2516 L<[perl #123652]|https://rt.perl.org/Ticket/Display.html?id=123652>.
2517
2518 =item *
2519
2520 Various crashes due to the parser getting confused by syntax errors have
2521 been fixed.
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>.
2526
2527 =item *
2528
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
2532 now disallowed.
2533 L<[perl #123712]|https://rt.perl.org/Ticket/Display.html?id=123712>.
2534
2535 =item *
2536
2537 Fix argument underflow for C<pack>.
2538 L<[perl #123874]|https://rt.perl.org/Ticket/Display.html?id=123874>.
2539
2540 =item *
2541
2542 Fix handling of non-strict C<\x{}>. Now C<\x{}> is equivalent to C<\x{0}>
2543 instead of faulting.
2544
2545 =item *
2546
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>.
2549
2550 =item *
2551
2552 The following no longer causes a SEGV: C<qr{x+(y(?0))*}>.
2553
2554 =item *
2555
2556 Fixed infinite loop in parsing backrefs in regexp patterns.
2557
2558 =item *
2559
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.
2563
2564 =item *
2565
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>.
2572
2573 =item *
2574
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>.
2579
2580 =item *
2581
2582 C<gmtime> no longer crashes with not-a-number values.
2583 L<[perl #123495]|https://rt.perl.org/Ticket/Display.html?id=123495>.
2584
2585 =item *
2586
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.
2590
2591 =item *
2592
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>.
2597
2598 =item *
2599
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.
2603
2604 =item *
2605
2606 Some cases of nested lexical state subs inside anonymous subs could cause
2607 'Bizarre copy' errors or possibly even crashes.
2608
2609 =item *
2610
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>.
2615
2616 =item *
2617
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>.
2622
2623 =item *
2624
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
2629 panic.
2630 L<[perl #123554]|https://rt.perl.org/Ticket/Display.html?id=123554>.
2631
2632 =item *
2633
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>.
2639
2640 =item *
2641
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>.
2645
2646 =item *
2647
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>.
2651
2652 =item *
2653
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>.
2657
2658 =item *
2659
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>.
2664
2665 =item *
2666
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.
2670
2671 =item *
2672
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>.
2676
2677 =item *
2678
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>.
2685
2686 =item *
2687
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
2691 called subroutine.
2692 L<[perl #121374]|https://rt.perl.org/Ticket/Display.html?id=121374>.
2693
2694 =item *
2695
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>.
2701
2702 =item *
2703
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>.
2708
2709 =item *
2710
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>.
2716
2717 =item *
2718
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
2722 $_.
2723
2724 =item *
2725
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>.
2729
2730 =item *
2731
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>.
2740
2741 =item *
2742
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.
2746
2747 =item *
2748
2749 C<setpgrp($nonzero)> (with one argument) was accidentally changed in 5.16
2750 to mean C<setpgrp(0)>.  This has been fixed.
2751
2752 =item *
2753
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>.
2756
2757 =item *
2758
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
2762 difference.
2763
2764 =item *
2765
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.
2770
2771 =item *
2772
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 }>.
2781
2782 Some subroutines with an explicit C<return> were being made inlinable,
2783 contrary to the documentation,  Now C<return> always prevents inlining.
2784
2785 =item *
2786
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 ...>>.
2791
2792 =item *
2793
2794 C<crypt> no longer calls C<FETCH> twice on a tied first argument.
2795
2796 =item *
2797
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.
2801
2802 =item *
2803
2804 C<index()> and C<rindex()> no longer crash when used on strings over 2GB in
2805 size.
2806 L<[perl #121562]|https://rt.perl.org/Ticket/Display.html?id=121562>.
2807
2808 =item *
2809
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.
2813
2814 =item *
2815
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>>.
2818
2819 =item *
2820
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()>.
2826
2827 =item *
2828
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.
2832
2833 =item *
2834
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:
2838 C<[[:alnum:]]>,
2839 C<[[:alpha:]]>,
2840 C<[[:blank:]]>,
2841 C<[[:digit:]]>,
2842 C<[[:graph:]]>,
2843 C<[[:lower:]]>,
2844 C<[[:print:]]>,
2845 C<[[:punct:]]>,
2846 C<[[:upper:]]>,
2847 C<[[:word:]]>,
2848 and
2849 C<[[:xdigit:]]>.
2850 This was because the underlying Microsoft implementation does not
2851 follow the standard.  Perl now takes special precautions to correct for
2852 this.
2853
2854 =item *
2855
2856 Many issues have been detected by L<Coverity|http://www.coverity.com/> and
2857 fixed.
2858
2859 =item *
2860
2861 C<system()> and friends should now work properly on more Android builds.
2862
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>.
2869
2870 =item *
2871
2872 C<qr(...\(...\)...)>,
2873 C<qr[...\[...\]...]>,
2874 and
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
2880 mirror character.
2881
2882 =item *
2883
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>.
2887
2888 =item *
2889
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>.
2894
2895 =item *
2896
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>.
2899
2900 =item *
2901
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>
2905 block.
2906 L<[perl #122107]|https://rt.perl.org/Ticket/Display.html?id=122107>.
2907
2908 =item *
2909
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>.
2913
2914 =item *
2915
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>.
2921
2922 =item *
2923
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>.
2927
2928 =item *
2929
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>
2933
2934 =item *
2935
2936 When parsing a sigil (C<$> C<@> C<%> C<&)> followed by braces,
2937 the parser no
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.
2940
2941 =item *
2942
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>
2946
2947 =item *
2948
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.
2951
2952 =item *
2953
2954 Bareword lookup now tries to avoid vivifying packages if it turns out the
2955 bareword is not going to be a subroutine name.
2956
2957 =item *
2958
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
2962 back to Perl 5.8.0.
2963
2964 =item *
2965
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
2968 5.10.0.
2969
2970 =item *
2971
2972 C<qr/[\N{named sequence}]/> now works properly in many instances.
2973
2974 Some names
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.
2984
2985 =item *
2986
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>
2990
2991 =item *
2992
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.
2996
2997 =item *
2998
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.
3002
3003 =item *
3004
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>
3008
3009 =item *
3010
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.
3016
3017 =item *
3018
3019 Under some conditions warning messages raised during regular expression pattern
3020 compilation were being output more than once.  This has now been fixed.
3021
3022 =item *
3023
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
3027 5.22.0.
3028 L<[perl #122655]|https://rt.perl.org/Ticket/Display.html?id=122655>
3029
3030 =item *
3031
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.
3035
3036 =item *
3037
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
3040 regular expression.
3041 L<[perl #122747]|https://rt.perl.org/Ticket/Display.html?id=122747>
3042
3043 =item *
3044
3045 Thread cloning used to work incorrectly for lexical subs, possibly causing
3046 crashes or double frees on exit.
3047
3048 =item *
3049
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
3053 fixed.
3054
3055 =item *
3056
3057 S<C<(caller $n)[3]>> now reports names of lexical subs, instead of
3058 treating them as C<"(unknown)">.
3059
3060 =item *
3061
3062 C<sort subname LIST> now supports using a lexical sub as the comparison
3063 routine.
3064
3065 =item *
3066
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
3069 assigned.
3070 L<[perl #15667]|https://rt.perl.org/Ticket/Display.html?id=15667>
3071
3072 =item *
3073
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
3077 ago.
3078
3079 =item *
3080
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>
3087
3088 =item *
3089
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.
3093
3094 =item *
3095
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.
3100
3101 =item *
3102
3103 Some unterminated C<(?(...)...)> constructs in regular expressions would
3104 either crash or give erroneous error messages.  C</(?(1)/> is one such
3105 example.
3106
3107 =item *
3108
3109 S<C<pack "w", $tied>> no longer calls FETCH twice.
3110
3111 =item *
3112
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>.
3115
3116 =item *
3117
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.
3121
3122 =item *
3123
3124 An assertion failure when parsing C<sort> with debugging enabled has been
3125 fixed.
3126 L<[perl #122771]|https://rt.perl.org/Ticket/Display.html?id=122771>.
3127
3128 =item *
3129
3130 S<C<*a = *b; @a = split //, $b[1]>> could do a bad read and produce junk
3131 results.
3132
3133 =item *
3134
3135 In S<C<() = @array = split>>, the S<C<() =>> at the beginning no longer confuses
3136 the optimizer into assuming a limit of 1.
3137
3138 =item *
3139
3140 Fatal warnings no longer prevent the output of syntax errors.
3141 L<[perl #122966]|https://rt.perl.org/Ticket/Display.html?id=122966>.
3142
3143 =item *
3144
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
3147 produced.
3148
3149 =item *
3150
3151 Fixed the issue that caused C<< make distclean >> to incorrectly leave some
3152 files behind.
3153 L<[perl #122820]|https://rt.perl.org/Ticket/Display.html?id=122820>.
3154
3155 =item *
3156
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>.
3161
3162 =item *
3163
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>.
3167
3168 =item *
3169
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>.
3173
3174 =item *
3175
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>.
3178
3179 =item *
3180
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.
3183
3184     sub foo { () = ($a, my $b, ($c, do { while(1) {} })) }
3185
3186 The bug was introduced in 5.20.0
3187 L<[perl #122995]|https://rt.perl.org/Ticket/Display.html?id=122995>.
3188
3189 =item *
3190
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
3194 OS process).
3195 L<[perl #40565]|https://rt.perl.org/Ticket/Display.html?id=40565>.
3196
3197 =item *
3198
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>.
3203
3204 =item *
3205
3206 Non-ASCII lexical sub names now appear without trailing junk when they
3207 appear in error messages.
3208
3209 =item *
3210
3211 The C<\@> subroutine prototype no longer flattens parenthesized arrays
3212 (taking a reference to each element), but takes a reference to the array
3213 itself.
3214 L<[perl #47363]|https://rt.perl.org/Ticket/Display.html?id=47363>.
3215
3216 =item *
3217
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>.
3223
3224 =item *
3225
3226 C<scalar()> now propagates lvalue context, so that
3227 S<C<for(scalar($#foo)) { ... }>> can modify C<$#foo> through C<$_>.
3228
3229 =item *
3230
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>.
3233
3234 =item *
3235
3236 S<C<eval '$variable'>> in nested named subroutines would sometimes look up a
3237 global variable even with a lexical variable in scope.
3238
3239 =item *
3240
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>.
3246
3247 =item *
3248
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.
3252
3253 =item *
3254
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.
3258
3259 =item *
3260
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>.
3264
3265 =back
3266
3267 =head1 Known Problems
3268
3269 =over 4
3270
3271 =item *
3272
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>
3276
3277 =item *
3278
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).
3282
3283 =item *
3284
3285 EBCDIC platforms
3286
3287 =over 4
3288
3289 =item *
3290
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
3294 characters.
3295
3296 =item *
3297
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.)
3304
3305 =item *
3306
3307 Encode and encoding are mostly broken.
3308
3309 =item *
3310
3311 Many CPAN modules that are shipped with core show failing tests.
3312
3313 =item *
3314
3315 C<pack>/C<unpack> with C<"U0"> format may not work properly.
3316
3317 =back
3318
3319 =item *
3320
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
3323 soon:
3324
3325 =over
3326
3327 =item *
3328
3329 L<B::Generate> version 1.50
3330
3331 =item *
3332
3333 L<B::Utils> version 0.25
3334
3335 =item *
3336
3337 L<Dancer> version 1.3130
3338
3339 =item *
3340
3341 L<Data::Alias> version 1.18
3342
3343 =item *
3344
3345 L<Data::Util> version 0.63
3346
3347 =item *
3348
3349 L<Devel::Spy> version 0.07
3350
3351 =item *
3352
3353 L<invoker> version 0.34
3354
3355 =item *
3356
3357 L<Lexical::Var> version 0.009
3358
3359 =item *
3360
3361 L<Mason> version 2.22
3362
3363 =item *
3364
3365 L<NgxQueue> version 0.02
3366
3367 =item *
3368
3369 L<Padre> version 1.00
3370
3371 =item *
3372
3373 L<Parse::Keyword> 0.08
3374
3375 =back
3376
3377 =back
3378
3379 =head1 Obituary
3380
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
3388 missed.
3389
3390 =head1 Acknowledgements
3391
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
3394 authors.
3395
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.
3398
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:
3402
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.
3422
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
3426 tracker.
3427
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.
3431
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.
3434
3435 =head1 Reporting Bugs
3436
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.
3441
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.
3446
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
3455 CPAN.
3456
3457 =head1 SEE ALSO
3458
3459 The F<Changes> file for an explanation of how to view exhaustive details on
3460 what changed.
3461
3462 The F<INSTALL> file for how to build Perl.
3463
3464 The F<README> file for general stuff.
3465
3466 The F<Artistic> and F<Copying> files for copyright information.
3467
3468 =cut