This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for 1eb0b7be2ff1 (B::Deparse and loopex prec)
[perl5.git] / pod / perldelta.pod
... / ...
CommitLineData
1=encoding utf8
2
3=head1 NAME
4
5[ this is a template for a new perldelta file. Any text flagged as
6XXX needs to be processed before release. ]
7
8perldelta - what is new for perl v5.17.3
9
10=head1 DESCRIPTION
11
12This document describes differences between the 5.17.2 release and
13the 5.17.3 release.
14
15If you are upgrading from an earlier release such as 5.17.1, first read
16L<perl5172delta>, which describes differences between 5.17.1 and
175.17.2.
18
19=head1 Notice
20
21XXX Any important notices here
22
23=head1 Core Enhancements
24
25XXX New core language features go here. Summarise user-visible core language
26enhancements. Particularly prominent performance optimisations could go
27here, but most should go in the L</Performance Enhancements> section.
28
29[ List each enhancement as a =head2 entry ]
30
31=head2 Computed Labels
32
33The loop controls C<next>, C<last> and C<redo>, and the special C<dump>
34operator, now allow arbitrary expressions to be used to compute labels at
35run time. Previously, any argument that was not a constant was treated as
36the empty string.
37
38=head1 Security
39
40XXX Any security-related notices go here. In particular, any security
41vulnerabilities closed should be noted here rather than in the
42L</Selected Bug Fixes> section.
43
44[ List each security issue as a =head2 entry ]
45
46=head1 Incompatible Changes
47
48[ List each incompatible change as a =head2 entry ]
49
50=head2 C<$ENV{foo} = undef> deletes value from environ, like C<delete $ENV{foo}>
51
52This facilitates use of C<local()> with C<%ENV> entries. In previous
53versions of Perl, C<undef> was converted to the empty string.
54
55=head2 Defined values stored in environment are forced to byte strings
56
57A value stored in an environment variable has always been stringified. In
58this release, it is converted to be only a byte string. First, it is forced
59to be a only a string. Then if the string is utf8 and the equivalent of
60C<utf8::downgrade> works, that result is used; otherwise, the equivalent of
61C<utf8::encode> is used, and a warning is issued about wide characters
62(L</Diagnostics>).
63
64=head1 Deprecations
65
66XXX Any deprecated features, syntax, modules etc. should be listed here.
67In particular, deprecated modules should be listed here even if they are
68listed as an updated module in the L</Modules and Pragmata> section.
69
70[ List each deprecation as a =head2 entry ]
71
72=head1 Performance Enhancements
73
74XXX Changes which enhance performance without changing behaviour go here. There
75may well be none in a stable release.
76
77[ List each enhancement as a =item entry ]
78
79=over 4
80
81=item *
82
83XXX
84
85=back
86
87=head1 Modules and Pragmata
88
89XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/>
90go here. If Module::CoreList is updated, generate an initial draft of the
91following sections using F<Porting/corelist-perldelta.pl>, which prints stub
92entries to STDOUT. Results can be pasted in place of the '=head2' entries
93below. A paragraph summary for important changes should then be added by hand.
94In an ideal world, dual-life modules would have a F<Changes> file that could be
95cribbed.
96
97[ Within each section, list entries as a =item entry ]
98
99=head2 New Modules and Pragmata
100
101=over 4
102
103=item *
104
105XXX
106
107=back
108
109=head2 Updated Modules and Pragmata
110
111=over 4
112
113=item *
114
115L<B> has been upgraded from version 1.36 to version 1.37. All C<CVf_*> and
116C<GVf_*> and more SV-related flag values are now provided as constants in
117the C<B::> namespace and available for export. The default export list has
118not changed.
119
120=item *
121
122L<B::Deparse> has been upgraded from version 1.15 to 1.16. It now deparses
123loop controls with the correct precedence.
124
125=back
126
127=head2 Removed Modules and Pragmata
128
129=over 4
130
131=item *
132
133XXX
134
135=back
136
137=head1 Documentation
138
139XXX Changes to files in F<pod/> go here. Consider grouping entries by
140file and be sure to link to the appropriate page, e.g. L<perlfunc>.
141
142=head2 New Documentation
143
144XXX Changes which create B<new> files in F<pod/> go here.
145
146=head3 L<XXX>
147
148XXX Description of the purpose of the new file here
149
150=head2 Changes to Existing Documentation
151
152XXX Changes which significantly change existing files in F<pod/> go here.
153However, any changes to F<pod/perldiag.pod> should go in the L</Diagnostics>
154section.
155
156=head3 L<perlfunc>, L<perlop>
157
158=over 4
159
160=item *
161
162Loop control verbs (C<dump>, C<goto>, C<next>, C<last> and C<redo>) have
163always had the same precedence as assignment operators, but this was never
164documented until now.
165
166=back
167
168=head1 Diagnostics
169
170The following additions or changes have been made to diagnostic output,
171including warnings and fatal error messages. For the complete list of
172diagnostic messages, see L<perldiag>.
173
174XXX New or changed warnings emitted by the core's C<C> code go here. Also
175include any changes in L<perldiag> that reconcile it to the C<C> code.
176
177[ Within each section, list entries as a =item entry that links to perldiag,
178 e.g.
179
180 =item *
181
182 L<Invalid version object|perldiag/"Invalid version object">
183]
184
185=head2 New Diagnostics
186
187XXX Newly added diagnostic messages go here
188
189=over 4
190
191=item *
192
193Attempts to put wide characters into environment variables via %ENV provoke
194the warning "Wide character in setenv".
195
196=back
197
198=head3 New Errors
199
200=over 4
201
202=item *
203
204XXX L<message|perldiag/"message">
205
206=back
207
208=head3 New Warnings
209
210=over 4
211
212=item *
213
214XXX L<message|perldiag/"message">
215
216=back
217
218=head2 Changes to Existing Diagnostics
219
220XXX Changes (i.e. rewording) of diagnostic messages go here
221
222=over 4
223
224=item *
225
226XXX Describe change here
227
228=back
229
230=head1 Utility Changes
231
232XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go
233here. Most of these are built within the directories F<utils> and F<x2p>.
234
235[ List utility changes as a =head3 entry for each utility and =item
236entries for each change
237Use L<XXX> with program names to get proper documentation linking. ]
238
239=head3 L<XXX>
240
241=over 4
242
243=item *
244
245XXX
246
247=back
248
249=head1 Configuration and Compilation
250
251XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools
252go here. Any other changes to the Perl build process should be listed here.
253However, any platform-specific changes should be listed in the
254L</Platform Support> section, instead.
255
256[ List changes as a =item entry ].
257
258=over 4
259
260=item *
261
262XXX
263
264=back
265
266=head1 Testing
267
268XXX Any significant changes to the testing of a freshly built perl should be
269listed here. Changes which create B<new> files in F<t/> go here as do any
270large changes to the testing harness (e.g. when parallel testing was added).
271Changes to existing files in F<t/> aren't worth summarising, although the bugs
272that they represent may be covered elsewhere.
273
274[ List each test improvement as a =item entry ]
275
276=over 4
277
278=item *
279
280XXX
281
282=back
283
284=head1 Platform Support
285
286XXX Any changes to platform support should be listed in the sections below.
287
288[ Within the sections, list each platform as a =item entry with specific
289changes as paragraphs below it. ]
290
291=head2 New Platforms
292
293XXX List any platforms that this version of perl compiles on, that previous
294versions did not. These will either be enabled by new files in the F<hints/>
295directories, or new subdirectories and F<README> files at the top level of the
296source tree.
297
298=over 4
299
300=item XXX-some-platform
301
302XXX
303
304=back
305
306=head2 Discontinued Platforms
307
308XXX List any platforms that this version of perl no longer compiles on.
309
310=over 4
311
312=item XXX-some-platform
313
314XXX
315
316=back
317
318=head2 Platform-Specific Notes
319
320XXX List any changes for specific platforms. This could include configuration
321and compilation changes or changes in portability/compatibility. However,
322changes within modules for platforms should generally be listed in the
323L</Modules and Pragmata> section.
324
325=over 4
326
327=item XXX-some-platform
328
329XXX
330
331=back
332
333=head1 Internal Changes
334
335XXX Changes which affect the interface available to C<XS> code go here.
336Other significant internal changes for future core maintainers should
337be noted as well.
338
339[ List each change as a =item entry ]
340
341=over 4
342
343=item *
344
345XXX
346
347=back
348
349=head1 Selected Bug Fixes
350
351XXX Important bug fixes in the core language are summarised here.
352Bug fixes in files in F<ext/> and F<lib/> are best summarised in
353L</Modules and Pragmata>.
354
355[ List each fix as a =item entry ]
356
357=over 4
358
359=item *
360
361C<\w> now matches the code points U+200C (ZERO WIDTH NON-JOINER) and
362U+200D (ZERO WIDTH JOINER). C<\W> no longer matches these. This change
363is because Unicode corrected their definition of what C<\w> should match.
364
365=item *
366
367C<dump LABEL> no longer leaks its label.
368
369=item *
370
371Constant folding no longer changes the behaviour of functions like C<stat>
372and C<truncate> that can take either filenames or handles.
373C<stat 1 ? foo : bar> nows treats its argument as a file name (since it is
374an arbitrary expression), rather than the handle "foo".
375
376=item *
377
378C<truncate FOO, $len> no longer falls back to treating "FOO" as a file name
379if the filehandle has been deleted. This was broken in Perl 5.16.0.
380
381=item *
382
383Subroutine redefinitions after sub-to-glob and glob-to-glob assignments no
384longer cause double frees or panic messages.
385
386=back
387
388=head1 Known Problems
389
390XXX Descriptions of platform agnostic bugs we know we can't fix go here. Any
391tests that had to be C<TODO>ed for the release would be noted here. Unfixed
392platform specific bugs also go here.
393
394[ List each fix as a =item entry ]
395
396=over 4
397
398=item *
399
400XXX
401
402=back
403
404=head1 Obituary
405
406XXX If any significant core contributor has died, we've added a short obituary
407here.
408
409=head1 Acknowledgements
410
411XXX Generate this with:
412
413 perl Porting/acknowledgements.pl v5.17.2..HEAD
414
415=head1 Reporting Bugs
416
417If you find what you think is a bug, you might check the articles
418recently posted to the comp.lang.perl.misc newsgroup and the perl
419bug database at http://rt.perl.org/perlbug/ . There may also be
420information at http://www.perl.org/ , the Perl Home Page.
421
422If you believe you have an unreported bug, please run the L<perlbug>
423program included with your release. Be sure to trim your bug down
424to a tiny but sufficient test case. Your bug report, along with the
425output of C<perl -V>, will be sent off to perlbug@perl.org to be
426analysed by the Perl porting team.
427
428If the bug you are reporting has security implications, which make it
429inappropriate to send to a publicly archived mailing list, then please send
430it to perl5-security-report@perl.org. This points to a closed subscription
431unarchived mailing list, which includes
432all the core committers, who will be able
433to help assess the impact of issues, figure out a resolution, and help
434co-ordinate the release of patches to mitigate or fix the problem across all
435platforms on which Perl is supported. Please only use this address for
436security issues in the Perl core, not for modules independently
437distributed on CPAN.
438
439=head1 SEE ALSO
440
441The F<Changes> file for an explanation of how to view exhaustive details
442on what changed.
443
444The F<INSTALL> file for how to build Perl.
445
446The F<README> file for general stuff.
447
448The F<Artistic> and F<Copying> files for copyright information.
449
450=cut