Perldelta proofreading fixes from Zefram in
[p5sagit/p5-mst-13.2.git] / pod / perl5120delta.pod
1 =head1 NAME
2
3 perl5120delta - what is new for perl v5.12.0
4
5 =head1 DESCRIPTION
6
7 This document describes differences between the 5.10.0 release and
8 the 5.12.0 release.
9
10 Many of the bug fixes in 5.12.0 are already included in the 5.10.1
11 maintenance release. 
12
13 You can see the list of those changes in the 5.10.1 release notes (L<perl5101delta>).
14
15
16 =head1 Core Enhancements
17
18 =head2 New C<package NAME VERSION> syntax
19
20 This new syntax allows a module author to set the $VERSION of a namespace
21 when the namespace is declared with 'package'. It eliminates the need
22 for C<our $VERSION = ...> and similar constructs. E.g.
23
24       package Foo::Bar 1.23;
25       # $Foo::Bar::VERSION == 1.23
26
27 There are several advantages to this:
28
29 =over 
30
31 =item *
32
33 C<$VERSION> is parsed in exactly the same way as C<use NAME VERSION>
34
35 =item *
36
37 C<$VERSION> is set at compile time
38
39 =item *
40
41 C<$VERSION> is a version object that provides proper overloading of
42 comparison operators so comparing C<$VERSION> to decimal (1.23) or
43 dotted-decimal (v1.2.3) version numbers works correctly.
44
45 =item *
46
47 Eliminates C<$VERSION = ...> and C<eval $VERSION> clutter
48
49 =item *
50
51 As it requires VERSION to be a numeric literal or v-string
52 literal, it can be statically parsed by toolchain modules
53 without C<eval> the way MM-E<gt>parse_version does for C<$VERSION = ...>
54
55 =back
56
57 It does not break old code with only C<package NAME>, but code that uses
58 C<package NAME VERSION> will need to be restricted to perl 5.12.0 or newer
59 This is analogous to the change to C<open> from two-args to three-args.
60 Users requiring the latest Perl will benefit, and perhaps after several
61 years, it will become a standard practice.
62
63
64 However, C<package NAME VERSION> requires a new, 'strict' version
65 number format. See L<"Version number formats"> for details.
66
67
68 =head2 The C<...> operator
69
70 A new operator, C<...>, nicknamed the Yada Yada operator, has been added.
71 It is intended to mark placeholder code that is not yet implemented.
72 See L<perlop/"Yada Yada Operator">. (chromatic)
73
74 =head2 Implicit strictures
75
76 Using the C<use VERSION> syntax with a version number greater or equal
77 to 5.11.0 will lexically enable strictures just like C<use strict>
78 would do (in addition to enabling features.) The following:
79
80     use 5.12.0;
81
82 means:
83
84     use strict;
85     use feature ':5.12';
86
87 =head2 Unicode improvements
88
89 Perl 5.12 comes with Unicode 5.2, the latest version available to
90 us at the time of release.  This version of Unicode was released in
91 October 2009. See L<http://www.unicode.org/versions/Unicode5.2.0> for
92 further details about what's changed in this version of the standard.
93 See L<perlunicode> for instructions on installing and using other versions
94 of Unicode.
95
96 Additionally, Perl's developers have significantly improved Perl's Unicode
97 implementation. For full details, see L</Unicode overhaul> below.
98
99 =head2 Y2038 compliance
100
101 Perl's core time-related functions are now Y2038 compliant. (It may not mean much to you, but your kids will love it!)
102
103 =head2 qr overloading
104
105 It is now possible to overload the C<qr//> operator, that is,
106 conversion to regexp, like it was already possible to overload
107 conversion to boolean, string or number of objects. It is invoked when
108 an object appears on the right hand side of the C<=~> operator or when
109 it is interpolated into a regexp. See L<overload>.
110
111 =head2 Pluggable keywords
112
113 Extension modules can now cleanly hook into the Perl parser to define
114 new kinds of keyword-headed expression and compound statement. The
115 syntax following the keyword is defined entirely by the extension. This
116 allow a completely non-Perl sublanguage to be parsed inline, with the
117 correct ops cleanly generated. 
118
119 See L<perlapi/PL_keyword_plugin> for the mechanism. The Perl core
120 source distribution also includes a new module
121 L<XS::APItest::KeywordRPN>, which implements reverse Polish notation
122 arithmetic via pluggable keywords. This module is mainly used for test
123 purposes, and is not normally installed, but also serves as an example
124 of how to use the new mechanism.
125
126 Perl's developers consider this feature to be experimental. We may remove
127 it or change it in a backwards-incompatible way in Perl 5.14.
128
129 =head2 APIs for more internals
130
131 The lowest layers of the lexer and parts of the pad system now have C
132 APIs available to XS extensions. These are necessary to support proper
133 use of pluggable keywords, but have other uses too. The new APIs are
134 experimental, and only cover a small proportion of what would be
135 necessary to take full advantage of the core's facilities in these
136 areas. It is intended that the Perl 5.13 development cycle will see the
137 addition of a full range of clean, supported interfaces.
138
139 Perl's developers consider this feature to be experimental. We may remove
140 it or change it in a backwards-incompatible way in Perl 5.14.
141
142 =head2 Overridable function lookup
143
144 Where an extension module hooks the creation of rv2cv ops to modify the
145 subroutine lookup process, this now works correctly for bareword
146 subroutine calls. This means that prototypes on subroutines referenced
147 this way will be processed correctly. (Previously bareword subroutine
148 names were initially looked up, for parsing purposes, by an unhookable
149 mechanism, so extensions could only properly influence subroutine names
150 that appeared with an C<&> sigil.)
151
152 =head2 A proper interface for pluggable Method Resolution Orders
153
154 As of Perl 5.12.0 there is a new interface for plugging and using method
155 resolution orders other than the default linear depth first search.
156 The C3 method resolution order added in 5.10.0 has been re-implemented as
157 a plugin, without changing its Perl-space interface. See L<perlmroapi> for
158 more information.
159
160
161
162 =head2 C<\N> experimental regex escape
163
164 Perl now supports C<\N>, a new regex escape which you can think of as
165 the inverse of C<\n>. It will match any character that is not a newline,
166 independently from the presence or absence of the single line match
167 modifier C</s>. It is not usable within a character class.  C<\N{3}>
168 means to match 3 non-newlines; C<\N{5,}> means to match at least 5.
169 C<\N{NAME}> still means the character or sequence named C<NAME>, but
170 C<NAME> no longer can be things like C<3>, or C<5,>.
171
172 This will break a L<custom charnames translator|charnames/CUSTOM
173 TRANSLATORS> which allows numbers for character names, as C<\N{3}> will
174 now mean to match 3 non-newline characters, and not the character whose
175 name is C<3>. (No name defined by the Unicode standard is a number,
176 so only custom translators might be affected.)
177
178 Perl's developers are somewhat concerned about possible user confusion
179 with the existing C<\N{...}> construct which matches characters by their
180 Unicode name. Consequently, this feature is experimental. We may remove
181 it or change it in a backwards-incompatible way in Perl 5.14.
182
183 =head2 DTrace support
184
185 Perl now has some support for DTrace. See "DTrace support" in F<INSTALL>.
186
187 =head2 Support for C<configure_requires> in CPAN module metadata
188
189 Both C<CPAN> and C<CPANPLUS> now support the C<configure_requires> keyword
190 in the F<META.yml> metadata file included in most recent CPAN distributions.
191 This allows distribution authors to specify configuration prerequisites that
192 must be installed before running F<Makefile.PL> or F<Build.PL>.
193
194 See the documentation for C<ExtUtils::MakeMaker> or C<Module::Build> for more
195 on how to specify C<configure_requires> when creating a distribution for CPAN.
196
197 =head2 C<each> is now more flexible
198
199 The C<each> function can now operate on arrays.
200
201 =head2 C<when> as a statement modifier
202
203 C<when> is now allowed to be used as a statement modifier.
204
205 =head2 C<$,> flexibility
206
207 The variable C<$,> may now be tied.
208
209 =head2 // in when clauses
210
211 // now behaves like || in when clauses
212
213 =head2 Enabling warnings from your shell environment
214
215 You can now set C<-W> from the C<PERL5OPT> environment variable
216
217 =head2 C<delete local>
218
219 C<delete local> now allows you to locally delete a hash entry.
220
221 =head2 New support for Abstract namespace sockets
222
223 Abstract namespace sockets are Linux-specific socket type that live in
224 AF_UNIX family, slightly abusing it to be able to use arbitrary
225 character arrays as addresses: They start with nul byte and are not
226 terminated by nul byte, but with the length passed to the socket()
227 system call.
228
229 =head2 32-bit limit on substr arguments removed
230
231 The 32-bit limit on C<substr> arguments has now been removed. The full range
232 of the system's signed and unsigned integers is now available for the C<pos>
233 and C<len> arguments.
234
235 =head1 Potentially Incompatible Changes
236
237 =head2 Deprecations warn by default
238
239 Perl now defaults to issuing a warning if a deprecated language feature
240 is used.
241
242 To disable this feature in a given lexical scope, you should use C<no
243 warnings 'deprecated';> For information about which language features
244 are deprecated and explanations of various deprecation warnings, please
245 see L<perldiag.pod>. See L</Deprecations> below for the list of features
246 and modules Perl's developers have deprecated as part of this release.
247
248 =head2 Version number formats
249
250 Acceptable version number formats have been formalized into "strict" and
251 "lax" rules. C<package NAME VERSION> takes a strict version number.
252 C<UNIVERSAL::VERSION> and the L<version> object constructors take lax
253 version numbers. Providing an invalid version will result in a fatal
254 error. The version argument in C<use NAME VERSION> is first parsed as a
255 numeric literal or v-string and then passed to C<UNIVERSAL::VERSION>
256 (and must then pass the "lax" format test).
257
258 These formats are documented fully in the L<version> module. To a first
259 approximation, a "strict" version number is a positive decimal number
260 (integer or decimal-fraction) without exponentiation or else a
261 dotted-decimal v-string with a leading 'v' character and at least three
262 components. A "lax" version number allows v-strings with fewer than
263 three components or without a leading 'v'. Under "lax" rules, both
264 decimal and dotted-decimal versions may have a trailing "alpha"
265 component separated by an underscore character after a fractional or
266 dotted-decimal component.
267
268 The L<version> module adds C<version::is_strict> and C<version::is_lax>
269 functions to check a scalar against these rules.
270
271 =head2 @INC reorganization
272
273 In C<@INC>, C<ARCHLIB> and C<PRIVLIB> now occur after after the current
274 version's C<site_perl> and C<vendor_perl>.  Modules installed into
275 C<site_perl> and C<vendor_perl> will now be loaded in preference to
276 those installed in C<ARCHLIB> and C<PRIVLIB>.
277
278 =head2 Switch statement changes
279
280 The C<given>/C<when> switch statement handles complex statements better
281 than Perl 5.10.0 did (These enhancements are also available in
282 5.10.1 and subsequent 5.10 releases.) There are two new cases where
283 C<when> now interprets its argument as a boolean, instead of an
284 expression to be used in a smart match:
285
286 =over
287
288 =item flip-flop operators
289
290 The C<..> and C<...> flip-flop operators are now evaluated in boolean
291 context, following their usual semantics; see L<perlop/"Range Operators">.
292
293 Note that, as in perl 5.10.0, C<when (1..10)> will not work to test
294 whether a given value is an integer between 1 and 10; you should use
295 C<when ([1..10])> instead (note the array reference).
296
297 However, contrary to 5.10.0, evaluating the flip-flop operators in boolean
298 context ensures it can now be useful in a C<when()>, notably for
299 implementing bistable conditions, like in:
300
301     when (/^=begin/ .. /^=end/) {
302       # do something
303     }
304
305 =item defined-or operator
306
307 A compound expression involving the defined-or operator, as in
308 C<when (expr1 // expr2)>, will be treated as boolean if the first
309 expression is boolean. (This just extends the existing rule that applies
310 to the regular or operator, as in C<when (expr1 || expr2)>.)
311
312 =back
313
314 =head2 Smart match changes
315
316 Since Perl 5.10.0, Perl's developers have made a number of changes to
317 the smart match operator. These, of course, also alter the behaviour
318 of the switch statements where smart matching is implicitly used.
319 These changes were also made for the 5.10.1 release, and will remain in
320 subsequent 5.10 releases.
321
322 =head3 Changes to type-based dispatch
323
324 The smart match operator C<~~> is no longer commutative. The behaviour of
325 a smart match now depends primarily on the type of its right hand
326 argument. Moreover, its semantics have been adjusted for greater
327 consistency or usefulness in several cases. While the general backwards
328 compatibility is maintained, several changes must be noted:
329
330 =over 4
331
332 =item *
333
334 Code references with an empty prototype are no longer treated specially.
335 They are passed an argument like the other code references (even if they
336 choose to ignore it).
337
338 =item *
339
340 C<%hash ~~ sub {}> and C<@array ~~ sub {}> now test that the subroutine
341 returns a true value for each key of the hash (or element of the
342 array), instead of passing the whole hash or array as a reference to
343 the subroutine.
344
345 =item *
346
347 Due to the commutativity breakage, code references are no longer
348 treated specially when appearing on the left of the C<~~> operator,
349 but like any vulgar scalar.
350
351 =item *
352
353 C<undef ~~ %hash> is always false (since C<undef> can't be a key in a
354 hash). No implicit conversion to C<""> is done (as was the case in perl
355 5.10.0).
356
357 =item *
358
359 C<$scalar ~~ @array> now always distributes the smart match across the
360 elements of the array. It's true if one element in @array verifies
361 C<$scalar ~~ $element>. This is a generalization of the old behaviour
362 that tested whether the array contained the scalar.
363
364 =back
365
366 The full dispatch table for the smart match operator is given in
367 L<perlsyn/"Smart matching in detail">.
368
369 =head3 Smart match and overloading
370
371 According to the rule of dispatch based on the rightmost argument type,
372 when an object overloading C<~~> appears on the right side of the
373 operator, the overload routine will always be called (with a 3rd argument
374 set to a true value, see L<overload>.) However, when the object will
375 appear on the left, the overload routine will be called only when the
376 rightmost argument is a simple scalar. This way, distributivity of smart
377 match across arrays is not broken, as well as the other behaviours with
378 complex types (coderefs, hashes, regexes). Thus, writers of overloading
379 routines for smart match mostly need to worry only with comparing
380 against a scalar, and possibly with stringification overloading; the
381 other common cases will be automatically handled consistently.
382
383 C<~~> will now refuse to work on objects that do not overload it (in order
384 to avoid relying on the object's underlying structure). (However, if the
385 object overloads the stringification or the numification operators, and
386 if overload fallback is active, it will be used instead, as usual.)
387
388 =head2 Other potentially incompatible changes
389
390 =over 4
391
392 =item *
393
394 The definitions of a number of Unicode properties have changed to match
395 those of the current Unicode standard. These are listed above under
396 L</Unicode overhaul>. This change may break code that expects the old definitions.
397
398 =item *
399
400 The boolkeys op has moved to the group of hash ops. This breaks binary
401 compatibility.
402
403 =item *
404
405 Filehandles are now always blessed into C<IO::File>.
406
407 The previous behaviour was to bless Filehandles into L<FileHandle>
408 (an empty proxy class) if it was loaded into memory and otherwise
409 to bless them into C<IO::Handle>.
410
411 =item *
412
413 The semantics of C<use feature :5.10*> have changed slightly.
414 See L<"Modules and Pragmata"> for more information.
415
416 =item *
417
418 Perl's developers now use git, rather than Perforce.  This should be
419 a purely internal change only relevant to people actively working on
420 the core.  However, you may see minor difference in perl as a consequence
421 of the change.  For example in some of details of the output of C<perl
422 -V>. See L<perlrepository> for more information.
423
424 =item *
425
426 As part of the C<Test::Harness> 2.x to 3.x upgrade, the experimental
427 C<Test::Harness::Straps> module has been removed.
428 See L</"Modules and Pragmata"> for more details.
429
430 =item *
431
432 As part of the C<ExtUtils::MakeMaker> upgrade, the
433 C<ExtUtils::MakeMaker::bytes> and C<ExtUtils::MakeMaker::vmsish> modules
434 have been removed from this distribution.
435
436 =item *
437
438 C<Module::CoreList> no longer contains the C<%:patchlevel> hash.
439
440
441 =item *
442
443 C<length undef> now returns undef.
444
445 =item *
446
447 Unsupported private C API functions are now declared "static" to prevent
448 leakage to Perl's public API.
449
450 =item *
451
452 To support the bootstrapping process, F<miniperl> no longer builds with
453 UTF-8 support in the regexp engine.
454
455 This allows a build to complete with PERL_UNICODE set and a UTF-8 locale.
456 Without this there's a bootstrapping problem, as miniperl can't load the UTF-8
457 components of the regexp engine, because they're not yet built.
458
459 =item *
460
461 F<miniperl>'s @INC is now restricted to just C<-I...>, the split of
462 C<$ENV{PERL5LIB}>, and "C<.>"
463
464 =item *
465
466 A space or a newline is now required after a C<"#line XXX"> directive.
467
468 =item *
469
470 Tied filehandles now have an additional method EOF which provides the EOF type
471
472 =item *
473
474 To better match all other flow control statements, C<foreach> may no
475 longer be used as an attribute.
476
477 =back
478
479
480 =head1 Deprecations
481
482 From time to time, Perl's developers find it necessary to deprecate
483 features or modules we've previously shipped as part of the core
484 distribution. We are well aware of the pain and frustration that a
485 backwards-incompatible change to Perl can cause for developers building
486 or maintaining software in Perl. You can be sure that when we deprecate
487 a functionality or syntax, it isn't a choice we make lightly. Sometimes,
488 we choose to deprecate functionality or syntax because it was found to
489 be poorly designed or implemented. Sometimes, this is because they're
490 holding back other features or causing performance problems. Sometimes,
491 the reasons are more complex. Wherever possible, we try to keep deprecated
492 functionality available to developers in its previous form for at least
493 one major release. So long as a deprecated feature isn't actively
494 disrupting our ability to maintain and extend Perl, we'll try to leave
495 it in place as long as possible.
496
497 The following items are now deprecated:
498
499 =over
500
501 =item suidperl
502
503 C<suidperl> is no longer part of Perl. It used to provide a mechanism to
504 emulate setuid permission bits on systems that don't support it properly.
505
506
507 =item Use of C<:=> to mean an empty attribute list
508
509 An accident of Perl's parser meant that these constructions were all
510 equivalent:
511
512     my $pi := 4;
513     my $pi : = 4;
514     my $pi :  = 4;
515
516 with the C<:> being treated as the start of an attribute list, which
517 ends before the C<=>. As whitespace is not significant here, all are
518 parsed as an empty attribute list, hence all the above are equivalent
519 to, and better written as
520
521     my $pi = 4;
522
523 because no attribute processing is done for an empty list.
524
525 As is, this meant that C<:=> cannot be used as a new token, without
526 silently changing the meaning of existing code. Hence that particular
527 form is now deprecated, and will become a syntax error. If it is
528 absolutely necessary to have empty attribute lists (for example,
529 because of a code generator) then avoid the warning by adding a space
530 before the C<=>.
531
532 =item C<< UNIVERSAL->import() >>
533
534 The method C<< UNIVERSAL->import() >> is now deprecated. Attempting to
535 pass import arguments to a C<use UNIVERSAL> statement will result in a
536 deprecation warning.
537
538
539 =item Use of "goto" to jump into a construct
540
541 Using C<goto> to jump from an outer scope into an inner scope is now
542 deprecated. This rare use case was causing problems in the
543 implementation of scopes.
544
545 =item Custom character names in \N{name} that don't look like names
546
547 In C<\N{I<name>}>, I<name> can be just about anything. The standard Unicode
548 names have a very limited domain, but a custom name translator could create
549 names that are, for example, made up entirely of punctuation symbols. It is
550 now deprecated to make names that don't begin with an alphabetic character, and
551 aren't alphanumeric or contain other than a very few other characters,
552 namely spaces, dashes, parentheses and colons. Because of the added meaning of
553 C<\N> (See L</C<\N> experimental regex escape>), names that look like curly
554 brace -enclosed quantifiers won't work. For example, C<\N{3,4}> now means to
555 match 3 to 4 non-newlines; before a custom name C<3,4> could have been created.
556
557 =item Deprecated Modules
558
559 The following modules will be removed from the core distribution in a future
560 release, and should be installed from CPAN instead. Distributions on CPAN
561 which require these should add them to their prerequisites. The core versions
562 of these modules warnings will issue a deprecation warning.
563
564 If you ship a packaged version of Perl, either alone or as part of a larger
565 system, then you should carefully consider the reprecussions of core module
566 deprecations. You may want to consider shipping your default build of
567 Perl with packages for some or all deprecated modules which install into
568 C<vendor> or C<site> perl library directories. This will inhibit the 
569 deprecation warnings.
570
571 Alternatively, you may want to consider patching F<lib/deprecate.pm>
572 to provide deprecation warnings specific to your packaging system or
573 distribution of Perl, consistent with how your packaging system or
574 distribution manages a staged transition from a release where the
575 installation of a single package provides the given functionality, to a later
576 release where the system administrator needs to know to install multiple
577 packages to get that same functionality.
578
579 =over
580
581 =item L<Class::ISA>
582
583 =item L<Pod::Plainer>
584
585 =item L<Shell>
586
587 =item L<Switch>
588
589 Switch is buggy and should be avoided. You may find Perl's new
590 C<given>/C<when> feature a suitable replacement.  See L<perlsyn/"Switch
591 statements"> for more information.
592
593 =back
594
595 =item Assignment to $[
596
597 =item Use of the attribute :locked on subroutines
598
599 =item Use of "locked" with the attributes pragma
600
601 =item Use of "unique" with the attributes pragma
602
603 =item Perl_pmflag
604
605 C<Perl_pmflag> is no longer part of Perl's public API. Calling it now
606 generates a deprecation warning, and it will be removed in a future
607 release. Although listed as part of the API, it was never documented,
608 and only ever used in F<toke.c>, and prior to 5.10, F<regcomp.c>. In
609 core, it has been replaced by a static function.
610
611 =item Numerous Perl 4-era libraries
612
613 F<termcap.pl>, F<tainted.pl>, F<stat.pl>, F<shellwords.pl>, F<pwd.pl>,
614 F<open3.pl>, F<open2.pl>, F<newgetopt.pl>, F<look.pl>, F<find.pl>,
615 F<finddepth.pl>, F<importenv.pl>, F<hostname.pl>, F<getopts.pl>,
616 F<getopt.pl>, F<getcwd.pl>, F<flush.pl>, F<fastcwd.pl>, F<exceptions.pl>,
617 F<ctime.pl>, F<complete.pl>, F<cacheout.pl>, F<bigrat.pl>, F<bigint.pl>,
618 F<bigfloat.pl>, F<assert.pl>, F<abbrev.pl>, F<dotsh.pl>, and
619 F<timelocal.pl> are all now deprecated. Using them will incur a warning.
620
621
622 =back
623
624 =head1 Unicode overhaul
625
626 Perl's developers have made a concerted effort to update Perl to be in
627 sync with the latest Unicode standard. Changes for this include:
628
629 Perl can now handle every Unicode character property. New documentation,
630 L<perluniprops>, lists all available non-Unihan character properties. By
631 default, perl does not expose Unihan, deprecated or Unicode-internal
632 properties.  See below for more details on these; there is also a section
633 in the pod listing them, and explaining why they are not exposed.
634
635 Perl now fully supports the Unicode compound-style of using C<=> and C<:>
636 in writing regular expressions: C<\p{property=value}> and
637 C<\p{property:value}> (both of which mean the same thing).
638
639 Perl now fully supports the Unicode loose matching rules for text
640 between the braces in C<\p{...}> constructs. In addition, Perl allows
641 underscores between digits of numbers.
642
643 Perl now accepts all the Unicode-defined synonyms for properties and property values.
644
645 C<qr/\X/>, which matches a Unicode logical character, has been expanded to work
646 better with various Asian languages. It now is defined as an I<extended
647 grapheme cluster>. (See L<http://www.unicode.org/reports/tr29/>).
648 Anything matched previously and that made sense will continue to be
649 accepted.   Additionally:
650
651 =over
652
653 =item *
654
655 C<\X> will not break apart a C<S<CR LF>> sequence.
656
657 =item *
658
659 C<\X> will now match a sequence which includes the C<ZWJ> and C<ZWNJ> characters.
660
661 =item *
662
663 C<\X> will now always match at least one character, including an initial mark.
664 Marks generally come after a base character, but it is possible in Unicode to
665 have them in isolation, and C<\X> will now handle that case, for example at the
666 beginning of a line, or after a C<ZWSP>. And this is the part where C<\X>
667 doesn't match the things that it used to that don't make sense. Formerly, for
668 example, you could have the nonsensical case of an accented LF.
669
670 =item *
671
672 C<\X> will now match a (Korean) Hangul syllable sequence, and the Thai and Lao
673 exception cases.
674
675 =back
676
677 Otherwise, this change should be transparent for the non-affected
678 languages.
679
680 C<\p{...}> matches using the Canonical_Combining_Class property were
681 completely broken in previous releases of Perl.  They should now work
682 correctly.
683
684 Before Perl 5.12, the Unicode C<Decomposition_Type=Compat> property
685 and a Perl extension had the same name, which led to neither matching
686 all the correct values (with more than 100 mistakes in one, and several
687 thousand in the other). The Perl extension has now been renamed to be
688 C<Decomposition_Type=Noncanonical> (short: C<dt=noncanon>). It has the
689 same meaning as was previously intended, namely the union of all the
690 non-canonical Decomposition types, with Unicode C<Compat> being just
691 one of those.
692
693 C<\p{Decomposition_Type=Canonical}> now includes the Hangul syllables.
694
695 C<\p{Uppercase}> and C<\p{Lowercase}> now work as the Unicode standard
696 says they should.  This means they each match a few more characters than
697 they used to.
698
699 C<\p{Cntrl}> now matches the same characters as C<\p{Control}>. This
700 means it no longer will match Private Use (gc=co), Surrogates (gc=cs),
701 nor Format (gc=cf) code points. The Format code points represent the
702 biggest possible problem. All but 36 of them are either officially
703 deprecated or strongly discouraged from being used. Of those 36, likely
704 the most widely used are the soft hyphen (U+00AD), and BOM, ZWSP, ZWNJ,
705 WJ, and similar characters, plus bidirectional controls.
706
707 C<\p{Alpha}> now matches the same characters as C<\p{Alphabetic}>. Before
708 5.12, Perl's definition definition included a number of things that aren't
709 really alpha (all marks) while omitting many that were. The definitions
710 of C<\p{Alnum}> and C<\p{Word}> depend on Alpha's definition and have
711 changed accordingly.
712
713 C<\p{Word}> no longer incorrectly matches non-word characters such
714 as fractions.
715
716 C<\p{Print}> no longer matches the line control characters: Tab, LF,
717 CR, FF, VT, and NEL. This brings it in line with standards and the
718 documentation.
719
720 C<\p{XDigit}> now matches the same characters as C<\p{Hex_Digit}>. This
721 means that in addition to the characters it currently matches,
722 C<[A-Fa-f0-9]>, it will also match the 22 fullwidth equivalents, for
723 example U+FF10: FULLWIDTH DIGIT ZERO.
724
725 The Numeric type property has been extended to include the Unihan
726 characters.
727
728 There is a new Perl extension, the 'Present_In', or simply 'In',
729 property. This is an extension of the Unicode Age property, but
730 C<\p{In=5.0}> matches any code point whose usage has been determined
731 I<as of> Unicode version 5.0. The C<\p{Age=5.0}> only matches code points
732 added in I<precisely> version 5.0.
733
734 A number of properties now have the correct values for unassigned
735 code points. The affected properties are Bidi_Class, East_Asian_Width,
736 Joining_Type, Decomposition_Type, Hangul_Syllable_Type, Numeric_Type,
737 and Line_Break.
738
739 The Default_Ignorable_Code_Point, ID_Continue, and ID_Start properties
740 are now up to date with current Unicode definitions.
741
742 Earlier versions of Perl erroneously exposed certain properties that
743 are supposed to be Unicode internal-only.  Use of these in regular
744 expressions will now generate, if enabled, a deprecation warning message.
745 The properties are: Other_Alphabetic, Other_Default_Ignorable_Code_Point,
746 Other_Grapheme_Extend, Other_ID_Continue, Other_ID_Start, Other_Lowercase,
747 Other_Math, and Other_Uppercase.
748
749 It is now possible to change which Unicode properties Perl understands
750 on a per-installation basis. As mentioned above, certain properties
751 are turned off by default.  These include all the Unihan properties
752 (which should be accessible via the CPAN module Unicode::Unihan) and any
753 deprecated or Unicode internal-only property that Perl has never exposed.
754
755 The generated files in the C<lib/unicore/To> directory are now more
756 clearly marked as being stable, directly usable by applications.  New hash
757 entries in them give the format of the normal entries, which allows for
758 easier machine parsing. Perl can generate files in this directory for
759 any property, though most are suppressed.  You can find instructions
760 for changing which are written in L<perluniprops>.
761
762
763
764 =head1 Modules and Pragmata
765
766 =head2 New Modules and Pragmata
767
768 =over 4
769
770 =item C<autodie>
771
772 C<autodie> is a new lexically-scoped alternative for the C<Fatal> module.
773 The bundled version is 2.06_01. Note that in this release, using a string
774 eval when C<autodie> is in effect can cause the autodie behaviour to leak
775 into the surrounding scope. See L<autodie/"BUGS"> for more details.
776
777 Version 2.06_01 has been added to the Perl core.
778
779 =item C<Compress::Raw::Bzip2>
780
781 Version 2.024 has been added to the Perl core.
782
783 =item C<overloading>
784
785 C<overloading> allows you to lexically disable or enable overloading
786 for some or all operations. (Yuval Kogman)
787
788 Version 0.001 has been added to the Perl core.
789
790 =item C<parent>
791
792 C<parent> establishes an ISA relationship with base classes at compile
793 time. It provides the key feature of C<base> without further unwanted
794 behaviors.
795
796 Version 0.223 has been added to the Perl core.
797
798 =item C<Parse::CPAN::Meta>
799
800 Version 1.40 has been added to the Perl core.
801
802 =item C<VMS::DCLsym>
803
804 Version 1.03 has been added to the Perl core.
805
806 =item C<VMS::Stdio>
807
808 Version 2.4 has been added to the Perl core.
809
810 =item C<XS::APItest::KeywordRPN>
811
812 Version 0.003 has been added to the Perl core.
813
814 =back
815
816 =head2 Updated Pragmata
817
818 =over 4
819
820 =item C<base>
821
822 Upgraded from version 2.13 to 2.15.
823
824 =item C<bignum>
825
826 Upgraded from version 0.22 to 0.23.
827
828 =item C<charnames>
829
830 C<charnames> now contains the Unicode F<NameAliases.txt> database file.
831 This has the effect of adding some extra C<\N> character names that
832 formerly wouldn't have been recognised; for example, C<"\N{LATIN CAPITAL
833 LETTER GHA}">.
834
835 Upgraded from version 1.06 to 1.07.
836
837 =item C<constant>
838
839 Upgraded from version 1.13 to 1.20.
840
841 =item C<diagnostics>
842
843 C<diagnostics> now supports %.0f formatting internally.
844
845 C<diagnostics> no longer suppresses C<Use of uninitialized value in range
846 (or flip)> warnings. [perl #71204]
847
848 Upgraded from version 1.17 to 1.19.
849
850 =item C<feature>
851
852 In C<feature>, the meaning of the C<:5.10> and C<:5.10.X> feature bundles has
853 changed slightly. The last component, if any (i.e. C<X>) is simply ignored.
854 This is predicated on the assumption that new features will not, in
855 general, be added to maintenance releases. So C<:5.10> and C<:5.10.X>
856 have identical effect. This is a change to the behaviour documented for
857 5.10.0.
858
859 C<feature> now includes the C<unicode_strings> feature:
860
861     use feature "unicode_strings";
862
863 This pragma turns on Unicode semantics for the case-changing operations
864 (C<uc>, C<lc>, C<ucfirst>, C<lcfirst>) on strings that don't have the
865 internal UTF-8 flag set, but that contain single-byte characters between
866 128 and 255.
867
868 Upgraded from version 1.11 to 1.16.
869
870 =item C<less>
871
872 C<less> now includes the C<stash_name> method to allow subclasses of
873 C<less> to pick where in %^H to store their stash.
874
875 Upgraded from version 0.02 to 0.03.
876
877 =item C<lib>
878
879 Upgraded from version 0.5565 to 0.62.
880
881 =item C<mro>
882
883 C<mro> is now implemented as an XS extension. The documented interface has not
884 changed. Code relying on the implementation detail that some C<mro::>
885 methods happened to be available at all times gets to "keep both pieces".
886
887 Upgraded from version 1.00 to 1.02.
888
889 =item C<overload>
890
891 C<overload> now allow overloading of 'qr'.
892
893 Upgraded from version 1.06 to 1.10.
894
895 =item C<threads>
896
897 Upgraded from version 1.67 to 1.75.
898
899 =item C<threads::shared>
900
901 Upgraded from version 1.14 to 1.32.
902
903 =item C<version>
904
905 C<version> now has support for L</Version number formats> as described earlier
906 in this document and in its own documentation.
907
908 Upgraded from version 0.74 to 0.82.
909
910 =item C<warnings>
911
912 C<warnings> has a new C<warnings::fatal_enabled()> function.  It also
913 includes a new C<illegalproto> warning category. See also L</New or
914 Changed Diagnostics> for this change.
915
916 Upgraded from version 1.06 to 1.09.
917
918 =back
919
920 =head2 Updated Modules
921
922 =over 4
923
924 =item C<Archive::Extract>
925
926 Upgraded from version 0.24 to 0.38.
927
928 =item C<Archive::Tar>
929
930 Upgraded from version 1.38 to 1.54.
931
932 =item C<Attribute::Handlers>
933
934 Upgraded from version 0.79 to 0.87.
935
936 =item C<AutoLoader>
937
938 Upgraded from version 5.63 to 5.70.
939
940 =item C<B::Concise>
941
942 Upgraded from version 0.74 to 0.78.
943
944 =item C<B::Debug>
945
946 Upgraded from version 1.05 to 1.12.
947
948 =item C<B::Deparse>
949
950 Upgraded from version 0.83 to 0.94.
951
952 =item C<B::Lint>
953
954 Upgraded from version 1.09 to 1.11_01.
955
956 =item C<CGI>
957
958 Upgraded from version 3.29 to 3.48.
959
960 =item C<Class::ISA>
961
962 Upgraded from version 0.33 to 0.36.
963
964 NOTE: C<Class::ISA> is deprecated and may be removed from a future version of Perl.
965
966 =item C<Compress::Raw::Zlib>
967
968 Upgraded from version 2.008 to 2.024.
969
970 =item C<CPAN>
971
972 Upgraded from version 1.9205 to 1.94_56.
973
974 =item C<CPANPLUS>
975
976 Upgraded from version 0.84 to 0.90.
977
978 =item C<CPANPLUS::Dist::Build>
979
980 Upgraded from version 0.06_02 to 0.46.
981
982 =item C<Data::Dumper>
983
984 Upgraded from version 2.121_14 to 2.125.
985
986 =item C<DB_File>
987
988 Upgraded from version 1.816_1 to 1.820.
989
990 =item C<Devel::PPPort>
991
992 Upgraded from version 3.13 to 3.19.
993
994 =item C<Digest>
995
996 Upgraded from version 1.15 to 1.16.
997
998 =item C<Digest::MD5>
999
1000 Upgraded from version 2.36_01 to 2.39.
1001
1002 =item C<Digest::SHA>
1003
1004 Upgraded from version 5.45 to 5.47.
1005
1006 =item C<Encode>
1007
1008 Upgraded from version 2.23 to 2.39.
1009
1010 =item C<Exporter>
1011
1012 Upgraded from version 5.62 to 5.64_01.
1013
1014 =item C<ExtUtils::CBuilder>
1015
1016 Upgraded from version 0.21 to 0.27.
1017
1018 =item C<ExtUtils::Command>
1019
1020 Upgraded from version 1.13 to 1.16.
1021
1022 =item C<ExtUtils::Constant>
1023
1024 Upgraded from version 0.2 to 0.22.
1025
1026 =item C<ExtUtils::Install>
1027
1028 Upgraded from version 1.44 to 1.55.
1029
1030 =item C<ExtUtils::MakeMaker>
1031
1032 Upgraded from version 6.42 to 6.56.
1033
1034 =item C<ExtUtils::Manifest>
1035
1036 Upgraded from version 1.51_01 to 1.57.
1037
1038 =item C<ExtUtils::ParseXS>
1039
1040 Upgraded from version 2.18_02 to 2.21.
1041
1042 =item C<File::Fetch>
1043
1044 Upgraded from version 0.14 to 0.24.
1045
1046 =item C<File::Path>
1047
1048 Upgraded from version 2.04 to 2.08_01.
1049
1050 =item C<File::Temp>
1051
1052 Upgraded from version 0.18 to 0.22.
1053
1054 =item C<Filter::Simple>
1055
1056 Upgraded from version 0.82 to 0.84.
1057
1058 =item C<Filter::Util::Call>
1059
1060 Upgraded from version 1.07 to 1.08.
1061
1062 =item C<Getopt::Long>
1063
1064 Upgraded from version 2.37 to 2.38.
1065
1066 =item C<IO>
1067
1068 Upgraded from version 1.23_01 to 1.25_02.
1069
1070 =item C<IO::Zlib>
1071
1072 Upgraded from version 1.07 to 1.10.
1073
1074 =item C<IPC::Cmd>
1075
1076 Upgraded from version 0.40_1 to 0.54.
1077
1078 =item C<IPC::SysV>
1079
1080 Upgraded from version 1.05 to 2.01.
1081
1082 =item C<Locale::Maketext>
1083
1084 Upgraded from version 1.12 to 1.14.
1085
1086 =item C<Locale::Maketext::Simple>
1087
1088 Upgraded from version 0.18 to 0.21.
1089
1090 =item C<Log::Message>
1091
1092 Upgraded from version 0.01 to 0.02.
1093
1094 =item C<Log::Message::Simple>
1095
1096 Upgraded from version 0.04 to 0.06.
1097
1098 =item C<Math::BigInt>
1099
1100 Upgraded from version 1.88 to 1.89_01.
1101
1102 =item C<Math::BigInt::FastCalc>
1103
1104 Upgraded from version 0.16 to 0.19.
1105
1106 =item C<Math::BigRat>
1107
1108 Upgraded from version 0.21 to 0.24.
1109
1110 =item C<Math::Complex>
1111
1112 Upgraded from version 1.37 to 1.56.
1113
1114 =item C<Memoize>
1115
1116 Upgraded from version 1.01_02 to 1.01_03.
1117
1118 =item C<MIME::Base64>
1119
1120 Upgraded from version 3.07_01 to 3.08.
1121
1122 =item C<Module::Build>
1123
1124 Upgraded from version 0.2808_01 to 0.3603.
1125
1126 =item C<Module::CoreList>
1127
1128 Upgraded from version 2.12 to 2.27.
1129
1130 =item C<Module::Load>
1131
1132 Upgraded from version 0.12 to 0.16.
1133
1134 =item C<Module::Load::Conditional>
1135
1136 Upgraded from version 0.22 to 0.34.
1137
1138 =item C<Module::Loaded>
1139
1140 Upgraded from version 0.01 to 0.06.
1141
1142 =item C<Module::Pluggable>
1143
1144 Upgraded from version 3.6 to 3.9.
1145
1146 =item C<Net::Ping>
1147
1148 Upgraded from version 2.33 to 2.36.
1149
1150 =item C<NEXT>
1151
1152 Upgraded from version 0.60_01 to 0.64.
1153
1154 =item C<Object::Accessor>
1155
1156 Upgraded from version 0.32 to 0.36.
1157
1158 =item C<Package::Constants>
1159
1160 Upgraded from version 0.01 to 0.02.
1161
1162 =item C<PerlIO>
1163
1164 Upgraded from version 1.04 to 1.06.
1165
1166 =item C<Pod::Parser>
1167
1168 Upgraded from version 1.35 to 1.37.
1169
1170 =item C<Pod::Perldoc>
1171
1172 Upgraded from version 3.14_02 to 3.15_02.
1173
1174 =item C<Pod::Plainer>
1175
1176 Upgraded from version 0.01 to 1.02.
1177
1178 NOTE: C<Pod::Plainer> is deprecated and may be removed from a future version of Perl.
1179
1180 =item C<Pod::Simple>
1181
1182 Upgraded from version 3.05 to 3.13.
1183
1184 =item C<Safe>
1185
1186 Upgraded from version 2.12 to 2.22.
1187
1188 =item C<SelfLoader>
1189
1190 Upgraded from version 1.11 to 1.17.
1191
1192 =item C<Storable>
1193
1194 Upgraded from version 2.18 to 2.22.
1195
1196 =item C<Switch>
1197
1198 Upgraded from version 2.13 to 2.16.
1199
1200 NOTE: C<Switch> is deprecated and may be removed from a future version of Perl.
1201
1202 =item C<Sys::Syslog>
1203
1204 Upgraded from version 0.22 to 0.27.
1205
1206 =item C<Term::ANSIColor>
1207
1208 Upgraded from version 1.12 to 2.02.
1209
1210 =item C<Term::UI>
1211
1212 Upgraded from version 0.18 to 0.20.
1213
1214 =item C<Test>
1215
1216 Upgraded from version 1.25 to 1.25_02.
1217
1218 =item C<Test::Harness>
1219
1220 Upgraded from version 2.64 to 3.17.
1221
1222 =item C<Test::Simple>
1223
1224 Upgraded from version 0.72 to 0.94.
1225
1226 =item C<Text::Balanced>
1227
1228 Upgraded from version 2.0.0 to 2.02.
1229
1230 =item C<Text::ParseWords>
1231
1232 Upgraded from version 3.26 to 3.27.
1233
1234 =item C<Text::Soundex>
1235
1236 Upgraded from version 3.03 to 3.03_01.
1237
1238 =item C<Thread::Queue>
1239
1240 Upgraded from version 2.00 to 2.11.
1241
1242 =item C<Thread::Semaphore>
1243
1244 Upgraded from version 2.01 to 2.09.
1245
1246 =item C<Tie::RefHash>
1247
1248 Upgraded from version 1.37 to 1.38.
1249
1250 =item C<Time::HiRes>
1251
1252 Upgraded from version 1.9711 to 1.9719.
1253
1254 =item C<Time::Local>
1255
1256 Upgraded from version 1.18 to 1.1901_01.
1257
1258 =item C<Time::Piece>
1259
1260 Upgraded from version 1.12 to 1.15.
1261
1262 =item C<Unicode::Collate>
1263
1264 Upgraded from version 0.52 to 0.52_01.
1265
1266 =item C<Unicode::Normalize>
1267
1268 Upgraded from version 1.02 to 1.03.
1269
1270 =item C<Win32>
1271
1272 Upgraded from version 0.34 to 0.39.
1273
1274 =item C<Win32API::File>
1275
1276 Upgraded from version 0.1001_01 to 0.1101.
1277
1278 =item C<XSLoader>
1279
1280 Upgraded from version 0.08 to 0.10.
1281
1282 =back
1283
1284 =head2 Removed Modules and Pragmata
1285
1286 =over 4
1287
1288 =item C<attrs>
1289
1290 Removed from the Perl core.  Prior version was 1.02.
1291
1292 =item C<CPAN::API::HOWTO>
1293
1294 Removed from the Perl core.  Prior version was 'undef'.
1295
1296 =item C<CPAN::DeferedCode>
1297
1298 Removed from the Perl core.  Prior version was 5.50.
1299
1300 =item C<CPANPLUS::inc>
1301
1302 Removed from the Perl core.  Prior version was 'undef'.
1303
1304 =item C<DCLsym>
1305
1306 Removed from the Perl core.  Prior version was 1.03.
1307
1308 =item C<ExtUtils::MakeMaker::bytes>
1309
1310 Removed from the Perl core.  Prior version was 6.42.
1311
1312 =item C<ExtUtils::MakeMaker::vmsish>
1313
1314 Removed from the Perl core.  Prior version was 6.42.
1315
1316 =item C<Stdio>
1317
1318 Removed from the Perl core.  Prior version was 2.3.
1319
1320 =item C<Test::Harness::Assert>
1321
1322 Removed from the Perl core.  Prior version was 0.02.
1323
1324 =item C<Test::Harness::Iterator>
1325
1326 Removed from the Perl core.  Prior version was 0.02.
1327
1328 =item C<Test::Harness::Point>
1329
1330 Removed from the Perl core.  Prior version was 0.01.
1331
1332 =item C<Test::Harness::Results>
1333
1334 Removed from the Perl core.  Prior version was 0.01.
1335
1336 =item C<Test::Harness::Straps>
1337
1338 Removed from the Perl core.  Prior version was 0.26_01.
1339
1340 =item C<Test::Harness::Util>
1341
1342 Removed from the Perl core.  Prior version was 0.01.
1343
1344 =item C<XSSymSet>
1345
1346 Removed from the Perl core.  Prior version was 1.1.
1347
1348 =back
1349
1350 =head2 Deprecated Modules and Pragmata
1351
1352 See L</Deprecated Modules> above.
1353
1354
1355 =head1 Documentation
1356
1357 =head2 New Documentation
1358
1359 =over 4
1360
1361 =item *
1362
1363 L<perlhaiku> contains instructions on how to build perl for the Haiku platform.
1364
1365 =item *
1366
1367 L<perlmroapi> describes the new interface for pluggable Method Resolution Orders.
1368
1369 =item *
1370
1371 L<perlperf>, by Richard Foley, provides an introduction to the use of
1372 performance and optimization techniques which can be used with particular
1373 reference to perl programs.
1374
1375 =item *
1376
1377 L<perlrepository> describes how to access the perl source using the I<git> version
1378 control system.
1379
1380 =item *
1381
1382 L<perlpolicy> extends the "Social contract about contributed modules" into
1383 the beginnings of a document on Perl porting policies.
1384
1385 =back
1386
1387 =head2 Changes to Existing Documentation
1388
1389
1390 =over
1391
1392
1393 =item *
1394
1395 The various large F<Changes*> files (which listed every change made to perl
1396 over the last 18 years) have been removed, and replaced by a small file,
1397 also called F<Changes>, which just explains how that same information may
1398 be extracted from the git version control system.
1399
1400 =item *
1401
1402 F<Porting/patching.pod> has been deleted, as it mainly described
1403 interacting with the old Perforce-based repository, which is now obsolete.
1404 Information still relevant has been moved to L<perlrepository>.
1405
1406
1407 =item *
1408
1409 The syntax C<unless (EXPR) BLOCK else BLOCK> is now documented as valid, as
1410 is the syntax C<unless (EXPR) BLOCK elsif (EXPR) BLOCK ... else BLOCK>,
1411 although actually using the latter may not be the best idea for the
1412 readability of your source code.
1413
1414
1415 =item *
1416
1417 Documented -X overloading.
1418
1419 =item *
1420
1421 Documented that C<when()> treats specially most of the filetest operators
1422
1423 =item *
1424
1425 Documented C<when> as a syntax modifier.
1426
1427 =item *
1428
1429 Eliminated "Old Perl threads tutorial", which described 5005 threads.
1430
1431 F<pod/perlthrtut.pod> is the same material reworked for ithreads.
1432
1433 =item *
1434
1435 Correct previous documentation: v-strings are not deprecated
1436
1437 With version objects, we need them to use MODULE VERSION syntax. This
1438 patch removes the deprecation notice.
1439
1440 =item *
1441
1442 Security contact information is now part of L<perlsec>.
1443
1444 =item *
1445
1446 A significant fraction of the core documentation has been updated to clarify
1447 the behavior of Perl's Unicode handling.
1448
1449 Much of the remaining core documentation has been reviewed and edited
1450 for clarity, consistent use of language, and to fix the spelling of Tom
1451 Christiansen's name.
1452
1453 =item *
1454
1455 The Pod specification (L<perlpodspec>) has been updated to bring the
1456 specification in line with modern usage already supported by most Pod
1457 systems. A parameter string may now follow the format name in a
1458 "begin/end" region. Links to URIs with a text description are now
1459 allowed. The usage of C<LE<lt>"section"E<gt>> has been marked as
1460 deprecated.
1461
1462 =item *
1463
1464 L<if.pm|if> has been documented in L<perlfunc/use> as a means to get
1465 conditional loading of modules despite the implicit BEGIN block around
1466 C<use>.
1467
1468 =item *
1469
1470 The documentation for C<$1> in perlvar.pod has been clarified.
1471
1472 =item *
1473
1474 C<\N{U+I<wide hex char>}> is now documented.
1475
1476 =back
1477
1478 =head1 Selected Performance Enhancements
1479
1480 =over 4
1481
1482 =item *
1483
1484 A new internal cache means that C<isa()> will often be faster.
1485
1486 =item *
1487
1488 The implementation of C<C3> Method Resolution Order has been optimised -
1489 linearisation for classes with single inheritance is 40% faster. Performance
1490 for multiple inheritance is unchanged.
1491
1492 =item *
1493
1494 Under C<use locale>, the locale-relevant information is now cached on
1495 read-only values, such as the list returned by C<keys %hash>. This makes
1496 operations such as C<sort keys %hash> in the scope of C<use locale> much
1497 faster.
1498
1499 =item *
1500
1501 Empty C<DESTROY> methods are no longer called.
1502
1503 =item *
1504
1505 C<Perl_sv_utf8_upgrade()> is now faster.
1506
1507 =item *
1508
1509 C<keys> on empty hash is now faster.
1510
1511 =item *
1512
1513 C<if (%foo)> has been optimized to be faster than C<if (keys %foo)>.
1514
1515 =item *
1516
1517 The string repetition operator (C<$str x $num>) is now several times faster
1518 when C<$str> has length one or C<$num> is large.
1519
1520 =item *
1521
1522 Reversing an array to itself (as in C<@a = reverse @a>) in void context
1523 now happens in-place and is several orders of magnitude faster than it
1524 used to be. It will also preserve non-existent elements whenever
1525 possible, i.e. for non magical arrays or tied arrays with C<EXISTS> and
1526 C<DELETE> methods.
1527
1528 =back
1529
1530 =head1 Installation and Configuration Improvements
1531
1532 =over 4
1533
1534 =item *
1535
1536 L<perlapi>, L<perlintern>, L<perlmodlib> and L<perltoc> are now all
1537 generated at build time, rather than being shipped as part of the release.
1538
1539 =item *
1540
1541 If C<vendorlib> and C<vendorarch> are the same, then they are only added to
1542 C<@INC> once.
1543
1544 =item *
1545
1546 C<$Config{usedevel}> and the C-level C<PERL_USE_DEVEL> are now defined if
1547 perl is built with  C<-Dusedevel>.
1548
1549 =item *
1550
1551 F<Configure> will enable use of C<-fstack-protector>, to provide protection
1552 against stack-smashing attacks, if the compiler supports it.
1553
1554 =item *
1555
1556 F<Configure> will now determine the correct prototypes for re-entrant
1557 functions and for C<gconvert> if you are using a C++ compiler rather
1558 than a C compiler.
1559
1560 =item *
1561
1562 On Unix, if you build from a tree containing a git repository, the
1563 configuration process will note the commit hash you have checked out, for
1564 display in the output of C<perl -v> and C<perl -V>. Unpushed local commits
1565 are automatically added to the list of local patches displayed by
1566 C<perl -V>.
1567
1568 =item *
1569
1570 Perl now supports SystemTap's C<dtrace> compatibility layer and an
1571 issue with linking C<miniperl> has been fixed in the process.
1572
1573 =item *
1574
1575 perldoc now uses C<less -R> instead of C<less> for improved behaviour
1576 in the face of C<groff>'s new usage of ANSI escape codes.
1577
1578 =item *
1579
1580
1581 C<perl -V> now reports use of the compile-time options C<USE_PERL_ATOF> and
1582 C<USE_ATTRIBUTES_FOR_PERLIO>.
1583
1584 =item *
1585
1586 As part of the flattening of F<ext>, all extensions on all platforms are
1587 built by F<make_ext.pl>. This replaces the Unix-specific
1588 F<ext/util/make_ext>, VMS-specific F<make_ext.com> and Win32-specific
1589 F<win32/buildext.pl>.
1590
1591 =back
1592
1593 =head1 Internal Changes
1594
1595 Each release of Perl sees numerous internal changes which shouldn't
1596 affect day to day usage but may still be notable for developers working
1597 with Perl's source code.
1598
1599 =over
1600
1601 =item *
1602
1603 The J.R.R. Tolkien quotes at the head of C source file have been checked and
1604 proper citations added, thanks to a patch from Tom Christiansen.
1605
1606 =item *
1607
1608 The internal structure of the dual-life modules traditionally found in
1609 the F<lib/> and F<ext/> directories y in the perl source has changed
1610 significantly. Where possible, dual-lifed modules have been extracted
1611 from F<lib/> and F<ext/>.
1612
1613 Dual-lifed modules maintained by Perl's developers as part of the Perl
1614 core now live in F<dist/>.  Dual-lifed modules maintained primarily on
1615 CPAN now live in F<cpan/>.  When reporting a bug in a module located
1616 under F<cpan/>, please send your bug report directly to the module's
1617 bug tracker or author, rather than Perl's bug tracker.
1618
1619 =item *
1620
1621 C<\N{...}> now compiles better, always forces UTF-8 internal representation
1622
1623 Perl's developers have fixed several problems with the recognition of C<\N{...}>
1624 constructs.  As part of this, perl will store any scalar or regex containing
1625 C<\N{I<name>}> or C<\N{U+I<wide hex char>}> in its definition in
1626 UTF-8 format. (This was true previously for all occurences of C<\N{I<name>}>
1627 that did not use a custom translator, but now it's always true.)
1628
1629 =item *
1630
1631 Perl_magic_setmglob now knows about globs, fixing RT #71254.
1632
1633 =item *
1634
1635 C<SVt_RV> no longer exists. RVs are now stored in IVs.
1636
1637 =item *
1638
1639 REGEXPs are now first class.
1640
1641 =item *
1642
1643 C<Perl_vcroak()> now accepts a null first argument. In addition, a full audit
1644 was made of the "not NULL" compiler annotations, and those for several
1645 other internal functions were corrected.
1646
1647 =item *
1648
1649 New macros C<dSAVEDERRNO>, C<dSAVE_ERRNO>, C<SAVE_ERRNO>, C<RESTORE_ERRNO>
1650 have been added to formalise the temporary saving of the C<errno>
1651 variable.
1652
1653 =item *
1654
1655 The function C<Perl_sv_insert_flags> has been added to augment
1656 C<Perl_sv_insert>.
1657
1658 =item *
1659
1660 The function C<Perl_newSV_type(type)> has been added, equivalent to
1661 C<Perl_newSV()> followed by C<Perl_sv_upgrade(type)>.
1662
1663 =item *
1664
1665 The function C<Perl_newSVpvn_flags()> has been added, equivalent to
1666 C<Perl_newSVpvn()> and then performing the action relevant to the flag.
1667
1668 Two flag bits are currently supported.
1669
1670 =over 4
1671
1672 =item *
1673
1674 C<SVf_UTF8> will call C<SvUTF8_on()> for you. (Note that this does not convert an
1675 sequence of ISO 8859-1 characters to UTF-8). A wrapper, C<newSVpvn_utf8()>
1676 is available for this.
1677
1678 =item *
1679
1680 C<SVs_TEMP> now calls C<Perl_sv_2mortal()> on the new SV.
1681
1682 =back
1683
1684 There is also a wrapper that takes constant strings, C<newSVpvs_flags()>.
1685
1686 =item *
1687
1688 The function C<Perl_croak_xs_usage> has been added as a wrapper to
1689 C<Perl_croak>.
1690
1691 =item *
1692
1693 Perl now exports the functions C<PerlIO_find_layer> and C<PerlIO_list_alloc>.
1694
1695 =item *
1696
1697 C<PL_na> has been exterminated from the core code, replaced by local STRLEN
1698 temporaries, or C<*_nolen()> calls. Either approach is faster than C<PL_na>,
1699 which is a pointer dereference into the interpreter structure under ithreads,
1700 and a global variable otherwise.
1701
1702 =item *
1703
1704 C<Perl_mg_free()> used to leave freed memory accessible via C<SvMAGIC()> on
1705 the scalar. It now updates the linked list to remove each piece of magic
1706 as it is freed.
1707
1708 =item *
1709
1710 Under ithreads, the regex in C<PL_reg_curpm> is now reference counted. This
1711 eliminates a lot of hackish workarounds to cope with it not being reference
1712 counted.
1713
1714 =item *
1715
1716 C<Perl_mg_magical()> would sometimes incorrectly turn on C<SvRMAGICAL()>.
1717 This has been fixed.
1718
1719 =item *
1720
1721 The I<public> IV and NV flags are now not set if the string value has
1722 trailing "garbage". This behaviour is consistent with not setting the
1723 public IV or NV flags if the value is out of range for the type.
1724
1725 =item *
1726
1727 Uses of C<Nullav>, C<Nullcv>, C<Nullhv>, C<Nullop>, C<Nullsv> etc have been
1728 replaced by C<NULL> in the core code, and non-dual-life modules, as C<NULL>
1729 is clearer to those unfamiliar with the core code.
1730
1731 =item *
1732
1733 A macro C<MUTABLE_PTR(p)> has been added, which on (non-pedantic) gcc will
1734 not cast away C<const>, returning a C<void *>. Macros C<MUTABLE_SV(av)>,
1735 C<MUTABLE_SV(cv)> etc build on this, casting to C<AV *> etc without
1736 casting away C<const>. This allows proper compile-time auditing of
1737 C<const> correctness in the core, and helped picked up some errors (now
1738 fixed).
1739
1740 =item *
1741
1742 Macros C<mPUSHs()> and C<mXPUSHs()> have been added, for pushing SVs on the
1743 stack and mortalizing them.
1744
1745 =item *
1746
1747 Use of the private structure C<mro_meta> has changed slightly. Nothing
1748 outside the core should be accessing this directly anyway.
1749
1750 =item *
1751
1752 A new tool, F<Porting/expand-macro.pl> has been added, that allows you
1753 to view how a C preprocessor macro would be expanded when compiled.
1754 This is handy when trying to decode the macro hell that is the perl
1755 guts.
1756
1757 =back
1758
1759 =head1 Testing
1760
1761 =head2 Testing improvements
1762
1763 =over 4
1764
1765 =item Parallel tests
1766
1767 The core distribution can now run its regression tests in parallel on
1768 Unix-like platforms. Instead of running C<make test>, set C<TEST_JOBS> in
1769 your environment to the number of tests to run in parallel, and run
1770 C<make test_harness>. On a Bourne-like shell, this can be done as
1771
1772     TEST_JOBS=3 make test_harness  # Run 3 tests in parallel
1773
1774 An environment variable is used, rather than parallel make itself, because
1775 L<TAP::Harness> needs to be able to schedule individual non-conflicting test
1776 scripts itself, and there is no standard interface to C<make> utilities to
1777 interact with their job schedulers.
1778
1779 Note that currently some test scripts may fail when run in parallel (most
1780 notably C<ext/IO/t/io_dir.t>). If necessary run just the failing scripts
1781 again sequentially and see if the failures go away.
1782
1783 =item Test harness flexibility
1784
1785 It's now possible to override C<PERL5OPT> and friends in F<t/TEST>
1786
1787 =item Test watchdog
1788
1789 Several tests that have the potential to hang forever if they fail now
1790 incorporate a "watchdog" functionality that will kill them after a timeout,
1791 which helps ensure that C<make test> and C<make test_harness> run to
1792 completion automatically. (Jerry Hedden).
1793
1794
1795 =back
1796
1797 =head2 New Tests
1798
1799 Perl's developers have added a number of new tests to the core.
1800 In addition to the items listed below, many modules updated from CPAN
1801 incorporate new tests.
1802
1803 =over 4
1804
1805 =item *
1806
1807 Significant cleanups to core tests to ensure that language and
1808 interpreter features are not used before they're tested.
1809
1810 =item *
1811
1812 C<make test_porting> now runs a number of important pre-commit checks
1813 which might be of use to anyone working on the Perl core.
1814
1815 =item *
1816
1817 F<t/porting/podcheck.t> automatically checks the well-formedness of
1818 POD found in all .pl, .pm and .pod files in the F<MANIFEST>, other than in
1819 dual-lifed modules which are primarily maintained outside the Perl core.
1820
1821 =item *
1822
1823 F<t/porting/manifest.t> now tests that all files listed in MANIFEST are present.
1824
1825 =item *
1826
1827 F<t/op/while_readdir.t> tests that a bare readdir in while loop sets $_.
1828
1829 =item *
1830
1831 F<t/comp/retainedlines.t> checks that the debugger can retain source lines from C<eval>.
1832
1833 =item *
1834
1835 F<t/io/perlio_fail.t> checks that bad layers fail.
1836
1837 =item *
1838
1839 F<t/io/perlio_leaks.t> checks that PerlIO layers are not leaking.
1840
1841 =item *
1842
1843 F<t/io/perlio_open.t> checks that certain special forms of open work.
1844
1845 =item *
1846
1847 F<t/io/perlio.t> includes general PerlIO tests.
1848
1849 =item *
1850
1851 F<t/io/pvbm.t> checks that there is no unexpected interaction between the internal types
1852 C<PVBM> and C<PVGV>.
1853
1854 =item *
1855
1856 F<t/mro/package_aliases.t> checks that mro works properly in the presence of aliased packages.
1857
1858 =item *
1859
1860 F<t/op/dbm.t> tests C<dbmopen> and C<dbmclose>.
1861
1862 =item *
1863
1864 F<t/op/index_thr.t> tests the interaction of C<index> and threads.
1865
1866 =item *
1867
1868 F<t/op/pat_thr.t> tests the interaction of esoteric patterns and threads.
1869
1870 =item *
1871
1872 F<t/op/qr_gc.t> tests that C<qr> doesn't leak.
1873
1874 =item *
1875
1876 F<t/op/reg_email_thr.t> tests the interaction of regex recursion and threads.
1877
1878 =item *
1879
1880 F<t/op/regexp_qr_embed_thr.t> tests the interaction of patterns with embedded C<qr//> and threads.
1881
1882 =item *
1883
1884 F<t/op/regexp_unicode_prop.t> tests Unicode properties in regular expressions.
1885
1886 =item *
1887
1888 F<t/op/regexp_unicode_prop_thr.t> tests the interaction of Unicode properties and threads.
1889
1890 =item *
1891
1892 F<t/op/reg_nc_tie.t> tests the tied methods of C<Tie::Hash::NamedCapture>.
1893
1894 =item *
1895
1896 F<t/op/reg_posixcc.t> checks that POSIX character classes behave consistently.
1897
1898 =item *
1899
1900 F<t/op/re.t>
1901
1902 checks that exportable C<re> functions in F<universal.c> work.
1903
1904 =item *
1905
1906 F<t/op/setpgrpstack.t> checks that C<setpgrp> works.
1907
1908 =item *
1909
1910 F<t/op/substr_thr.t> tests the interaction of C<substr> and threads.
1911
1912 =item *
1913
1914 F<t/op/upgrade.t> checks that upgrading and assigning scalars works.
1915
1916 =item *
1917
1918 F<t/uni/lex_utf8.t> checks that Unicode in the lexer works.
1919
1920 =item *
1921
1922 F<t/uni/tie.t> checks that Unicode and C<tie> work.
1923
1924 =item *
1925
1926 F<t/comp/final_line_num.t> tests whether line numbers are correct at EOF
1927
1928 =item *
1929
1930 F<t/comp/form_scope.t> tests format scoping.
1931
1932 =item *
1933
1934 F<t/comp/line_debug.t> tests whether C<< @{"_<$file"} >> works.
1935
1936 =item *
1937
1938 F<t/op/filetest_t.t> tests if -t file test works.
1939
1940 =item *
1941
1942 F<t/op/qr.t> tests C<qr>.
1943
1944 =item *
1945
1946 F<t/op/utf8cache.t> tests malfunctions of the utf8 cache.
1947
1948 =item *
1949
1950 F<t/re/uniprops.t> test unicodes C<\p{}> regex constructs.
1951
1952 =item *
1953
1954 F<t/op/filehandle.t> tests some suitably portable filetest operators
1955 to check that they work as expected, particularly in the light of some
1956 internal changes made in how filehandles are blessed.
1957
1958 =item *
1959
1960 F<t/op/time_loop.t> tests that unix times greater than C<2**63>, which
1961 can now be handed to C<gmtime> and C<localtime>, do not cause an internal
1962 overflow or an excessively long loop.
1963
1964 =back
1965
1966
1967 =head1 New or Changed Diagnostics
1968
1969 =head2 New Diagnostics
1970
1971 =over
1972
1973 =item *
1974
1975 SV allocation tracing has been added to the diagnostics enabled by C<-Dm>.
1976 The tracing can alternatively output via the C<PERL_MEM_LOG> mechanism, if
1977 that was enabled when the F<perl> binary was compiled.
1978
1979 =item *
1980
1981 Smartmatch resolution tracing has been added as a new diagnostic. Use C<-DM> to
1982 enable it.
1983
1984 =item *
1985
1986 A new debugging flag C<-DB> now dumps subroutine definitions, leaving
1987 C<-Dx> for its original purpose of dumping syntax trees.
1988
1989 =item *
1990
1991 Perl 5.12 provides a number of new diagnostic messages to help you write
1992 better code.  See L<perldiag> for details of these new messages.
1993
1994 =over 4
1995
1996 =item *
1997
1998 C<Bad plugin affecting keyword '%s'>
1999
2000 =item *
2001
2002 C<gmtime(%.0f) too large>
2003
2004 =item *
2005
2006 C<Lexing code attempted to stuff non-Latin-1 character into Latin-1 input>
2007
2008 =item *
2009
2010 C<Lexing code internal error (%s)>
2011
2012 =item *
2013
2014 C<localtime(%.0f) too large>
2015
2016 =item *
2017
2018 C<Overloaded dereference did not return a reference>
2019
2020 =item *
2021
2022 C<Overloaded qr did not return a REGEXP>
2023
2024 =item *
2025
2026 C<Perl_pmflag() is deprecated, and will be removed from the XS API>
2027
2028 =item *
2029
2030 C<lvalue attribute ignored after the subroutine has been defined>
2031
2032 This new warning is issued when one attempts to mark a subroutine as
2033 lvalue after it has been defined.
2034
2035 =item *
2036
2037 Perl now warns you if C<++> or C<--> are unable to change the value because it's
2038 beyond the limit of representation.
2039
2040 This uses a new warnings category: "imprecision".
2041
2042 =item * 
2043
2044 C<lc>, C<uc>, C<lcfirst>, and C<ucfirst> warn when passed undef.
2045
2046 =item *
2047
2048 C<Show constant in "Useless use of a constant in void context">
2049
2050 =item *
2051
2052 C<Prototype after '%s'>
2053
2054 =item *
2055
2056 C<panic: sv_chop %s>
2057
2058 This new fatal error occurs when the C routine C<Perl_sv_chop()> was
2059 passed a position that is not within the scalar's string buffer. This
2060 could be caused by buggy XS code, and at this point recovery is not
2061 possible.
2062
2063
2064 =item *
2065
2066 The fatal error C<Malformed UTF-8 returned by \N> is now produced if the
2067 C<charnames> handler returns malformed UTF-8.
2068
2069 =item *
2070
2071 If an unresolved named character or sequence was encountered when compiling a
2072 regex pattern then the fatal error C<\N{NAME} must be resolved by the lexer>
2073 is now produced. This can happen, for example, when using a single-quotish
2074 context like C<$re = '\N{SPACE}'; /$re/;>. See L<perldiag> for more examples of
2075 how the lexer can get bypassed.
2076
2077 =item *
2078
2079 C<Invalid hexadecimal number in \N{U+...}> is a new fatal error triggered when
2080 the character constant represented by C<...> is not a valid hexadecimal
2081 number.
2082
2083 =item *
2084
2085 The new meaning of C<\N> as C<[^\n]> is not valid in a bracketed character
2086 class, just like C<.> in a character class loses its special meaning, and will
2087 cause the fatal error C<\N in a character class must be a named character: \N{...}>.
2088
2089 =item *
2090
2091 The rules on what is legal for the C<...> in C<\N{...}> have been tightened
2092 up so that unless the C<...> begins with an alphabetic character and continues
2093 with a combination of alphanumerics, dashes, spaces, parentheses or colons
2094 then the warning C<Deprecated character(s) in \N{...} starting at '%s'> is
2095 now issued.
2096
2097 =item *
2098
2099 The warning C<Using just the first characters returned by \N{}> will be
2100 issued if the C<charnames> handler returns a sequence of characters which
2101 exceeds the limit of the number of characters that can be used. The message
2102 will indicate which characters were used and which were discarded.
2103
2104 =back
2105
2106 =back
2107
2108 =head2 Changed Diagnostics
2109
2110 A number of existing diagnostic messages have been improved or corrected:
2111
2112 =over
2113
2114 =item *
2115
2116 A new warning category C<illegalproto> allows finer-grained control of
2117 warnings around function prototypes.
2118
2119 The two warnings:
2120
2121 =over
2122
2123 =item C<Illegal character in prototype for %s : %s>
2124
2125 =item C<Prototype after '%c' for %s : %s>
2126
2127 =back
2128
2129 have been moved from the C<syntax> top-level warnings category into a new
2130 first-level category, C<illegalproto>. These two warnings are currently the
2131 only ones emitted during parsing of an invalid/illegal prototype, so one
2132 can now do
2133
2134   no warnings 'illegalproto';
2135
2136 to suppress only those, but not other syntax-related warnings. Warnings where
2137 prototypes are changed, ignored, or not met are still in the C<prototype>
2138 category as before. (Matt S. Trout)
2139
2140 =item *
2141
2142 C<Deep recursion on subroutine "%s">
2143
2144 It is now possible to change the depth threshold for this warning from the
2145 default of 100, by recompiling the F<perl> binary, setting the C
2146 pre-processor macro C<PERL_SUB_DEPTH_WARN> to the desired value.
2147
2148 =item *
2149
2150 C<Illegal character in prototype> warning is now more precise
2151 when reporting illegal characters after _
2152
2153 =item *
2154
2155 mro merging error messages are now very similar to those produced by L<Algorithm::C3>.
2156
2157 =item *
2158
2159 Amelioration of the error message "Unrecognized character %s in column %d"
2160
2161 Changes the error message to "Unrecognized character %s; marked by E<lt>--
2162 HERE after %sE<lt>-- HERE near column %d". This should make it a little
2163 simpler to spot and correct the suspicious character.
2164
2165 =item *
2166
2167 Perl now explicitly points to C<$.> when it causes an uninitialized warning for
2168 ranges in scalar context.
2169
2170 =item *
2171
2172 C<split> now warns when called in void context.
2173
2174 =item *
2175
2176 C<printf>-style functions called with too few arguments will now issue the
2177 warning C<"Missing argument in %s"> [perl #71000]
2178
2179 =item *
2180
2181 Perl now properly returns a syntax error instead of segfaulting
2182 if C<each>, C<keys>, or C<values> is used without an argument.
2183
2184 =item *
2185
2186 C<tell()> now fails properly if called without an argument and when no
2187 previous file was read.
2188
2189 C<tell()> now returns C<-1>, and sets errno to C<EBADF>, thus restoring
2190 the 5.8.x behaviour.
2191
2192 =item *
2193
2194 C<overload> no longer implicitly unsets fallback on repeated 'use
2195 overload' lines.
2196
2197 =item *
2198
2199 POSIX::strftime() can now handle Unicode characters in the format string.
2200
2201 =item *
2202
2203 The C<syntax> category was removed from 5 warnings that should only be in
2204 C<deprecated>.
2205
2206 =item *
2207
2208 Three fatal C<pack>/C<unpack> error messages have been normalized to
2209 C<panic: %s>
2210
2211 =item *
2212
2213 C<Unicode character is illegal> has been rephrased to be more accurate
2214
2215 It now reads C<Unicode non-character is illegal in interchange> and the
2216 perldiag documentation has been expanded a bit.
2217
2218 =item *
2219
2220 Currently, all but the first of the several characters that the C<charnames>
2221 handler may return are discarded when used in a regular expression pattern
2222 bracketed character class. If this happens then the warning C<Using just the
2223 first character returned by \N{} in character class> will be issued.
2224
2225 =item *
2226
2227 The warning C<Missing right brace on \N{} or unescaped left brace after \N.
2228 Assuming the latter> will be issued if Perl encounters a C<\N{> but doesn't
2229 find a matching C<}>. In this case Perl doesn't know if it was mistakenly
2230 omitted, or if "match non-newline" followed by "match a C<{>" was desired.
2231 It assumes the latter because that is actually a valid interpretation as
2232 written, unlike the other case.  If you meant the former, you need to add the
2233 matching right brace.  If you did mean the latter, you can silence this
2234 warning by writing instead C<\N\{>.
2235
2236 =item *
2237
2238 C<gmtime> and C<localtime> called with numbers smaller than they can reliably
2239 handle will now issue the warnings C<gmtime(%.0f) too small> and
2240 C<localtime(%.0f) too small>.
2241
2242 =back
2243
2244 The following diagnostic messages have been removed:
2245
2246 =over 4
2247
2248 =item *
2249
2250 C<Runaway format>
2251
2252 =item *
2253
2254 C<Can't locate package %s for the parents of %s>
2255
2256 In general this warning it only got produced in
2257 conjunction with other warnings, and removing it allowed an ISA lookup
2258 optimisation to be added.
2259
2260 =item *
2261
2262 C<v-string in use/require is non-portable>
2263
2264 =back
2265
2266 =head1 Utility Changes
2267
2268 =over 4
2269
2270 =item *
2271
2272 F<h2ph> now looks in C<include-fixed> too, which is a recent addition to gcc's
2273 search path.
2274
2275 =item *
2276
2277 F<h2xs> no longer incorrectly treats enum values like macros (Daniel Burr).
2278 It also now handles C++ style comments (C<//>) properly in enums. (A patch from
2279 Rainer Weikusat was used; Daniel Burr also proposed a similar fix).
2280
2281 =item *
2282
2283 F<perl5db.pl> now supports C<LVALUE> subroutines.  Additionally, the
2284 debugger now correctly handles proxy constant subroutines, and
2285 subroutine stubs.
2286
2287 =item *
2288
2289 F<perlbug> now uses C<%Module::CoreList::bug_tracker> to print out
2290 upstream bug tracker URLs.  If a user identifies a particular module
2291 as the topic of their bug report and we're able to divine the URL for
2292 its upstream bug tracker, perlbug now provide a message to the user
2293 explaining that the core copies the CPAN version directly, and provide
2294 the URL for reporting the bug directly to the upstream author.
2295
2296 F<perlbug> no longer reports "Message sent" when it hasn't actually sent the message
2297
2298 =item *
2299
2300 F<perlthanks> is a new utility for sending non-bug-reports to the
2301 authors and maintainers of Perl. Getting nothing but bug reports can
2302 become a bit demoralising. If Perl 5.12 works well for you, please try
2303 out F<perlthanks>. It will make the developers smile.
2304
2305 =item *
2306
2307 Perl's developers have fixed bugs in F<a2p> having to do with the
2308 C<match()> operator in list context.  Additionally, F<a2p> no longer
2309 generates code that uses the C<$[> variable.
2310
2311 =back
2312
2313 =head1 Selected Bug Fixes
2314
2315 =over 4
2316
2317 =item *
2318
2319 U+0FFFF is now a legal character in regular expressions.
2320
2321 =item *
2322
2323 pp_qr now always returns a new regexp SV. Resolves RT #69852.
2324
2325 Instead of returning a(nother) reference to the (pre-compiled) regexp in the
2326 optree, use reg_temp_copy() to create a copy of it, and return a reference to
2327 that. This resolves issues about Regexp::DESTROY not being called in a timely
2328 fashion (the original bug tracked by RT #69852), as well as bugs related to
2329 blessing regexps, and of assigning to regexps, as described in correspondence
2330 added to the ticket.
2331
2332 It transpires that we also need to undo the SvPVX() sharing when ithreads
2333 cloning a Regexp SV, because mother_re is set to NULL, instead of a cloned
2334 copy of the mother_re. This change might fix bugs with regexps and threads in
2335 certain other situations, but as yet neither tests nor bug reports have
2336 indicated any problems, so it might not actually be an edge case that it's
2337 possible to reach.
2338
2339 =item *
2340
2341 Several compilation errors and segfaults when perl was built with C<-Dmad> were fixed.
2342
2343 =item *
2344
2345 Fixes for lexer API changes in 5.11.2 which broke NYTProf's savesrc option.
2346
2347 =item *
2348
2349 C<-t> should only return TRUE for file handles connected to a TTY
2350
2351 The Microsoft C version of C<isatty()> returns TRUE for all
2352 character mode devices, including the F</dev/null>-style "nul"
2353 device and printers like "lpt1".
2354
2355 =item *
2356
2357 Fixed a regression caused by commit fafafbaf which caused a panic during
2358 parameter passing [perl #70171]
2359
2360 =item *
2361
2362 On systems which in-place edits without backup files, -i'*' now works as
2363 the documentation says it does [perl #70802]
2364
2365 =item *
2366
2367 Saving and restoring magic flags no longer loses readonly flag.
2368
2369 =item *
2370
2371 The malformed syntax C<grep EXPR LIST> (note the missing comma) no longer
2372 causes abrupt and total failure.
2373
2374 =item *
2375
2376 Regular expressions compiled with C<qr{}> literals properly set C<$'> when
2377 matching again.
2378
2379 =item *
2380
2381 Using named subroutines with C<sort> should no longer lead to bus errors [perl
2382 #71076]
2383
2384 =item *
2385
2386 Numerous bugfixes catch small issues caused by the recently-added Lexer API.
2387
2388 =item *
2389
2390 Smart match against C<@_> sometimes gave false negatives. [perl #71078]
2391
2392 =item *
2393
2394 C<$@> may now be assigned a read-only value (without error or busting
2395 the stack).
2396
2397 =item *
2398
2399 C<sort> called recursively from within an active comparison subroutine no
2400 longer causes a bus error if run multiple times. [perl #71076]
2401
2402 =item *
2403
2404 Tie::Hash::NamedCapture::* will not abort if passed bad input (RT #71828)
2405
2406 =item *
2407
2408 @_ and $_ no longer leak under threads (RT #34342 and #41138, also
2409 #70602, #70974)
2410
2411 =item *
2412
2413 C<-I> on shebang line now adds directories in front of @INC
2414 as documented, and as does C<-I> when specified on the command-line.
2415
2416 =item *
2417
2418 C<kill> is now fatal when called on non-numeric process identifiers.
2419 Previously, an C<undef> process identifier would be interpreted as a
2420 request to kill process 0, which would terminate the current process
2421 group on POSIX systems. Since process identifiers are always integers,
2422 killing a non-numeric process is now fatal.
2423
2424 =item *
2425
2426 5.10.0 inadvertently disabled an optimisation, which caused a measurable
2427 performance drop in list assignment, such as is often used to assign
2428 function parameters from C<@_>. The optimisation has been re-instated, and
2429 the performance regression fixed. (This fix is also present in 5.10.1)
2430
2431 =item *
2432
2433 Fixed memory leak on C<while (1) { map 1, 1 }> [RT #53038].
2434
2435 =item *
2436
2437 Some potential coredumps in PerlIO fixed [RT #57322,54828].
2438
2439 =item *
2440
2441 The debugger now works with lvalue subroutines.
2442
2443 =item *
2444
2445 The debugger's C<m> command was broken on modules that defined constants
2446 [RT #61222].
2447
2448 =item *
2449
2450 C<crypt> and string complement could return tainted values for untainted
2451 arguments [RT #59998].
2452
2453 =item *
2454
2455 The C<-i>I<.suffix> command-line switch now recreates the file using
2456 restricted permissions, before changing its mode to match the original
2457 file. This eliminates a potential race condition [RT #60904].
2458
2459 =item *
2460
2461 On some Unix systems, the value in C<$?> would not have the top bit set
2462 (C<$? & 128>) even if the child core dumped.
2463
2464 =item *
2465
2466 Under some circumstances, C<$^R> could incorrectly become undefined
2467 [RT #57042].
2468
2469 =item *
2470
2471 In the XS API, various hash functions, when passed a pre-computed hash where
2472 the key is UTF-8, might result in an incorrect lookup.
2473
2474 =item *
2475
2476 XS code including F<XSUB.h> before F<perl.h> gave a compile-time error
2477 [RT #57176].
2478
2479 =item *
2480
2481 C<< $object-E<gt>isa('Foo') >> would report false if the package C<Foo> didn't
2482 exist, even if the object's C<@ISA> contained C<Foo>.
2483
2484 =item *
2485
2486 Various bugs in the new-to 5.10.0 mro code, triggered by manipulating
2487 C<@ISA>, have been found and fixed.
2488
2489 =item *
2490
2491 Bitwise operations on references could crash the interpreter, e.g.
2492 C<$x=\$y; $x |= "foo"> [RT #54956].
2493
2494 =item *
2495
2496 Patterns including alternation might be sensitive to the internal UTF-8
2497 representation, e.g.
2498
2499     my $byte = chr(192);
2500     my $utf8 = chr(192); utf8::upgrade($utf8);
2501     $utf8 =~ /$byte|X}/i;       # failed in 5.10.0
2502
2503 =item *
2504
2505 Within UTF8-encoded Perl source files (i.e. where C<use utf8> is in
2506 effect), double-quoted literal strings could be corrupted where a C<\xNN>,
2507 C<\0NNN> or C<\N{}> is followed by a literal character with ordinal value
2508 greater than 255 [RT #59908].
2509
2510 =item *
2511
2512 C<B::Deparse> failed to correctly deparse various constructs:
2513 C<readpipe STRING> [RT #62428], C<CORE::require(STRING)> [RT #62488],
2514 C<sub foo(_)> [RT #62484].
2515
2516 =item *
2517
2518 Using C<setpgrp> with no arguments could corrupt the perl stack.
2519
2520 =item *
2521
2522 The block form of C<eval> is now specifically trappable by C<Safe> and
2523 C<ops>. Previously it was erroneously treated like string C<eval>.
2524
2525 =item *
2526
2527 In 5.10.0, the two characters C<[~> were sometimes parsed as the smart
2528 match operator (C<~~>) [RT #63854].
2529
2530 =item *
2531
2532 In 5.10.0, the C<*> quantifier in patterns was sometimes treated as
2533 C<{0,32767}> [RT #60034, #60464]. For example, this match would fail:
2534
2535     ("ab" x 32768) =~ /^(ab)*$/
2536
2537 =item *
2538
2539 C<shmget> was limited to a 32 bit segment size on a 64 bit OS [RT #63924].
2540
2541 =item *
2542
2543 Using C<next> or C<last> to exit a C<given> block no longer produces a
2544 spurious warning like the following:
2545
2546     Exiting given via last at foo.pl line 123
2547
2548 =item *
2549
2550 Assigning a format to a glob could corrupt the format; e.g.:
2551
2552      *bar=*foo{FORMAT}; # foo format now bad
2553
2554 =item *
2555
2556 Attempting to coerce a typeglob to a string or number could cause an
2557 assertion failure. The correct error message is now generated,
2558 C<Can't coerce GLOB to I<$type>>.
2559
2560 =item *
2561
2562 Under C<use filetest 'access'>, C<-x> was using the wrong access mode. This
2563 has been fixed [RT #49003].
2564
2565 =item *
2566
2567 C<length> on a tied scalar that returned a Unicode value would not be
2568 correct the first time. This has been fixed.
2569
2570 =item *
2571
2572 Using an array C<tie> inside in array C<tie> could SEGV. This has been
2573 fixed. [RT #51636]
2574
2575 =item *
2576
2577 A race condition inside C<PerlIOStdio_close()> has been identified and
2578 fixed. This used to cause various threading issues, including SEGVs.
2579
2580 =item *
2581
2582 In C<unpack>, the use of C<()> groups in scalar context was internally
2583 placing a list on the interpreter's stack, which manifested in various
2584 ways, including SEGVs. This is now fixed [RT #50256].
2585
2586 =item *
2587
2588 Magic was called twice in C<substr>, C<\&$x>, C<tie $x, $m> and C<chop>.
2589 These have all been fixed.
2590
2591 =item *
2592
2593 A 5.10.0 optimisation to clear the temporary stack within the implicit
2594 loop of C<s///ge> has been reverted, as it turned out to be the cause of
2595 obscure bugs in seemingly unrelated parts of the interpreter [commit
2596 ef0d4e17921ee3de].
2597
2598 =item *
2599
2600 The line numbers for warnings inside C<elsif> are now correct.
2601
2602 =item *
2603
2604 The C<..> operator now works correctly with ranges whose ends are at or
2605 close to the values of the smallest and largest integers.
2606
2607 =item *
2608
2609 C<binmode STDIN, ':raw'> could lead to segmentation faults on some platforms.
2610 This has been fixed [RT #54828].
2611
2612 =item *
2613
2614 An off-by-one error meant that C<index $str, ...> was effectively being
2615 executed as C<index "$str\0", ...>. This has been fixed [RT #53746].
2616
2617 =item *
2618
2619 Various leaks associated with named captures in regexes have been fixed
2620 [RT #57024].
2621
2622 =item *
2623
2624 A weak reference to a hash would leak. This was affecting C<DBI>
2625 [RT #56908].
2626
2627 =item *
2628
2629 Using (?|) in a regex could cause a segfault [RT #59734].
2630
2631 =item *
2632
2633 Use of a UTF-8 C<tr//> within a closure could cause a segfault [RT #61520].
2634
2635 =item *
2636
2637 Calling C<Perl_sv_chop()> or otherwise upgrading an SV could result in an
2638 unaligned 64-bit access on the SPARC architecture [RT #60574].
2639
2640 =item *
2641
2642 In the 5.10.0 release, C<inc_version_list> would incorrectly list
2643 C<5.10.*> after C<5.8.*>; this affected the C<@INC> search order
2644 [RT #67628].
2645
2646 =item *
2647
2648 In 5.10.0, C<pack "a*", $tainted_value> returned a non-tainted value
2649 [RT #52552].
2650
2651 =item *
2652
2653 In 5.10.0, C<printf> and C<sprintf> could produce the fatal error
2654 C<panic: utf8_mg_pos_cache_update> when printing UTF-8 strings
2655 [RT #62666].
2656
2657 =item *
2658
2659 In the 5.10.0 release, a dynamically created C<AUTOLOAD> method might be
2660 missed (method cache issue) [RT #60220,60232].
2661
2662 =item *
2663
2664 In the 5.10.0 release, a combination of C<use feature> and C<//ee> could
2665 cause a memory leak [RT #63110].
2666
2667 =item *
2668
2669 C<-C> on the shebang (C<#!>) line is once more permitted if it is also
2670 specified on the command line. C<-C> on the shebang line used to be a
2671 silent no-op I<if> it was not also on the command line, so perl 5.10.0
2672 disallowed it, which broke some scripts. Now perl checks whether it is
2673 also on the command line and only dies if it is not [RT #67880].
2674
2675 =item *
2676
2677 In 5.10.0, certain types of re-entrant regular expression could crash,
2678 or cause the following assertion failure [RT #60508]:
2679
2680     Assertion rx->sublen >= (s - rx->subbeg) + i failed
2681
2682 =item *
2683
2684 Perl now includes previously missing files from the Unicode Character Database.
2685
2686 =item *
2687
2688 Perl now honors C<TMPDIR> when opening an anonymous temporary file.
2689
2690 =back
2691
2692
2693 =head1 Platform Specific Changes
2694
2695 Perl is incredibly portable. In general, if a platform has a C compiler,
2696 someone has ported Perl to it (or will soon).  We're happy to announce
2697 that Perl 5.12 includes support for several new platforms.  At the same
2698 time, it's time to bid farewell to some (very) old friends.
2699
2700 =head2 New Platforms
2701
2702 =over
2703
2704 =item Haiku
2705
2706 Perl's developers have merged patches from Haiku's maintainers. Perl should now
2707 build on Haiku.
2708
2709 =item MirOS BSD
2710
2711 Perl should now build on MirOS BSD.
2712
2713 =back
2714
2715 =head2 Discontinued Platforms
2716
2717 =over
2718
2719 =item DomainOS
2720
2721 =item MiNT
2722
2723 =item Tenon MachTen
2724
2725 =back
2726
2727 =head2 Updated Platforms
2728
2729 =over 4
2730
2731 =item AIX
2732
2733 =over 4
2734
2735 =item *
2736
2737 Removed F<libbsd> for AIX 5L and 6.1. Only C<flock()> was used from F<libbsd>.
2738
2739 =item *
2740
2741 Removed F<libgdbm> for AIX 5L and 6.1 if F<libgdbm> < 1.8.3-5 is installed.
2742 The F<libgdbm> is delivered as an optional package with the AIX Toolbox.
2743 Unfortunately the versions below 1.8.3-5 are broken.
2744
2745 =item *
2746
2747 Hints changes mean that AIX 4.2 should work again.
2748
2749 =back
2750
2751 =item Cygwin
2752
2753 =over 4
2754
2755 =item *
2756
2757 Perl now supports IPv6 on Cygwin 1.7 and newer.
2758
2759 =item *
2760
2761 On Cygwin we now strip the last number from the DLL. This has been the
2762 behaviour in the cygwin.com build for years. The hints files have been
2763 updated.
2764
2765 =back
2766
2767 =item Darwin (Mac OS X)
2768
2769 =over 4
2770
2771 =item *
2772
2773 Skip testing the be_BY.CP1131 locale on Darwin 10 (Mac OS X 10.6),
2774 as it's still buggy.
2775
2776 =item *
2777
2778 Correct infelicities in the regexp used to identify buggy locales
2779 on Darwin 8 and 9 (Mac OS X 10.4 and 10.5, respectively).
2780
2781 =back
2782
2783 =item DragonFly BSD
2784
2785 =over 4
2786
2787 =item *
2788
2789 Fix thread library selection [perl #69686]
2790
2791 =back
2792
2793 =item FreeBSD
2794
2795 =over 4
2796
2797 =item *
2798
2799 The hints files now identify the correct threading libraries on FreeBSD 7
2800 and later.
2801
2802 =back
2803
2804 =item Irix
2805
2806 =over 4
2807
2808 =item *
2809
2810 We now work around a bizarre preprocessor bug in the Irix 6.5 compiler:
2811 C<cc -E -> unfortunately goes into K&R mode, but C<cc -E file.c> doesn't.
2812
2813 =back
2814
2815 =item NetBSD
2816
2817 =over 4
2818
2819 =item *
2820
2821 Hints now supports versions 5.*.
2822
2823 =back
2824
2825 =item OpenVMS
2826
2827 =over 4
2828
2829 =item *
2830
2831 C<-UDEBUGGING> is now the default on VMS.
2832
2833 Like it has been everywhere else for ages and ages. Also make
2834 command-line selection of -UDEBUGGING and -DDEBUGGING work in
2835 configure.com; before the only way to turn it off was by saying
2836 no in answer to the interactive question.
2837
2838 =item *
2839
2840 The default pipe buffer size on VMS has been updated to 8192 on 64-bit
2841 systems.
2842
2843 =item *
2844
2845 Reads from the in-memory temporary files of C<PerlIO::scalar> used to fail
2846 if C<$/> was set to a numeric reference (to indicate record-style reads).
2847 This is now fixed.
2848
2849 =item *
2850
2851 VMS now supports C<getgrgid>.
2852
2853 =item *
2854
2855 Many improvements and cleanups have been made to the VMS file name handling
2856 and conversion code.
2857
2858 =item *
2859
2860 Enabling the C<PERL_VMS_POSIX_EXIT> logical name now encodes a POSIX exit
2861 status in a VMS condition value for better interaction with GNV's bash
2862 shell and other utilities that depend on POSIX exit values. See
2863 L<perlvms/"$?"> for details.
2864
2865 =item *
2866
2867 C<File::Copy> now detects Unix compatibility mode on VMS.
2868
2869 =back
2870
2871 =item Stratus VOS
2872
2873 =over 4
2874
2875 =item *
2876
2877 Various changes from Stratus have been merged in.
2878
2879 =back
2880
2881 =item Symbian
2882
2883 =over 4
2884
2885 =item *
2886
2887 There is now support for Symbian S60 3.2 SDK and S60 5.0 SDK.
2888
2889 =back
2890
2891 =item Windows
2892
2893 =over 4
2894
2895 =item *
2896
2897 Perl 5.12 supports Windows 2000 and later. The supporting code for
2898 legacy versions of Windows is still included, but will be removed
2899 during the next development cycle.
2900
2901 =item *
2902
2903 Initial support for building Perl with MinGW-w64 is now available.
2904
2905 =item *
2906
2907 F<perl.exe> now includes a manifest resource to specify the C<trustInfo>
2908 settings for Windows Vista and later. Without this setting Windows
2909 would treat F<perl.exe> as a legacy application and apply various
2910 heuristics like redirecting access to protected file system areas
2911 (like the "Program Files" folder) to the users "VirtualStore"
2912 instead of generating a proper "permission denied" error.
2913
2914 The manifest resource also requests the Microsoft Common-Controls
2915 version 6.0 (themed controls introduced in Windows XP).  Check out the
2916 Win32::VisualStyles module on CPAN to switch back to old style
2917 unthemed controls for legacy applications.
2918
2919 =item *
2920
2921 The C<-t> filetest operator now only returns true if the filehandle
2922 is connected to a console window.  In previous versions of Perl it
2923 would return true for all character mode devices, including F<NUL>
2924 and F<LPT1>.
2925
2926 =item *
2927
2928 The C<-p> filetest operator now works correctly, and the
2929 Fcntl::S_IFIFO constant is defined when Perl is compiled with
2930 Microsoft Visual C.  In previous Perl versions C<-p> always
2931 returned a false value, and the Fcntl::S_IFIFO constant
2932 was not defined.
2933
2934 This bug is specific to Microsoft Visual C and never affected
2935 Perl binaries built with MinGW.
2936
2937 =item *
2938
2939 The socket error codes are now more widely supported:  The POSIX
2940 module will define the symbolic names, like POSIX::EWOULDBLOCK,
2941 and stringification of socket error codes in $! works as well
2942 now;
2943
2944   C:\>perl -MPOSIX -E "$!=POSIX::EWOULDBLOCK; say $!"
2945   A non-blocking socket operation could not be completed immediately.
2946
2947 =item *
2948
2949 flock() will now set sensible error codes in $!.  Previous Perl versions
2950 copied the value of $^E into $!, which caused much confusion.
2951
2952 =item *
2953
2954 select() now supports all empty C<fd_set>s more correctly.
2955
2956 =item *
2957
2958 C<'.\foo'> and C<'..\foo'>  were treated differently than
2959 C<'./foo'> and C<'../foo'> by C<do> and C<require> [RT #63492].
2960
2961 =item *
2962
2963 Improved message window handling means that C<alarm> and C<kill> messages
2964 will no longer be dropped under race conditions.
2965
2966 =item *
2967
2968 Various bits of Perl's build infrastructure are no longer converted to
2969 win32 line endings at release time. If this hurts you, please report the
2970 problem with the L<perlbug> program included with perl.
2971
2972 =back
2973
2974 =back
2975
2976
2977 =head1 Known Problems
2978
2979 This is a list of some significant unfixed bugs, which are regressions
2980 from either 5.10.x or 5.8.x.
2981
2982 =over 4
2983
2984 =item *
2985
2986 C<List::Util::first> misbehaves in the presence of a lexical C<$_>
2987 (typically introduced by C<my $_> or implicitly by C<given>). The variable
2988 which gets set for each iteration is the package variable C<$_>, not the
2989 lexical C<$_> [RT #67694].
2990
2991 A similar issue may occur in other modules that provide functions which
2992 take a block as their first argument, like
2993
2994     foo { ... $_ ...} list
2995
2996 =item *
2997
2998 Some regexes may run much more slowly when run in a child thread compared
2999 with the thread the pattern was compiled into [RT #55600].
3000
3001 =item *
3002
3003 Things like C<"\N{LATIN SMALL LIGATURE FF}" =~ /\N{LATIN SMALL LETTER F}+/>
3004 will appear to hang as they get into a very long running loop [RT #72998].
3005
3006 =item *
3007
3008 Several porters have reported mysterious crashes when Perl's entire
3009 test suite is run after a build on certain Windows 2000 systems. When
3010 run by hand, the individual tests reportedly work fine.
3011
3012 =back
3013
3014 =head1 Errata
3015
3016 =over
3017
3018 =item *
3019
3020 This one is actually a change introduced in 5.10.0, but it was missed
3021 from that release's perldelta, so it is mentioned here instead.
3022
3023 A bugfix related to the handling of the C</m> modifier and C<qr> resulted
3024 in a change of behaviour between 5.8.x and 5.10.0:
3025
3026     # matches in 5.8.x, doesn't match in 5.10.0
3027     $re = qr/^bar/; "foo\nbar" =~ /$re/m;
3028
3029 =back
3030
3031 =head1 Acknowledgements
3032
3033 Perl 5.12.0 represents approximately two years of development since
3034 Perl 5.10.0 and contains over 750,000 lines of changes across over
3035 3,000 files from over 200 authors and committers.
3036
3037 Perl continues to flourish into its third decade thanks to a vibrant
3038 community of users and developers.  The following people are known to
3039 have contributed the improvements that became Perl 5.12.0:
3040
3041 Aaron Crane, Abe Timmerman, Abhijit Menon-Sen, Abigail, Adam Russell,
3042 Adriano Ferreira, Ævar Arnfjörð Bjarmason, Alan Grover, Alexandr
3043 Ciornii, Alex Davies, Alex Vandiver, Andreas Koenig, Andrew Rodland,
3044 andrew@sundale.net, Andy Armstrong, Andy Dougherty, Jose AUGUSTE-ETIENNE,
3045 Benjamin Smith, Ben Morrow, bharanee rathna, Bo Borgerson, Bo Lindbergh,
3046 Brad Gilbert, Bram, Brendan O'Dea, brian d foy, Charles Bailey,
3047 Chip Salzenberg, Chris 'BinGOs' Williams, Christoph Lamprecht, Chris
3048 Williams, chromatic, Claes Jakobsson, Craig A. Berry, Dan Dascalescu,
3049 Daniel Frederick Crisman, Daniel M. Quinlan, Dan Jacobson, Dan Kogai,
3050 Dave Mitchell, Dave Rolsky, David Cantrell, David Dick, David Golden,
3051 David Mitchell, David M. Syzdek, David Nicol, David Wheeler, Dennis
3052 Kaarsemaker, Dintelmann, Peter, Dominic Dunlop, Dr.Ruud, Duke Leto,
3053 Enrico Sorcinelli, Eric Brine, Father Chrysostomos, Florian Ragwitz,
3054 Frank Wiegand, Gabor Szabo, Gene Sullivan, Geoffrey T. Dairiki, George
3055 Greer, Gerard Goossen, Gisle Aas, Goro Fuji, Graham Barr, Green, Paul,
3056 Hans Dieter Pearcey, Harmen, H. Merijn Brand, Hugo van der Sanden,
3057 Ian Goodacre, Igor Sutton, Ingo Weinhold, James Bence, James Mastros,
3058 Jan Dubois, Jari Aalto, Jarkko Hietaniemi, Jay Hannah, Jerry Hedden,
3059 Jesse Vincent, Jim Cromie, Jody Belka, John E. Malmberg, John Malmberg,
3060 John Peacock, John Peacock via RT, John P. Linderman, John Wright,
3061 Josh ben Jore, Jos I. Boumans, Karl Williamson, Kenichi Ishigaki, Ken
3062 Williams, Kevin Brintnall, Kevin Ryde, Kurt Starsinic, Leon Brocard,
3063 Lubomir Rintel, Luke Ross, Marcel Grünauer, Marcus Holland-Moritz, Mark
3064 Jason Dominus, Marko Asplund, Martin Hasch, Mashrab Kuvatov, Matt Kraai,
3065 Matt S Trout, Max Maischein, Michael Breen, Michael Cartmell, Michael
3066 G Schwern, Michael Witten, Mike Giroux, Milosz Tanski, Moritz Lenz,
3067 Nicholas Clark, Nick Cleaton, Niko Tyni, Offer Kaye, Osvaldo Villalon,
3068 Paul Fenwick, Paul Gaborit, Paul Green, Paul Johnson, Paul Marquess,
3069 Philip Hazel, Philippe Bruhat, Rafael Garcia-Suarez, Rainer Tammer,
3070 Rajesh Mandalemula, Reini Urban, Renée Bäcker, Ricardo Signes,
3071 Ricardo SIGNES, Richard Foley, Rich Rauenzahn, Rick Delaney, Risto
3072 Kankkunen, Robert May, Roberto C. Sanchez, Robin Barker, SADAHIRO
3073 Tomoyuki, Salvador Ortiz Garcia, Sam Vilain, Scott Lanning, Sébastien
3074 Aperghis-Tramoni, Sérgio Durigan Júnior, Shlomi Fish, Simon 'corecode'
3075 Schubert, Sisyphus, Slaven Rezic, Smylers, Steffen Müller, Steffen
3076 Ullrich, Stepan Kasal, Steve Hay, Steven Schubiger, Steve Peters, Tels,
3077 The Doctor, Tim Bunce, Tim Jenness, Todd Rinaldo, Tom Christiansen,
3078 Tom Hukins, Tom Wyant, Tony Cook, Torsten Schoenfeld, Tye McQueen,
3079 Vadim Konovalov, Vincent Pit, Hio YAMASHINA, Yasuhiro Matsumoto,
3080 Yitzchak Scott-Thoennes, Yuval Kogman, Yves Orton, Zefram, Zsban Ambrus
3081
3082 This is woefully incomplete as it's automatically generated from version
3083 control history.  In particular, it doesn't include the names of the
3084 (very much appreciated) contributors who reported issues in previous
3085 versions of Perl that helped make Perl 5.12.0 better. For a more complete
3086 list of all of Perl's historical contributors, please see the C<AUTHORS>
3087 file in the Perl 5.12.0 distribution.
3088
3089 Many of the changes included in this version originated in the CPAN
3090 modules included in Perl's core. We're grateful to the entire CPAN
3091 community for helping Perl to flourish.
3092
3093 =head1 Reporting Bugs
3094
3095 If you find what you think is a bug, you might check the articles
3096 recently posted to the comp.lang.perl.misc newsgroup and the perl
3097 bug database at L<http://rt.perl.org/perlbug/>. There may also be
3098 information at L<http://www.perl.org/>, the Perl Home Page.
3099
3100 If you believe you have an unreported bug, please run the B<perlbug>
3101 program included with your release. Be sure to trim your bug down
3102 to a tiny but sufficient test case. Your bug report, along with the
3103 output of C<perl -V>, will be sent off to perlbug@perl.org to be
3104 analyzed by the Perl porting team.
3105
3106 If the bug you are reporting has security implications, which make it
3107 inappropriate to send to a publicly archived mailing list, then please send
3108 it to perl5-security-report@perl.org. This points to a closed subscription
3109 unarchived mailing list, which includes all the core committers, who be able
3110 to help assess the impact of issues, figure out a resolution, and help
3111 co-ordinate the release of patches to mitigate or fix the problem across all
3112 platforms on which Perl is supported. Please only use this address for
3113 security issues in the Perl core, not for modules independently
3114 distributed on CPAN.
3115
3116 =head1 SEE ALSO
3117
3118 The F<Changes> file for an explanation of how to view exhaustive details
3119 on what changed.
3120
3121 The F<INSTALL> file for how to build Perl.
3122
3123 The F<README> file for general stuff.
3124
3125 The F<Artistic> and F<Copying> files for copyright information.
3126
3127 =cut