apply a second set of eyes to perl5120delta
[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 XXX - THIS DOCUMENT IS ONLY CURRENT THROUGH PERL5114
6
7 FIX ME BEFORE RELEASE
8
9 OTHER ISSUES: 
10
11 UPDATED MODULE LIST NEEDS TO BE GENERATED
12 ORDERING NEEDS CHECKING
13 HEAVY COPYEDITING IS NEEDED
14
15
16 =head1 DESCRIPTION
17
18 This document describes differences between the 5.10.0 release and
19 the 5.12.0 release.
20
21 Many of the bug fixes in 5.12.0 were already seen in the 5.10.1
22 maintenance release since the two releases were kept closely
23 coordinated (while 5.12.0 was still called 5.11.something).
24
25 You can see the list of changes in the 5.10.1 release 
26 by reading L<perl5101delta>.
27
28 =head1 Core Enhancements
29
30 =head2 qr overloading
31
32 It is now possible to overload the C<qr//> operator, that is,
33 conversion to regexp, like it was already possible to overload
34 conversion to boolean, string or number of objects. It is invoked when
35 an object appears on the right hand side of the C<=~> operator or when
36 it is interpolated into a regexp. See L<overload>.
37
38 =head2 Pluggable keywords
39
40 Extension modules can now cleanly hook into the Perl parser to define
41 new kinds of keyword-headed expression and compound statement. The
42 syntax following the keyword is defined entirely by the extension. This
43 allow a completely non-Perl sublanguage to be parsed inline, with the
44 correct ops cleanly generated. This feature is currently considered
45 experimental.
46
47 See L<perlapi/PL_keyword_plugin> for the mechanism. The Perl core
48 source distribution also includes a new module
49 L<XS::APItest::KeywordRPN>, which implements reverse Polish notation
50 arithmetic via pluggable keywords. This module is mainly used for test
51 purposes, and is not normally installed, but also serves as an example
52 of how to use the new mechanism.
53
54 =head2 APIs for more internals
55
56 The lowest layers of the lexer and parts of the pad system now have C
57 APIs available to XS extensions. These are necessary to support proper
58 use of pluggable keywords, but have other uses too. The new APIs are
59 experimental, and only cover a small proportion of what would be
60 necessary to take full advantage of the core's facilities in these
61 areas. It is intended that the Perl 5.13 development cycle will see the
62 addition of a full range of clean, supported interfaces.
63
64 =head2 Overridable function lookup
65
66 Where an extension module hooks the creation of rv2cv ops to modify the
67 subroutine lookup process, this now works correctly for bareword
68 subroutine calls. This means that prototypes on subroutines referenced
69 this way will be processed correctly. (Previously bareword subroutine
70 names were initially looked up, for parsing purposes, by an unhookable
71 mechanism, so extensions could only properly influence subroutine names
72 that appeared with an C<&> sigil.)
73
74 =head2 Unicode version
75
76 Perl is shipped with the latest Unicode version, 5.2, dated October 2009.  See
77 L<http://www.unicode.org/versions/Unicode5.2.0> for details about this release
78 of Unicode.  See L<perlunicode> for instructions on installing and using
79 older versions of Unicode.
80
81 =head2 Unicode properties
82
83 Perl can now handle every Unicode character property.  A new pod,
84 L<perluniprops>, lists all available non-Unihan character properties.  By
85 default the Unihan properties and certain others (deprecated and Unicode
86 internal-only ones) are not exposed.  See below for more details on
87 these; there is also a section in the pod listing them, and explaining
88 why they are not exposed.
89
90 Perl now fully supports the Unicode compound-style of using C<=> and C<:>
91 in writing regular expressions: C<\p{property=value}> and
92 C<\p{property:value}> (both of which mean the same thing).
93
94 Perl now fully supports the Unicode loose matching rules for text
95 between the braces in C<\p{...}> constructs.  In addition, Perl allows
96 underscores between digits of numbers.
97
98 All the Unicode-defined synonyms for properties and property values are
99 now accepted.
100
101 C<qr/\X/>, which matches a Unicode logical character, has been expanded to work
102 better with various Asian languages.  It now is defined as an C<extended
103 grapheme cluster>.  (See L<http://www.unicode.org/reports/tr29/>).
104 Anything matched previously and that made sense will continue to be
105 matched, but in addition:
106
107 =over
108
109 =item *
110
111 C<\X> will now not break apart a C<S<CR LF>> sequence.
112
113 =item *
114
115 C<\X> will now match a sequence including the C<ZWJ> and C<ZWNJ> characters.
116
117 =item *
118
119 C<\X> will now always match at least one character, including an initial mark.
120 Marks generally come after a base character, but it is possible in Unicode to
121 have them in isolation, and C<\X> will now handle that case, for example at the
122 beginning of a line or after a C<ZWSP>.  And this is the part where C<\X>
123 doesn't match the things that it used to that don't make sense.  Formerly, for
124 example, you could have the nonsensical case of an accented LF.
125
126 =item *
127
128 C<\X> will now match a (Korean) Hangul syllable sequence, and the Thai and Lao
129 exception cases.
130
131 =back
132
133 Otherwise, this change should be transparent for the non-affected languages.
134
135 C<\p{...}> matches using the Canonical_Combining_Class property were
136 completely broken in previous Perls.  This is now fixed.
137
138 In previous Perls, the Unicode C<Decomposition_Type=Compat> property and a
139 Perl extension had the same name, which led to neither matching all the
140 correct values (with more than 100 mistakes in one, and several thousand
141 in the other).  The Perl extension has now been renamed to be
142 C<Decomposition_Type=Noncanonical> (short: C<dt=noncanon>).  It has the same
143 meaning as was previously intended, namely the union of all the
144 non-canonical Decomposition types, with Unicode C<Compat> being just one of
145 those.
146
147 C<\p{Uppercase}> and C<\p{Lowercase}> have been brought into line with the
148 Unicode definitions.  This means they each match a few more characters
149 than previously.
150
151 C<\p{Cntrl}> now matches the same characters as C<\p{Control}>.  This means it
152 no longer will match Private Use (gc=co), Surrogates (gc=cs), nor Format
153 (gc=cf) code points.  The Format code points represent the biggest
154 possible problem.  All but 36 of them are either officially deprecated
155 or strongly discouraged from being used.  Of those 36, likely the most
156 widely used are the soft hyphen (U+00AD), and BOM, ZWSP, ZWNJ, WJ, and
157 similar, plus bidirectional controls.
158
159 C<\p{Alpha}> now matches the same characters as C<\p{Alphabetic}>.  The Perl
160 definition included a number of things that aren't really alpha (all
161 marks), while omitting many that were.  As a direct consequence, the
162 definitions of C<\p{Alnum}> and C<\p{Word}> which depend on Alpha also change.
163
164 C<\p{Word}> also now doesn't match certain characters it wasn't supposed
165 to, such as fractions.
166
167 C<\p{Print}> no longer matches the line control characters: Tab, LF, CR,
168 FF, VT, and NEL.  This brings it in line with the documentation.
169
170 C<\p{Decomposition_Type=Canonical}> now includes the Hangul syllables.
171
172 The Numeric type property has been extended to include the Unihan
173 characters.
174
175 There is a new Perl extension, the 'Present_In', or simply 'In',
176 property.  This is an extension of the Unicode Age property, but
177 C<\p{In=5.0}> matches any code point whose usage has been determined
178 I<as of> Unicode version 5.0.  The C<\p{Age=5.0}> only matches code points
179 added in I<precisely> version 5.0.
180
181 A number of properties did not have the correct values for unassigned
182 code points.  This is now fixed.  The affected properties are
183 Bidi_Class, East_Asian_Width, Joining_Type, Decomposition_Type,
184 Hangul_Syllable_Type, Numeric_Type, and Line_Break.
185
186 The Default_Ignorable_Code_Point, ID_Continue, and ID_Start properties
187 have been updated to their current Unicode definitions.
188
189 Certain properties that are supposed to be Unicode internal-only were
190 erroneously exposed by previous Perls.  Use of these in regular
191 expressions will now generate, if enabled, a deprecated warning message.
192 The properties are: Other_Alphabetic, Other_Default_Ignorable_Code_Point,
193 Other_Grapheme_Extend, Other_ID_Continue, Other_ID_Start, Other_Lowercase,
194 Other_Math, and Other_Uppercase.
195
196 An installation can now fairly easily change which Unicode properties
197 Perl understands.  As mentioned above, certain properties are by default
198 turned off.  These include all the Unihan properties (which should be
199 accessible via the CPAN module Unicode::Unihan) and any deprecated or
200 Unicode internal-only property that Perl has never exposed.
201
202 The generated files in the C<lib/unicore/To> directory are now more
203 clearly marked as being stable, directly usable by applications.
204 New hash entries in them give the format of the normal entries,
205 which allows for easier machine parsing.  Perl can generate files
206 in this directory for any property, though most are suppressed.  An
207 installation can choose to change which get written.  Instructions
208 are in L<perluniprops>.
209
210 =head2 Regular Expressions
211
212 U+0FFFF is now a legal character in regular expressions.
213
214 =head2 Unicode properties
215
216 C<\p{XDigit}> now matches the same characters as C<\p{Hex_Digit}>.  This
217 means that in addition to the characters it currently matches,
218 C<[A-Fa-f0-9]>, it will also match their fullwidth equivalent forms, for
219 example U+FF10: FULLWIDTH DIGIT ZERO.
220
221 =head2 Unicode Character Database 5.1.0
222
223 The copy of the Unicode Character Database included in Perl 5.11.0 has
224 been updated to 5.1.0 from 5.0.0. See
225 L<http://www.unicode.org/versions/Unicode5.1.0/#Notable_Changes> for the
226 notable changes.
227
228 =head2 A proper interface for pluggable Method Resolution Orders
229
230 As of Perl 5.11.0 there is a new interface for plugging and using method
231 resolution orders other than the default (linear depth first search).
232 The C3 method resolution order added in 5.10.0 has been re-implemented as
233 a plugin, without changing its Perl-space interface. See L<perlmroapi> for
234 more information.
235
236 =head2 The C<overloading> pragma
237
238 This pragma allows you to lexically disable or enable overloading
239 for some or all operations. (Yuval Kogman)
240
241 =head2 C<\N> regex escape
242
243 A new regex escape has been added, C<\N>. It will match any character that
244 is not a newline, independently from the presence or absence of the single
245 line match modifier C</s>. (If C<\N> is followed by an opening brace and
246 by a letter, perl will still assume that a Unicode character name is
247 coming, so compatibility is preserved.) (Rafael Garcia-Suarez)
248
249 =head2 Implicit strictures
250
251 Using the C<use VERSION> syntax with a version number greater or equal
252 to 5.11.0 will also lexically enable strictures just like C<use strict>
253 would do (in addition to enabling features.) So, the following:
254
255     use 5.11.0;
256
257 will now imply:
258
259     use strict;
260     use feature ':5.11';
261
262 =head2 Parallel tests
263
264 The core distribution can now run its regression tests in parallel on
265 Unix-like platforms. Instead of running C<make test>, set C<TEST_JOBS> in
266 your environment to the number of tests to run in parallel, and run
267 C<make test_harness>. On a Bourne-like shell, this can be done as
268
269     TEST_JOBS=3 make test_harness  # Run 3 tests in parallel
270
271 An environment variable is used, rather than parallel make itself, because
272 L<TAP::Harness> needs to be able to schedule individual non-conflicting test
273 scripts itself, and there is no standard interface to C<make> utilities to
274 interact with their job schedulers.
275
276 Note that currently some test scripts may fail when run in parallel (most
277 notably C<ext/IO/t/io_dir.t>). If necessary run just the failing scripts
278 again sequentially and see if the failures go away.
279
280 =head2 The C<...> operator
281
282 A new operator, C<...>, nicknamed the Yada Yada operator, has been added.
283 It is intended to mark placeholder code that is not yet implemented.
284 See L<perlop/"Yada Yada Operator">. (chromatic)
285
286 =head2 DTrace support
287
288 Some support for DTrace has been added. See "DTrace support" in F<INSTALL>.
289
290 =head2 Support for C<configure_requires> in CPAN module metadata
291
292 Both C<CPAN> and C<CPANPLUS> now support the C<configure_requires> keyword
293 in the F<META.yml> metadata file included in most recent CPAN distributions.
294 This allows distribution authors to specify configuration prerequisites that
295 must be installed before running F<Makefile.PL> or F<Build.PL>.
296
297 See the documentation for C<ExtUtils::MakeMaker> or C<Module::Build> for more
298 on how to specify C<configure_requires> when creating a distribution for CPAN.
299
300 =head2 C<each> is now more flexible
301
302 The C<each> function can now operate on arrays.
303
304 =head2 Y2038 compliance
305
306 Perl's core time-related functions are now Y2038 compliant. (With 29
307 years to spare!)
308
309 =head2 C<$,> flexibility
310
311 The variable C<$,> may now be tied.
312
313 =head2 // in where clauses
314
315 // now behaves like || in when clauses
316
317 =head2 Enabling warnings from your shell environment
318
319 You can now set C<-W> from the C<PERL5OPT> environment variable
320
321 =head2 C<delete local>
322
323 C<delete local> now allows you to locally delete a hash entry.
324
325 =head2 New support for Abstract namespace sockets
326
327 Abstract namespace sockets are Linux-specific socket type that live in
328 AF_UNIX family, slightly abusing it to be able to use arbitrary
329 character arrays as addresses: They start with nul byte and are not
330 terminated by nul byte, but with the length passed to the socket()
331 system call.
332
333 =head2 Add C<package NAME VERSION> syntax
334
335 This new syntax allows a module author to set the $VERSION of a namespace
336 when the namespace is declared with 'package'.  It eliminates the need
337 for C<our $VERSION = ...> and similar constructs.  E.g.
338
339       package Foo::Bar 1.23;
340       # $Foo::Bar::VERSION == 1.23
341
342 There are several advantages to this:
343
344 =over 
345
346 =item *
347
348 C<$VERSION> is parsed in I<exactly> the same way as C<use NAME VERSION>
349
350 =item *
351
352 C<$VERSION> is set at compile time
353
354 =item *
355
356 Eliminates C<$VERSION = ...> and C<eval $VERSION> clutter
357
358 =item *
359
360 As it requires VERSION to be a numeric literal or v-string
361 literal, it can be statically parsed by toolchain modules
362 without C<eval> the way MM-E<gt>parse_version does for C<$VERSION = ...>
363
364 =item *
365
366 Alpha versions with underscores do not need to be quoted; static
367 parsing will preserve the underscore, but during compilation, Perl
368 will remove underscores as it does for all numeric literals
369
370 It does not break old code with only C<package NAME>, but code that uses
371 C<package NAME VERSION> will need to be restricted to perl 5.11.X or newer
372 This is analogous to the change to C<open> from two-args to three-args.
373 Users requiring the latest Perl will benefit, and perhaps N years from
374 now it will become standard practice when Perl 5.12 is targeted the way
375 that 5.6 is today.
376
377 =back
378
379 =head1 Incompatible Changes
380
381 =head2 Version number formats
382
383 Acceptable version number formats have been formalized into "strict" and
384 "lax" rules.  C<package NAME VERSION> takes a strict version number.  C<use
385 NAME VERSION> takes a lax version number.  C<UNIVERSAL::VERSION> and the
386 L<version> object constructors take lax version numbers.  Providing an
387 invalid version will result in a fatal error.
388
389 These formats will be documented fully in the L<version> module in a
390 subsequent release of Perl 5.11.  To a first approximation, a "strict"
391 version number is a positive decimal number (integer or decimal-fraction)
392 without exponentiation or else a dotted-decimal v-string with a leading 'v'
393 character and at least three components.  A "lax" version number allows
394 v-strings with fewer than three components or without a leading 'v'.  Under
395 "lax" rules, both decimal and dotted-decimal versions may have a trailing
396 "alpha" component separated by an underscore character after a fractional
397 or dotted-decimal component.
398
399 The L<version> module adds C<version::is_strict> and C<version::is_lax>
400 functions to check a scalar against these rules.
401
402 =head2 Unicode interpretation of \w, \d, \s, and the POSIX character classes redefined.
403
404 Previous versions of Perl tried to map POSIX style character class
405 definitions onto Unicode property names so that patterns would "do what
406 you meant" when matches were made against latin-1 or unicode strings.
407 This proved to be a mistake, breaking character class negation, causing
408 forward compatibility problems (as Unicode keeps updating their property
409 definitions and adding new characters), and other problems.
410
411 Therefore we have now defined a new set of artificial "unicode" property
412 names which will be used to do unicode matching of patterns using POSIX
413 style character classes and perl short-form escape character classes
414 like \w and \d.
415
416 The key change here is that \d will no longer match every digit in the
417 unicode standard (there are thousands) nor will \w match every word
418 character in the standard, instead they will match precisely their POSIX
419 or Perl definition.
420
421 Those needing to match based on Unicode properties can continue to do so
422 by using the \p{} syntax to match whichever property they like,
423 including the new artificial definitions.
424
425 B<NOTE:> This is a backwards incompatible no-warning change in
426 behaviour. If you are upgrading and you process large volumes of text
427 look for POSIX and Perl style character classes and change them to the
428 relevent property name (by removing the word 'Posix' from the current
429 name).
430
431 The following table maps the POSIX character class names, the escapes
432 and the old and new Unicode property mappings:
433
434     POSIX  Esc  Class               New-Property  ! Old-Property
435     ----------------------------------------------+-------------
436     alnum       [0-9A-Za-z]         IsPosixAlnum  ! IsAlnum
437     alpha       [A-Za-z]            IsPosixAlpha  ! IsAlpha
438     ascii       [\000-\177]         IsASCII       = IsASCII
439     blank       [\011 ]             IsPosixBlank  !
440     cntrl       [\0-\37\177]        IsPosixCntrl  ! IsCntrl
441     digit   \d  [0-9]               IsPosixDigit  ! IsDigit
442     graph       [!-~]               IsPosixGraph  ! IsGraph
443     lower       [a-z]               IsPosixLower  ! IsLower
444     print       [ -~]               IsPosixPrint  ! IsPrint
445     punct       [!-/:-@[-`{-~]      IsPosixPunct  ! IsPunct
446     space       [\11-\15 ]          IsPosixSpace  ! IsSpace
447             \s  [\11\12\14\15 ]     IsPerlSpace   ! IsSpacePerl
448     upper       [A-Z]               IsPosixUpper  ! IsUpper
449     word    \w  [0-9A-Z_a-z]        IsPerlWord    ! IsWord
450     xdigit      [0-9A-Fa-f]         IsXDigit      = IsXDigit
451
452 If you wish to build perl with the old mapping you may do so by setting
453
454         #define PERL_LEGACY_UNICODE_CHARCLASS_MAPPINGS 1
455
456 in regcomp.h, and then setting
457
458         PERL_TEST_LEGACY_POSIX_CC
459
460 to true your enviornment when testing.
461
462 =head2 @INC reorganization
463
464 In @INC, ARCHLIB and PRIVLIB now occur after after the current version's
465 site_perl and vendor_perl.
466
467 =head2 Switch statement changes
468
469 The handling of complex expressions by the C<given>/C<when> switch
470 statement has been enhanced. These enhancements are also available in
471 5.10.1 and subsequent 5.10 releases. There are two new cases where
472 C<when> now interprets its argument as a boolean, instead of an
473 expression to be used in a smart match:
474
475 =head2 flip-flop operators
476
477 The C<..> and C<...> flip-flop operators are now evaluated in boolean
478 context, following their usual semantics; see L<perlop/"Range Operators">.
479
480 Note that, as in perl 5.10.0, C<when (1..10)> will not work to test
481 whether a given value is an integer between 1 and 10; you should use
482 C<when ([1..10])> instead (note the array reference).
483
484 However, contrary to 5.10.0, evaluating the flip-flop operators in boolean
485 context ensures it can now be useful in a C<when()>, notably for
486 implementing bistable conditions, like in:
487
488     when (/^=begin/ .. /^=end/) {
489       # do something
490     }
491
492 =head2 defined-or operator
493
494 A compound expression involving the defined-or operator, as in
495 C<when (expr1 // expr2)>, will be treated as boolean if the first
496 expression is boolean. (This just extends the existing rule that applies
497 to the regular or operator, as in C<when (expr1 || expr2)>.)
498
499 =head2 Smart match changes
500
501 This section details more changes brought to the semantics to
502 the smart match operator, that naturally also modify the behaviour
503 of the switch statements where smart matching is implicitly used.
504 These changes were also made for the 5.10.1 release, and will remain in
505 subsequent 5.10 releases.
506
507 =head3 Changes to type-based dispatch
508
509 The smart match operator C<~~> is no longer commutative. The behaviour of
510 a smart match now depends primarily on the type of its right hand
511 argument. Moreover, its semantics have been adjusted for greater
512 consistency or usefulness in several cases. While the general backwards
513 compatibility is maintained, several changes must be noted:
514
515 =over 4
516
517 =item *
518
519 Code references with an empty prototype are no longer treated specially.
520 They are passed an argument like the other code references (even if they
521 choose to ignore it).
522
523 =item *
524
525 C<%hash ~~ sub {}> and C<@array ~~ sub {}> now test that the subroutine
526 returns a true value for each key of the hash (or element of the
527 array), instead of passing the whole hash or array as a reference to
528 the subroutine.
529
530 =item *
531
532 Due to the commutativity breakage, code references are no longer
533 treated specially when appearing on the left of the C<~~> operator,
534 but like any vulgar scalar.
535
536 =item *
537
538 C<undef ~~ %hash> is always false (since C<undef> can't be a key in a
539 hash). No implicit conversion to C<""> is done (as was the case in perl
540 5.10.0).
541
542 =item *
543
544 C<$scalar ~~ @array> now always distributes the smart match across the
545 elements of the array. It's true if one element in @array verifies
546 C<$scalar ~~ $element>. This is a generalization of the old behaviour
547 that tested whether the array contained the scalar.
548
549 =back
550
551 The full dispatch table for the smart match operator is given in
552 L<perlsyn/"Smart matching in detail">.
553
554 =head3 Smart match and overloading
555
556 According to the rule of dispatch based on the rightmost argument type,
557 when an object overloading C<~~> appears on the right side of the
558 operator, the overload routine will always be called (with a 3rd argument
559 set to a true value, see L<overload>.) However, when the object will
560 appear on the left, the overload routine will be called only when the
561 rightmost argument is a simple scalar. This way, distributivity of smart
562 match across arrays is not broken, as well as the other behaviours with
563 complex types (coderefs, hashes, regexes). Thus, writers of overloading
564 routines for smart match mostly need to worry only with comparing
565 against a scalar, and possibly with stringification overloading; the
566 other common cases will be automatically handled consistently.
567
568 C<~~> will now refuse to work on objects that do not overload it (in order
569 to avoid relying on the object's underlying structure). (However, if the
570 object overloads the stringification or the numification operators, and
571 if overload fallback is active, it will be used instead, as usual.)
572
573 =head2 Labels can't be keywords
574
575 Labels used as targets for the C<goto>, C<last>, C<next> or C<redo>
576 statements cannot be keywords anymore. This restriction will prevent
577 potential confusion between the C<goto LABEL> and C<goto EXPR> syntaxes:
578 for example, a statement like C<goto print> would jump to a label whose
579 name would be the return value of C<print()>, (usually 1), instead of a
580 label named C<print>. Moreover, the other control flow statements
581 would just ignore any keyword passed to them as a label name. Since
582 such labels cannot be defined anymore, this kind of error will be
583 avoided.
584
585 =head2 Other incompatible changes
586
587 =over 4
588
589 =item *
590
591 The boolkeys op moved to the group of hash ops. This breaks binary
592 compatibility.
593
594 =item *
595
596 C<\s> C<\w> and C<\d> once again have the semantics they had in Perl 5.8.x.
597
598 =item *
599
600 Filehandles are blessed directly into C<IO::Handle>, as C<FileHandle> is
601 merely a wrapper around C<IO::Handle>.
602
603 The previous behaviour was to bless Filehandles into L<FileHandle>
604 (an empty proxy class) if it was loaded into memory and otherwise
605 to bless them into C<IO::Handle>.
606
607 =item *
608
609 The semantics of C<use feature :5.10*> have changed slightly.
610 See L<"Modules and Pragmata"> for more information.
611
612 =item *
613
614 The version control system used for the development of the perl
615 interpreter has been switched from Perforce to git.  This is mainly an
616 internal issue that only affects people actively working on the perl core;
617 but it may have minor external visibility, for example in some of details
618 of the output of C<perl -V>. See L<perlrepository> for more information.
619
620 =item *
621
622 The internal structure of the C<ext/> directory in the perl source has
623 been reorganised. In general, a module C<Foo::Bar> whose source was
624 stored under F<ext/Foo/Bar/> is now located under F<ext/Foo-Bar/>. Also,
625 nearly all dual-life modules have been moved from F<lib/> to F<ext/>. This
626 is purely a source tarball change, and should make no difference to the
627 compilation or installation of perl, unless you have a very customised build
628 process that explicitly relies on this structure, or which hard-codes the
629 C<nonxs_ext> F<Configure> parameter. Specifically, this change does not by
630 default alter the location of any files in the final installation.
631
632 =item *
633
634 As part of the C<Test::Harness> 2.x to 3.x upgrade, the experimental
635 C<Test::Harness::Straps> module has been removed.
636 See L</"Updated Modules"> for more details.
637
638 =item *
639
640 As part of the C<ExtUtils::MakeMaker> upgrade, the
641 C<ExtUtils::MakeMaker::bytes> and C<ExtUtils::MakeMaker::vmsish> modules
642 have been removed from this distribution.
643
644 =item *
645
646 C<Module::CoreList> no longer contains the C<%:patchlevel> hash.
647
648 =item *
649
650 This one is actually a change introduced in 5.10.0, but it was missed
651 from that release's perldelta, so it is mentioned here instead.
652
653 A bugfix related to the handling of the C</m> modifier and C<qr> resulted
654 in a change of behaviour between 5.8.x and 5.10.0:
655
656     # matches in 5.8.x, doesn't match in 5.10.0
657     $re = qr/^bar/; "foo\nbar" =~ /$re/m;
658
659 =item *
660
661 C<length undef> now returns undef.
662
663 =item *
664
665 Unsupported private C API functions are now declared "static" to prevent
666 leakage to Perl's public API.
667
668 =item *
669
670 To support the bootstrapping process, F<miniperl> no longer builds with
671 UTF-8 support in the regexp engine.
672
673 This allows a build to complete with PERL_UNICODE set and a UTF-8 locale.
674 Without this there's a bootstrapping problem, as miniperl can't load the UTF-8
675 components of the regexp engine, because they're not yet built.
676
677 =item *
678
679 F<miniperl>'s @INC is now restricted to just C<-I...>, the split of
680 C<$ENV{PERL5LIB}>, and "C<.>"
681
682 =item *
683
684 A space or a newline is now required after a C<"#line XXX"> directive.
685
686 =item *
687
688 Tied filehandles now have an additional method EOF which provides the EOF type
689
690 =item *
691
692 To better match all other flow control statements, C<foreach> may no
693 longer be used as an attribute.
694
695 =back
696
697 =head1 Deprecations
698
699 From time to time, Perl's developers find it necessary to deprecate
700 features or modules we've previously shipped as part of the core
701 distribution. We are well aware of the pain and frustration that a
702 backwards-incompatible change to Perl can cause for developers building
703 or maintaining software in Perl. You can be sure that when we deprecate
704 a functionality or syntax, it isn't a choice we make lightly. Sometimes,
705 we choose to deprecate functionality or syntax because it was found to
706 be poorly designed or implemented. Sometimes, this is because they're
707 holding back other features or causing performance problems. Sometimes,
708 the reasons are more complex. Wherever possible, we try to keep deprecated
709 functionality available to developers in its previous form for at least
710 one major release.  So long as a deprecated feature isn't actively
711 disrupting our ability to maintain and extend Perl, we'll try to leave
712 it in place as long as possible.
713
714 The following items are now deprecated.
715
716 =over 4
717
718 =item Use of C<:=> to mean an empty attribute list is now deprecated.
719
720 An accident of Perl's parser meant that these constructions were all
721 equivalent:
722
723     my $pi := 4;
724     my $pi : = 4;
725     my $pi :  = 4;
726
727 with the C<:> being treated as the start of an attribute list, which
728 ends before the C<=>. As whitespace is not significant here, all are
729 parsed as an empty attribute list, hence all the above are equivalent
730 to, and better written as
731
732     my $pi = 4;
733
734 because no attribute processing is done for an empty list.
735
736 As is, this meant that C<:=> cannot be used as a new token, without
737 silently changing the meaning of existing code. Hence that particular
738 form is now deprecated, and will become a syntax error. If it is
739 absolutely necessary to have empty attribute lists (for example,
740 because of a code generator) then avoid the warning by adding a space
741 before the C<=>.
742
743 =item C<< UNIVERSAL->import() >>
744
745 The method C<< UNIVERSAL->import() >> is now deprecated.  Attempting to
746 pass import arguments to a C<use UNIVERSAL> statement will result in a
747 deprecation warning.
748
749 =item Use of "goto" to jump into a construct is deprecated
750
751 Using C<goto> to jump from an outer scope into an inner scope is now
752 deprecated. This rare use case was causing problems in the
753 implementation of scopes.
754
755 =item Deprecated Modules
756
757 The following modules will be removed from the core distribution in a future
758 release, and should be installed from CPAN instead. Distributions on CPAN
759 which require these should add them to their prerequisites. The core versions
760 of these modules warnings will issue a deprecation warning.
761
762 =over
763
764 =item L<Class::ISA>
765
766 =item L<Pod::Plainer>
767
768 =item L<Shell>
769
770 =item L<Switch>
771
772 Switch is buggy and should be avoided.  See L<perlsyn/"Switch
773 statements"> for its replacement.
774
775 =back
776
777 =item suidperl
778
779 C<suidperl> has been removed. It used to provide a mechanism to
780 emulate setuid permission bits on systems that don't support it properly.
781
782 =item Assignment to $[
783
784 =item attrs
785
786 Remove attrs, which has been deprecated since 1999-10-02.
787
788 =item Use of the attribute :locked on subroutines.
789
790 =item Use of "locked" with the attributes pragma.
791
792 =item Use of "unique" with the attributes pragma.
793
794 =item Numerous Perl 4-era libraries:
795
796 F<termcap.pl>, F<tainted.pl>, F<stat.pl>, F<shellwords.pl>, F<pwd.pl>,
797 F<open3.pl>, F<open2.pl>, F<newgetopt.pl>, F<look.pl>, F<find.pl>,
798 F<finddepth.pl>, F<importenv.pl>, F<hostname.pl>, F<getopts.pl>,
799 F<getopt.pl>, F<getcwd.pl>, F<flush.pl>, F<fastcwd.pl>, F<exceptions.pl>,
800 F<ctime.pl>, F<complete.pl>, F<cacheout.pl>, F<bigrat.pl>, F<bigint.pl>,
801 F<bigfloat.pl>, F<assert.pl>, F<abbrev.pl>, F<dotsh.pl>, and
802 F<timelocal.pl> are all now deprecated. Using them will incur a warning.
803
804 =back
805
806 =head1 Modules and Pragmata
807
808 =head2 Dual-lifed modules moved
809
810 Dual-lifed modules maintained primarily in the Perl core now live in dist/.
811 Dual-lifed modules maintained primarily on CPAN now live in cpan/
812
813 In previous releases of Perl, it was customary to enumerate all module
814 changes in this section of the C<perldelta> file. From 5.11.0 forward
815 only notable updates (such as new or deprecated modules ) will be listed
816 in this section. For a complete reference to the versions of modules
817 shipped in a given release of perl, please see L<Module::CoreList>.
818
819 =head2 New Modules and Pragmata
820
821 =over 4
822
823 =item *
824
825 C<autodie>
826
827 This is a new lexically-scoped alternative for the C<Fatal> module.
828 The bundled version is 2.06_01. Note that in this release, using a string
829 eval when C<autodie> is in effect can cause the autodie behaviour to leak
830 into the surrounding scope. See L<autodie/"BUGS"> for more details.
831
832 =item *
833
834 C<Compress::Raw::Bzip2>
835
836 This has been added to the core (version 2.020).
837
838 =item *
839
840 C<parent>
841
842 This pragma establishes an ISA relationship with base classes at compile
843 time. It provides the key feature of C<base> without further unwanted
844 behaviors.
845
846 =item *
847
848 C<Parse::CPAN::Meta>
849
850 This has been added to the core (version 1.39).
851
852 =back
853
854 =head2 Pragmata Changes
855
856 =over 4
857
858 =item *
859
860 C<overloading>
861
862 See L</"The C<overloading> pragma"> above.
863
864 =item *
865
866 C<attrs>
867
868 The C<attrs> pragma has been removed. It had been marked as deprecated since
869 5.6.0.
870
871 =item *
872
873 C<charnames>
874
875 The Unicode F<NameAliases.txt> database file has been added. This has the
876 effect of adding some extra C<\N> character names that formerly wouldn't
877 have been recognised; for example, C<"\N{LATIN CAPITAL LETTER GHA}">.
878
879 =item *
880
881 C<feature>
882
883 The meaning of the C<:5.10> and C<:5.10.X> feature bundles has
884 changed slightly. The last component, if any (i.e. C<X>) is simply ignored.
885 This is predicated on the assumption that new features will not, in
886 general, be added to maintenance releases. So C<:5.10> and C<:5.10.X>
887 have identical effect. This is a change to the behaviour documented for
888 5.10.0.
889
890 =item *
891
892 C<mro>
893
894 Upgraded from version 1.00 to 1.01. Performance for single inheritance is 40%
895 faster - see L</"Performance Enhancements"> below.
896
897 C<mro> is now implemented as an XS extension. The documented interface has not
898 changed. Code relying on the implementation detail that some C<mro::>
899 methods happened to be available at all times gets to "keep both pieces".
900
901 =item *
902
903 C<diagnostics>
904
905 Supports %.0f formatting internally.
906
907 =item *
908
909 C<overload>
910
911 Allow overloading of 'qr'.
912
913 =item *
914
915 C<constant>
916
917 Upgraded from version 1.19 to 1.20.
918
919 =item *
920
921 C<diagnostics>
922
923 This pragma no longer suppresses C<Use of uninitialized value in range
924 (or flip)> warnings. [perl #71204]
925
926 =item *
927
928 C<feature>
929
930 Upgraded from 1.13 to 1.14.  Added the C<unicode_strings> feature:
931
932     use feature "unicode_strings";
933
934 This pragma turns on Unicode semantics for the case-changing operations
935 (C<uc>, C<lc>, C<ucfirst>, C<lcfirst>) on strings that don't have the
936 internal UTF-8 flag set, but that contain single-byte characters between
937 128 and 255.
938
939 =item *
940
941 C<threads>
942
943 Upgraded from version 1.74 to 1.75.
944
945 =item *
946
947 C<less>
948
949 Upgraded from version 0.02 to 0.03.
950
951 This version introduces the C<stash_name> method to allow subclasses of
952 C<less> to pick where in %^H to store their stash.
953
954 =item *
955
956 C<version>
957
958 Upgraded from version 0.77 to 0.81.
959
960 This version adds support for L</Version number formats> as described earlier
961 in this document and in its own documentation.
962
963 =item *
964
965 C<warnings>
966
967 Upgraded from 1.07 to 1.09. 
968
969 Added new C<warnings::fatal_enabled()> function.
970 This version adds the C<illegalproto> warning category.  See also L</New or
971 Changed Diagnostics> for this change.
972
973 =back
974
975
976 =head2 Updated Modules
977
978 =over 4
979
980 =item XXX TODO RECALCULATE THIS VS 5.10.0
981
982 =back
983
984 =head2 Removed Modules and Pragmata
985
986 =over 4
987
988 =item *
989
990 C<Devel::DProf::V>
991
992 Removed from the Perl core.  Prior version was 'undef'.
993
994 =back
995
996 =head1 Documentation
997
998 =head2 New Documentation
999
1000 =over 4
1001
1002 =item *
1003
1004 L<perlhaiku>
1005
1006 This contains instructions on how to build perl for the Haiku platform.
1007
1008 =item *
1009
1010 L<perlmroapi>
1011
1012 This describes the new interface for pluggable Method Resolution Orders.
1013
1014 =item *
1015
1016 L<perlperf>
1017
1018 This document, by Richard Foley, provides an introduction to the use of
1019 performance and optimization techniques which can be used with particular
1020 reference to perl programs.
1021
1022 =item *
1023
1024 L<perlrepository>
1025
1026 This describes how to access the perl source using the I<git> version
1027 control system.
1028
1029 =item *
1030
1031 L<perlpolicy> extends the "Social contract about contributed modules" into
1032 the beginnings of a document on Perl porting policies.
1033
1034 =back
1035
1036 =head2 Changes to Existing Documentation
1037
1038 The various large F<Changes*> files (which listed every change made to perl
1039 over the last 18 years) have been removed, and replaced by a small file,
1040 also called F<Changes>, which just explains how that same information may
1041 be extracted from the git version control system.
1042
1043 The file F<Porting/patching.pod> has been deleted, as it mainly described
1044 interacting with the old Perforce-based repository, which is now obsolete.
1045 Information still relevant has been moved to L<perlrepository>.
1046
1047 L<perlapi>, L<perlintern>, L<perlmodlib> and L<perltoc> are now all
1048 generated at build time, rather than being shipped as part of the release.
1049
1050 =over
1051
1052 =item *
1053
1054 Documented -X overloading.
1055
1056 =item *
1057
1058 Documented that C<when()> treats specially most of the filetest operators
1059
1060 =item *
1061
1062 Documented C<when> as a syntax modifier
1063
1064 =item *
1065
1066 Eliminated "Old Perl threads tutorial", which described 5005 threads.
1067
1068 F<pod/perlthrtut.pod> is the same material reworked for ithreads.
1069
1070 =item *
1071
1072 Correct previous documentation: v-strings are not deprecated
1073
1074 With version objects, we need them to use MODULE VERSION syntax.  This
1075 patch removes the deprecation notice.
1076
1077 =item *
1078
1079 Added security contact information to L<perlsec>
1080
1081 A significant fraction of the core documentation has been updated to clarify
1082 the behavior of Perl's Unicode handling.
1083
1084 Much of the remaining core documentation has been reviewed and edited
1085 for clarity, consistent use of language, and to fix the spelling of Tom
1086 Christiansen's name.
1087
1088 The Pod specification (L<perlpodspec>) has been updated to bring the
1089 specification in line with modern usage already supported by most Pod
1090 systems.  A parameter string may now follow the format name in a
1091 "begin/end" region.  Links to URIs with a text description are now
1092 allowed.  The usage of C<LE<lt>"section"E<gt>> has been marked as
1093 deprecated.
1094
1095 L<if.pm|if> has been documented in L<perlfunc/use> as a means to get
1096 conditional loading of modules despite the implicit BEGIN block around
1097 C<use>.
1098
1099 =item *
1100
1101 The documentation for C<$1> in perlvar.pod has been clarified.
1102
1103 =back
1104
1105 =head1 Performance Enhancements
1106
1107 =over 4
1108
1109 =item *
1110
1111 A new internal cache means that C<isa()> will often be faster.
1112
1113 =item *
1114
1115 The implementation of C<C3> Method Resolution Order has been optimised -
1116 linearisation for classes with single inheritance is 40% faster. Performance
1117 for multiple inheritance is unchanged.
1118
1119 =item *
1120
1121 Under C<use locale>, the locale-relevant information is now cached on
1122 read-only values, such as the list returned by C<keys %hash>. This makes
1123 operations such as C<sort keys %hash> in the scope of C<use locale> much
1124 faster.
1125
1126 =item *
1127
1128 Empty C<DESTROY> methods are no longer called.
1129
1130 =item *
1131
1132 Faster C<Perl_sv_utf8_upgrade()>
1133
1134 =item *
1135
1136 Speed up C<keys> on empty hash
1137
1138 =item *
1139
1140 C<if (%foo)> has been optimized to be faster than C<if (keys %foo)>
1141
1142 =item *
1143
1144 Reversing an array to itself (as in C<@a = reverse @a>) in void context
1145 now happens in-place and is several orders of magnitude faster than it
1146 used to be. It will also preserve non-existent elements whenever
1147 possible, i.e. for non magical arrays or tied arrays with C<EXISTS> and
1148 C<DELETE> methods.
1149
1150 =back
1151
1152 =head1 Installation and Configuration Improvements
1153
1154 =head2 F<ext/> reorganisation
1155
1156 The layout of directories in F<ext> has been revised. Specifically, all
1157 extensions are now flat, and at the top level, with C</> in pathnames
1158 replaced by C<->, so that F<ext/Data/Dumper/> is now F<ext/Data-Dumper/>,
1159 etc.  The names of the extensions as specified to F<Configure>, and as
1160 reported by C<%Config::Config> under the keys C<dynamic_ext>,
1161 C<known_extensions>, C<nonxs_ext> and C<static_ext> have not changed, and
1162 still use C</>. Hence this change will not have any affect once perl is
1163 installed. C<Safe> has been split out from being part of C<Opcode>, and
1164 C<mro> is now an extension in its own right.
1165
1166 Nearly all dual-life modules have been moved from F<lib> to F<ext>, and will
1167 now appear as known C<nonxs_ext>. This will made no difference to the
1168 structure of an installed perl, nor will the modules installed differ,
1169 unless you run F<Configure> with options to specify an exact list of
1170 extensions to build. In this case, you will rapidly become aware that you
1171 need to add to your list, because various modules needed to complete the
1172 build, such as C<ExtUtils::ParseXS>, have now become extensions, and
1173 without them the build will fail well before it attempts to run the
1174 regression tests.
1175
1176 =head2 Configuration improvements
1177
1178 If C<vendorlib> and C<vendorarch> are the same, then they are only added to
1179 C<@INC> once.
1180
1181 C<$Config{usedevel}> and the C-level C<PERL_USE_DEVEL> are now defined if
1182 perl is built with  C<-Dusedevel>.
1183
1184 F<Configure> will enable use of C<-fstack-protector>, to provide protection
1185 against stack-smashing attacks, if the compiler supports it.
1186
1187 F<Configure> will now determine the correct prototypes for re-entrant
1188 functions and for C<gconvert> if you are using a C++ compiler rather
1189 than a C compiler.
1190
1191 On Unix, if you build from a tree containing a git repository, the
1192 configuration process will note the commit hash you have checked out, for
1193 display in the output of C<perl -v> and C<perl -V>. Unpushed local commits
1194 are automatically added to the list of local patches displayed by
1195 C<perl -V>.
1196
1197 USE_ATTRIBUTES_FOR_PERLIO is now reported in the compile-time options
1198 listed by the C<-V> switch.
1199
1200 =head2 Compilation improvements
1201
1202 As part of the flattening of F<ext>, all extensions on all platforms are
1203 built by F<make_ext.pl>. This replaces the Unix-specific
1204 F<ext/util/make_ext>, VMS-specific F<make_ext.com> and Win32-specific
1205 F<win32/buildext.pl>.
1206
1207 =head1 Changed Internals
1208
1209 =over 4
1210
1211 =item *
1212
1213 C<Perl_pmflag> has been removed from the public API. Calling it now
1214 generates a deprecation warning, and it will be removed in a future
1215 release. Although listed as part of the API, it was never documented,
1216 and only ever used in F<toke.c>, and prior to 5.10, F<regcomp.c>. In
1217 core, it has been replaced by a static function.
1218
1219 =item *
1220
1221 Perl_magic_setmglob now knows about globs, fixing RT #71254.
1222
1223 =item *
1224
1225 TODO: C<SVt_RV> is gone. RVs are now stored in IVs
1226
1227 =item *
1228
1229 TODO: REGEXPs are first class
1230
1231 =item *
1232
1233 TODO: OOK is reworked, such that an OOKed scalar is PV not PVIV
1234
1235 =item *
1236
1237 The J.R.R. Tolkien quotes at the head of C source file have been checked and
1238 proper citations added, thanks to a patch from Tom Christiansen.
1239
1240 =item *
1241
1242 C<Perl_vcroak()> now accepts a null first argument. In addition, a full audit
1243 was made of the "not NULL" compiler annotations, and those for several
1244 other internal functions were corrected.
1245
1246 =item *
1247
1248 New macros C<dSAVEDERRNO>, C<dSAVE_ERRNO>, C<SAVE_ERRNO>, C<RESTORE_ERRNO>
1249 have been added to formalise the temporary saving of the C<errno>
1250 variable.
1251
1252 =item *
1253
1254 The function C<Perl_sv_insert_flags> has been added to augment
1255 C<Perl_sv_insert>.
1256
1257 =item *
1258
1259 The function C<Perl_newSV_type(type)> has been added, equivalent to
1260 C<Perl_newSV()> followed by C<Perl_sv_upgrade(type)>.
1261
1262 =item *
1263
1264 The function C<Perl_newSVpvn_flags()> has been added, equivalent to
1265 C<Perl_newSVpvn()> and then performing the action relevant to the flag.
1266
1267 Two flag bits are currently supported.
1268
1269 =over 4
1270
1271 =item *
1272
1273 C<SVf_UTF8>
1274
1275 This will call C<SvUTF8_on()> for you. (Note that this does not convert an
1276 sequence of ISO 8859-1 characters to UTF-8). A wrapper, C<newSVpvn_utf8()>
1277 is available for this.
1278
1279 =item *
1280
1281 C<SVs_TEMP>
1282
1283 Call C<Perl_sv_2mortal()> on the new SV.
1284
1285 =back
1286
1287 There is also a wrapper that takes constant strings, C<newSVpvs_flags()>.
1288
1289 =item *
1290
1291 The function C<Perl_croak_xs_usage> has been added as a wrapper to
1292 C<Perl_croak>.
1293
1294 =item *
1295
1296 The functions C<PerlIO_find_layer> and C<PerlIO_list_alloc> are now
1297 exported.
1298
1299 =item *
1300
1301 C<PL_na> has been exterminated from the core code, replaced by local STRLEN
1302 temporaries, or C<*_nolen()> calls. Either approach is faster than C<PL_na>,
1303 which is a pointer deference into the interpreter structure under ithreads,
1304 and a global variable otherwise.
1305
1306 =item *
1307
1308 C<Perl_mg_free()> used to leave freed memory accessible via C<SvMAGIC()> on
1309 the scalar. It now updates the linked list to remove each piece of magic
1310 as it is freed.
1311
1312 =item *
1313
1314 Under ithreads, the regex in C<PL_reg_curpm> is now reference counted. This
1315 eliminates a lot of hackish workarounds to cope with it not being reference
1316 counted.
1317
1318 =item *
1319
1320 C<Perl_mg_magical()> would sometimes incorrectly turn on C<SvRMAGICAL()>.
1321 This has been fixed.
1322
1323 =item *
1324
1325 The I<public> IV and NV flags are now not set if the string value has
1326 trailing "garbage". This behaviour is consistent with not setting the
1327 public IV or NV flags if the value is out of range for the type.
1328
1329 =item *
1330
1331 SV allocation tracing has been added to the diagnostics enabled by C<-Dm>.
1332 The tracing can alternatively output via the C<PERL_MEM_LOG> mechanism, if
1333 that was enabled when the F<perl> binary was compiled.
1334
1335 =item *
1336
1337 Smartmatch resolution tracing has been added as a new diagnostic. Use C<-DM> to
1338 enable it.
1339
1340 =item *
1341
1342 A new debugging flag C<-DB> now dumps subroutine definitions, leaving
1343 C<-Dx> for its original purpose of dumping syntax trees.
1344
1345 =item *
1346
1347 Uses of C<Nullav>, C<Nullcv>, C<Nullhv>, C<Nullop>, C<Nullsv> etc have been
1348 replaced by C<NULL> in the core code, and non-dual-life modules, as C<NULL>
1349 is clearer to those unfamiliar with the core code.
1350
1351 =item *
1352
1353 A macro C<MUTABLE_PTR(p)> has been added, which on (non-pedantic) gcc will
1354 not cast away C<const>, returning a C<void *>. Macros C<MUTABLE_SV(av)>,
1355 C<MUTABLE_SV(cv)> etc build on this, casting to C<AV *> etc without
1356 casting away C<const>. This allows proper compile-time auditing of
1357 C<const> correctness in the core, and helped picked up some errors (now
1358 fixed).
1359
1360 =item *
1361
1362 Macros C<mPUSHs()> and C<mXPUSHs()> have been added, for pushing SVs on the
1363 stack and mortalizing them.
1364
1365 =item *
1366
1367 Use of the private structure C<mro_meta> has changed slightly. Nothing
1368 outside the core should be accessing this directly anyway.
1369
1370 =item *
1371
1372 A new tool, F<Porting/expand-macro.pl> has been added, that allows you
1373 to view how a C preprocessor macro would be expanded when compiled.
1374 This is handy when trying to decode the macro hell that is the perl
1375 guts.
1376
1377 =back
1378
1379 =head1 Testing
1380
1381 =head2 New Tests
1382
1383 Many modules updated from CPAN incorporate new tests.
1384 Several tests that have the potential to hang forever if they fail now
1385 incorporate a "watchdog" functionality that will kill them after a timeout,
1386 which helps ensure that C<make test> and C<make test_harness> run to
1387 completion automatically. (Jerry Hedden).
1388
1389 Some core-specific tests have been added:
1390
1391 =over 4
1392
1393 =item *
1394
1395 Significant cleanups to core tests to ensure that language and
1396 interpreter features are not used before they're tested.
1397
1398 =item *
1399
1400 C<make test_porting> now runs a number of important pre-commit checks
1401 which might be of use to anyone working on the Perl core.
1402
1403 =item *
1404
1405 F<t/porting/podcheck.t> automatically checks the well-formedness of
1406 POD found in all .pl, .pm and .pod files in the F<MANIFEST>, other than in
1407 dual-lifed modules which are primarily maintained outside the Perl core.
1408
1409 =item *
1410
1411 F<t/porting/manifest.t> now tests that all files listed in MANIFEST are present.
1412
1413 =item *
1414
1415 F<t/op/while_readdir.t>
1416
1417 Test that a bare readdir in while loop sets $_.
1418
1419 =item *
1420
1421 F<t/comp/retainedlines.t>
1422
1423 Check that the debugger can retain source lines from C<eval>.
1424
1425 =item *
1426
1427 F<t/io/perlio_fail.t>
1428
1429 Check that bad layers fail.
1430
1431 =item *
1432
1433 F<t/io/perlio_leaks.t>
1434
1435 Check that PerlIO layers are not leaking.
1436
1437 =item *
1438
1439 F<t/io/perlio_open.t>
1440
1441 Check that certain special forms of open work.
1442
1443 =item *
1444
1445 F<t/io/perlio.t>
1446
1447 General PerlIO tests.
1448
1449 =item *
1450
1451 F<t/io/pvbm.t>
1452
1453 Check that there is no unexpected interaction between the internal types
1454 C<PVBM> and C<PVGV>.
1455
1456 =item *
1457
1458 F<t/mro/package_aliases.t>
1459
1460 Check that mro works properly in the presence of aliased packages.
1461
1462 =item *
1463
1464 F<t/op/dbm.t>
1465
1466 Tests for C<dbmopen> and C<dbmclose>.
1467
1468 =item *
1469
1470 F<t/op/index_thr.t>
1471
1472 Tests for the interaction of C<index> and threads.
1473
1474 =item *
1475
1476 F<t/op/pat_thr.t>
1477
1478 Tests for the interaction of esoteric patterns and threads.
1479
1480 =item *
1481
1482 F<t/op/qr_gc.t>
1483
1484 Test that C<qr> doesn't leak.
1485
1486 =item *
1487
1488 F<t/op/reg_email_thr.t>
1489
1490 Tests for the interaction of regex recursion and threads.
1491
1492 =item *
1493
1494 F<t/op/regexp_qr_embed_thr.t>
1495
1496 Tests for the interaction of patterns with embedded C<qr//> and threads.
1497
1498 =item *
1499
1500 F<t/op/regexp_unicode_prop.t>
1501
1502 Tests for Unicode properties in regular expressions.
1503
1504 =item *
1505
1506 F<t/op/regexp_unicode_prop_thr.t>
1507
1508 Tests for the interaction of Unicode properties and threads.
1509
1510 =item *
1511
1512 F<t/op/reg_nc_tie.t>
1513
1514 Test the tied methods of C<Tie::Hash::NamedCapture>.
1515
1516 =item *
1517
1518 F<t/op/reg_posixcc.t>
1519
1520 Check that POSIX character classes behave consistently.
1521
1522 =item *
1523
1524 F<t/op/re.t>
1525
1526 Check that exportable C<re> functions in F<universal.c> work.
1527
1528 =item *
1529
1530 F<t/op/setpgrpstack.t>
1531
1532 Check that C<setpgrp> works.
1533
1534 =item *
1535
1536 F<t/op/substr_thr.t>
1537
1538 Tests for the interaction of C<substr> and threads.
1539
1540 =item *
1541
1542 F<t/op/upgrade.t>
1543
1544 Check that upgrading and assigning scalars works.
1545
1546 =item *
1547
1548 F<t/uni/lex_utf8.t>
1549
1550 Check that Unicode in the lexer works.
1551
1552 =item *
1553
1554 F<t/uni/tie.t>
1555
1556 Check that Unicode and C<tie> work.
1557
1558 =item *
1559
1560 F<t/comp/final_line_num.t>
1561
1562 See if line numbers are correct at EOF
1563
1564 =item *
1565
1566 F<t/comp/form_scope.t>
1567
1568 See if format scoping works
1569
1570 =item *
1571
1572 F<t/comp/line_debug.t>
1573
1574 See if C<< @{"_<$file"} >> works
1575
1576 =item *
1577
1578 F<t/op/filetest_t.t>
1579
1580 See if -t file test works
1581
1582 =item *
1583
1584 F<t/op/qr.t>
1585
1586 See if qr works
1587
1588 =item *
1589
1590 F<t/op/utf8cache.t>
1591
1592 Tests malfunctions of utf8 cache
1593
1594 =item *
1595
1596 F<t/re/uniprops.t>
1597
1598 Test unicode \p{} regex constructs
1599
1600 =back
1601
1602 =head2 Testing improvements
1603
1604 =over 4
1605
1606 =item *
1607
1608 It's now possible to override C<PERL5OPT> and friends in F<t/TEST>
1609
1610 =back
1611
1612
1613 =head1 New or Changed Diagnostics
1614
1615 Several new diagnostics, see L<perldiag> for details.
1616
1617 =over 4
1618
1619 =item *
1620
1621 C<Bad plugin affecting keyword '%s'>
1622
1623 =item *
1624
1625 C<gmtime(%.0f) too large>
1626
1627 =item *
1628
1629 C<Lexing code attempted to stuff non-Latin-1 character into Latin-1 input>
1630
1631 =item *
1632
1633 C<Lexing code internal error (%s)>
1634
1635 =item *
1636
1637 C<localtime(%.0f) too large>
1638
1639 =item *
1640
1641 C<Overloaded dereference did not return a reference>
1642
1643 =item *
1644
1645 C<Overloaded qr did not return a REGEXP>
1646
1647 =item *
1648
1649 C<Perl_pmflag() is deprecated, and will be removed from the XS API>
1650
1651 =item *
1652
1653 New warning category C<illegalproto>
1654
1655 The two warnings :
1656
1657   Illegal character in prototype for %s : %s
1658   Prototype after '%c' for %s : %s
1659
1660 have been moved from the C<syntax> top-level warnings category into a new
1661 first-level category, C<illegalproto>. These two warnings are currently the
1662 only ones emitted during parsing of an invalid/illegal prototype, so one
1663 can now do
1664
1665   no warnings 'illegalproto';
1666
1667 to suppress only those, but not other syntax-related warnings. Warnings where
1668 prototypes are changed, ignored, or not met are still in the C<prototype>
1669 category as before. (Matt S. Trout)
1670
1671 =item *
1672
1673 lvalue attribute ignored after the subroutine has been defined
1674
1675 This new warning is issued when one attempts to mark a subroutine as
1676 lvalue after it has been defined.
1677
1678 =item *
1679
1680 warn if C<++> or C<--> are unable to change the value because it's
1681 beyond the limit of representation
1682
1683 This uses a new warnings category: "imprecision".
1684
1685 =item * 
1686
1687 C<lc>, C<uc>, C<lcfirst>, and C<ucfirst> warn when passed undef.
1688
1689 =item *
1690
1691 Show constant in "Useless use of a constant in void context"
1692
1693 =item *
1694
1695 Make the new warning report undef constants as undef
1696
1697 =item *
1698
1699 Add a new warning, "Prototype after '%s'"
1700
1701 =item *
1702
1703 Tweak the "Illegal character in prototype" warning so it's more precise
1704 when reporting illegal characters after _
1705
1706 =item *
1707
1708 Correct the unintended interpolation of C<$\> in regex
1709
1710 =item *
1711
1712 Make overflow warnings in C<gmtime> and C<localtime> only occur when
1713 warnings are enabled
1714
1715 =item *
1716
1717 Improve mro merging error messages.
1718
1719 They are now very similar to those produced by Algorithm::C3.
1720
1721 =item *
1722
1723 Amelioration of the error message "Unrecognized character %s in column %d"
1724
1725 Changes the error message to "Unrecognized character %s; marked by E<lt>--
1726 HERE after %sE<lt>-- HERE near column %d". This should make it a little
1727 simpler to spot and correct the suspicious character.
1728
1729 =item *
1730
1731 Explicitely point to C<$.> when it causes an uninitialized warning for
1732 ranges in scalar context
1733
1734 =item *
1735
1736 C<split> now warns when called in void context
1737
1738 =item *
1739
1740 C<printf>-style functions called with too few arguments will now issue the
1741 warning C<"Missing argument in %s"> [perl #71000]
1742
1743 =item *
1744
1745 C<panic: sv_chop %s>
1746
1747 This new fatal error occurs when the C routine C<Perl_sv_chop()> was
1748 passed a position that is not within the scalar's string buffer. This
1749 could be caused by buggy XS code, and at this point recovery is not
1750 possible.
1751
1752 =item *
1753
1754 C<Deep recursion on subroutine "%s">
1755
1756 It is now possible to change the depth threshold for this warning from the
1757 default of 100, by recompiling the F<perl> binary, setting the C
1758 pre-processor macro C<PERL_SUB_DEPTH_WARN> to the desired value.
1759
1760 =item *
1761
1762 Perl now properly returns a syntax error instead of segfaulting
1763 if C<each>, C<keys>, or C<values> is used without an argument.
1764
1765 =item *
1766
1767 C<tell()> now fails properly if called without an argument and when no
1768 previous file was read.
1769
1770 C<tell()> now returns C<-1>, and sets errno to C<EBADF>, thus restoring
1771 the 5.8.x behaviour.
1772
1773 =item *
1774
1775 C<overload> no longer implicitly unsets fallback on repeated 'use
1776 overload' lines.
1777
1778 =item *
1779
1780 POSIX::strftime() can now handle Unicode characters in the format string.
1781
1782 =item *
1783
1784 The Windows select() implementation now supports all empty C<fd_set>s
1785 more correctly.
1786
1787 =item *
1788
1789 The "syntax" category was removed from 5 warnings that should only be in
1790 "deprecated".
1791
1792 =item *
1793
1794 Three fatal C<pack>/C<unpack> error messages have been normalized to
1795 "panic: %s"
1796
1797 =item *
1798
1799 "Unicode character is illegal" has been rephrased to be more accurate
1800
1801 It now reads C<Unicode non-character is illegal in interchange> and the
1802 perldiag documentation has been expanded a bit.
1803
1804 =item *
1805
1806 Perl now defaults to issuing a warning if a deprecated language feature
1807 is used.
1808
1809 To disable this feature in a given lexical scope, you should use C<no
1810 warnings 'deprecated';> For information about which language features
1811 are deprecated and explanations of various deprecation warnings, please
1812 see L<perldiag.pod>
1813
1814 =back
1815
1816 The following diagnostics have been removed:
1817
1818 =over 4
1819
1820 =item *
1821
1822 C<Runaway format>
1823
1824 =item *
1825
1826 C<Can't locate package %s for the parents of %s>
1827
1828 This warning has been removed. In general, it only got produced in
1829 conjunction with other warnings, and removing it allowed an ISA lookup
1830 optimisation to be added.
1831
1832 =item *
1833
1834 C<v-string in use/require is non-portable>
1835
1836 =back
1837
1838 =head1 Utility Changes
1839
1840 =over 4
1841
1842 =item *
1843
1844 F<h2ph>
1845
1846 Now looks in C<include-fixed> too, which is a recent addition to gcc's
1847 search path.
1848
1849 =item *
1850
1851 F<h2xs>
1852
1853 No longer incorrectly treats enum values like macros (Daniel Burr).
1854
1855 Now handles C++ style constants (C<//>) properly in enums. (A patch from
1856 Rainer Weikusat was used; Daniel Burr also proposed a similar fix).
1857
1858 =item *
1859
1860 F<perl5db.pl>
1861
1862 C<LVALUE> subroutines now work under the debugger.
1863
1864 The debugger now correctly handles proxy constant subroutines, and
1865 subroutine stubs.
1866
1867 =item *
1868
1869 F<perlbug>
1870
1871 F<perlbug> now uses C<%Module::CoreList::bug_tracker> to print out upstream bug
1872 tracker URLs.
1873
1874 Where the user names a module that their bug report is about, and we know the
1875 URL for its upstream bug tracker, provide a message to the user explaining
1876 that the core copies the CPAN version directly, and provide the URL for
1877 reporting the bug directly to upstream.
1878
1879 =item *
1880
1881 F<perlthanks>
1882
1883 Perl 5.11.0 added a new utility F<perlthanks>, which is a variant of
1884 F<perlbug>, but for sending non-bug-reports to the authors and maintainers
1885 of Perl. Getting nothing but bug reports can become a bit demoralising:
1886 we'll see if this changes things.
1887
1888 =item *
1889
1890 F<perlbug>
1891
1892 No longer reports "Message sent" when it hasn't actually sent the message
1893
1894 =item *
1895
1896 F<a2p>
1897
1898 Fixed bugs with the match() operator in list context, remove mention of
1899 C<$[>.
1900
1901 =back
1902
1903 =head1 Selected Bug Fixes
1904
1905 =over 4
1906
1907 =item *
1908
1909 Ensure that pp_qr returns a new regexp SV each time. Resolves RT #69852.
1910
1911 Instead of returning a(nother) reference to the (pre-compiled) regexp in the
1912 optree, use reg_temp_copy() to create a copy of it, and return a reference to
1913 that. This resolves issues about Regexp::DESTROY not being called in a timely
1914 fashion (the original bug tracked by RT #69852), as well as bugs related to
1915 blessing regexps, and of assigning to regexps, as described in correspondence
1916 added to the ticket.
1917
1918 It transpires that we also need to undo the SvPVX() sharing when ithreads
1919 cloning a Regexp SV, because mother_re is set to NULL, instead of a cloned
1920 copy of the mother_re. This change might fix bugs with regexps and threads in
1921 certain other situations, but as yet neither tests nor bug reports have
1922 indicated any problems, so it might not actually be an edge case that it's
1923 possible to reach.
1924
1925 =item *
1926
1927 Several compilation errors and segfaults when perl was built with C<-Dmad> were fixed.
1928
1929 =item *
1930
1931 Fixes for lexer API changes in 5.11.2 which broke NYTProf's savesrc option.
1932
1933 =item *
1934
1935 C<-t> should only return TRUE for file handles connected to a TTY
1936
1937 The Microsoft C version of C<isatty()> returns TRUE for all
1938 character mode devices, including the F</dev/null>-style "nul"
1939 device and printers like "lpt1".
1940
1941 =item *
1942
1943 Fixed a regression caused by commit fafafbaf which caused a panic during
1944 parameter passing [perl #70171]
1945
1946 =item *
1947
1948 On systems which in-place edits without backup files, -i'*' now works as
1949 the documentation says it does [perl #70802]
1950
1951 =item *
1952
1953 Saving and restoring magic flags no longer loses readonly flag.
1954
1955 =item *
1956
1957 The malformed syntax C<grep EXPR LIST> (note the missing comma) no longer
1958 causes abrupt and total failure.
1959
1960 =item *
1961
1962 Regular expressions compiled with C<qr{}> literals properly set C<$'> when
1963 matching again.
1964
1965 =item *
1966
1967 Using named subroutines with C<sort> should no longer lead to bus errors [perl
1968 #71076]
1969
1970 =item *
1971
1972 Numerous bugfixes catch small issues caused by the recently-added Lexer API.
1973
1974 =item *
1975
1976 Smart match against C<@_> sometimes gave false negatives. [perl #71078]
1977
1978 =item *
1979
1980 C<$@> may now be assigned a read-only value (without error or busting
1981 the stack).
1982
1983 =item *
1984
1985 C<sort> called recursively from within an active comparison subroutine no
1986 longer causes a bus error if run multiple times. [perl #71076]
1987
1988 =item *
1989
1990 Tie::Hash::NamedCapture::* will not abort if passed bad input (RT #71828)
1991
1992 =item *
1993
1994 @_ and $_ no longer leak under threads (RT #34342 and #41138, also
1995 #70602, #70974)
1996
1997 =item *
1998
1999 C<-I> on shebang line now adds directories in front of @INC
2000 as documented, and as does C<-I> when specified on the command-line.
2001
2002 =item *
2003
2004 C<kill> is now fatal when called on non-numeric process identifiers.
2005 Previously, an C<undef> process identifier would be interpreted as a
2006 request to kill process 0, which would terminate the current process
2007 group on POSIX systems.  Since process identifiers are always integers,
2008 killing a non-numeric process is now fatal.
2009
2010 =item *
2011
2012 5.10.0 inadvertently disabled an optimisation, which caused a measurable
2013 performance drop in list assignment, such as is often used to assign
2014 function parameters from C<@_>. The optimisation has been re-instated, and
2015 the performance regression fixed.  (This fix is also present in 5.10.1)
2016
2017 =item *
2018
2019 Fixed memory leak on C<while (1) { map 1, 1 }> [RT #53038].
2020
2021 =item *
2022
2023 Some potential coredumps in PerlIO fixed [RT #57322,54828].
2024
2025 =item *
2026
2027 The debugger now works with lvalue subroutines.
2028
2029 =item *
2030
2031 The debugger's C<m> command was broken on modules that defined constants
2032 [RT #61222].
2033
2034 =item *
2035
2036 C<crypt> and string complement could return tainted values for untainted
2037 arguments [RT #59998].
2038
2039 =item *
2040
2041 The C<-i>I<.suffix> command-line switch now recreates the file using
2042 restricted permissions, before changing its mode to match the original
2043 file. This eliminates a potential race condition [RT #60904].
2044
2045 =item *
2046
2047 On some Unix systems, the value in C<$?> would not have the top bit set
2048 (C<$? & 128>) even if the child core dumped.
2049
2050 =item *
2051
2052 Under some circumstances, C<$^R> could incorrectly become undefined
2053 [RT #57042].
2054
2055 =item *
2056
2057 In the XS API, various hash functions, when passed a pre-computed hash where
2058 the key is UTF-8, might result in an incorrect lookup.
2059
2060 =item *
2061
2062 XS code including F<XSUB.h> before F<perl.h> gave a compile-time error
2063 [RT #57176].
2064
2065 =item *
2066
2067 C<< $object-E<gt>isa('Foo') >> would report false if the package C<Foo> didn't
2068 exist, even if the object's C<@ISA> contained C<Foo>.
2069
2070 =item *
2071
2072 Various bugs in the new-to 5.10.0 mro code, triggered by manipulating
2073 C<@ISA>, have been found and fixed.
2074
2075 =item *
2076
2077 Bitwise operations on references could crash the interpreter, e.g.
2078 C<$x=\$y; $x |= "foo"> [RT #54956].
2079
2080 =item *
2081
2082 Patterns including alternation might be sensitive to the internal UTF-8
2083 representation, e.g.
2084
2085     my $byte = chr(192);
2086     my $utf8 = chr(192); utf8::upgrade($utf8);
2087     $utf8 =~ /$byte|X}/i;       # failed in 5.10.0
2088
2089 =item *
2090
2091 Within UTF8-encoded Perl source files (i.e. where C<use utf8> is in
2092 effect), double-quoted literal strings could be corrupted where a C<\xNN>,
2093 C<\0NNN> or C<\N{}> is followed by a literal character with ordinal value
2094 greater than 255 [RT #59908].
2095
2096 =item *
2097
2098 C<B::Deparse> failed to correctly deparse various constructs:
2099 C<readpipe STRING> [RT #62428], C<CORE::require(STRING)> [RT #62488],
2100 C<sub foo(_)> [RT #62484].
2101
2102 =item *
2103
2104 Using C<setpgrp> with no arguments could corrupt the perl stack.
2105
2106 =item *
2107
2108 The block form of C<eval> is now specifically trappable by C<Safe> and
2109 C<ops>.  Previously it was erroneously treated like string C<eval>.
2110
2111 =item *
2112
2113 In 5.10.0, the two characters C<[~> were sometimes parsed as the smart
2114 match operator (C<~~>) [RT #63854].
2115
2116 =item *
2117
2118 In 5.10.0, the C<*> quantifier in patterns was sometimes treated as
2119 C<{0,32767}> [RT #60034, #60464]. For example, this match would fail:
2120
2121     ("ab" x 32768) =~ /^(ab)*$/
2122
2123 =item *
2124
2125 C<shmget> was limited to a 32 bit segment size on a 64 bit OS [RT #63924].
2126
2127 =item *
2128
2129 Using C<next> or C<last> to exit a C<given> block no longer produces a
2130 spurious warning like the following:
2131
2132     Exiting given via last at foo.pl line 123
2133
2134 =item *
2135
2136 On Windows, C<'.\foo'> and C<'..\foo'>  were treated differently than
2137 C<'./foo'> and C<'../foo'> by C<do> and C<require> [RT #63492].
2138
2139 =item *
2140
2141 Assigning a format to a glob could corrupt the format; e.g.:
2142
2143      *bar=*foo{FORMAT}; # foo format now bad
2144
2145 =item *
2146
2147 Attempting to coerce a typeglob to a string or number could cause an
2148 assertion failure. The correct error message is now generated,
2149 C<Can't coerce GLOB to I<$type>>.
2150
2151 =item *
2152
2153 Under C<use filetest 'access'>, C<-x> was using the wrong access mode. This
2154 has been fixed [RT #49003].
2155
2156 =item *
2157
2158 C<length> on a tied scalar that returned a Unicode value would not be
2159 correct the first time. This has been fixed.
2160
2161 =item *
2162
2163 Using an array C<tie> inside in array C<tie> could SEGV. This has been
2164 fixed. [RT #51636]
2165
2166 =item *
2167
2168 A race condition inside C<PerlIOStdio_close()> has been identified and
2169 fixed. This used to cause various threading issues, including SEGVs.
2170
2171 =item *
2172
2173 In C<unpack>, the use of C<()> groups in scalar context was internally
2174 placing a list on the interpreter's stack, which manifested in various
2175 ways, including SEGVs.  This is now fixed [RT #50256].
2176
2177 =item *
2178
2179 Magic was called twice in C<substr>, C<\&$x>, C<tie $x, $m> and C<chop>.
2180 These have all been fixed.
2181
2182 =item *
2183
2184 A 5.10.0 optimisation to clear the temporary stack within the implicit
2185 loop of C<s///ge> has been reverted, as it turned out to be the cause of
2186 obscure bugs in seemingly unrelated parts of the interpreter [commit
2187 ef0d4e17921ee3de].
2188
2189 =item *
2190
2191 The line numbers for warnings inside C<elsif> are now correct.
2192
2193 =item *
2194
2195 The C<..> operator now works correctly with ranges whose ends are at or
2196 close to the values of the smallest and largest integers.
2197
2198 =item *
2199
2200 C<binmode STDIN, ':raw'> could lead to segmentation faults on some platforms.
2201 This has been fixed [RT #54828].
2202
2203 =item *
2204
2205 An off-by-one error meant that C<index $str, ...> was effectively being
2206 executed as C<index "$str\0", ...>. This has been fixed [RT #53746].
2207
2208 =item *
2209
2210 Various leaks associated with named captures in regexes have been fixed
2211 [RT #57024].
2212
2213 =item *
2214
2215 A weak reference to a hash would leak. This was affecting C<DBI>
2216 [RT #56908].
2217
2218 =item *
2219
2220 Using (?|) in a regex could cause a segfault [RT #59734].
2221
2222 =item *
2223
2224 Use of a UTF-8 C<tr//> within a closure could cause a segfault [RT #61520].
2225
2226 =item *
2227
2228 Calling C<Perl_sv_chop()> or otherwise upgrading an SV could result in an
2229 unaligned 64-bit access on the SPARC architecture [RT #60574].
2230
2231 =item *
2232
2233 In the 5.10.0 release, C<inc_version_list> would incorrectly list
2234 C<5.10.*> after C<5.8.*>; this affected the C<@INC> search order
2235 [RT #67628].
2236
2237 =item *
2238
2239 In 5.10.0, C<pack "a*", $tainted_value> returned a non-tainted value
2240 [RT #52552].
2241
2242 =item *
2243
2244 In 5.10.0, C<printf> and C<sprintf> could produce the fatal error
2245 C<panic: utf8_mg_pos_cache_update> when printing UTF-8 strings
2246 [RT #62666].
2247
2248 =item *
2249
2250 In the 5.10.0 release, a dynamically created C<AUTOLOAD> method might be
2251 missed (method cache issue) [RT #60220,60232].
2252
2253 =item *
2254
2255 In the 5.10.0 release, a combination of C<use feature> and C<//ee> could
2256 cause a memory leak [RT #63110].
2257
2258 =item *
2259
2260 C<-C> on the shebang (C<#!>) line is once more permitted if it is also
2261 specified on the command line. C<-C> on the shebang line used to be a
2262 silent no-op I<if> it was not also on the command line, so perl 5.10.0
2263 disallowed it, which broke some scripts. Now perl checks whether it is
2264 also on the command line and only dies if it is not [RT #67880].
2265
2266 =item *
2267
2268 In 5.10.0, certain types of re-entrant regular expression could crash,
2269 or cause the following assertion failure [RT #60508]:
2270
2271     Assertion rx->sublen >= (s - rx->subbeg) + i failed
2272
2273 =item *
2274
2275 Previously missing files from Unicode 5.1 Character Database are now included.
2276
2277 =item *
2278
2279 C<TMPDIR> is now honored when opening an anonymous temporary file
2280
2281 =back
2282
2283 =head1 Platform Specific Changes
2284
2285 =head2 New Platforms
2286
2287 =over
2288
2289 =item Haiku
2290
2291 Patches from the Haiku maintainers have been merged in. Perl should now
2292 build on Haiku.
2293
2294 =item MirOS BSD
2295
2296 Perl should now build on MirOS BSD.
2297
2298
2299 =back
2300
2301 =head2 Discontinued Platforms
2302
2303 =over
2304
2305 =item DomainOS
2306
2307 Support for Apollo DomainOS was removed in Perl 5.11.0
2308
2309 =item MachTen
2310
2311 Support for Tenon Intersystems MachTen Unix layer for MacOS Classic was
2312 removed in Perl 5.11.0
2313
2314 =item MiNT
2315
2316 Support for Atari MiNT was removed in Perl 5.11.0.
2317
2318 =back
2319
2320 =head2 Updated Platforms
2321
2322 =over 4
2323
2324 =item Darwin (Mac OS X)
2325
2326 =over 4
2327
2328 =item *
2329
2330 Skip testing the be_BY.CP1131 locale on Darwin 10 (Mac OS X 10.6),
2331 as it's still buggy.
2332
2333 =item *
2334
2335 Correct infelicities in the regexp used to identify buggy locales
2336 on Darwin 8 and 9 (Mac OS X 10.4 and 10.5, respectively).
2337
2338 =back
2339
2340 =item DragonFly BSD
2341
2342 =over 4
2343
2344 =item *
2345
2346 Fix thread library selection [perl #69686]
2347
2348 =back
2349
2350 =item Win32
2351
2352 =over 4
2353
2354 =item *
2355
2356 Initial support for mingw64 is now available
2357
2358 =item *
2359
2360 Various bits of Perl's build infrastructure are no longer converted to
2361 win32 line endings at release time. If this hurts you, please report the
2362 problem with the L<perlbug> program included with perl.
2363
2364 =item *
2365
2366 Always add a manifest resource to C<perl.exe> to specify the C<trustInfo>
2367 settings for Windows Vista and later.  Without this setting Windows
2368 will treat C<perl.exe> as a legacy application and apply various
2369 heuristics like redirecting access to protected file system areas
2370 (like the "Program Files" folder) to the users "VirtualStore"
2371 instead of generating a proper "permission denied" error.
2372
2373 For VC8 and VC9 this manifest setting is automatically generated by
2374 the compiler/linker (together with the binding information for their
2375 respective runtime libraries); for all other compilers we need to
2376 embed the manifest resource explicitly in the external resource file.
2377
2378 This change also requests the Microsoft Common-Controls version 6.0
2379 (themed controls introduced in Windows XP) via the dependency list
2380 in the assembly manifest.  For VC8 and VC9 this is specified using the
2381 C</manifestdependency> linker commandline option instead.
2382
2383 =item *
2384
2385 Improved message window handling means that C<alarm> and C<kill> messages
2386 will no longer be dropped under race conditions.
2387
2388 =back
2389
2390 =item cygwin
2391
2392 =over 4
2393
2394 =item *
2395
2396 Enable IPv6 support on cygwin 1.7 and newer
2397
2398 =back
2399
2400 =item OpenVMS
2401
2402 =over 4
2403
2404 =item *
2405
2406 Make -UDEBUGGING the default on VMS for 5.12.0.
2407
2408 Like it has been everywhere else for ages and ages.  Also make
2409 command-line selection of -UDEBUGGING and -DDEBUGGING work in
2410 configure.com; before the only way to turn it off was by saying
2411 no in answer to the interactive question.
2412
2413 =item *
2414
2415 The default pipe buffer size on VMS has been updated to 8192 on 64-bit
2416 systems.
2417
2418 =item *
2419
2420 Reads from the in-memory temporary files of C<PerlIO::scalar> used to fail
2421 if C<$/> was set to a numeric reference (to indicate record-style reads).
2422 This is now fixed.
2423
2424 =item *
2425
2426 VMS now supports C<getgrgid>.
2427
2428 =item *
2429
2430 Many improvements and cleanups have been made to the VMS file name handling
2431 and conversion code.
2432
2433 =item *
2434
2435 Enabling the C<PERL_VMS_POSIX_EXIT> logical name now encodes a POSIX exit
2436 status in a VMS condition value for better interaction with GNV's bash
2437 shell and other utilities that depend on POSIX exit values.  See
2438 L<perlvms/"$?"> for details.
2439
2440 =item *
2441
2442 C<File::Copy> now detects Unix compatibility mode on VMS.
2443
2444 =back
2445
2446 =item AIX
2447
2448 Removed F<libbsd> for AIX 5L and 6.1. Only C<flock()> was used from F<libbsd>.
2449
2450 Removed F<libgdbm> for AIX 5L and 6.1. The F<libgdbm> is delivered as an
2451 optional package with the AIX Toolbox. Unfortunately the 64 bit version
2452 is broken.
2453
2454 Hints changes mean that AIX 4.2 should work again.
2455
2456 =item Cygwin
2457
2458 On Cygwin we now strip the last number from the DLL. This has been the
2459 behaviour in the cygwin.com build for years. The hints files have been
2460 updated.
2461
2462
2463 =item FreeBSD
2464
2465 The hints files now identify the correct threading libraries on FreeBSD 7
2466 and later.
2467
2468 =item Irix
2469
2470 We now work around a bizarre preprocessor bug in the Irix 6.5 compiler:
2471 C<cc -E -> unfortunately goes into K&R mode, but C<cc -E file.c> doesn't.
2472
2473 =item NetBSD
2474
2475 Hints now supports versions 5.*.
2476
2477 =item Stratus VOS
2478
2479 Various changes from Stratus have been merged in.
2480
2481 =item Symbian
2482
2483 There is now support for Symbian S60 3.2 SDK and S60 5.0 SDK.
2484
2485 =back
2486
2487 =head1 Known Problems
2488
2489 This is a list of some significant unfixed bugs, which are regressions
2490 from either 5.10.0 or 5.8.x.
2491
2492 =over 4
2493
2494 =item *
2495
2496 C<List::Util::first> misbehaves in the presence of a lexical C<$_>
2497 (typically introduced by C<my $_> or implicitly by C<given>). The variable
2498 which gets set for each iteration is the package variable C<$_>, not the
2499 lexical C<$_> [RT #67694].
2500
2501 A similar issue may occur in other modules that provide functions which
2502 take a block as their first argument, like
2503
2504     foo { ... $_ ...} list
2505
2506 =item *
2507
2508 The C<charnames> pragma may generate a run-time error when a regex is
2509 interpolated [RT #56444]:
2510
2511     use charnames ':full';
2512     my $r1 = qr/\N{THAI CHARACTER SARA I}/;
2513     "foo" =~ $r1;    # okay
2514     "foo" =~ /$r1+/; # runtime error
2515
2516 A workaround is to generate the character outside of the regex:
2517
2518     my $a = "\N{THAI CHARACTER SARA I}";
2519     my $r1 = qr/$a/;
2520
2521 =item *
2522
2523 Some regexes may run much more slowly when run in a child thread compared
2524 with the thread the pattern was compiled into [RT #55600].
2525
2526 =item *
2527
2528 Untriaged test crashes on Windows 2000
2529
2530 Several porters have reported mysterious crashes when Perl's entire test suite is run after a build on certain Windows 2000 systems.  When run by hand, the individual tests reportedly work fine.
2531
2532 =item *
2533
2534 Known test failures on VMS
2535
2536 Perl 5.11.1 fails a small set of core and CPAN tests as of this release.
2537 With luck, that'll be sorted out for 5.11.2
2538
2539 =item *
2540
2541 Known test failures on VMS
2542
2543 Perl 5.11.2 fails a small set of core and CPAN tests as of this
2544 release. With luck, that'll be sorted out for 5.11.3.
2545
2546 =back
2547
2548 =head1 Acknowledgements
2549
2550 Perl 5.12.0 represents approximately two years of development since
2551 Perl 5.10.0 and contains __ lines of changes across ___ files
2552 from __ authors and committers:
2553
2554 XXX TODO LIST
2555
2556 Many of the changes included in this version originated in the CPAN
2557 modules included in Perl's core. We're grateful to the entire CPAN
2558 community for helping Perl to flourish.
2559
2560 =head1 Reporting Bugs
2561
2562 If you find what you think is a bug, you might check the articles
2563 recently posted to the comp.lang.perl.misc newsgroup and the perl
2564 bug database at L<http://rt.perl.org/perlbug/>.  There may also be
2565 information at L<http://www.perl.org/>, the Perl Home Page.
2566
2567 If you believe you have an unreported bug, please run the B<perlbug>
2568 program included with your release.  Be sure to trim your bug down
2569 to a tiny but sufficient test case.  Your bug report, along with the
2570 output of C<perl -V>, will be sent off to perlbug@perl.org to be
2571 analyzed by the Perl porting team.
2572
2573 If the bug you are reporting has security implications, which make it
2574 inappropriate to send to a publicly archived mailing list, then please send
2575 it to perl5-security-report@perl.org. This points to a closed subscription
2576 unarchived mailing list, which includes all the core committers, who be able
2577 to help assess the impact of issues, figure out a resolution, and help
2578 co-ordinate the release of patches to mitigate or fix the problem across all
2579 platforms on which Perl is supported. Please only use this address for
2580 security issues in the Perl core, not for modules independently
2581 distributed on CPAN.
2582
2583 =head1 SEE ALSO
2584
2585 The F<Changes> file for an explanation of how to view exhaustive details
2586 on what changed.
2587
2588 The F<INSTALL> file for how to build Perl.
2589
2590 The F<README> file for general stuff.
2591
2592 The F<Artistic> and F<Copying> files for copyright information.
2593
2594 =cut