Commit | Line | Data |
---|---|---|
44691e6f AB |
1 | =encoding utf8 |
2 | ||
3 | =head1 NAME | |
4 | ||
39c4a6cf PM |
5 | [ this is a template for a new perldelta file. Any text flagged as XXX needs |
6 | to be processed before release. ] | |
7 | ||
8 | perldelta - what is new for perl v5.21.4 | |
c68523cb | 9 | |
238894db | 10 | =head1 DESCRIPTION |
c68523cb | 11 | |
39c4a6cf | 12 | This document describes differences between the 5.21.3 release and the 5.21.4 |
238894db | 13 | release. |
c68523cb | 14 | |
39c4a6cf PM |
15 | If you are upgrading from an earlier release such as 5.21.2, first read |
16 | L<perl5213delta>, which describes differences between 5.21.2 and 5.21.3. | |
7065301c | 17 | |
39c4a6cf | 18 | =head1 Notice |
7e957246 | 19 | |
39c4a6cf | 20 | XXX Any important notices here |
7e957246 | 21 | |
39c4a6cf | 22 | =head1 Core Enhancements |
f88f10f5 | 23 | |
39c4a6cf PM |
24 | XXX New core language features go here. Summarize user-visible core language |
25 | enhancements. Particularly prominent performance optimisations could go | |
26 | here, but most should go in the L</Performance Enhancements> section. | |
21f3b41e | 27 | |
39c4a6cf | 28 | [ List each enhancement as a =head2 entry ] |
f88f10f5 | 29 | |
5b319db8 JH |
30 | =head2 Infinity and NaN (not-a-number) handling improved |
31 | ||
32 | Floating point values are able to hold the special values infinity | |
33 | (also -infinity), and NaN (not-a-number). Now we more robustly recognize | |
34 | and propagate the value in computations, and on output normalize them | |
35 | to C<Inf> and C<NaN>. | |
36 | ||
019bf663 | 37 | See also the L<POSIX> enhancements. |
5b319db8 | 38 | |
0346c3a9 | 39 | =head1 Security |
7e957246 | 40 | |
39c4a6cf PM |
41 | XXX Any security-related notices go here. In particular, any security |
42 | vulnerabilities closed should be noted here rather than in the | |
43 | L</Selected Bug Fixes> section. | |
13900f93 | 44 | |
39c4a6cf | 45 | [ List each security issue as a =head2 entry ] |
8bdb3f93 | 46 | |
13900f93 | 47 | =head1 Incompatible Changes |
8bdb3f93 | 48 | |
39c4a6cf | 49 | XXX For a release on a stable branch, this section aspires to be: |
1178d2cf | 50 | |
39c4a6cf PM |
51 | There are no changes intentionally incompatible with 5.XXX.XXX |
52 | If any exist, they are bugs, and we request that you submit a | |
53 | report. See L</Reporting Bugs> below. | |
1178d2cf | 54 | |
39c4a6cf | 55 | [ List each incompatible change as a =head2 entry ] |
f6f3144e | 56 | |
2b03450b FC |
57 | =head2 Changes to the C<*> prototype |
58 | ||
59 | The C<*> character in a subroutine's prototype used to allow barewords | |
60 | to take precedence over most, but not all subroutines. It was never | |
61 | consistent and exhibited buggy behaviour. | |
62 | ||
63 | Now it has been changed, so subroutines always take precedence over | |
64 | barewords, which brings it into conformity with similarly prototyped | |
65 | built-in functions: | |
66 | ||
67 | sub splat($) { ... } | |
68 | sub foo { ... } | |
69 | splat(foo); # now always splat(foo()) | |
70 | splat(bar); # still splat('bar') as before | |
71 | close(foo); # close(foo()) | |
72 | close(bar); # close('bar') | |
73 | ||
39c4a6cf | 74 | =head1 Deprecations |
7065301c | 75 | |
39c4a6cf | 76 | XXX Any deprecated features, syntax, modules etc. should be listed here. |
7065301c | 77 | |
39c4a6cf | 78 | =head2 Module removals |
b3e82ed1 | 79 | |
39c4a6cf | 80 | XXX Remove this section if inapplicable. |
ca58223b | 81 | |
39c4a6cf PM |
82 | The following modules will be removed from the core distribution in a |
83 | future release, and will at that time need to be installed from CPAN. | |
84 | Distributions on CPAN which require these modules will need to list them as | |
85 | prerequisites. | |
ca58223b | 86 | |
39c4a6cf PM |
87 | The core versions of these modules will now issue C<"deprecated">-category |
88 | warnings to alert you to this fact. To silence these deprecation warnings, | |
89 | install the modules in question from CPAN. | |
23b03637 | 90 | |
39c4a6cf PM |
91 | Note that these are (with rare exceptions) fine modules that you are encouraged |
92 | to continue to use. Their disinclusion from core primarily hinges on their | |
93 | necessity to bootstrapping a fully functional, CPAN-capable Perl installation, | |
94 | not usually on concerns over their design. | |
23b03637 | 95 | |
39c4a6cf | 96 | =over |
85e8fb10 | 97 | |
39c4a6cf | 98 | =item XXX |
85e8fb10 | 99 | |
39c4a6cf PM |
100 | XXX Note that deprecated modules should be listed here even if they are listed |
101 | as an updated module in the L</Modules and Pragmata> section. | |
134f90c2 | 102 | |
39c4a6cf | 103 | =back |
134f90c2 | 104 | |
39c4a6cf | 105 | [ List each other deprecation as a =head2 entry ] |
ff433f2d | 106 | |
39c4a6cf | 107 | =head1 Performance Enhancements |
ff433f2d | 108 | |
39c4a6cf PM |
109 | XXX Changes which enhance performance without changing behaviour go here. |
110 | There may well be none in a stable release. | |
134f90c2 | 111 | |
39c4a6cf | 112 | [ List each enhancement as a =item entry ] |
134f90c2 | 113 | |
39c4a6cf | 114 | =over 4 |
7d19f6a1 | 115 | |
7d19f6a1 PM |
116 | =item * |
117 | ||
4f81ab9c FC |
118 | Subroutines with an empty prototype and bodies containing just C<undef> are |
119 | now eligible for inlining. [perl #122728] | |
55e8b286 | 120 | |
39c4a6cf | 121 | =back |
55e8b286 | 122 | |
39c4a6cf | 123 | =head1 Modules and Pragmata |
d99849ae | 124 | |
39c4a6cf PM |
125 | XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/> |
126 | go here. If Module::CoreList is updated, generate an initial draft of the | |
127 | following sections using F<Porting/corelist-perldelta.pl>. A paragraph summary | |
128 | for important changes should then be added by hand. In an ideal world, | |
129 | dual-life modules would have a F<Changes> file that could be cribbed. | |
d99849ae | 130 | |
39c4a6cf | 131 | [ Within each section, list entries as a =item entry ] |
ff433f2d | 132 | |
39c4a6cf | 133 | =head2 New Modules and Pragmata |
ff433f2d | 134 | |
39c4a6cf | 135 | =over 4 |
ff433f2d PM |
136 | |
137 | =item * | |
138 | ||
39c4a6cf | 139 | XXX |
0bb39c26 | 140 | |
39c4a6cf | 141 | =back |
0bb39c26 | 142 | |
39c4a6cf | 143 | =head2 Updated Modules and Pragmata |
9c97a342 | 144 | |
39c4a6cf | 145 | =over 4 |
d99849ae PM |
146 | |
147 | =item * | |
148 | ||
39c4a6cf | 149 | L<XXX> has been upgraded from version A.xx to B.yy. |
6ab3666b | 150 | |
233a4069 JK |
151 | =item * |
152 | ||
d0ab07ee JK |
153 | L<B::Concise> has been upgraded from version 0.992 to 0.993. |
154 | ||
608e531f SH |
155 | =item * |
156 | ||
157 | L<CPAN::Meta::Requirements> has been upgraded from version 2.126 to 2.128. | |
74d5bfab AS |
158 | |
159 | =item * | |
160 | ||
161 | L<ExtUtils::CBuilder> has been upgraded from version 0.280216 to 0.280219. | |
162 | [perl #122675]. | |
163 | ||
d0ab07ee JK |
164 | =item * |
165 | ||
39091b75 JK |
166 | L<ExtUtils::Manifest> has been upgraded from version 1.65 to 1.66. |
167 | [perl #122415]. | |
168 | ||
169 | =item * | |
170 | ||
ecd53122 JK |
171 | L<ExtUtils::ParseXS>: Documentation has been added to |
172 | F<ExtUtils-ParseXS/lib/perlxs.pod> concerning handling of locales when writing | |
173 | XS code. | |
174 | ||
175 | =item * | |
176 | ||
9eace98c JK |
177 | L<File::Find> has been upgraded from version 1.27 to 1.28. |
178 | ||
179 | C<find()> and C<finddepth()> will now warn if passed inappropriate or | |
180 | misspelled options. | |
181 | ||
182 | =item * | |
183 | ||
184 | L<Getopt::Std> has been upgraded from version 1.10 to 1.11. | |
185 | ||
186 | =item * | |
187 | ||
d0ab07ee JK |
188 | L<HTTP::Tiny> has been upgraded from version 0.047 to 0.048. |
189 | ||
190 | =item * | |
191 | ||
192 | L<Module::CoreList> has been upgraded from version 5.021003 to 5.021004. | |
193 | ||
194 | =item * | |
195 | ||
196 | L<POSIX> has been upgraded from version 1.42 to 1.43. | |
197 | ||
5b319db8 JH |
198 | The C99 math functions and constants (for example acosh, round, |
199 | M_E, M_PI) have been added. | |
200 | ||
d0ab07ee JK |
201 | =item * |
202 | ||
203 | L<Pod::Perldoc> has been upgraded from version 3.23 to 3.24. | |
204 | ||
205 | =item * | |
206 | ||
46274848 SH |
207 | Scalar-List-Utils has been upgraded from version 1.40 to 1.41. |
208 | ||
209 | =item * | |
210 | ||
d0ab07ee JK |
211 | L<constant> has been upgraded from version 1.31 to 1.32. |
212 | ||
bfc60ea2 FC |
213 | It now accepts fully-qualified constant names, allowing constants to be |
214 | defined in packages other than the caller. | |
215 | ||
d0ab07ee JK |
216 | =item * |
217 | ||
218 | L<threads> has been upgraded from version 1.95 to 1.96. | |
219 | ||
39c4a6cf | 220 | =back |
9c97a342 | 221 | |
39c4a6cf | 222 | =head2 Removed Modules and Pragmata |
d99849ae | 223 | |
39c4a6cf | 224 | =over 4 |
d99849ae | 225 | |
ff433f2d PM |
226 | =item * |
227 | ||
39c4a6cf | 228 | XXX |
ff433f2d | 229 | |
13900f93 | 230 | =back |
aac7f82f | 231 | |
13900f93 | 232 | =head1 Documentation |
aac7f82f | 233 | |
39c4a6cf PM |
234 | XXX Changes to files in F<pod/> go here. Consider grouping entries by |
235 | file and be sure to link to the appropriate page, e.g. L<perlfunc>. | |
6d9b7c7c | 236 | |
39c4a6cf | 237 | =head2 New Documentation |
2a395b86 | 238 | |
39c4a6cf | 239 | XXX Changes which create B<new> files in F<pod/> go here. |
2a395b86 | 240 | |
39c4a6cf | 241 | =head3 L<XXX> |
2a395b86 | 242 | |
39c4a6cf | 243 | XXX Description of the purpose of the new file here |
2a395b86 | 244 | |
39c4a6cf | 245 | =head2 Changes to Existing Documentation |
2a395b86 | 246 | |
39c4a6cf PM |
247 | XXX Changes which significantly change existing files in F<pod/> go here. |
248 | However, any changes to F<pod/perldiag.pod> should go in the L</Diagnostics> | |
249 | section. | |
250 | ||
251 | =head3 L<XXX> | |
2a395b86 PM |
252 | |
253 | =over 4 | |
254 | ||
255 | =item * | |
256 | ||
39c4a6cf | 257 | XXX Description of the change here |
2a395b86 | 258 | |
12d22d1f JK |
259 | =item * |
260 | ||
261 | L<perlsyn>: An ambiguity in the documentation of the Ellipsis statement has | |
262 | been corrected. [perl #122661] | |
263 | ||
2a395b86 PM |
264 | =back |
265 | ||
39c4a6cf | 266 | =head1 Diagnostics |
2a395b86 | 267 | |
39c4a6cf PM |
268 | The following additions or changes have been made to diagnostic output, |
269 | including warnings and fatal error messages. For the complete list of | |
270 | diagnostic messages, see L<perldiag>. | |
2a395b86 | 271 | |
39c4a6cf PM |
272 | XXX New or changed warnings emitted by the core's C<C> code go here. Also |
273 | include any changes in L<perldiag> that reconcile it to the C<C> code. | |
2a395b86 | 274 | |
39c4a6cf | 275 | =head2 New Diagnostics |
0f4a583b | 276 | |
39c4a6cf PM |
277 | XXX Newly added diagnostic messages go under here, separated into New Errors |
278 | and New Warnings | |
2a395b86 | 279 | |
39c4a6cf | 280 | =head3 New Errors |
2a395b86 PM |
281 | |
282 | =over 4 | |
283 | ||
284 | =item * | |
285 | ||
39c4a6cf | 286 | XXX L<message|perldiag/"message"> |
2a395b86 PM |
287 | |
288 | =back | |
289 | ||
39c4a6cf | 290 | =head3 New Warnings |
2a395b86 PM |
291 | |
292 | =over 4 | |
293 | ||
294 | =item * | |
295 | ||
39c4a6cf | 296 | XXX L<message|perldiag/"message"> |
2a395b86 PM |
297 | |
298 | =back | |
6d9b7c7c | 299 | |
39c4a6cf PM |
300 | =head2 Changes to Existing Diagnostics |
301 | ||
302 | XXX Changes (i.e. rewording) of diagnostic messages go here | |
7f55cec0 | 303 | |
13900f93 | 304 | =over 4 |
7f55cec0 SH |
305 | |
306 | =item * | |
307 | ||
39c4a6cf | 308 | XXX Describe change here |
aac7f82f | 309 | |
13900f93 | 310 | =back |
aac7f82f | 311 | |
363d3025 FC |
312 | =head2 Diagnostic Removals |
313 | ||
314 | =over 4 | |
315 | ||
316 | =item * | |
317 | ||
334464b3 FC |
318 | "Constant is not a FOO reference" |
319 | ||
320 | Compile-time checking of constant dereferencing (e.g., | |
321 | C<< my_constant->() >>) has been removed, since it was not taking | |
322 | overloading into account. [perl #69456] [perl #122607] | |
323 | ||
324 | =item * | |
325 | ||
363d3025 FC |
326 | The warning "Ambiguous use of -foo resolved as -&foo()" has been removed. |
327 | There is actually no ambiguity here, and this impedes the use of negated | |
328 | constants; e.g., C<-Inf>. | |
329 | ||
ef5a9509 FC |
330 | =item * |
331 | ||
332 | The little-known C<my Class $var> syntax (see L<fields> and L<attributes>) | |
333 | could get confused in the scope of C<use utf8> if C<Class> were a constant | |
334 | whose value contained Latin-1 characters. | |
335 | ||
363d3025 FC |
336 | =back |
337 | ||
39c4a6cf | 338 | =head1 Utility Changes |
091fed7c | 339 | |
39c4a6cf PM |
340 | XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go here. |
341 | Most of these are built within the directory F<utils>. | |
902c1f75 | 342 | |
39c4a6cf PM |
343 | [ List utility changes as a =head2 entry for each utility and =item |
344 | entries for each change | |
345 | Use L<XXX> with program names to get proper documentation linking. ] | |
2901561d | 346 | |
39c4a6cf | 347 | =head2 L<XXX> |
4594cf53 | 348 | |
13900f93 | 349 | =over 4 |
96dcbc37 DD |
350 | |
351 | =item * | |
352 | ||
39c4a6cf | 353 | XXX |
a1d26ccd | 354 | |
39c4a6cf | 355 | =back |
a1d26ccd | 356 | |
39c4a6cf | 357 | =head1 Configuration and Compilation |
7065301c | 358 | |
39c4a6cf PM |
359 | XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools |
360 | go here. Any other changes to the Perl build process should be listed here. | |
361 | However, any platform-specific changes should be listed in the | |
362 | L</Platform Support> section, instead. | |
58f25ac1 | 363 | |
39c4a6cf | 364 | [ List changes as a =item entry ]. |
13900f93 A |
365 | |
366 | =over 4 | |
58f25ac1 MH |
367 | |
368 | =item * | |
369 | ||
39c4a6cf | 370 | XXX |
a5873648 | 371 | |
39c4a6cf | 372 | =back |
a5873648 | 373 | |
39c4a6cf | 374 | =head1 Testing |
a5873648 | 375 | |
39c4a6cf PM |
376 | XXX Any significant changes to the testing of a freshly built perl should be |
377 | listed here. Changes which create B<new> files in F<t/> go here as do any | |
378 | large changes to the testing harness (e.g. when parallel testing was added). | |
379 | Changes to existing files in F<t/> aren't worth summarizing, although the bugs | |
380 | that they represent may be covered elsewhere. | |
a5873648 | 381 | |
39c4a6cf | 382 | [ List each test improvement as a =item entry ] |
a5873648 | 383 | |
39c4a6cf | 384 | =over 4 |
a5873648 PM |
385 | |
386 | =item * | |
387 | ||
39c4a6cf | 388 | XXX |
a5873648 | 389 | |
58f25ac1 MH |
390 | =back |
391 | ||
39c4a6cf | 392 | =head1 Platform Support |
b10906fb | 393 | |
39c4a6cf | 394 | XXX Any changes to platform support should be listed in the sections below. |
b10906fb | 395 | |
39c4a6cf PM |
396 | [ Within the sections, list each platform as a =item entry with specific |
397 | changes as paragraphs below it. ] | |
b10906fb | 398 | |
39c4a6cf | 399 | =head2 New Platforms |
b10906fb | 400 | |
39c4a6cf PM |
401 | XXX List any platforms that this version of perl compiles on, that previous |
402 | versions did not. These will either be enabled by new files in the F<hints/> | |
403 | directories, or new subdirectories and F<README> files at the top level of the | |
404 | source tree. | |
13900f93 | 405 | |
7065301c | 406 | =over 4 |
24a38d90 | 407 | |
39c4a6cf | 408 | =item XXX-some-platform |
24a38d90 | 409 | |
39c4a6cf | 410 | XXX |
bb076206 | 411 | |
7065301c RS |
412 | =back |
413 | ||
39c4a6cf | 414 | =head2 Discontinued Platforms |
097675bf | 415 | |
39c4a6cf | 416 | XXX List any platforms that this version of perl no longer compiles on. |
b3211734 | 417 | |
6e97d65d | 418 | =over 4 |
b3211734 | 419 | |
39c4a6cf | 420 | =item XXX-some-platform |
7065301c | 421 | |
39c4a6cf | 422 | XXX |
13900f93 | 423 | |
39c4a6cf | 424 | =back |
7d0ccdba | 425 | |
39c4a6cf | 426 | =head2 Platform-Specific Notes |
7d0ccdba | 427 | |
39c4a6cf PM |
428 | XXX List any changes for specific platforms. This could include configuration |
429 | and compilation changes or changes in portability/compatibility. However, | |
430 | changes within modules for platforms should generally be listed in the | |
431 | L</Modules and Pragmata> section. | |
6e97d65d | 432 | |
39c4a6cf | 433 | =over 4 |
6e97d65d | 434 | |
39c4a6cf | 435 | =item XXX-some-platform |
6e97d65d | 436 | |
39c4a6cf | 437 | XXX |
7d0ccdba | 438 | |
7065301c RS |
439 | =back |
440 | ||
441 | =head1 Internal Changes | |
442 | ||
39c4a6cf PM |
443 | XXX Changes which affect the interface available to C<XS> code go here. Other |
444 | significant internal changes for future core maintainers should be noted as | |
445 | well. | |
c9fcb674 | 446 | |
39c4a6cf | 447 | [ List each change as a =item entry ] |
a835cd47 | 448 | |
39c4a6cf | 449 | =over 4 |
c1284011 | 450 | |
7d15b1a8 | 451 | XXX |
1c43698b | 452 | |
6d9b7c7c | 453 | =back |
c1284011 | 454 | |
6d9b7c7c | 455 | =head1 Selected Bug Fixes |
375f5f06 | 456 | |
39c4a6cf PM |
457 | XXX Important bug fixes in the core language are summarized here. Bug fixes in |
458 | files in F<ext/> and F<lib/> are best summarized in L</Modules and Pragmata>. | |
459 | ||
460 | [ List each fix as a =item entry ] | |
461 | ||
0346c3a9 | 462 | =over 4 |
375f5f06 | 463 | |
2884baee MH |
464 | =item * |
465 | ||
39c4a6cf | 466 | XXX |
2884baee | 467 | |
0aa1826c FC |
468 | =item * |
469 | ||
6f1a844b FC |
470 | Constant dereferencing now works correctly for typeglob constants. |
471 | Previously the glob was stringified and its name looked up. Now the glob | |
472 | itself is used. [perl #69456] | |
473 | ||
549ea8d4 FC |
474 | =item * |
475 | ||
476 | When parsing a funny character ($ @ % &) followed by braces, the parser no | |
477 | longer tries to guess whether it is a block or a hash constructor (causing | |
478 | a syntax error when it guesses the latter), since it can only be a block. | |
479 | ||
be0006e0 FC |
480 | =item * |
481 | ||
482 | C<undef $reference> now frees the referent immediately, instead of hanging | |
483 | on to it until the next statement. [perl #122556] | |
484 | ||
1699f5c2 FC |
485 | =item * |
486 | ||
487 | Various cases where the name of a sub is used (autoload, overloading, error | |
488 | messages) used to crash for lexical subs, but have been fixed. | |
489 | ||
7e8b2071 FC |
490 | =item * |
491 | ||
492 | Bareword lookup now tries to avoid vivifying packages if it turns out the | |
493 | bareword is not going to be a subroutine name. | |
494 | ||
f9acf899 FC |
495 | =item * |
496 | ||
497 | Compilation of anonymous constants (e.g., C<sub () { 3 }>) no longer | |
498 | deletes any subroutine named C<__ANON__> in the current package. Not only | |
499 | was C<*__ANON__{CODE}> cleared, but there was a memory leak, too. This bug | |
500 | goes back to perl 5.8.0. | |
501 | ||
fd26b6f0 FC |
502 | =item * |
503 | ||
504 | Stub declarations like C<sub f;> and C<sub f ();> no longer wipe out | |
505 | constants of the same name declared by C<use constant>. This bug was | |
506 | introduced in perl 5.10.0. | |
507 | ||
499333dc KW |
508 | =item * |
509 | ||
510 | Under some conditions a warning raised in compilation of regular | |
511 | expression patterns could be displayed multiple times. This is now | |
512 | fixed. | |
513 | ||
8f0cd35a KW |
514 | =item * |
515 | ||
516 | C<qr/[\N{named sequence}]/> now works properly in many instances. Some | |
517 | names known to C<\N{...}> refer to a sequence of multiple characters, | |
518 | instead of the usual single character. Bracketed character classes | |
519 | generally only match single characters, but now special handling has | |
520 | been added so that they can match named sequences, but not if the class | |
521 | is inverted or the sequence is specified as the beginning or end of a | |
522 | range. In these cases, the only behavior change from before is a slight | |
523 | rewording of the fatal error message given when this class is part of a | |
524 | C<?[...])> construct. When the C<[...]> stands alone, the same | |
525 | non-fatal warning as before is raised, and only the first character in | |
526 | the sequence is used, again just as before. | |
527 | ||
aa292ef2 FC |
528 | =item * |
529 | ||
530 | Tainted constants evaluated at compile time no longer cause unrelated | |
531 | statements to become tainted. [perl #122669] | |
532 | ||
739e9bee FC |
533 | =item * |
534 | ||
535 | C<open $$fh, ...>, which vivifies a handle with a name like "main::_GEN_0", | |
536 | was not giving the handle the right reference count, so a double free could | |
537 | happen. | |
538 | ||
b23b2fdb FC |
539 | =item * |
540 | ||
541 | When deciding that a bareword was a method name, the parser would get | |
542 | confused if an "our" sub with the same name existed, and look up the method | |
543 | in the package of the "our" sub, instead of the package of the invocant. | |
544 | ||
7d15b1a8 FC |
545 | =item * |
546 | ||
547 | The parser no longer gets confused by C<\U=> within a double-quoted string. | |
548 | It used to roduce a syntax error, but now compiles it correctly. | |
549 | [perl #80368] | |
550 | ||
bbca64cf KW |
551 | =item * |
552 | ||
553 | It has always been the intention for the C<-B> and C<-T> file test | |
554 | operators to treat UTF-8 encoded files as text. | |
555 | (L<perlfunc|perlfunc/-X FILEHANDLE> has been updated to say this.) | |
556 | Previously, it was possible for some files to be considered UTF-8 that | |
557 | actually weren't valid UTF-8. This is now fixed. The operators now | |
558 | work on EBCDIC platforms as well. | |
559 | ||
0064f8cc KW |
560 | =item * |
561 | ||
562 | Under some conditions warning messages raised during regular expression | |
563 | pattern compilation were being output more than once. This has now been | |
564 | fixed. | |
565 | ||
6ff8f256 KW |
566 | =item * |
567 | ||
568 | A regression has been fixed that was introduced in v5.20.0 (fixed in | |
569 | v5.20.1 as well as here) in which a UTF-8 encoded regular expression | |
570 | pattern that contains a single ASCII lowercase letter does not match its | |
571 | uppercase counterpart. [perl #122655] | |
572 | ||
39c4a6cf | 573 | =back |
b756670b | 574 | |
39c4a6cf | 575 | =head1 Known Problems |
b756670b | 576 | |
39c4a6cf PM |
577 | XXX Descriptions of platform agnostic bugs we know we can't fix go here. Any |
578 | tests that had to be C<TODO>ed for the release would be noted here. Unfixed | |
579 | platform specific bugs also go here. | |
e917e94e | 580 | |
39c4a6cf PM |
581 | [ List each fix as a =item entry ] |
582 | ||
583 | =over 4 | |
e917e94e | 584 | |
26dd5fd6 PM |
585 | =item * |
586 | ||
39c4a6cf | 587 | XXX |
26dd5fd6 | 588 | |
13900f93 A |
589 | =back |
590 | ||
39c4a6cf | 591 | =head1 Errata From Previous Releases |
e831f11a | 592 | |
39c4a6cf PM |
593 | =over 4 |
594 | ||
595 | =item * | |
ff433f2d | 596 | |
39c4a6cf PM |
597 | XXX Add anything here that we forgot to add, or were mistaken about, in |
598 | the perldelta of a previous release. | |
ff433f2d | 599 | |
39c4a6cf PM |
600 | =back |
601 | ||
602 | =head1 Obituary | |
ff433f2d | 603 | |
39c4a6cf PM |
604 | XXX If any significant core contributor has died, we've added a short obituary |
605 | here. | |
ff433f2d | 606 | |
39c4a6cf | 607 | =head1 Acknowledgements |
ff433f2d | 608 | |
39c4a6cf | 609 | XXX Generate this with: |
e831f11a | 610 | |
39c4a6cf | 611 | perl Porting/acknowledgements.pl v5.21.3..HEAD |
f5b73711 | 612 | |
44691e6f AB |
613 | =head1 Reporting Bugs |
614 | ||
e08634c5 SH |
615 | If you find what you think is a bug, you might check the articles recently |
616 | posted to the comp.lang.perl.misc newsgroup and the perl bug database at | |
238894db | 617 | https://rt.perl.org/ . There may also be information at |
7ef8b31d | 618 | http://www.perl.org/ , the Perl Home Page. |
44691e6f | 619 | |
e08634c5 SH |
620 | If you believe you have an unreported bug, please run the L<perlbug> program |
621 | included with your release. Be sure to trim your bug down to a tiny but | |
622 | sufficient test case. Your bug report, along with the output of C<perl -V>, | |
623 | will be sent off to perlbug@perl.org to be analysed by the Perl porting team. | |
44691e6f AB |
624 | |
625 | If the bug you are reporting has security implications, which make it | |
e08634c5 SH |
626 | inappropriate to send to a publicly archived mailing list, then please send it |
627 | to perl5-security-report@perl.org. This points to a closed subscription | |
628 | unarchived mailing list, which includes all the core committers, who will be | |
629 | able to help assess the impact of issues, figure out a resolution, and help | |
f9001595 | 630 | co-ordinate the release of patches to mitigate or fix the problem across all |
e08634c5 SH |
631 | platforms on which Perl is supported. Please only use this address for |
632 | security issues in the Perl core, not for modules independently distributed on | |
633 | CPAN. | |
44691e6f AB |
634 | |
635 | =head1 SEE ALSO | |
636 | ||
e08634c5 SH |
637 | The F<Changes> file for an explanation of how to view exhaustive details on |
638 | what changed. | |
44691e6f AB |
639 | |
640 | The F<INSTALL> file for how to build Perl. | |
641 | ||
642 | The F<README> file for general stuff. | |
643 | ||
644 | The F<Artistic> and F<Copying> files for copyright information. | |
645 | ||
646 | =cut |