Commit | Line | Data |
---|---|---|
3a5c9134 CBW |
1 | =encoding utf8 |
2 | ||
3 | =head1 NAME | |
4 | ||
9f7a72d0 Z |
5 | [ this is a template for a new perldelta file. Any text flagged as |
6 | XXX needs to be processed before release. ] | |
3a5c9134 | 7 | |
9f7a72d0 | 8 | perldelta - what is new for perl v5.13.9 |
15e6cdd9 | 9 | |
9f7a72d0 | 10 | =head1 DESCRIPTION |
f6166f76 | 11 | |
9f7a72d0 Z |
12 | This document describes differences between the 5.13.8 release and |
13 | the 5.13.9 release. | |
0d157ee2 | 14 | |
9f7a72d0 Z |
15 | If you are upgrading from an earlier release such as 5.13.7, first read |
16 | L<perl5138delta>, which describes differences between 5.13.7 and | |
17 | 5.13.8. | |
0d157ee2 | 18 | |
9f7a72d0 | 19 | =head1 Notice |
0d157ee2 | 20 | |
9f7a72d0 | 21 | XXX Any important notices here |
0d157ee2 | 22 | |
9f7a72d0 | 23 | =head1 Core Enhancements |
0d157ee2 | 24 | |
9f7a72d0 Z |
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. | |
0d157ee2 | 28 | |
6d4f9cf2 KW |
29 | With this release, Perl is adopting a model that any unsigned value can |
30 | be encoded internally as utf8 without warnings -- not just the ones that | |
31 | are legal in Unicode. | |
32 | However, unless UTF8 warnings have been | |
33 | explicitly lexically turned off, outputting or performing a | |
34 | Unicode-defined operation (such as upper-casing) on such a code point | |
35 | will generate a warning. Attempting to input these using strict rules | |
36 | (such as with the C<:encoding('UTF-8')> layer) will continue to fail. | |
37 | Prior to this release the handling was very inconsistent, and incorrect | |
38 | in places. Also, the Unicode non-characters, some of which previously were | |
39 | erroneously considered illegal in places by Perl, contrary to the Unicode | |
40 | standard, are now always legal internally. But inputting or outputting | |
41 | them will work the same as for the non-legal Unicode code points, as the | |
42 | Unicode standard says they are illegal for "open interchange". | |
43 | ||
9f7a72d0 | 44 | [ List each enhancement as a =head2 entry ] |
0d157ee2 | 45 | |
9f7a72d0 | 46 | =head1 Security |
0d157ee2 | 47 | |
9f7a72d0 Z |
48 | XXX Any security-related notices go here. In particular, any security |
49 | vulnerabilities closed should be noted here rather than in the | |
50 | L</Selected Bug Fixes> section. | |
bd8e866d | 51 | |
9f7a72d0 | 52 | [ List each security issue as a =head2 entry ] |
bd8e866d | 53 | |
3a5c9134 CBW |
54 | =head1 Incompatible Changes |
55 | ||
9f7a72d0 | 56 | XXX For a release on a stable branch, this section aspires to be: |
3a5c9134 | 57 | |
9f7a72d0 Z |
58 | There are no changes intentionally incompatible with 5.XXX.XXX. If any |
59 | exist, they are bugs and reports are welcome. | |
3a5c9134 | 60 | |
9f7a72d0 | 61 | [ List each incompatible change as a =head2 entry ] |
d66e82e8 | 62 | |
3a5c9134 CBW |
63 | =head1 Deprecations |
64 | ||
9f7a72d0 Z |
65 | XXX Any deprecated features, syntax, modules etc. should be listed here. |
66 | In particular, deprecated modules should be listed here even if they are | |
67 | listed as an updated module in the L</Modules and Pragmata> section. | |
5609d5f9 | 68 | |
9f7a72d0 | 69 | [ List each deprecation as a =head2 entry ] |
5609d5f9 | 70 | |
9f7a72d0 | 71 | =head1 Performance Enhancements |
5609d5f9 | 72 | |
9f7a72d0 Z |
73 | XXX Changes which enhance performance without changing behaviour go here. There |
74 | may well be none in a stable release. | |
5609d5f9 | 75 | |
9f7a72d0 | 76 | [ List each enhancement as a =item entry ] |
3a5c9134 CBW |
77 | |
78 | =over 4 | |
79 | ||
80 | =item * | |
81 | ||
9f7a72d0 | 82 | XXX |
e1165778 | 83 | |
9f7a72d0 | 84 | =back |
121e1895 | 85 | |
9f7a72d0 | 86 | =head1 Modules and Pragmata |
2638c0ff | 87 | |
9f7a72d0 Z |
88 | XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/> |
89 | go here. If Module::CoreList is updated, generate an initial draft of the | |
90 | following sections using F<Porting/corelist-perldelta.pl>, which prints stub | |
91 | entries to STDOUT. Results can be pasted in place of the '=head2' entries | |
92 | below. A paragraph summary for important changes should then be added by hand. | |
93 | In an ideal world, dual-life modules would have a F<Changes> file that could be | |
94 | cribbed. | |
2638c0ff | 95 | |
9f7a72d0 | 96 | [ Within each section, list entries as a =item entry ] |
17096837 | 97 | |
9f7a72d0 | 98 | =head2 New Modules and Pragmata |
2638c0ff | 99 | |
9f7a72d0 | 100 | =over 4 |
17096837 | 101 | |
e1165778 Z |
102 | =item * |
103 | ||
e8a07a12 DG |
104 | L<CPAN::Meta::YAML> 0.002 has been added as a dual-life module. It supports a |
105 | subset of YAML sufficient for reading and writing META.yml and MYMETA.yml files | |
106 | included with CPAN distributions or generated by the module installation | |
107 | toolchain. It should not be used for any other general YAML parsing or | |
108 | generation task. | |
17096837 | 109 | |
935c8d19 DG |
110 | =item * |
111 | ||
a3ab329f DG |
112 | L<HTTP::Tiny> 0.008 has been added as a dual-life module. It is a very |
113 | small, simple HTTP/1.1 client designed for simple GET requests and file | |
114 | mirroring. It has has been added to enable CPAN.pm and CPANPLUS to | |
115 | "bootstrap" HTTP access to CPAN using pure Perl without relying on external | |
116 | binaries like F<curl> or F<wget>. | |
117 | ||
118 | =item * | |
119 | ||
6cf6332a | 120 | L<Module::Metadata> 1.000003 has been added as a dual-life module. It gathers |
e8b333e6 DG |
121 | package and POD information from Perl module files. It is a standalone module |
122 | based on Module::Build::ModuleInfo for use by other module installation | |
123 | toolchain components. Module::Build::ModuleInfo has been deprecated in | |
124 | favor of this module instead. | |
125 | ||
126 | =item * | |
127 | ||
935c8d19 DG |
128 | L<Perl::OSType> 1.002 has been added as a dual-life module. It maps Perl |
129 | operating system names (e.g. 'dragonfly' or 'MSWin32') to more generic types | |
130 | with standardized names (e.g. "Unix" or "Windows"). It has been refactored | |
131 | out of Module::Build and ExtUtils::CBuilder and consolidates such mappings into | |
132 | a single location for easier maintenance. | |
133 | ||
9f7a72d0 | 134 | =back |
e1165778 | 135 | |
9f7a72d0 | 136 | =head2 Updated Modules and Pragmata |
f295f417 | 137 | |
9f7a72d0 | 138 | =over 4 |
17096837 | 139 | |
f295f417 FC |
140 | =item * |
141 | ||
6447e912 CBW |
142 | C<Archive::Extract> has been upgraded from version 0.46 to 0.48 |
143 | ||
144 | =item * | |
145 | ||
89ae55b4 CBW |
146 | C<Archive::Tar> has been upgraded from version 1.74 to 1.76 |
147 | ||
148 | =item * | |
149 | ||
2a1594f6 CBW |
150 | C<CGI> has been upgraded from version 3.50 to 3.51 |
151 | ||
152 | =item * | |
5ebf8416 CBW |
153 | |
154 | C<Compress::Raw::Bzip2> has been upgraded from version 2.031 to 2.033 | |
155 | ||
156 | =item * | |
e2f1db54 CBW |
157 | |
158 | C<Compress::Raw::Zlib> has been upgraded from version 2.030 to 2.033 | |
159 | ||
160 | =item * | |
2a1594f6 | 161 | |
f1aaabf8 CBW |
162 | C<CPANPLUS> has been upgraded from version 0.9010 to 0.9011 |
163 | ||
164 | =item * | |
165 | ||
ae0f8eee CBW |
166 | C<CPANPLUS::Dist::Build> has been upgraded from version 0.50 to 0.52 |
167 | ||
168 | =item * | |
169 | ||
170 | C<DB_File> has been upgraded from version 1.820 to 1.821 | |
deb99cce CBW |
171 | |
172 | =item * | |
173 | ||
6d4f9cf2 KW |
174 | C<Encode> has been upgraded from version 2.40 to 2.42. |
175 | Now, all 66 Unicode non-characters are treated the same way U+FFFF has | |
176 | always been treated; if it was disallowed, all 66 are disallowed; if it | |
177 | warned, all 66 warn. | |
50afc8f8 CBW |
178 | |
179 | =item * | |
180 | ||
ac066c2a | 181 | C<File::Fetch> has been upgraded from version 0.28 to 0.30 |
f37ee46a CBW |
182 | |
183 | =item * | |
184 | ||
cd0c0e65 CBW |
185 | C<IO::Compress> has been upgraded from version 2.030 to 2.033 |
186 | ||
187 | =item * | |
188 | ||
f37ee46a CBW |
189 | C<IPC::Cmd> has been upgraded from version 0.66 to 0.68 |
190 | ||
ac066c2a CBW |
191 | =item * |
192 | ||
b5ce1198 CBW |
193 | C<Log::Message> has been upgraded from version 0.02 to 0.04 |
194 | ||
195 | =item * | |
196 | ||
ae0f8eee | 197 | C<Module::Load::Conditional> has been upgraded from version 0.38 to 0.40 |
4fc94532 CBW |
198 | |
199 | =item * | |
200 | ||
ae0f8eee | 201 | C<Object::Accessor> has been upgraded from version 0.36 to 0.38 |
0019012a CBW |
202 | |
203 | =item * | |
204 | ||
ae0f8eee | 205 | C<Params::Check> has been upgraded from version 0.26 to 0.28 |
8cb3aa53 CBW |
206 | |
207 | =item * | |
208 | ||
9c88a88b CBW |
209 | C<Pod::LaTeX> has been upgraded from version 0.58 to 0.59 |
210 | ||
211 | =item * | |
212 | ||
6df88f97 | 213 | C<Term::UI> has been upgraded from version 0.20 to 0.24 |
8e1e0801 CBW |
214 | |
215 | =item * | |
216 | ||
f5d41534 CBW |
217 | C<threads> has been upgraded from version 1.81_03 to 1.82 |
218 | ||
219 | =item * | |
220 | ||
221 | C<threads::shared> has been upgraded from version 1.35 to 1.36 | |
222 | ||
223 | =item * | |
224 | ||
23046b7e | 225 | C<Time::Local> has been upgraded from version 1.1901_01 to 1.2000. |
17096837 | 226 | |
788ba0f4 CBW |
227 | =item * |
228 | ||
0532e1ae CBW |
229 | C<Unicode::Collate> has been upgraded from version 0.68 to 0.70 |
230 | ||
231 | This also sees the switch from using the pure-perl version of this | |
232 | module to the XS version. | |
233 | ||
234 | =item * | |
235 | ||
788ba0f4 CBW |
236 | C<Unicode::Normalize> has been upgraded from version 1.07 to 1.10 |
237 | ||
9f7a72d0 | 238 | =back |
e1165778 | 239 | |
9f7a72d0 | 240 | =head2 Removed Modules and Pragmata |
b373eab8 | 241 | |
9f7a72d0 | 242 | =over 4 |
b373eab8 FC |
243 | |
244 | =item * | |
245 | ||
9f7a72d0 | 246 | XXX |
b6ae81ab | 247 | |
9f7a72d0 | 248 | =back |
ca88a729 | 249 | |
9f7a72d0 | 250 | =head1 Documentation |
17096837 | 251 | |
9f7a72d0 Z |
252 | XXX Changes to files in F<pod/> go here. Consider grouping entries by |
253 | file and be sure to link to the appropriate page, e.g. L<perlfunc>. | |
b6ae81ab | 254 | |
9f7a72d0 | 255 | =head2 New Documentation |
e1165778 | 256 | |
9f7a72d0 | 257 | XXX Changes which create B<new> files in F<pod/> go here. |
17096837 | 258 | |
9f7a72d0 | 259 | =head3 L<XXX> |
e1165778 | 260 | |
9f7a72d0 | 261 | XXX Description of the purpose of the new file here |
e1165778 | 262 | |
9f7a72d0 | 263 | =head2 Changes to Existing Documentation |
17096837 | 264 | |
9f7a72d0 Z |
265 | XXX Changes which significantly change existing files in F<pod/> go here. |
266 | However, any changes to F<pod/perldiag.pod> should go in the L</Diagnostics> | |
267 | section. | |
e1165778 | 268 | |
9f7a72d0 | 269 | =head3 L<XXX> |
d4238815 | 270 | |
9f7a72d0 | 271 | =over 4 |
17096837 | 272 | |
d4238815 FC |
273 | =item * |
274 | ||
9f7a72d0 | 275 | XXX Description of the change here |
e1165778 | 276 | |
9f7a72d0 | 277 | =back |
17096837 | 278 | |
9f7a72d0 | 279 | =head1 Diagnostics |
17096837 | 280 | |
9f7a72d0 Z |
281 | The following additions or changes have been made to diagnostic output, |
282 | including warnings and fatal error messages. For the complete list of | |
283 | diagnostic messages, see L<perldiag>. | |
e1165778 | 284 | |
9f7a72d0 Z |
285 | XXX New or changed warnings emitted by the core's C<C> code go here. Also |
286 | include any changes in L<perldiag> that reconcile it to the C<C> code. | |
68adb2b0 | 287 | |
9f7a72d0 | 288 | [ Within each section, list entries as a =item entry ] |
17096837 | 289 | |
9f7a72d0 | 290 | =head2 New Diagnostics |
3a5c9134 | 291 | |
9f7a72d0 | 292 | XXX Newly added diagnostic messages go here |
17096837 | 293 | |
9f7a72d0 | 294 | =over 4 |
17096837 | 295 | |
c2e0289e FC |
296 | =item * |
297 | ||
9f7a72d0 | 298 | XXX |
17096837 | 299 | |
9f7a72d0 | 300 | =back |
e6f1cc4d | 301 | |
9f7a72d0 | 302 | =head2 Changes to Existing Diagnostics |
e1165778 | 303 | |
9f7a72d0 | 304 | XXX Changes (i.e. rewording) of diagnostic messages go here |
17096837 | 305 | |
9f7a72d0 | 306 | =over 4 |
17096837 | 307 | |
e1165778 Z |
308 | =item * |
309 | ||
9f7a72d0 | 310 | XXX |
17096837 | 311 | |
3a5c9134 CBW |
312 | =back |
313 | ||
9f7a72d0 | 314 | =head1 Utility Changes |
e1165778 | 315 | |
9f7a72d0 Z |
316 | XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go |
317 | here. Most of these are built within the directories F<utils> and F<x2p>. | |
e1165778 | 318 | |
9f7a72d0 Z |
319 | [ List utility changes as a =head3 entry for each utility and =item |
320 | entries for each change | |
321 | Use L<XXX> with program names to get proper documentation linking. ] | |
e1165778 | 322 | |
9f7a72d0 | 323 | =head3 L<XXX> |
e1165778 | 324 | |
9f7a72d0 | 325 | =over 4 |
e1165778 Z |
326 | |
327 | =item * | |
328 | ||
9f7a72d0 | 329 | XXX |
e1165778 | 330 | |
9f7a72d0 | 331 | =back |
e1165778 | 332 | |
9f7a72d0 | 333 | =head1 Configuration and Compilation |
e1165778 | 334 | |
9f7a72d0 Z |
335 | XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools |
336 | go here. Any other changes to the Perl build process should be listed here. | |
337 | However, any platform-specific changes should be listed in the | |
338 | L</Platform Support> section, instead. | |
e1165778 | 339 | |
9f7a72d0 | 340 | [ List changes as a =item entry ]. |
e1165778 | 341 | |
9f7a72d0 | 342 | =over 4 |
3a5c9134 CBW |
343 | |
344 | =item * | |
345 | ||
9f7a72d0 | 346 | XXX |
3a5c9134 CBW |
347 | |
348 | =back | |
349 | ||
9f7a72d0 | 350 | =head1 Testing |
3a5c9134 | 351 | |
9f7a72d0 Z |
352 | XXX Any significant changes to the testing of a freshly built perl should be |
353 | listed here. Changes which create B<new> files in F<t/> go here as do any | |
354 | large changes to the testing harness (e.g. when parallel testing was added). | |
355 | Changes to existing files in F<t/> aren't worth summarising, although the bugs | |
356 | that they represent may be covered elsewhere. | |
3a5c9134 | 357 | |
9f7a72d0 | 358 | [ List each test improvement as a =item entry ] |
3a5c9134 | 359 | |
3a5c9134 CBW |
360 | =over 4 |
361 | ||
362 | =item * | |
363 | ||
9f7a72d0 | 364 | XXX |
3a5c9134 CBW |
365 | |
366 | =back | |
367 | ||
9f7a72d0 | 368 | =head1 Platform Support |
3a5c9134 | 369 | |
9f7a72d0 | 370 | XXX Any changes to platform support should be listed in the sections below. |
3a5c9134 | 371 | |
9f7a72d0 Z |
372 | [ Within the sections, list each platform as a =item entry with specific |
373 | changes as paragraphs below it. ] | |
3a5c9134 | 374 | |
9f7a72d0 | 375 | =head2 New Platforms |
3a5c9134 | 376 | |
9f7a72d0 Z |
377 | XXX List any platforms that this version of perl compiles on, that previous |
378 | versions did not. These will either be enabled by new files in the F<hints/> | |
379 | directories, or new subdirectories and F<README> files at the top level of the | |
380 | source tree. | |
3a5c9134 | 381 | |
3a5c9134 CBW |
382 | =over 4 |
383 | ||
9f7a72d0 | 384 | =item XXX-some-platform |
3a5c9134 | 385 | |
9f7a72d0 | 386 | XXX |
51bed910 | 387 | |
3a5c9134 CBW |
388 | =back |
389 | ||
9f7a72d0 Z |
390 | =head2 Discontinued Platforms |
391 | ||
392 | XXX List any platforms that this version of perl no longer compiles on. | |
3a5c9134 | 393 | |
3a5c9134 CBW |
394 | =over 4 |
395 | ||
9f7a72d0 | 396 | =item XXX-some-platform |
3a5c9134 | 397 | |
9f7a72d0 | 398 | XXX |
3a5c9134 CBW |
399 | |
400 | =back | |
401 | ||
3a5c9134 CBW |
402 | =head2 Platform-Specific Notes |
403 | ||
9f7a72d0 Z |
404 | XXX List any changes for specific platforms. This could include configuration |
405 | and compilation changes or changes in portability/compatibility. However, | |
406 | changes within modules for platforms should generally be listed in the | |
407 | L</Modules and Pragmata> section. | |
3a5c9134 | 408 | |
9f7a72d0 | 409 | =over 4 |
3a5c9134 | 410 | |
9f7a72d0 | 411 | =item XXX-some-platform |
fb3a2d89 | 412 | |
9f7a72d0 | 413 | XXX |
fb3a2d89 | 414 | |
3a5c9134 CBW |
415 | =back |
416 | ||
417 | =head1 Internal Changes | |
418 | ||
9f7a72d0 Z |
419 | XXX Changes which affect the interface available to C<XS> code go here. |
420 | Other significant internal changes for future core maintainers should | |
421 | be noted as well. | |
3a5c9134 | 422 | |
9f7a72d0 | 423 | [ List each test improvement as a =item entry ] |
3a5c9134 | 424 | |
9f7a72d0 | 425 | =over 4 |
3a5c9134 | 426 | |
c61b6d0f FC |
427 | =item * |
428 | ||
0a0e3cc5 NC |
429 | The opcode bodies for C<chop> and C<chomp> and for C<schop> and C<schomp> have |
430 | been merged. The implementation functions C<Perl_do_chop()> and | |
431 | C<Perl_do_chomp()>, never part of the public API, have been merged and moved to | |
432 | a static function in F<pp.c>. This shrinks the perl binary slightly, and should | |
433 | not affect any code outside the core (unless it is relying on the order of side | |
434 | effects when C<chomp> is passed a I<list> of values). | |
c61b6d0f | 435 | |
6d4f9cf2 KW |
436 | =item * |
437 | ||
438 | Some of the flags parameters to the uvuni_to_utf8_flags() and | |
439 | utf8n_to_uvuni() have changed. This is a result of Perl now allowing | |
440 | internal storage and manipulation of code points that are problematic | |
441 | in some situations. Hence, the default actions for these functions has | |
442 | been complemented to allow these code points. The new flags are | |
443 | documented in L<perlapi>. Code that requires the problematic code | |
444 | points to be rejected needs to change to use these flags. Some flag | |
445 | names are retained for backward source compatibility, though they do | |
446 | nothing, as they are now the default. However the flags | |
447 | C<UNICODE_ALLOW_FDD0>, C<UNICODE_ALLOW_FFFF>, C<UNICODE_ILLEGAL>, and | |
448 | C<UNICODE_IS_ILLEGAL> have been removed, as they stem from a | |
449 | fundamentally broken model of how the Unicode non-character code points | |
450 | should be handled, which is now described in | |
451 | L<perlunicode/Non-character code points>. See also L</Selected Bug Fixes>. | |
452 | ||
a62b1201 KW |
453 | =item * |
454 | ||
455 | Certain shared flags in the C<pmop.op_pmflags> and C<regexp.extflags> | |
456 | structures have been removed. These are: C<Rxf_Pmf_LOCALE>, | |
457 | C<Rxf_Pmf_UNICODE>, and C<PMf_LOCALE>. Instead there are encodes and | |
458 | three static in-line functions for accessing the information: | |
459 | C<get_regex_charset()>, C<set_regex_charset()>, and C<get_regex_charset_name()>, | |
460 | which are defined in the places where the orginal flags were. | |
461 | ||
3a5c9134 CBW |
462 | =back |
463 | ||
464 | =head1 Selected Bug Fixes | |
465 | ||
9f7a72d0 Z |
466 | XXX Important bug fixes in the core language are summarised here. |
467 | Bug fixes in files in F<ext/> and F<lib/> are best summarised in | |
468 | L</Modules and Pragmata>. | |
b373eab8 | 469 | |
9f7a72d0 | 470 | [ List each fix as a =item entry ] |
b373eab8 | 471 | |
9f7a72d0 | 472 | =over 4 |
4c9d53d5 | 473 | |
0c7420e7 FC |
474 | =item * |
475 | ||
6d4f9cf2 KW |
476 | The handling of Unicode non-characters has changed. |
477 | Previously they were mostly considered illegal, except that only one of | |
478 | the 66 of them was known about in places. The Unicode standard | |
479 | considers them legal, but forbids the "open interchange" of them. | |
480 | This is part of the change to allow the internal use of any code point | |
481 | (see L</Core Enhancements>). Together, these changes resolve | |
482 | L<# 38722|https://rt.perl.org/rt3/Ticket/Display.html?id=38722>, | |
483 | L<# 51918|http://rt.perl.org/rt3/Ticket/Display.html?id=51918>, | |
484 | L<# 51936|http://rt.perl.org/rt3/Ticket/Display.html?id=51936>, | |
485 | L<# 63446|http://rt.perl.org/rt3/Ticket/Display.html?id=63446> | |
0c7420e7 | 486 | |
9f7a72d0 | 487 | =back |
460c4bfb | 488 | |
9f7a72d0 | 489 | =head1 Known Problems |
460c4bfb | 490 | |
9f7a72d0 Z |
491 | XXX Descriptions of platform agnostic bugs we know we can't fix go here. Any |
492 | tests that had to be C<TODO>ed for the release would be noted here, unless | |
493 | they were specific to a particular platform (see below). | |
26de4ac8 | 494 | |
9f7a72d0 Z |
495 | This is a list of some significant unfixed bugs, which are regressions |
496 | from either 5.XXX.XXX or 5.XXX.XXX. | |
26de4ac8 | 497 | |
9f7a72d0 | 498 | [ List each fix as a =item entry ] |
ab7fb400 | 499 | |
9f7a72d0 | 500 | =over 4 |
ab7fb400 | 501 | |
836d5805 Z |
502 | =item * |
503 | ||
9f7a72d0 | 504 | XXX |
836d5805 | 505 | |
3a5c9134 CBW |
506 | =back |
507 | ||
9f7a72d0 | 508 | =head1 Obituary |
3a5c9134 | 509 | |
9f7a72d0 Z |
510 | XXX If any significant core contributor has died, we've added a short obituary |
511 | here. | |
b0c3724f | 512 | |
9f7a72d0 | 513 | =head1 Acknowledgements |
b0c3724f | 514 | |
9f7a72d0 | 515 | XXX The list of people to thank goes here. |
3a5c9134 CBW |
516 | |
517 | =head1 Reporting Bugs | |
518 | ||
519 | If you find what you think is a bug, you might check the articles | |
520 | recently posted to the comp.lang.perl.misc newsgroup and the perl | |
521 | bug database at http://rt.perl.org/perlbug/ . There may also be | |
522 | information at http://www.perl.org/ , the Perl Home Page. | |
523 | ||
524 | If you believe you have an unreported bug, please run the L<perlbug> | |
525 | program included with your release. Be sure to trim your bug down | |
526 | to a tiny but sufficient test case. Your bug report, along with the | |
527 | output of C<perl -V>, will be sent off to perlbug@perl.org to be | |
528 | analysed by the Perl porting team. | |
529 | ||
530 | If the bug you are reporting has security implications, which make it | |
531 | inappropriate to send to a publicly archived mailing list, then please send | |
532 | it to perl5-security-report@perl.org. This points to a closed subscription | |
533 | unarchived mailing list, which includes all the core committers, who be able | |
534 | to help assess the impact of issues, figure out a resolution, and help | |
535 | co-ordinate the release of patches to mitigate or fix the problem across all | |
536 | platforms on which Perl is supported. Please only use this address for | |
537 | security issues in the Perl core, not for modules independently | |
538 | distributed on CPAN. | |
539 | ||
540 | =head1 SEE ALSO | |
541 | ||
542 | The F<Changes> file for an explanation of how to view exhaustive details | |
543 | on what changed. | |
544 | ||
545 | The F<INSTALL> file for how to build Perl. | |
546 | ||
547 | The F<README> file for general stuff. | |
548 | ||
549 | The F<Artistic> and F<Copying> files for copyright information. | |
550 | ||
551 | =cut |