Commit | Line | Data |
---|---|---|
44691e6f AB |
1 | =encoding utf8 |
2 | ||
3 | =head1 NAME | |
4 | ||
e96e0834 JL |
5 | [ this is a template for a new perldelta file. Any text flagged as |
6 | XXX needs to be processed before release. ] | |
27f00e3d | 7 | |
e96e0834 | 8 | perldelta - what is new for perl v5.17.2 |
417a992d | 9 | |
e96e0834 | 10 | =head1 DESCRIPTION |
028c8719 | 11 | |
e96e0834 JL |
12 | This document describes differences between the 5.17.1 release and |
13 | the 5.17.2 release. | |
028c8719 | 14 | |
e96e0834 JL |
15 | If you are upgrading from an earlier release such as 5.17.0, first read |
16 | L<perl5171delta>, which describes differences between 5.17.0 and | |
17 | 5.17.1. | |
028c8719 | 18 | |
e96e0834 | 19 | =head1 Notice |
30608892 | 20 | |
e96e0834 | 21 | XXX Any important notices here |
e128ab2c | 22 | |
e96e0834 | 23 | =head1 Core Enhancements |
e128ab2c | 24 | |
e96e0834 JL |
25 | XXX New core language features go here. Summarise user-visible core language |
26 | enhancements. Particularly prominent performance optimisations could go | |
27 | here, but most should go in the L</Performance Enhancements> section. | |
fe3193b5 | 28 | |
e96e0834 | 29 | [ List each enhancement as a =head2 entry ] |
05c8f9ed | 30 | |
e96e0834 | 31 | =head1 Security |
0da72d5e | 32 | |
e96e0834 JL |
33 | XXX Any security-related notices go here. In particular, any security |
34 | vulnerabilities closed should be noted here rather than in the | |
35 | L</Selected Bug Fixes> section. | |
0da72d5e | 36 | |
e96e0834 | 37 | [ List each security issue as a =head2 entry ] |
0da72d5e | 38 | |
e96e0834 | 39 | =head1 Incompatible Changes |
0da72d5e | 40 | |
e96e0834 | 41 | XXX For a release on a stable branch, this section aspires to be: |
0da72d5e | 42 | |
e96e0834 JL |
43 | There are no changes intentionally incompatible with 5.XXX.XXX |
44 | If any exist, they are bugs, and we request that you submit a | |
45 | report. See L</Reporting Bugs> below. | |
0da72d5e | 46 | |
e96e0834 | 47 | [ List each incompatible change as a =head2 entry ] |
e2f0c3bb | 48 | |
e96e0834 | 49 | =head1 Deprecations |
e2f0c3bb | 50 | |
e96e0834 JL |
51 | XXX Any deprecated features, syntax, modules etc. should be listed here. |
52 | In particular, deprecated modules should be listed here even if they are | |
53 | listed as an updated module in the L</Modules and Pragmata> section. | |
7d101ed1 | 54 | |
e96e0834 | 55 | [ List each deprecation as a =head2 entry ] |
7d101ed1 | 56 | |
e96e0834 | 57 | =head1 Performance Enhancements |
7d101ed1 | 58 | |
e96e0834 JL |
59 | XXX Changes which enhance performance without changing behaviour go here. There |
60 | may well be none in a stable release. | |
7d101ed1 | 61 | |
e96e0834 | 62 | [ List each enhancement as a =item entry ] |
95ce428c | 63 | |
f9001595 | 64 | =over 4 |
75ff5956 | 65 | |
2630d42b | 66 | =item * |
c11980ad | 67 | |
e96e0834 | 68 | XXX |
53de3ff0 | 69 | |
61174fb5 | 70 | =back |
ef7131e9 | 71 | |
61174fb5 | 72 | =head1 Modules and Pragmata |
ef7131e9 | 73 | |
e96e0834 JL |
74 | XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/> |
75 | go here. If Module::CoreList is updated, generate an initial draft of the | |
76 | following sections using F<Porting/corelist-perldelta.pl>, which prints stub | |
77 | entries to STDOUT. Results can be pasted in place of the '=head2' entries | |
78 | below. A paragraph summary for important changes should then be added by hand. | |
79 | In an ideal world, dual-life modules would have a F<Changes> file that could be | |
80 | cribbed. | |
5cefbec9 | 81 | |
e96e0834 | 82 | [ Within each section, list entries as a =item entry ] |
fbdb83f3 | 83 | |
e96e0834 | 84 | =head2 New Modules and Pragmata |
95c6c5c5 | 85 | |
e96e0834 | 86 | =over 4 |
9331f04e NC |
87 | |
88 | =item * | |
89 | ||
e96e0834 | 90 | XXX |
95c6c5c5 | 91 | |
e96e0834 | 92 | =back |
ff3f295c | 93 | |
e96e0834 | 94 | =head2 Updated Modules and Pragmata |
ff3f295c | 95 | |
e96e0834 | 96 | =over 4 |
95c6c5c5 | 97 | |
95c6c5c5 JL |
98 | =item * |
99 | ||
4c77591b NC |
100 | L<File::stat> has been upgraded from version 1.06 to 1.07. |
101 | ||
102 | Previously C<File::stat>'s overloaded C<-x> and C<-X> operators did not give | |
103 | the correct results for directories or executable files when running as | |
104 | root. They had been treating executable permissions for root just like for | |
105 | any other user, performing group membership tests I<etc> for files not owned | |
106 | by root. They now follow the correct Unix behaviour - for a directory they | |
107 | are always true, and for a file if any of the three execute permission bits | |
108 | are set then they report that root can execute the file. Perl's builtin | |
109 | C<-x> and C<-X> operators have always been correct. | |
c506fc7e | 110 | |
e96e0834 | 111 | =back |
c506fc7e | 112 | |
e96e0834 | 113 | =head2 Removed Modules and Pragmata |
c506fc7e | 114 | |
e96e0834 | 115 | =over 4 |
95c6c5c5 | 116 | |
95c6c5c5 JL |
117 | =item * |
118 | ||
e96e0834 | 119 | XXX |
95c6c5c5 | 120 | |
e96e0834 | 121 | =back |
95c6c5c5 | 122 | |
e96e0834 | 123 | =head1 Documentation |
95c6c5c5 | 124 | |
e96e0834 JL |
125 | XXX Changes to files in F<pod/> go here. Consider grouping entries by |
126 | file and be sure to link to the appropriate page, e.g. L<perlfunc>. | |
95c6c5c5 | 127 | |
e96e0834 | 128 | =head2 New Documentation |
1c633914 | 129 | |
e96e0834 | 130 | XXX Changes which create B<new> files in F<pod/> go here. |
f558db2f | 131 | |
e96e0834 | 132 | =head3 L<XXX> |
66aa79e2 | 133 | |
e96e0834 | 134 | XXX Description of the purpose of the new file here |
95c6c5c5 | 135 | |
e96e0834 | 136 | =head2 Changes to Existing Documentation |
95c6c5c5 | 137 | |
e96e0834 JL |
138 | XXX Changes which significantly change existing files in F<pod/> go here. |
139 | However, any changes to F<pod/perldiag.pod> should go in the L</Diagnostics> | |
140 | section. | |
95c6c5c5 | 141 | |
e96e0834 | 142 | =head3 L<XXX> |
95c6c5c5 | 143 | |
e96e0834 | 144 | =over 4 |
95c6c5c5 JL |
145 | |
146 | =item * | |
147 | ||
e96e0834 | 148 | XXX Description of the change here |
95c6c5c5 | 149 | |
e96e0834 | 150 | =back |
95c6c5c5 | 151 | |
e96e0834 | 152 | =head1 Diagnostics |
95c6c5c5 | 153 | |
e96e0834 JL |
154 | The following additions or changes have been made to diagnostic output, |
155 | including warnings and fatal error messages. For the complete list of | |
156 | diagnostic messages, see L<perldiag>. | |
95c6c5c5 | 157 | |
e96e0834 JL |
158 | XXX New or changed warnings emitted by the core's C<C> code go here. Also |
159 | include any changes in L<perldiag> that reconcile it to the C<C> code. | |
71014848 | 160 | |
e96e0834 JL |
161 | [ Within each section, list entries as a =item entry that links to perldiag, |
162 | e.g. | |
71014848 | 163 | |
e96e0834 | 164 | =item * |
95c6c5c5 | 165 | |
e96e0834 JL |
166 | L<Invalid version object|perldiag/"Invalid version object"> |
167 | ] | |
95c6c5c5 | 168 | |
e96e0834 | 169 | =head2 New Diagnostics |
95c6c5c5 | 170 | |
e96e0834 | 171 | XXX Newly added diagnostic messages go here |
95c6c5c5 | 172 | |
e96e0834 | 173 | =head3 New Errors |
95c6c5c5 | 174 | |
e96e0834 | 175 | =over 4 |
95c6c5c5 | 176 | |
95c6c5c5 JL |
177 | =item * |
178 | ||
e96e0834 | 179 | XXX L<message|perldiag/"message"> |
95c6c5c5 | 180 | |
e96e0834 | 181 | =back |
95c6c5c5 | 182 | |
e96e0834 | 183 | =head3 New Warnings |
95c6c5c5 | 184 | |
e96e0834 | 185 | =over 4 |
95c6c5c5 | 186 | |
95c6c5c5 JL |
187 | =item * |
188 | ||
72267260 JL |
189 | C<chr()> now warns when passed a negative value [perl #83048]. |
190 | ||
191 | =item * | |
192 | ||
193 | C<srand()> now warns when passed a value that doesn't fit in a C<UV> (since the | |
194 | value will be truncated rather than overflowing) [perl #40605]. | |
7d101ed1 | 195 | |
e96e0834 | 196 | =back |
d9661073 | 197 | |
e96e0834 | 198 | =head2 Changes to Existing Diagnostics |
95c6c5c5 | 199 | |
e96e0834 | 200 | XXX Changes (i.e. rewording) of diagnostic messages go here |
95c6c5c5 | 201 | |
e96e0834 | 202 | =over 4 |
95c6c5c5 JL |
203 | |
204 | =item * | |
205 | ||
e96e0834 | 206 | XXX Describe change here |
3630f57e | 207 | |
e96e0834 | 208 | =back |
3630f57e | 209 | |
e96e0834 | 210 | =head1 Utility Changes |
95c6c5c5 | 211 | |
e96e0834 JL |
212 | XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go |
213 | here. Most of these are built within the directories F<utils> and F<x2p>. | |
95c6c5c5 | 214 | |
e96e0834 JL |
215 | [ List utility changes as a =head3 entry for each utility and =item |
216 | entries for each change | |
217 | Use L<XXX> with program names to get proper documentation linking. ] | |
95c6c5c5 | 218 | |
e96e0834 | 219 | =head3 L<XXX> |
95c6c5c5 | 220 | |
e96e0834 | 221 | =over 4 |
95c6c5c5 JL |
222 | |
223 | =item * | |
224 | ||
e96e0834 | 225 | XXX |
95c6c5c5 | 226 | |
e96e0834 | 227 | =back |
95c6c5c5 | 228 | |
e96e0834 | 229 | =head1 Configuration and Compilation |
95c6c5c5 | 230 | |
e96e0834 JL |
231 | XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools |
232 | go here. Any other changes to the Perl build process should be listed here. | |
233 | However, any platform-specific changes should be listed in the | |
234 | L</Platform Support> section, instead. | |
95c6c5c5 | 235 | |
e96e0834 | 236 | [ List changes as a =item entry ]. |
95c6c5c5 | 237 | |
e96e0834 | 238 | =over 4 |
95c6c5c5 JL |
239 | |
240 | =item * | |
241 | ||
e96e0834 | 242 | XXX |
95c6c5c5 | 243 | |
e96e0834 | 244 | =back |
95c6c5c5 | 245 | |
e96e0834 | 246 | =head1 Testing |
95c6c5c5 | 247 | |
e96e0834 JL |
248 | XXX Any significant changes to the testing of a freshly built perl should be |
249 | listed here. Changes which create B<new> files in F<t/> go here as do any | |
250 | large changes to the testing harness (e.g. when parallel testing was added). | |
251 | Changes to existing files in F<t/> aren't worth summarising, although the bugs | |
252 | that they represent may be covered elsewhere. | |
95c6c5c5 | 253 | |
e96e0834 | 254 | [ List each test improvement as a =item entry ] |
95c6c5c5 | 255 | |
e96e0834 | 256 | =over 4 |
95c6c5c5 JL |
257 | |
258 | =item * | |
259 | ||
e96e0834 | 260 | XXX |
95c6c5c5 | 261 | |
61174fb5 | 262 | =back |
f558db2f | 263 | |
e96e0834 | 264 | =head1 Platform Support |
05c8f9ed | 265 | |
e96e0834 | 266 | XXX Any changes to platform support should be listed in the sections below. |
05c8f9ed | 267 | |
e96e0834 JL |
268 | [ Within the sections, list each platform as a =item entry with specific |
269 | changes as paragraphs below it. ] | |
9dea6244 | 270 | |
e96e0834 | 271 | =head2 New Platforms |
9dea6244 | 272 | |
e96e0834 JL |
273 | XXX List any platforms that this version of perl compiles on, that previous |
274 | versions did not. These will either be enabled by new files in the F<hints/> | |
275 | directories, or new subdirectories and F<README> files at the top level of the | |
276 | source tree. | |
7d101ed1 JL |
277 | |
278 | =over 4 | |
279 | ||
e96e0834 | 280 | =item XXX-some-platform |
7d101ed1 | 281 | |
e96e0834 | 282 | XXX |
7d101ed1 JL |
283 | |
284 | =back | |
285 | ||
e96e0834 | 286 | =head2 Discontinued Platforms |
ef7131e9 | 287 | |
e96e0834 | 288 | XXX List any platforms that this version of perl no longer compiles on. |
4a301309 FC |
289 | |
290 | =over 4 | |
291 | ||
e96e0834 | 292 | =item XXX-some-platform |
8dffc0ab | 293 | |
e96e0834 | 294 | XXX |
dbc84d79 | 295 | |
4a301309 FC |
296 | =back |
297 | ||
61174fb5 | 298 | =head2 Platform-Specific Notes |
ceb0881c | 299 | |
e96e0834 JL |
300 | XXX List any changes for specific platforms. This could include configuration |
301 | and compilation changes or changes in portability/compatibility. However, | |
302 | changes within modules for platforms should generally be listed in the | |
303 | L</Modules and Pragmata> section. | |
89cbc6b8 | 304 | |
e96e0834 | 305 | =over 4 |
0998713f | 306 | |
e96e0834 | 307 | =item XXX-some-platform |
112b6866 | 308 | |
e96e0834 | 309 | XXX |
112b6866 | 310 | |
61174fb5 | 311 | =back |
8e125188 | 312 | |
61174fb5 | 313 | =head1 Internal Changes |
8e125188 | 314 | |
e96e0834 JL |
315 | XXX Changes which affect the interface available to C<XS> code go here. |
316 | Other significant internal changes for future core maintainers should | |
317 | be noted as well. | |
c4643160 | 318 | |
e96e0834 | 319 | [ List each change as a =item entry ] |
f8ef51fd | 320 | |
e96e0834 | 321 | =over 4 |
e128ab2c | 322 | |
e2f0c3bb FC |
323 | =item * |
324 | ||
e96e0834 | 325 | XXX |
e2f0c3bb | 326 | |
61174fb5 | 327 | =back |
422287bf | 328 | |
61174fb5 | 329 | =head1 Selected Bug Fixes |
2de6ba8d | 330 | |
e96e0834 JL |
331 | XXX Important bug fixes in the core language are summarised here. |
332 | Bug fixes in files in F<ext/> and F<lib/> are best summarised in | |
333 | L</Modules and Pragmata>. | |
52c4b146 | 334 | |
e96e0834 | 335 | [ List each fix as a =item entry ] |
e128ab2c DM |
336 | |
337 | =over 4 | |
338 | ||
339 | =item * | |
340 | ||
48895a0d KW |
341 | A regression introduced in v5.14.0 has been fixed, in which some calls |
342 | to the C<re> module would clobber C<$_>. | |
e128ab2c | 343 | |
8b1adbab JL |
344 | =item * |
345 | ||
346 | C<do FILE> now always either sets or clears C<$@>, even when the file can't be | |
347 | read. This ensures that testing C<$@> first (as recommended by the | |
348 | documentation) always returns the correct result. | |
349 | ||
83f29afa VP |
350 | =item * |
351 | ||
352 | The array iterator used for the C<each @array> construct is now correctly | |
353 | reset when C<@array> is cleared (RT #75596). This happens for example when the | |
354 | array is globally assigned to, as in C<@array = (...)>, but not when its | |
355 | B<values> are assigned to. In terms of the XS API, it means that C<av_clear()> | |
356 | will now reset the iterator. | |
357 | ||
358 | This mirrors the behaviour of the hash iterator when the hash is cleared. | |
359 | ||
0938f143 JL |
360 | =item * |
361 | ||
362 | C<< $class->can >>, C<< $class->isa >>, and C<< $class->DOES >> now return | |
363 | correct results, regardless of whether that package referred to by C<$class> | |
364 | exists [perl #47113]. | |
365 | ||
72267260 JL |
366 | =item * |
367 | ||
368 | Arriving signals no longer clear C<$@> [perl #45173]. | |
369 | ||
7a251f7a JL |
370 | =item * |
371 | ||
372 | Allow C<my ()> declarations with an empty variable list [perl #113554]. | |
373 | ||
21247d85 FC |
374 | =item * |
375 | ||
376 | During parsing, subs declared after errors no longer leave stubs | |
377 | [perl #113712]. | |
378 | ||
2e4f8b82 FC |
379 | =item * |
380 | ||
381 | C<do $file> now clears C<$@> after an I/O error [perl #113730]. | |
382 | ||
e128ab2c DM |
383 | =back |
384 | ||
e96e0834 | 385 | =head1 Known Problems |
dbc84d79 | 386 | |
e96e0834 JL |
387 | XXX Descriptions of platform agnostic bugs we know we can't fix go here. Any |
388 | tests that had to be C<TODO>ed for the release would be noted here. Unfixed | |
389 | platform specific bugs also go here. | |
53de3ff0 | 390 | |
e96e0834 | 391 | [ List each fix as a =item entry ] |
233bba44 JL |
392 | |
393 | =over 4 | |
394 | ||
395 | =item * | |
396 | ||
e96e0834 | 397 | XXX |
233bba44 | 398 | |
e96e0834 | 399 | =back |
233bba44 | 400 | |
e96e0834 | 401 | =head1 Obituary |
233bba44 | 402 | |
e96e0834 JL |
403 | XXX If any significant core contributor has died, we've added a short obituary |
404 | here. | |
233bba44 | 405 | |
61174fb5 | 406 | =head1 Acknowledgements |
d5dc7001 | 407 | |
e96e0834 JL |
408 | XXX Generate this with: |
409 | ||
410 | perl Porting/acknowledgements.pl v5.17.1..HEAD | |
29cf780c | 411 | |
44691e6f AB |
412 | =head1 Reporting Bugs |
413 | ||
414 | If you find what you think is a bug, you might check the articles | |
52deee2e | 415 | recently posted to the comp.lang.perl.misc newsgroup and the perl |
f9001595 RS |
416 | bug database at http://rt.perl.org/perlbug/ . There may also be |
417 | information at http://www.perl.org/ , the Perl Home Page. | |
44691e6f AB |
418 | |
419 | If you believe you have an unreported bug, please run the L<perlbug> | |
52deee2e DR |
420 | program included with your release. Be sure to trim your bug down |
421 | to a tiny but sufficient test case. Your bug report, along with the | |
422 | output of C<perl -V>, will be sent off to perlbug@perl.org to be | |
423 | analysed by the Perl porting team. | |
44691e6f AB |
424 | |
425 | If the bug you are reporting has security implications, which make it | |
f9001595 RS |
426 | inappropriate to send to a publicly archived mailing list, then please send |
427 | it to perl5-security-report@perl.org. This points to a closed subscription | |
428 | unarchived mailing list, which includes | |
429 | all the core committers, who will be able | |
430 | to help assess the impact of issues, figure out a resolution, and help | |
431 | co-ordinate the release of patches to mitigate or fix the problem across all | |
432 | platforms on which Perl is supported. Please only use this address for | |
433 | security issues in the Perl core, not for modules independently | |
434 | distributed on CPAN. | |
44691e6f AB |
435 | |
436 | =head1 SEE ALSO | |
437 | ||
52deee2e DR |
438 | The F<Changes> file for an explanation of how to view exhaustive details |
439 | on what changed. | |
44691e6f AB |
440 | |
441 | The F<INSTALL> file for how to build Perl. | |
442 | ||
443 | The F<README> file for general stuff. | |
444 | ||
445 | The F<Artistic> and F<Copying> files for copyright information. | |
446 | ||
447 | =cut |