Commit | Line | Data |
---|---|---|
44691e6f AB |
1 | =encoding utf8 |
2 | ||
249950d7 | 3 | =for comment |
c0f37554 | 4 | This has been completed up to 0aae26c14, except for: |
10c62b23 | 5 | 803e389 rurban CYG17 utf8 paths |
ff4ff6f3 | 6 | d9298c1 rurban mymalloc isn't thread safe |
249950d7 | 7 | |
44691e6f AB |
8 | =head1 NAME |
9 | ||
c1e74734 CBW |
10 | [ this is a template for a new perldelta file. Any text flagged as |
11 | XXX needs to be processed before release. ] | |
ad32999b | 12 | |
c1e74734 | 13 | perldelta - what is new for perl v5.15.8 |
88c5c971 | 14 | |
c1e74734 | 15 | =head1 DESCRIPTION |
8f12b018 | 16 | |
c1e74734 CBW |
17 | This document describes differences between the 5.15.7 release and |
18 | the 5.15.8 release. | |
8f12b018 | 19 | |
c1e74734 CBW |
20 | If you are upgrading from an earlier release such as 5.15.6, first read |
21 | L<perl5157delta>, which describes differences between 5.15.6 and | |
22 | 5.15.7. | |
26afcec5 | 23 | |
c1e74734 | 24 | =head1 Notice |
8f12b018 | 25 | |
c1e74734 | 26 | XXX Any important notices here |
d7fbd56d | 27 | |
c1e74734 | 28 | =head1 Core Enhancements |
d7fbd56d | 29 | |
c1e74734 CBW |
30 | XXX New core language features go here. Summarise user-visible core language |
31 | enhancements. Particularly prominent performance optimisations could go | |
32 | here, but most should go in the L</Performance Enhancements> section. | |
d7fbd56d | 33 | |
c1e74734 | 34 | [ List each enhancement as a =head2 entry ] |
711a3903 | 35 | |
66cbab2c KW |
36 | =head2 Improved ability to mix locales and Unicode, including UTF-8 locales |
37 | ||
38 | An optional parameter has been added to C<use locale> | |
39 | ||
40 | use locale ':not_characters'; | |
41 | ||
42 | which tells Perl to use all but the C<LC_CTYPE> and C<LC_COLLATE> | |
43 | portions of the current locale. Instead, the character set is assumed | |
44 | to be Unicode. This allows locales and Unicode to be seamlessly mixed, | |
45 | including the increasingly frequent UTF-8 locales. When using this | |
46 | hybrid form of locales, the C<:locale> layer to the L<open> pragma can | |
47 | be used to interface with the file system, and there are CPAN modules | |
48 | available for ARGV and environment variable conversions. | |
49 | ||
50 | Full details are in L<perllocale>. | |
51 | ||
628253b8 BF |
52 | =head2 New function C<fc> and corresponding escape sequence C<\F> for Unicode foldcase |
53 | ||
54 | Unicode foldcase is an extension to lowercase that gives better results | |
55 | when comparing two strings case-insensitively. It has long been used | |
56 | internally in regular expression C</i> matching. Now it is available | |
57 | explicitly through the new C<fc> function call (enabled by | |
58 | S<C<"use feature 'fc'">>, or C<use v5.16>, or explicitly callable via | |
249950d7 | 59 | C<CORE::fc>) or through the new C<\F> sequence in double-quotish |
628253b8 BF |
60 | strings. |
61 | ||
62 | Full details are in L<perlfunc/fc>. | |
63 | ||
10c62b23 FC |
64 | =head2 C<_> in subroutine prototypes |
65 | ||
66 | The C<_> character in subroutine prototypes is now allowed before C<@> or | |
67 | C<%>. | |
68 | ||
74968535 | 69 | =head2 Supports (I<almost>) Unicode 6.1 |
7620cb10 KW |
70 | |
71 | Besides the addition of whole new scripts, and new characters in | |
72 | existing scripts, this new version of Unicode, as always, makes some | |
73 | changes to existing characters. One change that may trip up some | |
74 | applications is that the General Category of two characters in the | |
75 | Latin-1 range, PILCROW SIGN and SECTION SIGN, has been changed from | |
76 | Other_Symbol to Other_Punctuation. The same change has been made for | |
77 | a character in each of Tibetan, Ethiopic, and Aegean. | |
78 | The code points U+3248..U+324F (CIRCLED NUMBER TEN ON BLACK SQUARE | |
79 | through CIRCLED NUMBER EIGHTY ON BLACK SQUARE) have had their General | |
80 | Category changed from Other_Symbol to Other_Numeric. The Line Break | |
81 | property has changes for Hebrew and Japanese; and as a consequence of | |
82 | other changes in 6.1, the Perl regular expression construct C<\X> now | |
83 | works differently for some characters in Thai and Lao. | |
84 | ||
85 | New aliases (synonyms) have been defined for many property values; | |
86 | these, along with the previously existing ones, are all cross indexed in | |
87 | L<perluniprops>. | |
88 | ||
898b2fa7 KW |
89 | The return value of C<charnames::viacode()> is affected by other |
90 | changes: | |
91 | ||
92 | Code point Old Name New Name | |
93 | U+000A LINE FEED (LF) LINE FEED | |
94 | U+000C FORM FEED (FF) FORM FEED | |
95 | U+000D CARRIAGE RETURN (CR) CARRIAGE RETURN | |
96 | U+0085 NEXT LINE (NEL) NEXT LINE | |
97 | U+008E SINGLE-SHIFT 2 SINGLE-SHIFT-2 | |
98 | U+008F SINGLE-SHIFT 3 SINGLE-SHIFT-3 | |
99 | U+0091 PRIVATE USE 1 PRIVATE USE-1 | |
100 | U+0092 PRIVATE USE 2 PRIVATE USE-2 | |
101 | U+2118 SCRIPT CAPITAL P WEIERSTRASS ELLIPTIC FUNCTION | |
102 | ||
103 | Perl will accept any of these names as input, but | |
104 | C<charnames::viacode()> now returns the new name of each pair. The | |
105 | change for U+2118 is considered by Unicode to be a correction, that is | |
106 | the original name was a mistake (but again, it will remain forever valid | |
107 | to use it to refer to U+2118). But most of these changes are the | |
7620cb10 KW |
108 | fallout of the mistake Unicode 6.0 made in naming a character used in |
109 | Japanese cell phones to be "BELL", which conflicts with the long | |
110 | standing industry use of (and Unicode's recommendation to use) that name | |
111 | to mean the ASCII control character at U+0007. As a result, that name | |
112 | has been deprecated in Perl since v5.14; and any use of it will raise a | |
113 | warning message (unless turned off). The name "ALERT" is now the | |
114 | preferred name for this code point, with "BEL" being an acceptable short | |
115 | form. The name for the new cell phone character, at code point U+1F514, | |
116 | remains undefined in this version of Perl (hence we don't quite | |
117 | implement all of Unicode 6.1), but starting in v5.18, BELL will mean | |
118 | this character, and not U+0007. | |
119 | ||
120 | Unicode has taken steps to make sure that this sort of mistake does not | |
121 | happen again. The Standard now includes all the generally accepted | |
122 | names and abbreviations for control characters, whereas previously it | |
898b2fa7 KW |
123 | didn't (though there were recommended names for most of them, which Perl |
124 | used). This means that most of those recommended names are now | |
125 | officially in the Standard. Unicode did not recommend names for the | |
126 | four code points listed above between U+008E and U+008F, and in | |
127 | standardizing them Unicode subtly changed the names that Perl had | |
128 | previously given them, by replacing the final blank in each name by a | |
129 | hyphen. Unicode also officially accepts names that Perl had deprecated, | |
130 | such as FILE SEPARATOR. Now the only deprecated name is BELL. | |
131 | Finally, Perl now uses the new official names instead of the old | |
132 | recommended names for the first four code points in the list above (the | |
133 | ones which have the parentheses in them). | |
134 | ||
135 | Now that the names have been placed in the Unicode standard, these kinds | |
136 | of changes should not happen again, though corrections, such as to | |
137 | U+2118, are still possible. | |
138 | ||
139 | Unicode also added some name abbreviations, which Perl now accepts: | |
7620cb10 KW |
140 | SP for SPACE; |
141 | TAB for CHARACTER TABULATION; | |
142 | NEW LINE, END OF LINE, NL, and EOL for LINE FEED; | |
143 | LOCKING-SHIFT ONE for SHIFT OUT; | |
144 | LOCKING-SHIFT ZERO for SHIFT IN; | |
145 | and ZWNBSP for ZERO WIDTH NO-BREAK SPACE. | |
146 | ||
147 | More details on this version of Unicode are provided in | |
148 | L<http://www.unicode.org/versions/Unicode6.1.0/>. | |
149 | ||
27f00e3d KW |
150 | =head2 Added C<is_utf8_char_buf()> |
151 | ||
152 | This function is designed to replace the deprecated L</is_utf8_char()> | |
153 | function. It includes an extra parameter to make sure it doesn't read | |
154 | past the end of the input buffer. | |
155 | ||
c1e74734 | 156 | =head1 Security |
711a3903 | 157 | |
c1e74734 CBW |
158 | XXX Any security-related notices go here. In particular, any security |
159 | vulnerabilities closed should be noted here rather than in the | |
160 | L</Selected Bug Fixes> section. | |
711a3903 | 161 | |
c1e74734 | 162 | [ List each security issue as a =head2 entry ] |
6ba817f3 | 163 | |
27f00e3d KW |
164 | =head2 Use C<is_utf8_char_buf()> and not C<is_utf8_char()> |
165 | ||
166 | The latter function is now deprecated because its API is insufficient to | |
167 | guarantee that it doesn't read (up to 12 bytes in the worst case) beyond | |
168 | the end of its input string. See | |
169 | L<is_utf8_char_buf()|/Added is_utf8_char_buf()>. | |
170 | ||
c1e74734 | 171 | =head1 Incompatible Changes |
6ba817f3 | 172 | |
c1e74734 | 173 | XXX For a release on a stable branch, this section aspires to be: |
6b339779 | 174 | |
c1e74734 CBW |
175 | There are no changes intentionally incompatible with 5.XXX.XXX |
176 | If any exist, they are bugs, and we request that you submit a | |
177 | report. See L</Reporting Bugs> below. | |
6b339779 | 178 | |
c1e74734 | 179 | [ List each incompatible change as a =head2 entry ] |
b240fc0f | 180 | |
249950d7 FC |
181 | =head2 Special blocks called in void context |
182 | ||
183 | Special blocks (C<BEGIN>, C<CHECK>, C<INIT>, C<UNITCHECK>, C<END>) are now | |
184 | called in void context. This avoids wasteful copying of the result of the | |
185 | last statement [perl #108794]. | |
186 | ||
eff8c8ec FC |
187 | =head2 The C<overloading> pragma and regexp objects |
188 | ||
189 | With C<no overloading>, regular expression objects returned by C<qr//> are | |
190 | now stringified as "Regexp=REGEXP(0xbe600d)" instead of the regular | |
191 | expression itself [perl #108780]. | |
192 | ||
84ecb73f S |
193 | =head2 Two XS typemap Entries removed |
194 | ||
195 | Two presumably unused XS typemap entries have been removed from the | |
196 | core typemap: T_DATAUNIT and T_CALLBACK. If you are, against all odds, | |
197 | a user of these, please see the instructions on how to regain them | |
198 | in L<perlxstypemap>. | |
199 | ||
7620cb10 KW |
200 | =head2 Unicode 6.1 has incompatibilities with Unicode 6.0 |
201 | ||
202 | These are detailed in L</Supports (almost) Unicode 6.1> above. | |
203 | ||
290a3bf6 KW |
204 | =head2 Changed returns for some properties in C<Unicode::UCD::prop_invmap()> |
205 | ||
206 | The return values for C<prop_invmap> have been changed for some | |
207 | properties to make the returned lists significantly smaller. This | |
208 | allows those lists to be searched faster. | |
209 | ||
210 | This function was introduced earlier in the v5.15 series of releases, | |
211 | and the API will not be considered stable until v5.16. | |
212 | ||
213 | See L<Unicode::UCD/prop_invmap()> for details on the new interface. | |
214 | ||
d7c042c9 AB |
215 | =head2 C<$$> and C<getppid()> no longer emulate POSIX semantics under LinuxThreads |
216 | ||
217 | The POSIX emulation of C<$$> and C<getppid()> under the obsolete | |
218 | LinuxThreads implementation has been removed (the C<$$> emulation was | |
219 | actually removed in v5.15.0). This only impacts users of Linux 2.4 and | |
220 | users of Debian GNU/kFreeBSD up to and including 6.0, not the vast | |
221 | majority of Linux installations that use NPTL threads. | |
222 | ||
223 | This means that C<getppid()> like C<$$> is now always guaranteed to | |
224 | return the OS's idea of the current state of the process, not perl's | |
225 | cached version of it. | |
226 | ||
227 | See the documentation for L<$$|perlvar/$$> for details. | |
228 | ||
c1e74734 | 229 | =head1 Deprecations |
b240fc0f | 230 | |
c1e74734 CBW |
231 | XXX Any deprecated features, syntax, modules etc. should be listed here. |
232 | In particular, deprecated modules should be listed here even if they are | |
233 | listed as an updated module in the L</Modules and Pragmata> section. | |
4e6ab4ad | 234 | |
c1e74734 | 235 | [ List each deprecation as a =head2 entry ] |
4e6ab4ad | 236 | |
27f00e3d KW |
237 | =head2 C<is_utf8_char()> |
238 | ||
239 | This function is deprecated because it could read beyond the end of the | |
240 | input string. Use the new L<is_utf8_char_buf()|/Added is_utf8_char_buf()> | |
241 | instead. | |
242 | ||
c1e74734 | 243 | =head1 Performance Enhancements |
79e10968 | 244 | |
c1e74734 CBW |
245 | XXX Changes which enhance performance without changing behaviour go here. There |
246 | may well be none in a stable release. | |
79e10968 | 247 | |
c1e74734 | 248 | [ List each enhancement as a =item entry ] |
ea88c40c | 249 | |
c1e74734 | 250 | =over 4 |
9d055b1a CBW |
251 | |
252 | =item * | |
253 | ||
c1e74734 | 254 | XXX |
cadced9f | 255 | |
c1e74734 | 256 | =back |
cadced9f | 257 | |
c1e74734 | 258 | =head1 Modules and Pragmata |
cadced9f | 259 | |
c1e74734 CBW |
260 | XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/> |
261 | go here. If Module::CoreList is updated, generate an initial draft of the | |
262 | following sections using F<Porting/corelist-perldelta.pl>, which prints stub | |
263 | entries to STDOUT. Results can be pasted in place of the '=head2' entries | |
264 | below. A paragraph summary for important changes should then be added by hand. | |
265 | In an ideal world, dual-life modules would have a F<Changes> file that could be | |
266 | cribbed. | |
cadced9f | 267 | |
c1e74734 | 268 | [ Within each section, list entries as a =item entry ] |
07feb684 | 269 | |
c1e74734 | 270 | =head2 New Modules and Pragmata |
cadced9f | 271 | |
c1e74734 | 272 | =over 4 |
632c5d30 NC |
273 | |
274 | =item * | |
275 | ||
2f987927 FC |
276 | The C<mmap> PerlIO layer is no longer implemented by perl itself, but has |
277 | been moved out into the new L<PerlIO::mmap> module. | |
4e6e9b23 | 278 | |
c1e74734 | 279 | =back |
4e6e9b23 | 280 | |
c1e74734 | 281 | =head2 Updated Modules and Pragmata |
4e6e9b23 | 282 | |
c1e74734 | 283 | =over 4 |
1887da8c RS |
284 | |
285 | =item * | |
286 | ||
eeac62ad FC |
287 | L<arybase> has been upgraded from version 0.03 to version 0.04. |
288 | ||
289 | List slices no longer modify items on the stack belonging to outer lists | |
290 | [perl #109570]. | |
291 | ||
292 | =item * | |
293 | ||
197aacaf FC |
294 | L<B> has been upgraded from version 1.33 to version 1.34. |
295 | ||
296 | C<B::COP> now has a C<stashflags> method, corresponding to a new internal | |
297 | field added in 5.15.4 [perl #108860]. | |
298 | ||
299 | =item * | |
300 | ||
c0f37554 FC |
301 | L<Carp> has been upgraded from version 1.24 to version 1.25. |
302 | ||
303 | It now puts a dot after the file and line number, just like errors from | |
304 | C<die> [perl #106538]. | |
305 | ||
306 | =item * | |
307 | ||
df697508 | 308 | L<Compress::Raw::Bzip2> has been upgraded from version 2.045 to version 2.048. |
76f546a2 CBW |
309 | |
310 | =item * | |
311 | ||
ecea5ab2 | 312 | L<Compress::Raw::Zlib> has been upgraded from version 2.045 to version 2.048. |
589c1691 CBW |
313 | |
314 | =item * | |
315 | ||
8dcc3739 | 316 | L<Compress::Zlib> has been upgraded from version 2.046 to version 2.048. |
422d6414 CBW |
317 | |
318 | =item * | |
319 | ||
2d1dec40 CBW |
320 | L<CPAN::Meta> has been upgraded from version 2.113640 to version 2.120351. |
321 | ||
322 | Work around a memory leak bug involving version objects in boolean context. | |
323 | ||
324 | =item * | |
325 | ||
ce09a8a1 | 326 | L<CPAN::Meta::YAML> has been upgraded from version 0.005 to version 0.007. |
b3100a1d CBW |
327 | |
328 | =item * | |
329 | ||
2364a08e CBW |
330 | L<CPANPLUS> has been upgraded from version 0.9116 to version 0.9118. |
331 | ||
332 | =item * | |
333 | ||
89ddfa67 CBW |
334 | L<CPANPLUS::Dist::Build> has been upgraded from version 0.60 to version 0.62. |
335 | ||
336 | =item * | |
337 | ||
b34385a6 | 338 | L<DB_File> has been upgraded from version 1.824 to version 1.826. |
acb29889 CBW |
339 | |
340 | =item * | |
341 | ||
ce2c4022 NC |
342 | L<diagnostics> has been upgraded from version 1.27 to version 1.28. |
343 | ||
344 | When searching for F<perldiag.pod>, it no longer uses paths that were only | |
345 | relevant on Perl 5.004 and earlier. | |
346 | ||
347 | =item * | |
348 | ||
84ecb73f S |
349 | L<ExtUtils::ParseXS> has been upgraded from version 3.12 to version 3.15. |
350 | ||
351 | The new version comes with important tools for sharing typemaps between | |
352 | different CPAN distributions. | |
353 | ||
354 | =item * | |
355 | ||
a3cc0403 FC |
356 | L<File::Copy> has been upgraded from version 2.21 to version 2.23. |
357 | ||
358 | It no longer emits warnings when copying files with newlines in their names | |
359 | [perl #109104]. | |
360 | ||
361 | =item * | |
362 | ||
eb96f3fa CBW |
363 | L<IPC::Cmd> has been upgraded from version 0.72 to version 0.76. |
364 | ||
365 | =item * | |
366 | ||
04ae1553 Z |
367 | L<Math::Complex> has been upgraded from version 1.58 to version 1.59. |
368 | ||
369 | This avoids a new core warning. | |
370 | ||
371 | =item * | |
372 | ||
4402c0f3 | 373 | L<Module::Metadata> has been upgraded from version 1.000007 to version 1.000009. |
75ff5956 CBW |
374 | |
375 | Adds C<provides> method to generate a CPAN META provides data structure | |
376 | correctly; use of C<package_versions_from_directory> is discouraged. | |
377 | ||
378 | =item * | |
379 | ||
a4a5e2bf CBW |
380 | L<Parse::CPAN::Meta> has been upgraded from version 1.4401 to version 1.4402. |
381 | ||
382 | =item * | |
383 | ||
1051d5b5 | 384 | L<Pod::Parser> has been upgraded from version 1.37 to version 1.51. |
88c5c971 | 385 | |
2a7afa74 NC |
386 | =item * |
387 | ||
ecd144ea FC |
388 | L<Term::ReadLine> has been upgraded from version 1.07 to version 1.08. |
389 | ||
390 | Its C<tkRunning> method now supports L<AnyEvent> event loops, and not just | |
391 | L<Tk>. A more general mechanism has been proposed, so this may be reverted | |
392 | before Perl 5.16 [perl #108470]. | |
393 | ||
394 | =item * | |
395 | ||
858dcda5 Z |
396 | L<Time::HiRes> has been upgraded from version 1.9724 to version 1.9725. |
397 | ||
694644e0 | 398 | C<Time::HiRes::stat()> no longer corrupts the Perl stack. |
858dcda5 Z |
399 | |
400 | =item * | |
401 | ||
2a7afa74 NC |
402 | L<Unicode::UCD> has been upgraded from version 0.39 to 0.40. |
403 | ||
404 | The only change is to fix a formatting error in the Pod. | |
405 | ||
e9e4ee62 CBW |
406 | =item * |
407 | ||
408 | L<Version::Requirements> has been upgraded from version 0.101021 to version 0.101022. | |
409 | ||
c1e74734 | 410 | =back |
c0504019 | 411 | |
c1e74734 | 412 | =head2 Removed Modules and Pragmata |
937a45d0 | 413 | |
c1e74734 | 414 | =over 4 |
937a45d0 | 415 | |
ef337e16 CBW |
416 | =item * |
417 | ||
c1e74734 | 418 | XXX |
ef337e16 | 419 | |
7f28d7ed | 420 | =back |
679b54e7 | 421 | |
52deee2e | 422 | =head1 Documentation |
3c7c5233 | 423 | |
c1e74734 CBW |
424 | XXX Changes to files in F<pod/> go here. Consider grouping entries by |
425 | file and be sure to link to the appropriate page, e.g. L<perlfunc>. | |
a71d67b1 | 426 | |
c1e74734 | 427 | =head2 New Documentation |
cadced9f | 428 | |
c1e74734 | 429 | XXX Changes which create B<new> files in F<pod/> go here. |
cadced9f | 430 | |
84ecb73f S |
431 | =head3 L<perlxstypemap> |
432 | ||
433 | The new manual describes the XS typemapping mechanism in unprecedented | |
434 | detail and combines new documentation with information extracted from | |
435 | L<perlxs> and the previously unofficial list of all core typemaps. | |
436 | ||
c1e74734 | 437 | =head3 L<XXX> |
cadced9f | 438 | |
c1e74734 | 439 | XXX Description of the purpose of the new file here |
cadced9f | 440 | |
c1e74734 | 441 | =head2 Changes to Existing Documentation |
cadced9f | 442 | |
c1e74734 CBW |
443 | XXX Changes which significantly change existing files in F<pod/> go here. |
444 | However, any changes to F<pod/perldiag.pod> should go in the L</Diagnostics> | |
445 | section. | |
cadced9f | 446 | |
c1e74734 | 447 | =head3 L<XXX> |
7e7629fa | 448 | |
52deee2e | 449 | =over 4 |
7e7629fa FC |
450 | |
451 | =item * | |
452 | ||
c1e74734 | 453 | XXX Description of the change here |
c2654555 | 454 | |
52deee2e | 455 | =back |
85ca3be7 | 456 | |
52deee2e | 457 | =head1 Diagnostics |
85ca3be7 | 458 | |
52deee2e DR |
459 | The following additions or changes have been made to diagnostic output, |
460 | including warnings and fatal error messages. For the complete list of | |
461 | diagnostic messages, see L<perldiag>. | |
7788a270 | 462 | |
c1e74734 CBW |
463 | XXX New or changed warnings emitted by the core's C<C> code go here. Also |
464 | include any changes in L<perldiag> that reconcile it to the C<C> code. | |
6138a722 | 465 | |
c1e74734 CBW |
466 | [ Within each section, list entries as a =item entry that links to perldiag, |
467 | e.g. | |
a47fb3fe | 468 | |
c1e74734 | 469 | =item * |
4888c563 | 470 | |
c1e74734 CBW |
471 | L<Invalid version object|perldiag/"Invalid version object"> |
472 | ] | |
a3f52e2e | 473 | |
c1e74734 | 474 | =head2 New Diagnostics |
52272450 | 475 | |
c1e74734 | 476 | XXX Newly added diagnostic messages go here |
52272450 | 477 | |
c1e74734 | 478 | =head3 New Errors |
a47fb3fe | 479 | |
0aaeb177 | 480 | =over 4 |
7ef25837 | 481 | |
6d110ad0 FC |
482 | =item * |
483 | ||
c1e74734 | 484 | XXX L<message|perldiag/"message"> |
604a99bd | 485 | |
c1e74734 | 486 | =back |
ea88c40c | 487 | |
c1e74734 | 488 | =head3 New Warnings |
ea88c40c | 489 | |
c1e74734 | 490 | =over 4 |
ea88c40c FC |
491 | |
492 | =item * | |
493 | ||
c1e74734 | 494 | XXX L<message|perldiag/"message"> |
ea88c40c | 495 | |
6d110ad0 FC |
496 | =back |
497 | ||
c1e74734 CBW |
498 | =head2 Changes to Existing Diagnostics |
499 | ||
500 | XXX Changes (i.e. rewording) of diagnostic messages go here | |
cadced9f FC |
501 | |
502 | =over 4 | |
503 | ||
504 | =item * | |
505 | ||
c1e74734 | 506 | XXX Describe change here |
cadced9f FC |
507 | |
508 | =back | |
509 | ||
0aaeb177 | 510 | =head1 Utility Changes |
9cfd094e | 511 | |
c1e74734 CBW |
512 | XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go |
513 | here. Most of these are built within the directories F<utils> and F<x2p>. | |
d7fbd56d | 514 | |
c1e74734 CBW |
515 | [ List utility changes as a =head3 entry for each utility and =item |
516 | entries for each change | |
517 | Use L<XXX> with program names to get proper documentation linking. ] | |
d7fbd56d | 518 | |
c1e74734 | 519 | =head3 L<XXX> |
d7fbd56d | 520 | |
c1e74734 | 521 | =over 4 |
ba91b4f3 | 522 | |
b18aa002 FC |
523 | =item * |
524 | ||
c1e74734 | 525 | XXX |
b18aa002 | 526 | |
52deee2e | 527 | =back |
ba91b4f3 | 528 | |
52deee2e | 529 | =head1 Configuration and Compilation |
f4912a50 | 530 | |
c1e74734 CBW |
531 | XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools |
532 | go here. Any other changes to the Perl build process should be listed here. | |
533 | However, any platform-specific changes should be listed in the | |
534 | L</Platform Support> section, instead. | |
a3f52e2e | 535 | |
c1e74734 | 536 | [ List changes as a =item entry ]. |
a3f52e2e | 537 | |
0aaeb177 | 538 | =over 4 |
ad32999b | 539 | |
f4912a50 | 540 | =item * |
ad32999b | 541 | |
c1e74734 | 542 | XXX |
c15f899f | 543 | |
7f28d7ed | 544 | =back |
ad32999b | 545 | |
c1e74734 | 546 | =head1 Testing |
39de7394 | 547 | |
c1e74734 CBW |
548 | XXX Any significant changes to the testing of a freshly built perl should be |
549 | listed here. Changes which create B<new> files in F<t/> go here as do any | |
550 | large changes to the testing harness (e.g. when parallel testing was added). | |
551 | Changes to existing files in F<t/> aren't worth summarising, although the bugs | |
552 | that they represent may be covered elsewhere. | |
39de7394 | 553 | |
c1e74734 | 554 | [ List each test improvement as a =item entry ] |
39de7394 | 555 | |
c1e74734 | 556 | =over 4 |
5dd80d85 | 557 | |
52272450 FC |
558 | =item * |
559 | ||
c1e74734 | 560 | XXX |
52272450 | 561 | |
84ecb73f S |
562 | =item * |
563 | ||
564 | The test suite for typemaps has been extended to cover a larger fraction of | |
565 | the core typemaps. | |
566 | ||
52deee2e | 567 | =back |
5dd80d85 | 568 | |
c1e74734 | 569 | =head1 Platform Support |
52272450 | 570 | |
c1e74734 | 571 | XXX Any changes to platform support should be listed in the sections below. |
52272450 | 572 | |
c1e74734 CBW |
573 | [ Within the sections, list each platform as a =item entry with specific |
574 | changes as paragraphs below it. ] | |
ad266194 | 575 | |
c1e74734 | 576 | =head2 New Platforms |
ad266194 | 577 | |
c1e74734 CBW |
578 | XXX List any platforms that this version of perl compiles on, that previous |
579 | versions did not. These will either be enabled by new files in the F<hints/> | |
580 | directories, or new subdirectories and F<README> files at the top level of the | |
581 | source tree. | |
ad266194 | 582 | |
c1e74734 | 583 | =over 4 |
838cf719 | 584 | |
c1e74734 | 585 | =item XXX-some-platform |
838cf719 | 586 | |
c1e74734 | 587 | XXX |
b00f6edb | 588 | |
c1e74734 | 589 | =back |
b00f6edb | 590 | |
c1e74734 | 591 | =head2 Discontinued Platforms |
7a3fd9ed | 592 | |
c1e74734 | 593 | XXX List any platforms that this version of perl no longer compiles on. |
7a3fd9ed | 594 | |
c1e74734 | 595 | =over 4 |
1a50d74b | 596 | |
c1e74734 | 597 | =item XXX-some-platform |
1a50d74b | 598 | |
c1e74734 | 599 | XXX |
ea88c40c | 600 | |
c1e74734 | 601 | =back |
ea88c40c | 602 | |
c1e74734 | 603 | =head2 Platform-Specific Notes |
ea88c40c | 604 | |
c1e74734 CBW |
605 | XXX List any changes for specific platforms. This could include configuration |
606 | and compilation changes or changes in portability/compatibility. However, | |
607 | changes within modules for platforms should generally be listed in the | |
608 | L</Modules and Pragmata> section. | |
ea88c40c | 609 | |
c1e74734 | 610 | =over 4 |
ea88c40c | 611 | |
c1e74734 | 612 | =item XXX-some-platform |
ea88c40c | 613 | |
c1e74734 | 614 | XXX |
ea88c40c | 615 | |
c1e74734 | 616 | =back |
ea88c40c | 617 | |
c1e74734 | 618 | =head1 Internal Changes |
ea88c40c | 619 | |
c1e74734 CBW |
620 | XXX Changes which affect the interface available to C<XS> code go here. |
621 | Other significant internal changes for future core maintainers should | |
622 | be noted as well. | |
ea88c40c | 623 | |
c1e74734 | 624 | [ List each change as a =item entry ] |
ea88c40c | 625 | |
c1e74734 | 626 | =over 4 |
ea88c40c FC |
627 | |
628 | =item * | |
629 | ||
c1e74734 | 630 | XXX |
ea88c40c | 631 | |
c1e74734 | 632 | =back |
ea88c40c | 633 | |
c1e74734 | 634 | =head1 Selected Bug Fixes |
ea88c40c | 635 | |
c1e74734 CBW |
636 | XXX Important bug fixes in the core language are summarised here. |
637 | Bug fixes in files in F<ext/> and F<lib/> are best summarised in | |
638 | L</Modules and Pragmata>. | |
ea88c40c | 639 | |
c1e74734 | 640 | [ List each fix as a =item entry ] |
ea88c40c | 641 | |
c1e74734 | 642 | =over 4 |
ea88c40c FC |
643 | |
644 | =item * | |
645 | ||
6025c6dd RS |
646 | C<~~> now correctly handles the precedence of Any~~Object, and is not tricked |
647 | by an overloaded object on the left-hand side. | |
ea88c40c | 648 | |
249950d7 FC |
649 | =item * |
650 | ||
651 | C<stat _> no longer warns about unopened filehandles [perl #71002]. | |
652 | ||
653 | =item * | |
654 | ||
655 | C<stat> on an unopened filehandle now warns consistently, instead of | |
656 | skipping the warning at times. | |
657 | ||
658 | =item * | |
659 | ||
660 | A change in an earlier 5.15 release caused warning hints to propagate into | |
661 | C<do $file>. This has been fixed [rt.cpan.org #72767]. | |
662 | ||
663 | =item * | |
664 | ||
665 | Starting with 5.12.0, Perl used to get its internal bookkeeping muddled up | |
666 | after assigning C<${ qr// }> to a hash element and locking it with | |
667 | L<Hash::Util>. This could result in double frees, crashes or erratic | |
668 | behaviour. | |
669 | ||
92c88ef1 FC |
670 | =item * |
671 | ||
672 | In 5.15.7, some typeglobs in the CORE namespace were made read-only by | |
673 | mistake. This has been fixed [rt.cpan.org #74289]. | |
674 | ||
b1ea7742 FC |
675 | =item * |
676 | ||
677 | C<-t> now works when stacked with other filetest operators [perl #77388]. | |
678 | ||
a1d95121 FC |
679 | =item * |
680 | ||
681 | Stacked filetest operators now only call FETCH once on a tied argument. | |
682 | ||
ff4ff6f3 FC |
683 | =item * |
684 | ||
685 | C</.*/g> would sometimes refuse to match at the end of a string that ends | |
686 | with "\n". This has been fixed [perl #109206]. | |
687 | ||
a7bff800 FC |
688 | =item * |
689 | ||
ea317ccb KW |
690 | C<m/[[:ascii:]]/i> and C</\p{ASCII}/i> now match identically (when not |
691 | under a differing locale). This fixes a regression introduced in 5.14 | |
692 | in which the first expression could match characters outside of ASCII, | |
693 | such as the KELVIN SIGN. | |
694 | ||
695 | =item * | |
696 | ||
a7bff800 FC |
697 | Method calls whose arguments were all surrounded with C<my()> or C<our()> |
698 | (as in C<<$object->method(my($a,$b)) >>) used to force lvalue context on | |
699 | the subroutine. This would prevent lvalue methods from returning certain | |
700 | values. Due to lvalue fixes earlier in the 5.15.x series, it would also | |
701 | prevent non-lvalue methods from being called [perl #109264]. | |
702 | ||
703 | =for comment | |
704 | This bug I<did> affect earlier stable releases. It is just the last | |
705 | sentence that does not apply to 5.14. | |
706 | ||
0aae26c1 FC |
707 | =item * |
708 | ||
709 | The C<SvPVutf8> C function no longer tries to modify its argument, | |
710 | resulting in errors [perl #108994]. | |
711 | ||
712 | =item * | |
713 | ||
714 | C<SvPVutf8> now works properly with magical variables. | |
715 | ||
716 | =item * | |
717 | ||
718 | C<SvPVbyte> now works properly non-PVs. | |
719 | ||
07315176 KW |
720 | =item * |
721 | ||
67addccf KW |
722 | C</[[:ascii:]]/> and C</[[:blank:]]/> now use locale rules under |
723 | C<use locale> when the platform supports that. Previously, they used | |
07315176 KW |
724 | the platform's native character set. |
725 | ||
5d103fec KW |
726 | =item * |
727 | ||
728 | A regression introduced in 5.13.6 was fixed. This involved an inverted | |
729 | bracketed character class in a regular expression that consisted solely | |
730 | of a Unicode property, that property wasn't getting inverted outside the | |
731 | Latin1 range. | |
732 | ||
ea88c40c FC |
733 | =back |
734 | ||
c1e74734 | 735 | =head1 Known Problems |
ea88c40c | 736 | |
c1e74734 CBW |
737 | XXX Descriptions of platform agnostic bugs we know we can't fix go here. Any |
738 | tests that had to be C<TODO>ed for the release would be noted here, unless | |
739 | they were specific to a particular platform (see below). | |
ea88c40c | 740 | |
c1e74734 CBW |
741 | This is a list of some significant unfixed bugs, which are regressions |
742 | from either 5.XXX.XXX or 5.XXX.XXX. | |
ea88c40c | 743 | |
c1e74734 | 744 | [ List each fix as a =item entry ] |
ea88c40c | 745 | |
c1e74734 | 746 | =over 4 |
18af289e | 747 | |
c1e74734 | 748 | =item * |
18af289e | 749 | |
c1e74734 | 750 | XXX |
1ac442bc | 751 | |
c1e74734 | 752 | =back |
c0154fe2 | 753 | |
c1e74734 | 754 | =head1 Obituary |
1ac442bc | 755 | |
c1e74734 CBW |
756 | XXX If any significant core contributor has died, we've added a short obituary |
757 | here. | |
84b2a83e | 758 | |
52deee2e | 759 | =head1 Acknowledgements |
8fe05716 | 760 | |
c1e74734 CBW |
761 | XXX Generate this with: |
762 | ||
763 | perl Porting/acknowledgements.pl v5.15.7..HEAD | |
29cf780c | 764 | |
44691e6f AB |
765 | =head1 Reporting Bugs |
766 | ||
767 | If you find what you think is a bug, you might check the articles | |
52deee2e DR |
768 | recently posted to the comp.lang.perl.misc newsgroup and the perl |
769 | bug database at http://rt.perl.org/perlbug/ . There may also be | |
44691e6f AB |
770 | information at http://www.perl.org/ , the Perl Home Page. |
771 | ||
772 | If you believe you have an unreported bug, please run the L<perlbug> | |
52deee2e DR |
773 | program included with your release. Be sure to trim your bug down |
774 | to a tiny but sufficient test case. Your bug report, along with the | |
775 | output of C<perl -V>, will be sent off to perlbug@perl.org to be | |
776 | analysed by the Perl porting team. | |
44691e6f AB |
777 | |
778 | If the bug you are reporting has security implications, which make it | |
52deee2e DR |
779 | inappropriate to send to a publicly archived mailing list, then please send |
780 | it to perl5-security-report@perl.org. This points to a closed subscription | |
781 | unarchived mailing list, which includes | |
782 | all the core committers, who will be able | |
783 | to help assess the impact of issues, figure out a resolution, and help | |
784 | co-ordinate the release of patches to mitigate or fix the problem across all | |
785 | platforms on which Perl is supported. Please only use this address for | |
786 | security issues in the Perl core, not for modules independently | |
787 | distributed on CPAN. | |
44691e6f AB |
788 | |
789 | =head1 SEE ALSO | |
790 | ||
52deee2e DR |
791 | The F<Changes> file for an explanation of how to view exhaustive details |
792 | on what changed. | |
44691e6f AB |
793 | |
794 | The F<INSTALL> file for how to build Perl. | |
795 | ||
796 | The F<README> file for general stuff. | |
797 | ||
798 | The F<Artistic> and F<Copying> files for copyright information. | |
799 | ||
800 | =cut |