Tidy up some more Pod nits.
[p5sagit/p5-mst-13.2.git] / pod / perl5110delta.pod
CommitLineData
fa7da8f7 1=encoding utf8
2
7120b314 3=head1 NAME
4
5a00ee6a 5perl5110delta - what is new for perl v5.11.0
7120b314 6
7=head1 DESCRIPTION
8
5a00ee6a 9This document describes differences between the 5.10.0 release and
10the 5.11.0 development release.
7120b314 11
12=head1 Incompatible Changes
13
ad1d1c50 14=head2 In @INC, move ARCHLIB and PRIVLIB after the current version's site_perl and vendor_perl.
15
8b8da387 16=head2 Switch statement changes
17
18The handling of complex expressions by the C<given>/C<when> switch
a98ccf1e 19statement has been enhanced. These enhancements are also available in
205.10.1 and subsequent 5.10 releases. There are two new cases where C<when> now
412304fb 21interprets its argument as a boolean, instead of an expression to be used
8b8da387 22in a smart match:
23
24=over 4
25
8b8da387 26=item flip-flop operators
27
98814a2b 28The C<..> and C<...> flip-flop operators are now evaluated in boolean
29context, following their usual semantics; see L<perlop/"Range Operators">.
30
31Note that, as in perl 5.10.0, C<when (1..10)> will not work to test
32whether a given value is an integer between 1 and 10; you should use
33C<when ([1..10])> instead (note the array reference).
34
35However, contrary to 5.10.0, evaluating the flip-flop operators in boolean
36context ensures it can now be useful in a C<when()>, notably for
37implementing bistable conditions, like in:
38
5a00ee6a 39 when (/^=begin/ .. /^=end/) {
40 # do something
41 }
8b8da387 42
43=item defined-or operator
44
45A compound expression involving the defined-or operator, as in
46C<when (expr1 // expr2)>, will be treated as boolean if the first
47expression is boolean. (This just extends the existing rule that applies
48to the regular or operator, as in C<when (expr1 || expr2)>.)
49
50=back
51
98814a2b 52The next section details more changes brought to the semantics to
8b8da387 53the smart match operator, that naturally also modify the behaviour
54of the switch statements where smart matching is implicitly used.
a98ccf1e 55These changers were also made for the 5.10.1 release, and will remain in
56subsequent 5.10 releases.
8b8da387 57
58=head2 Smart match changes
59
60=head3 Changes to type-based dispatch
61
62The smart match operator C<~~> is no longer commutative. The behaviour of
63a smart match now depends primarily on the type of its right hand
5a00ee6a 64argument. Moreover, its semantics have been adjusted for greater
ee18cc6c 65consistency or usefulness in several cases. While the general backwards
66compatibility is maintained, several changes must be noted:
8b8da387 67
68=over 4
69
70=item *
71
72Code references with an empty prototype are no longer treated specially.
73They are passed an argument like the other code references (even if they
74choose to ignore it).
75
76=item *
77
78C<%hash ~~ sub {}> and C<@array ~~ sub {}> now test that the subroutine
9091a618 79returns a true value for each key of the hash (or element of the
8b8da387 80array), instead of passing the whole hash or array as a reference to
81the subroutine.
82
83=item *
84
ee18cc6c 85Due to the commutativity breakage, code references are no longer
86treated specially when appearing on the left of the C<~~> operator,
87but like any vulgar scalar.
88
89=item *
90
8b8da387 91C<undef ~~ %hash> is always false (since C<undef> can't be a key in a
92hash). No implicit conversion to C<""> is done (as was the case in perl
935.10.0).
94
95=item *
96
97C<$scalar ~~ @array> now always distributes the smart match across the
98elements of the array. It's true if one element in @array verifies
99C<$scalar ~~ $element>. This is a generalization of the old behaviour
100that tested whether the array contained the scalar.
101
102=back
103
104The full dispatch table for the smart match operator is given in
105L<perlsyn/"Smart matching in detail">.
106
107=head3 Smart match and overloading
108
109According to the rule of dispatch based on the rightmost argument type,
110when an object overloading C<~~> appears on the right side of the
111operator, the overload routine will always be called (with a 3rd argument
112set to a true value, see L<overload>.) However, when the object will
113appear on the left, the overload routine will be called only when the
9091a618 114rightmost argument is a simple scalar. This way distributivity of smart match
8b8da387 115across arrays is not broken, as well as the other behaviours with complex
116types (coderefs, hashes, regexes). Thus, writers of overloading routines
ee18cc6c 117for smart match mostly need to worry only with comparing against a scalar,
118and possibly with stringification overloading; the other common cases
119will be automatically handled consistently.
8b8da387 120
121C<~~> will now refuse to work on objects that do not overload it (in order
665f5e98 122to avoid relying on the object's underlying structure). (However, if the
123object overloads the stringification or the numification operators, and
124if overload fallback is active, it will be used instead, as usual.)
8b8da387 125
f71d6157 126=head2 Labels can't be keywords
127
128Labels used as targets for the C<goto>, C<last>, C<next> or C<redo>
129statements cannot be keywords anymore. This restriction will prevent
130potential confusion between the C<goto LABEL> and C<goto EXPR> syntaxes:
131for example, a statement like C<goto print> would jump to a label whose
132name would be the return value of print(), (usually 1), instead of a
133label named C<print>. Moreover, the other control flow statements
134would just ignore any keyword passed to them as a label name. Since
135such labels cannot be defined anymore, this kind of error will be
136avoided.
137
5a00ee6a 138=head2 Other incompatible changes
139
140=over 4
141
142=item *
143
144The semantics of C<use feature :5.10*> have changed slightly.
145See L<"Modules and Pragmata"> for more information.
146
147=item *
148
149It is now a run-time error to use the smart match operator C<~~>
150with an object that has no overload defined for it. (This way
151C<~~> will not break encapsulation by matching against the
152object's internal representation as a reference.)
153
154=item *
155
156The version control system used for the development of the perl
157interpreter has been switched from Perforce to git. This is mainly an
158internal issue that only affects people actively working on the perl core;
159but it may have minor external visibility, for example in some of details
160of the output of C<perl -V>. See L<perlrepository> for more information.
161
162=item *
163
164The internal structure of the C<ext/> directory in the perl source has
165been reorganised. In general, a module C<Foo::Bar> whose source was
166stored under F<ext/Foo/Bar/> is now located under F<ext/Foo-Bar/>. Also,
167some modules have been moved from F<lib/> to F<ext/>. This is purely a
168source tarball change, and should make no difference to the compilation or
169installation of perl, unless you have a very customised build process that
170explicitly relies on this structure, or which hard-codes the C<nonxs_ext>
171F<Configure> parameter. Specifically, this change does not by default
172alter the location of any files in the final installation.
173
174=item *
175
176As part of the C<Test::Harness> 2.x to 3.x upgrade, the experimental
177C<Test::Harness::Straps> module has been removed.
178See L</"Updated Modules"> for more details.
179
180=item *
181
182As part of the C<ExtUtils::MakeMaker> upgrade, the
183C<ExtUtils::MakeMaker::bytes> and C<ExtUtils::MakeMaker::vmsish> modules
184have been removed from this distribution.
185
186=item *
187
188C<Module::CoreList> no longer contains the C<%:patchlevel> hash.
189
190=item *
191
192This one is actually a change introduced in 5.10.0, but it was missed
193from that release's perldelta, so it is mentioned here instead.
194
195A bugfix related to the handling of the C</m> modifier and C<qr> resulted
196in a change of behaviour between 5.8.x and 5.10.0:
197
198 # matches in 5.8.x, doesn't match in 5.10.0
199 $re = qr/^bar/; "foo\nbar" =~ /$re/m;
200
ad1d1c50 201=item *
202
203C<length undef> now returns undef.
204
5a00ee6a 205=back
206
7120b314 207=head1 Core Enhancements
208
5a00ee6a 209=head2 Unicode Character Database 5.1.0
210
3141b5e1 211The copy of the Unicode Character Database included in Perl 5.11.0 has
5a00ee6a 212been updated to 5.1.0 from 5.0.0. See
213L<http://www.unicode.org/versions/Unicode5.1.0/#Notable_Changes> for the
214notable changes.
215
216=head2 A proper interface for pluggable Method Resolution Orders
217
3141b5e1 218As of Perl 5.11.0 there is a new interface for plugging and using method
5a00ee6a 219resolution orders other than the default (linear depth first search).
220The C3 method resolution order added in 5.10.0 has been re-implemented as
221a plugin, without changing its Perl-space interface. See L<perlmroapi> for
222more information.
223
ef55af2a 224=head2 The C<overloading> pragma
1839a850 225
226This pragma allows you to lexically disable or enable overloading
227for some or all operations. (Yuval Kogman)
228
71e9c532 229=head2 C<\N> regex escape
230
231A new regex escape has been added, C<\N>. It will match any character that
232is not a newline, independently from the presence or absence of the single
233line match modifier C</s>. (If C<\N> is followed by an opening brace and
234by a letter, perl will still assume that a Unicode character name is
235coming, so compatibility is preserved.) (Rafael Garcia-Suarez)
236
4b3db487 237=head2 Implicit strictures
238
239Using the C<use VERSION> syntax with a version number greater or equal
240to 5.11.0 will also lexically enable strictures just like C<use strict>
241would do (in addition to enabling features.) So, the following:
242
243 use 5.11.0;
244
245will now imply:
246
247 use strict;
248 use feature ':5.11';
249
5ee651a9 250=head2 Parallel tests
251
252The core distribution can now run its regression tests in parallel on
253Unix-like platforms. Instead of running C<make test>, set C<TEST_JOBS> in
254your environment to the number of tests to run in parallel, and run
255C<make test_harness>. On a Bourne-like shell, this can be done as
256
257 TEST_JOBS=3 make test_harness # Run 3 tests in parallel
258
259An environment variable is used, rather than parallel make itself, because
260L<TAP::Harness> needs to be able to schedule individual non-conflicting test
261scripts itself, and there is no standard interface to C<make> utilities to
262interact with their job schedulers.
263
5a00ee6a 264Note that currently some test scripts may fail when run in parallel (most
265notably C<ext/IO/t/io_dir.t>). If necessary run just the failing scripts
266again sequentially and see if the failures go away.
267
044c880b 268=head2 The C<...> operator
269
270A new operator, C<...>, nicknamed the Yada Yada operator, has been added.
271It is intended to mark placeholder code, that is not yet implemented.
272See L<perlop/"Yada Yada Operator">. (chromatic)
273
5a00ee6a 274=head2 DTrace support
275
276Some support for DTrace has been added. See "DTrace support" in F<INSTALL>.
277
278=head2 Support for C<configure_requires> in CPAN module metadata
279
280Both C<CPAN> and C<CPANPLUS> now support the C<configure_requires> keyword
038a5866 281in the F<META.yml> metadata file included in most recent CPAN distributions.
5a00ee6a 282This allows distribution authors to specify configuration prerequisites that
283must be installed before running F<Makefile.PL> or F<Build.PL>.
284
285See the documentation for C<ExtUtils::MakeMaker> or C<Module::Build> for more
286on how to specify C<configure_requires> when creating a distribution for CPAN.
287
ad1d1c50 288=head2 The C<each> function can now operate on arrays
289
290=head2 Perl's core time-related functions are now Y2038 compliand
291
292=head2 The variable C<$,> may now be tied
293
294=head2 // now behaves like || in when clauses
295
296=head2 You can now set C<-W> from the C<PERL5OPT> environment varialbe
297
7120b314 298=head1 Modules and Pragmata
299
5a00ee6a 300=head2 New Modules and Pragmata
301
302=over 4
303
304=item C<autodie>
305
306This is a new lexically-scoped alternative for the C<Fatal> module.
307The bundled version is 2.06_01. Note that in this release, using a string
308eval when C<autodie> is in effect can cause the autodie behaviour to leak
309into the surrounding scope. See L<autodie/"BUGS"> for more details.
310
311=item C<Compress::Raw::Bzip2>
312
313This has been added to the core (version 2.020).
314
315=item C<parent>
316
317This pragma establishes an ISA relationship with base classes at compile
318time. It provides the key feature of C<base> without the feature creep.
319
320=item C<Parse::CPAN::Meta>
321
322This has been added to the core (version 1.39).
323
324=back
325
1839a850 326=head2 Pragmata Changes
327
328=over 4
329
330=item C<overloading>
331
332See L</"The C<overloading> pragma"> above.
333
5a00ee6a 334=item C<attributes>
335
336Upgraded from version 0.08 to 0.09.
337
338=item C<attrs>
339
42f099ed 340The C<attrs> pragma has been removed. It had been marked as deprecated since
3415.6.0.
5a00ee6a 342
343=item C<base>
344
345Upgraded from version 2.13 to 2.14. See L<parent> for a replacement.
346
347=item C<bigint>
348
349Upgraded from version 0.22 to 0.23.
350
351=item C<bignum>
352
353Upgraded from version 0.22 to 0.23.
354
355=item C<bigrat>
356
357Upgraded from version 0.22 to 0.23.
358
359=item C<charnames>
360
361Upgraded from version 1.06 to 1.07.
362
363The Unicode F<NameAliases.txt> database file has been added. This has the
364effect of adding some extra C<\N> character names that formerly wouldn't
365have been recognised; for example, C<"\N{LATIN CAPITAL LETTER GHA}">.
366
367=item C<constant>
368
9f808eed 369Upgraded from version 1.13 to 1.19. Some code has been shifted from run time to
370compile time, and the amount of MRO cache flushing has been minimised.
5a00ee6a 371
372=item C<feature>
373
374The meaning of the C<:5.10> and C<:5.10.X> feature bundles has
375changed slightly. The last component, if any (i.e. C<X>) is simply ignored.
376This is predicated on the assumption that new features will not, in
377general, be added to maintenance releases. So C<:5.10> and C<:5.10.X>
378have identical effect. This is a change to the behaviour documented for
3795.10.0.
380
381=item C<fields>
382
383Upgraded from version 2.13 to 2.14 (this was just a version bump; there
384were no functional changes).
385
386=item C<lib>
387
388Upgraded from version 0.5565 to 0.62.
389
390=item C<open>
391
392Upgraded from version 1.06 to 1.07.
393
394=item C<overload>
395
396Upgraded from version 1.06 to 1.07.
397
398=item C<overloading>
399
400See L</"The C<overloading> pragma"> above.
401
402=item C<version>
403
404Upgraded from version 0.74 to 0.77.
405
1839a850 406=back
407
5a00ee6a 408=head2 Updated Modules
02569b83 409
410=over 4
411
5a00ee6a 412=item C<Archive::Extract>
413
414Upgraded from version 0.24 to 0.34.
415
416=item C<Archive::Tar>
417
418Upgraded from version 1.38 to 1.52.
419
420=item C<Attribute::Handlers>
421
422Upgraded from version 0.79 to 0.85.
423
424=item C<AutoLoader>
425
426Upgraded from version 5.63 to 5.68.
427
428=item C<AutoSplit>
429
430Upgraded from version 1.05 to 1.06.
431
432=item C<B>
433
434Upgraded from version 1.17 to 1.22.
435
436=item C<B::Debug>
437
438Upgraded from version 1.05 to 1.11.
439
440=item C<B::Deparse>
441
442Upgraded from version 0.83 to 0.89.
443
444=item C<B::Lint>
445
446Upgraded from version 1.09 to 1.11.
447
448=item C<B::Xref>
449
450Upgraded from version 1.01 to 1.02.
451
452=item C<Benchmark>
453
454Upgraded from version 1.10 to 1.11.
455
456=item C<Carp>
457
458Upgraded from version 1.08 to 1.11.
459
02569b83 460L<Carp> now includes all the necessary code to function. Previously, it
461used to be a lightweight placeholder that loaded the actual code from
462C<Carp::Heavy> on demand. C<Carp::Heavy> is now a simple, empty module
463kept for backwards compatibility for programs that used to pre-load it.
464
5a00ee6a 465=item C<CGI>
7120b314 466
5a00ee6a 467Upgraded from version 3.29 to 3.43.
468(also includes the "default_value for popup_menu()" fix from 3.45).
7120b314 469
5a00ee6a 470=item C<Compress::Zlib>
7120b314 471
5a00ee6a 472Upgraded from version 2.008 to 2.020.
7120b314 473
5a00ee6a 474=item C<CPAN>
7120b314 475
5a00ee6a 476Upgraded from version 1.9205 to 1.9402. C<CPAN::FTP> has a local fix to
477stop it being too verbose on download failure.
54ad55c5 478
5a00ee6a 479=item C<CPANPLUS>
54ad55c5 480
5a00ee6a 481Upgraded from version 0.84 to 0.88.
54ad55c5 482
5a00ee6a 483=item C<CPANPLUS::Dist::Build>
e2c0f81f 484
5a00ee6a 485Upgraded from version 0.06_02 to 0.36.
e2c0f81f 486
5a00ee6a 487=item C<Cwd>
fc46f0f6 488
5a00ee6a 489Upgraded from version 3.25_01 to 3.30.
fc46f0f6 490
5a00ee6a 491=item C<Data::Dumper>
54ad55c5 492
5a00ee6a 493Upgraded from version 2.121_14 to 2.124.
7120b314 494
5a00ee6a 495=item C<DB>
7120b314 496
5a00ee6a 497Upgraded from version 1.01 to 1.02.
498
499=item C<DB_File>
500
501Upgraded from version 1.816_1 to 1.820.
502
503=item C<Devel::PPPort>
504
505Upgraded from version 3.13 to 3.19.
506
507=item C<Digest::MD5>
508
509Upgraded from version 2.36_01 to 2.39.
510
511=item C<Digest::SHA>
512
513Upgraded from version 5.45 to 5.47.
514
515=item C<DirHandle>
516
517Upgraded from version 1.01 to 1.03.
518
519=item C<Dumpvalue>
520
521Upgraded from version 1.12 to 1.13.
522
523=item C<DynaLoader>
524
525Upgraded from version 1.08 to 1.10.
526
527=item C<Encode>
528
529Upgraded from version 2.23 to 2.35.
530
531=item C<Errno>
532
533Upgraded from version 1.10 to 1.11.
534
535=item C<Exporter>
536
537Upgraded from version 5.62 to 5.63.
538
539=item C<ExtUtils::CBuilder>
540
541Upgraded from version 0.21 to 0.2602.
542
543=item C<ExtUtils::Command>
544
545Upgraded from version 1.13 to 1.16.
546
547=item C<ExtUtils::Constant>
548
549Upgraded from 0.20 to 0.22. (Note that neither of these versions are
550available on CPAN.)
551
552=item C<ExtUtils::Embed>
553
554Upgraded from version 1.27 to 1.28.
555
556=item C<ExtUtils::Install>
557
558Upgraded from version 1.44 to 1.54.
559
560=item C<ExtUtils::MakeMaker>
561
562Upgraded from version 6.42 to 6.55_02.
563
564Note that C<ExtUtils::MakeMaker::bytes> and C<ExtUtils::MakeMaker::vmsish>
565have been removed from this distribution.
566
567=item C<ExtUtils::Manifest>
568
569Upgraded from version 1.51_01 to 1.56.
570
571=item C<ExtUtils::ParseXS>
572
573Upgraded from version 2.18_02 to 2.2002.
574
575=item C<Fatal>
576
577Upgraded from version 1.05 to 2.06_01. See also the new pragma C<autodie>.
578
579=item C<File::Basename>
580
581Upgraded from version 2.76 to 2.77.
582
583=item C<File::Compare>
584
585Upgraded from version 1.1005 to 1.1006.
586
587=item C<File::Copy>
588
0de885a9 589Upgraded from version 2.11 to 2.16.
5a00ee6a 590
ad1d1c50 591File::Copy now always return 0 (not "") on failure.
592
0de885a9 593FIXME - describe C<cp>
594
5a00ee6a 595=item C<File::Fetch>
596
597Upgraded from version 0.14 to 0.20.
598
599=item C<File::Find>
600
601Upgraded from version 1.12 to 1.14.
602
603=item C<File::Path>
604
605Upgraded from version 2.04 to 2.07_03.
606
607=item C<File::Spec>
608
609Upgraded from version 3.2501 to 3.30.
610
611=item C<File::stat>
612
613Upgraded from version 1.00 to 1.01.
614
ad1d1c50 615Added -X overloading, -M, -C and -A.
616
5a00ee6a 617=item C<File::Temp>
618
619Upgraded from version 0.18 to 0.22.
620
621=item C<FileCache>
622
623Upgraded from version 1.07 to 1.08.
624
625=item C<FileHandle>
626
627Upgraded from version 2.01 to 2.02.
628
629=item C<Filter::Simple>
630
631Upgraded from version 0.82 to 0.84.
632
633=item C<Filter::Util::Call>
634
635Upgraded from version 1.07 to 1.08.
636
637=item C<FindBin>
638
639Upgraded from version 1.49 to 1.50.
640
641=item C<GDBM_File>
642
643Upgraded from version 1.08 to 1.09.
644
645=item C<Getopt::Long>
646
647Upgraded from version 2.37 to 2.38.
648
649=item C<Hash::Util::FieldHash>
650
651Upgraded from version 1.03 to 1.04. This fixes a memory leak.
652
653=item C<I18N::Collate>
654
655Upgraded from version 1.00 to 1.01.
656
657=item C<IO>
658
659Upgraded from version 1.23_01 to 1.25.
660
661This makes non-blocking mode work on Windows in C<IO::Socket::INET>
662[CPAN #43573].
663
664=item C<IO::Compress::*>
665
666Upgraded from version 2.008 to 2.020.
667
668=item C<IO::Dir>
669
670Upgraded from version 1.06 to 1.07.
671
672=item C<IO::Handle>
673
674Upgraded from version 1.27 to 1.28.
675
676=item C<IO::Socket>
677
678Upgraded from version 1.30_01 to 1.31.
679
680=item C<IO::Zlib>
681
682Upgraded from version 1.07 to 1.09.
683
684=item C<IPC::Cmd>
685
686Upgraded from version 0.40_1 to 0.46.
687
688=item C<IPC::Open3>
689
690Upgraded from version 1.02 to 1.04.
691
692=item C<IPC::SysV>
693
694Upgraded from version 1.05 to 2.01.
695
696=item C<lib>
697
698Upgraded from version 0.5565 to 0.62.
699
700=item C<List::Util>
701
702Upgraded from version 1.19 to 1.21.
703
704=item C<Locale::MakeText>
705
706Upgraded from version 1.12 to 1.13.
707
708=item C<Log::Message>
709
710Upgraded from version 0.01 to 0.02.
711
712=item C<Math::BigFloat>
713
714Upgraded from version 1.59 to 1.60.
715
716=item C<Math::BigInt>
717
718Upgraded from version 1.88 to 1.89.
719
720=item C<Math::BigInt::FastCalc>
721
722Upgraded from version 0.16 to 0.19.
723
724=item C<Math::BigRat>
725
726Upgraded from version 0.21 to 0.22.
727
728=item C<Math::Complex>
729
730Upgraded from version 1.37 to 1.56.
731
732=item C<Math::Trig>
733
734Upgraded from version 1.04 to 1.20.
735
736=item C<Memoize>
737
738Upgraded from version 1.01_02 to 1.01_03 (just a minor documentation
739change).
740
741=item C<Module::Build>
742
743Upgraded from version 0.2808_01 to 0.34_02.
744
745=item C<Module::CoreList>
746
747Upgraded from version 2.13 to 2.18. This release no longer contains the
748C<%Module::CoreList::patchlevel> hash.
749
750=item C<Module::Load>
751
752Upgraded from version 0.12 to 0.16.
753
754=item C<Module::Load::Conditional>
755
756Upgraded from version 0.22 to 0.30.
757
758=item C<Module::Loaded>
759
760Upgraded from version 0.01 to 0.02.
761
762=item C<Module::Pluggable>
763
764Upgraded from version 3.6 to 3.9.
765
766=item C<NDBM_File>
767
768Upgraded from version 1.07 to 1.08.
769
770=item C<Net::Ping>
771
772Upgraded from version 2.33 to 2.36.
773
774=item C<NEXT>
775
776Upgraded from version 0.60_01 to 0.64.
777
778=item C<Object::Accessor>
779
780Upgraded from version 0.32 to 0.34.
781
782=item C<OS2::REXX>
783
784Upgraded from version 1.03 to 1.04.
785
786=item C<Package::Constants>
787
788Upgraded from version 0.01 to 0.02.
789
790=item C<PerlIO>
791
792Upgraded from version 1.04 to 1.06.
793
794=item C<PerlIO::via>
795
796Upgraded from version 0.04 to 0.07.
797
798=item C<Pod::Man>
799
800Upgraded from version 2.16 to 2.22.
801
802=item C<Pod::Parser>
803
804Upgraded from version 1.35 to 1.37.
805
ad1d1c50 806=item Pod::Perldoc
807
808Upgrade from version 3.14_02 to 3.15.
809
5a00ee6a 810=item C<Pod::Simple>
811
812Upgraded from version 3.05 to 3.07.
813
814=item C<Pod::Text>
815
816Upgraded from version 3.08 to 3.13.
817
818=item C<POSIX>
819
820Upgraded from version 1.13 to 1.17.
821
822=item C<Safe>
823
824Upgraded from 2.12 to 2.18.
825
826=item C<Scalar::Util>
827
828Upgraded from version 1.19 to 1.21.
829
830=item C<SelectSaver>
831
832Upgraded from 1.01 to 1.02.
833
834=item C<SelfLoader>
835
836Upgraded from 1.11 to 1.17.
837
838=item C<Socket>
839
840Upgraded from 1.80 to 1.82.
841
842=item C<Storable>
843
844Upgraded from 2.18 to 2.20.
845
846=item C<Switch>
847
848Upgraded from version 2.13 to 2.14. Please see L</Deprecations>.
849
850=item C<Symbol>
851
852Upgraded from version 1.06 to 1.07.
853
854=item C<Sys::Syslog>
855
856Upgraded from version 0.22 to 0.27.
857
858=item C<Term::ANSIColor>
859
ad1d1c50 860Upgraded from version 1.12 to 2.01.
5a00ee6a 861
862=item C<Term::ReadLine>
863
864Upgraded from version 1.03 to 1.04.
865
866=item C<Term::UI>
867
868Upgraded from version 0.18 to 0.20.
869
870=item C<Test::Harness>
871
872Upgraded from version 2.64 to 3.17.
873
874Note that one side-effect of the 2.x to 3.x upgrade is that the
875experimental C<Test::Harness::Straps> module (and its supporting
876C<Assert>, C<Iterator>, C<Point> and C<Results> modules) have been
877removed. If you still need this, then they are available in the
878(unmaintained) C<Test-Harness-Straps> distribution on CPAN.
879
880=item C<Test::Simple>
881
882Upgraded from version 0.72 to 0.92.
883
884=item C<Text::ParseWords>
885
886Upgraded from version 3.26 to 3.27.
887
888=item C<Text::Tabs>
889
890Upgraded from version 2007.1117 to 2009.0305.
891
892=item C<Text::Wrap>
893
894Upgraded from version 2006.1117 to 2009.0305.
895
896=item C<Thread::Queue>
897
898Upgraded from version 2.00 to 2.11.
899
900=item C<Thread::Semaphore>
901
902Upgraded from version 2.01 to 2.09.
903
904=item C<threads>
905
ad1d1c50 906Upgraded from version 1.67 to 1.73.
5a00ee6a 907
908=item C<threads::shared>
909
910Upgraded from version 1.14 to 1.29.
911
912=item C<Tie::RefHash>
913
914Upgraded from version 1.37 to 1.38.
915
916=item C<Tie::StdHandle>
917
918This has documentation changes, and has been assigned a version for the
919first time: version 4.2.
920
921=item C<Time::HiRes>
922
923Upgraded from version 1.9711 to 1.9719.
924
925=item C<Time::Local>
926
927Upgraded from version 1.18 to 1.1901.
928
929=item C<Time::Piece>
930
931Upgraded from version 1.12 to 1.15.
932
933=item C<Unicode::Normalize>
934
935Upgraded from version 1.02 to 1.03.
936
937=item C<Unicode::UCD>
938
939Upgraded from version 0.25 to 0.27.
940
941C<charinfo()> now works on Unified CJK code points added to later versions
942of Unicode.
943
944C<casefold()> has new fields returned to provide both a simpler interface
945and previously missing information. The old fields are retained for
946backwards compatibility. Information about Turkic-specific code points is
947now returned.
948
949The documentation has been corrected and expanded.
950
951=item C<UNIVERSAL>
952
953Upgraded from version 1.04 to 1.05.
954
ad1d1c50 955UNIVERSAL->import() is now deprecated.
956
5a00ee6a 957=item C<Win32>
958
959Upgraded from version 0.34 to 0.39.
960
961=item C<Win32API::File>
962
963Upgraded from version 0.1001_01 to 0.1101.
964
965=item C<XSLoader>
966
967Upgraded from version 0.08 to 0.10.
968
969=back
970
971=head1 Utility Changes
972
973=over 4
974
975=item F<h2ph>
976
977Now looks in C<include-fixed> too, which is a recent addition to gcc's
978search path.
979
980=item F<h2xs>
981
982No longer incorrectly treats enum values like macros (Daniel Burr).
983
984Now handles C++ style constants (C<//>) properly in enums. (A patch from
985Rainer Weikusat was used; Daniel Burr also proposed a similar fix).
986
987=item F<perl5db.pl>
988
989C<LVALUE> subroutines now work under the debugger.
990
991The debugger now correctly handles proxy constant subroutines, and
992subroutine stubs.
993
ad1d1c50 994=item F<perlbug>
995
038a5866 996F<perlbug> now uses C<%Module::CoreList::bug_tracker> to print out upstream bug
76e3c4a8 997tracker URLs.
ad1d1c50 998
999Where the user names a module that their bug report is about, and we know the
1000URL for its upstream bug tracker, provide a message to the user explaining
1001that the core copies the CPAN version directly, and provide the URL for
1002reporting the bug directly to upstream.
1003
5a00ee6a 1004=item F<perlthanks>
1005
3141b5e1 1006Perl 5.11.0 added a new utility F<perlthanks>, which is a variant of
5a00ee6a 1007F<perlbug>, but for sending non-bug-reports to the authors and maintainers
1008of Perl. Getting nothing but bug reports can become a bit demoralising:
1009we'll see if this changes things.
1010
1011=back
1012
1013=head1 New Documentation
1014
1015=over 4
1016
1017=item L<perlhaiku>
1018
1019This contains instructions on how to build perl for the Haiku platform.
1020
1021=item L<perlmroapi>
1022
1023This describes the new interface for pluggable Method Resolution Orders.
1024
1025=item L<perlperf>
1026
1027This document, by Richard Foley, provides an introduction to the use of
1028performance and optimization techniques which can be used with particular
1029reference to perl programs.
1030
1031=item L<perlrepository>
1032
1033This describes how to access the perl source using the I<git> version
1034control system.
1035
1036=item L<perlthanks>
1037
1038This describes the new F<perlthanks> utility.
1039
1040=back
1041
1042=head1 Changes to Existing Documentation
1043
76e3c4a8 1044The various large F<Changes*> files (which listed every change made to perl
5a00ee6a 1045over the last 18 years) have been removed, and replaced by a small file,
76e3c4a8 1046also called F<Changes>, which just explains how that same information may
5a00ee6a 1047be extracted from the git version control system.
1048
1049The file F<Porting/patching.pod> has been deleted, as it mainly described
1050interacting with the old Perforce-based repository, which is now obsolete.
1051Information still relevant has been moved to L<perlrepository>.
1052
1053L<perlapi>, L<perlintern>, L<perlmodlib> and L<perltoc> are now all
1054generated at build time, rather than being shipped as part of the release.
1055
ad1d1c50 1056=head2 Documented -X overloading.
1057
1058=head2 Documented that when() treats specially most of the filetest operators
1059
1060=head2 Documented that DESTROY is subject to AUTOLOAD, and the related optimisations.
1061
1062=head2 Documented when as a syntax modifier
1063
1064=head2 Eliminated "Old Perl threads tutorial", which describes 5005 threads.
1065
1066pod/perlthrtut.pod is the same material reworked for ithreads.
1067
1068=head2 Removed a link to the attrs pragma, which has now been removed.
1069
1070=head2 update PERL_MEM_LOG in perlhack.pod
1071
1072=head2 Correct previous documentation: v-strings are not deprecated
1073
1074With version objects, we need them to use MODULE VERSION syntax. This
1075patch removes the deprecation note.
1076
5a00ee6a 1077=head1 Performance Enhancements
1078
1079=over 4
1080
1081=item *
1082
1083A new internal cache means that C<isa()> will often be faster.
1084
1085=item *
1086
6f54462f 1087The implementation of C<C3> Method Resolution Order has been optimised -
1088linearisation for classes with single inheritance is 40% faster. Performance
1089for multiple inheritance is unchanged.
1090
1091=item *
1092
5a00ee6a 1093Under C<use locale>, the locale-relevant information is now cached on
1094read-only values, such as the list returned by C<keys %hash>. This makes
1095operations such as C<sort keys %hash> in the scope of C<use locale> much
1096faster.
1097
1098=item *
1099
1100Empty C<DESTROY> methods are no longer called.
1101
ad1d1c50 1102=item *
1103
1104Faster sv_utf8_upgrade()
1105
1106=item *
1107
1108Speed up keys() on empty hash
1109
5a00ee6a 1110=back
1111
1112=head1 Installation and Configuration Improvements
1113
1114=head2 F<ext/> reorganisation
1115
1116The layout of directories in F<ext> has been revised. Specifically, all
1117extensions are now flat, and at the top level, with C</> in pathnames
1118replaced by C<->, so that F<ext/Data/Dumper/> is now F<ext/Data-Dumper/>,
1119etc. The names of the extensions as specified to F<Configure>, and as
1120reported by C<%Config::Config> under the keys C<dynamic_ext>,
1121C<known_extensions>, C<nonxs_ext> and C<static_ext> have not changed, and
1122still use C</>. Hence this change will not have any affect once perl is
1123installed. However, C<Attribute::Handlers>, C<Safe> and C<mro> have now
1124become extensions in their own right, so if you run F<Configure> with
1125options to specify an exact list of extensions to build, you will need to
1126change it to account for this.
1127
3141b5e1 1128For 5.11.1, it is planned that many dual-life modules will have been moved
5a00ee6a 1129from F<lib> to F<ext>; again this will have no effect on an installed
1130perl, but will matter if you invoke F<Configure> with a pre-canned list of
1131extensions to build.
1132
1133=head2 Configuration improvements
1134
1135If C<vendorlib> and C<vendorarch> are the same, then they are only added to
1136C<@INC> once.
1137
1138C<$Config{usedevel}> and the C-level C<PERL_USE_DEVEL> are now defined if
1139perl is built with C<-Dusedevel>.
1140
1141F<Configure> will enable use of C<-fstack-protector>, to provide protection
1142against stack-smashing attacks, if the compiler supports it.
1143
1144F<Configure> will now determine the correct prototypes for re-entrant
1145functions, and for C<gconvert>, if you are using a C++ compiler rather
1146than a C compiler.
1147
1148On Unix, if you build from a tree containing a git repository, the
1149configuration process will note the commit hash you have checked out, for
1150display in the output of C<perl -v> and C<perl -V>. Unpushed local commits
1151are automatically added to the list of local patches displayed by
1152C<perl -V>.
1153
1154=head2 Compilation improvements
1155
1156As part of the flattening of F<ext>, all extensions on all platforms are
1157built by F<make_ext.pl>. This replaces the Unix-specific
1158F<ext/util/make_ext>, VMS-specific F<make_ext.com> and Win32-specific
1159F<win32/buildext.pl>.
1160
1161=head2 Platform Specific Changes
1162
1163=over 4
1164
1165=item AIX
1166
1167Removed F<libbsd> for AIX 5L and 6.1. Only flock() was used from F<libbsd>.
1168
1169Removed F<libgdbm> for AIX 5L and 6.1. The F<libgdbm> is delivered as an
1170optional package with the AIX Toolbox. Unfortunately the 64 bit version
1171is broken.
1172
1173Hints changes mean that AIX 4.2 should work again.
1174
1175=item Cygwin
1176
1177On Cygwin we now strip the last number from the DLL. This has been the
1178behaviour in the cygwin.com build for years. The hints files have been
1179updated.
1180
81afb674 1181=item DomainOS
1182
1183Support for Apollo DomainOS was removed in Perl 5.11.0
1184
5a00ee6a 1185=item FreeBSD
1186
1187The hints files now identify the correct threading libraries on FreeBSD 7
1188and later.
1189
1190=item Irix
1191
1192We now work around a bizarre preprocessor bug in the Irix 6.5 compiler:
1193C<cc -E -> unfortunately goes into K&R mode, but C<cc -E file.c> doesn't.
1194
1195=item Haiku
1196
1197Patches from the Haiku maintainers have been merged in. Perl should now
1198build on Haiku.
1199
81afb674 1200=item MiNT
1201
1202Support for Atari MiNT was removed in Perl 5.11.0.
1203
5a00ee6a 1204=item MirOS BSD
1205
1206Perl should now build on MirOS BSD.
1207
1208=item NetBSD
1209
1210Hints now supports versions 5.*.
1211
1212=item Stratus VOS
1213
1214Various changes from Stratus have been merged in.
1215
1216=item Symbian
1217
1218There is now support for Symbian S60 3.2 SDK and S60 5.0 SDK.
1219
1220=item Win32
1221
1222Improved message window handling means that C<alarm> and C<kill> messages
1223will no longer be dropped under race conditions.
1224
1225=item VMS
1226
1227Reads from the in-memory temporary files of C<PerlIO::scalar> used to fail
1228if C<$/> was set to a numeric reference (to indicate record-style reads).
1229This is now fixed.
1230
1231VMS now supports C<getgrgid>.
1232
1233Many improvements and cleanups have been made to the VMS file name handling
1234and conversion code.
1235
1236Enabling the C<PERL_VMS_POSIX_EXIT> logical name now encodes a POSIX exit
1237status in a VMS condition value for better interaction with GNV's bash
1238shell and other utilities that depend on POSIX exit values. See
1239L<perlvms/"$?"> for details.
1240
76e3c4a8 1241C<File::Copy> now detects Unix compatibility mode on VMS.
ad1d1c50 1242
5a00ee6a 1243=back
1244
1245=head1 Selected Bug Fixes
1246
1247=over 4
1248
038a5866 1249=item *
5a00ee6a 1250
038a5866 1251C<-I> on shebang line now adds directories in front of @INC.
5a00ee6a 1252as documented, and as does C<-I> when specified on the command-line.
1253(Renée Bäcker)
1254
76e3c4a8 1255=item *
5a00ee6a 1256
76e3c4a8 1257C<kill> is now fatal when called on non-numeric process identifiers.
5a00ee6a 1258Previously, an 'undef' process identifier would be interpreted as a request to
1259kill process "0", which would terminate the current process group on POSIX
1260systems. Since process identifiers are always integers, killing a non-numeric
1261process is now fatal.
1262
1263=item *
1264
12655.10.0 inadvertently disabled an optimisation, which caused a measurable
1266performance drop in list assignment, such as is often used to assign
1267function parameters from C<@_>. The optimisation has been re-instated, and
1268the performance regression fixed.
1269
1270=item *
1271
1272Fixed memory leak on C<while (1) { map 1, 1 }> [RT #53038].
1273
1274=item *
1275
1276Some potential coredumps in PerlIO fixed [RT #57322,54828].
1277
1278=item *
1279
1280The debugger now works with lvalue subroutines.
1281
1282=item *
1283
1284The debugger's C<m> command was broken on modules that defined constants
1285[RT #61222].
1286
1287=item *
1288
1289C<crypt()> and string complement could return tainted values for untainted
1290arguments [RT #59998].
1291
1292=item *
1293
038a5866 1294The C<-i>I<.suffix> command-line switch now recreates the file using
5a00ee6a 1295restricted permissions, before changing its mode to match the original
1296file. This eliminates a potential race condition [RT #60904].
1297
1298=item *
1299
1300On some UNIX systems, the value in C<$?> would not have the top bit set
1301(C<$? & 128>) even if the child core dumped.
1302
1303=item *
1304
038a5866 1305Under some circumstances, C<$^R> could incorrectly become undefined
5a00ee6a 1306[RT #57042].
1307
1308=item *
1309
1310(XS) In various hash functions, passing a pre-computed hash to when the
1311key is UTF-8 might result in an incorrect lookup.
1312
1313=item *
1314
1315(XS) Including F<XSUB.h> before F<perl.h> gave a compile-time error
1316[RT #57176].
1317
1318=item *
1319
1320C<< $object->isa('Foo') >> would report false if the package C<Foo> didn't
1321exist, even if the object's C<@ISA> contained C<Foo>.
1322
1323=item *
1324
1325Various bugs in the new-to 5.10.0 mro code, triggered by manipulating
1326C<@ISA>, have been found and fixed.
1327
1328=item *
1329
1330Bitwise operations on references could crash the interpreter, e.g.
1331C<$x=\$y; $x |= "foo"> [RT #54956].
1332
1333=item *
1334
1335Patterns including alternation might be sensitive to the internal UTF-8
1336representation, e.g.
1337
1338 my $byte = chr(192);
1339 my $utf8 = chr(192); utf8::upgrade($utf8);
1340 $utf8 =~ /$byte|X}/i; # failed in 5.10.0
1341
1342=item *
1343
1344Within UTF8-encoded Perl source files (i.e. where C<use utf8> is in
1345effect), double-quoted literal strings could be corrupted where a C<\xNN>,
1346C<\0NNN> or C<\N{}> is followed by a literal character with ordinal value
1347greater than 255 [RT #59908].
1348
1349=item *
1350
1351C<B::Deparse> failed to correctly deparse various constructs:
1352C<readpipe STRING> [RT #62428], C<CORE::require(STRING)> [RT #62488],
1353C<sub foo(_)> [RT #62484].
1354
1355=item *
1356
1357Using C<setpgrp()> with no arguments could corrupt the perl stack.
1358
1359=item *
1360
1361The block form of C<eval> is now specifically trappable by C<Safe> and
1362C<ops>. Previously it was erroneously treated like string C<eval>.
1363
1364=item *
1365
1366In 5.10.0, the two characters C<[~> were sometimes parsed as the smart
1367match operator (C<~~>) [RT #63854].
1368
1369=item *
1370
1371In 5.10.0, the C<*> quantifier in patterns was sometimes treated as
1372C<{0,32767}> [RT #60034, #60464]. For example, this match would fail:
1373
1374 ("ab" x 32768) =~ /^(ab)*$/
1375
1376=item *
1377
1378C<shmget> was limited to a 32 bit segment size on a 64 bit OS [RT #63924].
1379
1380=item *
1381
1382Using C<next> or C<last> to exit a C<given> block no longer produces a
1383spurious warning like the following:
1384
1385 Exiting given via last at foo.pl line 123
1386
1387=item *
1388
1389On Windows, C<'.\foo'> and C<'..\foo'> were treated differently than
1390C<'./foo'> and C<'../foo'> by C<do> and C<require> [RT #63492].
1391
1392=item *
1393
1394Assigning a format to a glob could corrupt the format; e.g.:
1395
1396 *bar=*foo{FORMAT}; # foo format now bad
1397
1398=item *
1399
1400Attempting to coerce a typeglob to a string or number could cause an
1401assertion failure. The correct error message is now generated,
1402C<Can't coerce GLOB to I<$type>>.
1403
1404=item *
1405
1406Under C<use filetest 'access'>, C<-x> was using the wrong access mode. This
1407has been fixed [RT #49003].
1408
1409=item *
1410
1411C<length> on a tied scalar that returned a Unicode value would not be
1412correct the first time. This has been fixed.
1413
1414=item *
1415
1416Using an array C<tie> inside in array C<tie> could SEGV. This has been
1417fixed. [RT #51636]
1418
1419=item *
1420
1421A race condition inside C<PerlIOStdio_close()> has been identified and
1422fixed. This used to cause various threading issues, including SEGVs.
1423
1424=item *
1425
1426In C<unpack>, the use of C<()> groups in scalar context was internally
1427placing a list on the interpreter's stack, which manifested in various
1428ways, including SEGVs. This is now fixed [RT #50256].
1429
1430=item *
1431
1432Magic was called twice in C<substr>, C<\&$x>, C<tie $x, $m> and C<chop>.
1433These have all been fixed.
1434
1435=item *
1436
1437A 5.10.0 optimisation to clear the temporary stack within the implicit
1438loop of C<s///ge> has been reverted, as it turned out to be the cause of
1439obscure bugs in seemingly unrelated parts of the interpreter [commit
1440ef0d4e17921ee3de].
1441
1442=item *
1443
1444The line numbers for warnings inside C<elsif> are now correct.
1445
1446=item *
1447
1448The C<..> operator now works correctly with ranges whose ends are at or
1449close to the values of the smallest and largest integers.
1450
1451=item *
1452
1453C<binmode STDIN, ':raw'> could lead to segmentation faults on some platforms.
1454This has been fixed [RT #54828].
1455
1456=item *
1457
1458An off-by-one error meant that C<index $str, ...> was effectively being
1459executed as C<index "$str\0", ...>. This has been fixed [RT #53746].
1460
1461=item *
1462
1463Various leaks associated with named captures in regexes have been fixed
1464[RT #57024].
1465
1466=item *
1467
1468A weak reference to a hash would leak. This was affecting C<DBI>
1469[RT #56908].
1470
1471=item *
1472
1473Using (?|) in a regex could cause a segfault [RT #59734].
1474
1475=item *
1476
1477Use of a UTF-8 C<tr//> within a closure could cause a segfault [RT #61520].
1478
1479=item *
1480
1481Calling C<sv_chop()> or otherwise upgrading an SV could result in an
1482unaligned 64-bit access on the SPARC architecture [RT #60574].
1483
1484=item *
1485
1486In the 5.10.0 release, C<inc_version_list> would incorrectly list
1487C<5.10.*> after C<5.8.*>; this affected the C<@INC> search order
1488[RT #67628].
1489
1490=item *
1491
1492In 5.10.0, C<pack "a*", $tainted_value> returned a non-tainted value
1493[RT #52552].
1494
1495=item *
1496
1497In 5.10.0, C<printf> and C<sprintf> could produce the fatal error
1498C<panic: utf8_mg_pos_cache_update> when printing UTF-8 strings
1499[RT #62666].
1500
1501=item *
1502
1503In the 5.10.0 release, a dynamically created C<AUTOLOAD> method might be
1504missed (method cache issue) [RT #60220,60232].
1505
1506=item *
1507
1508In the 5.10.0 release, a combination of C<use feature> and C<//ee> could
1509cause a memory leak [RT #63110].
1510
1511=item *
1512
1513C<-C> on the shebang (C<#!>) line is once more permitted if it is also
1514specified on the command line. C<-C> on the shebang line used to be a
1515silent no-op I<if> it was not also on the command line, so perl 5.10.0
1516disallowed it, which broke some scripts. Now perl checks whether it is
1517also on the command line and only dies if it is not [RT #67880].
1518
1519=item *
1520
1521In 5.10.0, certain types of re-entrant regular expression could crash,
1522or cause the following assertion failure [RT #60508]:
1523
1524 Assertion rx->sublen >= (s - rx->subbeg) + i failed
1525
5a00ee6a 1526=back
1527
1528=head1 New or Changed Diagnostics
1529
1530=over 4
1531
1532=item C<panic: sv_chop %s>
1533
1534This new fatal error occurs when the C routine C<Perl_sv_chop()> was
1535passed a position that is not within the scalar's string buffer. This
1536could be caused by buggy XS code, and at this point recovery is not
1537possible.
1538
1539=item C<Can't locate package %s for the parents of %s>
1540
1541This warning has been removed. In general, it only got produced in
1542conjunction with other warnings, and removing it allowed an ISA lookup
1543optimisation to be added.
1544
1545=item C<v-string in use/require is non-portable>
1546
1547This warning has been removed.
1548
1549=item C<Deep recursion on subroutine "%s">
1550
1551It is now possible to change the depth threshold for this warning from the
1552default of 100, by recompiling the F<perl> binary, setting the C
1553pre-processor macro C<PERL_SUB_DEPTH_WARN> to the desired value.
1554
1555=back
1556
1557=head1 Changed Internals
1558
1559=over 4
1560
1561=item *
1562
1563The J.R.R. Tolkien quotes at the head of C source file have been checked and
1564proper citations added, thanks to a patch from Tom Christiansen.
1565
1566=item *
1567
1568C<vcroak()> now accepts a null first argument. In addition, a full audit
1569was made of the "not NULL" compiler annotations, and those for several
1570other internal functions were corrected.
1571
1572=item *
1573
1574New macros C<dSAVEDERRNO>, C<dSAVE_ERRNO>, C<SAVE_ERRNO>, C<RESTORE_ERRNO>
1575have been added to formalise the temporary saving of the C<errno>
1576variable.
1577
1578=item *
1579
1580The function C<Perl_sv_insert_flags> has been added to augment
1581C<Perl_sv_insert>.
1582
1583=item *
1584
1585The function C<Perl_newSV_type(type)> has been added, equivalent to
1586C<Perl_newSV()> followed by C<Perl_sv_upgrade(type)>.
1587
1588=item *
1589
1590The function C<Perl_newSVpvn_flags()> has been added, equivalent to
1591C<Perl_newSVpvn()> and then performing the action relevant to the flag.
1592
1593Two flag bits are currently supported.
1594
1595=over 4
1596
1597=item C<SVf_UTF8>
1598
1599This will call C<SvUTF8_on()> for you. (Note that this does not convert an
1600sequence of ISO 8859-1 characters to UTF-8). A wrapper, C<newSVpvn_utf8()>
1601is available for this.
1602
1603=item C<SVs_TEMP>
1604
1605Call C<sv_2mortal()> on the new SV.
1606
1607=back
1608
1609There is also a wrapper that takes constant strings, C<newSVpvs_flags()>.
1610
1611=item *
1612
1613The function C<Perl_croak_xs_usage> has been added as a wrapper to
1614C<Perl_croak>.
1615
1616=item *
1617
1618The functions C<PerlIO_find_layer> and C<PerlIO_list_alloc> are now
1619exported.
1620
1621=item *
1622
1623C<PL_na> has been exterminated from the core code, replaced by local STRLEN
1624temporaries, or C<*_nolen()> calls. Either approach is faster than C<PL_na>,
1625which is a pointer deference into the interpreter structure under ithreads,
1626and a global variable otherwise.
1627
1628=item *
1629
1630C<Perl_mg_free()> used to leave freed memory accessible via SvMAGIC() on
1631the scalar. It now updates the linked list to remove each piece of magic
1632as it is freed.
1633
1634=item *
1635
1636Under ithreads, the regex in C<PL_reg_curpm> is now reference counted. This
1637eliminates a lot of hackish workarounds to cope with it not being reference
1638counted.
1639
1640=item *
1641
1642C<Perl_mg_magical()> would sometimes incorrectly turn on C<SvRMAGICAL()>.
1643This has been fixed.
1644
1645=item *
1646
1647The I<public> IV and NV flags are now not set if the string value has
1648trailing "garbage". This behaviour is consistent with not setting the
1649public IV or NV flags if the value is out of range for the type.
1650
1651=item *
1652
1653SV allocation tracing has been added to the diagnostics enabled by C<-Dm>.
1654The tracing can alternatively output via the C<PERL_MEM_LOG> mechanism, if
1655that was enabled when the F<perl> binary was compiled.
1656
1657=item *
1658
1659Uses of C<Nullav>, C<Nullcv>, C<Nullhv>, C<Nullop>, C<Nullsv> etc have been
1660replaced by C<NULL> in the core code, and non-dual-life modules, as C<NULL>
1661is clearer to those unfamiliar with the core code.
1662
1663=item *
1664
1665A macro C<MUTABLE_PTR(p)> has been added, which on (non-pedantic) gcc will
1666not cast away C<const>, returning a C<void *>. Macros C<MUTABLE_SV(av)>,
1667C<MUTABLE_SV(cv)> etc build on this, casting to C<AV *> etc without
1668casting away C<const>. This allows proper compile-time auditing of
1669C<const> correctness in the core, and helped picked up some errors (now
1670fixed).
1671
1672=item *
1673
1674Macros C<mPUSHs()> and C<mXPUSHs()> have been added, for pushing SVs on the
1675stack and mortalizing them.
1676
1677=item *
1678
1679Use of the private structure C<mro_meta> has changed slightly. Nothing
1680outside the core should be accessing this directly anyway.
1681
1682=item *
1683
76e3c4a8 1684A new tool, F<Porting/expand-macro.pl> has been added, that allows you
5a00ee6a 1685to view how a C preprocessor macro would be expanded when compiled.
1686This is handy when trying to decode the macro hell that is the perl
1687guts.
1688
1689=back
1690
1691=head1 New Tests
1692
1693Many modules updated from CPAN incorporate new tests.
1694
1695Several tests that have the potential to hang forever if they fail now
1696incorporate a "watchdog" functionality that will kill them after a timeout,
1697which helps ensure that C<make test> and C<make test_harness> run to
1698completion automatically. (Jerry Hedden).
1699
1700Some core-specific tests have been added:
1701
1702=over 4
1703
1704=item t/comp/retainedlines.t
1705
1706Check that the debugger can retain source lines from C<eval>.
1707
1708=item t/io/perlio_fail.t
1709
1710Check that bad layers fail.
1711
1712=item t/io/perlio_leaks.t
1713
1714Check that PerlIO layers are not leaking.
1715
1716=item t/io/perlio_open.t
1717
1718Check that certain special forms of open work.
1719
1720=item t/io/perlio.t
1721
1722General PerlIO tests.
1723
1724=item t/io/pvbm.t
1725
1726Check that there is no unexpected interaction between the internal types
1727C<PVBM> and C<PVGV>.
1728
1729=item t/mro/package_aliases.t
1730
1731Check that mro works properly in the presence of aliased packages.
1732
1733=item t/op/dbm.t
1734
1735Tests for C<dbmopen> and C<dbmclose>.
1736
1737=item t/op/index_thr.t
1738
1739Tests for the interaction of C<index> and threads.
1740
1741=item t/op/pat_thr.t
1742
1743Tests for the interaction of esoteric patterns and threads.
1744
1745=item t/op/qr_gc.t
1746
1747Test that C<qr> doesn't leak.
1748
1749=item t/op/reg_email_thr.t
1750
1751Tests for the interaction of regex recursion and threads.
1752
1753=item t/op/regexp_qr_embed_thr.t
1754
1755Tests for the interaction of patterns with embedded C<qr//> and threads.
1756
1757=item t/op/regexp_unicode_prop.t
1758
1759Tests for Unicode properties in regular expressions.
1760
1761=item t/op/regexp_unicode_prop_thr.t
1762
1763Tests for the interaction of Unicode properties and threads.
1764
1765=item t/op/reg_nc_tie.t
1766
1767Test the tied methods of C<Tie::Hash::NamedCapture>.
1768
1769=item t/op/reg_posixcc.t
1770
1771Check that POSIX character classes behave consistently.
1772
1773=item t/op/re.t
1774
1775Check that exportable C<re> functions in F<universal.c> work.
1776
1777=item t/op/setpgrpstack.t
1778
1779Check that C<setpgrp> works.
1780
1781=item t/op/substr_thr.t
1782
1783Tests for the interaction of C<substr> and threads.
1784
1785=item t/op/upgrade.t
1786
1787Check that upgrading and assigning scalars works.
1788
1789=item t/uni/lex_utf8.t
1790
1791Check that Unicode in the lexer works.
1792
1793=item t/uni/tie.t
1794
1795Check that Unicode and C<tie> work.
1796
1797=back
1798
1799=head1 Known Problems
1800
1801This is a list of some significant unfixed bugs, which are regressions
1802from either 5.10.0 or 5.8.x.
1803
1804=over 4
1805
1806=item *
1807
1808C<List::Util::first> misbehaves in the presence of a lexical C<$_>
1809(typically introduced by C<my $_> or implicitly by C<given>). The variable
1810which gets set for each iteration is the package variable C<$_>, not the
1811lexical C<$_> [RT #67694].
1812
1813A similar issue may occur in other modules that provide functions which
1814take a block as their first argument, like
1815
1816 foo { ... $_ ...} list
1817
1818=item *
1819
1820The C<charnames> pragma may generate a run-time error when a regex is
1821interpolated [RT #56444]:
1822
1823 use charnames ':full';
1824 my $r1 = qr/\N{THAI CHARACTER SARA I}/;
1825 "foo" =~ $r1; # okay
1826 "foo" =~ /$r1+/; # runtime error
1827
1828A workaround is to generate the character outside of the regex:
1829
1830 my $a = "\N{THAI CHARACTER SARA I}";
1831 my $r1 = qr/$a/;
1832
1833=item *
1834
1835Some regexes may run much more slowly when run in a child thread compared
1836with the thread the pattern was compiled into [RT #55600].
1837
5a00ee6a 1838=back
1839
1840=head1 Deprecations
1841
1842The following items are now deprecated.
1843
1844=over 4
1845
1846=item *
1847
1848C<Switch> is buggy and should be avoided. From perl 5.11.0 onwards, it is
1849intended that any use of the core version of this module will emit a
1850warning, and that the module will eventually be removed from the core
1851(probably in perl 5.14.0). See L<perlsyn/"Switch statements"> for its
1852replacement.
1853
1854=item *
1855
ad1d1c50 1856C<suidperl> has been removed. It used to provide a mechanism to
5a00ee6a 1857emulate setuid permission bits on systems that don't support it properly.
1858
ad1d1c50 1859=item *
1860
1861Deprecate assignment to $[
1862
1863=item *
1864
1865Remove attrs, which has been deprecated since 1999/10/02.
1866
1867=item *
1868
1869Deprecate use of the attribute :locked on subroutines.
1870
1871=item *
1872
1873Deprecate using "locked" with the attributes pragma.
1874
1875=item *
1876
1877Deprecate using "unique" with the attributes pragma.
1878
1879=item *
1880
1881warn if ++ or -- are unable to change the value because it's beyond the limit of representation
1882
1883This uses a new warnings category: "imprecision".
1884
ad1d1c50 1885=item *
1886
1887Make lc/uc/lcfirst/ucfirst warn when passed undef.
1888
1889=item *
1890
1891Show constant in "Useless use of a constant in void context"
1892
1893=item *
1894
1895Make the new warning report undef constants as undef
1896
1897=item *
1898
1899Add a new warning, "Prototype after '%s'"
1900
1901=item *
1902
1903Tweak the "Illegal character in prototype" warning so it's more precise when reporting illegal characters after _
1904
1905=item *
1906
1907Unintented interpolation of $\ in regex
1908
1909=item *
1910
1911Make overflow warnings in gmtime/localtime only occur when warnings are on
1912
1913=item *
1914
1915Improve mro merging error messages.
1916
1917They are now very similar to those produced by Algorithm::C3.
1918
1919=item *
1920
1921Amelioration of the error message "Unrecognized character %s in column %d"
1922
1923Changes the error message to "Unrecognized character %s; marked by <--
1924HERE after %s<-- HERE near column %d". This should make it a little
1925simpler to spot and correct the suspicious character.
1926
1927=item *
1928
1929Explicitely point to $. when it causes an uninitialized warning for ranges in scalar context
1930
5a00ee6a 1931=back
1932
1933=head1 Acknowledgements
1934
1935Some of the work in this release was funded by a TPF grant.
1936
1937Nicholas Clark officially retired from maintenance pumpking duty at the
1938end of 2008; however in reality he has put much effort in since then to
1939help get 5.10.1 into a fit state to be released, including writing a
1940considerable chunk of this perldelta.
1941
1942Steffen Mueller and David Golden in particular helped getting CPAN modules
1943polished and synchronised with their in-core equivalents.
1944
1945Craig Berry was tireless in getting maint to run under VMS, no matter how
1946many times we broke it for him.
1947
1948The other core committers contributed most of the changes, and applied most
1949of the patches sent in by the hundreds of contributors listed in F<AUTHORS>.
7120b314 1950
ad1d1c50 1951Much of the work of categorizing changes in this perldelta file was contributed
1952by the following porters using changelogger.bestpractical.com:
1953
1954Nicholas Clark, leon, shawn, alexm, rjbs, rafl, Pedro Melo, brunorc,
1955anonymous, ☄, Tom Hukins, anonymous, Jesse, dagolden, Moritz Onken,
1956Mark Fowler, chorny, anonymous, tmtm
1957
5a00ee6a 1958Finally, thanks to Larry Wall, without whom none of this would be
1959necessary.
7120b314 1960
1961=head1 Reporting Bugs
1962
1963If you find what you think is a bug, you might check the articles
1964recently posted to the comp.lang.perl.misc newsgroup and the perl
5a00ee6a 1965bug database at http://rt.perl.org/perlbug/ . There may also be
7120b314 1966information at http://www.perl.org/ , the Perl Home Page.
1967
1968If you believe you have an unreported bug, please run the B<perlbug>
1969program included with your release. Be sure to trim your bug down
1970to a tiny but sufficient test case. Your bug report, along with the
1971output of C<perl -V>, will be sent off to perlbug@perl.org to be
1972analysed by the Perl porting team.
1973
49f8307e 1974If the bug you are reporting has security implications, which make it
1975inappropriate to send to a publicly archived mailing list, then please send
1976it to perl5-security-report@perl.org. This points to a closed subscription
1977unarchived mailing list, which includes all the core committers, who be able
1978to help assess the impact of issues, figure out a resolution, and help
1979co-ordinate the release of patches to mitigate or fix the problem across all
5a00ee6a 1980platforms on which Perl is supported. Please only use this address for
1981security issues in the Perl core, not for modules independently
1982distributed on CPAN.
49f8307e 1983
7120b314 1984=head1 SEE ALSO
1985
5a00ee6a 1986The F<Changes> file for an explanation of how to view exhaustive details
1987on what changed.
7120b314 1988
1989The F<INSTALL> file for how to build Perl.
1990
1991The F<README> file for general stuff.
1992
1993The F<Artistic> and F<Copying> files for copyright information.
1994
1995=cut
ad1d1c50 1996
1997
1998=head1 TODO
1999
2000The following changes are a filtered list of changes which weren't backported
2001to 5.10.1. They were run through changelogger.bestpractical.com and triaged
2002by a set of Perl 5 Porters. Changes to blead after 5945e41e have not yet
2003been triaged or integrated.
2004
2005The following changes need to be
2006
20071) deleted if they don't merit inclusion
2008
2009 OR
2010
20112) lightly copyedited and integrated into the perldelta above. Unfortunately, many of our
2012commit messages are somewhat terse and require a bit more help to turn into something readable
2013
2014
2015
2016
2017=head1 API
2018
2019=head2 Move the reg_stringify logic to Perl_sv_2pv_flags
2020
2021=head2 mg_copy ought to take an I32
2022
2023=head2 Perl_store_cop_label() isn't meant to be part of the public API.
2024
2025=head2 Perl_gv_fetchmethod{,_autoload,_flags} are actually never* called with a non-NULL stash.
2026So change the parameter to NN.
2027
2028
2029=head2 Promote Perl_setdefout() to the public API.
2030
2031=head2 Add get_cvs() as a shortcut for STR_WITH_LEN() and Perl_get_cvn_flags()
2032
2033=head2 In Perl_newCONSTSUB(), sv should not be NULL.
2034
2035=head2 GvUNIQUE* have been defined as 0 since 2005/06/30 - high time to remove them.
2036
2037=head2 invert and rename PERL_MEM_LOG_STDERR to PERL_MEM_LOG_NOIMPL
2038
2039Most users who want PERL_MEM_LOG want the default implementation,
2040give it to them. Users providing their own implementation can
2041obtain current behavior by adding -DPERL_MEM_LOG_NOIMPL.
2042Frankly, the average user probably wants _ENV by default too.
2043
2044=head2 simplify PERL_MEM_LOG
2045
2046This combines multiple environment variable reads into 1,
2047where it looks for values like "2mst"
2048-2 leading digits are atoi()d to get FD
2049-m memory logging please
2050-s sv logging also
2051-t timestamp those please.
2052
2053Combining these reduces overhead such that it seemed
2054worthwhile to drop all the ifdefs. TBD whether this works
2055in the environment that drove the original tradeoffs.
2056
2057If it isnt enough, Id be tempted by a global static ptr,
2058and on 1st use, is read, seen 0, a lock is taken, and getenvar
2059run to populate it, unlocked, proceed. This would remove
2060iterative overheads.
2061
2062=head2 Add a parameter "destructing" to Gv_AMupdate()
2063
2064This boolean parameter indicates if the function has been called
2065to update the overload magic table while looking up the DESTROY
2066method. In this case, it's probably best to avoid croaking if
2067those tables could not be updated (for example due to a method
2068that could not be loaded.)
2069
2070=head2 Modify the return value of Gv_AMupdate to indicate a compilation error
2071
2072This way we'll restore most of the performance on object desctruction
2073lost by the previous commit
2074
2075
2076=head2 local $SIG{FOO} = sub {...}; sets signal handler to SIG_DFL
2077
2078Re: [perl #60360] [PATCH] UPDATED: local $SIG{FOO} = sub {...}; sets signal handler to SIG_DFL
2079Message-ID: <20081112234504.GI2062@tytlal.topaz.cx>
2080
2081Updated patch to retain source compatibility.
2082
2083Plus using the correct PERL_ARGS_ASSERT_SAVE_HELEM_FLAGS
2084macro and running make regen.
2085
2086=head2 Respecting inc_version_list while processing PERL_VENDORLIB_STEM
2087
2088Respecting inc_version_list while processing PERL_VENDORLIB_STEM
2089From: "Mandalemula, Rajesh" <Rajesh.Mandalemula@deshaw.com>
2090
2091=head2 Change PL_debug behaviour
2092
2093
2094String eval lines are now saved whenever
2095a subroutine is defined, even if the eval'd string has subsequent
2096syntax errors. This allows the debugger to single step into these
2097subroutines.
2098
2099
2100=head2 Tied filehandles now have an additional method EOF which provides the EOF type
2101
2102=head2 Perl is now smarter about adding a -I dir to the beginning or end of @INC
2103
2104=head2 On scope end, delete localized array elements that should not exist anymore, so that the array recovers its previous length. Honour EXISTS and DELETE for tied arrays.
2105
2106=head2 When a glob is deleted, mark its sub as ANON.
2107
2108=head2 Require a space or a newline after a "#line XXX" directive
2109
2110=head2 Forbid using "foreach" as an attribute
2111
2112(like all other control flow statements)
2113
2114
2115=head2 Unregister signal handlers before destroying my_perl
2116
2117If the signal handler runs after perl_destruct() has been called, it
2118will get an invalid (or NULL) my_perl when it asks for the
2119thread-specific interpreter struct. This patch resets the signal
2120handler for any signal previously handled by PL_csighandlerp to SIG_DFL
2121before calling perl_destruct().
2122
2123=head2 Perl_magic_clearsig() needs to remove magic, else delete $SIG{INT} returns undef
2124
2125Perl_magic_clearsig() needs to remove magic, else delete $SIG{INT} returns undef
2126instead of the now-removed INT handler.
2127
2128=head2 [perl #66452] TMPDIR not honored when opening an anonymous temporary file
2129
2130[perl #66452] TMPDIR not honored when opening an anonymous temporary file
2131
2132=head2 The attached patch to perlio.c fixes the problem of errno getting set.
2133
2134While I am firmly in the school of "do not look at $! except immediately
2135after a failure", I also agree that spuriously setting it is messy. But
2136there is just no way of knowing where your errno might have been.
2137
2138The problem was that PerlIO_fast_gets() (and other nearby similar
2139capability-checking PerlIO routines) set the errno (and it was being
2140called a lot, from sv_gets()). I think setting the errno here was
2141a mistake: checking for "can has FOO" should not set external state,
2142such as the errno. The patch removes that errno trashing from all those
2143routines.
2144
2145=head2 Trim all trailing / from "." in @INC when filling %INC
2146
2147This fixes bug #66942 : as a / was left in the directory name,
2148$INC{"Foo.pm"} for a file loaded from the current directory
2149was given the incorrect value "/Foo.pm".
2150
2151=head2 Don't enqueue pending signals during global destruction
2152
2153Global destruction is not signal-safe. PL_psig_pend may already
2154be gone when the signal handler is called (with destruct_level > 0).
2155NULL it before freeing it to prevent a race condition.
2156
2157=head2 Eliminate struct regexp_allocated and xpvio_allocated.
2158
2159Calculate memory allocation using regexp and XPVIO, and the offset of the first
2160real structure member. This avoids tripping over alignment differences between
2161X* and x*_allocated, because x*_allocated doesn't have a double in it.
2162
2163
2164=head1 internals
2165
2166=head2 [perl #47047] Use of inherited AUTOLOAD for non-method is deprecated
2167
2168=head2 Remove the definitions of Null(), Nullch, Nullfp, Nullsv and PL_na when code is within the perl source tree
2169
2170=head2 Replace our assert-which-can-be-caught-by-eval with the real deal from the standard C library.
2171
2172=head2 Tweak Perl_sv_upgrade() so that references can upgrade to SVt_PV
2173
2174=head2 Eliminate prelen from struct regexp.
2175
2176=head2 Change Perl_av_iter_p() to return IV* rather than I32* (which means
2177
2178=head2 Reorder the external regexp flags to get RXf_PMf_STD_PMMOD into the
2179
2180lowest 4 bits (which saves a shift), and the "flags indicating special
2181patterns" into contiguous bits. This makes everything a little tidier,
2182and saves 88 bytes (woohoo!) of object file with -Os on x86 FreeBSD.
2183
2184
2185=head2 Re-implement the SvOOK() hack to store the offset as a BER encoded number in the part of the PVX that is being released.
2186(It will always
2187fit, as chopping off 1 byte gives just enough space for recording a
2188delta of up to 127). This allows SvOOK() to co-exist with SvIOK_on(),
2189which means all the calls to SvOOK_off() [with the possibility of a
2190call to sv_backoff()] in SvIOK_on() can be removed. This ought to make
2191a lot of straight line code a little bit simpler.
2192OOK()d scalars can now be SVt_PV, as the IVX isn't needed.
2193
2194=head2 Abolish wraplen from struct regexp. We're already storing it in SvCUR.
2195
2196=head2 Make Perl_pregcomp() use SvUTF8() of the pattern, rather than the flag bit in pmflags, to decide whether the pattern is UTF-8.
2197
2198=head2 Abolish RXf_UTF8. Store the UTF-8-ness of the pattern with SvUTF8().
2199
2200=head2 In struct regexp move the member paren_names to the IV union.
2201
2202=head2 Make REGEXP a type distinct from SV. (Much like AV, CV, GV, HV).
2203
2204=head2 Allow sv_setsv_flags() to copy SVt_REGEXP much like it copies SVt_FORMAT - the just string buffer.
2205
2206
2207=head2 Correct a long-standing ithreads reference counting anonamly
2208
2209The reference count only needs "doubling" when the scalar is pushed onto
2210PL_regex_padav for the second time.
2211
2212
2213=head2 In PL_regexp_padav, store regexps via real references, rather than hiding them within IVs.
2214
2215We can do this now that they are real SV pointers.
2216
2217=head2 With regexps stored as real RVs, we can eliminate SvREPADTMP().
2218
2219=head2 REGEXPs are now stored directly in PL_regex_padav, rather than indirectly via RVs.
2220
2221=head2 Remove code that protected pp_qr against REGEXPs going away during global destruction whilst they were stored via true references in PL_regex_padav.
2222
2223=head2 Remove PM_GETRE_SAFE and PM_SETRE_SAFE as nothing uses them.
2224
2225=head2 Note the U8 sized space created by removing -P, and check that it is now an illegal command line flag.
2226
2227=head2 Pack the recycled pad offsets into an SV at PL_regex_pad[0].
2228
2229=head2 Re-order so that the !SvOK() case is last (which should be rare)
2230
2231=head2 Extend PUSHFORMAT() to take a second parameter to set retop, to save NULLing it and then reassigning.
2232
2233=head2 Split struct block_sub into struct block_sub and struct block_format.
2234
2235Split struct block_sub into struct block_sub and struct block_format.
2236(CXt_SUB and CXt_FORMAT were using some comon members, but some members
2237were only for one or the other.)
2238
2239=head2 Change the wantarray result from caller from IV to bool for the SCALAR/ARRAY case.
2240
2241This doesn't contradict the documentation, as there isn't any. Oops.
2242
2243
2244=head2 Give G_VOID, G_SCALAR and G_ARRAY the same numeric values as OPf_WANT_VOID, OPf_WANT_SCALAR and OPf_WANT_LIST.
2245
2246
2247=head2 Squeeze the context type down to 4 bits, and move the private flags to fit within the next 4 bits.
2248
2249
2250=head2 In struct block change blku_type from U8 to U16, and the "spare" U8 to U16, with the lockstep changes in struct subst.
2251Eliminate lval from
2252struct block_sub, and instead store it in the U16 in struct block.
2253
2254
2255=head2 In struct block_eval, eliminate old_in_eval and old_op_type by storing the data in blk_u16.
2256
2257
2258=head2 The layout for struct block_loop under ithreads can be simplified.
2259
2260Instead of wedging the pad offset into a void* iterdata, and always
2261storing PL_comppad even when it isn't used, instead do this:
2262
2263PAD *oldcomppad; /* Also used for the GV, if targoffset is 0 */
2264/* This is also accesible via cx->blk_loop.my_op->op_targ */
2265PADOFFSET targoffset;
2266
2267and store the GV pointer in oldcompad. Pointers to pointers seems
2268cleaner. This also allows us to eliminate the flag bit CXp_PADVAR.
2269
2270
2271=head2 In XS_PerlIO_get_layers() take advantage of the implementation of
2272
2273In XS_PerlIO_get_layers() take advantage of the implementation of
2274PerlIO_get_layers(), by co-opting the new SVs it creates, rather than
2275copying them.
2276
2277
2278=head2 Micro-optimise the order of the context types. [Because I can :-)]
2279
2280=head2 [patch] optimize OP_IS_(FILETEST|SOCKET) macros
2281
2282=head2 Eliminate ck_lengthconst.
2283
2284=head2 Chainsaw DEBUG_S out, as suggested by Vincent Pit.
2285
2286=head2 Unsupported private API functions are now declared "static" to prevent leakage to the public API
2287
2288=head2 Perl_cv_ckproto() is not part of the public API, and not used anywhere. It has been removed
2289
2290=head2 Remove all the 5005threads specific mutex macros, which are now vestigial.
2291
2292=head2 Do not honor TMPDIR for anonymous temporary files when tainting
2293
2294Use a default of /tmp on Unixes when TMPDIR is unset or empty, or
2295when creation of a temporary file in it fails
2296
2297=head2 Add a pluggable hook in op_free()
2298
2299