-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathperl5101delta.html
1840 lines (1195 loc) · 61.6 KB
/
perl5101delta.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>perl5101delta - what is new for perl v5.10.1</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:[email protected]" />
</head>
<body>
<ul id="index">
<li><a href="#NAME">NAME</a></li>
<li><a href="#DESCRIPTION">DESCRIPTION</a></li>
<li><a href="#Incompatible-Changes">Incompatible Changes</a>
<ul>
<li><a href="#Switch-statement-changes">Switch statement changes</a></li>
<li><a href="#Smart-match-changes">Smart match changes</a>
<ul>
<li><a href="#Changes-to-type-based-dispatch">Changes to type-based dispatch</a></li>
<li><a href="#Smart-match-and-overloading">Smart match and overloading</a></li>
</ul>
</li>
<li><a href="#Other-incompatible-changes">Other incompatible changes</a></li>
</ul>
</li>
<li><a href="#Core-Enhancements">Core Enhancements</a>
<ul>
<li><a href="#Unicode-Character-Database-5.1.0">Unicode Character Database 5.1.0</a></li>
<li><a href="#A-proper-interface-for-pluggable-Method-Resolution-Orders">A proper interface for pluggable Method Resolution Orders</a></li>
<li><a href="#The-overloading-pragma">The overloading pragma</a></li>
<li><a href="#Parallel-tests">Parallel tests</a></li>
<li><a href="#DTrace-support">DTrace support</a></li>
<li><a href="#Support-for-configure_requires-in-CPAN-module-metadata">Support for configure_requires in CPAN module metadata</a></li>
</ul>
</li>
<li><a href="#Modules-and-Pragmata">Modules and Pragmata</a>
<ul>
<li><a href="#New-Modules-and-Pragmata">New Modules and Pragmata</a></li>
<li><a href="#Pragmata-Changes">Pragmata Changes</a></li>
<li><a href="#Updated-Modules">Updated Modules</a></li>
</ul>
</li>
<li><a href="#Utility-Changes">Utility Changes</a></li>
<li><a href="#New-Documentation">New Documentation</a></li>
<li><a href="#Changes-to-Existing-Documentation">Changes to Existing Documentation</a></li>
<li><a href="#Performance-Enhancements">Performance Enhancements</a></li>
<li><a href="#Installation-and-Configuration-Improvements">Installation and Configuration Improvements</a>
<ul>
<li><a href="#ext-reorganisation">ext/ reorganisation</a></li>
<li><a href="#Configuration-improvements">Configuration improvements</a></li>
<li><a href="#Compilation-improvements">Compilation improvements</a></li>
<li><a href="#Platform-Specific-Changes">Platform Specific Changes</a></li>
</ul>
</li>
<li><a href="#Selected-Bug-Fixes">Selected Bug Fixes</a></li>
<li><a href="#New-or-Changed-Diagnostics">New or Changed Diagnostics</a></li>
<li><a href="#Changed-Internals">Changed Internals</a></li>
<li><a href="#New-Tests">New Tests</a></li>
<li><a href="#Known-Problems">Known Problems</a></li>
<li><a href="#Deprecations">Deprecations</a></li>
<li><a href="#Acknowledgements">Acknowledgements</a></li>
<li><a href="#Reporting-Bugs">Reporting Bugs</a></li>
<li><a href="#SEE-ALSO">SEE ALSO</a></li>
</ul>
<h1 id="NAME">NAME</h1>
<p>perl5101delta - what is new for perl v5.10.1</p>
<h1 id="DESCRIPTION">DESCRIPTION</h1>
<p>This document describes differences between the 5.10.0 release and the 5.10.1 release.</p>
<p>If you are upgrading from an earlier release such as 5.8.8, first read the <a href="/cperl/perl5100delta.html">perl5100delta</a>, which describes differences between 5.8.8 and 5.10.0</p>
<h1 id="Incompatible-Changes">Incompatible Changes</h1>
<h2 id="Switch-statement-changes">Switch statement changes</h2>
<p>The handling of complex expressions by the <code>given</code>/<code>when</code> switch statement has been enhanced. There are two new cases where <code>when</code> now interprets its argument as a boolean, instead of an expression to be used in a smart match:</p>
<dl>
<dt id="flip-flop-operators">flip-flop operators</dt>
<dd>
<p>The <code>..</code> and <code>...</code> flip-flop operators are now evaluated in boolean context, following their usual semantics; see <a href="/cperl/perlop.html#Range-Operators">"Range Operators" in perlop</a>.</p>
<p>Note that, as in perl 5.10.0, <code>when (1..10)</code> will not work to test whether a given value is an integer between 1 and 10; you should use <code>when ([1..10])</code> instead (note the array reference).</p>
<p>However, contrary to 5.10.0, evaluating the flip-flop operators in boolean context ensures it can now be useful in a <code>when()</code>, notably for implementing bistable conditions, like in:</p>
<pre><code> when (/^=begin/ .. /^=end/) {
# do something
}</code></pre>
</dd>
<dt id="defined-or-operator">defined-or operator</dt>
<dd>
<p>A compound expression involving the defined-or operator, as in <code>when (expr1 // expr2)</code>, will be treated as boolean if the first expression is boolean. (This just extends the existing rule that applies to the regular or operator, as in <code>when (expr1 || expr2)</code>.)</p>
</dd>
</dl>
<p>The next section details more changes brought to the semantics to the smart match operator, that naturally also modify the behaviour of the switch statements where smart matching is implicitly used.</p>
<h2 id="Smart-match-changes">Smart match changes</h2>
<h3 id="Changes-to-type-based-dispatch">Changes to type-based dispatch</h3>
<p>The smart match operator <code>~~</code> is no longer commutative. The behaviour of a smart match now depends primarily on the type of its right hand argument. Moreover, its semantics have been adjusted for greater consistency or usefulness in several cases. While the general backwards compatibility is maintained, several changes must be noted:</p>
<ul>
<li><p>Code references with an empty prototype are no longer treated specially. They are passed an argument like the other code references (even if they choose to ignore it).</p>
</li>
<li><p><code>%hash ~~ sub {}</code> and <code>@array ~~ sub {}</code> now test that the subroutine returns a true value for each key of the hash (or element of the array), instead of passing the whole hash or array as a reference to the subroutine.</p>
</li>
<li><p>Due to the commutativity breakage, code references are no longer treated specially when appearing on the left of the <code>~~</code> operator, but like any vulgar scalar.</p>
</li>
<li><p><code>undef ~~ %hash</code> is always false (since <code>undef</code> can't be a key in a hash). No implicit conversion to <code>""</code> is done (as was the case in perl 5.10.0).</p>
</li>
<li><p><code>$scalar ~~ @array</code> now always distributes the smart match across the elements of the array. It's true if one element in @array verifies <code>$scalar ~~ $element</code>. This is a generalization of the old behaviour that tested whether the array contained the scalar.</p>
</li>
</ul>
<p>The full dispatch table for the smart match operator is given in <a href="/cperl/perlsyn.html#Smart-matching-in-detail">"Smart matching in detail" in perlsyn</a>.</p>
<h3 id="Smart-match-and-overloading">Smart match and overloading</h3>
<p>According to the rule of dispatch based on the rightmost argument type, when an object overloading <code>~~</code> appears on the right side of the operator, the overload routine will always be called (with a 3rd argument set to a true value, see <a href="/cperl/lib/overload.html">overload</a>.) However, when the object will appear on the left, the overload routine will be called only when the rightmost argument is a simple scalar. This way distributivity of smart match across arrays is not broken, as well as the other behaviours with complex types (coderefs, hashes, regexes). Thus, writers of overloading routines for smart match mostly need to worry only with comparing against a scalar, and possibly with stringification overloading; the other common cases will be automatically handled consistently.</p>
<p><code>~~</code> will now refuse to work on objects that do not overload it (in order to avoid relying on the object's underlying structure). (However, if the object overloads the stringification or the numification operators, and if overload fallback is active, it will be used instead, as usual.)</p>
<h2 id="Other-incompatible-changes">Other incompatible changes</h2>
<ul>
<li><p>The semantics of <code>use feature :5.10*</code> have changed slightly. See <a href="#Modules-and-Pragmata">"Modules and Pragmata"</a> for more information.</p>
</li>
<li><p>It is now a run-time error to use the smart match operator <code>~~</code> with an object that has no overload defined for it. (This way <code>~~</code> will not break encapsulation by matching against the object's internal representation as a reference.)</p>
</li>
<li><p>The version control system used for the development of the perl interpreter has been switched from Perforce to git. This is mainly an internal issue that only affects people actively working on the perl core; but it may have minor external visibility, for example in some of details of the output of <code>perl -V</code>. See <a href="/cperl/perlrepository.html">perlrepository</a> for more information.</p>
</li>
<li><p>The internal structure of the <code>ext/</code> directory in the perl source has been reorganised. In general, a module <code>Foo::Bar</code> whose source was stored under <i>ext/Foo/Bar/</i> is now located under <i>ext/Foo-Bar/</i>. Also, some modules have been moved from <i>lib/</i> to <i>ext/</i>. This is purely a source tarball change, and should make no difference to the compilation or installation of perl, unless you have a very customised build process that explicitly relies on this structure, or which hard-codes the <code>nonxs_ext</code> <i>Configure</i> parameter. Specifically, this change does not by default alter the location of any files in the final installation.</p>
</li>
<li><p>As part of the <code>Test::Harness</code> 2.x to 3.x upgrade, the experimental <code>Test::Harness::Straps</code> module has been removed. See <a href="#Updated-Modules">"Updated Modules"</a> for more details.</p>
</li>
<li><p>As part of the <code>ExtUtils::MakeMaker</code> upgrade, the <code>ExtUtils::MakeMaker::bytes</code> and <code>ExtUtils::MakeMaker::vmsish</code> modules have been removed from this distribution.</p>
</li>
<li><p><code>Module::CoreList</code> no longer contains the <code>%:patchlevel</code> hash.</p>
</li>
<li><p>This one is actually a change introduced in 5.10.0, but it was missed from that release's perldelta, so it is mentioned here instead.</p>
<p>A bugfix related to the handling of the <code>/m</code> modifier and <code>qr</code> resulted in a change of behaviour between 5.8.x and 5.10.0:</p>
<pre><code> # matches in 5.8.x, doesn't match in 5.10.0
$re = qr/^bar/; "foo\nbar" =~ /$re/m;</code></pre>
</li>
</ul>
<h1 id="Core-Enhancements">Core Enhancements</h1>
<h2 id="Unicode-Character-Database-5.1.0">Unicode Character Database 5.1.0</h2>
<p>The copy of the Unicode Character Database included in Perl 5.10.1 has been updated to 5.1.0 from 5.0.0. See <a href="http://www.unicode.org/versions/Unicode5.1.0/#Notable_Changes">http://www.unicode.org/versions/Unicode5.1.0/#Notable_Changes</a> for the notable changes.</p>
<h2 id="A-proper-interface-for-pluggable-Method-Resolution-Orders">A proper interface for pluggable Method Resolution Orders</h2>
<p>As of Perl 5.10.1 there is a new interface for plugging and using method resolution orders other than the default (linear depth first search). The C3 method resolution order added in 5.10.0 has been re-implemented as a plugin, without changing its Perl-space interface. See <a href="/cperl/perlmroapi.html">perlmroapi</a> for more information.</p>
<h2 id="The-overloading-pragma">The <code>overloading</code> pragma</h2>
<p>This pragma allows you to lexically disable or enable overloading for some or all operations. (Yuval Kogman)</p>
<h2 id="Parallel-tests">Parallel tests</h2>
<p>The core distribution can now run its regression tests in parallel on Unix-like platforms. Instead of running <code>make test</code>, set <code>TEST_JOBS</code> in your environment to the number of tests to run in parallel, and run <code>make test_harness</code>. On a Bourne-like shell, this can be done as</p>
<pre><code> TEST_JOBS=3 make test_harness # Run 3 tests in parallel</code></pre>
<p>An environment variable is used, rather than parallel make itself, because <a href="/cperl/lib/TAP/Harness.html">TAP::Harness</a> needs to be able to schedule individual non-conflicting test scripts itself, and there is no standard interface to <code>make</code> utilities to interact with their job schedulers.</p>
<p>Note that currently some test scripts may fail when run in parallel (most notably <code>ext/IO/t/io_dir.t</code>). If necessary run just the failing scripts again sequentially and see if the failures go away.</p>
<h2 id="DTrace-support">DTrace support</h2>
<p>Some support for DTrace has been added. See "DTrace support" in <i>INSTALL</i>.</p>
<h2 id="Support-for-configure_requires-in-CPAN-module-metadata">Support for <code>configure_requires</code> in CPAN module metadata</h2>
<p>Both <code>CPAN</code> and <code>CPANPLUS</code> now support the <code>configure_requires</code> keyword in the <code>META.yml</code> metadata file included in most recent CPAN distributions. This allows distribution authors to specify configuration prerequisites that must be installed before running <i>Makefile.PL</i> or <i>Build.PL</i>.</p>
<p>See the documentation for <code>ExtUtils::MakeMaker</code> or <code>Module::Build</code> for more on how to specify <code>configure_requires</code> when creating a distribution for CPAN.</p>
<h1 id="Modules-and-Pragmata">Modules and Pragmata</h1>
<h2 id="New-Modules-and-Pragmata">New Modules and Pragmata</h2>
<dl>
<dt id="autodie"><code>autodie</code></dt>
<dd>
<p>This is a new lexically-scoped alternative for the <code>Fatal</code> module. The bundled version is 2.06_01. Note that in this release, using a string eval when <code>autodie</code> is in effect can cause the autodie behaviour to leak into the surrounding scope. See <a href="/cperl/lib/autodie.html#BUGS">"BUGS" in autodie</a> for more details.</p>
</dd>
<dt id="Compress::Raw::Bzip2"><code>Compress::Raw::Bzip2</code></dt>
<dd>
<p>This has been added to the core (version 2.020).</p>
</dd>
<dt id="parent"><code>parent</code></dt>
<dd>
<p>This pragma establishes an ISA relationship with base classes at compile time. It provides the key feature of <code>base</code> without the feature creep.</p>
</dd>
<dt id="Parse::CPAN::Meta"><code>Parse::CPAN::Meta</code></dt>
<dd>
<p>This has been added to the core (version 1.39).</p>
</dd>
</dl>
<h2 id="Pragmata-Changes">Pragmata Changes</h2>
<dl>
<dt id="attributes"><code>attributes</code></dt>
<dd>
<p>Upgraded from version 0.08 to 0.09.</p>
</dd>
<dt id="attrs"><code>attrs</code></dt>
<dd>
<p>Upgraded from version 1.02 to 1.03.</p>
</dd>
<dt id="base"><code>base</code></dt>
<dd>
<p>Upgraded from version 2.13 to 2.14. See <a href="/cperl/lib/parent.html">parent</a> for a replacement.</p>
</dd>
<dt id="bigint"><code>bigint</code></dt>
<dd>
<p>Upgraded from version 0.22 to 0.23.</p>
</dd>
<dt id="bignum"><code>bignum</code></dt>
<dd>
<p>Upgraded from version 0.22 to 0.23.</p>
</dd>
<dt id="bigrat"><code>bigrat</code></dt>
<dd>
<p>Upgraded from version 0.22 to 0.23.</p>
</dd>
<dt id="charnames"><code>charnames</code></dt>
<dd>
<p>Upgraded from version 1.06 to 1.07.</p>
<p>The Unicode <i>NameAliases.txt</i> database file has been added. This has the effect of adding some extra <code>\N</code> character names that formerly wouldn't have been recognised; for example, <code>"\N{LATIN CAPITAL LETTER GHA}"</code>.</p>
</dd>
<dt id="constant"><code>constant</code></dt>
<dd>
<p>Upgraded from version 1.13 to 1.17.</p>
</dd>
<dt id="feature"><code>feature</code></dt>
<dd>
<p>The meaning of the <code>:5.10</code> and <code>:5.10.X</code> feature bundles has changed slightly. The last component, if any (i.e. <code>X</code>) is simply ignored. This is predicated on the assumption that new features will not, in general, be added to maintenance releases. So <code>:5.10</code> and <code>:5.10.X</code> have identical effect. This is a change to the behaviour documented for 5.10.0.</p>
</dd>
<dt id="fields"><code>fields</code></dt>
<dd>
<p>Upgraded from version 2.13 to 2.14 (this was just a version bump; there were no functional changes).</p>
</dd>
<dt id="lib"><code>lib</code></dt>
<dd>
<p>Upgraded from version 0.5565 to 0.62.</p>
</dd>
<dt id="open"><code>open</code></dt>
<dd>
<p>Upgraded from version 1.06 to 1.07.</p>
</dd>
<dt id="overload"><code>overload</code></dt>
<dd>
<p>Upgraded from version 1.06 to 1.07.</p>
</dd>
<dt id="overloading"><code>overloading</code></dt>
<dd>
<p>See <a href="#The-overloading-pragma">"The <code>overloading</code> pragma"</a> above.</p>
</dd>
<dt id="version"><code>version</code></dt>
<dd>
<p>Upgraded from version 0.74 to 0.77.</p>
</dd>
</dl>
<h2 id="Updated-Modules">Updated Modules</h2>
<dl>
<dt id="Archive::Extract"><code>Archive::Extract</code></dt>
<dd>
<p>Upgraded from version 0.24 to 0.34.</p>
</dd>
<dt id="Archive::Tar"><code>Archive::Tar</code></dt>
<dd>
<p>Upgraded from version 1.38 to 1.52.</p>
</dd>
<dt id="Attribute::Handlers"><code>Attribute::Handlers</code></dt>
<dd>
<p>Upgraded from version 0.79 to 0.85.</p>
</dd>
<dt id="AutoLoader"><code>AutoLoader</code></dt>
<dd>
<p>Upgraded from version 5.63 to 5.68.</p>
</dd>
<dt id="AutoSplit"><code>AutoSplit</code></dt>
<dd>
<p>Upgraded from version 1.05 to 1.06.</p>
</dd>
<dt id="B"><code>B</code></dt>
<dd>
<p>Upgraded from version 1.17 to 1.22.</p>
</dd>
<dt id="B::Debug"><code>B::Debug</code></dt>
<dd>
<p>Upgraded from version 1.05 to 1.11.</p>
</dd>
<dt id="B::Deparse"><code>B::Deparse</code></dt>
<dd>
<p>Upgraded from version 0.83 to 0.89.</p>
</dd>
<dt id="B::Lint"><code>B::Lint</code></dt>
<dd>
<p>Upgraded from version 1.09 to 1.11.</p>
</dd>
<dt id="B::Xref"><code>B::Xref</code></dt>
<dd>
<p>Upgraded from version 1.01 to 1.02.</p>
</dd>
<dt id="Benchmark"><code>Benchmark</code></dt>
<dd>
<p>Upgraded from version 1.10 to 1.11.</p>
</dd>
<dt id="Carp"><code>Carp</code></dt>
<dd>
<p>Upgraded from version 1.08 to 1.11.</p>
</dd>
<dt id="CGI"><code>CGI</code></dt>
<dd>
<p>Upgraded from version 3.29 to 3.43. (also includes the "default_value for popup_menu()" fix from 3.45).</p>
</dd>
<dt id="Compress::Zlib"><code>Compress::Zlib</code></dt>
<dd>
<p>Upgraded from version 2.008 to 2.020.</p>
</dd>
<dt id="CPAN"><code>CPAN</code></dt>
<dd>
<p>Upgraded from version 1.9205 to 1.9402. <code>CPAN::FTP</code> has a local fix to stop it being too verbose on download failure.</p>
</dd>
<dt id="CPANPLUS"><code>CPANPLUS</code></dt>
<dd>
<p>Upgraded from version 0.84 to 0.88.</p>
</dd>
<dt id="CPANPLUS::Dist::Build"><code>CPANPLUS::Dist::Build</code></dt>
<dd>
<p>Upgraded from version 0.06_02 to 0.36.</p>
</dd>
<dt id="Cwd"><code>Cwd</code></dt>
<dd>
<p>Upgraded from version 3.25_01 to 3.30.</p>
</dd>
<dt id="Data::Dumper"><code>Data::Dumper</code></dt>
<dd>
<p>Upgraded from version 2.121_14 to 2.124.</p>
</dd>
<dt id="DB"><code>DB</code></dt>
<dd>
<p>Upgraded from version 1.01 to 1.02.</p>
</dd>
<dt id="DB_File"><code>DB_File</code></dt>
<dd>
<p>Upgraded from version 1.816_1 to 1.820.</p>
</dd>
<dt id="Devel::PPPort"><code>Devel::PPPort</code></dt>
<dd>
<p>Upgraded from version 3.13 to 3.19.</p>
</dd>
<dt id="Digest::MD5"><code>Digest::MD5</code></dt>
<dd>
<p>Upgraded from version 2.36_01 to 2.39.</p>
</dd>
<dt id="Digest::SHA"><code>Digest::SHA</code></dt>
<dd>
<p>Upgraded from version 5.45 to 5.47.</p>
</dd>
<dt id="DirHandle"><code>DirHandle</code></dt>
<dd>
<p>Upgraded from version 1.01 to 1.03.</p>
</dd>
<dt id="Dumpvalue"><code>Dumpvalue</code></dt>
<dd>
<p>Upgraded from version 1.12 to 1.13.</p>
</dd>
<dt id="DynaLoader"><code>DynaLoader</code></dt>
<dd>
<p>Upgraded from version 1.08 to 1.10.</p>
</dd>
<dt id="Encode"><code>Encode</code></dt>
<dd>
<p>Upgraded from version 2.23 to 2.35.</p>
</dd>
<dt id="Errno"><code>Errno</code></dt>
<dd>
<p>Upgraded from version 1.10 to 1.11.</p>
</dd>
<dt id="Exporter"><code>Exporter</code></dt>
<dd>
<p>Upgraded from version 5.62 to 5.63.</p>
</dd>
<dt id="ExtUtils::CBuilder"><code>ExtUtils::CBuilder</code></dt>
<dd>
<p>Upgraded from version 0.21 to 0.2602.</p>
</dd>
<dt id="ExtUtils::Command"><code>ExtUtils::Command</code></dt>
<dd>
<p>Upgraded from version 1.13 to 1.16.</p>
</dd>
<dt id="ExtUtils::Constant"><code>ExtUtils::Constant</code></dt>
<dd>
<p>Upgraded from 0.20 to 0.22. (Note that neither of these versions are available on CPAN.)</p>
</dd>
<dt id="ExtUtils::Embed"><code>ExtUtils::Embed</code></dt>
<dd>
<p>Upgraded from version 1.27 to 1.28.</p>
</dd>
<dt id="ExtUtils::Install"><code>ExtUtils::Install</code></dt>
<dd>
<p>Upgraded from version 1.44 to 1.54.</p>
</dd>
<dt id="ExtUtils::MakeMaker"><code>ExtUtils::MakeMaker</code></dt>
<dd>
<p>Upgraded from version 6.42 to 6.55_02.</p>
<p>Note that <code>ExtUtils::MakeMaker::bytes</code> and <code>ExtUtils::MakeMaker::vmsish</code> have been removed from this distribution.</p>
</dd>
<dt id="ExtUtils::Manifest"><code>ExtUtils::Manifest</code></dt>
<dd>
<p>Upgraded from version 1.51_01 to 1.56.</p>
</dd>
<dt id="ExtUtils::ParseXS"><code>ExtUtils::ParseXS</code></dt>
<dd>
<p>Upgraded from version 2.18_02 to 2.2002.</p>
</dd>
<dt id="Fatal"><code>Fatal</code></dt>
<dd>
<p>Upgraded from version 1.05 to 2.06_01. See also the new pragma <code>autodie</code>.</p>
</dd>
<dt id="File::Basename"><code>File::Basename</code></dt>
<dd>
<p>Upgraded from version 2.76 to 2.77.</p>
</dd>
<dt id="File::Compare"><code>File::Compare</code></dt>
<dd>
<p>Upgraded from version 1.1005 to 1.1006.</p>
</dd>
<dt id="File::Copy"><code>File::Copy</code></dt>
<dd>
<p>Upgraded from version 2.11 to 2.14.</p>
</dd>
<dt id="File::Fetch"><code>File::Fetch</code></dt>
<dd>
<p>Upgraded from version 0.14 to 0.20.</p>
</dd>
<dt id="File::Find"><code>File::Find</code></dt>
<dd>
<p>Upgraded from version 1.12 to 1.14.</p>
</dd>
<dt id="File::Path"><code>File::Path</code></dt>
<dd>
<p>Upgraded from version 2.04 to 2.07_03.</p>
</dd>
<dt id="File::Spec"><code>File::Spec</code></dt>
<dd>
<p>Upgraded from version 3.2501 to 3.30.</p>
</dd>
<dt id="File::stat"><code>File::stat</code></dt>
<dd>
<p>Upgraded from version 1.00 to 1.01.</p>
</dd>
<dt id="File::Temp"><code>File::Temp</code></dt>
<dd>
<p>Upgraded from version 0.18 to 0.22.</p>
</dd>
<dt id="FileCache"><code>FileCache</code></dt>
<dd>
<p>Upgraded from version 1.07 to 1.08.</p>
</dd>
<dt id="FileHandle"><code>FileHandle</code></dt>
<dd>
<p>Upgraded from version 2.01 to 2.02.</p>
</dd>
<dt id="Filter::Simple"><code>Filter::Simple</code></dt>
<dd>
<p>Upgraded from version 0.82 to 0.84.</p>
</dd>
<dt id="Filter::Util::Call"><code>Filter::Util::Call</code></dt>
<dd>
<p>Upgraded from version 1.07 to 1.08.</p>
</dd>
<dt id="FindBin"><code>FindBin</code></dt>
<dd>
<p>Upgraded from version 1.49 to 1.50.</p>
</dd>
<dt id="GDBM_File"><code>GDBM_File</code></dt>
<dd>
<p>Upgraded from version 1.08 to 1.09.</p>
</dd>
<dt id="Getopt::Long"><code>Getopt::Long</code></dt>
<dd>
<p>Upgraded from version 2.37 to 2.38.</p>
</dd>
<dt id="Hash::Util::FieldHash"><code>Hash::Util::FieldHash</code></dt>
<dd>
<p>Upgraded from version 1.03 to 1.04. This fixes a memory leak.</p>
</dd>
<dt id="I18N::Collate"><code>I18N::Collate</code></dt>
<dd>
<p>Upgraded from version 1.00 to 1.01.</p>
</dd>
<dt id="IO"><code>IO</code></dt>
<dd>
<p>Upgraded from version 1.23_01 to 1.25.</p>
<p>This makes non-blocking mode work on Windows in <code>IO::Socket::INET</code> [CPAN #43573].</p>
</dd>
<dt id="IO::Compress"><code>IO::Compress::*</code></dt>
<dd>
<p>Upgraded from version 2.008 to 2.020.</p>
</dd>
<dt id="IO::Dir"><code>IO::Dir</code></dt>
<dd>
<p>Upgraded from version 1.06 to 1.07.</p>
</dd>
<dt id="IO::Handle"><code>IO::Handle</code></dt>
<dd>
<p>Upgraded from version 1.27 to 1.28.</p>
</dd>
<dt id="IO::Socket"><code>IO::Socket</code></dt>
<dd>
<p>Upgraded from version 1.30_01 to 1.31.</p>
</dd>
<dt id="IO::Zlib"><code>IO::Zlib</code></dt>
<dd>
<p>Upgraded from version 1.07 to 1.09.</p>
</dd>
<dt id="IPC::Cmd"><code>IPC::Cmd</code></dt>
<dd>
<p>Upgraded from version 0.40_1 to 0.46.</p>
</dd>
<dt id="IPC::Open3"><code>IPC::Open3</code></dt>
<dd>
<p>Upgraded from version 1.02 to 1.04.</p>
</dd>
<dt id="IPC::SysV"><code>IPC::SysV</code></dt>
<dd>
<p>Upgraded from version 1.05 to 2.01.</p>
</dd>
<dt id="lib1"><code>lib</code></dt>
<dd>
<p>Upgraded from version 0.5565 to 0.62.</p>
</dd>
<dt id="List::Util"><code>List::Util</code></dt>
<dd>
<p>Upgraded from version 1.19 to 1.21.</p>
</dd>
<dt id="Locale::MakeText"><code>Locale::MakeText</code></dt>
<dd>
<p>Upgraded from version 1.12 to 1.13.</p>
</dd>
<dt id="Log::Message"><code>Log::Message</code></dt>
<dd>
<p>Upgraded from version 0.01 to 0.02.</p>
</dd>
<dt id="Math::BigFloat"><code>Math::BigFloat</code></dt>
<dd>
<p>Upgraded from version 1.59 to 1.60.</p>
</dd>
<dt id="Math::BigInt"><code>Math::BigInt</code></dt>
<dd>
<p>Upgraded from version 1.88 to 1.89.</p>
</dd>
<dt id="Math::BigInt::FastCalc"><code>Math::BigInt::FastCalc</code></dt>
<dd>
<p>Upgraded from version 0.16 to 0.19.</p>
</dd>
<dt id="Math::BigRat"><code>Math::BigRat</code></dt>
<dd>
<p>Upgraded from version 0.21 to 0.22.</p>
</dd>
<dt id="Math::Complex"><code>Math::Complex</code></dt>
<dd>
<p>Upgraded from version 1.37 to 1.56.</p>
</dd>
<dt id="Math::Trig"><code>Math::Trig</code></dt>
<dd>
<p>Upgraded from version 1.04 to 1.20.</p>
</dd>
<dt id="Memoize"><code>Memoize</code></dt>
<dd>
<p>Upgraded from version 1.01_02 to 1.01_03 (just a minor documentation change).</p>
</dd>
<dt id="Module::Build"><code>Module::Build</code></dt>
<dd>
<p>Upgraded from version 0.2808_01 to 0.34_02.</p>
</dd>
<dt id="Module::CoreList"><code>Module::CoreList</code></dt>
<dd>
<p>Upgraded from version 2.13 to 2.18. This release no longer contains the <code>%Module::CoreList::patchlevel</code> hash.</p>
</dd>
<dt id="Module::Load"><code>Module::Load</code></dt>
<dd>
<p>Upgraded from version 0.12 to 0.16.</p>
</dd>
<dt id="Module::Load::Conditional"><code>Module::Load::Conditional</code></dt>
<dd>
<p>Upgraded from version 0.22 to 0.30.</p>
</dd>
<dt id="Module::Loaded"><code>Module::Loaded</code></dt>
<dd>
<p>Upgraded from version 0.01 to 0.02.</p>
</dd>
<dt id="Module::Pluggable"><code>Module::Pluggable</code></dt>
<dd>
<p>Upgraded from version 3.6 to 3.9.</p>
</dd>
<dt id="NDBM_File"><code>NDBM_File</code></dt>
<dd>
<p>Upgraded from version 1.07 to 1.08.</p>
</dd>
<dt id="Net::Ping"><code>Net::Ping</code></dt>
<dd>
<p>Upgraded from version 2.33 to 2.36.</p>
</dd>
<dt id="NEXT"><code>NEXT</code></dt>
<dd>
<p>Upgraded from version 0.60_01 to 0.64.</p>
</dd>
<dt id="Object::Accessor"><code>Object::Accessor</code></dt>
<dd>
<p>Upgraded from version 0.32 to 0.34.</p>
</dd>
<dt id="OS2::REXX"><code>OS2::REXX</code></dt>
<dd>
<p>Upgraded from version 1.03 to 1.04.</p>
</dd>
<dt id="Package::Constants"><code>Package::Constants</code></dt>
<dd>
<p>Upgraded from version 0.01 to 0.02.</p>
</dd>
<dt id="PerlIO"><code>PerlIO</code></dt>
<dd>
<p>Upgraded from version 1.04 to 1.06.</p>
</dd>
<dt id="PerlIO::via"><code>PerlIO::via</code></dt>
<dd>
<p>Upgraded from version 0.04 to 0.07.</p>
</dd>
<dt id="Pod::Man"><code>Pod::Man</code></dt>
<dd>
<p>Upgraded from version 2.16 to 2.22.</p>
</dd>
<dt id="Pod::Parser"><code>Pod::Parser</code></dt>
<dd>
<p>Upgraded from version 1.35 to 1.37.</p>
</dd>
<dt id="Pod::Simple"><code>Pod::Simple</code></dt>
<dd>
<p>Upgraded from version 3.05 to 3.07.</p>
</dd>
<dt id="Pod::Text"><code>Pod::Text</code></dt>
<dd>
<p>Upgraded from version 3.08 to 3.13.</p>
</dd>
<dt id="POSIX"><code>POSIX</code></dt>
<dd>
<p>Upgraded from version 1.13 to 1.17.</p>
</dd>
<dt id="Safe"><code>Safe</code></dt>
<dd>
<p>Upgraded from 2.12 to 2.18.</p>
</dd>
<dt id="Scalar::Util"><code>Scalar::Util</code></dt>
<dd>
<p>Upgraded from version 1.19 to 1.21.</p>
</dd>
<dt id="SelectSaver"><code>SelectSaver</code></dt>
<dd>
<p>Upgraded from 1.01 to 1.02.</p>
</dd>
<dt id="SelfLoader"><code>SelfLoader</code></dt>
<dd>
<p>Upgraded from 1.11 to 1.17.</p>
</dd>
<dt id="Socket"><code>Socket</code></dt>
<dd>
<p>Upgraded from 1.80 to 1.82.</p>
</dd>
<dt id="Storable"><code>Storable</code></dt>
<dd>
<p>Upgraded from 2.18 to 2.20.</p>
</dd>
<dt id="Switch"><code>Switch</code></dt>
<dd>
<p>Upgraded from version 2.13 to 2.14. Please see <a href="#Deprecations">"Deprecations"</a>.</p>
</dd>
<dt id="Symbol"><code>Symbol</code></dt>
<dd>
<p>Upgraded from version 1.06 to 1.07.</p>
</dd>
<dt id="Sys::Syslog"><code>Sys::Syslog</code></dt>
<dd>
<p>Upgraded from version 0.22 to 0.27.</p>
</dd>
<dt id="Term::ANSIColor"><code>Term::ANSIColor</code></dt>
<dd>
<p>Upgraded from version 1.12 to 2.00.</p>
</dd>
<dt id="Term::ReadLine"><code>Term::ReadLine</code></dt>
<dd>
<p>Upgraded from version 1.03 to 1.04.</p>
</dd>
<dt id="Term::UI"><code>Term::UI</code></dt>
<dd>
<p>Upgraded from version 0.18 to 0.20.</p>
</dd>
<dt id="Test::Harness"><code>Test::Harness</code></dt>
<dd>