Commit | Line | Data |
---|---|---|
44691e6f AB |
1 | =encoding utf8 |
2 | ||
3 | =head1 NAME | |
4 | ||
5076a392 | 5 | perldelta - what is new for perl v5.14.0 |
c71a852f | 6 | |
5076a392 FC |
7 | =head1 DESCRIPTION |
8 | ||
9 | This document describes differences between the 5.12.0 release and | |
10 | the 5.14.0 release. | |
11 | ||
0980abf1 FC |
12 | If you are upgrading from an earlier release such as 5.10.0, first read |
13 | L<perl5120delta>, which describes differences between 5.10.0 and | |
14 | 5.12.0. | |
15 | ||
5076a392 FC |
16 | Some of the bug fixes in this release have been backported to subsequent |
17 | releases of 5.12.x. Those are indicated with the 5.12.x version in | |
18 | parentheses. | |
19 | ||
5076a392 FC |
20 | =head1 Notice |
21 | ||
22 | XXX Any important notices here | |
23 | ||
24 | =head1 Core Enhancements | |
25 | ||
1f539a1a | 26 | =head2 Unicode |
5076a392 | 27 | |
1f539a1a | 28 | =head3 Unicode Version 6.0 is now supported (mostly) |
5076a392 | 29 | |
1f539a1a FC |
30 | Perl comes with the Unicode 6.0 data base updated with |
31 | L<Corrigendum #8|http://www.unicode.org/versions/corrigendum8.html>, | |
32 | with one exception noted below. | |
33 | See L<http://unicode.org/versions/Unicode6.0.0> for details on the new | |
34 | release. Perl does not support any Unicode provisional properties, | |
a3c24add | 35 | including the new ones for this release. |
5076a392 | 36 | |
1f539a1a | 37 | Unicode 6.0 has chosen to use the name C<BELL> for the character at U+1F514, |
e1b1739f | 38 | which is a symbol that looks like a bell, and is used in Japanese cell |
1f539a1a FC |
39 | phones. This conflicts with the long-standing Perl usage of having |
40 | C<BELL> mean the ASCII C<BEL> character, U+0007. In Perl 5.14, | |
41 | C<\N{BELL}> will continue to mean U+0007, but its use will generate a | |
42 | deprecated warning message, unless such warnings are turned off. The | |
43 | new name for U+0007 in Perl will be C<ALERT>, which corresponds nicely | |
44 | with the existing shorthand sequence for it, C<"\a">. C<\N{BEL}> will | |
45 | mean U+0007, with no warning given. The character at U+1F514 will not | |
46 | have a name in 5.14, but can be referred to by C<\N{U+1F514}>. The plan | |
47 | is that in Perl 5.16, C<\N{BELL}> will refer to U+1F514, and so all code | |
48 | that uses C<\N{BELL}> should convert by then to using C<\N{ALERT}>, | |
49 | C<\N{BEL}>, or C<"\a"> instead. | |
5076a392 | 50 | |
1f539a1a | 51 | =head3 Full functionality for C<use feature 'unicode_strings'> |
5076a392 | 52 | |
1f539a1a FC |
53 | This release provides full functionality for C<use feature |
54 | 'unicode_strings'>. Under its scope, all string operations executed and | |
55 | regular expressions compiled (even if executed outside its scope) have | |
56 | Unicode semantics. See L<feature>. | |
5076a392 | 57 | |
1f539a1a FC |
58 | This feature avoids most forms of the "Unicode Bug" (See |
59 | L<perlunicode/The "Unicode Bug"> for details.) If there is a | |
60 | possibility that your code will process Unicode strings, you are | |
61 | B<strongly> encouraged to use this subpragma to avoid nasty surprises. | |
5076a392 | 62 | |
1f539a1a | 63 | =head3 C<\N{I<name>}> and C<charnames> enhancements |
5076a392 | 64 | |
1f539a1a | 65 | =over |
5076a392 | 66 | |
1f539a1a | 67 | =item * |
5076a392 FC |
68 | |
69 | C<\N{}> and C<charnames::vianame> now know about the abbreviated | |
e1b1739f FC |
70 | character names listed by Unicode, such as NBSP, SHY, LRO, ZWJ, etc., all |
71 | the customary abbreviations for the C0 and C1 control characters (such as | |
72 | ACK, BEL, CAN, etc.), and a few new variants of some C1 full names that | |
73 | are in common usage. | |
5076a392 | 74 | |
1f539a1a FC |
75 | =item * |
76 | ||
959ad7d5 FC |
77 | Unicode has a number of named character sequences, in which particular sequences |
78 | of code points are given names. C<\N{...}> now recognizes these. | |
79 | ||
1f539a1a FC |
80 | =item * |
81 | ||
959ad7d5 FC |
82 | C<\N{}>, C<charnames::vianame>, C<charnames::viacode> now know about every |
83 | character in Unicode. Previously, they didn't know about the Hangul syllables | |
84 | nor a number of CJK (Chinese/Japanese/Korean) characters. | |
85 | ||
1f539a1a FC |
86 | =item * |
87 | ||
5076a392 FC |
88 | In the past, it was ineffective to override one of Perl's abbreviations |
89 | with your own custom alias. Now it works. | |
90 | ||
1f539a1a FC |
91 | =item * |
92 | ||
e1b1739f | 93 | You can also create a custom alias of the ordinal of a |
5076a392 FC |
94 | character, known by C<\N{...}>, C<charnames::vianame()>, and |
95 | C<charnames::viacode()>. Previously, an alias had to be to an official | |
96 | Unicode character name. This made it impossible to create an alias for | |
e1b1739f FC |
97 | a code point that had no name, such as those reserved for private |
98 | use. | |
5076a392 | 99 | |
1f539a1a FC |
100 | =item * |
101 | ||
959ad7d5 FC |
102 | A new function, C<charnames::string_vianame()>, has been added. |
103 | This function is a run-time version of C<\N{...}>, returning the string | |
104 | of characters whose Unicode name is its parameter. It can handle | |
105 | Unicode named character sequences, whereas the pre-existing | |
106 | C<charnames::vianame()> cannot, as the latter returns a single code | |
107 | point. | |
108 | ||
1f539a1a FC |
109 | =back |
110 | ||
5076a392 FC |
111 | See L<charnames> for details on all these changes. |
112 | ||
22349846 KW |
113 | =head3 New warnings categories for problematic (non-)Unicode code points. |
114 | ||
115 | Three new warnings subcategories of "utf8" have been added. These | |
116 | allow you to turn off some "utf8" warnings, while allowing | |
117 | others warnings to remain on. The three categories are: | |
118 | C<surrogate> when UTF-16 surrogates are encountered; | |
119 | C<nonchar> when Unicode non-character code points are encountered; | |
120 | and C<non_unicode> when code points that are above the legal Unicode | |
121 | maximum of 0x10FFFF are encountered. | |
122 | ||
1f539a1a | 123 | =head3 Any unsigned value can be encoded as a character |
5076a392 | 124 | |
1f539a1a FC |
125 | With this release, Perl is adopting a model that any unsigned value can |
126 | be treated as a code point and encoded internally (as utf8) without | |
54c7bb16 | 127 | warnings - not just the code points that are legal in Unicode. |
22349846 KW |
128 | However, unless utf8 or the corresponding sub-category (see previous |
129 | item) warnings have been | |
1f539a1a FC |
130 | explicitly lexically turned off, outputting or performing a |
131 | Unicode-defined operation (such as upper-casing) on such a code point | |
132 | will generate a warning. Attempting to input these using strict rules | |
133 | (such as with the C<:encoding('UTF-8')> layer) will continue to fail. | |
134 | Prior to this release the handling was very inconsistent, and incorrect | |
135 | in places. Also, the Unicode non-characters, some of which previously were | |
136 | erroneously considered illegal in places by Perl, contrary to the Unicode | |
137 | standard, are now always legal internally. But inputting or outputting | |
138 | them will work the same as for the non-legal Unicode code points, as the | |
139 | Unicode standard says they are illegal for "open interchange". | |
5076a392 | 140 | |
daef9d5b KW |
141 | =head3 Unicode database files not installed |
142 | ||
143 | The Unicode database files are no longer installed with Perl. This | |
144 | doesn't affect any functionality in Perl and saves significant disk | |
145 | space. If you previously were explicitly opening and reading those | |
146 | files, you can download them from | |
147 | L<http://www.unicode.org/Public/zipped/6.0.0/>. | |
148 | ||
1f539a1a | 149 | =head2 Regular Expressions |
5076a392 | 150 | |
1f539a1a | 151 | =head3 C<(?^...)> construct to signify default modifiers |
5076a392 | 152 | |
e1b1739f FC |
153 | An ASCII caret (also called a "circumflex accent") C<"^"> |
154 | immediately following a C<"(?"> in a regular expression | |
155 | now means that the subexpression does not inherit the | |
156 | surrounding modifiers such as C</i>, but reverts to the | |
5076a392 FC |
157 | Perl defaults. Any modifiers following the caret override the defaults. |
158 | ||
159 | The stringification of regular expressions now uses this | |
160 | notation. E.g., before, C<qr/hlagh/i> would be stringified as | |
161 | C<(?i-xsm:hlagh)>, but now it's stringified as C<(?^i:hlagh)>. | |
162 | ||
163 | The main purpose of this is to allow tests that rely on the | |
e1b1739f | 164 | stringification not to have to change when new modifiers are added. |
5076a392 FC |
165 | See L<perlre/Extended Patterns>. |
166 | ||
1f539a1a | 167 | =head3 C</d>, C</l>, C</u>, C</a>, and C</aa> modifiers |
5076a392 | 168 | |
959ad7d5 FC |
169 | Four new regular expression modifiers have been added. These are mutually |
170 | exclusive; one only can be turned on at a time. | |
5076a392 | 171 | |
959ad7d5 | 172 | The C</l> modifier says to compile the regular expression as if it were |
5076a392 FC |
173 | in the scope of C<use locale>, even if it is not. |
174 | ||
959ad7d5 | 175 | The C</u> modifier says to compile the regular expression as if it were |
5076a392 FC |
176 | in the scope of a C<use feature "unicode_strings"> pragma. |
177 | ||
e1b1739f | 178 | The C</d> (default) modifier is used to override any C<use locale> and |
5076a392 FC |
179 | C<use feature "unicode_strings"> pragmas that are in effect at the time |
180 | of compiling the regular expression. | |
181 | ||
959ad7d5 | 182 | The C</a> regular expression modifier restricts C<\s>, C<\d> and C<\w> and |
7baaf023 | 183 | the Posix (C<[[:posix:]]>) character classes to the ASCII range. Their |
959ad7d5 FC |
184 | complements and C<\b> and C<\B> are correspondingly |
185 | affected. Otherwise, C</a> behaves like the C</u> modifier, in that | |
e1b1739f | 186 | case-insensitive matching uses Unicode semantics. |
5076a392 | 187 | |
959ad7d5 FC |
188 | The C</aa> modifier is like C</a>, except that, in case-insensitive matching, no ASCII character will match a |
189 | non-ASCII character. For example, | |
5076a392 | 190 | |
959ad7d5 | 191 | 'k' =~ /\N{KELVIN SIGN}/ai |
5076a392 | 192 | |
959ad7d5 | 193 | will match; it won't under C</aa>. |
5076a392 | 194 | |
959ad7d5 | 195 | See L<perlre/Modifiers> for more detail. |
5076a392 | 196 | |
1f539a1a | 197 | =head3 Non-destructive substitution |
5076a392 | 198 | |
1f539a1a FC |
199 | The substitution (C<s///>) and transliteration |
200 | (C<y///>) operators now support an C</r> option that | |
201 | copies the input variable, carries out the substitution on | |
202 | the copy and returns the result. The original remains unmodified. | |
5076a392 | 203 | |
1f539a1a FC |
204 | my $old = 'cat'; |
205 | my $new = $old =~ s/cat/dog/r; | |
206 | # $old is 'cat' and $new is 'dog' | |
5076a392 | 207 | |
1f539a1a | 208 | This is particularly useful with C<map>. See L<perlop> for more examples. |
5076a392 | 209 | |
1f539a1a | 210 | =head3 Reentrant regular expression engine |
5076a392 | 211 | |
1f539a1a FC |
212 | It is now safe to use regular expressions within C<(?{...})> and |
213 | C<(??{...})> code blocks inside regular expressions. | |
5076a392 | 214 | |
1f539a1a | 215 | These block are still experimental, however, and still have problems with |
e1b1739f | 216 | lexical (C<my>) variables and abnormal exiting. |
5076a392 | 217 | |
1f539a1a | 218 | =head3 C<use re '/flags';> |
5076a392 FC |
219 | |
220 | The C<re> pragma now has the ability to turn on regular expression flags | |
221 | till the end of the lexical scope: | |
222 | ||
223 | use re '/x'; | |
224 | "foo" =~ / (.+) /; # /x implied | |
225 | ||
226 | See L<re/"'/flags' mode"> for details. | |
227 | ||
1f539a1a | 228 | =head3 \o{...} for octals |
5076a392 | 229 | |
e1b1739f FC |
230 | There is a new octal escape sequence, C<"\o">, in double-quote-like |
231 | contexts. This construct allows large octal ordinals beyond the | |
1f539a1a FC |
232 | current max of 0777 to be represented. It also allows you to specify a |
233 | character in octal which can safely be concatenated with other regex | |
234 | snippets and which won't be confused with being a backreference to | |
235 | a regex capture group. See L<perlre/Capture groups>. | |
236 | ||
237 | =head3 Add C<\p{Titlecase}> as a synonym for C<\p{Title}> | |
238 | ||
239 | This synonym is added for symmetry with the Unicode property names | |
240 | C<\p{Uppercase}> and C<\p{Lowercase}>. | |
5076a392 | 241 | |
1f539a1a FC |
242 | =head3 Regular expression debugging output improvement |
243 | ||
244 | Regular expression debugging output (turned on by C<use re 'debug';>) now | |
245 | uses hexadecimal when escaping non-ASCII characters, instead of octal. | |
246 | ||
1e463951 FC |
247 | =head3 Return value of C<delete $+{...}> |
248 | ||
249 | Custom regular expression engines can now determine the return value of | |
250 | C<delete> on an entry of C<%+> or C<%->. | |
251 | ||
1f539a1a FC |
252 | =head2 Syntactical Enhancements |
253 | ||
254 | =head3 Array and hash container functions accept references | |
5076a392 FC |
255 | |
256 | All built-in functions that operate directly on array or hash | |
257 | containers now also accept hard references to arrays or hashes: | |
258 | ||
259 | |----------------------------+---------------------------| | |
260 | | Traditional syntax | Terse syntax | | |
261 | |----------------------------+---------------------------| | |
262 | | push @$arrayref, @stuff | push $arrayref, @stuff | | |
263 | | unshift @$arrayref, @stuff | unshift $arrayref, @stuff | | |
264 | | pop @$arrayref | pop $arrayref | | |
265 | | shift @$arrayref | shift $arrayref | | |
266 | | splice @$arrayref, 0, 2 | splice $arrayref, 0, 2 | | |
267 | | keys %$hashref | keys $hashref | | |
268 | | keys @$arrayref | keys $arrayref | | |
269 | | values %$hashref | values $hashref | | |
270 | | values @$arrayref | values $arrayref | | |
271 | | ($k,$v) = each %$hashref | ($k,$v) = each $hashref | | |
272 | | ($k,$v) = each @$arrayref | ($k,$v) = each $arrayref | | |
273 | |----------------------------+---------------------------| | |
274 | ||
275 | This allows these built-in functions to act on long dereferencing chains | |
276 | or on the return value of subroutines without needing to wrap them in | |
277 | C<@{}> or C<%{}>: | |
278 | ||
279 | push @{$obj->tags}, $new_tag; # old way | |
280 | push $obj->tags, $new_tag; # new way | |
281 | ||
282 | for ( keys %{$hoh->{genres}{artists}} ) {...} # old way | |
283 | for ( keys $hoh->{genres}{artists} ) {...} # new way | |
284 | ||
285 | For C<push>, C<unshift> and C<splice>, the reference will auto-vivify | |
286 | if it is not defined, just as if it were wrapped with C<@{}>. | |
287 | ||
5076a392 FC |
288 | For C<keys>, C<values>, C<each>, when overloaded dereferencing is |
289 | present, the overloaded dereference is used instead of dereferencing the | |
e1b1739f FC |
290 | underlying reftype. Warnings are issued about assumptions made in |
291 | ambiguous cases. | |
5076a392 | 292 | |
1f539a1a FC |
293 | =head3 Single term prototype |
294 | ||
295 | The C<+> prototype is a special alternative to C<$> that will act like | |
296 | C<\[@%]> when given a literal array or hash variable, but will otherwise | |
e1b1739f | 297 | force scalar context on the argument. See L<perlsub/Prototypes>. |
1f539a1a FC |
298 | |
299 | =head3 C<package> block syntax | |
300 | ||
301 | A package declaration can now contain a code block, in which case the | |
302 | declaration is in scope only inside that block. So C<package Foo { ... }> | |
303 | is precisely equivalent to C<{ package Foo; ... }>. It also works with | |
304 | a version number in the declaration, as in C<package Foo 1.2 { ... }>. | |
e1b1739f | 305 | See L<perlfunc>. |
1f539a1a FC |
306 | |
307 | =head3 Statement labels can appear in more places | |
308 | ||
309 | Statement labels can now occur before any type of statement or declaration, | |
310 | such as C<package>. | |
311 | ||
312 | =head3 Stacked labels | |
313 | ||
314 | Multiple statement labels can now appear before a single statement. | |
315 | ||
316 | =head3 Uppercase X/B allowed in hexadecimal/binary literals | |
317 | ||
318 | Literals may now use either upper case C<0X...> or C<0B...> prefixes, | |
319 | in addition to the already supported C<0x...> and C<0b...> | |
e1b1739f | 320 | syntax [perl #76296]. |
1f539a1a FC |
321 | |
322 | C, Ruby, Python and PHP already supported this syntax, and it makes | |
323 | Perl more internally consistent. A round-trip with C<eval sprintf | |
e1b1739f | 324 | "%#X", 0x10> now returns C<16>, the way C<eval sprintf "%#x", 0x10> does. |
1f539a1a | 325 | |
1e463951 FC |
326 | =head3 Overridable tie functions |
327 | ||
328 | C<tie>, C<tied> and C<untie> can now be overridden [perl #75902]. | |
329 | ||
1f539a1a FC |
330 | =head2 Exception Handling |
331 | ||
332 | Several changes have been made to the way C<die>, C<warn>, and C<$@> | |
333 | behave, in order to make them more reliable and consistent. | |
334 | ||
335 | When an exception is thrown inside an C<eval>, the exception is no | |
336 | longer at risk of being clobbered by code running during unwinding | |
337 | (e.g., destructors). Previously, the exception was written into C<$@> | |
338 | early in the throwing process, and would be overwritten if C<eval> was | |
339 | used internally in the destructor for an object that had to be freed | |
340 | while exiting from the outer C<eval>. Now the exception is written | |
341 | into C<$@> last thing before exiting the outer C<eval>, so the code | |
342 | running immediately thereafter can rely on the value in C<$@> correctly | |
343 | corresponding to that C<eval>. (C<$@> is still also set before exiting the | |
344 | C<eval>, for the sake of destructors that rely on this.) | |
345 | ||
346 | Likewise, a C<local $@> inside an C<eval> will no longer clobber any | |
347 | exception thrown in its scope. Previously, the restoration of C<$@> upon | |
348 | unwinding would overwrite any exception being thrown. Now the exception | |
349 | gets to the C<eval> anyway. So C<local $@> is safe before a C<die>. | |
350 | ||
351 | Exceptions thrown from object destructors no longer modify the C<$@> | |
352 | of the surrounding context. (If the surrounding context was exception | |
353 | unwinding, this used to be another way to clobber the exception being | |
354 | thrown.) Previously such an exception was | |
355 | sometimes emitted as a warning, and then either was | |
356 | string-appended to the surrounding C<$@> or completely replaced the | |
357 | surrounding C<$@>, depending on whether that exception and the surrounding | |
358 | C<$@> were strings or objects. Now, an exception in this situation is | |
359 | always emitted as a warning, leaving the surrounding C<$@> untouched. | |
360 | In addition to object destructors, this also affects any function call | |
361 | performed by XS code using the C<G_KEEPERR> flag. | |
362 | ||
363 | Warnings for C<warn> can now be objects, in the same way as exceptions | |
364 | for C<die>. If an object-based warning gets the default handling, | |
365 | of writing to standard error, it is stringified as | |
366 | before, with the file and line number appended. But | |
367 | a C<$SIG{__WARN__}> handler will now receive an | |
368 | object-based warning as an object, where previously it was passed the | |
369 | result of stringifying the object. | |
370 | ||
371 | =head2 Other Enhancements | |
372 | ||
373 | =head3 Assignment to C<$0> sets the legacy process name with C<prctl()> on Linux | |
374 | ||
375 | On Linux the legacy process name will be set with L<prctl(2)>, in | |
376 | addition to altering the POSIX name via C<argv[0]> as perl has done | |
377 | since version 4.000. Now system utilities that read the legacy process | |
378 | name such as ps, top and killall will recognize the name you set when | |
379 | assigning to C<$0>. The string you supply will be cut off at 16 bytes, | |
380 | this is a limitation imposed by Linux. | |
381 | ||
382 | =head3 C<srand()> now returns the seed | |
383 | ||
e1b1739f FC |
384 | This allows programs that need to have repeatable results not to have to come |
385 | up with their own seed-generating mechanism. Instead, they can use C<srand()> | |
386 | and stash the return value for future use. Typical is a test program which | |
1f539a1a | 387 | has too many combinations to test comprehensively in the time available to it |
e1b1739f | 388 | each run. It can test a random subset each time and, should there be a failure, |
1f539a1a | 389 | log the seed used for that run so that it can later be used to reproduce the |
e1b1739f | 390 | same results. |
1f539a1a FC |
391 | |
392 | =head3 printf-like functions understand post-1980 size modifiers | |
393 | ||
394 | Perl's printf and sprintf operators, and Perl's internal printf replacement | |
395 | function, now understand the C90 size modifiers "hh" (C<char>), "z" | |
396 | (C<size_t>), and "t" (C<ptrdiff_t>). Also, when compiled with a C99 | |
397 | compiler, Perl now understands the size modifier "j" (C<intmax_t>). | |
398 | ||
399 | So, for example, on any modern machine, C<sprintf('%hhd', 257)> returns '1'. | |
400 | ||
401 | =head3 New global variable C<${^GLOBAL_PHASE}> | |
5076a392 FC |
402 | |
403 | A new global variable, C<${^GLOBAL_PHASE}>, has been added to allow | |
404 | introspection of the current phase of the perl interpreter. It's explained in | |
405 | detail in L<perlvar/"${^GLOBAL_PHASE}"> and | |
406 | L<perlmod/"BEGIN, UNITCHECK, CHECK, INIT and END">. | |
407 | ||
1f539a1a | 408 | =head3 C<-d:-foo> calls C<Devel::foo::unimport> |
5076a392 FC |
409 | |
410 | The syntax C<-dI<B<:>foo>> was extended in 5.6.1 to make C<-dI<:fooB<=bar>>> | |
411 | equivalent to C<-MDevel::foo=bar>, which expands | |
412 | internally to C<use Devel::foo 'bar';>. | |
413 | F<perl> now allows prefixing the module name with C<->, with the same | |
414 | semantics as C<-M>, I<i.e.> | |
415 | ||
416 | =over 4 | |
417 | ||
418 | =item C<-d:-foo> | |
419 | ||
420 | Equivalent to C<-M-Devel::foo>, expands to | |
421 | C<no Devel::foo;>, calls C<< Devel::foo->unimport() >> | |
422 | if the method exists. | |
423 | ||
424 | =item C<-d:-foo=bar> | |
425 | ||
426 | Equivalent to C<-M-Devel::foo=bar>, expands to C<no Devel::foo 'bar';>, | |
427 | calls C<< Devel::foo->unimport('bar') >> if the method exists. | |
428 | ||
429 | =back | |
430 | ||
e1b1739f | 431 | This is particularly useful for suppressing the default actions of a |
5076a392 FC |
432 | C<Devel::*> module's C<import> method whilst still loading it for debugging. |
433 | ||
1f539a1a | 434 | =head3 Filehandle method calls load L<IO::File> on demand |
5076a392 FC |
435 | |
436 | When a method call on a filehandle would die because the method cannot | |
437 | be resolved, and L<IO::File> has not been loaded, Perl now loads L<IO::File> | |
438 | via C<require> and attempts method resolution again: | |
439 | ||
440 | open my $fh, ">", $file; | |
441 | $fh->binmode(":raw"); # loads IO::File and succeeds | |
442 | ||
443 | This also works for globs like STDOUT, STDERR and STDIN: | |
444 | ||
445 | STDOUT->autoflush(1); | |
446 | ||
447 | Because this on-demand load only happens if method resolution fails, the | |
448 | legacy approach of manually loading an L<IO::File> parent class for partial | |
449 | method support still works as expected: | |
450 | ||
451 | use IO::Handle; | |
452 | open my $fh, ">", $file; | |
453 | $fh->autoflush(1); # IO::File not loaded | |
454 | ||
1984204c FC |
455 | =head3 IPv6 support |
456 | ||
457 | The C<Socket> module provides new affordances for IPv6, | |
458 | including implementations of the C<Socket::getaddrinfo()> and | |
459 | C<Socket::getnameinfo()> functions, along with related constants, and a | |
460 | handful of new functions. See L<Socket>. | |
461 | ||
1f539a1a | 462 | =head3 DTrace probes now include package name |
5076a392 FC |
463 | |
464 | The DTrace probes now include an additional argument (C<arg3>) which contains | |
465 | the package the subroutine being entered or left was compiled in. | |
466 | ||
467 | For example using the following DTrace script: | |
468 | ||
469 | perl$target:::sub-entry | |
470 | { | |
471 | printf("%s::%s\n", copyinstr(arg0), copyinstr(arg3)); | |
472 | } | |
473 | ||
474 | and then running: | |
475 | ||
476 | perl -e'sub test { }; test' | |
477 | ||
478 | DTrace will print: | |
479 | ||
480 | main::test | |
481 | ||
9378886b FC |
482 | =head2 New C APIs |
483 | ||
1e463951 | 484 | See L</Internal Changes>. |
9378886b | 485 | |
5076a392 FC |
486 | =head1 Security |
487 | ||
948b8455 | 488 | =head2 User-defined regular expression properties |
5076a392 FC |
489 | |
490 | In L<perlunicode/"User-Defined Character Properties">, it says you can | |
491 | create custom properties by defining subroutines whose names begin with | |
948b8455 FC |
492 | "In" or "Is". However, Perl did not actually enforce that naming |
493 | restriction, so \p{foo::bar} could call foo::bar() if it existed. Now this | |
494 | convention has been enforced. | |
5076a392 | 495 | |
948b8455 FC |
496 | Also, Perl no longer allows a tainted regular expression to invoke a |
497 | user-defined. It simply dies instead [perl #82616]. | |
5076a392 FC |
498 | |
499 | =head1 Incompatible Changes | |
500 | ||
61752d82 FC |
501 | Perl 5.14.0 is not binary-compatible with any previous stable release. |
502 | ||
1e463951 FC |
503 | In addition to the sections that follow, see L</C API Changes>. |
504 | ||
61752d82 FC |
505 | =head2 Regular Expressions and String Escapes |
506 | ||
54c7bb16 | 507 | =head3 \400-\777 |
5076a392 | 508 | |
54c7bb16 | 509 | Use of C<\400>-C<\777> in regexes in certain circumstances has given |
5076a392 FC |
510 | different, anomalous behavior than their use in all other |
511 | double-quote-like contexts. Since 5.10.1, a deprecated warning message | |
512 | has been raised when this happens. Now, all double-quote-like contexts | |
513 | have the same behavior, namely to be equivalent to C<\x{100}> - | |
514 | C<\x{1FF}>, with no deprecation warning. Use of these values in the | |
515 | command line option C<"-0"> retains the current meaning to slurp input | |
516 | files whole; previously, this was documented only for C<"-0777">. It is | |
517 | recommended, however, because of various ambiguities, to use the new | |
518 | C<\o{...}> construct to represent characters in octal. | |
5076a392 | 519 | |
61752d82 | 520 | =head3 Most C<\p{}> properties are now immune to case-insensitive matching |
5076a392 | 521 | |
61752d82 FC |
522 | For most Unicode properties, it doesn't make sense to have them match |
523 | differently under C</i> case-insensitive matching than not. And doing | |
524 | so leads to unexpected results and potential security holes. For | |
525 | example | |
5076a392 | 526 | |
61752d82 | 527 | m/\p{ASCII_Hex_Digit}+/i |
5076a392 | 528 | |
61752d82 | 529 | could previously match non-ASCII characters because of the Unicode |
4cf6a51f KW |
530 | matching rules (although there were a number of bugs with this). Now |
531 | matching under C</i> gives the same results as non-C</i> matching except | |
532 | for those few properties where people have come to expect differences, | |
533 | namely the ones where casing is an integral part of their meaning, such | |
534 | as C<m/\p{Uppercase}/i> and C<m/\p{Lowercase}/i>, both of which match | |
535 | the exact same code points, namely those matched by C<m/\p{Cased}/i>. | |
536 | Details are in L<perlrecharclass/Unicode Properties>. | |
5076a392 | 537 | |
61752d82 | 538 | User-defined property handlers that need to match differently under |
4cf6a51f | 539 | C</i> must change to read the new boolean parameter passed to them which is |
61752d82 FC |
540 | non-zero if case-insensitive matching is in effect or 0 otherwise. See |
541 | L<perluniprops/User-Defined Character Properties>. | |
5076a392 | 542 | |
61752d82 | 543 | =head3 \p{} implies Unicode semantics |
5076a392 | 544 | |
61752d82 FC |
545 | Now, a Unicode property match specified in the pattern will indicate |
546 | that the pattern is meant for matching according to Unicode rules, the way | |
bc15a0a0 | 547 | C<\N{}> does. |
5076a392 | 548 | |
61752d82 | 549 | =head3 Regular expressions retain their localeness when interpolated |
5076a392 | 550 | |
61752d82 FC |
551 | Regular expressions compiled under C<"use locale"> now retain this when |
552 | interpolated into a new regular expression compiled outside a | |
553 | C<"use locale">, and vice-versa. | |
5076a392 | 554 | |
61752d82 FC |
555 | Previously, a regular expression interpolated into another one inherited |
556 | the localeness of the surrounding one, losing whatever state it | |
557 | originally had. This is considered a bug fix, but may trip up code that | |
558 | has come to rely on the incorrect behavior. | |
5076a392 | 559 | |
61752d82 | 560 | =head3 Stringification of regexes has changed |
5076a392 FC |
561 | |
562 | Default regular expression modifiers are now notated by using | |
563 | C<(?^...)>. Code relying on the old stringification will fail. The | |
564 | purpose of this is so that when new modifiers are added, such code will | |
565 | not have to change (after this one time), as the stringification will | |
566 | automatically incorporate the new modifiers. | |
567 | ||
568 | Code that needs to work properly with both old- and new-style regexes | |
f318e2e6 | 569 | can avoid the whole issue by using (for Perls since 5.9.5; see L<re>): |
5076a392 FC |
570 | |
571 | use re qw(regexp_pattern); | |
572 | my ($pat, $mods) = regexp_pattern($re_ref); | |
573 | ||
5076a392 FC |
574 | If the actual stringification is important, or older Perls need to be |
575 | supported, you can use something like the following: | |
576 | ||
577 | # Accept both old and new-style stringification | |
578 | my $modifiers = (qr/foobar/ =~ /\Q(?^/) ? '^' : '-xism'; | |
579 | ||
580 | And then use C<$modifiers> instead of C<-xism>. | |
581 | ||
61752d82 | 582 | =head3 Run-time code blocks in regular expressions inherit pragmata |
5076a392 | 583 | |
61752d82 FC |
584 | Code blocks in regular expressions (C<(?{...})> and C<(??{...})>) used not |
585 | to inherit any pragmata (strict, warnings, etc.) if the regular expression | |
586 | was compiled at run time as happens in cases like these two: | |
5076a392 | 587 | |
61752d82 FC |
588 | use re 'eval'; |
589 | $foo =~ $bar; # when $bar contains (?{...}) | |
590 | $foo =~ /$bar(?{ $finished = 1 })/; | |
591 | ||
592 | This was a bug, which has now been fixed. But it has the potential to break | |
593 | any code that was relying on it. | |
5076a392 | 594 | |
61752d82 | 595 | =head2 Stashes and Package Variables |
5076a392 | 596 | |
61752d82 | 597 | =head3 Localised tied hashes and arrays are no longed tied |
5076a392 | 598 | |
61752d82 | 599 | In the following: |
5076a392 | 600 | |
61752d82 FC |
601 | tie @a, ...; |
602 | { | |
603 | local @a; | |
604 | # here, @a is a now a new, untied array | |
605 | } | |
606 | # here, @a refers again to the old, tied array | |
5076a392 | 607 | |
61752d82 FC |
608 | The new local array used to be made tied too, which was fairly pointless, |
609 | and has now been fixed. This fix could however potentially cause a change | |
610 | in behaviour of some code. | |
5076a392 | 611 | |
61752d82 | 612 | =head3 Stashes are now always defined |
5076a392 | 613 | |
61752d82 FC |
614 | C<defined %Foo::> now always returns true, even when no symbols have yet been |
615 | defined in that package. | |
5076a392 | 616 | |
61752d82 FC |
617 | This is a side effect of removing a special case kludge in the tokeniser, |
618 | added for 5.10.0, to hide side effects of changes to the internal storage of | |
619 | hashes that drastically reduce their memory usage overhead. | |
620 | ||
621 | Calling defined on a stash has been deprecated since 5.6.0, warned on | |
622 | lexicals since 5.6.0, and warned for stashes (and other package | |
623 | variables) since 5.12.0. C<defined %hash> has always exposed an | |
624 | implementation detail - emptying a hash by deleting all entries from it does | |
625 | not make C<defined %hash> false, hence C<defined %hash> is not valid code to | |
626 | determine whether an arbitrary hash is empty. Instead, use the behaviour | |
627 | that an empty C<%hash> always returns false in a scalar context. | |
628 | ||
629 | =head3 Dereferencing typeglobs | |
5076a392 FC |
630 | |
631 | If you assign a typeglob to a scalar variable: | |
632 | ||
633 | $glob = *foo; | |
634 | ||
635 | the glob that is copied to C<$glob> is marked with a special flag | |
636 | indicating that the glob is just a copy. This allows subsequent assignments | |
637 | to C<$glob> to overwrite the glob. The original glob, however, is | |
638 | immutable. | |
639 | ||
640 | Many Perl operators did not distinguish between these two types of globs. | |
641 | This would result in strange behaviour in edge cases: C<untie $scalar> | |
642 | would do nothing if the last thing assigned to the scalar was a glob | |
643 | (because it treated it as C<untie *$scalar>, which unties a handle). | |
f318e2e6 | 644 | Assignment to a glob slot (e.g., C<*$glob = \@some_array>) would simply |
5076a392 FC |
645 | assign C<\@some_array> to C<$glob>. |
646 | ||
647 | To fix this, the C<*{}> operator (including the C<*foo> and C<*$foo> forms) | |
648 | has been modified to make a new immutable glob if its operand is a glob | |
e262cb24 FC |
649 | copy. This allows operators that make a distinction between globs and |
650 | scalars to be modified to treat only immutable globs as globs. (C<tie>, | |
651 | C<tied> and C<untie> have been left as they are for compatibility's sake, | |
61752d82 | 652 | but will warn. See L</Deprecations>.) |
5076a392 FC |
653 | |
654 | This causes an incompatible change in code that assigns a glob to the | |
655 | return value of C<*{}> when that operator was passed a glob copy. Take the | |
656 | following code, for instance: | |
657 | ||
658 | $glob = *foo; | |
659 | *$glob = *bar; | |
660 | ||
661 | The C<*$glob> on the second line returns a new immutable glob. That new | |
662 | glob is made an alias to C<*bar>. Then it is discarded. So the second | |
663 | assignment has no effect. | |
664 | ||
5076a392 FC |
665 | See L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=77810> for even |
666 | more detail. | |
667 | ||
61752d82 | 668 | =head3 Clearing stashes |
5076a392 FC |
669 | |
670 | Stash list assignment C<%foo:: = ()> used to make the stash anonymous | |
671 | temporarily while it was being emptied. Consequently, any of its | |
672 | subroutines referenced elsewhere would become anonymous (showing up as | |
673 | "(unknown)" in C<caller>). Now they retain their package names, such that | |
674 | C<caller> will return the original sub name if there is still a reference | |
675 | to its typeglob, or "foo::__ANON__" otherwise [perl #79208]. | |
676 | ||
61752d82 FC |
677 | =head3 Magic variables outside the main package |
678 | ||
679 | In previous versions of Perl, magic variables like C<$!>, C<%SIG>, etc. would | |
680 | 'leak' into other packages. So C<%foo::SIG> could be used to access signals, | |
681 | C<${"foo::!"}> (with strict mode off) to access C's C<errno>, etc. | |
682 | ||
683 | This was a bug, or an 'unintentional' feature, which caused various ill effects, | |
684 | such as signal handlers being wiped when modules were loaded, etc. | |
685 | ||
686 | This has been fixed (or the feature has been removed, depending on how you see | |
687 | it). | |
688 | ||
689 | =head2 Changes to Syntax or to Perl Operators | |
690 | ||
691 | =head3 C<given> return values | |
692 | ||
693 | C<given> blocks now return the last evaluated | |
694 | expression, or an empty list if the block was exited by C<break>. Thus you | |
695 | can now write: | |
696 | ||
697 | my $type = do { | |
698 | given ($num) { | |
699 | break when undef; | |
700 | 'integer' when /^[+-]?[0-9]+$/; | |
701 | 'float' when /^[+-]?[0-9]+(?:\.[0-9]+)?$/; | |
702 | 'unknown'; | |
703 | } | |
704 | }; | |
705 | ||
706 | See L<perlsyn/Return value> for details. | |
707 | ||
708 | =head3 Change in the parsing of certain prototypes | |
709 | ||
710 | Functions declared with the following prototypes now behave correctly as unary | |
711 | functions: | |
712 | ||
713 | * | |
714 | \$ \% \@ \* \& | |
715 | \[...] | |
716 | ;$ ;* | |
717 | ;\$ ;\% etc. | |
718 | ;\[...] | |
719 | ||
720 | Due to this bug fix [perl #75904], functions | |
721 | using the C<(*)>, C<(;$)> and C<(;*)> prototypes | |
722 | are parsed with higher precedence than before. So in the following example: | |
723 | ||
724 | sub foo($); | |
725 | foo $a < $b; | |
726 | ||
727 | the second line is now parsed correctly as C<< foo($a) < $b >>, rather than | |
728 | C<< foo($a < $b) >>. This happens when one of these operators is used in | |
729 | an unparenthesised argument: | |
730 | ||
731 | < > <= >= lt gt le ge | |
732 | == != <=> eq ne cmp ~~ | |
733 | & | |
734 | | ^ | |
735 | && | |
736 | || // | |
737 | .. ... | |
738 | ?: | |
739 | = += -= *= etc. | |
740 | ||
741 | =head3 Smart-matching against array slices | |
742 | ||
743 | Previously, the following code resulted in a successful match: | |
744 | ||
745 | my @a = qw(a y0 z); | |
746 | my @b = qw(a x0 z); | |
747 | @a[0 .. $#b] ~~ @b; | |
748 | ||
749 | This odd behaviour has now been fixed [perl #77468]. | |
750 | ||
751 | =head3 Negation treats strings differently from before | |
752 | ||
753 | The unary negation operator C<-> now treats strings that look like numbers | |
754 | as numbers [perl #57706]. | |
755 | ||
756 | =head3 Negative zero | |
757 | ||
758 | Negative zero (-0.0), when converted to a string, now becomes "0" on all | |
759 | platforms. It used to become "-0" on some, but "0" on others. | |
760 | ||
761 | If you still need to determine whether a zero is negative, use | |
762 | C<sprintf("%g", $zero) =~ /^-/> or the L<Data::Float> module on CPAN. | |
763 | ||
764 | =head3 C<:=> is now a syntax error | |
5076a392 FC |
765 | |
766 | Previously C<my $pi := 4;> was exactly equivalent to C<my $pi : = 4;>, | |
767 | with the C<:> being treated as the start of an attribute list, ending before | |
768 | the C<=>. The use of C<:=> to mean C<: => was deprecated in 5.12.0, and is now | |
769 | a syntax error. This will allow the future use of C<:=> as a new token. | |
770 | ||
771 | We find no Perl 5 code on CPAN using this construction, outside the core's | |
772 | tests for it, so we believe that this change will have very little impact on | |
773 | real-world codebases. | |
774 | ||
775 | If it is absolutely necessary to have empty attribute lists (for example, | |
776 | because of a code generator) then avoid the error by adding a space before | |
777 | the C<=>. | |
778 | ||
61752d82 | 779 | =head2 Threads and Processes |
5076a392 | 780 | |
61752d82 | 781 | =head3 Directory handles not copied to threads |
5076a392 | 782 | |
61752d82 FC |
783 | On systems other than Windows that do not have |
784 | a C<fchdir> function, newly-created threads no | |
785 | longer inherit directory handles from their parent threads. Such programs | |
786 | would usually have crashed anyway [perl #75154]. | |
5076a392 | 787 | |
61752d82 | 788 | =head3 C<close> on shared pipes |
5076a392 | 789 | |
61752d82 FC |
790 | The C<close> function no longer waits for the child process to exit if the |
791 | underlying file descriptor is still in use by another thread, to avoid | |
792 | deadlocks. It returns true in such cases. | |
5076a392 | 793 | |
144b6ea2 FC |
794 | =head3 fork() emulation will not wait for signalled children |
795 | ||
796 | On Windows parent processes would not terminate until all forked | |
797 | childred had terminated first. However, C<kill('KILL', ...)> is | |
798 | inherently unstable on pseudo-processes, and C<kill('TERM', ...)> | |
799 | might not get delivered if the child if blocked in a system call. | |
800 | ||
801 | To avoid the deadlock and still provide a safe mechanism to terminate | |
802 | the hosting process, Perl will now no longer wait for children that | |
803 | have been sent a SIGTERM signal. It is up to the parent process to | |
804 | waitpid() for these children if child clean-up processing must be | |
805 | allowed to finish. However, it is also the responsibility of the | |
806 | parent then to avoid the deadlock by making sure the child process | |
807 | can't be blocked on I/O either. | |
808 | ||
809 | See L<perlfork> for more information about the fork() emulation on | |
810 | Windows. | |
811 | ||
61752d82 | 812 | =head2 Configuration |
5076a392 | 813 | |
61752d82 | 814 | =head3 Naming fixes in Policy_sh.SH may invalidate Policy.sh |
5076a392 | 815 | |
61752d82 FC |
816 | Several long-standing typos and naming confusions in Policy_sh.SH have |
817 | been fixed, standardizing on the variable names used in config.sh. | |
5076a392 | 818 | |
61752d82 FC |
819 | This will change the behavior of Policy.sh if you happen to have been |
820 | accidentally relying on the Policy.sh incorrect behavior. | |
f318e2e6 | 821 | |
5a1f7719 FC |
822 | =head3 Perl source code is read in text mode on Windows |
823 | ||
824 | Perl scripts used to be read in binary mode on Windows for the benefit | |
825 | of the ByteLoader module (which is no longer part of core Perl). This | |
826 | had the side effect of breaking various operations on the DATA filehandle, | |
827 | including seek()/tell(), and even simply reading from DATA after file handles | |
828 | have been flushed by a call to system(), backticks, fork() etc. | |
829 | ||
830 | The default build options for Windows have been changed to read Perl source | |
831 | code on Windows in text mode now. Hopefully ByteLoader will be updated on | |
832 | CPAN to automatically handle this situation [perl #28106]. | |
833 | ||
5076a392 FC |
834 | =head1 Deprecations |
835 | ||
1e463951 FC |
836 | See also L</Deprecated C APIs>. |
837 | ||
5076a392 FC |
838 | =head2 Omitting a space between a regular expression and subsequent word |
839 | ||
18139a1b FC |
840 | Omitting a space between a regular expression operator or |
841 | its modifiers and the following word is deprecated. For | |
842 | example, C<< m/foo/sand $bar >> will still be parsed | |
843 | as C<< m/foo/s and $bar >> but will issue a warning. | |
5076a392 | 844 | |
e683df94 KW |
845 | =head2 C<\cI<X>> |
846 | ||
847 | The backslash-c construct was designed as a way of specifying | |
848 | non-printable characters, but there were no restrictions (on ASCII | |
849 | platforms) on what the character following the C<c> could be. Now, | |
850 | a deprecation warning is raised if that character isn't an ASCII character. | |
851 | Also, a deprecation warning is raised for C<"\c{"> (which is the same | |
852 | as simply saying C<";">). | |
853 | ||
4528361d KW |
854 | =head2 C<"\b{"> and C<"\B{"> |
855 | ||
856 | In regular expressions, a literal C<"{"> immediately following a C<"\b"> | |
857 | (not in a bracketed character class) or a C<"\B{"> is now deprecated | |
858 | to allow for its future use by Perl itself. | |
859 | ||
5076a392 FC |
860 | =head2 Deprecation warning added for deprecated-in-core .pl libs |
861 | ||
862 | This is a mandatory warning, not obeying -X or lexical warning bits. | |
863 | The warning is modelled on that supplied by deprecate.pm for | |
864 | deprecated-in-core .pm libraries. It points to the specific CPAN | |
823d0e46 FC |
865 | distribution that contains the .pl libraries. The CPAN version, of |
866 | course, does not generate the warning. | |
5076a392 FC |
867 | |
868 | =head2 List assignment to C<$[> | |
869 | ||
823d0e46 FC |
870 | Assignment to C<$[> was deprecated and started to give warnings in |
871 | Perl version 5.12.0. This version of perl also starts to emit a warning when | |
872 | assigning to C<$[> in list context. This fixes an oversight in 5.12.0. | |
5076a392 FC |
873 | |
874 | =head2 Use of qw(...) as parentheses | |
875 | ||
876 | Historically the parser fooled itself into thinking that C<qw(...)> literals | |
877 | were always enclosed in parentheses, and as a result you could sometimes omit | |
878 | parentheses around them: | |
879 | ||
880 | for $x qw(a b c) { ... } | |
881 | ||
882 | The parser no longer lies to itself in this way. Wrap the list literal in | |
823d0e46 | 883 | parentheses, like this: |
5076a392 FC |
884 | |
885 | for $x (qw(a b c)) { ... } | |
886 | ||
887 | =head2 C<\N{BELL}> is deprecated | |
888 | ||
889 | This is because Unicode is using that name for a different character. | |
890 | See L</Unicode Version 6.0 is now supported (mostly)> for more | |
891 | explanation. | |
892 | ||
893 | =head2 C<?PATTERN?> is deprecated | |
894 | ||
895 | C<?PATTERN?> (without the initial m) has been deprecated and now produces | |
896 | a warning. This is to allow future use of C<?> in new operators. | |
897 | The match-once functionality is still available in the form of C<m?PATTERN?>. | |
898 | ||
5076a392 FC |
899 | =head2 Tie functions on scalars holding typeglobs |
900 | ||
901 | Calling a tie function (C<tie>, C<tied>, C<untie>) with a scalar argument | |
902 | acts on a file handle if the scalar happens to hold a typeglob. | |
903 | ||
904 | This is a long-standing bug that will be removed in Perl 5.16, as | |
905 | there is currently no way to tie the scalar itself when it holds | |
906 | a typeglob, and no way to untie a scalar that has had a typeglob | |
907 | assigned to it. | |
908 | ||
823d0e46 | 909 | Now there is a deprecation warning whenever a tie |
5076a392 FC |
910 | function is used on a handle without an explicit C<*>. |
911 | ||
18139a1b | 912 | =head2 User-defined case-mapping |
5076a392 | 913 | |
18139a1b FC |
914 | This feature is being deprecated due to its many issues, as documented in |
915 | L<perlunicode/User-Defined Case Mappings (for serious hackers only)>. | |
e48f36f0 KW |
916 | It is planned to remove this feature in Perl 5.16. Instead use the CPAN module |
917 | L<Unicode::Casing>, which provides improved functionality. | |
823d0e46 | 918 | |
18139a1b | 919 | =head2 Deprecated modules |
5076a392 FC |
920 | |
921 | The following modules will be removed from the core distribution in a | |
922 | future release, and should be installed from CPAN instead. Distributions | |
923 | on CPAN which require these should add them to their prerequisites. The | |
823d0e46 | 924 | core versions of these modules will issue a deprecation warning. |
5076a392 FC |
925 | |
926 | If you ship a packaged version of Perl, either alone or as part of a | |
927 | larger system, then you should carefully consider the repercussions of | |
823d0e46 | 928 | core module deprecations. You may want to consider shipping your default |
5076a392 | 929 | build of Perl with packages for some or all deprecated modules which |
823d0e46 | 930 | install into C<vendor> or C<site> perl library directories. This will |
5076a392 FC |
931 | inhibit the deprecation warnings. |
932 | ||
933 | Alternatively, you may want to consider patching F<lib/deprecate.pm> | |
934 | to provide deprecation warnings specific to your packaging system | |
935 | or distribution of Perl, consistent with how your packaging system | |
936 | or distribution manages a staged transition from a release where the | |
937 | installation of a single package provides the given functionality, to | |
938 | a later release where the system administrator needs to know to install | |
939 | multiple packages to get that same functionality. | |
940 | ||
941 | You can silence these deprecation warnings by installing the modules | |
942 | in question from CPAN. To install the latest version of all of them, | |
943 | just install C<Task::Deprecations::5_14>. | |
944 | ||
945 | =over | |
946 | ||
947 | =item L<Devel::DProf> | |
948 | ||
949 | We strongly recommend that you install and used L<Devel::NYTProf> in | |
950 | preference, as it offers significantly improved profiling and reporting. | |
951 | ||
952 | =back | |
953 | ||
5076a392 FC |
954 | =head1 Performance Enhancements |
955 | ||
54c7bb16 | 956 | =head2 "Safe signals" optimisation |
df91d470 FC |
957 | |
958 | Signal dispatch has been moved from the runloop into control ops. This | |
959 | should give a few percent speed increase, and eliminates almost all of | |
960 | the speed penalty caused by the introduction of "safe signals" in | |
961 | 5.8.0. Signals should still be dispatched within the same statement as | |
962 | they were previously - if this is not the case, or it is possible to | |
963 | create uninterruptible loops, this is a bug, and reports are encouraged | |
964 | of how to recreate such issues. | |
965 | ||
54c7bb16 | 966 | =head2 Optimisation of shift; and pop; calls without arguments |
df91d470 | 967 | |
111b6aa7 FC |
968 | Two fewer OPs are used for shift and pop calls with no argument (with |
969 | implicit C<@_>). This change makes C<shift;> 5% faster than C<shift @_;> | |
970 | on non-threaded perls and 25% faster on threaded. | |
df91d470 | 971 | |
fa232254 | 972 | =head2 Optimisation of regexp engine string comparison work |
df91d470 | 973 | |
fa232254 FC |
974 | The foldEQ_utf8 API function for case-insensitive comparison of strings (which |
975 | is used heavily by the regexp engine) was substantially refactored and | |
976 | optimised - and its documentation much improved as a free bonus gift. | |
df91d470 | 977 | |
fa232254 | 978 | =head2 Regular expression compilation speed-up |
df91d470 | 979 | |
fa232254 FC |
980 | Compiling regular expressions has been made faster for the case where upgrading |
981 | the regex to utf8 is necessary but that isn't known when the compilation begins. | |
df91d470 | 982 | |
fa232254 | 983 | =head2 String appending is 100 times faster |
df91d470 | 984 | |
fa232254 FC |
985 | When doing a lot of string appending, perl could end up allocating a lot more |
986 | memory than needed in a very inefficient way, if perl was configured to use the | |
987 | system's C<malloc> implementation instead of its own. | |
988 | ||
989 | C<sv_grow>, which is what's being used to allocate more memory if necessary | |
990 | when appending to a string, has now been taught how to round up the memory | |
991 | it requests to a certain geometric progression, making it much faster on | |
992 | certain platforms and configurations. On Win32, it's now about 100 times | |
993 | faster. | |
994 | ||
995 | =head2 Eliminate C<PL_*> accessor functions under ithreads | |
996 | ||
997 | When C<MULTIPLICITY> was first developed, and interpreter state moved into | |
998 | an interpreter struct, thread and interpreter local C<PL_*> variables were | |
999 | defined as macros that called accessor functions, returning the address of | |
1000 | the value, outside of the perl core. The intent was to allow members | |
1001 | within the interpreter struct to change size without breaking binary | |
1002 | compatibility, so that bug fixes could be merged to a maintenance branch | |
1003 | that necessitated such a size change. | |
1004 | ||
1005 | However, some non-core code defines C<PERL_CORE>, sometimes intentionally | |
1006 | to bypass this mechanism for speed reasons, sometimes for other reasons but | |
1007 | with the inadvertent side effect of bypassing this mechanism. As some of | |
1008 | this code is widespread in production use, the result is that the core | |
1009 | I<can't> change the size of members of the interpreter struct, as it will | |
1010 | break such modules compiled against a previous release on that maintenance | |
1011 | branch. The upshot is that this mechanism is redundant, and well-behaved | |
1012 | code is penalised by it. Hence it can and should be removed (and has | |
1013 | been). | |
1014 | ||
1015 | =head2 Freeing weak references | |
1016 | ||
1017 | When an object has many weak references to it, freeing that object | |
1018 | can under some some circumstances take O(N^2) time to free (where N is the | |
1019 | number of references). The number of circumstances has been reduced | |
1020 | [perl #75254] | |
1021 | ||
1022 | =head2 Lexical array and hash assignments | |
1023 | ||
1024 | An earlier optimisation to speed up C<my @array = ...> and | |
1025 | C<my %hash = ...> assignments caused a bug and was disabled in Perl 5.12.0. | |
1026 | ||
1027 | Now we have found another way to speed up these assignments [perl #82110]. | |
df91d470 | 1028 | |
111b6aa7 | 1029 | =head2 C<@_> uses less memory |
df91d470 | 1030 | |
111b6aa7 FC |
1031 | Previously, C<@_> was allocated for every subroutine at compile time with |
1032 | enough space for four entries. Now this allocation is done on demand when | |
1033 | the subroutine is called [perl #72416]. | |
5076a392 | 1034 | |
5076a392 FC |
1035 | =head2 Size optimisations to SV and HV structures |
1036 | ||
1037 | xhv_fill has been eliminated from struct xpvhv, saving 1 IV per hash and | |
111b6aa7 | 1038 | on some systems will cause struct xpvhv to become cache-aligned. To avoid |
5076a392 FC |
1039 | this memory saving causing a slowdown elsewhere, boolean use of HvFILL |
1040 | now calls HvTOTALKEYS instead (which is equivalent) - so while the fill | |
111b6aa7 FC |
1041 | data when actually required are now calculated on demand, the cases when |
1042 | this needs to be done should be few and far between. | |
5076a392 | 1043 | |
111b6aa7 FC |
1044 | The order of structure elements in SV bodies has changed. Effectively, |
1045 | the NV slot has swapped location with STASH and MAGIC. As all access to | |
1046 | SV members is via macros, this should be completely transparent. This | |
5076a392 FC |
1047 | change allows the space saving for PVHVs documented above, and may reduce |
1048 | the memory allocation needed for PVIVs on some architectures. | |
1049 | ||
fa232254 FC |
1050 | C<XPV>, C<XPVIV>, and C<XPVNV> now only allocate the parts of the C<SV> body |
1051 | they actually use, saving some space. | |
5076a392 | 1052 | |
fa232254 FC |
1053 | Scalars containing regular expressions now only allocate the part of the C<SV> |
1054 | body they actually use, saving some space. | |
5076a392 FC |
1055 | |
1056 | =head2 Memory consumption improvements to Exporter | |
1057 | ||
1058 | The @EXPORT_FAIL AV is no longer created unless required, hence neither is | |
111b6aa7 FC |
1059 | the typeglob backing it. This saves about 200 bytes for every package that |
1060 | uses Exporter but doesn't use this functionality. | |
5076a392 | 1061 | |
111b6aa7 | 1062 | =head2 Memory savings for weak references |
5076a392 FC |
1063 | |
1064 | For weak references, the common case of just a single weak reference per | |
1065 | referent has been optimised to reduce the storage required. In this case it | |
111b6aa7 | 1066 | saves the equivalent of one small Perl array per referent. |
5076a392 | 1067 | |
111b6aa7 | 1068 | =head2 C<%+> and C<%-> use less memory |
5076a392 FC |
1069 | |
1070 | The bulk of the C<Tie::Hash::NamedCapture> module used to be in the perl | |
111b6aa7 | 1071 | core. It has now been moved to an XS module, to reduce the overhead for |
5076a392 FC |
1072 | programs that do not use C<%+> or C<%->. |
1073 | ||
fa232254 | 1074 | =head2 Multiple small improvements to threads |
5076a392 | 1075 | |
fa232254 FC |
1076 | The internal structures of threading now make fewer API calls and fewer |
1077 | allocations, resulting in noticeably smaller object code. Additionally, | |
1078 | many thread context checks have been deferred so that they're only done | |
1079 | when required (although this is only possible for non-debugging builds). | |
5076a392 | 1080 | |
fa232254 | 1081 | =head2 Adjacent pairs of nextstate opcodes are now optimized away |
5076a392 | 1082 | |
fa232254 | 1083 | Previously, in code such as |
5076a392 | 1084 | |
fa232254 | 1085 | use constant DEBUG => 0; |
5076a392 | 1086 | |
fa232254 FC |
1087 | sub GAK { |
1088 | warn if DEBUG; | |
1089 | print "stuff\n"; | |
1090 | } | |
5076a392 | 1091 | |
fa232254 FC |
1092 | the ops for C<warn if DEBUG;> would be folded to a C<null> op (C<ex-const>), but |
1093 | the C<nextstate> op would remain, resulting in a runtime op dispatch of | |
1094 | C<nextstate>, C<nextstate>, .... | |
5076a392 | 1095 | |
fa232254 FC |
1096 | The execution of a sequence of C<nextstate> ops is indistinguishable from just |
1097 | the last C<nextstate> op so the peephole optimizer now eliminates the first of | |
1098 | a pair of C<nextstate> ops, except where the first carries a label, since labels | |
1099 | must not be eliminated by the optimizer and label usage isn't conclusively known | |
1100 | at compile time. | |
5076a392 FC |
1101 | |
1102 | =head1 Modules and Pragmata | |
1103 | ||
1104 | =head2 New Modules and Pragmata | |
1105 | ||
1106 | =over 4 | |
1107 | ||
1108 | =item * | |
1109 | ||
1110 | C<CPAN::Meta::YAML> 0.003 has been added as a dual-life module. It supports a | |
1111 | subset of YAML sufficient for reading and writing META.yml and MYMETA.yml files | |
1112 | included with CPAN distributions or generated by the module installation | |
1113 | toolchain. It should not be used for any other general YAML parsing or | |
1114 | generation task. | |
1115 | ||
1116 | =item * | |
1117 | ||
1118 | C<CPAN::Meta> version 2.110440 has been added as a dual-life module. It | |
1119 | provides a standard library to read, interpret and write CPAN distribution | |
1120 | metadata files (e.g. META.json and META.yml) which describes a | |
1121 | distribution, its contents, and the requirements for building it and | |
1122 | installing it. The latest CPAN distribution metadata specification is | |
1123 | included as C<CPAN::Meta::Spec> and notes on changes in the specification | |
1124 | over time are given in C<CPAN::Meta::History>. | |
1125 | ||
1126 | =item * | |
1127 | ||
5a553547 | 1128 | C<HTTP::Tiny> 0.011 has been added as a dual-life module. It is a very |
5076a392 FC |
1129 | small, simple HTTP/1.1 client designed for simple GET requests and file |
1130 | mirroring. It has has been added to enable CPAN.pm and CPANPLUS to | |
1131 | "bootstrap" HTTP access to CPAN using pure Perl without relying on external | |
1132 | binaries like F<curl> or F<wget>. | |
1133 | ||
1134 | =item * | |
1135 | ||
1136 | C<JSON::PP> 2.27105 has been added as a dual-life module, for the sake of | |
1137 | reading F<META.json> files in CPAN distributions. | |
1138 | ||
1139 | =item * | |
1140 | ||
21ef4e45 | 1141 | C<Module::Metadata> 1.000004 has been added as a dual-life module. It gathers |
5076a392 FC |
1142 | package and POD information from Perl module files. It is a standalone module |
1143 | based on Module::Build::ModuleInfo for use by other module installation | |
1144 | toolchain components. Module::Build::ModuleInfo has been deprecated in | |
1145 | favor of this module instead. | |
1146 | ||
1147 | =item * | |
1148 | ||
1149 | C<Perl::OSType> 1.002 has been added as a dual-life module. It maps Perl | |
1150 | operating system names (e.g. 'dragonfly' or 'MSWin32') to more generic types | |
1151 | with standardized names (e.g. "Unix" or "Windows"). It has been refactored | |
1152 | out of Module::Build and ExtUtils::CBuilder and consolidates such mappings into | |
1153 | a single location for easier maintenance. | |
1154 | ||
1155 | =item * | |
1156 | ||
1157 | The following modules were added by the C<Unicode::Collate> | |
1158 | upgrade. See below for details. | |
1159 | ||
1160 | C<Unicode::Collate::CJK::Big5> | |
1161 | ||
1162 | C<Unicode::Collate::CJK::GB2312> | |
1163 | ||
1164 | C<Unicode::Collate::CJK::JISX0208> | |
1165 | ||
1166 | C<Unicode::Collate::CJK::Korean> | |
1167 | ||
1168 | C<Unicode::Collate::CJK::Pinyin> | |
1169 | ||
1170 | C<Unicode::Collate::CJK::Stroke> | |
1171 | ||
1172 | =item * | |
1173 | ||
1174 | C<Version::Requirements> version 0.101020 has been added as a dual-life | |
1175 | module. It provides a standard library to model and manipulates module | |
1176 | prerequisites and version constraints as defined in the L<CPAN::Meta::Spec>. | |
1177 | ||
1178 | =back | |
1179 | ||
a5794e94 | 1180 | =head2 Updated Modules and Pragma |
5076a392 FC |
1181 | |
1182 | =over 4 | |
1183 | ||
1184 | =item * | |
1185 | ||
81a53be2 FR |
1186 | C<attributes> has been upgraded from version 0.12 to 0.14. |
1187 | ||
1188 | =item * | |
1189 | ||
5076a392 FC |
1190 | C<Archive::Extract> has been upgraded from version 0.38 to 0.48. |
1191 | ||
1192 | Updates since 0.38 include: a safe print method that guards | |
1193 | Archive::Extract from changes to $\; a fix to the tests when run in core | |
1984204c FC |
1194 | perl; support for TZ files; a modification for the lzma |
1195 | logic to favour IO::Uncompress::Unlzma; and a fix | |
1196 | for an issue with NetBSD-current and its new unzip | |
5076a392 FC |
1197 | executable. |
1198 | ||
1199 | =item * | |
1200 | ||
1201 | C<Archive::Tar> has been upgraded from version 1.54 to 1.76. | |
1202 | ||
1984204c FC |
1203 | Important changes since 1.54 include the following: |
1204 | ||
1205 | =over | |
1206 | ||
1207 | =item * | |
1208 | ||
1209 | Compatibility with busybox implementations of tar | |
1210 | ||
1211 | =item * | |
1212 | ||
1213 | A fix so that C<write()> and C<create_archive()> | |
1214 | close only handles they opened | |
1215 | ||
1216 | =item * | |
1217 | ||
1218 | A bug was fixed regarding the exit code of extract_archive. | |
5076a392 | 1219 | |
1984204c FC |
1220 | =item * |
1221 | ||
4f978a3b | 1222 | The C<ptar> utility has a new option to allow safe |
5076a392 FC |
1223 | creation of tarballs without world-writable files on Windows, allowing those |
1224 | archives to be uploaded to CPAN. | |
1225 | ||
1984204c FC |
1226 | =item * |
1227 | ||
1228 | A new ptargrep utility for using regular expressions against | |
5076a392 FC |
1229 | the contents of files in a tar archive. |
1230 | ||
1984204c FC |
1231 | =item * |
1232 | ||
1233 | Pax extended headers are now skipped. | |
1234 | ||
1235 | =back | |
5076a392 FC |
1236 | |
1237 | =item * | |
1238 | ||
fcd5df6d FR |
1239 | C<Attribute::Handlers> has been upgraded from version 0.87 to 0.89. |
1240 | ||
1241 | =item * | |
1242 | ||
3f5a47e4 FR |
1243 | C<autodie> has been upgraded from version 2.06_01 to 2.1001. |
1244 | ||
1245 | =item * | |
1246 | ||
578e7c9d FR |
1247 | C<AutoLoader> has been upgraded from version 5.70 to 5.71. |
1248 | ||
1249 | =item * | |
1250 | ||
a13baafd | 1251 | C<B> has been upgraded from version 1.23 to 1.29. |
5076a392 FC |
1252 | |
1253 | It no longer crashes when taking apart a C<y///> containing characters | |
1254 | outside the octet range or compiled in a C<use utf8> scope. | |
1255 | ||
1256 | The size of the shared object has been reduced by about 40%, with no | |
1257 | reduction in functionality. | |
1258 | ||
1259 | =item * | |
1260 | ||
4a75fbf5 | 1261 | C<B::Concise> has been upgraded from version 0.78 to 0.83. |
5076a392 FC |
1262 | |
1263 | B::Concise marks rv2sv, rv2av and rv2hv ops with the new OPpDEREF flag | |
1264 | as "DREFed". | |
1265 | ||
1266 | It no longer produces mangled output with the C<-tree> option | |
1267 | [perl #80632]. | |
1268 | ||
1269 | =item * | |
1270 | ||
6bb8c1e3 FR |
1271 | C<B::Debug> has been upgraded from version 1.12 to 1.16. |
1272 | ||
1273 | =item * | |
1274 | ||
c67a4e29 | 1275 | C<B::Deparse> has been upgraded from version 0.96 to 1.03. |
5076a392 | 1276 | |
1984204c | 1277 | The deparsing of a nextstate op has changed when it has both a |
5076a392 FC |
1278 | change of package (relative to the previous nextstate), or a change of |
1279 | C<%^H> or other state, and a label. Previously the label was emitted | |
cdc10f43 | 1280 | first, but now the label is emitted last (5.12.1). |
5076a392 | 1281 | |
5a553547 FC |
1282 | The C<no 5.13.2> or similar form is now correctly handled by B::Deparse |
1283 | (5.12.3). | |
5076a392 FC |
1284 | |
1285 | B::Deparse now properly handles the code that applies a conditional | |
1286 | pattern match against implicit C<$_> as it was fixed in [perl #20444]. | |
1287 | ||
1984204c FC |
1288 | Deparsing of C<our> followed by a variable with funny characters |
1289 | (as permitted under the C<utf8> pragma) has also been fixed [perl #33752]. | |
5076a392 FC |
1290 | |
1291 | =item * | |
1292 | ||
d97c5d3b FR |
1293 | C<B::Lint> has been upgraded from version 1.11_01 to 1.13. |
1294 | ||
1295 | =item * | |
1296 | ||
5aef2c44 FR |
1297 | C<base> has been upgraded from version 2.15 to 2.16. |
1298 | ||
1299 | =item * | |
1300 | ||
876607aa FR |
1301 | C<Benchmark> has been upgraded from version 1.11 to 1.12. |
1302 | ||
1303 | =item * | |
1304 | ||
e539ae69 FR |
1305 | C<bignum> has been upgraded from version 0.23 to 0.26. |
1306 | ||
1307 | =item * | |
1308 | ||
c74c1fa8 | 1309 | C<Carp> has been upgraded from version 1.15 to 1.20. |
5076a392 FC |
1310 | |
1311 | L<Carp> now detects incomplete L<caller()|perlfunc/"caller EXPR"> overrides and | |
d430b8e7 FC |
1312 | avoids using bogus C<@DB::args>. To provide backtraces, |
1313 | Carp relies on particular behaviour of the C<caller> | |
1314 | built-in. Carp now detects if other code has | |
5076a392 | 1315 | overridden this with an incomplete implementation, and modifies its backtrace |
d430b8e7 FC |
1316 | accordingly. Previously incomplete overrides would cause incorrect values |
1317 | in backtraces (best case), or obscure fatal errors (worst case). | |
5076a392 FC |
1318 | |
1319 | This fixes certain cases of C<Bizarre copy of ARRAY> caused by modules | |
d430b8e7 | 1320 | overriding C<caller()> incorrectly (5.12.2). |
5076a392 | 1321 | |
1984204c | 1322 | It now also avoids using regular expressions that cause perl to |
5076a392 FC |
1323 | load its Unicode tables, in order to avoid the 'BEGIN not safe after |
1324 | errors' error that will ensue if there has been a syntax error | |
1325 | [perl #82854]. | |
1326 | ||
1327 | =item * | |
1328 | ||
9eb7ad55 | 1329 | C<CGI> has been upgraded from version 3.48 to 3.52. |
5076a392 FC |
1330 | |
1331 | This provides the following security fixes: the MIME boundary in | |
1984204c FC |
1332 | multipart_init is now random and the handling of |
1333 | newlines embedded in header values has been improved. | |
5076a392 FC |
1334 | |
1335 | =item * | |
1336 | ||
5076a392 FC |
1337 | C<Compress::Raw::Bzip2> has been upgraded from version 2.024 to 2.033. |
1338 | ||
1984204c | 1339 | It has been updated to use bzip2 1.0.6. |
5076a392 FC |
1340 | |
1341 | =item * | |
1342 | ||
51090521 FR |
1343 | C<Compress::Raw::Zlib> has been upgraded from version 2.024 to 2.033. |
1344 | ||
1345 | =item * | |
1346 | ||
f75b7efc | 1347 | C<CPAN> has been upgraded from version 1.94_56 to 1.9600. |
1984204c FC |
1348 | |
1349 | Major highlights: | |
5076a392 FC |
1350 | |
1351 | =over 4 | |
1352 | ||
1984204c | 1353 | =item * much less configuration dialog hassle |
5076a392 | 1354 | |
1984204c | 1355 | =item * support for META/MYMETA.json |
5076a392 | 1356 | |
1984204c | 1357 | =item * support for local::lib |
5076a392 | 1358 | |
1984204c | 1359 | =item * support for HTTP::Tiny to reduce the dependency on ftp sites |
5076a392 | 1360 | |
1984204c | 1361 | =item * automatic mirror selection |
5076a392 | 1362 | |
1984204c | 1363 | =item * iron out all known bugs in configure_requires |
5076a392 | 1364 | |
1984204c FC |
1365 | =item * support for distributions compressed with bzip2 |
1366 | ||
1367 | =item * allow Foo/Bar.pm on the commandline to mean Foo::Bar | |
1368 | ||
1369 | =back | |
5076a392 FC |
1370 | |
1371 | =item * | |
1372 | ||
d430b8e7 FC |
1373 | C<CPANPLUS> has been upgraded from version 0.90 to 0.9103. |
1374 | ||
1375 | A change to F<cpanp-run-perl> | |
1376 | resolves L<RT #55964|http://rt.cpan.org/Public/Bug/Display.html?id=55964> | |
1377 | and L<RT #57106|http://rt.cpan.org/Public/Bug/Display.html?id=57106>, both | |
1378 | of which related to failures to install distributions that use | |
1379 | C<Module::Install::DSL> (5.12.2). | |
5076a392 | 1380 | |
1984204c FC |
1381 | A dependency on Config was not recognised as a |
1382 | core module dependency. This has been fixed. | |
5076a392 | 1383 | |
1984204c | 1384 | CPANPLUS now includes support for META.json and MYMETA.json. |
5076a392 FC |
1385 | |
1386 | =item * | |
1387 | ||
4467e8f7 FR |
1388 | C<CPANPLUS::Dist::Build> has been upgraded from version 0.46 to 0.54. |
1389 | ||
1390 | =item * | |
1391 | ||
5076a392 FC |
1392 | C<Data::Dumper> has been upgraded from version 2.125 to 2.130_02. |
1393 | ||
4ed2cea4 FC |
1394 | The indentation used to be off when C<$Data::Dumper::Terse> was set. This |
1395 | has been fixed [perl #73604]. | |
1396 | ||
1984204c FC |
1397 | This upgrade also fixes a crash when using custom sort functions that might |
1398 | cause the stack to change [perl #74170]. | |
5076a392 FC |
1399 | |
1400 | C<Dumpxs> no longer crashes with globs returned by C<*$io_ref> | |
1401 | [perl #72332]. | |
1402 | ||
1403 | =item * | |
1404 | ||
549d34f5 FR |
1405 | C<DB_File> has been upgraded from version 1.820 to 1.821. |
1406 | ||
1407 | =item * | |
1408 | ||
851dbda2 FR |
1409 | C<DBM_Filter> has been upgraded from version 0.03 to 0.04. |
1410 | ||
1411 | =item * | |
1412 | ||
5076a392 FC |
1413 | C<Devel::DProf> has been upgraded from version 20080331.00 to 20110228.00. |
1414 | ||
1415 | Merely loading C<Devel::DProf> now no longer triggers profiling to start. | |
1416 | C<use Devel::DProf> and C<perl -d:DProf ...> still behave as before and start | |
1417 | the profiler. | |
1418 | ||
1419 | NOTE: C<Devel::DProf> is deprecated and will be removed from a future | |
1984204c | 1420 | version of Perl. We strongly recommend that you install and use |
5076a392 FC |
1421 | L<Devel::NYTProf> instead, as it offers significantly improved |
1422 | profiling and reporting. | |
1423 | ||
1424 | =item * | |
1425 | ||
868625d2 FR |
1426 | C<Devel::Peek> has been upgraded from version 1.04 to 1.07. |
1427 | ||
1428 | =item * | |
1429 | ||
66899ca3 FR |
1430 | C<Devel::SelfStubber> has been upgraded from version 1.03 to 1.05. |
1431 | ||
1432 | =item * | |
1433 | ||
5076a392 FC |
1434 | C<diagnostics> has been upgraded from version 1.19 to 1.22. |
1435 | ||
1436 | It now renders pod links slightly better, and has been taught to find | |
1437 | descriptions for messages that share their descriptions with other | |
1438 | messages. | |
1439 | ||
1440 | =item * | |
1441 | ||
1442 | C<Digest::MD5> has been upgraded from version 2.39 to 2.51. | |
1443 | ||
1444 | It is now safe to use this module in combination with threads. | |
1445 | ||
1446 | =item * | |
1447 | ||
1448 | C<Digest::SHA> has been upgraded from version 5.47 to 5.61. | |
1449 | ||
1450 | C<shasum> now more closely mimics C<sha1sum>/C<md5sum>. | |
1451 | ||
1452 | C<Addfile> accepts all POSIX filenames. | |
1453 | ||
1984204c FC |
1454 | New SHA-512/224 and SHA-512/256 transforms (ref. NIST Draft FIPS 180-4 |
1455 | [February 2011]) | |
5076a392 FC |
1456 | |
1457 | =item * | |
1458 | ||
88410521 FR |
1459 | C<DirHandle> has been upgraded from version 1.03 to 1.04. |
1460 | ||
1461 | =item * | |
1462 | ||
e53cbaa3 FR |
1463 | C<Dumpvalue> has been upgraded from version 1.13 to 1.16. |
1464 | ||
1465 | =item * | |
1466 | ||
31e8b85a | 1467 | C<DynaLoader> has been upgraded from version 1.10 to 1.13. |
5076a392 FC |
1468 | |
1469 | It fixes a buffer overflow when passed a very long file name. | |
1470 | ||
1471 | It no longer inherits from AutoLoader; hence it no longer | |
1472 | produces weird error messages for unsuccessful method calls on classes that | |
1473 | inherit from DynaLoader [perl #84358]. | |
1474 | ||
1475 | =item * | |
1476 | ||
1477 | C<Encode> has been upgraded from version 2.39 to 2.42. | |
1478 | ||
1479 | Now, all 66 Unicode non-characters are treated the same way U+FFFF has | |
1984204c FC |
1480 | always been treated; in cases when it was disallowed, all 66 are |
1481 | disallowed; in those cases where it warned, all 66 warn. | |
5076a392 FC |
1482 | |
1483 | =item * | |
1484 | ||
68f90ac3 FR |
1485 | C<Env> has been upgraded from version 1.01 to 1.02. |
1486 | ||
1487 | =item * | |
1488 | ||
5076a392 FC |
1489 | C<Errno> has been upgraded from version 1.11 to 1.13. |
1490 | ||
1491 | The implementation of C<Errno> has been refactored to use about 55% less memory. | |
5076a392 FC |
1492 | |
1493 | On some platforms with unusual header files, like Win32/gcc using mingw64 | |
1494 | headers, some constants which weren't actually error numbers have been exposed | |
1495 | by C<Errno>. This has been fixed [perl #77416]. | |
1496 | ||
1497 | =item * | |
1498 | ||
1499 | C<Exporter> has been upgraded from version 5.64_01 to 5.64_03. | |
1500 | ||
1501 | Exporter no longer overrides C<$SIG{__WARN__}> [perl #74472] | |
1502 | ||
1503 | =item * | |
1504 | ||
25fe7f8f FR |
1505 | C<ExtUtils::CBuilder> has been upgraded from version 0.27 to 0.280202. |
1506 | ||
1507 | =item * | |
1508 | ||
2292e71e FR |
1509 | C<ExtUtils::Command> has been upgraded from version 1.16 to 1.17. |
1510 | ||
1511 | =item * | |
1512 | ||
5076a392 FC |
1513 | C<ExtUtils::Constant> has been upgraded from 0.22 to 0.23. |
1514 | ||
1515 | The C<AUTOLOAD> helper code generated by C<ExtUtils::Constant::ProxySubs> | |
1516 | can now C<croak> for missing constants, or generate a complete C<AUTOLOAD> | |
1984204c FC |
1517 | subroutine in XS, allowing simplification of many modules that use it |
1518 | (C<Fcntl>, C<File::Glob>, C<GDBM_File>, C<I18N::Langinfo>, C<POSIX>, | |
1519 | C<Socket>). | |
5076a392 FC |
1520 | |
1521 | C<ExtUtils::Constant::ProxySubs> can now optionally push the names of all | |
1984204c | 1522 | constants onto the package's C<@EXPORT_OK>. |
5076a392 FC |
1523 | |
1524 | =item * | |
1525 | ||
588c5853 FR |
1526 | C<ExtUtils::Install> has been upgraded from version 1.55 to 1.56. |
1527 | ||
1528 | =item * | |
1529 | ||
5418ffb3 FR |
1530 | C<ExtUtils::MakeMaker> has been upgraded from version 6.56 to 6.57_05. |
1531 | ||
1532 | =item * | |
1533 | ||
f40ab45f FR |
1534 | C<ExtUtils::Manifest> has been upgraded from version 1.57 to 1.58. |
1535 | ||
1536 | =item * | |
1537 | ||
b7064dd7 FR |
1538 | C<ExtUtils::ParseXS> has been upgraded from version 2.21 to 2.2209. |
1539 | ||
1540 | =item * | |
1541 | ||
8b87be80 FR |
1542 | C<Fcntl> has been upgraded from version 1.06 to 1.11. |
1543 | ||
1544 | =item * | |
1545 | ||
05102622 FR |
1546 | C<File::CheckTree> has been upgraded from version 4.4 to 4.41. |
1547 | ||
1548 | =item * | |
1549 | ||
e12786fa | 1550 | C<File::DosGlob> has been upgraded from version 1.01 to 1.04. |
5076a392 FC |
1551 | |
1552 | It allows patterns containing literal parentheses (they no longer need to | |
1984204c FC |
1553 | be escaped). On Windows, it no longer |
1554 | adds an extra F<./> to the file names | |
5076a392 FC |
1555 | returned when the pattern is a relative glob with a drive specification, |
1556 | like F<c:*.pl> [perl #71712]. | |
1557 | ||
1558 | =item * | |
1559 | ||
1560 | C<File::Fetch> has been upgraded from version 0.24 to 0.32. | |
1561 | ||
1562 | C<HTTP::Lite> is now supported for 'http' scheme. | |
1563 | ||
1564 | The C<fetch> utility is supported on FreeBSD, NetBSD and | |
1565 | Dragonfly BSD for the C<http> and C<ftp> schemes. | |
1566 | ||
1567 | =item * | |
1568 | ||
23f2cbb1 | 1569 | C<File::Find> has been upgraded from version 1.15 to 1.19. |
5076a392 | 1570 | |
1984204c | 1571 | It improves handling of backslashes on Windows, so that paths like |
5076a392 FC |
1572 | F<c:\dir\/file> are no longer generated [perl #71710]. |
1573 | ||
1574 | =item * | |
1575 | ||
0ae9f678 FR |
1576 | C<File::Glob> has been upgraded from version 1.07 to 1.12. |
1577 | ||
1578 | =item * | |
1579 | ||
d430b8e7 FC |
1580 | C<File::Spec> has been upgraded from version 3.31 to 3.33. |
1581 | ||
1582 | Several portability fixes were made in C<File::Spec::VMS>: a colon is now | |
1583 | recognized as a delimiter in native filespecs; caret-escaped delimiters are | |
1584 | recognized for better handling of extended filespecs; C<catpath()> returns | |
1585 | an empty directory rather than the current directory if the input directory | |
1586 | name is empty; C<abs2rel()> properly handles Unix-style input (5.12.2). | |
1587 | ||
1588 | =item * | |
1589 | ||
46ba0657 | 1590 | C<File::stat> has been upgraded from 1.02 to 1.05. |
5076a392 FC |
1591 | |
1592 | The C<-x> and C<-X> file test operators now work correctly under the root | |
1593 | user. | |
1594 | ||
1595 | =item * | |
1596 | ||
b7edcc3c FR |
1597 | C<Filter::Simple> has been upgraded from version 0.84 to 0.86. |
1598 | ||
1599 | =item * | |
1600 | ||
dc6857fd | 1601 | C<GDBM_File> has been upgraded from 1.10 to 1.14. |
5076a392 FC |
1602 | |
1603 | This fixes a memory leak when DBM filters are used. | |
1604 | ||
1605 | =item * | |
1606 | ||
6e107b45 | 1607 | C<Hash::Util> has been upgraded from 0.07 to 0.11. |
5076a392 | 1608 | |
1984204c FC |
1609 | Hash::Util no longer emits spurious "uninitialized" warnings when |
1610 | recursively locking hashes that have undefined values [perl #74280]. | |
5076a392 FC |
1611 | |
1612 | =item * | |
1613 | ||
89ce9b34 FR |
1614 | C<Hash::Util::FieldHash> has been upgraded from version 1.04 to 1.09. |
1615 | ||
1616 | =item * | |
1617 | ||
eec33fe6 FR |
1618 | C<I18N::Collate> has been upgraded from version 1.01 to 1.02. |
1619 | ||
1620 | =item * | |
1621 | ||
ad5f8f47 | 1622 | C<I18N::Langinfo> has been upgraded from version 0.03 to 0.08. |
5076a392 FC |
1623 | |
1624 | C<langinfo()> now defaults to using C<$_> if there is no argument given, just | |
5334145a | 1625 | as the documentation has always claimed. |
5076a392 FC |
1626 | |
1627 | =item * | |
1628 | ||
c41635f7 FR |
1629 | C<I18N::LangTags> has been upgraded from version 0.35 to 0.35_01. |
1630 | ||
1631 | =item * | |
1632 | ||
98a6a4ff FR |
1633 | C<if> has been upgraded from version 0.05 to 0.0601. |
1634 | ||
1635 | =item * | |
1636 | ||
f6ff7fb6 FR |
1637 | C<IO> has been upgraded from version 1.25_02 to 1.25_04. |
1638 | ||
1639 | =item * | |
1640 | ||
d13528c5 | 1641 | C<IO::Select> has been upgraded from version 1.17 to 1.20. |
5076a392 FC |
1642 | |
1643 | It now allows IO::Handle objects (and objects in derived classes) to be | |
1644 | removed from an IO::Select set even if the underlying file descriptor is | |
1645 | closed or invalid. | |
1646 | ||
1647 | =item * | |
1648 | ||
d07561d3 | 1649 | C<IPC::Cmd> has been upgraded from version 0.54 to 0.70. |
5076a392 | 1650 | |
1984204c FC |
1651 | Resolves an issue with splitting Win32 command lines. An argument |
1652 | consisting of the single character "0" used to be omitted (CPAN RT #62961). | |
5076a392 FC |
1653 | |
1654 | =item * | |
1655 | ||
3f16e4eb | 1656 | C<IPC::Open3> has been upgraded from 1.05 to 1.09. |
5076a392 | 1657 | |
4ed2cea4 FC |
1658 | C<open3> now produces an error if the C<exec> call fails, allowing this |
1659 | condition to be distinguished from a child process that exited with a | |
1660 | non-zero status [perl #72016]. | |
1661 | ||
5076a392 FC |
1662 | The internal C<xclose> routine now knows how to handle file descriptors, as |
1663 | documented, so duplicating STDIN in a child process using its file | |
1664 | descriptor now works [perl #76474]. | |
1665 | ||
1666 | =item * | |
1667 | ||
c8b41807 FR |
1668 | C<IPC::SysV> has been upgraded from version 2.01 to 2.03. |
1669 | ||
1670 | =item * | |
1671 | ||
ef79f038 FR |
1672 | C<lib> has been upgraded from version 0.62 to 0.63. |
1673 | ||
1674 | =item * | |
1675 | ||
5b1884f4 | 1676 | C<Locale::Maketext> has been upgraded from version 1.14 to 1.19. |
5076a392 | 1677 | |
1984204c | 1678 | Locale::Maketext now supports external caches. |
5076a392 | 1679 | |
1984204c FC |
1680 | This upgrade also fixes an infinite loop in |
1681 | C<Locale::Maketext::Guts::_compile()> when | |
5076a392 FC |
1682 | working with tainted values (CPAN RT #40727). |
1683 | ||
1984204c | 1684 | C<< ->maketext >> calls will now back up and restore C<$@> so that error |
5076a392 FC |
1685 | messages are not suppressed (CPAN RT #34182). |
1686 | ||
1687 | =item * | |
1688 | ||
3811bd2b FR |
1689 | C<Log::Message> has been upgraded from version 0.02 to 0.04. |
1690 | ||
1691 | =item * | |
1692 | ||
8eb65377 FR |
1693 | C<Log::Message::Simple> has been upgraded from version 0.06 to 0.08. |
1694 | ||
1695 | =item * | |
1696 | ||
5076a392 FC |
1697 | C<Math::BigInt> has been upgraded from version 1.89_01 to 1.994. |
1698 | ||
1699 | This fixes, among other things, incorrect results when computing binomial | |
1700 | coefficients [perl #77640]. | |
1701 | ||
1984204c | 1702 | It also prevents C<sqrt($int)> from crashing under C<use bigrat;> |
5076a392 FC |
1703 | [perl #73534]. |
1704 | ||
1705 | =item * | |
1706 | ||
846c1cec FR |
1707 | C<Math::BigInt::FastCalc> has been upgraded from version 0.19 to 0.28. |
1708 | ||
1709 | =item * | |
1710 | ||
fce4aef3 FR |
1711 | C<Math::BigRat> has been upgraded from version 0.24 to 0.26_02. |
1712 | ||
1713 | =item * | |
1714 | ||
12e26027 FR |
1715 | C<Memoize> has been upgraded from version 1.01_03 to 1.02. |
1716 | ||
1717 | =item * | |
1718 | ||
5076a392 FC |
1719 | C<MIME::Base64> has been upgraded from 3.08 to 3.13. |
1720 | ||
1721 | Includes new functions to calculate the length of encoded and decoded | |
1722 | base64 strings. | |
1723 | ||
1724 | Now provides C<encode_base64url> and C<decode_base64url> functions to process | |
1725 | the base64 scheme for "URL applications". | |
1726 | ||
1727 | =item * | |
1728 | ||
1729 | C<Module::Build> has been upgraded from version 0.3603 to 0.3800. | |
1730 | ||
1731 | A notable change is the deprecation of several modules. | |
1732 | Module::Build::Version has been deprecated and Module::Build now relies | |
1733 | directly upon L<version>. Module::Build::ModuleInfo has been deprecated in | |
1734 | favor of a standalone copy of it called L<Module::Metadata>. | |
1735 | Module::Build::YAML has been deprecated in favor of L<CPAN::Meta::YAML>. | |
1736 | ||
1737 | Module::Build now also generates META.json and MYMETA.json files | |
1738 | in accordance with version 2 of the CPAN distribution metadata specification, | |
1739 | L<CPAN::Meta::Spec>. The older format META.yml and MYMETA.yml files are | |
1740 | still generated, as well. | |
1741 | ||
1742 | =item * | |
1743 | ||
7259fe26 | 1744 | C<Module::CoreList> has been upgraded from version 2.29 to 2.47. |
5076a392 FC |
1745 | |
1746 | Besides listing the updated core modules of this release, it also stops listing | |
1984204c | 1747 | the C<Filespec> module. That module never existed in core. The scripts |
5076a392 | 1748 | generating C<Module::CoreList> confused it with C<VMS::Filespec>, which actually |
1984204c | 1749 | is a core module as of perl 5.8.7. |
5076a392 FC |
1750 | |
1751 | =item * | |
1752 | ||
193af05b FR |
1753 | C<Module::Load> has been upgraded from version 0.16 to 0.18. |
1754 | ||
1755 | =item * | |
1756 | ||
5b3a054f FR |
1757 | C<Module::Load::Conditional> has been upgraded from version 0.34 to 0.44. |
1758 | ||
1759 | =item * | |
1760 | ||
01835e3a FR |
1761 | C<mro> has been upgraded from version 1.02 to 1.07. |
1762 | ||
1763 | =item * | |
1764 | ||
bfe7bf96 | 1765 | C<NDBM_File> has been upgraded from version 1.08 to 1.12. |
4f978a3b FR |
1766 | |
1767 | This fixes a memory leak when DBM filters are used. | |
1768 | ||
1769 | =item * | |
1770 | ||
d0aa5c91 FR |
1771 | C<Net::Ping> has been upgraded from version 2.36 to 2.38. |
1772 | ||
1773 | =item * | |
1774 | ||
d44b8a8c FR |
1775 | C<NEXT> has been upgraded from version 0.64 to 0.65. |
1776 | ||
1777 | =item * | |
1778 | ||
678d4fd4 FR |
1779 | C<Object::Accessor> has been upgraded from version 0.36 to 0.38. |
1780 | ||
1781 | =item * | |
1782 | ||
34188656 | 1783 | C<ODBM_File> have been upgraded from version 1.07 to 1.10. |
5076a392 FC |
1784 | |
1785 | This fixes a memory leak when DBM filters are used. | |
1786 | ||
1787 | =item * | |
1788 | ||
4c69840c FR |
1789 | C<Opcode> has been upgraded from version 1.15 to 1.18. |
1790 | ||
1791 | =item * | |
1792 | ||
77be713d | 1793 | C<overload> has been upgraded from 1.10 to 1.12. |
5076a392 FC |
1794 | |
1795 | C<overload::Method> can now handle subroutines that are themselves blessed | |
1796 | into overloaded classes [perl #71998]. | |
1797 | ||
5076a392 FC |
1798 | The documentation has greatly improved. See L</Documentation> below. |
1799 | ||
1800 | =item * | |
1801 | ||
f84c796e FR |
1802 | C<Params::Check> has been upgraded from version 0.26 to 0.28. |
1803 | ||
1804 | =item * | |
1805 | ||
550ee92b FR |
1806 | C<parent> has been upgraded from version 0.223 to 0.225. |
1807 | ||
1808 | =item * | |
1809 | ||
5076a392 FC |
1810 | C<Parse::CPAN::Meta> has been upgraded from version 1.40 to 1.4401. |
1811 | ||
1984204c | 1812 | The latest Parse::CPAN::Meta can now read YAML and JSON files using |
5076a392 FC |
1813 | L<CPAN::Meta::YAML> and L<JSON::PP>, which are now part of the Perl core. |
1814 | ||
1815 | =item * | |
1816 | ||
e981cf86 FR |
1817 | C<PerlIO::encoding> has been upgraded from version 0.12 to 0.14. |
1818 | ||
1819 | =item * | |
1820 | ||
5076a392 FC |
1821 | C<PerlIO::scalar> has been upgraded from 0.07 to 0.11. |
1822 | ||
1823 | A C<read> after a C<seek> beyond the end of the string no longer thinks it | |
1824 | has data to read [perl #78716]. | |
1825 | ||
1826 | =item * | |
1827 | ||
776f733b FR |
1828 | C<PerlIO::via> has been upgraded from version 0.09 to 0.11. |
1829 | ||
1830 | =item * | |
1831 | ||
ae9456cc FR |
1832 | C<Pod::Html> has been upgraded from version 1.09 to 1.1. |
1833 | ||
1834 | =item * | |
1835 | ||
be3c8498 FR |
1836 | C<Pod::LaTeX> has been upgraded from version 0.58 to 0.59. |
1837 | ||
1838 | =item * | |
1839 | ||
fd8a2e89 FR |
1840 | C<Pod::Perldoc> has been upgraded from version 3.15_02 to 3.15_03. |
1841 | ||
1842 | =item * | |
1843 | ||
5bcb6583 FR |
1844 | C<Pod::Simple> has been upgraded from version 3.13 to 3.16. |
1845 | ||
1846 | =item * | |
1847 | ||
abb8c779 | 1848 | C<POSIX> has been upgraded from 1.19 to 1.24. |
5076a392 FC |
1849 | |
1850 | It now includes constants for POSIX signal constants. | |
1851 | ||
1852 | =item * | |
1853 | ||
1984204c | 1854 | C<re> has been upgraded from version 0.11 to 0.17. |
5076a392 FC |
1855 | |
1856 | New C<use re "/flags"> pragma | |
1857 | ||
5076a392 | 1858 | The C<regmust> function used to crash when called on a regular expression |
1984204c | 1859 | belonging to a pluggable engine. Now it croaks instead. |
5076a392 FC |
1860 | |
1861 | C<regmust> no longer leaks memory. | |
1862 | ||
1863 | =item * | |
1864 | ||
1865 | C<Safe> has been upgraded from version 2.25 to 2.29. | |
1866 | ||
cdc10f43 FC |
1867 | Coderefs returned by C<reval()> and C<rdo()> are now wrapped via |
1868 | C<wrap_code_refs> (5.12.1). | |
1869 | ||
5076a392 FC |
1870 | This fixes a possible infinite loop when looking for coderefs. |
1871 | ||
cdc10f43 | 1872 | It adds several version::vxs::* routines to the default share. |
5076a392 FC |
1873 | |
1874 | =item * | |
1875 | ||
2c19fa42 FR |
1876 | C<SDBM_File> has been upgraded from version 1.06 to 1.09. |
1877 | ||
1878 | =item * | |
1879 | ||
5076a392 FC |
1880 | C<SelfLoader> has been upgraded from 1.17 to 1.18. |
1881 | ||
1882 | It now works in taint mode [perl #72062]. | |
1883 | ||
1884 | =item * | |
1885 | ||
1886 | C<sigtrap> has been upgraded from version 1.04 to 1.05. | |
1887 | ||
1888 | It no longer tries to modify read-only arguments when generating a | |
1889 | backtrace [perl #72340]. | |
1890 | ||
1891 | =item * | |
1892 | ||
1984204c | 1893 | C<Socket> has been upgraded from version 1.87 to 1.94. |
5076a392 | 1894 | |
1984204c | 1895 | See L</IPv6 support>, above. |
5076a392 FC |
1896 | |
1897 | =item * | |
1898 | ||
1899 | C<Storable> has been upgraded from version 2.22 to 2.27. | |
1900 | ||
1901 | Includes performance improvement for overloaded classes. | |
1902 | ||
5076a392 | 1903 | This adds support for serialising code references that contain UTF-8 strings |
1984204c FC |
1904 | correctly. The Storable minor version |
1905 | number changed as a result, meaning that | |
5076a392 FC |
1906 | Storable users who set C<$Storable::accept_future_minor> to a C<FALSE> value |
1907 | will see errors (see L<Storable/FORWARD COMPATIBILITY> for more details). | |
1908 | ||
1909 | Freezing no longer gets confused if the Perl stack gets reallocated | |
1910 | during freezing [perl #80074]. | |
1911 | ||
1912 | =item * | |
1913 | ||
648c3d7d FR |
1914 | C<Sys::Hostname> has been upgraded from version 1.11 to 1.16. |
1915 | ||
1916 | =item * | |
1917 | ||
90c6e78f FR |
1918 | C<Term::ANSIColor> has been upgraded from version 2.02 to 3.00. |
1919 | ||
1920 | =item * | |
1921 | ||
d9f2f059 FR |
1922 | C<Term::UI> has been upgraded from version 0.20 to 0.26. |
1923 | ||
1924 | =item * | |
1925 | ||
80ebb519 FR |
1926 | C<Test::Harness> has been upgraded from version 3.17 to 3.23. |
1927 | ||
1928 | =item * | |
1929 | ||
5076a392 FC |
1930 | C<Test::Simple> has been upgraded from version 0.94 to 0.98. |
1931 | ||
1932 | Among many other things, subtests without a C<plan> or C<no_plan> now have an | |
1933 | implicit C<done_testing()> added to them. | |
1934 | ||
1935 | =item * | |
1936 | ||
5076a392 FC |
1937 | C<Thread::Semaphore> has been upgraded from version 2.09 to 2.12. |
1938 | ||
1984204c FC |
1939 | It provides two new methods that give more control over the decrementing of |
1940 | semaphores: C<down_nb> and C<down_force>. | |
5076a392 FC |
1941 | |
1942 | =item * | |
1943 | ||
f0d895e1 FR |
1944 | C<Thread::Queue> has been upgraded from version 2.11 to 2.12. |
1945 | ||
1946 | =item * | |
1947 | ||
1a6b954e FR |
1948 | C<threads> has been upgraded from version 1.75 to 1.83. |
1949 | ||
1950 | =item * | |
1951 | ||
55816daa FR |
1952 | C<threads::shared> has been upgraded from version 1.32 to 1.36. |
1953 | ||
1954 | =item * | |
1955 | ||
5076a392 FC |
1956 | C<Tie::Hash> has been upgraded from version 1.03 to 1.04. |
1957 | ||
1958 | Calling C<< Tie::Hash-E<gt>TIEHASH() >> used to loop forever. Now it C<croak>s. | |
1959 | ||
1960 | =item * | |
1961 | ||
f2adc546 FR |
1962 | C<Tie::Hash::NamedCapture> has been upgraded from version 0.06 to 0.08. |
1963 | ||
1964 | =item * | |
1965 | ||
ed68b07e FR |
1966 | C<Tie::RefHash> has been upgraded from version 1.38 to 1.39. |
1967 | ||
1968 | =item * | |
1969 | ||
bb3c221a FR |
1970 | C<Time::HiRes> has been upgraded from version 1.9719 to 1.9721_01. |
1971 | ||
1972 | =item * | |
1973 | ||
97fa568b FR |
1974 | C<Time::Local> has been upgraded from version 1.1901_01 to 1.2000. |
1975 | ||
1976 | =item * | |
1977 | ||
a83cb732 FR |
1978 | C<Time::Piece> has been upgraded from version 1.15_01 to 1.20_01. |
1979 | ||
1980 | =item * | |
1981 | ||
5076a392 FC |
1982 | C<Unicode::Collate> has been upgraded from version 0.52_01 to 0.73. |
1983 | ||
1984204c | 1984 | Unicode::Collate has been updated to use Unicode 6.0.0. |
5076a392 | 1985 | |
1984204c FC |
1986 | Unicode::Collate::Locale now supports a plethora of new locales: ar, be, |
1987 | bg, de__phonebook, hu, hy, kk, mk, nso, om, tn, vi, hr, ig, ja, ko, ru, sq, | |
1988 | se, sr, to, uk, zh, zh__big5han, zh__gb2312han, zh__pinyin and zh__stroke. | |
5076a392 FC |
1989 | |
1990 | The following modules have been added: | |
1991 | ||
1992 | C<Unicode::Collate::CJK::Big5> for C<zh__big5han> which makes | |
1993 | tailoring of CJK Unified Ideographs in the order of CLDR's big5han ordering. | |
1994 | ||
1995 | C<Unicode::Collate::CJK::GB2312> for C<zh__gb2312han> which makes | |
1996 | tailoring of CJK Unified Ideographs in the order of CLDR's gb2312han ordering. | |
1997 | ||
1998 | C<Unicode::Collate::CJK::JISX0208> which makes tailoring of 6355 kanji | |
1999 | (CJK Unified Ideographs) in the JIS X 0208 order. | |
2000 | ||
2001 | C<Unicode::Collate::CJK::Korean> which makes tailoring of CJK Unified Ideographs | |
2002 | in the order of CLDR's Korean ordering. | |
2003 | ||
2004 | C<Unicode::Collate::CJK::Pinyin> for C<zh__pinyin> which makes | |
2005 | tailoring of CJK Unified Ideographs in the order of CLDR's pinyin ordering. | |
2006 | ||
2007 | C<Unicode::Collate::CJK::Stroke> for C<zh__stroke> which makes | |
2008 | tailoring of CJK Unified Ideographs in the order of CLDR's stroke ordering. | |
2009 | ||
5076a392 FC |
2010 | This also sees the switch from using the pure-perl version of this |
2011 | module to the XS version. | |
2012 | ||
2013 | =item * | |
2014 | ||
ec52b54b FR |
2015 | C<Unicode::Normalize> has been upgraded from version 1.03 to 1.10. |
2016 | ||
2017 | =item * | |
2018 | ||
5076a392 FC |
2019 | C<Unicode::UCD> has been upgraded from version 0.27 to 0.32. |
2020 | ||
1984204c FC |
2021 | A new function, C<Unicode::UCD::num()>, has been added. This function |
2022 | returns the numeric value of the string passed it or C<undef> if the string | |
2023 | in its entirety has no "safe" numeric value. (For more detail, and for the | |
2024 | definition of "safe", see L<Unicode::UCD/num>.) | |
5076a392 | 2025 | |
1984204c | 2026 | This upgrade also includes a number of bug fixes: |
5076a392 FC |
2027 | |
2028 | =over 4 | |
2029 | ||
2030 | =item charinfo() | |
2031 | ||
2032 | =over 4 | |
2033 | ||
2034 | =item * | |
2035 | ||
2036 | It is now updated to Unicode Version 6 with Corrigendum #8, except, | |
2037 | as with Perl 5.14, the code point at U+1F514 has no name. | |
2038 | ||
2039 | =item * | |
2040 | ||
2041 | The Hangul syllable code points have the correct names, and their | |
2042 | decompositions are always output without requiring L<Lingua::KO::Hangul::Util> | |
2043 | to be installed. | |
2044 | ||
2045 | =item * | |
2046 | ||
54c7bb16 FC |
2047 | The CJK (Chinese-Japanese-Korean) code points U+2A700 to U+2B734 |
2048 | and U+2B740 to U+2B81D are now properly handled. | |
5076a392 FC |
2049 | |
2050 | =item * | |
2051 | ||
2052 | The numeric values are now output for those CJK code points that have them. | |
2053 | ||
2054 | =item * | |
2055 | ||
2056 | The names that are output for code points with multiple aliases are now the | |
2057 | corrected ones. | |
2058 | ||
2059 | =back | |
2060 | ||
2061 | =item charscript() | |
2062 | ||
2063 | This now correctly returns "Unknown" instead of C<undef> for the script | |
2064 | of a code point that hasn't been assigned another one. | |
2065 | ||
2066 | =item charblock() | |
2067 | ||
2068 | This now correctly returns "No_Block" instead of C<undef> for the block | |
2069 | of a code point that hasn't been assigned to another one. | |
2070 | ||
2071 | =back | |
2072 | ||
5076a392 FC |
2073 | =item * |
2074 | ||
2075 | C<version> has been upgraded from 0.82 to 0.88. | |
2076 | ||
1984204c | 2077 | Due to a bug, now fixed, the C<is_strict> and C<is_lax> functions did not |
cdc10f43 | 2078 | work when exported (5.12.1). |
5076a392 FC |
2079 | |
2080 | =item * | |
2081 | ||
3e625598 | 2082 | C<warnings> has been upgraded from version 1.09 to 1.12. |
5076a392 FC |
2083 | |
2084 | Calling C<use warnings> without arguments is now significantly more efficient. | |
2085 | ||
4f978a3b FR |
2086 | =item * |
2087 | ||
2088 | C<warnings::register> have been upgraded from version 1.01 to 1.02. | |
2089 | ||
5076a392 FC |
2090 | It is now possible to register warning categories other than the names of |
2091 | packages using C<warnings::register>. See L<perllexwarn> for more information. | |
2092 | ||
2093 | =item * | |
2094 | ||
62e270c2 FR |
2095 | C<XSLoader> has been upgraded from version 0.10 to 0.13. |
2096 | ||
2097 | =item * | |
2098 | ||
5076a392 FC |
2099 | C<VMS::DCLsym> has been upgraded from version 1.03 to 1.05. |
2100 | ||
2101 | Two bugs have been fixed [perl #84086]: | |
2102 | ||
2103 | The symbol table name was lost when tying a hash, due to a thinko in | |
2104 | C<TIEHASH>. The result was that all tied hashes interacted with the | |
2105 | local symbol table. | |
2106 | ||
2107 | Unless a symbol table name had been explicitly specified in the call | |
2108 | to the constructor, querying the special key ':LOCAL' failed to | |
2109 | identify objects connected to the local symbol table. | |
2110 | ||
2111 | =item * | |
2112 | ||
2113 | C<Win32> has been upgraded from version 0.39 to 0.44. | |
2114 | ||
1984204c FC |
2115 | This release has several new functions: C<Win32::GetSystemMetrics>, |
2116 | C<Win32::GetProductInfo>, C<Win32::GetOSDisplayName>. | |
5076a392 | 2117 | |
1984204c FC |
2118 | The names returned by C<Win32::GetOSName> and C<Win32::GetOSDisplayName> |
2119 | have been corrected. | |
5076a392 | 2120 | |
3bbe5383 FR |
2121 | =item * |
2122 | ||
2123 | C<XS::Typemap> has been upgraded from version 0.03 to 0.05. | |
2124 | ||
5076a392 FC |
2125 | =back |
2126 | ||
5076a392 FC |
2127 | =head2 Removed Modules and Pragmata |
2128 | ||
2129 | The following modules have been removed from the core distribution, and if | |
2130 | needed should be installed from CPAN instead. | |
2131 | ||
2132 | =over | |
2133 | ||
4f978a3b FR |
2134 | =item * |
2135 | ||
2136 | C<Class::ISA> has been removed from the Perl core. Prior version was 0.36. | |
5076a392 | 2137 | |
4f978a3b FR |
2138 | =item * |
2139 | ||
2140 | C<Pod::Plainer> has been removed from the Perl core. Prior version was 1.02. | |
2141 | ||
2142 | =item * | |
5076a392 | 2143 | |
4f978a3b | 2144 | C<Switch> has been removed from the Perl core. Prior version was 2.16. |
5076a392 FC |
2145 | |
2146 | =back | |
2147 | ||
2148 | The removal of C<Shell> has been deferred until after 5.14, as the | |
2149 | implementation of C<Shell> shipped with 5.12.0 did not correctly issue the | |
2150 | warning that it was to be removed from core. | |
2151 | ||
2152 | =head1 Documentation | |
2153 | ||
5076a392 FC |
2154 | =head2 New Documentation |
2155 | ||
41e29def | 2156 | =head3 L<perlgpl> |
5076a392 FC |
2157 | |
2158 | L<perlgpl> has been updated to contain GPL version 1, as is included in the | |
cdc10f43 | 2159 | F<README> distributed with perl (5.12.1). |
5076a392 | 2160 | |
41e29def | 2161 | =head3 Perl 5.12.x delta files |
5076a392 | 2162 | |
41e29def FC |
2163 | The perldelta files for Perl 5.12.1 to 5.12.3 have been added from the |
2164 | maintenance branch: L<perl5121delta>, L<perl5122delta>, L<perl5123delta>. | |
5076a392 FC |
2165 | |
2166 | =head3 L<perlpodstyle> | |
2167 | ||
2168 | New style guide for POD documentation, | |
2169 | split mostly from the NOTES section of the pod2man man page. | |
2170 | ||
41e29def FC |
2171 | =head3 L<perlsource>, L<perlinterp>, L<perlhacktut>, and L<perlhacktips> |
2172 | ||
cc13eef1 | 2173 | See L</perlhack and perlrepository revamp>, below. |
5076a392 FC |
2174 | |
2175 | =head2 Changes to Existing Documentation | |
2176 | ||
41e29def | 2177 | =head3 L<perlmodlib> is now complete |
4ed2cea4 FC |
2178 | |
2179 | The perlmodlib page that came with Perl 5.12.0 was missing a lot of | |
2180 | modules, due to a bug in the script that generates the list. This has been | |
cdc10f43 | 2181 | fixed [perl #74332] (5.12.1). |
4ed2cea4 | 2182 | |
41e29def | 2183 | =head3 Replace wrong tr/// table in L<perlebcdic> |
5076a392 | 2184 | |
41e29def | 2185 | L<perlebcdic> contains a helpful table to use in tr/// to convert |
5076a392 FC |
2186 | between EBCDIC and Latin1/ASCII. Unfortunately, the table was the |
2187 | inverse of the one it describes, though the code that used the table | |
2188 | worked correctly for the specific example given. | |
2189 | ||
2190 | The table has been changed to its inverse, and the sample code changed | |
2191 | to correspond, as this is easier for the person trying to follow the | |
2192 | instructions since deriving the old table is somewhat more complicated. | |
2193 | ||
2194 | The table has also been changed to hex from octal, as that is more the norm | |
2195 | these days, and the recipes in the pod altered to print out leading | |
41e29def | 2196 | zeros to make all the values the same length. |
5076a392 | 2197 | |
41e29def | 2198 | =head3 Tricks for user-defined casing |
5076a392 | 2199 | |
41e29def FC |
2200 | L<perlunicode> now contains an explanation of how to override, mangle |
2201 | and otherwise tweak the way perl handles upper-, lower- and other-case | |
2202 | conversions on Unicode data, and how to provide scoped changes to alter | |
2203 | one's own code's behaviour without stomping on anybody else. | |
5076a392 FC |
2204 | |
2205 | =head3 INSTALL explicitly states the requirement for C89 | |
2206 | ||
d430b8e7 FC |
2207 | This was already true but it's now Officially Stated For The Record |
2208 | (5.12.2). | |
5076a392 | 2209 | |
41e29def | 2210 | =head3 Explanation of C<\xI<HH>> and C<\oI<OOO>> escapes |
5076a392 | 2211 | |
41e29def FC |
2212 | L<perlop> has been updated with more detailed explanation of these two |
2213 | character escapes. | |
5076a392 | 2214 | |
41e29def | 2215 | =head3 C<-0I<NNN>> switch |
5076a392 | 2216 | |
41e29def | 2217 | In L<perlrun>, the behavior of the C<-0NNN> switch for C<-0400> or higher |
d430b8e7 | 2218 | has been clarified (5.12.2). |
5076a392 | 2219 | |
cdc10f43 FC |
2220 | =head3 Maintenance policy |
2221 | ||
2222 | L<perlpolicy> now contains the policy on what patches are acceptable for | |
2223 | maintenance branches (5.12.1). | |
2224 | ||
41e29def | 2225 | =head3 Deprecation policy |
5076a392 | 2226 | |
41e29def | 2227 | L<perlpolicy> now contains the policy on compatibility and deprecation |
d430b8e7 | 2228 | along with definitions of terms like "deprecation" (5.12.2). |
5076a392 | 2229 | |
41e29def | 2230 | =head3 New descriptions in L<perldiag> |
5076a392 FC |
2231 | |
2232 | The following existing diagnostics are now documented: | |
2233 | ||
2234 | =over 4 | |
2235 | ||
2236 | =item * | |
2237 | ||
2238 | L<Ambiguous use of %c resolved as operator %c|perldiag/"Ambiguous use of %c resolved as operator %c"> | |
2239 | ||
2240 | =item * | |
2241 | ||
2242 | L<Ambiguous use of %c{%s} resolved to %c%s|perldiag/"Ambiguous use of %c{%s} resolved to %c%s"> | |
2243 | ||
2244 | =item * | |
2245 | ||
2246 | L<Ambiguous use of %c{%s%s} resolved to %c%s%s|perldiag/"Ambiguous use of %c{%s%s} resolved to %c%s%s"> | |
2247 | ||
2248 | =item * | |
2249 | ||
2250 | L<Ambiguous use of -%s resolved as -&%s()|perldiag/"Ambiguous use of -%s resolved as -&%s()"> | |
2251 | ||
2252 | =item * | |
2253 | ||
2254 | L<Invalid strict version format (%s)|perldiag/"Invalid strict version format (%s)"> | |
2255 | ||
2256 | =item * | |
2257 | ||
2258 | L<Invalid version format (%s)|perldiag/"Invalid version format (%s)"> | |
2259 | ||
2260 | =item * | |
2261 | ||
2262 | L<Invalid version object|perldiag/"Invalid version object"> | |
2263 | ||
2264 | =back | |
2265 | ||
5076a392 FC |
2266 | =head3 L<perlbook> |
2267 | ||
41e29def | 2268 | L<perlbook> has been expanded to cover many more popular books. |
5076a392 | 2269 | |
41e29def | 2270 | =head3 C<SvTRUE> macro |
5076a392 | 2271 | |
41e29def FC |
2272 | The documentation for the C<SvTRUE> macro in |
2273 | L<perlapi> was simply wrong in stating that | |
5076a392 FC |
2274 | get-magic is not processed. It has been corrected. |
2275 | ||
41e29def | 2276 | =head3 L<perlvar> revamp |
5076a392 | 2277 | |
41e29def | 2278 | L<perlvar> reorders the variables and groups them by topic. Each variable |
5076a392 | 2279 | introduced after Perl 5.000 notes the first version in which it is |
41e29def | 2280 | available. L<perlvar> also has a new section for deprecated variables to |
5076a392 FC |
2281 | note when they were removed. |
2282 | ||
41e29def | 2283 | =head3 Array and hash slices in scalar context |
5076a392 | 2284 | |
41e29def | 2285 | These are now documented in L<perldata>. |
5076a392 | 2286 | |
41e29def | 2287 | =head3 C<use locale> and formats |
5076a392 FC |
2288 | |
2289 | L<perlform> and L<perllocale> have been corrected to state that | |
2290 | C<use locale> affects formats. | |
2291 | ||
5076a392 FC |
2292 | =head3 L<overload> |
2293 | ||
5076a392 FC |
2294 | L<overload>'s documentation has practically undergone a rewrite. It |
2295 | is now much more straightforward and clear. | |
2296 | ||
cc13eef1 | 2297 | =head3 perlhack and perlrepository revamp |
5076a392 FC |
2298 | |
2299 | The L<perlhack> and perlrepository documents have been heavily edited and | |
2300 | split up into several new documents. | |
2301 | ||
2302 | The L<perlhack> document is now much shorter, and focuses on the Perl 5 | |
2303 | development process and submitting patches to Perl. The technical content has | |
2304 | been moved to several new documents, L<perlsource>, L<perlinterp>, | |
2305 | L<perlhacktut>, and L<perlhacktips>. This technical content has only been | |
2306 | lightly edited. | |
2307 | ||
2308 | The perlrepository document has been renamed to L<perlgit>. This new document | |
2309 | is just a how-to on using git with the Perl source code. Any other content | |
2310 | that used to be in perlrepository has been moved to perlhack. | |
2311 | ||
41e29def | 2312 | =head3 Time::Piece examples |
5076a392 FC |
2313 | |
2314 | Examples in L<perlfaq4> have been updated to show the use of | |
41e29def | 2315 | L<Time::Piece>. |
5076a392 FC |
2316 | |
2317 | =head1 Diagnostics | |
2318 | ||
2319 | The following additions or changes have been made to diagnostic output, | |
2320 | including warnings and fatal error messages. For the complete list of | |
2321 | diagnostic messages, see L<perldiag>. | |
2322 | ||
2323 | =head2 New Diagnostics | |
2324 | ||
a593b319 FC |
2325 | =head3 New Errors |
2326 | ||
5076a392 FC |
2327 | =over |
2328 | ||
a593b319 | 2329 | =item Closure prototype called |
5076a392 | 2330 | |
a593b319 FC |
2331 | This error occurs when a subroutine reference passed to an attribute |
2332 | handler is called, if the subroutine is a closure [perl #68560]. | |
5076a392 | 2333 | |
a593b319 | 2334 | =item Insecure user-defined property %s |
5076a392 | 2335 | |
a593b319 FC |
2336 | Perl detected tainted data when trying to compile a regular |
2337 | expression that contains a call to a user-defined character property | |
2338 | function, i.e. C<\p{IsFoo}> or C<\p{InFoo}>. | |
2339 | See L<perlunicode/User-Defined Character Properties> and L<perlsec>. | |
5076a392 | 2340 | |
a593b319 | 2341 | =item panic: gp_free failed to free glob pointer - something is repeatedly re-creating entries |
5076a392 | 2342 | |
a593b319 FC |
2343 | This new error is triggered if a destructor called on an object in a |
2344 | typeglob that is being freed creates a new typeglob entry containing an | |
2345 | object with a destructor that creates a new entry containing an object.... | |
5076a392 | 2346 | |
a593b319 | 2347 | =item Parsing code internal error (%s) |
5076a392 | 2348 | |
a593b319 FC |
2349 | This new fatal error is produced when parsing |
2350 | code supplied by an extension violates the | |
2351 | parser's API in a detectable way. | |
5076a392 | 2352 | |
a593b319 | 2353 | =item refcnt: fd %d%s |
5076a392 | 2354 | |
a593b319 FC |
2355 | This new error only occurs if a internal consistency check fails when a |
2356 | pipe is about to be closed. | |
5076a392 | 2357 | |
a593b319 | 2358 | =item Regexp modifier "/%c" may not appear twice |
5076a392 | 2359 | |
a593b319 FC |
2360 | The regular expression pattern has one of the |
2361 | mutually exclusive modifiers repeated. | |
5076a392 | 2362 | |
a593b319 | 2363 | =item Regexp modifiers "/%c" and "/%c" are mutually exclusive |
5076a392 | 2364 | |
a593b319 FC |
2365 | The regular expression pattern has more than one of the mutually |
2366 | exclusive modifiers. | |
5076a392 | 2367 | |
a593b319 | 2368 | =item Using !~ with %s doesn't make sense |
5076a392 | 2369 | |
a593b319 | 2370 | This error occurs when C<!~> is used with C<s///r> or C<y///r>. |
5076a392 | 2371 | |
a593b319 | 2372 | =back |
5076a392 | 2373 | |
a593b319 | 2374 | =head3 New Warnings |
5076a392 | 2375 | |
a593b319 | 2376 | =over |
5076a392 | 2377 | |
a593b319 | 2378 | =item "\b{" is deprecated; use "\b\{" instead |
5076a392 | 2379 | |
a593b319 | 2380 | =item "\B{" is deprecated; use "\B\{" instead |
5076a392 | 2381 | |
a593b319 FC |
2382 | Use of an unescaped "{" immediately following a C<\b> or C<\B> is now |
2383 | deprecated so as to reserve its use for Perl itself in a future release. | |
5076a392 | 2384 | |
a593b319 | 2385 | =item Operation "%s" returns its argument for ... |
5076a392 | 2386 | |
a593b319 FC |
2387 | Performing an operation requiring Unicode semantics (such as case-folding) |
2388 | on a Unicode surrogate or a non-Unicode character now triggers a warning: | |
2389 | 'Operation "%s" returns its argument for ...'. | |
5076a392 | 2390 | |
a593b319 FC |
2391 | =item Use of qw(...) as parentheses is deprecated |
2392 | ||
2393 | See L</"Use of qw(...) as parentheses">, above, for details. | |
5076a392 FC |
2394 | |
2395 | =back | |
2396 | ||
2397 | =head2 Changes to Existing Diagnostics | |
2398 | ||
2399 | =over 4 | |
2400 | ||
2401 | =item * | |
2402 | ||
4ed2cea4 FC |
2403 | The "Variable $foo is not imported" warning that precedes a |
2404 | C<strict 'vars'> error has now been assigned the "misc" category, so that | |
2405 | C<no warnings> will suppress it [perl #73712]. | |
2406 | ||
2407 | =item * | |
2408 | ||
5076a392 FC |
2409 | C<warn> and C<die> now produce 'Wide character' warnings when fed a |
2410 | character outside the byte range if STDERR is a byte-sized handle. | |
2411 | ||
2412 | =item * | |
2413 | ||
2414 | The 'Layer does not match this perl' error message has been replaced with | |
a593b319 | 2415 | these more helpful messages [perl #73754]: |
5076a392 FC |
2416 | |
2417 | =over 4 | |
2418 | ||
2419 | =item * | |
2420 | ||
2421 | PerlIO layer function table size (%d) does not match size expected by this | |
2422 | perl (%d) | |
2423 | ||
2424 | =item * | |
2425 | ||
2426 | PerlIO layer instance size (%d) does not match size expected by this perl | |
2427 | (%d) | |
2428 | ||
2429 | =back | |
2430 | ||
5076a392 FC |
2431 | =item * |
2432 | ||
2433 | The "Found = in conditional" warning that is emitted when a constant is | |
2434 | assigned to a variable in a condition is now withheld if the constant is | |
2435 | actually a subroutine or one generated by C<use constant>, since the value | |
2436 | of the constant may not be known at the time the program is written | |
2437 | [perl #77762]. | |
2438 | ||
2439 | =item * | |
2440 | ||
2441 | Previously, if none of the C<gethostbyaddr>, C<gethostbyname> and | |
2442 | C<gethostent> functions were implemented on a given platform, they would | |
2443 | all die with the message 'Unsupported socket function "gethostent" called', | |
2444 | with analogous messages for C<getnet*> and C<getserv*>. This has been | |
2445 | corrected. | |
2446 | ||
2447 | =item * | |
2448 | ||
a593b319 FC |
2449 | The warning message about unrecognized regular expression escapes passed |
2450 | through has been changed to include any literal '{' following the | |
2451 | two-character escape. E.g., "\q{" is now emitted instead of "\q". | |
5076a392 FC |
2452 | |
2453 | =back | |
2454 | ||
2455 | =head1 Utility Changes | |
2456 | ||
0b88cc74 | 2457 | =head3 L<perlbug> |
5076a392 FC |
2458 | |
2459 | =over 4 | |
2460 | ||
2461 | =item * | |
2462 | ||
0b88cc74 FC |
2463 | L<perlbug> now looks in the EMAIL environment variable for a return address |
2464 | if the REPLY-TO and REPLYTO variables are empty. | |
5076a392 FC |
2465 | |
2466 | =item * | |
2467 | ||
0b88cc74 FC |
2468 | L<perlbug> did not previously generate a From: header, potentially |
2469 | resulting in dropped mail. Now it does include that header. | |
5076a392 FC |
2470 | |
2471 | =item * | |
2472 | ||
0b88cc74 | 2473 | The user's address is now used as the return-path. |
4ed2cea4 | 2474 | |
0b88cc74 FC |
2475 | Many systems these days don't have a valid Internet domain name and |
2476 | perlbug@perl.org does not accept email with a return-path that does | |
2477 | not resolve. So the user's address is now passed to sendmail so it's | |
2478 | less likely to get stuck in a mail queue somewhere [perl #82996]. | |
5076a392 | 2479 | |
2c389f6c FC |
2480 | =item * |
2481 | ||
d430b8e7 FC |
2482 | L<perlbug> now always gives the reporter a chance to change the email |
2483 | address it guesses for them (5.12.2). | |
2484 | ||
2485 | =item * | |
2486 | ||
2487 | L<perlbug> should no longer warn about uninitialized values when using the C<-d> | |
2488 | and C<-v> options (5.12.2). | |
2c389f6c | 2489 | |
5076a392 FC |
2490 | =back |
2491 | ||
0b88cc74 | 2492 | =head3 L<perl5db.pl> |
5076a392 | 2493 | |
0b88cc74 | 2494 | =over |
5076a392 FC |
2495 | |
2496 | =item * | |
2497 | ||
0b88cc74 FC |
2498 | The remote terminal works after forking and spawns new sessions - one |
2499 | for each forked process. | |
5076a392 FC |
2500 | |
2501 | =back | |
2502 | ||
0b88cc74 | 2503 | =head3 L<ptargrep> |
5076a392 FC |
2504 | |
2505 | =over 4 | |
2506 | ||
2507 | =item * | |
2508 | ||
0b88cc74 FC |
2509 | L<ptargrep> is a new utility to apply pattern matching to the contents of |
2510 | files in a tar archive. It comes with C<Archive::Tar>. | |
5076a392 FC |
2511 | |
2512 | =back | |
2513 | ||
2514 | =head1 Configuration and Compilation | |
2515 | ||
61752d82 FC |
2516 | See also L</"Naming fixes in Policy_sh.SH may invalidate Policy.sh">, |
2517 | above. | |
2518 | ||
5076a392 FC |
2519 | =over 4 |
2520 | ||
2521 | =item * | |
2522 | ||
87595b22 FC |
2523 | CCINCDIR and CCLIBDIR for the mingw64 |
2524 | cross-compiler are now correctly under | |
5076a392 FC |
2525 | $(CCHOME)\mingw\include and \lib rather than immediately below $(CCHOME). |
2526 | ||
5076a392 FC |
2527 | This means the 'incpath', 'libpth', 'ldflags', 'lddlflags' and |
2528 | 'ldflags_nolargefiles' values in Config.pm and Config_heavy.pl are now | |
87595b22 | 2529 | set correctly. |
5076a392 FC |
2530 | |
2531 | =item * | |
2532 | ||
87595b22 FC |
2533 | 'make test.valgrind' has been adjusted to account for cpan/dist/ext |
2534 | separation. | |
5076a392 FC |
2535 | |
2536 | =item * | |
2537 | ||
2538 | On compilers that support it, C<-Wwrite-strings> is now added to cflags by | |
2539 | default. | |
2540 | ||
2541 | =item * | |
2542 | ||
2543 | The C<Encode> module can now (once again) be included in a static Perl | |
2544 | build. The special-case handling for this situation got broken in Perl | |
2545 | 5.11.0, and has now been repaired. | |
2546 | ||
1e463951 FC |
2547 | =item * |
2548 | ||
2549 | The previous default size of a PerlIO buffer (4096 bytes) has been increased | |
2550 | to the larger of 8192 bytes and your local BUFSIZ. Benchmarks show that doubling | |
2551 | this decade-old default increases read and write performance in the neighborhood | |
2552 | of 25% to 50% when using the default layers of perlio on top of unix. To choose | |
2553 | a non-default size, such as to get back the old value or to obtain an even | |
2554 | larger value, configure with: | |
2555 | ||
2556 | ./Configure -Accflags=-DPERLIOBUF_DEFAULT_BUFSIZ=N | |
2557 | ||
2558 | where N is the desired size in bytes; it should probably be a multiple of | |
2559 | your page size. | |
2560 | ||
d430b8e7 FC |
2561 | =item * |
2562 | ||
2563 | An "incompatible operand types" error in ternary expressions when building | |
2564 | with C<clang> has been fixed (5.12.2). | |
2565 | ||
2566 | =item * | |
2567 | ||
2568 | Perl now skips setuid C<File::Copy> tests on partitions it detects to be mounted | |
2569 | as C<nosuid> (5.12.2). | |
2570 | ||
5076a392 FC |
2571 | =back |
2572 | ||
5076a392 FC |
2573 | =head1 Platform Support |
2574 | ||
5076a392 FC |
2575 | =head2 New Platforms |
2576 | ||
5076a392 FC |
2577 | =over 4 |
2578 | ||
2579 | =item AIX | |
2580 | ||
cdc10f43 | 2581 | Perl now builds on AIX 4.2 (5.12.1). |
5076a392 FC |
2582 | |
2583 | =back | |
2584 | ||
2585 | =head2 Discontinued Platforms | |
2586 | ||
2587 | =over 4 | |
2588 | ||
5076a392 FC |
2589 | =item Apollo DomainOS |
2590 | ||
2591 | The last vestiges of support for this platform have been excised from the | |
2592 | Perl distribution. It was officially discontinued in version 5.12.0. It had | |
2593 | not worked for years before that. | |
2594 | ||
2595 | =item MacOS Classic | |
2596 | ||
2597 | The last vestiges of support for this platform have been excised from the | |
2598 | Perl distribution. It was officially discontinued in an earlier version. | |
2599 | ||
2600 | =back | |
2601 | ||
2602 | =head2 Platform-Specific Notes | |
2603 | ||
d430b8e7 FC |
2604 | =head3 AIX |
2605 | ||
2606 | =over | |
2607 | ||
2608 | =item * | |
2609 | ||
2610 | F<README.aix> has been updated with information about the XL C/C++ V11 compiler | |
2611 | suite (5.12.2). | |
2612 | ||
2613 | =back | |
2614 | ||
2615 | =head3 ARM | |
2616 | ||
2617 | =over | |
2618 | ||
2619 | =item * | |
2620 | ||
2621 | The C<d_u32align> configuration probe on ARM has been fixed (5.12.2). | |
2622 | ||
2623 | =back | |
2624 | ||
554003a2 | 2625 | =head3 Cygwin |
5076a392 FC |
2626 | |
2627 | =over 4 | |
2628 | ||
2629 | =item * | |
2630 | ||
554003a2 | 2631 | MakeMaker has been updated to build man pages on cygwin. |
5076a392 FC |
2632 | |
2633 | =item * | |
2634 | ||
554003a2 FC |
2635 | Improved rebase behaviour |
2636 | ||
2637 | If a dll is updated on cygwin the old imagebase address is reused. | |
2638 | This solves most rebase errors, especially when updating on core dll's. | |
2639 | See L<http://www.tishler.net/jason/software/rebase/rebase-2.4.2.README> for more information. | |
5076a392 FC |
2640 | |
2641 | =item * | |
2642 | ||
554003a2 | 2643 | Support for the standard cygwin dll prefix, which is e.g. needed for FFI's |
5076a392 FC |
2644 | |
2645 | =item * | |
2646 | ||
554003a2 | 2647 | Updated build hints file |
5076a392 FC |
2648 | |
2649 | =back | |
2650 | ||
cdc10f43 FC |
2651 | =head3 FreeBSD 7 |
2652 | ||
2653 | =over | |
2654 | ||
2655 | =item * | |
2656 | ||
2657 | FreeBSD 7 no longer contains F</usr/bin/objformat>. At build time, | |
2658 | Perl now skips the F<objformat> check for versions 7 and higher and | |
2659 | assumes ELF (5.12.1). | |
2660 | ||
2661 | =back | |
2662 | ||
2663 | =head3 HP-UX | |
2664 | ||
2665 | =over | |
2666 | ||
2667 | =item * | |
2668 | ||
2669 | Perl now allows -Duse64bitint without promoting to use64bitall on HP-UX | |
2670 | (5.12.1). | |
2671 | ||
2672 | =back | |
2673 | ||
554003a2 | 2674 | =head3 IRIX |
5076a392 FC |
2675 | |
2676 | Conversion of strings to floating-point numbers is now more accurate on | |
2677 | IRIX systems [perl #32380]. | |
2678 | ||
554003a2 | 2679 | =head3 Mac OS X |
5076a392 FC |
2680 | |
2681 | Early versions of Mac OS X (Darwin) had buggy implementations of the | |
2682 | C<setregid>, C<setreuid>, C<setrgid> and C<setruid> functions, so perl | |
2683 | would pretend they did not exist. | |
2684 | ||
2685 | These functions are now recognised on Mac OS 10.5 (Leopard; Darwin 9) and | |
2686 | higher, as they have been fixed [perl #72990]. | |
2687 | ||
554003a2 | 2688 | =head3 MirBSD |
5076a392 | 2689 | |
554003a2 FC |
2690 | Previously if you built perl with a shared libperl.so on MirBSD (the |
2691 | default config), it would work up to the installation; however, once | |
2692 | installed, it would be unable to find libperl. So path handling is now | |
2693 | treated as in the other BSD dialects. | |
5076a392 | 2694 | |
554003a2 | 2695 | =head3 NetBSD |
5076a392 | 2696 | |
554003a2 FC |
2697 | The NetBSD hints file has been changed to make the system's malloc the |
2698 | default. | |
5076a392 | 2699 | |
554003a2 | 2700 | =head3 Recent OpenBSDs now use perl's malloc |
5076a392 | 2701 | |
554003a2 FC |
2702 | OpenBSD E<gt> 3.7 has a new malloc implementation which is mmap-based |
2703 | and as such can release memory back to the OS; however, perl's use of | |
2704 | this malloc causes a substantial slowdown so we now default to using | |
2705 | perl's malloc instead [perl #75742]. | |
5076a392 | 2706 | |
554003a2 | 2707 | =head3 OpenVOS |
5076a392 | 2708 | |
554003a2 | 2709 | perl now builds again with OpenVOS (formerly known as Stratus VOS) |
5a553547 | 2710 | [perl #78132] (5.12.3). |
5076a392 | 2711 | |
554003a2 | 2712 | =head3 Solaris |
5076a392 | 2713 | |
554003a2 | 2714 | DTrace is now supported on Solaris. There used to be build failures, but |
5a553547 | 2715 | these have been fixed [perl #73630] (5.12.3). |
5076a392 | 2716 | |
554003a2 | 2717 | =head3 VMS |
5076a392 FC |
2718 | |
2719 | =over | |
2720 | ||
2721 | =item * | |
2722 | ||
cdc10f43 FC |
2723 | It's now possible to build extensions on older (pre 7.3-2) VMS systems. |
2724 | ||
2725 | DCL symbol length was limited to 1K up until about seven years or | |
2726 | so ago, but there was no particularly deep reason to prevent those | |
2727 | older systems from configuring and building Perl (5.12.1). | |
2728 | ||
2729 | =item * | |
2730 | ||
2731 | We fixed the previously-broken C<-Uuseperlio> build on VMS. | |
2732 | ||
2733 | We were checking a variable that doesn't exist in the non-default | |
2734 | case of disabling perlio. Now we only look at it when it exists (5.12.1). | |
2735 | ||
2736 | =item * | |
2737 | ||
2738 | We fixed the -Uuseperlio command-line option in configure.com. | |
2739 | ||
2740 | Formerly it only worked if you went through all the questions | |
2741 | interactively and explicitly answered no (5.12.1). | |
2742 | ||
2743 | =item * | |
2744 | ||
554003a2 | 2745 | C<PerlIOUnix_open> now honours the default permissions on VMS. |
5076a392 | 2746 | |
554003a2 FC |
2747 | When C<perlio> became the default and C<unixio> became the default bottom layer, |
2748 | the most common path for creating files from Perl became C<PerlIOUnix_open>, | |
2749 | which has always explicitly used C<0666> as the permission mask. | |
5076a392 | 2750 | |
554003a2 FC |
2751 | To avoid this, C<0777> is now passed as the permissions to C<open()>. In the |
2752 | VMS CRTL, C<0777> has a special meaning over and above intersecting with the | |
2753 | current umask; specifically, it allows Unix syscalls to preserve native default | |
5a553547 FC |
2754 | permissions (5.12.3). |
2755 | ||
2756 | =item * | |
2757 | ||
2758 | Spurious record boundaries are no longer | |
2759 | introduced by the PerlIO layer during output (5.12.3). | |
5076a392 FC |
2760 | |
2761 | =item * | |
2762 | ||
554003a2 FC |
2763 | The shortening of symbols longer than 31 characters in the C sources is |
2764 | now done by the compiler rather than by xsubpp (which could only do so | |
2765 | for generated symbols in XS code). | |
5076a392 FC |
2766 | |
2767 | =item * | |
2768 | ||
554003a2 FC |
2769 | Record-oriented files (record format variable or variable with fixed control) |
2770 | opened for write by the perlio layer will now be line-buffered to prevent the | |
2771 | introduction of spurious line breaks whenever the perlio buffer fills up. | |
5076a392 | 2772 | |
d430b8e7 FC |
2773 | =item * |
2774 | ||
2775 | F<git_version.h> is now installed on VMS. This was an oversight in v5.12.0 which | |
2776 | caused some extensions to fail to build (5.12.2). | |
2777 | ||
2778 | =item * | |
2779 | ||
2780 | Several memory leaks in L<stat()|perlfunc/"stat FILEHANDLE"> have been fixed (5.12.2). | |
2781 | ||
2782 | =item * | |
2783 | ||
2784 | A memory leak in C<Perl_rename()> due to a double allocation has been | |
2785 | fixed (5.12.2). | |
2786 | ||
2787 | =item * | |
2788 | ||
2789 | A memory leak in C<vms_fid_to_name()> (used by C<realpath()> and | |
2790 | C<realname()>) has been fixed (5.12.2). | |
2791 | ||
5076a392 FC |
2792 | =back |
2793 | ||
554003a2 | 2794 | =head3 Windows |
5076a392 | 2795 | |
5a1f7719 FC |
2796 | See also L</"fork() emulation will not wait for signalled children"> and |
2797 | L</"Perl source code is read in text mode on Windows">, above. | |
2798 | ||
5076a392 FC |
2799 | =over 4 |
2800 | ||
2801 | =item * | |
2802 | ||
554003a2 | 2803 | Fixed build process for SDK2003SP1 compilers. |
5076a392 | 2804 | |
554003a2 | 2805 | =item * |
5076a392 | 2806 | |
01b1a9e4 FC |
2807 | Compilation with Visual Studio 2010 is now supported. |
2808 | ||
2809 | =item * | |
2810 | ||
554003a2 FC |
2811 | When using old 32-bit compilers, the define C<_USE_32BIT_TIME_T> will now |
2812 | be set in C<$Config{ccflags}>. This improves portability when compiling | |
2813 | XS extensions using new compilers, but for a perl compiled with old 32-bit | |
2814 | compilers. | |
5076a392 FC |
2815 | |
2816 | =item * | |
2817 | ||
554003a2 FC |
2818 | C<$Config{gccversion}> is now set correctly when perl is built using the |
2819 | mingw64 compiler from L<http://mingw64.org> [perl #73754]. | |
5076a392 | 2820 | |
554003a2 FC |
2821 | =item * |
2822 | ||
d430b8e7 FC |
2823 | When building Perl with the mingw64 x64 cross-compiler C<incpath>, |
2824 | C<libpth>, C<ldflags>, C<lddlflags> and C<ldflags_nolargefiles> values | |
2825 | in F<Config.pm> and F<Config_heavy.pl> were not previously being set | |
2826 | correctly because, with that compiler, the include and lib directories | |
2827 | are not immediately below C<$(CCHOME)> (5.12.2). | |
2828 | ||
2829 | =item * | |
2830 | ||
554003a2 FC |
2831 | The build process proceeds more smoothly with mingw and dmake when |
2832 | F<C:\MSYS\bin> is in the PATH, due to a C<Cwd> fix. | |
5076a392 FC |
2833 | |
2834 | =item * | |
2835 | ||
554003a2 FC |
2836 | Support for building with Visual C++ 2010 is now underway, but is not yet |
2837 | complete. See F<README.win32> or L<perlwin32> for more details. | |
5076a392 | 2838 | |
554003a2 FC |
2839 | =item * |
2840 | ||
2841 | The option to use an externally-supplied C<crypt()>, or to build with no | |
2842 | C<crypt()> at all, has been removed. Perl supplies its own C<crypt()> | |
2843 | implementation for Windows, and the political situation that required | |
2844 | this part of the distribution to sometimes be omitted is long gone. | |
5076a392 FC |
2845 | |
2846 | =back | |
2847 | ||
2848 | =head1 Internal Changes | |
2849 | ||
1e463951 | 2850 | =head2 New APIs |
5076a392 | 2851 | |
1e463951 | 2852 | =head3 CLONE_PARAMS structure added to ease correct thread creation |
5076a392 | 2853 | |
1e463951 FC |
2854 | Modules that create threads should now create C<CLONE_PARAMS> structures |
2855 | by calling the new function C<Perl_clone_params_new()>, and free them with | |
2856 | C<Perl_clone_params_del()>. This will ensure compatibility with any future | |
2857 | changes to the internals of the C<CLONE_PARAMS> structure layout, and that | |
2858 | it is correctly allocated and initialised. | |
5076a392 | 2859 | |
1e463951 | 2860 | =head3 New parsing functions |
5076a392 | 2861 | |
1e463951 FC |
2862 | Several functions have been added for parsing statements or multiple |
2863 | statements: | |
5076a392 | 2864 | |
1e463951 | 2865 | =over |
5076a392 FC |
2866 | |
2867 | =item * | |
2868 | ||
1e463951 | 2869 | C<parse_fullstmt> parses a complete Perl statement. |
5076a392 FC |
2870 | |
2871 | =item * | |
2872 | ||
1e463951 FC |
2873 | C<parse_stmtseq> parses a sequence of statements, up |
2874 | to closing brace or EOF. | |
5076a392 FC |
2875 | |
2876 | =item * | |
2877 | ||
1e463951 | 2878 | C<parse_block> parses a block [perl #78222]. |
5076a392 FC |
2879 | |
2880 | =item * | |
2881 | ||
1e463951 FC |
2882 | C<parse_barestmt> parses a statement |
2883 | without a label. | |
5076a392 FC |
2884 | |
2885 | =item * | |
2886 | ||
1e463951 | 2887 | C<parse_label> parses a statement label, separate from statements. |
5076a392 | 2888 | |
1e463951 | 2889 | =back |
5076a392 | 2890 | |
1e463951 FC |
2891 | The |
2892 | L<C<parse_fullexpr()>|perlapi/parse_fullexpr>, | |
2893 | L<C<parse_listexpr()>|perlapi/parse_listexpr>, | |
2894 | L<C<parse_termexpr()>|perlapi/parse_termexpr>, and | |
2895 | L<C<parse_arithexpr()>|perlapi/parse_arithexpr> | |
2896 | functions have been added to the API. They perform | |
2897 | recursive-descent parsing of expressions at various precedence levels. | |
2898 | They are expected to be used by syntax plugins. | |
5076a392 | 2899 | |
1e463951 | 2900 | See L<perlapi> for details. |
5076a392 | 2901 | |
1e463951 | 2902 | =head3 Hints hash API |
5076a392 | 2903 | |
1e463951 FC |
2904 | A new C API for introspecting the hinthash C<%^H> at runtime has been |
2905 | added. See C<cop_hints_2hv>, C<cop_hints_fetchpvn>, C<cop_hints_fetchpvs>, | |
2906 | C<cop_hints_fetchsv>, and C<hv_copy_hints_hv> in L<perlapi> for details. | |
5076a392 | 2907 | |
1e463951 FC |
2908 | A new, experimental API has been added for accessing the internal |
2909 | structure that Perl uses for C<%^H>. See the functions beginning with | |
2910 | C<cophh_> in L<perlapi>. | |
5076a392 | 2911 | |
1e463951 | 2912 | =head3 C interface to C<caller()> |
5076a392 | 2913 | |
1e463951 FC |
2914 | The C<caller_cx> function has been added as an XSUB-writer's equivalent of |
2915 | C<caller()>. See L<perlapi> for details. | |
5076a392 | 2916 | |
1e463951 | 2917 | =head3 Custom per-subroutine check hooks |
5076a392 | 2918 | |
1e463951 FC |
2919 | XS code in an extension module can now annotate a subroutine (whether |
2920 | implemented in XS or in Perl) so that nominated XS code will be called | |
2921 | at compile time (specifically as part of op checking) to change the op | |
2922 | tree of that subroutine. The compile-time check function (supplied by | |
2923 | the extension module) can implement argument processing that can't be | |
2924 | expressed as a prototype, generate customised compile-time warnings, | |
2925 | perform constant folding for a pure function, inline a subroutine | |
2926 | consisting of sufficiently simple ops, replace the whole call with a | |
2927 | custom op, and so on. This was previously all possible by hooking the | |
2928 | C<entersub> op checker, but the new mechanism makes it easy to tie the | |
2929 | hook to a specific subroutine. See L<perlapi/cv_set_call_checker>. | |
5076a392 | 2930 | |
1e463951 FC |
2931 | To help in writing custom check hooks, several subtasks within standard |
2932 | C<entersub> op checking have been separated out and exposed in the API. | |
5076a392 | 2933 | |
1e463951 | 2934 | =head3 Improved support for custom OPs |
5076a392 | 2935 | |
1e463951 FC |
2936 | Custom ops can now be registered with the new C<custom_op_register> C |
2937 | function and the C<XOP> structure. This will make it easier to add new | |
2938 | properties of custom ops in the future. Two new properties have been added | |
2939 | already, C<xop_class> and C<xop_peep>. | |
5076a392 | 2940 | |
1e463951 FC |
2941 | C<xop_class> is one of the OA_*OP constants, and allows L<B> and other |
2942 | introspection mechanisms to work with custom ops | |
2943 | that aren't BASEOPs. C<xop_peep> is a pointer to | |
2944 | a function that will be called for ops of this | |
2945 | type from C<Perl_rpeep>. | |
5076a392 | 2946 | |
1e463951 FC |
2947 | See L<perlguts/Custom Operators> and L<perlapi/Custom Operators> for more |
2948 | detail. | |
5076a392 | 2949 | |
1e463951 FC |
2950 | The old C<PL_custom_op_names>/C<PL_custom_op_descs> interface is still |
2951 | supported but discouraged. | |
5076a392 | 2952 | |
1e463951 | 2953 | =head3 Scope hooks |
5076a392 | 2954 | |
1e463951 FC |
2955 | It is now possible for XS code to hook into Perl's lexical scope |
2956 | mechanism at compile time, using the new C<Perl_blockhook_register> | |
2957 | function. See L<perlguts/"Compile-time scope hooks">. | |
5076a392 | 2958 | |
1e463951 | 2959 | =head3 The recursive part of the peephole optimizer is now hookable |
5076a392 FC |
2960 | |
2961 | In addition to C<PL_peepp>, for hooking into the toplevel peephole optimizer, a | |
2962 | C<PL_rpeepp> is now available to hook into the optimizer recursing into | |
2963 | side-chains of the optree. | |
2964 | ||
1e463951 | 2965 | =head3 New non-magical variants of existing functions |
5076a392 | 2966 | |
1e463951 FC |
2967 | The following functions/macros have been added to the API. The C<*_nomg> |
2968 | macros are equivalent to their non-_nomg variants, except that they ignore | |
2969 | get-magic. Those ending in C<_flags> allow one to specify whether | |
2970 | get-magic is processed. | |
5076a392 | 2971 | |
1e463951 FC |
2972 | sv_2bool_flags |
2973 | SvTRUE_nomg | |
2974 | sv_2nv_flags | |
2975 | SvNV_nomg | |
2976 | sv_cmp_flags | |
2977 | sv_cmp_locale_flags | |
2978 | sv_eq_flags | |
2979 | sv_collxfrm_flags | |
5076a392 | 2980 | |
1e463951 | 2981 | In some of these cases, the non-_flags functions have |
5076a392 FC |
2982 | been replaced with wrappers around the new functions. |
2983 | ||
1e463951 | 2984 | =head3 pv/pvs/sv versions of existing functions |
5076a392 | 2985 | |
1e463951 | 2986 | Many functions ending with pvn now have equivalent pv/pvs/sv versions. |
5076a392 | 2987 | |
1e463951 | 2988 | =head3 List op-building functions |
5076a392 | 2989 | |
1e463951 FC |
2990 | List op-building functions have been added to the |
2991 | API. See L<op_append_elem|perlapi/op_append_elem>, | |
2992 | L<op_append_list|perlapi/op_append_list>, and | |
2993 | L<op_prepend_elem|perlapi/op_prepend_elem> in L<perlapi>. | |
5076a392 | 2994 | |
1e463951 | 2995 | =head3 C<LINKLIST> |
5076a392 | 2996 | |
1e463951 FC |
2997 | The L<LINKLIST|perlapi/LINKLIST> macro, part of op building that |
2998 | constructs the execution-order op chain, has been added to the API. | |
5076a392 | 2999 | |
1e463951 | 3000 | =head3 Localisation functions |
5076a392 | 3001 | |
1e463951 FC |
3002 | The C<save_freeop>, C<save_op>, C<save_pushi32ptr> and C<save_pushptrptr> |
3003 | functions have been added to the API. | |
5076a392 | 3004 | |
1e463951 | 3005 | =head3 Stash names |
5076a392 | 3006 | |
1e463951 FC |
3007 | A stash can now have a list of effective names in addition to its usual |
3008 | name. The first effective name can be accessed via the C<HvENAME> macro, | |
3009 | which is now the recommended name to use in MRO linearisations (C<HvNAME> | |
3010 | being a fallback if there is no C<HvENAME>). | |
5076a392 | 3011 | |
1e463951 FC |
3012 | These names are added and deleted via C<hv_ename_add> and |
3013 | C<hv_ename_delete>. These two functions are I<not> part of the API. | |
5076a392 | 3014 | |
1e463951 | 3015 | =head3 New functions for finding and removing magic |
5076a392 | 3016 | |
1e463951 FC |
3017 | The L<C<mg_findext()>|perlapi/mg_findext> and |
3018 | L<C<sv_unmagicext()>|perlapi/sv_unmagicext> | |
3019 | functions have been added to the API. | |
3020 | They allow extension authors to find and remove magic attached to | |
3021 | scalars based on both the magic type and the magic virtual table, similar to how | |
3022 | C<sv_magicext()> attaches magic of a certain type and with a given virtual table | |
3023 | to a scalar. This eliminates the need for extensions to walk the list of | |
3024 | C<MAGIC> pointers of an C<SV> to find the magic that belongs to them. | |
5076a392 | 3025 | |
1e463951 | 3026 | =head3 C<find_rundefsv> |
5076a392 | 3027 | |
1e463951 FC |
3028 | This function returns the SV representing C<$_>, whether it's lexical |
3029 | or dynamic. | |
5076a392 | 3030 | |
1e463951 | 3031 | =head3 C<Perl_croak_no_modify> |
5076a392 | 3032 | |
1e463951 FC |
3033 | C<Perl_croak_no_modify()> is short-hand for |
3034 | C<Perl_croak("%s", PL_no_modify)>. | |
5076a392 | 3035 | |
1e463951 | 3036 | =head3 C<PERL_STATIC_INLINE> define |
5076a392 | 3037 | |
1e463951 FC |
3038 | The C<PERL_STATIC_INLINE> define has been added to provide the best-guess |
3039 | incantation to use for static inline functions, if the C compiler supports | |
3040 | C99-style static inline. If it doesn't, it'll give a plain C<static>. | |
5076a392 | 3041 | |
1e463951 FC |
3042 | C<HAS_STATIC_INLINE> can be used to check if the compiler actually supports |
3043 | inline functions. | |
5076a392 | 3044 | |
1e463951 | 3045 | =head3 New C<pv_escape> option for hexadecimal escapes |
5076a392 | 3046 | |
1e463951 FC |
3047 | A new option, C<PERL_PV_ESCAPE_NONASCII>, has been added to C<pv_escape> to |
3048 | dump all characters above ASCII in hexadecimal. Before, one could get all | |
3049 | characters as hexadecimal or the Latin1 non-ASCII as octal. | |
5076a392 | 3050 | |
1e463951 | 3051 | =head3 C<lex_start> |
5076a392 | 3052 | |
1e463951 | 3053 | C<lex_start> has been added to the API, but is considered experimental. |
5076a392 | 3054 | |
1e463951 | 3055 | =head3 C<op_scope()> and C<op_lvalue()> |
5076a392 | 3056 | |
1e463951 FC |
3057 | The C<op_scope()> and C<op_lvalue()> functions have been added to the API, |
3058 | but are considered experimental. | |
5076a392 | 3059 | |
1e463951 | 3060 | =head2 C API Changes |
5076a392 | 3061 | |
1e463951 | 3062 | =head3 C<PERL_POLLUTE> has been removed |
5076a392 | 3063 | |
1e463951 FC |
3064 | The option to define C<PERL_POLLUTE> to expose older 5.005 symbols for |
3065 | backwards compatibility has been removed. It's use was always discouraged, | |
3066 | and MakeMaker contains a more specific escape hatch: | |
5076a392 | 3067 | |
1e463951 | 3068 | perl Makefile.PL POLLUTE=1 |
5076a392 | 3069 | |
1e463951 FC |
3070 | This can be used for modules that have not been upgraded to 5.6 naming |
3071 | conventions (and really should be completely obsolete by now). | |
5076a392 | 3072 | |
1e463951 | 3073 | =head3 Check API compatibility when loading XS modules |
5076a392 | 3074 | |
1e463951 FC |
3075 | When perl's API changes in incompatible ways (which usually happens between |
3076 | major releases), XS modules compiled for previous versions of perl will not | |
3077 | work anymore. They will need to be recompiled against the new perl. | |
5076a392 | 3078 | |
1e463951 FC |
3079 | In order to ensure that modules are recompiled, and to prevent users from |
3080 | accidentally loading modules compiled for old perls into newer ones, the | |
3081 | C<XS_APIVERSION_BOOTCHECK> macro has been added. That macro, which is | |
3082 | called when loading every newly compiled extension, compares the API | |
3083 | version of the running perl with the version a module has been compiled for | |
3084 | and raises an exception if they don't match. | |
5076a392 | 3085 | |
1e463951 | 3086 | =head3 Perl_fetch_cop_label |
5076a392 | 3087 | |
1e463951 FC |
3088 | The first argument of the C API function C<Perl_fetch_cop_label> has changed |
3089 | from C<struct refcounted he *> to C<COP *>, to insulate the user from | |
3090 | implementation details. | |
5076a392 | 3091 | |
1e463951 FC |
3092 | This API function was marked as "may change", and likely isn't in use outside |
3093 | the core. (Neither an unpacked CPAN, nor Google's codesearch, finds any other | |
3094 | references to it.) | |
5076a392 | 3095 | |
1e463951 | 3096 | =head3 GvCV() and GvGP() are no longer lvalues |
5076a392 | 3097 | |
1e463951 FC |
3098 | The new GvCV_set() and GvGP_set() macros are now provided to replace |
3099 | assignment to those two macros. | |
5076a392 | 3100 | |
1e463951 FC |
3101 | This allows a future commit to eliminate some backref magic between GV |
3102 | and CVs, which will require complete control over assignment to the | |
3103 | gp_cv slot. | |
5076a392 | 3104 | |
1e463951 | 3105 | =head3 CvGV() is no longer an lvalue |
5076a392 | 3106 | |
1e463951 FC |
3107 | Under some circumstances, the C<CvGV()> field of a CV is now |
3108 | reference-counted. To ensure consistent behaviour, direct assignment to | |
3109 | it, for example C<CvGV(cv) = gv> is now a compile-time error. A new macro, | |
3110 | C<CvGV_set(cv,gv)> has been introduced to perform this operation | |
3111 | safely. Note that modification of this field is not part of the public | |
3112 | API, regardless of this new macro (and despite its being listed in this section). | |
5076a392 | 3113 | |
1e463951 | 3114 | =head3 CvSTASH() is no longer an lvalue |
5076a392 | 3115 | |
1e463951 FC |
3116 | The C<CvSTASH()> macro can now only be used as an rvalue. C<CvSTASH_set()> |
3117 | has been added to replace assignment to C<CvSTASH()>. This is to ensure | |
3118 | that backreferences are handled properly. These macros are not part of the | |
3119 | API. | |
5076a392 | 3120 | |
1e463951 | 3121 | =head3 Calling conventions for C<newFOROP> and C<newWHILEOP> |
5076a392 | 3122 | |
1e463951 FC |
3123 | The way the parser handles labels has been cleaned up and refactored. As a |
3124 | result, the C<newFOROP()> constructor function no longer takes a parameter | |
3125 | stating what label is to go in the state op. | |
5076a392 | 3126 | |
1e463951 FC |
3127 | The C<newWHILEOP()> and C<newFOROP()> functions no longer accept a line |
3128 | number as a parameter. | |
5076a392 | 3129 | |
1e463951 | 3130 | =head3 Flags passed to C<uvuni_to_utf8_flags> and C<utf8n_to_uvuni> |
5076a392 | 3131 | |
1e463951 FC |
3132 | Some of the flags parameters to uvuni_to_utf8_flags() and |
3133 | utf8n_to_uvuni() have changed. This is a result of Perl's now allowing | |
5076a392 FC |
3134 | internal storage and manipulation of code points that are problematic |
3135 | in some situations. Hence, the default actions for these functions has | |
3136 | been complemented to allow these code points. The new flags are | |
3137 | documented in L<perlapi>. Code that requires the problematic code | |
483b16f3 | 3138 | points to be rejected needs to change to use the new flags. Some flag |
5076a392 FC |
3139 | names are retained for backward source compatibility, though they do |
3140 | nothing, as they are now the default. However the flags | |
3141 | C<UNICODE_ALLOW_FDD0>, C<UNICODE_ALLOW_FFFF>, C<UNICODE_ILLEGAL>, and | |
3142 | C<UNICODE_IS_ILLEGAL> have been removed, as they stem from a | |
3143 | fundamentally broken model of how the Unicode non-character code points | |
3144 | should be handled, which is now described in | |
3145 | L<perlunicode/Non-character code points>. See also L</Selected Bug Fixes>. | |
3146 | ||
1e463951 | 3147 | XXX Which bugs in particular? Selected Bug Fixes is too long for this link |
483b16f3 KW |
3148 | to be meaningful right now |
3149 | I don't see the bugs in that section currently -- khw | |
5076a392 | 3150 | |
1e463951 | 3151 | =head2 Deprecated C APIs |
5076a392 | 3152 | |
1e463951 | 3153 | =over |
5076a392 | 3154 | |
1e463951 | 3155 | =item C<Perl_ptr_table_clear> |
5076a392 | 3156 | |
1e463951 FC |
3157 | C<Perl_ptr_table_clear> is no longer part of Perl's public API. Calling it |
3158 | now generates a deprecation warning, and it will be removed in a future | |
3159 | release. | |
5076a392 | 3160 | |
1e463951 | 3161 | =item C<sv_compile_2op> |
5076a392 | 3162 | |
1e463951 FC |
3163 | The C<sv_compile_2op()> API function is now deprecated. Searches suggest |
3164 | that nothing on CPAN is using it, so this should have zero impact. | |
5076a392 | 3165 | |
1e463951 FC |
3166 | It attempted to provide an API to compile code down to an optree, but failed |
3167 | to bind correctly to lexicals in the enclosing scope. It's not possible to | |
3168 | fix this problem within the constraints of its parameters and return value. | |
5076a392 | 3169 | |
1e463951 | 3170 | =item C<find_rundefsvoffset> |
5076a392 | 3171 | |
1e463951 FC |
3172 | The C<find_rundefsvoffset> function has been deprecated. It appeared that |
3173 | its design was insufficient for reliably getting the lexical C<$_> at | |
3174 | run-time. | |
5076a392 | 3175 | |
1e463951 FC |
3176 | Use the new C<find_rundefsv> function or the C<UNDERBAR> macro |
3177 | instead. They directly return the right SV representing C<$_>, whether it's | |
3178 | lexical or dynamic. | |
5076a392 | 3179 | |
1e463951 | 3180 | =item C<CALL_FPTR> and C<CPERLscope> |
5076a392 | 3181 | |
1e463951 FC |
3182 | Those are left from an old implementation of C<MULTIPLICITY> using C++ objects, |
3183 | which was removed in Perl 5.8. Nowadays these macros do exactly nothing, so | |
3184 | they shouldn't be used anymore. | |
5076a392 | 3185 | |
1e463951 FC |
3186 | For compatibility, they are still defined for external C<XS> code. Only |
3187 | extensions defining C<PERL_CORE> must be updated now. | |
5076a392 | 3188 | |
1e463951 | 3189 | =back |
5076a392 | 3190 | |
1e463951 | 3191 | =head2 Other Internal Changes |
5076a392 | 3192 | |
1e463951 | 3193 | =head3 Stack unwinding |
5076a392 | 3194 | |
1e463951 FC |
3195 | The protocol for unwinding the C stack at the last stage of a C<die> |
3196 | has changed how it identifies the target stack frame. This now uses | |
3197 | a separate variable C<PL_restartjmpenv>, where previously it relied on | |
3198 | the C<blk_eval.cur_top_env> pointer in the C<eval> context frame that | |
3199 | has nominally just been discarded. This change means that code running | |
3200 | during various stages of Perl-level unwinding no longer needs to take | |
3201 | care to avoid destroying the ghost frame. | |
5076a392 | 3202 | |
1e463951 | 3203 | =head3 Scope stack entries |
5076a392 | 3204 | |
1e463951 FC |
3205 | The format of entries on the scope stack has been changed, resulting in a |
3206 | reduction of memory usage of about 10%. In particular, the memory used by | |
3207 | the scope stack to record each active lexical variable has been halved. | |
5076a392 | 3208 | |
1e463951 | 3209 | =head3 Memory allocation for pointer tables |
5076a392 | 3210 | |
1e463951 FC |
3211 | Memory allocation for pointer tables has been changed. Previously |
3212 | C<Perl_ptr_table_store> allocated memory from the same arena system as | |
3213 | C<SV> bodies and C<HE>s, with freed memory remaining bound to those arenas | |
3214 | until interpreter exit. Now it allocates memory from arenas private to the | |
3215 | specific pointer table, and that memory is returned to the system when | |
3216 | C<Perl_ptr_table_free> is called. Additionally, allocation and release are | |
3217 | both less CPU intensive. | |
5076a392 | 3218 | |
1e463951 | 3219 | =head3 C<UNDERBAR> |
5076a392 | 3220 | |
1e463951 FC |
3221 | The C<UNDERBAR> macro now calls C<find_rundefsv>. C<dUNDERBAR> is now a |
3222 | noop but should still be used to ensure past and future compatibility. | |
5076a392 | 3223 | |
1e463951 | 3224 | =head3 String comparison routines renamed |
5076a392 | 3225 | |
1e463951 FC |
3226 | The ibcmp_* functions have been renamed and are now called foldEQ, |
3227 | foldEQ_locale and foldEQ_utf8. The old names are still available as | |
3228 | macros. | |
3229 | ||
3230 | =head3 C<chop> and C<chomp> implementations merged | |
3231 | ||
3232 | The opcode bodies for C<chop> and C<chomp> and for C<schop> and C<schomp> | |
3233 | have been merged. The implementation functions C<Perl_do_chop()> and | |
3234 | C<Perl_do_chomp()>, never part of the public API, have been merged and | |
3235 | moved to a static function in F<pp.c>. This shrinks the perl binary | |
3236 | slightly, and should not affect any code outside the core (unless it is | |
3237 | relying on the order of side effects when C<chomp> is passed a I<list> of | |
3238 | values). | |
5076a392 FC |
3239 | |
3240 | =head1 Selected Bug Fixes | |
3241 | ||
e8e35311 FC |
3242 | =head2 I/O |
3243 | ||
5076a392 FC |
3244 | =over 4 |
3245 | ||
3246 | =item * | |
3247 | ||
e8e35311 | 3248 | Perl no longer produces this warning: |
a593b319 FC |
3249 | |
3250 | $ perl -we 'open my $f, ">", \my $x; binmode $f, "scalar"' | |
3251 | Use of uninitialized value in binmode at -e line 1. | |
3252 | ||
3253 | =item * | |
3254 | ||
e8e35311 FC |
3255 | Opening a glob reference via C<< open $fh, "E<gt>", \*glob >> will no longer |
3256 | cause the glob to be corrupted when the filehandle is printed to. This would | |
3257 | cause perl to crash whenever the glob's contents were accessed | |
3258 | [perl #77492]. | |
4ed2cea4 FC |
3259 | |
3260 | =item * | |
3261 | ||
e8e35311 FC |
3262 | PerlIO no longer crashes when called recursively, e.g., from a signal |
3263 | handler. Now it just leaks memory [perl #75556]. | |
4ed2cea4 FC |
3264 | |
3265 | =item * | |
3266 | ||
e8e35311 FC |
3267 | Most I/O functions were not warning for unopened handles unless the |
3268 | 'closed' and 'unopened' warnings categories were both enabled. Now only | |
3269 | C<use warnings 'unopened'> is necessary to trigger these warnings (as was | |
438c239f | 3270 | always meant to be the case). |
4ed2cea4 FC |
3271 | |
3272 | =item * | |
3273 | ||
438c239f | 3274 | There have been several fixes to PerlIO layers: |
e8e35311 | 3275 | |
438c239f FC |
3276 | When C<binmode FH, ":crlf"> pushes the C<:crlf> layer on top of the stack, |
3277 | it no longer enables crlf layers lower in the stack, to avoid unexpected | |
3278 | results [perl #38456]. | |
4ed2cea4 | 3279 | |
438c239f FC |
3280 | Opening a file in C<:raw> mode now does what it advertises to do (first |
3281 | open the file, then binmode it), instead of simply leaving off the top | |
3282 | layer [perl #80764]. | |
5076a392 | 3283 | |
438c239f FC |
3284 | The three layers C<:pop>, C<:utf8> and C<:bytes> didn't allow stacking when |
3285 | opening a file. For example | |
e8e35311 | 3286 | this: |
5076a392 | 3287 | |
e8e35311 | 3288 | open FH, '>:pop:perlio', 'some.file' or die $!; |
5076a392 | 3289 | |
438c239f FC |
3290 | Would throw an error: "Invalid argument". This has been fixed in this |
3291 | release [perl #82484]. | |
5076a392 | 3292 | |
e8e35311 FC |
3293 | =back |
3294 | ||
3295 | =head2 Regular Expression Bug Fixes | |
3296 | ||
3297 | =over | |
5076a392 FC |
3298 | |
3299 | =item * | |
3300 | ||
e8e35311 FC |
3301 | The regular expression engine no longer loops when matching |
3302 | C<"\N{LATIN SMALL LIGATURE FF}" =~ /f+/i> and similar expressions | |
cdc10f43 | 3303 | [perl #72998] (5.12.1). |
5076a392 FC |
3304 | |
3305 | =item * | |
3306 | ||
e8e35311 FC |
3307 | The trie runtime code should no longer allocate massive amounts of memory, |
3308 | fixing #74484. | |
5076a392 FC |
3309 | |
3310 | =item * | |
3311 | ||
438c239f FC |
3312 | Syntax errors in C<< (?{...}) >> blocks no longer cause panic messages |
3313 | [perl #2353]. | |
5076a392 FC |
3314 | |
3315 | =item * | |
3316 | ||
438c239f FC |
3317 | A pattern like C<(?:(o){2})?> no longer causes a "panic" error |
3318 | [perl #39233]. | |
5076a392 FC |
3319 | |
3320 | =item * | |
3321 | ||
438c239f | 3322 | A fatal error in regular expressions containing C<(.*?)> when processing |
d430b8e7 | 3323 | UTF-8 data has been fixed [perl #75680] (5.12.2). |
5076a392 FC |
3324 | |
3325 | =item * | |
3326 | ||
e8e35311 | 3327 | An erroneous regular expression engine optimisation that caused regex verbs like |
438c239f | 3328 | C<*COMMIT> sometimes to be ignored has been removed. |
5076a392 FC |
3329 | |
3330 | =item * | |
3331 | ||
e8e35311 FC |
3332 | The regular expression bracketed character class C<[\8\9]> was effectively the |
3333 | same as C<[89\000]>, incorrectly matching a NULL character. It also gave | |
3334 | incorrect warnings that the C<8> and C<9> were ignored. Now C<[\8\9]> is the | |
3335 | same as C<[89]> and gives legitimate warnings that C<\8> and C<\9> are | |
3336 | unrecognized escape sequences, passed-through. | |
5076a392 FC |
3337 | |
3338 | =item * | |
3339 | ||
e8e35311 FC |
3340 | A regular expression match in the right-hand side of a global substitution |
3341 | (C<s///g>) that is in the same scope will no longer cause match variables | |
3342 | to have the wrong values on subsequent iterations. This can happen when an | |
3343 | array or hash subscript is interpolated in the right-hand side, as in | |
3344 | C<s|(.)|@a{ print($1), /./ }|g> [perl #19078]. | |
5076a392 FC |
3345 | |
3346 | =item * | |
3347 | ||
438c239f FC |
3348 | Several cases in which characters in the Latin-1 non-ASCII range (0x80 to |
3349 | 0xFF) used not to match themselves or used to match both a character class | |
3350 | and its complement have been fixed. For instance, U+00E2 could match both | |
3351 | C<\w> and C<\W> [perl #78464] [perl #18281] [perl #60156]. | |
5076a392 FC |
3352 | |
3353 | =item * | |
3354 | ||
e8e35311 FC |
3355 | Matching a Unicode character against an alternation containing characters |
3356 | that happened to match continuation bytes in the former's UTF8 | |
3357 | representation (C<qq{\x{30ab}} =~ /\xab|\xa9/>) would cause erroneous | |
3358 | warnings [perl #70998]. | |
5076a392 FC |
3359 | |
3360 | =item * | |
3361 | ||
e8e35311 FC |
3362 | The trie optimisation was not taking empty groups into account, preventing |
3363 | 'foo' from matching C</\A(?:(?:)foo|bar|zot)\z/> [perl #78356]. | |
5076a392 FC |
3364 | |
3365 | =item * | |
3366 | ||
e8e35311 FC |
3367 | A pattern containing a C<+> inside a lookahead would sometimes cause an |
3368 | incorrect match failure in a global match (e.g., C</(?=(\S+))/g>) | |
3369 | [perl #68564]. | |
5076a392 FC |
3370 | |
3371 | =item * | |
3372 | ||
e8e35311 FC |
3373 | A regular expression optimisation would sometimes cause a match with a |
3374 | C<{n,m}> quantifier to fail when it should match [perl #79152]. | |
5076a392 FC |
3375 | |
3376 | =item * | |
3377 | ||
e8e35311 | 3378 | Case insensitive matching in regular expressions compiled under C<use |
438c239f FC |
3379 | locale> now works much more sanely when the pattern or |
3380 | target string is encoded internally in | |
3381 | UTF8. Previously, under these conditions the localeness | |
e8e35311 FC |
3382 | was completely lost. Now, code points above 255 are treated as Unicode, |
3383 | but code points between 0 and 255 are treated using the current locale | |
438c239f FC |
3384 | rules, regardless of whether the pattern or the string is encoded in UTF8. |
3385 | The few case-insensitive matches that cross the 255/256 boundary are not | |
e8e35311 FC |
3386 | allowed. For example, 0xFF does not caselessly match the character at |
3387 | 0x178, LATIN CAPITAL LETTER Y WITH DIAERESIS, because 0xFF may not be | |
3388 | LATIN SMALL LETTER Y in the current locale, and Perl has no way of | |
3389 | knowing if that character even exists in the locale, much less what code | |
3390 | point it is. | |
5076a392 FC |
3391 | |
3392 | =item * | |
3393 | ||
e8e35311 FC |
3394 | The C<(?|...)> regular expression construct no longer crashes if the final |
3395 | branch has more sets of capturing parentheses than any other branch. This | |
3396 | was fixed in Perl 5.10.1 for the case of a single branch, but that fix did | |
3397 | not take multiple branches into account [perl #84746]. | |
5076a392 FC |
3398 | |
3399 | =item * | |
3400 | ||
e8e35311 FC |
3401 | A bug has been fixed in the implementation of C<{...}> quantifiers in |
3402 | regular expressions that prevented the code block in | |
3403 | C</((\w+)(?{ print $2 })){2}/> from seeing the C<$2> sometimes | |
3404 | [perl #84294]. | |
5076a392 | 3405 | |
e8e35311 | 3406 | =back |
5076a392 | 3407 | |
e8e35311 FC |
3408 | =head2 Syntax/Parsing Bugs |
3409 | ||
3410 | =over | |
5076a392 FC |
3411 | |
3412 | =item * | |
3413 | ||
e8e35311 | 3414 | C<when(scalar){...}> no longer crashes, but produces a syntax error |
cdc10f43 | 3415 | [perl #74114] (5.12.1). |
5076a392 FC |
3416 | |
3417 | =item * | |
3418 | ||
e8e35311 FC |
3419 | A label right before a string eval (C<foo: eval $string>) no longer causes |
3420 | the label to be associated also with the first statement inside the eval | |
3421 | [perl #74290] (5.12.1). | |
5076a392 FC |
3422 | |
3423 | =item * | |
3424 | ||
b2c076b5 | 3425 | The C<no 5.13.2;> form of C<no> no longer tries to turn on features or |
d430b8e7 | 3426 | pragmata (i.e., strict) [perl #70075] (5.12.2). |
5076a392 FC |
3427 | |
3428 | =item * | |
3429 | ||
b2c076b5 FC |
3430 | C<BEGIN {require 5.12.0}> now behaves as documented, rather than behaving |
3431 | identically to C<use 5.12.0;>. Previously, C<require> in a C<BEGIN> block | |
3432 | was erroneously executing the C<use feature ':5.12.0'> and | |
3433 | C<use strict;> behaviour, which only C<use> was documented to | |
3434 | provide [perl #69050]. | |
5076a392 FC |
3435 | |
3436 | =item * | |
3437 | ||
5076a392 FC |
3438 | A regression introduced in Perl 5.12.0, making |
3439 | C<< my $x = 3; $x = length(undef) >> result in C<$x> set to C<3> has been | |
d430b8e7 | 3440 | fixed. C<$x> will now be C<undef> [perl #85508] (5.12.2). |
b2c076b5 FC |
3441 | |
3442 | =item * | |
3443 | ||
3444 | When strict 'refs' mode is off, C<%{...}> in rvalue context returns | |
3445 | C<undef> if its argument is undefined. An optimisation introduced in perl | |
3446 | 5.12.0 to make C<keys %{...}> faster when used as a boolean did not take | |
3447 | this into account, causing C<keys %{+undef}> (and C<keys %$foo> when | |
3448 | C<$foo> is undefined) to be an error, which it should only be in strict | |
3449 | mode [perl #81750]. | |
5076a392 FC |
3450 | |
3451 | =item * | |
3452 | ||
e8e35311 | 3453 | Constant-folding used to cause |
5076a392 | 3454 | |
e8e35311 | 3455 | $text =~ ( 1 ? /phoo/ : /bear/) |
5076a392 | 3456 | |
e8e35311 FC |
3457 | to turn into |
3458 | ||
3459 | $text =~ /phoo/ | |
3460 | ||
3461 | at compile time. Now it correctly matches against C<$_> [perl #20444]. | |
5076a392 FC |
3462 | |
3463 | =item * | |
3464 | ||
e8e35311 FC |
3465 | Parsing Perl code (either with string C<eval> or by loading modules) from |
3466 | within a C<UNITCHECK> block no longer causes the interpreter to crash | |
3467 | [perl #70614]. | |
5076a392 FC |
3468 | |
3469 | =item * | |
3470 | ||
b2c076b5 FC |
3471 | String evals no longer fail after 2 billion scopes have been |
3472 | compiled [perl #83364]. | |
3473 | ||
3474 | =item * | |
3475 | ||
e8e35311 FC |
3476 | The parser no longer hangs when encountering certain Unicode characters, |
3477 | such as U+387 [perl #74022]. | |
5076a392 FC |
3478 | |
3479 | =item * | |
3480 | ||
b2c076b5 FC |
3481 | Several contexts no longer allow a Unicode character to begin a word |
3482 | that should never begin words, for an example an accent that must follow | |
3483 | another character previously could precede all other characters. | |
5076a392 FC |
3484 | |
3485 | =item * | |
3486 | ||
e8e35311 FC |
3487 | Defining a constant with the same name as one of perl's special blocks |
3488 | (e.g., INIT) stopped working in 5.12.0, but has now been fixed | |
3489 | [perl #78634]. | |
5076a392 FC |
3490 | |
3491 | =item * | |
3492 | ||
e8e35311 FC |
3493 | A reference to a literal value used as a hash key (C<$hash{\"foo"}>) used |
3494 | to be stringified, even if the hash was tied [perl #79178]. | |
5076a392 FC |
3495 | |
3496 | =item * | |
3497 | ||
e8e35311 FC |
3498 | A closure containing an C<if> statement followed by a constant or variable |
3499 | is no longer treated as a constant [perl #63540]. | |
5076a392 FC |
3500 | |
3501 | =item * | |
3502 | ||
e8e35311 FC |
3503 | C<state> can now be used with attributes. It used to mean the same thing as |
3504 | C<my> if attributes were present [perl #68658]. | |
5076a392 FC |
3505 | |
3506 | =item * | |
3507 | ||
e8e35311 FC |
3508 | Expressions like C<< @$a > 3 >> no longer cause C<$a> to be mentioned in |
3509 | the "Use of uninitialized value in numeric gt" warning when C<$a> is | |
3510 | undefined (since it is not part of the C<E<gt>> expression, but the operand | |
3511 | of the C<@>) [perl #72090]. | |
5076a392 FC |
3512 | |
3513 | =item * | |
3514 | ||
e8e35311 FC |
3515 | Accessing an element of a package array with a hard-coded number (as |
3516 | opposed to an arbitrary expression) would crash if the array did not exist. | |
3517 | Usually the array would be autovivified during compilation, but typeglob | |
3518 | manipulation could remove it, as in these two cases which used to crash: | |
5076a392 | 3519 | |
e8e35311 FC |
3520 | *d = *a; print $d[0]; |
3521 | undef *d; print $d[0]; | |
5076a392 | 3522 | |
2c389f6c FC |
3523 | =item * |
3524 | ||
3525 | The C<-C> command line option, when used on the shebang line, can now be | |
3526 | followed by other options [perl #72434]. | |
3527 | ||
3528 | =item * | |
3529 | ||
3530 | The C<B> module was returning C<B::OP>s instead of C<B::LOGOP>s for C<entertry> [perl #80622]. | |
3531 | This was due to a bug in the perl core, not in C<B> itself. | |
3532 | ||
e8e35311 | 3533 | =back |
5076a392 | 3534 | |
e262cb24 FC |
3535 | =head2 Stashes, Globs and Method Lookup |
3536 | ||
3537 | Perl 5.10.0 introduced a new internal mechanism for caching MROs (method | |
3538 | resolution orders, or lists of parent classes; aka "isa" caches) to make | |
3539 | method lookup faster (so @ISA arrays would not have to be searched | |
3540 | repeatedly). Unfortunately, this brought with it quite a few bugs. Almost | |
3541 | all of these have been fixed now, along with a few MRO-related bugs that | |
3542 | existed before 5.10.0: | |
3543 | ||
3544 | =over | |
3545 | ||
3546 | =item * | |
3547 | ||
3548 | The following used to have erratic effects on method resolution, because | |
3549 | the "isa" caches were not reset or otherwise ended up listing the wrong | |
3550 | classes. These have been fixed. | |
3551 | ||
3552 | =over | |
3553 | ||
3554 | =item Aliasing packages by assigning to globs [perl #77358] | |
3555 | ||
3556 | =item Deleting packages by deleting their containing stash elements | |
3557 | ||
3558 | =item Undefining the glob containing a package (C<undef *Foo::>) | |
3559 | ||
3560 | =item Undefining an ISA glob (C<undef *Foo::ISA>) | |
3561 | ||
3562 | =item Deleting an ISA stash element (C<delete $Foo::{ISA}>) | |
3563 | ||
3564 | =item Sharing @ISA arrays between classes (via C<*F |