This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
587326deb0ce89f1ea6c81ba240f44563f1ebd8d
[perl5.git] / pod / perldelta.pod
1 =encoding utf8
2
3 =head1 NAME
4
5 [ this is a template for a new perldelta file. Any text flagged as
6 XXX needs to be processed before release. ]
7
8 perldelta - what is new for perl v5.15.8
9
10 =head1 DESCRIPTION
11
12 This document describes differences between the 5.15.7 release and
13 the 5.15.8 release.
14
15 If you are upgrading from an earlier release such as 5.15.6, first read
16 L<perl5157delta>, which describes differences between 5.15.6 and
17 5.15.7.
18
19 =head1 Notice
20
21 XXX Any important notices here
22
23 =head1 Core Enhancements
24
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.
28
29 [ List each enhancement as a =head2 entry ]
30
31 =head2 Improved ability to mix locales and Unicode, including UTF-8 locales
32
33 An optional parameter has been added to C<use locale>
34
35  use locale ':not_characters';
36
37 which tells Perl to use all but the C<LC_CTYPE> and C<LC_COLLATE>
38 portions of the current locale.  Instead, the character set is assumed
39 to be Unicode.  This allows locales and Unicode to be seamlessly mixed,
40 including the increasingly frequent UTF-8 locales.  When using this
41 hybrid form of locales, the C<:locale> layer to the L<open> pragma can
42 be used to interface with the file system, and there are CPAN modules
43 available for ARGV and environment variable conversions.
44
45 Full details are in L<perllocale>.
46
47 =head2 New function C<fc> and corresponding escape sequence C<\F> for Unicode foldcase
48
49 Unicode foldcase is an extension to lowercase that gives better results
50 when comparing two strings case-insensitively.  It has long been used
51 internally in regular expression C</i> matching.  Now it is available
52 explicitly through the new C<fc> function call (enabled by
53 S<C<"use feature 'fc'">>, or C<use v5.16>, or explicitly callable via
54 C<CORE::fc>) or through the new C<\F> sequence in double quotish
55 strings.
56
57 Full details are in L<perlfunc/fc>.
58
59 =head1 Security
60
61 XXX Any security-related notices go here.  In particular, any security
62 vulnerabilities closed should be noted here rather than in the
63 L</Selected Bug Fixes> section.
64
65 [ List each security issue as a =head2 entry ]
66
67 =head1 Incompatible Changes
68
69 XXX For a release on a stable branch, this section aspires to be:
70
71     There are no changes intentionally incompatible with 5.XXX.XXX
72     If any exist, they are bugs, and we request that you submit a
73     report.  See L</Reporting Bugs> below.
74
75 [ List each incompatible change as a =head2 entry ]
76
77 =head1 Deprecations
78
79 XXX Any deprecated features, syntax, modules etc. should be listed here.
80 In particular, deprecated modules should be listed here even if they are
81 listed as an updated module in the L</Modules and Pragmata> section.
82
83 [ List each deprecation as a =head2 entry ]
84
85 =head1 Performance Enhancements
86
87 XXX Changes which enhance performance without changing behaviour go here. There
88 may well be none in a stable release.
89
90 [ List each enhancement as a =item entry ]
91
92 =over 4
93
94 =item *
95
96 XXX
97
98 =back
99
100 =head1 Modules and Pragmata
101
102 XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/>
103 go here.  If Module::CoreList is updated, generate an initial draft of the
104 following sections using F<Porting/corelist-perldelta.pl>, which prints stub
105 entries to STDOUT.  Results can be pasted in place of the '=head2' entries
106 below.  A paragraph summary for important changes should then be added by hand.
107 In an ideal world, dual-life modules would have a F<Changes> file that could be
108 cribbed.
109
110 [ Within each section, list entries as a =item entry ]
111
112 =head2 New Modules and Pragmata
113
114 =over 4
115
116 =item *
117
118 XXX
119
120 =back
121
122 =head2 Updated Modules and Pragmata
123
124 =over 4
125
126 =item *
127
128 L<Compress::Raw::Bzip2> has been upgraded from version 2.045 to version 2.048.
129
130 =item *
131
132 L<Compress::Raw::Zlib> has been upgraded from version 2.045 to version 2.048.
133
134 =item *
135
136 L<Compress::Zlib> has been upgraded from version 2.046 to version 2.048.
137
138 =item *
139
140 L<DB_File> has been upgraded from version 1.824 to version 1.826.
141
142 =item *
143
144 L<IPC::Cmd> has been upgraded from version 0.72 to version 0.76.
145
146 =item *
147
148 L<Pod::Parser> has been upgraded from version 1.37 to version 1.51.
149
150 =item *
151
152 L<Unicode::UCD> has been upgraded from version 0.39 to 0.40.
153
154 The only change is to fix a formatting error in the Pod.
155
156 =back
157
158 =head2 Removed Modules and Pragmata
159
160 =over 4
161
162 =item *
163
164 XXX
165
166 =back
167
168 =head1 Documentation
169
170 XXX Changes to files in F<pod/> go here.  Consider grouping entries by
171 file and be sure to link to the appropriate page, e.g. L<perlfunc>.
172
173 =head2 New Documentation
174
175 XXX Changes which create B<new> files in F<pod/> go here.
176
177 =head3 L<XXX>
178
179 XXX Description of the purpose of the new file here
180
181 =head2 Changes to Existing Documentation
182
183 XXX Changes which significantly change existing files in F<pod/> go here.
184 However, any changes to F<pod/perldiag.pod> should go in the L</Diagnostics>
185 section.
186
187 =head3 L<XXX>
188
189 =over 4
190
191 =item *
192
193 XXX Description of the change here
194
195 =back
196
197 =head1 Diagnostics
198
199 The following additions or changes have been made to diagnostic output,
200 including warnings and fatal error messages.  For the complete list of
201 diagnostic messages, see L<perldiag>.
202
203 XXX New or changed warnings emitted by the core's C<C> code go here. Also
204 include any changes in L<perldiag> that reconcile it to the C<C> code.
205
206 [ Within each section, list entries as a =item entry that links to perldiag,
207   e.g.
208
209   =item *
210
211   L<Invalid version object|perldiag/"Invalid version object">
212 ]
213
214 =head2 New Diagnostics
215
216 XXX Newly added diagnostic messages go here
217
218 =head3 New Errors
219
220 =over 4
221
222 =item *
223
224 XXX L<message|perldiag/"message">
225
226 =back
227
228 =head3 New Warnings
229
230 =over 4
231
232 =item *
233
234 XXX L<message|perldiag/"message">
235
236 =back
237
238 =head2 Changes to Existing Diagnostics
239
240 XXX Changes (i.e. rewording) of diagnostic messages go here
241
242 =over 4
243
244 =item *
245
246 XXX Describe change here
247
248 =back
249
250 =head1 Utility Changes
251
252 XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go
253 here. Most of these are built within the directories F<utils> and F<x2p>.
254
255 [ List utility changes as a =head3 entry for each utility and =item
256 entries for each change
257 Use L<XXX> with program names to get proper documentation linking. ]
258
259 =head3 L<XXX>
260
261 =over 4
262
263 =item *
264
265 XXX
266
267 =back
268
269 =head1 Configuration and Compilation
270
271 XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools
272 go here.  Any other changes to the Perl build process should be listed here.
273 However, any platform-specific changes should be listed in the
274 L</Platform Support> section, instead.
275
276 [ List changes as a =item entry ].
277
278 =over 4
279
280 =item *
281
282 XXX
283
284 =back
285
286 =head1 Testing
287
288 XXX Any significant changes to the testing of a freshly built perl should be
289 listed here.  Changes which create B<new> files in F<t/> go here as do any
290 large changes to the testing harness (e.g. when parallel testing was added).
291 Changes to existing files in F<t/> aren't worth summarising, although the bugs
292 that they represent may be covered elsewhere.
293
294 [ List each test improvement as a =item entry ]
295
296 =over 4
297
298 =item *
299
300 XXX
301
302 =back
303
304 =head1 Platform Support
305
306 XXX Any changes to platform support should be listed in the sections below.
307
308 [ Within the sections, list each platform as a =item entry with specific
309 changes as paragraphs below it. ]
310
311 =head2 New Platforms
312
313 XXX List any platforms that this version of perl compiles on, that previous
314 versions did not. These will either be enabled by new files in the F<hints/>
315 directories, or new subdirectories and F<README> files at the top level of the
316 source tree.
317
318 =over 4
319
320 =item XXX-some-platform
321
322 XXX
323
324 =back
325
326 =head2 Discontinued Platforms
327
328 XXX List any platforms that this version of perl no longer compiles on.
329
330 =over 4
331
332 =item XXX-some-platform
333
334 XXX
335
336 =back
337
338 =head2 Platform-Specific Notes
339
340 XXX List any changes for specific platforms. This could include configuration
341 and compilation changes or changes in portability/compatibility.  However,
342 changes within modules for platforms should generally be listed in the
343 L</Modules and Pragmata> section.
344
345 =over 4
346
347 =item XXX-some-platform
348
349 XXX
350
351 =back
352
353 =head1 Internal Changes
354
355 XXX Changes which affect the interface available to C<XS> code go here.
356 Other significant internal changes for future core maintainers should
357 be noted as well.
358
359 [ List each change as a =item entry ]
360
361 =over 4
362
363 =item *
364
365 XXX
366
367 =back
368
369 =head1 Selected Bug Fixes
370
371 XXX Important bug fixes in the core language are summarised here.
372 Bug fixes in files in F<ext/> and F<lib/> are best summarised in
373 L</Modules and Pragmata>.
374
375 [ List each fix as a =item entry ]
376
377 =over 4
378
379 =item *
380
381 C<~~> now correctly handles the precedence of Any~~Object, and is not tricked
382 by an overloaded object on the left-hand side.
383
384 =back
385
386 =head1 Known Problems
387
388 XXX Descriptions of platform agnostic bugs we know we can't fix go here. Any
389 tests that had to be C<TODO>ed for the release would be noted here, unless
390 they were specific to a particular platform (see below).
391
392 This is a list of some significant unfixed bugs, which are regressions
393 from either 5.XXX.XXX or 5.XXX.XXX.
394
395 [ List each fix as a =item entry ]
396
397 =over 4
398
399 =item *
400
401 XXX
402
403 =back
404
405 =head1 Obituary
406
407 XXX If any significant core contributor has died, we've added a short obituary
408 here.
409
410 =head1 Acknowledgements
411
412 XXX Generate this with:
413
414   perl Porting/acknowledgements.pl v5.15.7..HEAD
415
416 =head1 Reporting Bugs
417
418 If you find what you think is a bug, you might check the articles
419 recently posted to the comp.lang.perl.misc newsgroup and the perl
420 bug database at http://rt.perl.org/perlbug/ .  There may also be
421 information at http://www.perl.org/ , the Perl Home Page.
422
423 If you believe you have an unreported bug, please run the L<perlbug>
424 program included with your release.  Be sure to trim your bug down
425 to a tiny but sufficient test case.  Your bug report, along with the
426 output of C<perl -V>, will be sent off to perlbug@perl.org to be
427 analysed by the Perl porting team.
428
429 If the bug you are reporting has security implications, which make it
430 inappropriate to send to a publicly archived mailing list, then please send
431 it to perl5-security-report@perl.org. This points to a closed subscription
432 unarchived mailing list, which includes
433 all the core committers, who will be able
434 to help assess the impact of issues, figure out a resolution, and help
435 co-ordinate the release of patches to mitigate or fix the problem across all
436 platforms on which Perl is supported. Please only use this address for
437 security issues in the Perl core, not for modules independently
438 distributed on CPAN.
439
440 =head1 SEE ALSO
441
442 The F<Changes> file for an explanation of how to view exhaustive details
443 on what changed.
444
445 The F<INSTALL> file for how to build Perl.
446
447 The F<README> file for general stuff.
448
449 The F<Artistic> and F<Copying> files for copyright information.
450
451 =cut