This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Module::Build to CPAN version 0.37_04
[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.13.10
9
10 =head1 DESCRIPTION
11
12 This document describes differences between the 5.XXX.XXX release and
13 the 5.XXX.XXX release.
14
15 If you are upgrading from an earlier release such as 5.YYY.YYY, first read
16 L<perl5YYYdelta>, which describes differences between 5.ZZZ.ZZZ and
17 5.YYY.YYY.
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 Add C<\p{Titlecase}> as a synonym for C<\p{Title}>
32
33 This synonym is added for symmetry with the Unicode property names
34 C<\p{Uppercase}> and C<\p{Lowercase}>.
35
36 =head2 New regular expression modifier option C</aa>
37
38 Doubling the C</a> regular expression modifier increases its effect,
39 so that in case-insensitive matching, no ASCII character will match a
40 non-ASCII character.  For example, normally,
41
42     'k' =~ /\N{KELVIN SIGN}/
43
44 will match; it won't under C</aa>.  Note that like C</a>, C</aa>
45 in 5.14 will not actually be able to be used as a suffix at the end of a
46 regular expression.
47
48 =head1 Security
49
50 XXX Any security-related notices go here.  In particular, any security
51 vulnerabilities closed should be noted here rather than in the
52 L</Selected Bug Fixes> section.
53
54 [ List each security issue as a =head2 entry ]
55
56 =head1 Incompatible Changes
57
58 XXX For a release on a stable branch, this section aspires to be:
59
60     There are no changes intentionally incompatible with 5.XXX.XXX. If any
61     exist, they are bugs and reports are welcome.
62
63 [ List each incompatible change as a =head2 entry ]
64
65 =head2 Most C<\p{}> properties are now immune from case-insensitive matching
66
67 For most Unicode properties, it doesn't make sense to have them match
68 differently under C</i> case-insensitive matching than not.  And doing
69 so leads to unexpected results and potential security holes.  For
70 example
71
72  m/\p{ASCII_Hex_Digit}+/i
73
74 could previously match non-ASCII characters because of the Unicode
75 matching rules.  There were a number of bugs in this feature until an
76 earlier release in the 5.13 series.  Now this release reverts, and
77 removes the feature completely except for the few properties where
78 people have come to expect it, namely the ones where casing is an
79 integral part of their functionality, such as C<m/\p{Uppercase}/i> and
80 C<m/\p{Lowercase}/i>, both of which match the exact same code points,
81 namely those matched by C<m/\p{Cased}/i>.  Details are in
82 L<perlrecharclass/Unicode Properties>.
83
84 User-defined property handlers that need to match differently under
85 C</i> must change to read the new boolean parameter passed it which is
86 non-zero if case-insensitive matching is in effect; 0 if not.  See
87 L<perluniprops/User-Defined Character Properties>.
88
89 =head2 [perl #82996] Use the user's from address as return-path in perlbug
90
91 Many systems these days don't have a valid Internet domain name and
92 perlbug@perl.org does not accept email with a return-path that does
93 not resolve. Therefore pass the user's address to sendmail so it's
94 less likely to get stuck in a mail queue somewhere. (019cfd2)
95
96 =head2 regex: \p{} in pattern implies Unicode semantics
97
98 Now, a Unicode property match specified in the pattern will indicate
99 that the pattern is meant for matching according to Unicode rules
100 (e40e74f)
101
102 =head2 add GvCV_set() and GvGP_set() macros and change GvGP()
103
104 This allows a future commit to eliminate some backref magic between GV
105 and CVs, which will require complete control over assignment to the
106 gp_cv slot.
107
108 If you've been using GvGP() in lvalue context this change will break
109 your code, you should use GvGP_set() instead. (c43ae56)
110
111 =head2 _swash_inversion_hash is no longer exported as part of the API
112
113 This function shouldn't be called from XS code. (4c2e113)
114
115 =head2 Unreferenced objects in global destruction
116
117 The fix for [perl #36347], which made sure that destructors were called on
118 unreferenced objects, broke the tests for three CPAN modules, which
119 apparently rely on the bug.
120
121 To provide more time for fixing them (as this is such a minor bug), we
122 have reverted the fix until after perl 5.14.0.
123
124 This resolves [perl #82542] and other related tickets.
125
126 =head2 C<close> on shared pipes
127
128 The C<close> function no longer waits for the child process to exit if the
129 underlying file descriptor is still in use by another thread, to avoid
130 deadlocks. It returns true in such cases.
131
132 =head1 Deprecations
133
134 XXX Any deprecated features, syntax, modules etc. should be listed here.
135 In particular, deprecated modules should be listed here even if they are
136 listed as an updated module in the L</Modules and Pragmata> section.
137
138 [ List each deprecation as a =head2 entry ]
139
140 =head1 Performance Enhancements
141
142 XXX Changes which enhance performance without changing behaviour go here. There
143 may well be none in a stable release.
144
145 [ List each enhancement as a =item entry ]
146
147 =over 4
148
149 =item *
150
151 XXX
152
153 =back
154
155 =head1 Modules and Pragmata
156
157 XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/>
158 go here.  If Module::CoreList is updated, generate an initial draft of the
159 following sections using F<Porting/corelist-perldelta.pl>, which prints stub
160 entries to STDOUT.  Results can be pasted in place of the '=head2' entries
161 below.  A paragraph summary for important changes should then be added by hand.
162 In an ideal world, dual-life modules would have a F<Changes> file that could be
163 cribbed.
164
165 [ Within each section, list entries as a =item entry ]
166
167 =head2 New Modules and Pragmata
168
169 =over 4
170
171 =item *
172
173 C<CPAN::Meta> version 2.110440 has been added as a dual-life module. It
174 provides a standard library to read, interpret and write CPAN distribution
175 metadata files (e.g. META.json and META.yml) which describes a
176 distribution, its contents, and the requirements for building it and
177 installing it. The latest CPAN distribution metadata specification is
178 included as C<CPAN::Meta::Spec> and notes on changes in the specification
179 over time are given in C<CPAN::Meta::History>.
180
181 =item *
182
183 C<Version::Requirements> version 0.101020 has been added as a dual-life
184 module.  It provides a standard library to model and manipulates module
185 prerequisites and version constraints as defined in the L<CPAN::Meta::Spec>.
186
187 =back
188
189 =head2 Updated Modules and Pragmata
190
191 =over 4
192
193 =item *
194
195 C<B> has been upgraded from version 1.27 to 1.28.
196
197 =item *
198
199 C<Carp> has been upgraded from version 1.19 to 1.20.
200
201 [perl #82854] It now avoids using regular expressions that cause perl to
202 load its Unicode tables, in order to avoid the 'BEGIN not safe after
203 errors' error that will ensue if there has been a syntax error.
204
205 =item *
206
207 C<CGI> has been upgraded from version 3.51 to 3.52
208
209 =item *
210
211 C<CPAN> has been upgraded from version 1.94_64 to 1.94_65
212
213 Includes support for META.json and MYMETA.json.
214
215 =item *
216
217 C<CPANPLUS> has been upgraded from version 0.9011 to 0.9101
218
219 Includes support for META.json and MYMETA.json and a change to
220 using Digest::SHA for CPAN checksums.
221
222 =item *
223
224 C<diagnostics> has been upgraded from version 1.21 to 1.22.
225
226 It now renders pod links slightly better, and has been taught to find
227 descriptions for messages that share their descriptions with other
228 messages.
229
230 =item *
231
232 C<IO::Select> has been upgraded from version 1.17 to 1.18.
233
234 It now allows IO::Handle objects (and objects in derived classes) to be
235 removed from an IO::Select set even if the underlying file descriptor is
236 closed or invalid.
237
238 =item *
239
240 C<IPC::Cmd> has been upgraded from version 0.68 to 0.70
241
242 =item *
243
244 C<HTTP::Tiny> has been upgraded from version 0.009 to 0.010
245
246 =item *
247
248 C<Math::BigInt> has been upgraded from version 1.99_04 to 1.991.
249
250 =item *
251
252 C<Module::Build> has been upgraded from version 0.3607 to 0.37_04.
253
254 A notable change is the deprecation of several modules.
255 Module::Build::Version has been deprecated and Module::Build now relies
256 directly upon L<version>.  Module::Build::ModuleInfo has been deprecated in
257 favor of a standalone copy of it called L<Module::Metadata>.
258 Module::Build::YAML has been deprecated in favor of L<CPAN::Meta::YAML>.
259
260 Module::Build now also generates META.json and MYMETA.json files
261 in accordance with version 2 of the CPAN distribution metadata specification,
262 L<CPAN::Meta::Spec>.  The older format META.yml and MYMETA.yml files are
263 still generated, as well.
264
265 =item *
266
267 C<Module::Load::Conditional> has been upgraded from version 0.40 to 0.44
268
269 =item *
270
271 C<Module::Metadata> has been upgraded from version 1.000003 to 1.000004.
272
273 =item *
274
275 C<overload> has been upgraded from version 1.12 to 1.13.
276
277 The documentation has greatly improved. See L</Documentation> below.
278
279 =item *
280
281 C<Parse::CPAN::Meta> has been upgraded from version 1.40 to 1.4401.
282
283 The latest Parse::CPAN::Meta can now read YAML or JSON files using
284 L<CPAN::Meta::YAML> and L<JSON::PP>, which are now part of the Perl core.
285
286 =item *
287
288 C<re> has been upgraded from version 0.16 to 0.17.
289
290 It now supports the double-a flag: C<use re '/aa';>
291
292 =item *
293
294 C<Term::UI> has been upgraded from version 0.24 to 0.26
295
296 =item *
297
298 C<Unicode::Collate> has been upgraded from version 0.68 to 0.72
299
300 This also sees the switch from using the pure-perl version of this
301 module to the XS version.`
302
303 =item *
304
305 C<VMS::DCLsym> has been upgraded from version 1.04 to 1.05.
306
307 Two bugs have been fixed [perl #84086]:
308
309 The symbol table name was lost when tying a hash, due to a thinko in
310 C<TIEHASH>. The result was that all tied hashes interacted with the
311 local symbol table.
312
313 Unless a symbol table name had been explicitly specified in the call
314 to the constructor, querying the special key ':LOCAL' failed to
315 identify objects connected to the local symbol table.
316
317 =item *
318
319 Added new function C<Unicode::UCD::num()>.  This function will return the
320 numeric value of the string passed it; C<undef> if the string in its
321 entirety has no safe numeric value.
322
323 To be safe, a string must be a single character which has a numeric
324 value, or consist entirely of characters that match \d, coming from the
325 same Unicode block of digits.  Thus, a mix of  Bengali and Western
326 digits would be considered unsafe, as well as a mix of half- and
327 full-width digits, but strings consisting entirely of Devanagari digits
328 or of "Mathematical Bold" digits would would be safe.
329
330 =item *
331
332 C<CPAN> has been upgraded from version1.94_63 to 1.94_64.
333
334 =item *
335
336 XXX
337
338 =back
339
340 =head2 Removed Modules and Pragmata
341
342 =over 4
343
344 =item *
345
346 XXX
347
348 =back
349
350 =head1 Documentation
351
352 XXX Changes to files in F<pod/> go here.  Consider grouping entries by
353 file and be sure to link to the appropriate page, e.g. L<perlfunc>.
354
355 =head2 New Documentation
356
357 XXX Changes which create B<new> files in F<pod/> go here.
358
359 =head3 L<XXX>
360
361 XXX Description of the purpose of the new file here
362
363 =head2 Changes to Existing Documentation
364
365 XXX Changes which significantly change existing files in F<pod/> go here.
366 However, any changes to F<pod/perldiag.pod> should go in the L</Diagnostics>
367 section.
368
369 =head3 L<overload>
370
371 =over 4
372
373 =item *
374
375 L<overload>'s documentation has practically undergone a rewrite. It
376 is now much more straightforward and clear.
377
378 =back
379
380 =head3 L<perlhack> and perlrepository
381
382 =over 4
383
384 =item *
385
386 The L<perlhack> and perlrepository documents have been heavily edited and
387 split up into several new documents.
388
389 The L<perlhack> document is now much shorter, and focuses on the Perl 5
390 development process and submitting patches to Perl. The technical content has
391 been moved to several new documents, L<perlsource>, L<perlinterp>,
392 L<perlhacktut>, and L<perlhacktips>. This technical content has only been
393 lightly edited.
394
395 The perlrepository document has been renamed to L<perlgit>. This new document
396 is just a how-to on using git with the Perl source code. Any other content
397 that used to be in perlrepository has been moved to perlhack.
398
399 =back
400
401 =head3 L<perlfunc>
402
403 =over 4
404
405 =item *
406
407 The documentation for the C<map> function now contains more examples,
408 see B<perldoc -f map> (f947627)
409
410 =back
411
412 =head3 L<perlfaq4>
413
414 =over 4
415
416 =item *
417
418 Examples in L<perlfaq4> have been updated to show the use of
419 L<Time::Piece>. (9243591)
420
421 =back
422
423 =head3 Miscellaneous
424
425 =over 4
426
427 =item *
428
429 Many POD related RT bugs and other issues which are too numerous to
430 enumerate have been solved by Michael Stevens.
431
432 =back
433
434 =head1 Diagnostics
435
436 The following additions or changes have been made to diagnostic output,
437 including warnings and fatal error messages.  For the complete list of
438 diagnostic messages, see L<perldiag>.
439
440 XXX New or changed warnings emitted by the core's C<C> code go here. Also
441 include any changes in L<perldiag> that reconcile it to the C<C> code.
442
443 [ Within each section, list entries as a =item entry ]
444
445 =head2 New Diagnostics
446
447 XXX Newly added diagnostic messages go here
448
449 =over 4
450
451 =item "\b{" is deprecated; use "\b\{" instead
452
453 =item "\B{" is deprecated; use "\B\{" instead
454
455 Use of an unescaped "{" immediately following a C<\b> or C<\B> is now
456 deprecated so as to reserve its use for Perl itself in a future release.
457
458 =item regcomp: Add warning if \p is used under locale. (fb2e24c)
459
460 C<\p> implies Unicode matching rules, which are likely going to be
461 different than the locale's.
462
463 =item panic: gp_free failed to free glob pointer - something is repeatedly re-creating entries
464
465 This new error is triggered if a destructor called on an object in a
466 typeglob that is being freed creates a new typeglob entry containing an
467 object with a destructor that creates a new entry containing an object....
468
469 =item refcnt: fd %d%s
470
471 This new error only occurs if a internal consistency check fails when a
472 pipe is about to be closed.
473
474 =back
475
476 =head2 Changes to Existing Diagnostics
477
478 XXX Changes (i.e. rewording) of diagnostic messages go here
479
480 =over 4
481
482 =item *
483
484 The warning message about regex unrecognized escapes passed through is
485 changed to include any literal '{' following the 2-char escape.  e.g.,
486 "\q{" will include the { in the message as part of the escape
487 (216bfc0).
488
489 =item * C<binmode $fh, ':scalar'> no longer warns (8250589)
490
491 Perl will now no longer produce this warning:
492
493     $ perl -we 'open my $f, ">", \my $x; binmode $f, "scalar"'
494     Use of uninitialized value in binmode at -e line 1.
495
496 =item *
497
498 XXX
499
500 =back
501
502 =head1 Utility Changes
503
504 XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go
505 here. Most of these are built within the directories F<utils> and F<x2p>.
506
507 [ List utility changes as a =head3 entry for each utility and =item
508 entries for each change
509 Use L<XXX> with program names to get proper documentation linking. ]
510
511 =head3 L<XXX>
512
513 =over 4
514
515 =item *
516
517 XXX
518
519 =back
520
521 =head1 Configuration and Compilation
522
523 XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools
524 go here.  Any other changes to the Perl build process should be listed here.
525 However, any platform-specific changes should be listed in the
526 L</Platform Support> section, instead.
527
528 [ List changes as a =item entry ].
529
530 =over 4
531
532 =item * make reg_eval_scope.t TODOs consistently fail (daaf7ac)
533
534 Some of the TODO tests in reg_eval_scope.t spuriously passed under
535 non-threaded builds. Make the tests harder so they always fail.
536
537 Since one of the key bugs in (?{..}) is the trashing of the parent pad,
538 add some extra lexical vars to the parent scope and check they're still
539 there at the end.
540
541 =item *
542
543 Stop EU::CBuilder's tests from failing in parallel (cbf59d5)
544
545 It used to use the same paths for temporary files in all tests. This
546 blew up randomly when the tests were run in parallel.
547
548 =item *
549
550 XXX
551
552 =back
553
554 =head1 Testing
555
556 XXX Any significant changes to the testing of a freshly built perl should be
557 listed here.  Changes which create B<new> files in F<t/> go here as do any
558 large changes to the testing harness (e.g. when parallel testing was added).
559 Changes to existing files in F<t/> aren't worth summarising, although the bugs
560 that they represent may be covered elsewhere.
561
562 [ List each test improvement as a =item entry ]
563
564 =over 4
565
566 =item *
567
568 F<porting/FindExt.t> now skips all tests on a static (-Uusedl) build
569 of perl.
570
571 =item *
572
573 F<porting/FindExt.t> now passes on non-Win32 platforms when some
574 extensions are built statically.
575
576 =back
577
578 =head1 Platform Support
579
580 XXX Any changes to platform support should be listed in the sections below.
581
582 [ Within the sections, list each platform as a =item entry with specific
583 changes as paragraphs below it. ]
584
585 =head2 New Platforms
586
587 XXX List any platforms that this version of perl compiles on, that previous
588 versions did not. These will either be enabled by new files in the F<hints/>
589 directories, or new subdirectories and F<README> files at the top level of the
590 source tree.
591
592 =over 4
593
594 =item XXX-some-platform
595
596 XXX
597
598 =back
599
600 =head2 Discontinued Platforms
601
602 XXX List any platforms that this version of perl no longer compiles on.
603
604 =over 4
605
606 =item XXX-some-platform
607
608 XXX
609
610 =back
611
612 =head2 Platform-Specific Notes
613
614 XXX List any changes for specific platforms. This could include configuration
615 and compilation changes or changes in portability/compatibility.  However,
616 changes within modules for platforms should generally be listed in the
617 L</Modules and Pragmata> section.
618
619 =over 4
620
621 =item Windows
622
623 =over 4
624
625 =item *
626
627 The C<test-prep> build target now depends on F<pod/perltoc.pod> to allow the
628 F<t/porting/buildtoc.t> test to run successfully.
629
630 =back
631
632 =item MirBSD
633
634 =over 4
635
636 =item *
637
638 [perl #82988] Skip hanging taint.t test on MirBSD 10 (1fb83d0)
639
640 Skip a hanging test under MirBSD that was already being skipped under
641 OpenBSD.
642
643 =item *
644
645 Previously if you build perl with a shared libperl.so on MirBSD (the
646 default config), it will work up to the installation; however, once
647 installed, it will be unable to find libperl. Treat path handling
648 like in the other BSD dialects.
649
650 =back
651
652 =back
653
654 =head1 Internal Changes
655
656 XXX Changes which affect the interface available to C<XS> code go here.
657 Other significant internal changes for future core maintainers should
658 be noted as well.
659
660 [ List each test improvement as a =item entry ]
661
662 =over 4
663
664 =item * Fix harmless invalid read in Perl_re_compile() (f6d9469)
665
666 [perl #2460] described a case where electric fence reported an invalid
667 read. This could be reproduced under valgrind with blead and -e'/x/',
668 but only on a non-debugging build.
669
670 This was because it was checking for certain pairs of nodes (e.g. BOL + END)
671 and wasn't allowing for EXACT nodes, which have the string at the next
672 node position when using a naive NEXTOPER(first). In the non-debugging
673 build, the nodes aren't initialised to zero, and a 1-char EXACT node isn't
674 long enough to spill into the type field of the "next node".
675
676 Fix this by only using NEXTOPER(first) when we know the first node is
677 kosher.
678
679 =item * Break out the generated function Perl_keywords() into F<keywords.c>, a new file. (26ea9e1)
680
681 As it and Perl_yylex() both need FEATURE_IS_ENABLED, feature_is_enabled() is
682 no longer static, and the two macro definitions move from toke.c to perl.h
683
684 Previously, one had to cut and paste the output of perl_keywords.pl into the
685 middle of toke.c, and it was not clear that it was generated code.
686
687 =item *
688
689 A lot of tests have been ported from Test to Test::More, e.g. in
690 3842ad6.
691
692 =item *
693
694 XXX
695
696 =back
697
698 =head1 Selected Bug Fixes
699
700 XXX Important bug fixes in the core language are summarised here.
701 Bug fixes in files in F<ext/> and F<lib/> are best summarised in
702 L</Modules and Pragmata>.
703
704 [ List each fix as a =item entry ]
705
706 =over 4
707
708 =item *
709
710 A Unicode C<\p{}> property match in a regular expression pattern will
711 now force Unicode rules for the rest of the regular expression
712
713 =item *
714
715 [perl #38456] binmode FH, ":crlf" only modifies top crlf layer (7826b36)
716
717 When pushed on top of the stack, crlf will no longer enable crlf layers
718 lower in the stack. This will prevent unexpected results.
719
720 =item *
721
722 Fix 'raw' layer for RT #80764 (ecfd064)
723
724 Made a ':raw' open do what it advertises to do (first open the file,
725 then binmode it), instead of leaving off the top layer.
726
727 =item *
728
729 Use PerlIOBase_open for pop, utf8 and bytes layers (c0888ac)
730
731 Three of Perl's builtin PerlIO layers (C<:pop>, C<:utf8> and
732 C<:bytes>) didn't allow stacking when opening a file. For example
733 this:
734
735     open FH, '>:pop:perlio', 'some.file' or die $!;
736
737 Would throw an error: "Invalid argument". This has been fixed in this
738 release.
739
740 =item *
741
742 An issue present since 5.13.1, where s/A/B/ with A utf8 and B
743 non-utf8, could cause corruption or segfaults has been
744 fixed. (c95ca9b)
745
746 =item *
747
748 String evals will no longer fail after 2 billion scopes have been
749 compiled (d1bfb64, 2df5bdd, 0d311cd and 6012dc8)
750
751 =item *
752
753 [perl #81750] When strict 'refs' mode is off, C<%{...}> returns C<undef> if
754 its argument is undefined. An optimisation introduced in perl 5.12.0 to
755 make C<keys %{...}> faster when used as a boolean did not take this into
756 account, causing C<keys %{+undef}> (and C<keys %$foo> when C<$foo> is
757 undefined) to be an error, which it should only be in strict mode.
758
759 =item *
760
761 [perl #83194] Combining the vector (%v) flag and dynamic precision would
762 cause sprintf to confuse the order of its arguments, making it treat the
763 string as the precision and vice versa.
764
765 =item *
766
767 [perl #77692] Sometimes the UTF8 length cache would not be reset on a value
768 returned by substr, causing C<length(substr($uni_string,...))> to give
769 wrong answers. With C<${^UTF8CACHE}> set to -1, it would produce a 'panic'
770 error message, too.
771
772 =item *
773
774 During the restoration of a localised typeglob on scope exit, any
775 destructors called as a result would be able to see the typeglob in an
776 inconsistent state, containing freed entries, which could result in a
777 crash. This would affect code like this:
778
779   local *@;
780   eval { die bless [] }; # puts an object in $@
781   sub DESTROY {
782     local $@; # boom
783   }
784
785 Now the glob entries are cleared before any destructors are called. This
786 also means that destructors can vivify entries in the glob. So perl tries
787 again and, if the entries are re-created too many times, dies with a
788 'panic: gp_free...' error message.
789
790 =item *
791
792 [perl #78494] When pipes are shared between threads, the C<close> function
793 (and any implicit close, such as on thread exit) no longer blocks.
794
795 =back
796
797 =head1 Known Problems
798
799 XXX Descriptions of platform agnostic bugs we know we can't fix go here. Any
800 tests that had to be C<TODO>ed for the release would be noted here, unless
801 they were specific to a particular platform (see below).
802
803 This is a list of some significant unfixed bugs, which are regressions
804 from either 5.XXX.XXX or 5.XXX.XXX.
805
806 [ List each fix as a =item entry ]
807
808 =over 4
809
810 =item *
811
812 XXX
813
814 =back
815
816 =head1 Obituary
817
818 XXX If any significant core contributor has died, we've added a short obituary
819 here.
820
821 =head1 Acknowledgements
822
823 XXX The list of people to thank goes here.
824
825 =head1 Reporting Bugs
826
827 If you find what you think is a bug, you might check the articles
828 recently posted to the comp.lang.perl.misc newsgroup and the perl
829 bug database at http://rt.perl.org/perlbug/ .  There may also be
830 information at http://www.perl.org/ , the Perl Home Page.
831
832 If you believe you have an unreported bug, please run the L<perlbug>
833 program included with your release.  Be sure to trim your bug down
834 to a tiny but sufficient test case.  Your bug report, along with the
835 output of C<perl -V>, will be sent off to perlbug@perl.org to be
836 analysed by the Perl porting team.
837
838 If the bug you are reporting has security implications, which make it
839 inappropriate to send to a publicly archived mailing list, then please send
840 it to perl5-security-report@perl.org. This points to a closed subscription
841 unarchived mailing list, which includes all the core committers, who be able
842 to help assess the impact of issues, figure out a resolution, and help
843 co-ordinate the release of patches to mitigate or fix the problem across all
844 platforms on which Perl is supported. Please only use this address for
845 security issues in the Perl core, not for modules independently
846 distributed on CPAN.
847
848 =head1 SEE ALSO
849
850 The F<Changes> file for an explanation of how to view exhaustive details
851 on what changed.
852
853 The F<INSTALL> file for how to build Perl.
854
855 The F<README> file for general stuff.
856
857 The F<Artistic> and F<Copying> files for copyright information.
858
859 =cut