Commit | Line | Data |
---|---|---|
44691e6f AB |
1 | =encoding utf8 |
2 | ||
3 | =head1 NAME | |
4 | ||
6c83150b A |
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.23.6 | |
eabfc7bc | 9 | |
2cfe9b50 | 10 | =head1 DESCRIPTION |
eabfc7bc | 11 | |
6c83150b | 12 | This document describes differences between the 5.23.5 release and the 5.23.6 |
2cfe9b50 | 13 | release. |
eabfc7bc | 14 | |
6c83150b A |
15 | If you are upgrading from an earlier release such as 5.23.4, first read |
16 | L<perl5235delta>, which describes differences between 5.23.4 and 5.23.5. | |
a43707ab | 17 | |
6c83150b | 18 | =head1 Notice |
f83db990 | 19 | |
6c83150b | 20 | XXX Any important notices here |
f83db990 | 21 | |
6c83150b | 22 | =head1 Core Enhancements |
f83db990 | 23 | |
6c83150b A |
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. | |
83144be3 | 27 | |
6c83150b | 28 | [ List each enhancement as a =head2 entry ] |
f83db990 | 29 | |
6c83150b | 30 | =head1 Security |
f83db990 | 31 | |
6c83150b A |
32 | XXX Any security-related notices go here. In particular, any security |
33 | vulnerabilities closed should be noted here rather than in the | |
34 | L</Selected Bug Fixes> section. | |
83144be3 | 35 | |
6c83150b | 36 | [ List each security issue as a =head2 entry ] |
f83db990 | 37 | |
6c83150b | 38 | =head1 Incompatible Changes |
f83db990 | 39 | |
394609a5 KW |
40 | =head2 Some regular expression patterns that had runtime errors now |
41 | don't compile at all | |
42 | ||
43 | This should have been in the perldelta for 5.23.4, but was omitted. | |
44 | ||
45 | Almost all Unicode properties using the C<\p{}> and C<\P{}> regular | |
46 | expression pattern constructs are now checked for validity at pattern | |
47 | compilation time, and invalid ones will cause the program to not | |
48 | compile. In earlier releases, this check was often deferred until run | |
49 | time. Whenever an error check is moved from run- to compile time, | |
50 | erroneous code is caught 100% of the time, whereas before it would only | |
51 | get caught if and when the offending portion actually gets executed, | |
52 | which for unreachable code might be never. | |
f83db990 | 53 | |
6c83150b | 54 | =head1 Deprecations |
f83db990 | 55 | |
6c83150b | 56 | XXX Any deprecated features, syntax, modules etc. should be listed here. |
f83db990 | 57 | |
6c83150b | 58 | =head2 Module removals |
f83db990 | 59 | |
6c83150b | 60 | XXX Remove this section if inapplicable. |
f83db990 | 61 | |
6c83150b A |
62 | The following modules will be removed from the core distribution in a |
63 | future release, and will at that time need to be installed from CPAN. | |
64 | Distributions on CPAN which require these modules will need to list them as | |
65 | prerequisites. | |
f83db990 | 66 | |
6c83150b A |
67 | The core versions of these modules will now issue C<"deprecated">-category |
68 | warnings to alert you to this fact. To silence these deprecation warnings, | |
69 | install the modules in question from CPAN. | |
f83db990 | 70 | |
6c83150b A |
71 | Note that these are (with rare exceptions) fine modules that you are encouraged |
72 | to continue to use. Their disinclusion from core primarily hinges on their | |
73 | necessity to bootstrapping a fully functional, CPAN-capable Perl installation, | |
74 | not usually on concerns over their design. | |
f83db990 | 75 | |
6c83150b | 76 | =over |
f83db990 | 77 | |
6c83150b | 78 | =item XXX |
f83db990 | 79 | |
6c83150b A |
80 | XXX Note that deprecated modules should be listed here even if they are listed |
81 | as an updated module in the L</Modules and Pragmata> section. | |
a8c28920 | 82 | |
6c83150b | 83 | =back |
f83db990 | 84 | |
6c83150b | 85 | [ List each other deprecation as a =head2 entry ] |
f83db990 | 86 | |
d61acc4d KW |
87 | =head2 Using code points above the platform's C<IV_MAX> is now |
88 | deprecated | |
89 | ||
90 | Unicode defines code points in the range C<0..0x10FFFF>. Some standards | |
91 | at one time defined them up to 2**31 - 1, but Perl has allowed them to | |
92 | be as high as anything that will fit in a word on the platform being | |
93 | used. However, use of those above the platform's C<IV_MAX> is broken in | |
94 | some constructs, notably C<tr///>, regular expression patterns involving | |
95 | quantifiers, and in some arithmetic and comparison operations, such as | |
96 | being the upper limit of a loop. Now the use of such code points raises | |
97 | a deprecation warning, unless that warning category is turned off. | |
98 | C<IV_MAX> is typically 2**31 -1 on 32-bit platforms, and 2**63-1 on | |
99 | 64-bit ones. | |
100 | ||
87e05d1a KW |
101 | =head2 Doing bitwise operations on strings containing code points above |
102 | 0xFF is deprecated | |
103 | ||
104 | The string bitwise operators treat their operands as strings of bytes, | |
105 | and values beyond 0xFF are nonsensical in this context. To operate on | |
106 | encoded bytes, first encode the strings. To operate on code points' | |
107 | numeric values, use C<split> and C<map ord>. In the future, this | |
108 | warning will be replaced by an exception. | |
109 | ||
6c83150b | 110 | =head1 Performance Enhancements |
a8c28920 | 111 | |
6c83150b A |
112 | XXX Changes which enhance performance without changing behaviour go here. |
113 | There may well be none in a stable release. | |
a8c28920 | 114 | |
6c83150b | 115 | [ List each enhancement as a =item entry ] |
a8c28920 | 116 | |
6c83150b | 117 | =over 4 |
a8c28920 A |
118 | |
119 | =item * | |
120 | ||
6c83150b | 121 | XXX |
a8c28920 | 122 | |
6c83150b | 123 | =back |
a8c28920 | 124 | |
6c83150b | 125 | =head1 Modules and Pragmata |
a8c28920 | 126 | |
6c83150b A |
127 | XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/> |
128 | go here. If Module::CoreList is updated, generate an initial draft of the | |
129 | following sections using F<Porting/corelist-perldelta.pl>. A paragraph summary | |
130 | for important changes should then be added by hand. In an ideal world, | |
131 | dual-life modules would have a F<Changes> file that could be cribbed. | |
a8c28920 | 132 | |
6c83150b | 133 | [ Within each section, list entries as a =item entry ] |
a8c28920 | 134 | |
6c83150b | 135 | =head2 New Modules and Pragmata |
a8c28920 | 136 | |
6c83150b | 137 | =over 4 |
a8c28920 A |
138 | |
139 | =item * | |
140 | ||
6c83150b | 141 | XXX |
a8c28920 | 142 | |
6c83150b | 143 | =back |
a8c28920 | 144 | |
6c83150b | 145 | =head2 Updated Modules and Pragmata |
a8c28920 | 146 | |
6c83150b | 147 | =over 4 |
a8c28920 A |
148 | |
149 | =item * | |
150 | ||
37fb51ad | 151 | L<Data::Dumper> has been upgraded from version 2.158 to 2.159. |
1257ab89 AC |
152 | |
153 | This adds a "Trailingcomma" option, which when enabled adds a trailing comma | |
154 | after the last element of dumped arrays and hashes that would otherwise be | |
155 | followed immediately by a line break. [perl #126813] | |
156 | ||
157 | =item * | |
158 | ||
e70037f2 TC |
159 | L<DynaLoader> has been upgraded from version 1.36 to 1.37. |
160 | ||
161 | Fixed an else nesting issue in dynamic loading support for OS/390 (and | |
162 | similar systems) that was introduced in 1.36. | |
a8c28920 | 163 | |
fb733bf0 TC |
164 | =item * |
165 | ||
166 | L<utf8> has been upgraded from 1.17 to 1.18. | |
167 | ||
168 | Partly reverted a micro-optimization to F<lib/utf_heavy.pl> that | |
169 | caused self-recursion when it was loaded with C<${^ENCODING}> set. | |
170 | [perl #126593] | |
171 | ||
273b29a4 KW |
172 | =item * |
173 | ||
174 | The modules L<sigtrap>, L<DB>, and the perl debugger could have under | |
175 | rare circumstances, without you expecting it, output containing raw | |
176 | control characters. This has been fixed. | |
177 | ||
6c83150b | 178 | =back |
a8c28920 | 179 | |
6c83150b | 180 | =head2 Removed Modules and Pragmata |
a8c28920 | 181 | |
6c83150b | 182 | =over 4 |
a8c28920 A |
183 | |
184 | =item * | |
185 | ||
6c83150b | 186 | XXX |
a8c28920 | 187 | |
6c83150b | 188 | =back |
a8c28920 | 189 | |
6c83150b | 190 | =head1 Documentation |
a8c28920 | 191 | |
6c83150b A |
192 | XXX Changes to files in F<pod/> go here. Consider grouping entries by |
193 | file and be sure to link to the appropriate page, e.g. L<perlfunc>. | |
a8c28920 | 194 | |
6c83150b | 195 | =head2 New Documentation |
a8c28920 | 196 | |
6c83150b | 197 | XXX Changes which create B<new> files in F<pod/> go here. |
a8c28920 | 198 | |
6c83150b | 199 | =head3 L<XXX> |
a8c28920 | 200 | |
6c83150b | 201 | XXX Description of the purpose of the new file here |
a8c28920 | 202 | |
6c83150b | 203 | =head2 Changes to Existing Documentation |
a8c28920 | 204 | |
6c83150b A |
205 | XXX Changes which significantly change existing files in F<pod/> go here. |
206 | However, any changes to F<pod/perldiag.pod> should go in the L</Diagnostics> | |
207 | section. | |
a8c28920 | 208 | |
6c83150b | 209 | =head3 L<XXX> |
a8c28920 | 210 | |
6c83150b | 211 | =over 4 |
a8c28920 A |
212 | |
213 | =item * | |
214 | ||
6c83150b | 215 | XXX Description of the change here |
a8c28920 | 216 | |
6c83150b | 217 | =back |
a8c28920 | 218 | |
6c83150b | 219 | =head1 Diagnostics |
a8c28920 | 220 | |
6c83150b A |
221 | The following additions or changes have been made to diagnostic output, |
222 | including warnings and fatal error messages. For the complete list of | |
223 | diagnostic messages, see L<perldiag>. | |
a8c28920 | 224 | |
6c83150b A |
225 | XXX New or changed warnings emitted by the core's C<C> code go here. Also |
226 | include any changes in L<perldiag> that reconcile it to the C<C> code. | |
a8c28920 | 227 | |
6c83150b | 228 | =head2 New Diagnostics |
a8c28920 | 229 | |
6c83150b A |
230 | XXX Newly added diagnostic messages go under here, separated into New Errors |
231 | and New Warnings | |
a8c28920 | 232 | |
6c83150b | 233 | =head3 New Errors |
a8c28920 | 234 | |
6c83150b | 235 | =over 4 |
a8c28920 | 236 | |
6c83150b | 237 | =item * |
a8c28920 | 238 | |
29d76410 TC |
239 | L<message|perldiag/"Invalid number '%s' for -C option."> |
240 | ||
241 | (F) You supplied a number to the -C option that either has extra leading | |
242 | zeroes or overflows perl's unsigned integer representation. | |
243 | ||
a8c28920 | 244 | |
6c83150b | 245 | =back |
a8c28920 | 246 | |
6c83150b | 247 | =head3 New Warnings |
a8c28920 | 248 | |
6c83150b | 249 | =over 4 |
a8c28920 A |
250 | |
251 | =item * | |
252 | ||
6c83150b | 253 | XXX L<message|perldiag/"message"> |
a8c28920 | 254 | |
6c83150b | 255 | =back |
a8c28920 | 256 | |
6c83150b | 257 | =head2 Changes to Existing Diagnostics |
a8c28920 | 258 | |
6c83150b | 259 | XXX Changes (i.e. rewording) of diagnostic messages go here |
a8c28920 | 260 | |
6c83150b | 261 | =over 4 |
a8c28920 A |
262 | |
263 | =item * | |
264 | ||
6c83150b | 265 | XXX Describe change here |
a8c28920 | 266 | |
6c83150b | 267 | =back |
a8c28920 | 268 | |
6c83150b | 269 | =head1 Utility Changes |
a8c28920 | 270 | |
6c83150b A |
271 | XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go here. |
272 | Most of these are built within the directory F<utils>. | |
a8c28920 | 273 | |
6c83150b A |
274 | [ List utility changes as a =head2 entry for each utility and =item |
275 | entries for each change | |
276 | Use L<XXX> with program names to get proper documentation linking. ] | |
a8c28920 | 277 | |
6c83150b | 278 | =head2 L<XXX> |
a8c28920 | 279 | |
6c83150b | 280 | =over 4 |
f83db990 SH |
281 | |
282 | =item * | |
283 | ||
6c83150b | 284 | XXX |
f83db990 | 285 | |
b6af474d | 286 | =back |
f83db990 | 287 | |
6c83150b | 288 | =head1 Configuration and Compilation |
f83db990 | 289 | |
6c83150b A |
290 | XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools |
291 | go here. Any other changes to the Perl build process should be listed here. | |
292 | However, any platform-specific changes should be listed in the | |
293 | L</Platform Support> section, instead. | |
f83db990 | 294 | |
6c83150b | 295 | [ List changes as a =item entry ]. |
b26bd9b0 PM |
296 | |
297 | =over 4 | |
eabfc7bc | 298 | |
0dafb1ce | 299 | =item * |
eabfc7bc | 300 | |
94153ec7 TC |
301 | F<make_ext.pl> is no longer inappropriately silent. This was caused |
302 | by an operator precedence error introduced in 5.23.4. | |
5ea25977 | 303 | |
b26bd9b0 | 304 | =back |
5ea25977 | 305 | |
6c83150b A |
306 | =head1 Testing |
307 | ||
308 | XXX Any significant changes to the testing of a freshly built perl should be | |
309 | listed here. Changes which create B<new> files in F<t/> go here as do any | |
310 | large changes to the testing harness (e.g. when parallel testing was added). | |
311 | Changes to existing files in F<t/> aren't worth summarizing, although the bugs | |
312 | that they represent may be covered elsewhere. | |
313 | ||
314 | [ List each test improvement as a =item entry ] | |
a43707ab | 315 | |
b26bd9b0 | 316 | =over 4 |
5ea25977 MH |
317 | |
318 | =item * | |
319 | ||
6c83150b | 320 | XXX |
f282dc56 | 321 | |
b26bd9b0 | 322 | =back |
f282dc56 | 323 | |
6c83150b A |
324 | =head1 Platform Support |
325 | ||
326 | XXX Any changes to platform support should be listed in the sections below. | |
327 | ||
328 | [ Within the sections, list each platform as a =item entry with specific | |
329 | changes as paragraphs below it. ] | |
330 | ||
c2f91764 JH |
331 | =over 4 |
332 | ||
333 | =item All Solaris now builds shared libperl | |
334 | ||
335 | Solaris and variants like OpenIndiana now always build with the shared | |
336 | Perl library (Configure -Duseshrplib). This was required for the | |
337 | OpenIndiana builds, but this has also been the setting for Oracle/Sun | |
338 | Perl builds for several years. | |
339 | ||
340 | =back | |
341 | ||
6c83150b A |
342 | =head2 New Platforms |
343 | ||
344 | XXX List any platforms that this version of perl compiles on, that previous | |
345 | versions did not. These will either be enabled by new files in the F<hints/> | |
346 | directories, or new subdirectories and F<README> files at the top level of the | |
347 | source tree. | |
b26bd9b0 | 348 | |
b6af474d | 349 | =over 4 |
cf73ceda | 350 | |
c2f91764 | 351 | =item OpenIndiana |
f282dc56 | 352 | |
c2f91764 JH |
353 | OpenIndiana (continuation of OpenSolaris) builds were not working due |
354 | to problems with the Perl shared library. This should be working now. | |
355 | L<[perl #126958]|https://rt.perl.org/Ticket/Display.html?id=126958> | |
cf73ceda | 356 | |
6c83150b | 357 | =back |
0b8e4842 | 358 | |
6c83150b | 359 | =head2 Discontinued Platforms |
4b951711 | 360 | |
6c83150b | 361 | XXX List any platforms that this version of perl no longer compiles on. |
f83db990 | 362 | |
6c83150b | 363 | =over 4 |
f83db990 | 364 | |
6c83150b | 365 | =item XXX-some-platform |
f83db990 | 366 | |
6c83150b | 367 | XXX |
f83db990 SH |
368 | |
369 | =back | |
370 | ||
83144be3 | 371 | =head2 Platform-Specific Notes |
0517ed38 | 372 | |
6c83150b A |
373 | XXX List any changes for specific platforms. This could include configuration |
374 | and compilation changes or changes in portability/compatibility. However, | |
375 | changes within modules for platforms should generally be listed in the | |
376 | L</Modules and Pragmata> section. | |
6937817d | 377 | |
6c83150b | 378 | =over 4 |
0517ed38 | 379 | |
c0236afe KW |
380 | =item EBCDIC platforms, such as z/OS |
381 | ||
382 | UTF-EBCDIC is like UTF-8, but for EBCDIC platforms. It now has been | |
383 | extended so that it can represent code points up to 2 ** 64 - 1 on | |
384 | platforms with 64-bit words. This brings it into parity with UTF-8. | |
385 | This enhancement requires an incompatible change to the representation | |
386 | of code points in the range 2 ** 30 to 2 ** 31 -1 (the latter was the | |
387 | previous maximum representable code point). This means that a file that | |
388 | contains one of these code points, written out with previous versions of | |
389 | perl cannot be read in, without conversion, by a perl containing this | |
390 | change. We do not believe any such files are in existence, but if you | |
391 | do have one, submit a ticket at L<mailto:perlbug@perl.org>, and we will | |
392 | write a conversion script for you. | |
0517ed38 | 393 | |
b3d7d865 TC |
394 | =item OS X/Darwin |
395 | ||
396 | Builds with both -DDEBUGGING and threading enabled would fail with a | |
397 | "panic: free from wrong pool" error when built or tested from Terminal | |
398 | on OS X. This was caused by perl's internal management of the | |
399 | environment conflicting with an atfork handler using the libc | |
400 | setenv() function to update the environment. | |
401 | ||
402 | Perl now uses setenv()/unsetenv() to update the environment on OS X. | |
403 | [perl #126240] | |
404 | ||
48fbd301 JH |
405 | =item ppc64el floating point |
406 | ||
407 | The floating point format of ppc64el (Debian naming for little-endian | |
408 | PowerPC) is now detected correctly. | |
409 | ||
b26bd9b0 | 410 | =back |
f4240379 | 411 | |
b26bd9b0 | 412 | =head1 Internal Changes |
f4240379 | 413 | |
6c83150b A |
414 | XXX Changes which affect the interface available to C<XS> code go here. Other |
415 | significant internal changes for future core maintainers should be noted as | |
416 | well. | |
417 | ||
418 | [ List each change as a =item entry ] | |
419 | ||
b6af474d | 420 | =over 4 |
d89ea360 | 421 | |
0efe3111 DM |
422 | =item * |
423 | ||
bb40cb3a JH |
424 | Perl core code and the threads extension have been annotated so that |
425 | if Perl is configured to use threads, during compile-time clang (3.6 | |
426 | or later) will warn about suspicious uses of mutexes. | |
427 | See L<http://clang.llvm.org/docs/ThreadSafetyAnalysis.html> for more | |
428 | information. | |
0efe3111 | 429 | |
d89ea360 DD |
430 | =back |
431 | ||
b26bd9b0 | 432 | =head1 Selected Bug Fixes |
eabfc7bc | 433 | |
6c83150b A |
434 | XXX Important bug fixes in the core language are summarized here. Bug fixes in |
435 | files in F<ext/> and F<lib/> are best summarized in L</Modules and Pragmata>. | |
8ca3d7d7 | 436 | |
6c83150b | 437 | [ List each fix as a =item entry ] |
8ca3d7d7 | 438 | |
6c83150b | 439 | =over 4 |
0efe3111 | 440 | |
a82f4918 KW |
441 | =item * |
442 | ||
3bca37e2 DM |
443 | C</...\G/> no longer crashes on utf8 strings. When C<\G> is a fixed number |
444 | of characters from the start of the regex, perl needs to count back that | |
445 | many characters from the current C<pos()> position and start matching from | |
446 | there. However, it was counting back bytes rather than characters, which | |
447 | could lead to panics on utf8 strings. | |
a82f4918 | 448 | |
acedda6e TC |
449 | =item * |
450 | ||
451 | In some cases operators that return integers would return negative | |
452 | integers as large positive integers. [perl #126635] | |
453 | ||
079bf24b TC |
454 | =item * |
455 | ||
456 | The pipe() operator would assert for DEBUGGING builds instead of | |
457 | producing the correct error message. The condition asserted on is | |
458 | detected and reported on correctly without the assertions, so the | |
459 | assertions were removed. [perl #126480] | |
460 | ||
d43e55a3 TC |
461 | =item * |
462 | ||
463 | In some cases, failing to parse a here-doc would attempt to use freed | |
464 | memory. This was caused by a pointer not being restored correctly. | |
465 | [perl #126443] | |
466 | ||
e685831a TC |
467 | =item * |
468 | ||
469 | C<< @x = sort { *a = 0; $a <=> $b } 0 .. 1 >> no longer frees the GP | |
470 | for *a before restoring its SV slot. [perl #124097] | |
471 | ||
6c83150b | 472 | =back |
f83db990 | 473 | |
6c83150b | 474 | =head1 Known Problems |
f83db990 | 475 | |
6c83150b A |
476 | XXX Descriptions of platform agnostic bugs we know we can't fix go here. Any |
477 | tests that had to be C<TODO>ed for the release would be noted here. Unfixed | |
478 | platform specific bugs also go here. | |
f83db990 | 479 | |
6c83150b | 480 | [ List each fix as a =item entry ] |
133117f5 | 481 | |
6c83150b | 482 | =over 4 |
133117f5 | 483 | |
83144be3 | 484 | =item * |
9a7bb2f7 | 485 | |
6c83150b | 486 | XXX |
5a74572e | 487 | |
6c83150b | 488 | =back |
5a74572e | 489 | |
6c83150b | 490 | =head1 Errata From Previous Releases |
5a74572e | 491 | |
6c83150b | 492 | =over 4 |
5a74572e | 493 | |
6c83150b | 494 | =item * |
04924b39 | 495 | |
6c83150b A |
496 | XXX Add anything here that we forgot to add, or were mistaken about, in |
497 | the perldelta of a previous release. | |
e1ad135d | 498 | |
6c83150b | 499 | =back |
e1ad135d | 500 | |
6c83150b | 501 | =head1 Obituary |
e1ad135d | 502 | |
6c83150b A |
503 | XXX If any significant core contributor has died, we've added a short obituary |
504 | here. | |
e1ad135d | 505 | |
6c83150b | 506 | =head1 Acknowledgements |
e1ad135d | 507 | |
6c83150b | 508 | XXX Generate this with: |
e1ad135d | 509 | |
6c83150b | 510 | perl Porting/acknowledgements.pl v5.23.5..HEAD |
f5b73711 | 511 | |
44691e6f AB |
512 | =head1 Reporting Bugs |
513 | ||
e08634c5 SH |
514 | If you find what you think is a bug, you might check the articles recently |
515 | posted to the comp.lang.perl.misc newsgroup and the perl bug database at | |
fc4c3cec RS |
516 | L<https://rt.perl.org/> . There may also be information at |
517 | L<http://www.perl.org/> , the Perl Home Page. | |
44691e6f | 518 | |
e08634c5 SH |
519 | If you believe you have an unreported bug, please run the L<perlbug> program |
520 | included with your release. Be sure to trim your bug down to a tiny but | |
521 | sufficient test case. Your bug report, along with the output of C<perl -V>, | |
522 | will be sent off to perlbug@perl.org to be analysed by the Perl porting team. | |
44691e6f AB |
523 | |
524 | If the bug you are reporting has security implications, which make it | |
e08634c5 SH |
525 | inappropriate to send to a publicly archived mailing list, then please send it |
526 | to perl5-security-report@perl.org. This points to a closed subscription | |
527 | unarchived mailing list, which includes all the core committers, who will be | |
528 | able to help assess the impact of issues, figure out a resolution, and help | |
f9001595 | 529 | co-ordinate the release of patches to mitigate or fix the problem across all |
e08634c5 SH |
530 | platforms on which Perl is supported. Please only use this address for |
531 | security issues in the Perl core, not for modules independently distributed on | |
532 | CPAN. | |
44691e6f AB |
533 | |
534 | =head1 SEE ALSO | |
535 | ||
e08634c5 SH |
536 | The F<Changes> file for an explanation of how to view exhaustive details on |
537 | what changed. | |
44691e6f AB |
538 | |
539 | The F<INSTALL> file for how to build Perl. | |
540 | ||
541 | The F<README> file for general stuff. | |
542 | ||
543 | The F<Artistic> and F<Copying> files for copyright information. | |
544 | ||
545 | =cut |