This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add some perldelta entries for 5.37.5
[perl5.git] / dist / Module-CoreList / lib / Module / CoreList.pm
1 package Module::CoreList;
2 use strict;
3
4 our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
5
6 use version;
7 our $VERSION = '5.20221020';
8
9 sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
10 sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
11
12 sub _undelta {
13     my ($delta) = @_;
14     my (%expanded, $delta_from, $base, $changed, $removed);
15     for my $v (sort keys %$delta) {
16         ($delta_from, $changed, $removed) = @{$delta->{$v}}{qw( delta_from changed removed )};
17         $base = $delta_from ? $expanded{$delta_from} : {};
18         my %full = ( %$base, %{$changed || {}} );
19         delete @full{ keys %$removed };
20         $expanded{$v} = \%full;
21     }
22     return %expanded;
23 }
24
25 sub _released_order {   # Sort helper, to make '?' sort after everything else
26     (substr($released{$a}, 0, 1) eq "?")
27     ? ((substr($released{$b}, 0, 1) eq "?")
28         ? 0
29         : 1)
30     : ((substr($released{$b}, 0, 1) eq "?")
31         ? -1
32         : $released{$a} cmp $released{$b} )
33 }
34
35 my $dumpinc = 0;
36 sub import {
37     my $self = shift;
38     my $what = shift || '';
39     if ($what eq 'dumpinc') {
40         $dumpinc = 1;
41     }
42 }
43
44 END {
45     print "---INC---\n", join "\n" => keys %INC
46       if $dumpinc;
47 }
48
49
50 sub first_release_raw {
51     shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
52     my $module = shift;
53     my $version = shift;
54
55     my @perls = $version
56         ? grep { defined $version{$_}{ $module } &&
57                         $version{$_}{ $module } ge $version } keys %version
58         : grep { exists $version{$_}{ $module }             } keys %version;
59
60     return @perls;
61 }
62
63 sub first_release_by_date {
64     my @perls = &first_release_raw;
65     return unless @perls;
66     return (sort _released_order @perls)[0];
67 }
68
69 sub first_release {
70     my @perls = &first_release_raw;
71     return unless @perls;
72     return (sort { $a cmp $b } @perls)[0];
73 }
74
75 sub find_modules {
76     shift if _looks_like_invocant $_[0];
77     my $regex = shift;
78     my @perls = @_ ? @_ : keys %version;
79
80     my %mods;
81     foreach (@perls) {
82         while (my ($k, $v) = each %{$version{$_}}) {
83             $mods{$k}++ if $k =~ $regex;
84         }
85     }
86     return sort keys %mods
87 }
88
89 sub find_version {
90     shift if _looks_like_invocant $_[0];
91     my $v = shift;
92     return $version{$v} if defined $v and defined $version{$v};
93     return;
94 }
95
96 sub is_deprecated {
97     shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
98     my $module = shift;
99     my $perl_version = shift || $];
100     return unless $module && exists $deprecated{$perl_version}{$module};
101     return $deprecated{$perl_version}{$module};
102 }
103
104 sub deprecated_in {
105     shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
106     my $module = shift or return;
107     my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
108     return unless @perls;
109     require List::Util;
110     return List::Util::minstr(@perls);
111 }
112
113 sub removed_from {
114   my @perls = &removed_raw;
115   return shift @perls;
116 }
117
118 sub removed_from_by_date {
119   my @perls = sort _released_order &removed_raw;
120   return shift @perls;
121 }
122
123 sub removed_raw {
124   shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
125   my $mod = shift;
126   return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
127   my $last = pop @perls;
128   my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
129   return @removed;
130 }
131
132 sub changes_between {
133   shift if _looks_like_invocant $_[0];
134   my $left_ver = shift;
135   my $right_ver = shift;
136
137   my $left  = $version{ $left_ver } || {};
138   my $right = $version{ $right_ver } || {};
139
140   my %uniq = (%$left, %$right);
141
142   my %changes;
143   for my $lib (keys %uniq) {
144       my $lhs = exists $left->{ $lib }
145               ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)')
146               : '(absent)';
147       my $rhs = exists $right->{ $lib }
148               ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)')
149               : '(absent)';
150
151       next if $lhs eq $rhs;
152
153       my $change = {
154         (exists $left->{$lib}  ? (left  => $left->{$lib})  : ()),
155         (exists $right->{$lib} ? (right => $right->{$lib}) : ()),
156       };
157
158       $changes{$lib} = $change;
159   }
160
161   return %changes;
162 }
163
164 # When things escaped.
165 # NB. If you put version numbers with trailing zeroes here, you
166 # should also add an alias for the numerical ($]) version; see
167 # just before the __END__ of this module.
168 %released = (
169     5.000    => '1994-10-17',
170     5.001    => '1995-03-14',
171     5.002    => '1996-02-29',
172     5.00307  => '1996-10-10',
173     5.004    => '1997-05-15',
174     5.005    => '1998-07-22',
175     5.00503  => '1999-03-28',
176     5.00405  => '1999-04-29',
177     5.006    => '2000-03-22',
178     5.006001 => '2001-04-08',
179     5.007003 => '2002-03-05',
180     5.008    => '2002-07-19',
181     5.008001 => '2003-09-25',
182     5.009    => '2003-10-27',
183     5.008002 => '2003-11-05',
184     5.006002 => '2003-11-15',
185     5.008003 => '2004-01-14',
186     5.00504  => '2004-02-23',
187     5.009001 => '2004-03-16',
188     5.008004 => '2004-04-21',
189     5.008005 => '2004-07-19',
190     5.008006 => '2004-11-27',
191     5.009002 => '2005-04-01',
192     5.008007 => '2005-05-30',
193     5.009003 => '2006-01-28',
194     5.008008 => '2006-01-31',
195     5.009004 => '2006-08-15',
196     5.009005 => '2007-07-07',
197     5.010000 => '2007-12-18',
198     5.008009 => '2008-12-14',
199     5.010001 => '2009-08-22',
200     5.011000 => '2009-10-02',
201     5.011001 => '2009-10-20',
202     5.011002 => '2009-11-20',
203     5.011003 => '2009-12-20',
204     5.011004 => '2010-01-20',
205     5.011005 => '2010-02-20',
206     5.012000 => '2010-04-12',
207     5.013000 => '2010-04-20',
208     5.012001 => '2010-05-16',
209     5.013001 => '2010-05-20',
210     5.013002 => '2010-06-22',
211     5.013003 => '2010-07-20',
212     5.013004 => '2010-08-20',
213     5.012002 => '2010-09-06',
214     5.013005 => '2010-09-19',
215     5.013006 => '2010-10-20',
216     5.013007 => '2010-11-20',
217     5.013008 => '2010-12-20',
218     5.012003 => '2011-01-21',
219     5.013009 => '2011-01-20',
220     5.013010 => '2011-02-20',
221     5.013011 => '2011-03-20',
222     5.014000 => '2011-05-14',
223     5.012004 => '2011-06-20',
224     5.012005 => '2012-11-10',
225     5.014001 => '2011-06-16',
226     5.015000 => '2011-06-20',
227     5.015001 => '2011-07-20',
228     5.015002 => '2011-08-20',
229     5.014002 => '2011-09-26',
230     5.015003 => '2011-09-20',
231     5.015004 => '2011-10-20',
232     5.015005 => '2011-11-20',
233     5.015006 => '2011-12-20',
234     5.015007 => '2012-01-20',
235     5.015008 => '2012-02-20',
236     5.015009 => '2012-03-20',
237     5.016000 => '2012-05-20',
238     5.016001 => '2012-08-08',
239     5.016002 => '2012-11-01',
240     5.017000 => '2012-05-26',
241     5.017001 => '2012-06-20',
242     5.017002 => '2012-07-20',
243     5.017003 => '2012-08-20',
244     5.017004 => '2012-09-20',
245     5.014003 => '2012-10-12',
246     5.017005 => '2012-10-20',
247     5.017006 => '2012-11-20',
248     5.017007 => '2012-12-18',
249     5.017008 => '2013-01-20',
250     5.017009 => '2013-02-20',
251     5.014004 => '2013-03-10',
252     5.016003 => '2013-03-11',
253     5.017010 => '2013-03-21',
254     5.017011 => '2013-04-20',
255     5.018000 => '2013-05-18',
256     5.019000 => '2013-05-20',
257     5.019001 => '2013-06-21',
258     5.019002 => '2013-07-22',
259     5.018001 => '2013-08-12',
260     5.019003 => '2013-08-20',
261     5.019004 => '2013-09-20',
262     5.019005 => '2013-10-20',
263     5.019006 => '2013-11-20',
264     5.019007 => '2013-12-20',
265     5.018002 => '2014-01-06',
266     5.018003 => '2014-10-01',
267     5.018004 => '2014-10-01',
268     5.019008 => '2014-01-20',
269     5.019009 => '2014-02-20',
270     5.01901  => '2014-03-20',
271     5.019011 => '2014-04-20',
272     5.020000 => '2014-05-27',
273     5.021000 => '2014-05-27',
274     5.021001 => '2014-06-20',
275     5.021002 => '2014-07-20',
276     5.021003 => '2014-08-20',
277     5.020001 => '2014-09-14',
278     5.021004 => '2014-09-20',
279     5.021005 => '2014-10-20',
280     5.021006 => '2014-11-20',
281     5.021007 => '2014-12-20',
282     5.021008 => '2015-01-20',
283     5.020002 => '2015-02-14',
284     5.021009 => '2015-02-21',
285     5.021010 => '2015-03-20',
286     5.021011 => '2015-04-20',
287     5.022000 => '2015-06-01',
288     5.023000 => '2015-06-20',
289     5.023001 => '2015-07-20',
290     5.023002 => '2015-08-20',
291     5.020003 => '2015-09-12',
292     5.023003 => '2015-09-20',
293     5.023004 => '2015-10-20',
294     5.023005 => '2015-11-20',
295     5.022001 => '2015-12-13',
296     5.023006 => '2015-12-21',
297     5.023007 => '2016-01-20',
298     5.023008 => '2016-02-20',
299     5.023009 => '2016-03-20',
300     5.022002 => '2016-04-29',
301     5.024000 => '2016-05-09',
302     5.025000 => '2016-05-09',
303     5.025001 => '2016-05-20',
304     5.025002 => '2016-06-20',
305     5.025003 => '2016-07-20',
306     5.025004 => '2016-08-20',
307     5.025005 => '2016-09-20',
308     5.025006 => '2016-10-20',
309     5.025007 => '2016-11-20',
310     5.025008 => '2016-12-20',
311     5.022003 => '2017-01-14',
312     5.024001 => '2017-01-14',
313     5.025009 => '2017-01-20',
314     5.025010 => '2017-02-20',
315     5.025011 => '2017-03-20',
316     5.025012 => '2017-04-20',
317     5.026000 => '2017-05-30',
318     5.027000 => '2017-05-31',
319     5.027001 => '2017-06-20',
320     5.022004 => '2017-07-15',
321     5.024002 => '2017-07-15',
322     5.027002 => '2017-07-20',
323     5.027003 => '2017-08-21',
324     5.027004 => '2017-09-20',
325     5.024003 => '2017-09-22',
326     5.026001 => '2017-09-22',
327     5.027005 => '2017-10-20',
328     5.027006 => '2017-11-20',
329     5.027007 => '2017-12-20',
330     5.027008 => '2018-01-20',
331     5.027009 => '2018-02-20',
332     5.027010 => '2018-03-20',
333     5.024004 => '2018-04-14',
334     5.026002 => '2018-04-14',
335     5.027011 => '2018-04-20',
336     5.028000 => '2018-06-22',
337     5.029000 => '2018-06-26',
338     5.029001 => '2018-07-20',
339     5.029002 => '2018-08-20',
340     5.029003 => '2018-09-20',
341     5.029004 => '2018-10-20',
342     5.029005 => '2018-11-20',
343     5.026003 => '2018-11-29',
344     5.028001 => '2018-11-29',
345     5.029006 => '2018-12-18',
346     5.029007 => '2019-01-20',
347     5.029008 => '2019-02-20',
348     5.029009 => '2019-03-20',
349     5.028002 => '2019-04-19',
350     5.029010 => '2019-04-20',
351     5.030000 => '2019-05-22',
352     5.031000 => '2019-05-24',
353     5.031001 => '2019-06-20',
354     5.031002 => '2019-07-20',
355     5.031003 => '2019-08-20',
356     5.031004 => '2019-09-20',
357     5.031005 => '2019-10-20',
358     5.030001 => '2019-11-10',
359     5.031006 => '2019-11-20',
360     5.031007 => '2019-12-20',
361     5.031008 => '2020-01-20',
362     5.031009 => '2020-02-20',
363     5.030002 => '2020-03-14',
364     5.031010 => '2020-03-20',
365     5.031011 => '2020-04-28',
366     5.028003 => '2020-06-01',
367     5.030003 => '2020-06-01',
368     5.032000 => '2020-06-20',
369     5.033000 => '2020-07-17',
370     5.033001 => '2020-08-20',
371     5.033002 => '2020-09-20',
372     5.033003 => '2020-10-20',
373     5.033004 => '2020-11-20',
374     5.033005 => '2020-12-20',
375     5.033006 => '2021-01-20',
376     5.032001 => '2021-01-23',
377     5.033007 => '2021-02-20',
378     5.033008 => '2021-03-20',
379     5.033009 => '2021-04-20',
380     5.034000 => '2021-05-20',
381     5.035000 => '2021-05-21',
382     5.035001 => '2021-06-20',
383     5.035002 => '2021-07-23',
384     5.035003 => '2021-08-20',
385     5.035004 => '2021-09-20',
386     5.035005 => '2021-10-21',
387     5.035006 => '2021-11-20',
388     5.035007 => '2021-12-20',
389     5.035008 => '2022-01-20',
390     5.035009 => '2022-02-20',
391     5.034001 => '2022-03-13',
392     5.035010 => '2022-03-20',
393     5.035011 => '2022-04-20',
394     5.036000 => '2022-05-27',
395     5.037000 => '2022-05-27',
396     5.037001 => '2022-06-20',
397     5.037002 => '2022-07-20',
398     5.037003 => '2022-08-20',
399     5.037004 => '2022-09-20',
400     5.037005 => '2022-10-20',
401   );
402
403 for my $version ( sort { $a <=> $b } keys %released ) {
404     my $family = int ($version * 1000) / 1000;
405     push @{ $families{ $family }} , $version;
406 }
407
408 %delta = (
409     5 => {
410         changed => {
411             'AnyDBM_File'           => undef,
412             'AutoLoader'            => undef,
413             'AutoSplit'             => undef,
414             'Benchmark'             => undef,
415             'Carp'                  => undef,
416             'Cwd'                   => undef,
417             'DB_File'               => undef,
418             'DynaLoader'            => undef,
419             'English'               => undef,
420             'Env'                   => undef,
421             'Exporter'              => undef,
422             'ExtUtils::MakeMaker'   => undef,
423             'Fcntl'                 => undef,
424             'File::Basename'        => undef,
425             'File::CheckTree'       => undef,
426             'File::Find'            => undef,
427             'FileHandle'            => undef,
428             'GDBM_File'             => undef,
429             'Getopt::Long'          => undef,
430             'Getopt::Std'           => undef,
431             'I18N::Collate'         => undef,
432             'IPC::Open2'            => undef,
433             'IPC::Open3'            => undef,
434             'Math::BigFloat'        => undef,
435             'Math::BigInt'          => undef,
436             'Math::Complex'         => undef,
437             'NDBM_File'             => undef,
438             'Net::Ping'             => undef,
439             'ODBM_File'             => undef,
440             'POSIX'                 => undef,
441             'SDBM_File'             => undef,
442             'Search::Dict'          => undef,
443             'Shell'                 => undef,
444             'Socket'                => undef,
445             'Sys::Hostname'         => undef,
446             'Sys::Syslog'           => undef,
447             'Term::Cap'             => undef,
448             'Term::Complete'        => undef,
449             'Test::Harness'         => undef,
450             'Text::Abbrev'          => undef,
451             'Text::ParseWords'      => undef,
452             'Text::Soundex'         => undef,
453             'Text::Tabs'            => undef,
454             'TieHash'               => undef,
455             'Time::Local'           => undef,
456             'integer'               => undef,
457             'less'                  => undef,
458             'sigtrap'               => undef,
459             'strict'                => undef,
460             'subs'                  => undef,
461         },
462         removed => {
463         }
464     },
465     5.001 => {
466         delta_from => 5,
467         changed => {
468             'ExtUtils::Liblist'     => undef,
469             'ExtUtils::Manifest'    => undef,
470             'ExtUtils::Mkbootstrap' => undef,
471             'File::Path'            => undef,
472             'SubstrHash'            => undef,
473             'lib'                   => undef,
474         },
475         removed => {
476         }
477     },
478     5.002 => {
479         delta_from => 5.001,
480         changed => {
481             'DB_File'               => '1.01',
482             'Devel::SelfStubber'    => '1.01',
483             'DirHandle'             => undef,
484             'DynaLoader'            => '1.00',
485             'ExtUtils::Install'     => undef,
486             'ExtUtils::MM_OS2'      => undef,
487             'ExtUtils::MM_Unix'     => undef,
488             'ExtUtils::MM_VMS'      => undef,
489             'ExtUtils::MakeMaker'   => '5.21',
490             'ExtUtils::Manifest'    => '1.22',
491             'ExtUtils::Mksymlists'  => '1.00',
492             'Fcntl'                 => '1.00',
493             'File::Copy'            => '1.5',
494             'File::Path'            => '1.01',
495             'FileCache'             => undef,
496             'FileHandle'            => '1.00',
497             'GDBM_File'             => '1.00',
498             'Getopt::Long'          => '2.01',
499             'NDBM_File'             => '1.00',
500             'Net::Ping'             => '1',
501             'ODBM_File'             => '1.00',
502             'POSIX'                 => '1.00',
503             'Pod::Functions'        => undef,
504             'Pod::Text'             => undef,
505             'SDBM_File'             => '1.00',
506             'Safe'                  => '1.00',
507             'SelectSaver'           => undef,
508             'SelfLoader'            => '1.06',
509             'Socket'                => '1.5',
510             'Symbol'                => undef,
511             'Term::ReadLine'        => undef,
512             'Test::Harness'         => '1.07',
513             'Text::Wrap'            => undef,
514             'Tie::Hash'             => undef,
515             'Tie::Scalar'           => undef,
516             'Tie::SubstrHash'       => undef,
517             'diagnostics'           => undef,
518             'overload'              => undef,
519             'vars'                  => undef,
520         },
521         removed => {
522             'SubstrHash'            => 1,
523             'TieHash'               => 1,
524         }
525     },
526     5.00307 => {
527         delta_from => 5.002,
528         changed => {
529             'Config'                => undef,
530             'DB_File'               => '1.03',
531             'ExtUtils::Embed'       => '1.18',
532             'ExtUtils::Install'     => '1.15',
533             'ExtUtils::Liblist'     => '1.20',
534             'ExtUtils::MM_Unix'     => '1.107',
535             'ExtUtils::MakeMaker'   => '5.38',
536             'ExtUtils::Manifest'    => '1.27',
537             'ExtUtils::Mkbootstrap' => '1.13',
538             'ExtUtils::Mksymlists'  => '1.12',
539             'ExtUtils::testlib'     => '1.11',
540             'Fatal'                 => undef,
541             'File::Basename'        => '2.4',
542             'FindBin'               => '1.04',
543             'Getopt::Long'          => '2.04',
544             'IO'                    => undef,
545             'IO::File'              => '1.05',
546             'IO::Handle'            => '1.12',
547             'IO::Pipe'              => '1.07',
548             'IO::Seekable'          => '1.05',
549             'IO::Select'            => '1.09',
550             'IO::Socket'            => '1.13',
551             'Net::Ping'             => '1.01',
552             'OS2::ExtAttr'          => '0.01',
553             'OS2::PrfDB'            => '0.02',
554             'OS2::Process'          => undef,
555             'OS2::REXX'             => undef,
556             'Opcode'                => '1.01',
557             'Safe'                  => '2.06',
558             'Test::Harness'         => '1.13',
559             'Text::Tabs'            => '96.051501',
560             'Text::Wrap'            => '96.041801',
561             'UNIVERSAL'             => undef,
562             'VMS::Filespec'         => undef,
563             'VMS::Stdio'            => '2.0',
564             'ops'                   => undef,
565             'sigtrap'               => '1.01',
566         },
567         removed => {
568         }
569     },
570     5.004 => {
571         delta_from => 5.00307,
572         changed => {
573             'Bundle::CPAN'          => '0.02',
574             'CGI'                   => '2.36',
575             'CGI::Apache'           => '1.01',
576             'CGI::Carp'             => '1.06',
577             'CGI::Fast'             => '1.00a',
578             'CGI::Push'             => '1.00',
579             'CGI::Switch'           => '0.05',
580             'CPAN'                  => '1.2401',
581             'CPAN::FirstTime'       => '1.18',
582             'CPAN::Nox'             => undef,
583             'Class::Struct'         => undef,
584             'Cwd'                   => '2.00',
585             'DB_File'               => '1.14',
586             'DynaLoader'            => '1.02',
587             'ExtUtils::Command'     => '1.00',
588             'ExtUtils::Embed'       => '1.2501',
589             'ExtUtils::Install'     => '1.16',
590             'ExtUtils::Liblist'     => '1.2201',
591             'ExtUtils::MM_Unix'     => '1.114',
592             'ExtUtils::MM_Win32'    => undef,
593             'ExtUtils::MakeMaker'   => '5.4002',
594             'ExtUtils::Manifest'    => '1.33',
595             'ExtUtils::Mksymlists'  => '1.13',
596             'ExtUtils::XSSymSet'    => '1.0',
597             'Fcntl'                 => '1.03',
598             'File::Basename'        => '2.5',
599             'File::Compare'         => '1.1001',
600             'File::Copy'            => '2.02',
601             'File::Path'            => '1.04',
602             'File::stat'            => undef,
603             'FileHandle'            => '2.00',
604             'Getopt::Long'          => '2.10',
605             'IO::File'              => '1.0602',
606             'IO::Handle'            => '1.1504',
607             'IO::Pipe'              => '1.0901',
608             'IO::Seekable'          => '1.06',
609             'IO::Select'            => '1.10',
610             'IO::Socket'            => '1.1602',
611             'IPC::Open2'            => '1.01',
612             'IPC::Open3'            => '1.0101',
613             'Math::Complex'         => '1.01',
614             'Math::Trig'            => '1',
615             'Net::Ping'             => '2.02',
616             'Net::hostent'          => undef,
617             'Net::netent'           => undef,
618             'Net::protoent'         => undef,
619             'Net::servent'          => undef,
620             'Opcode'                => '1.04',
621             'POSIX'                 => '1.02',
622             'Pod::Html'             => undef,
623             'Pod::Text'             => '1.0203',
624             'SelfLoader'            => '1.07',
625             'Socket'                => '1.6',
626             'Symbol'                => '1.02',
627             'Test::Harness'         => '1.1502',
628             'Text::Tabs'            => '96.121201',
629             'Text::Wrap'            => '97.011701',
630             'Tie::RefHash'          => undef,
631             'Time::gmtime'          => '1.01',
632             'Time::localtime'       => '1.01',
633             'Time::tm'              => undef,
634             'User::grent'           => undef,
635             'User::pwent'           => undef,
636             'VMS::DCLsym'           => '1.01',
637             'VMS::Stdio'            => '2.02',
638             'autouse'               => '1.01',
639             'blib'                  => undef,
640             'constant'              => '1.00',
641             'locale'                => undef,
642             'sigtrap'               => '1.02',
643             'vmsish'                => undef,
644         },
645         removed => {
646             'Fatal'                 => 1,
647         }
648     },
649     5.00405 => {
650         delta_from => 5.004,
651         changed => {
652             'AutoLoader'            => '5.56',
653             'AutoSplit'             => '1.0303',
654             'Bundle::CPAN'          => '0.03',
655             'CGI'                   => '2.42',
656             'CGI::Apache'           => '1.1',
657             'CGI::Carp'             => '1.10',
658             'CGI::Cookie'           => '1.06',
659             'CGI::Push'             => '1.01',
660             'CGI::Switch'           => '0.06',
661             'CPAN'                  => '1.40',
662             'CPAN::FirstTime'       => '1.30',
663             'Cwd'                   => '2.01',
664             'DB_File'               => '1.15',
665             'DynaLoader'            => '1.03',
666             'ExtUtils::Command'     => '1.01',
667             'ExtUtils::Embed'       => '1.2505',
668             'ExtUtils::Install'     => '1.28',
669             'ExtUtils::Liblist'     => '1.25',
670             'ExtUtils::MM_Unix'     => '1.118',
671             'ExtUtils::MakeMaker'   => '5.42',
672             'ExtUtils::Mkbootstrap' => '1.14',
673             'ExtUtils::Mksymlists'  => '1.16',
674             'File::Basename'        => '2.6',
675             'File::DosGlob'         => undef,
676             'File::Path'            => '1.0402',
677             'File::Spec'            => '0.6',
678             'File::Spec::Mac'       => '1.0',
679             'File::Spec::OS2'       => undef,
680             'File::Spec::Unix'      => undef,
681             'File::Spec::VMS'       => undef,
682             'File::Spec::Win32'     => undef,
683             'FindBin'               => '1.41',
684             'Getopt::Long'          => '2.19',
685             'IO::File'              => '1.06021',
686             'IO::Socket'            => '1.1603',
687             'IPC::Open3'            => '1.0103',
688             'Math::Complex'         => '1.25',
689             'NDBM_File'             => '1.01',
690             'Pod::Html'             => '1.0101',
691             'Pod::Text'             => '1.0204',
692             'SelfLoader'            => '1.08',
693             'Socket'                => '1.7',
694             'Test'                  => '1.04',
695             'Test::Harness'         => '1.1602',
696             'Text::ParseWords'      => '3.1001',
697             'Text::Wrap'            => '98.112902',
698             'Tie::Handle'           => undef,
699             'attrs'                 => '0.1',
700             'base'                  => undef,
701             'blib'                  => '1.00',
702             're'                    => undef,
703             'strict'                => '1.01',
704         },
705         removed => {
706         }
707     },
708     5.005 => {
709         delta_from => 5.00405,
710         changed => {
711             'AutoLoader'            => undef,
712             'AutoSplit'             => '1.0302',
713             'B'                     => undef,
714             'B::Asmdata'            => undef,
715             'B::Assembler'          => undef,
716             'B::Bblock'             => undef,
717             'B::Bytecode'           => undef,
718             'B::C'                  => undef,
719             'B::CC'                 => undef,
720             'B::Debug'              => undef,
721             'B::Deparse'            => '0.56',
722             'B::Disassembler'       => undef,
723             'B::Lint'               => undef,
724             'B::Showlex'            => undef,
725             'B::Stackobj'           => undef,
726             'B::Terse'              => undef,
727             'B::Xref'               => undef,
728             'CGI::Carp'             => '1.101',
729             'CPAN'                  => '1.3901',
730             'CPAN::FirstTime'       => '1.29',
731             'DB_File'               => '1.60',
732             'Data::Dumper'          => '2.09',
733             'Errno'                 => '1.09',
734             'ExtUtils::Installed'   => '0.02',
735             'ExtUtils::MM_Unix'     => '1.12601',
736             'ExtUtils::MakeMaker'   => '5.4301',
737             'ExtUtils::Mkbootstrap' => '1.13',
738             'ExtUtils::Mksymlists'  => '1.17',
739             'ExtUtils::Packlist'    => '0.03',
740             'Fatal'                 => '1.02',
741             'File::Path'            => '1.0401',
742             'Getopt::Long'          => '2.17',
743             'IO::Handle'            => '1.1505',
744             'IPC::Msg'              => '1.00',
745             'IPC::Open3'            => '1.0102',
746             'IPC::Semaphore'        => '1.00',
747             'IPC::SysV'             => '1.03',
748             'O'                     => undef,
749             'OS2::Process'          => '0.2',
750             'Pod::Html'             => '1.01',
751             'Pod::Text'             => '1.0203',
752             'Text::ParseWords'      => '3.1',
753             'Text::Wrap'            => '97.02',
754             'Thread'                => '1.0',
755             'Thread::Queue'         => undef,
756             'Thread::Semaphore'     => undef,
757             'Thread::Signal'        => undef,
758             'Thread::Specific'      => undef,
759             'Tie::Array'            => '1.00',
760             'VMS::Stdio'            => '2.1',
761             'attrs'                 => '1.0',
762             'fields'                => '0.02',
763             're'                    => '0.02',
764         },
765         removed => {
766             'Bundle::CPAN'          => 1,
767         }
768     },
769     5.00503 => {
770         delta_from => 5.005,
771         changed => {
772             'AutoSplit'             => '1.0303',
773             'CGI'                   => '2.46',
774             'CGI::Carp'             => '1.13',
775             'CGI::Fast'             => '1.01',
776             'CPAN'                  => '1.48',
777             'CPAN::FirstTime'       => '1.36',
778             'CPAN::Nox'             => '1.00',
779             'DB_File'               => '1.65',
780             'Data::Dumper'          => '2.101',
781             'Dumpvalue'             => undef,
782             'Errno'                 => '1.111',
783             'ExtUtils::Install'     => '1.28',
784             'ExtUtils::Liblist'     => '1.25',
785             'ExtUtils::MM_Unix'     => '1.12602',
786             'ExtUtils::MakeMaker'   => '5.4302',
787             'ExtUtils::Manifest'    => '1.33',
788             'ExtUtils::Mkbootstrap' => '1.14',
789             'ExtUtils::Mksymlists'  => '1.17',
790             'ExtUtils::testlib'     => '1.11',
791             'FindBin'               => '1.42',
792             'Getopt::Long'          => '2.19',
793             'Getopt::Std'           => '1.01',
794             'IO::Pipe'              => '1.0902',
795             'IPC::Open3'            => '1.0103',
796             'Math::Complex'         => '1.26',
797             'Test'                  => '1.122',
798             'Text::Wrap'            => '98.112902',
799         },
800         removed => {
801         }
802     },
803     5.00504 => {
804         delta_from => 5.00503,
805         changed => {
806             'CPAN::FirstTime'       => '1.36',
807             'DB_File'               => '1.807',
808             'ExtUtils::Install'     => '1.28',
809             'ExtUtils::Liblist'     => '1.25',
810             'ExtUtils::MM_Unix'     => '1.12602',
811             'ExtUtils::Manifest'    => '1.33',
812             'ExtUtils::Miniperl'    => undef,
813             'ExtUtils::Mkbootstrap' => '1.14',
814             'ExtUtils::Mksymlists'  => '1.17',
815             'ExtUtils::testlib'     => '1.11',
816             'File::Compare'         => '1.1002',
817             'File::Spec'            => '0.8',
818             'File::Spec::Functions' => undef,
819             'File::Spec::Mac'       => undef,
820             'Getopt::Long'          => '2.20',
821             'Pod::Html'             => '1.02',
822         },
823         removed => {
824         }
825     },
826     5.006 => {
827         delta_from => 5.00504,
828         changed => {
829             'AutoLoader'            => '5.57',
830             'AutoSplit'             => '1.0305',
831             'B::Deparse'            => '0.59',
832             'B::Stash'              => undef,
833             'Benchmark'             => '1',
834             'ByteLoader'            => '0.03',
835             'CGI'                   => '2.56',
836             'CGI::Apache'           => undef,
837             'CGI::Carp'             => '1.14',
838             'CGI::Cookie'           => '1.12',
839             'CGI::Fast'             => '1.02',
840             'CGI::Pretty'           => '1.03',
841             'CGI::Switch'           => undef,
842             'CPAN'                  => '1.52',
843             'CPAN::FirstTime'       => '1.38',
844             'Carp::Heavy'           => undef,
845             'Class::Struct'         => '0.58',
846             'Cwd'                   => '2.02',
847             'DB'                    => '1.0',
848             'DB_File'               => '1.72',
849             'Devel::DProf'          => '20000000.00_00',
850             'Devel::Peek'           => '1.00_01',
851             'DynaLoader'            => '1.04',
852             'Exporter'              => '5.562',
853             'Exporter::Heavy'       => undef,
854             'ExtUtils::MM_Cygwin'   => undef,
855             'ExtUtils::MM_Unix'     => '1.12603',
856             'ExtUtils::MakeMaker'   => '5.45',
857             'File::Copy'            => '2.03',
858             'File::Glob'            => '0.991',
859             'File::Path'            => '1.0403',
860             'GDBM_File'             => '1.03',
861             'Getopt::Long'          => '2.23',
862             'Getopt::Std'           => '1.02',
863             'IO'                    => '1.20',
864             'IO::Dir'               => '1.03',
865             'IO::File'              => '1.08',
866             'IO::Handle'            => '1.21',
867             'IO::Pipe'              => '1.121',
868             'IO::Poll'              => '0.01',
869             'IO::Seekable'          => '1.08',
870             'IO::Select'            => '1.14',
871             'IO::Socket'            => '1.26',
872             'IO::Socket::INET'      => '1.25',
873             'IO::Socket::UNIX'      => '1.20',
874             'JNI'                   => '0.01',
875             'JPL::AutoLoader'       => undef,
876             'JPL::Class'            => undef,
877             'JPL::Compile'          => undef,
878             'NDBM_File'             => '1.03',
879             'ODBM_File'             => '1.02',
880             'OS2::DLL'              => undef,
881             'POSIX'                 => '1.03',
882             'Pod::Checker'          => '1.098',
883             'Pod::Find'             => '0.12',
884             'Pod::Html'             => '1.03',
885             'Pod::InputObjects'     => '1.12',
886             'Pod::Man'              => '1.02',
887             'Pod::ParseUtils'       => '0.2',
888             'Pod::Parser'           => '1.12',
889             'Pod::Plainer'          => '0.01',
890             'Pod::Select'           => '1.12',
891             'Pod::Text'             => '2.03',
892             'Pod::Text::Color'      => '0.05',
893             'Pod::Text::Termcap'    => '0.04',
894             'Pod::Usage'            => '1.12',
895             'SDBM_File'             => '1.02',
896             'SelfLoader'            => '1.0901',
897             'Shell'                 => '0.2',
898             'Socket'                => '1.72',
899             'Sys::Hostname'         => '1.1',
900             'Sys::Syslog'           => '0.01',
901             'Term::ANSIColor'       => '1.01',
902             'Test'                  => '1.13',
903             'Test::Harness'         => '1.1604',
904             'Text::ParseWords'      => '3.2',
905             'Text::Soundex'         => '1.0',
906             'Text::Tabs'            => '98.112801',
907             'Tie::Array'            => '1.01',
908             'Tie::Handle'           => '1.0',
909             'VMS::Stdio'            => '2.2',
910             'XSLoader'              => '0.01',
911             'attributes'            => '0.03',
912             'autouse'               => '1.02',
913             'base'                  => '1.01',
914             'bytes'                 => undef,
915             'charnames'             => undef,
916             'constant'              => '1.02',
917             'diagnostics'           => '1.0',
918             'fields'                => '1.01',
919             'filetest'              => undef,
920             'lib'                   => '0.5564',
921             'open'                  => undef,
922             'utf8'                  => undef,
923             'warnings'              => undef,
924             'warnings::register'    => undef,
925         },
926         removed => {
927         }
928     },
929     5.006001 => {
930         delta_from => 5.006,
931         changed => {
932             'AutoLoader'            => '5.58',
933             'B::Assembler'          => '0.02',
934             'B::Concise'            => '0.51',
935             'B::Deparse'            => '0.6',
936             'ByteLoader'            => '0.04',
937             'CGI'                   => '2.752',
938             'CGI::Carp'             => '1.20',
939             'CGI::Cookie'           => '1.18',
940             'CGI::Pretty'           => '1.05',
941             'CGI::Push'             => '1.04',
942             'CGI::Util'             => '1.1',
943             'CPAN'                  => '1.59_54',
944             'CPAN::FirstTime'       => '1.53',
945             'Class::Struct'         => '0.59',
946             'Cwd'                   => '2.04',
947             'DB_File'               => '1.75',
948             'Data::Dumper'          => '2.102',
949             'ExtUtils::Install'     => '1.28',
950             'ExtUtils::Liblist'     => '1.26',
951             'ExtUtils::MM_Unix'     => '1.12603',
952             'ExtUtils::Manifest'    => '1.33',
953             'ExtUtils::Mkbootstrap' => '1.14',
954             'ExtUtils::Mksymlists'  => '1.17',
955             'ExtUtils::testlib'     => '1.11',
956             'File::Path'            => '1.0404',
957             'File::Spec'            => '0.82',
958             'File::Spec::Epoc'      => undef,
959             'File::Spec::Functions' => '1.1',
960             'File::Spec::Mac'       => '1.2',
961             'File::Spec::OS2'       => '1.1',
962             'File::Spec::Unix'      => '1.2',
963             'File::Spec::VMS'       => '1.1',
964             'File::Spec::Win32'     => '1.2',
965             'File::Temp'            => '0.12',
966             'GDBM_File'             => '1.05',
967             'Getopt::Long'          => '2.25',
968             'IO::Poll'              => '0.05',
969             'JNI'                   => '0.1',
970             'Math::BigFloat'        => '0.02',
971             'Math::BigInt'          => '0.01',
972             'Math::Complex'         => '1.31',
973             'NDBM_File'             => '1.04',
974             'ODBM_File'             => '1.03',
975             'OS2::REXX'             => '1.00',
976             'Pod::Checker'          => '1.2',
977             'Pod::Find'             => '0.21',
978             'Pod::InputObjects'     => '1.13',
979             'Pod::LaTeX'            => '0.53',
980             'Pod::Man'              => '1.15',
981             'Pod::ParseUtils'       => '0.22',
982             'Pod::Parser'           => '1.13',
983             'Pod::Select'           => '1.13',
984             'Pod::Text'             => '2.08',
985             'Pod::Text::Color'      => '0.06',
986             'Pod::Text::Overstrike' => '1.01',
987             'Pod::Text::Termcap'    => '1',
988             'Pod::Usage'            => '1.14',
989             'SDBM_File'             => '1.03',
990             'SelfLoader'            => '1.0902',
991             'Shell'                 => '0.3',
992             'Term::ANSIColor'       => '1.03',
993             'Test'                  => '1.15',
994             'Text::Wrap'            => '2001.0131',
995             'Tie::Handle'           => '4.0',
996             'Tie::RefHash'          => '1.3',
997         },
998         removed => {
999         }
1000     },
1001     5.006002 => {
1002         delta_from => 5.006001,
1003         changed => {
1004             'CPAN::FirstTime'       => '1.53',
1005             'DB_File'               => '1.806',
1006             'Data::Dumper'          => '2.121',
1007             'ExtUtils::Command'     => '1.05',
1008             'ExtUtils::Command::MM' => '0.03',
1009             'ExtUtils::Install'     => '1.32',
1010             'ExtUtils::Installed'   => '0.08',
1011             'ExtUtils::Liblist'     => '1.01',
1012             'ExtUtils::Liblist::Kid'=> '1.3',
1013             'ExtUtils::MM'          => '0.04',
1014             'ExtUtils::MM_Any'      => '0.07',
1015             'ExtUtils::MM_BeOS'     => '1.04',
1016             'ExtUtils::MM_Cygwin'   => '1.06',
1017             'ExtUtils::MM_DOS'      => '0.02',
1018             'ExtUtils::MM_MacOS'    => '1.07',
1019             'ExtUtils::MM_NW5'      => '2.06',
1020             'ExtUtils::MM_OS2'      => '1.04',
1021             'ExtUtils::MM_UWIN'     => '0.02',
1022             'ExtUtils::MM_Unix'     => '1.42',
1023             'ExtUtils::MM_VMS'      => '5.70',
1024             'ExtUtils::MM_Win32'    => '1.09',
1025             'ExtUtils::MM_Win95'    => '0.03',
1026             'ExtUtils::MY'          => '0.01',
1027             'ExtUtils::MakeMaker'   => '6.17',
1028             'ExtUtils::MakeMaker::bytes'=> '0.01',
1029             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1030             'ExtUtils::Manifest'    => '1.42',
1031             'ExtUtils::Mkbootstrap' => '1.15',
1032             'ExtUtils::Mksymlists'  => '1.19',
1033             'ExtUtils::Packlist'    => '0.04',
1034             'ExtUtils::testlib'     => '1.15',
1035             'File::Spec'            => '0.86',
1036             'File::Spec::Cygwin'    => '1.1',
1037             'File::Spec::Epoc'      => '1.1',
1038             'File::Spec::Functions' => '1.3',
1039             'File::Spec::Mac'       => '1.4',
1040             'File::Spec::OS2'       => '1.2',
1041             'File::Spec::Unix'      => '1.5',
1042             'File::Spec::VMS'       => '1.4',
1043             'File::Spec::Win32'     => '1.4',
1044             'File::Temp'            => '0.14',
1045             'Safe'                  => '2.10',
1046             'Test'                  => '1.24',
1047             'Test::Builder'         => '0.17',
1048             'Test::Harness'         => '2.30',
1049             'Test::Harness::Assert' => '0.01',
1050             'Test::Harness::Iterator'=> '0.01',
1051             'Test::Harness::Straps' => '0.15',
1052             'Test::More'            => '0.47',
1053             'Test::Simple'          => '0.47',
1054             'Unicode'               => '3.0.1',
1055             'if'                    => '0.03',
1056             'ops'                   => '1.00',
1057         },
1058         removed => {
1059         }
1060     },
1061     5.007003 => {
1062         delta_from => 5.006001,
1063         changed => {
1064             'AnyDBM_File'           => '1.00',
1065             'Attribute::Handlers'   => '0.76',
1066             'AutoLoader'            => '5.59',
1067             'AutoSplit'             => '1.0307',
1068             'B'                     => '1.00',
1069             'B::Asmdata'            => '1.00',
1070             'B::Assembler'          => '0.04',
1071             'B::Bblock'             => '1.00',
1072             'B::Bytecode'           => '1.00',
1073             'B::C'                  => '1.01',
1074             'B::CC'                 => '1.00',
1075             'B::Concise'            => '0.52',
1076             'B::Debug'              => '1.00',
1077             'B::Deparse'            => '0.63',
1078             'B::Disassembler'       => '1.01',
1079             'B::Lint'               => '1.00',
1080             'B::Showlex'            => '1.00',
1081             'B::Stackobj'           => '1.00',
1082             'B::Stash'              => '1.00',
1083             'B::Terse'              => '1.00',
1084             'B::Xref'               => '1.00',
1085             'Benchmark'             => '1.04',
1086             'CGI'                   => '2.80',
1087             'CGI::Apache'           => '1.00',
1088             'CGI::Carp'             => '1.22',
1089             'CGI::Cookie'           => '1.20',
1090             'CGI::Fast'             => '1.04',
1091             'CGI::Pretty'           => '1.05_00',
1092             'CGI::Switch'           => '1.00',
1093             'CGI::Util'             => '1.3',
1094             'CPAN'                  => '1.59_56',
1095             'CPAN::FirstTime'       => '1.54',
1096             'CPAN::Nox'             => '1.00_01',
1097             'Carp'                  => '1.01',
1098             'Carp::Heavy'           => '1.01',
1099             'Class::ISA'            => '0.32',
1100             'Class::Struct'         => '0.61',
1101             'Cwd'                   => '2.06',
1102             'DB_File'               => '1.804',
1103             'Data::Dumper'          => '2.12',
1104             'Devel::DProf'          => '20000000.00_01',
1105             'Devel::PPPort'         => '2.0002',
1106             'Devel::Peek'           => '1.00_03',
1107             'Devel::SelfStubber'    => '1.03',
1108             'Digest'                => '1.00',
1109             'Digest::MD5'           => '2.16',
1110             'DirHandle'             => '1.00',
1111             'Dumpvalue'             => '1.10',
1112             'Encode'                => '0.40',
1113             'Encode::CN'            => '0.02',
1114             'Encode::CN::HZ'        => undef,
1115             'Encode::Encoding'      => '0.02',
1116             'Encode::Internal'      => '0.30',
1117             'Encode::JP'            => '0.02',
1118             'Encode::JP::Constants' => '1.02',
1119             'Encode::JP::H2Z'       => '0.77',
1120             'Encode::JP::ISO_2022_JP'=> undef,
1121             'Encode::JP::JIS'       => undef,
1122             'Encode::JP::Tr'        => '0.77',
1123             'Encode::KR'            => '0.02',
1124             'Encode::TW'            => '0.02',
1125             'Encode::Tcl'           => '1.01',
1126             'Encode::Tcl::Escape'   => '1.01',
1127             'Encode::Tcl::Extended' => '1.01',
1128             'Encode::Tcl::HanZi'    => '1.01',
1129             'Encode::Tcl::Table'    => '1.01',
1130             'Encode::Unicode'       => '0.30',
1131             'Encode::XS'            => '0.40',
1132             'Encode::iso10646_1'    => '0.30',
1133             'Encode::usc2_le'       => '0.30',
1134             'Encode::utf8'          => '0.30',
1135             'English'               => '1.00',
1136             'Env'                   => '1.00',
1137             'Exporter'              => '5.566',
1138             'Exporter::Heavy'       => '5.562',
1139             'ExtUtils::Command'     => '1.02',
1140             'ExtUtils::Constant'    => '0.11',
1141             'ExtUtils::Embed'       => '1.250601',
1142             'ExtUtils::Install'     => '1.29',
1143             'ExtUtils::Installed'   => '0.04',
1144             'ExtUtils::Liblist'     => '1.2701',
1145             'ExtUtils::MM_BeOS'     => '1.00',
1146             'ExtUtils::MM_Cygwin'   => '1.00',
1147             'ExtUtils::MM_OS2'      => '1.00',
1148             'ExtUtils::MM_Unix'     => '1.12607',
1149             'ExtUtils::MM_VMS'      => '5.56',
1150             'ExtUtils::MM_Win32'    => '1.00_02',
1151             'ExtUtils::MakeMaker'   => '5.48_03',
1152             'ExtUtils::Manifest'    => '1.35',
1153             'ExtUtils::Mkbootstrap' => '1.1401',
1154             'ExtUtils::Mksymlists'  => '1.18',
1155             'ExtUtils::Packlist'    => '0.04',
1156             'ExtUtils::testlib'     => '1.1201',
1157             'Fatal'                 => '1.03',
1158             'Fcntl'                 => '1.04',
1159             'File::Basename'        => '2.71',
1160             'File::CheckTree'       => '4.1',
1161             'File::Compare'         => '1.1003',
1162             'File::Copy'            => '2.05',
1163             'File::DosGlob'         => '1.00',
1164             'File::Find'            => '1.04',
1165             'File::Glob'            => '1.01',
1166             'File::Path'            => '1.05',
1167             'File::Spec'            => '0.83',
1168             'File::Spec::Cygwin'    => '1.0',
1169             'File::Spec::Epoc'      => '1.00',
1170             'File::Spec::Functions' => '1.2',
1171             'File::Spec::Mac'       => '1.3',
1172             'File::Spec::Unix'      => '1.4',
1173             'File::Spec::VMS'       => '1.2',
1174             'File::Spec::Win32'     => '1.3',
1175             'File::Temp'            => '0.13',
1176             'File::stat'            => '1.00',
1177             'FileCache'             => '1.00',
1178             'FileHandle'            => '2.01',
1179             'Filter::Simple'        => '0.77',
1180             'Filter::Util::Call'    => '1.06',
1181             'FindBin'               => '1.43',
1182             'GDBM_File'             => '1.06',
1183             'Getopt::Long'          => '2.28',
1184             'Getopt::Std'           => '1.03',
1185             'I18N::Collate'         => '1.00',
1186             'I18N::LangTags'        => '0.27',
1187             'I18N::LangTags::List'  => '0.25',
1188             'I18N::Langinfo'        => '0.01',
1189             'IO::Dir'               => '1.03_00',
1190             'IO::File'              => '1.09',
1191             'IO::Handle'            => '1.21_00',
1192             'IO::Pipe'              => '1.122',
1193             'IO::Poll'              => '0.06',
1194             'IO::Seekable'          => '1.08_00',
1195             'IO::Select'            => '1.15',
1196             'IO::Socket'            => '1.27',
1197             'IO::Socket::INET'      => '1.26',
1198             'IO::Socket::UNIX'      => '1.20_00',
1199             'IPC::Msg'              => '1.00_00',
1200             'IPC::Open3'            => '1.0104',
1201             'IPC::Semaphore'        => '1.00_00',
1202             'IPC::SysV'             => '1.03_00',
1203             'List::Util'            => '1.06_00',
1204             'Locale::Constants'     => '2.01',
1205             'Locale::Country'       => '2.01',
1206             'Locale::Currency'      => '2.01',
1207             'Locale::Language'      => '2.01',
1208             'Locale::Maketext'      => '1.03',
1209             'Locale::Script'        => '2.01',
1210             'MIME::Base64'          => '2.12',
1211             'MIME::QuotedPrint'     => '2.03',
1212             'Math::BigFloat'        => '1.30',
1213             'Math::BigInt'          => '1.54',
1214             'Math::BigInt::Calc'    => '0.25',
1215             'Math::Complex'         => '1.34',
1216             'Math::Trig'            => '1.01',
1217             'Memoize'               => '0.66',
1218             'Memoize::AnyDBM_File'  => '0.65',
1219             'Memoize::Expire'       => '0.66',
1220             'Memoize::ExpireFile'   => '0.65',
1221             'Memoize::ExpireTest'   => '0.65',
1222             'Memoize::NDBM_File'    => '0.65',
1223             'Memoize::SDBM_File'    => '0.65',
1224             'Memoize::Storable'     => '0.65',
1225             'NEXT'                  => '0.50',
1226             'Net::Cmd'              => '2.21',
1227             'Net::Config'           => '1.10',
1228             'Net::Domain'           => '2.17',
1229             'Net::FTP'              => '2.64',
1230             'Net::FTP::A'           => '1.15',
1231             'Net::FTP::E'           => '0.01',
1232             'Net::FTP::I'           => '1.12',
1233             'Net::FTP::L'           => '0.01',
1234             'Net::FTP::dataconn'    => '0.10',
1235             'Net::NNTP'             => '2.21',
1236             'Net::Netrc'            => '2.12',
1237             'Net::POP3'             => '2.23',
1238             'Net::Ping'             => '2.12',
1239             'Net::SMTP'             => '2.21',
1240             'Net::Time'             => '2.09',
1241             'Net::hostent'          => '1.00',
1242             'Net::netent'           => '1.00',
1243             'Net::protoent'         => '1.00',
1244             'Net::servent'          => '1.00',
1245             'O'                     => '1.00',
1246             'OS2::DLL'              => '1.00',
1247             'OS2::Process'          => '1.0',
1248             'OS2::REXX'             => '1.01',
1249             'Opcode'                => '1.05',
1250             'POSIX'                 => '1.05',
1251             'PerlIO'                => '1.00',
1252             'PerlIO::Scalar'        => '0.01',
1253             'PerlIO::Via'           => '0.01',
1254             'Pod::Checker'          => '1.3',
1255             'Pod::Find'             => '0.22',
1256             'Pod::Functions'        => '1.01',
1257             'Pod::Html'             => '1.04',
1258             'Pod::LaTeX'            => '0.54',
1259             'Pod::Man'              => '1.32',
1260             'Pod::ParseLink'        => '1.05',
1261             'Pod::Text'             => '2.18',
1262             'Pod::Text::Color'      => '1.03',
1263             'Pod::Text::Overstrike' => '1.08',
1264             'Pod::Text::Termcap'    => '1.09',
1265             'Safe'                  => '2.07',
1266             'Scalar::Util'          => '1.06_00',
1267             'Search::Dict'          => '1.02',
1268             'SelectSaver'           => '1.00',
1269             'SelfLoader'            => '1.0903',
1270             'Shell'                 => '0.4',
1271             'Socket'                => '1.75',
1272             'Storable'              => '1.015',
1273             'Switch'                => '2.06',
1274             'Symbol'                => '1.04',
1275             'Sys::Syslog'           => '0.02',
1276             'Term::ANSIColor'       => '1.04',
1277             'Term::Cap'             => '1.07',
1278             'Term::Complete'        => '1.4',
1279             'Term::ReadLine'        => '1.00',
1280             'Test'                  => '1.18',
1281             'Test::Builder'         => '0.11',
1282             'Test::Harness'         => '2.01',
1283             'Test::Harness::Assert' => '0.01',
1284             'Test::Harness::Iterator'=> '0.01',
1285             'Test::Harness::Straps' => '0.08',
1286             'Test::More'            => '0.41',
1287             'Test::Simple'          => '0.41',
1288             'Text::Abbrev'          => '1.00',
1289             'Text::Balanced'        => '1.89',
1290             'Text::ParseWords'      => '3.21',
1291             'Text::Soundex'         => '1.01',
1292             'Text::Wrap'            => '2001.0929',
1293             'Thread'                => '2.00',
1294             'Thread::Queue'         => '1.00',
1295             'Thread::Semaphore'     => '1.00',
1296             'Thread::Signal'        => '1.00',
1297             'Thread::Specific'      => '1.00',
1298             'Tie::Array'            => '1.02',
1299             'Tie::File'             => '0.17',
1300             'Tie::Handle'           => '4.1',
1301             'Tie::Hash'             => '1.00',
1302             'Tie::Memoize'          => '1.0',
1303             'Tie::RefHash'          => '1.3_00',
1304             'Tie::Scalar'           => '1.00',
1305             'Tie::SubstrHash'       => '1.00',
1306             'Time::HiRes'           => '1.20_00',
1307             'Time::Local'           => '1.04',
1308             'Time::gmtime'          => '1.02',
1309             'Time::localtime'       => '1.02',
1310             'Time::tm'              => '1.00',
1311             'UNIVERSAL'             => '1.00',
1312             'Unicode::Collate'      => '0.10',
1313             'Unicode::Normalize'    => '0.14',
1314             'Unicode::UCD'          => '0.2',
1315             'User::grent'           => '1.00',
1316             'User::pwent'           => '1.00',
1317             'VMS::DCLsym'           => '1.02',
1318             'VMS::Filespec'         => '1.1',
1319             'VMS::Stdio'            => '2.3',
1320             'XS::Typemap'           => '0.01',
1321             'attributes'            => '0.04_01',
1322             'attrs'                 => '1.01',
1323             'autouse'               => '1.03',
1324             'base'                  => '1.02',
1325             'blib'                  => '1.01',
1326             'bytes'                 => '1.00',
1327             'charnames'             => '1.01',
1328             'constant'              => '1.04',
1329             'diagnostics'           => '1.1',
1330             'encoding'              => '1.00',
1331             'fields'                => '1.02',
1332             'filetest'              => '1.00',
1333             'if'                    => '0.01',
1334             'integer'               => '1.00',
1335             'less'                  => '0.01',
1336             'locale'                => '1.00',
1337             'open'                  => '1.01',
1338             'ops'                   => '1.00',
1339             'overload'              => '1.00',
1340             're'                    => '0.03',
1341             'sort'                  => '1.00',
1342             'strict'                => '1.02',
1343             'subs'                  => '1.00',
1344             'threads'               => '0.05',
1345             'threads::shared'       => '0.90',
1346             'utf8'                  => '1.00',
1347             'vars'                  => '1.01',
1348             'vmsish'                => '1.00',
1349             'warnings'              => '1.00',
1350             'warnings::register'    => '1.00',
1351         },
1352         removed => {
1353         }
1354     },
1355     5.008 => {
1356         delta_from => 5.007003,
1357         changed => {
1358             'Attribute::Handlers'   => '0.77',
1359             'B'                     => '1.01',
1360             'B::Lint'               => '1.01',
1361             'B::Xref'               => '1.01',
1362             'CGI'                   => '2.81',
1363             'CGI::Carp'             => '1.23',
1364             'CPAN'                  => '1.61',
1365             'CPAN::FirstTime'       => '1.56',
1366             'CPAN::Nox'             => '1.02',
1367             'Digest::MD5'           => '2.20',
1368             'Dumpvalue'             => '1.11',
1369             'Encode'                => '1.75',
1370             'Encode::Alias'         => '1.32',
1371             'Encode::Byte'          => '1.22',
1372             'Encode::CJKConstants'  => '1.00',
1373             'Encode::CN'            => '1.24',
1374             'Encode::CN::HZ'        => '1.04',
1375             'Encode::Config'        => '1.06',
1376             'Encode::EBCDIC'        => '1.21',
1377             'Encode::Encoder'       => '0.05',
1378             'Encode::Encoding'      => '1.30',
1379             'Encode::Guess'         => '1.06',
1380             'Encode::JP'            => '1.25',
1381             'Encode::JP::H2Z'       => '1.02',
1382             'Encode::JP::JIS7'      => '1.08',
1383             'Encode::KR'            => '1.22',
1384             'Encode::KR::2022_KR'   => '1.05',
1385             'Encode::MIME::Header'  => '1.05',
1386             'Encode::Symbol'        => '1.22',
1387             'Encode::TW'            => '1.26',
1388             'Encode::Unicode'       => '1.37',
1389             'Exporter::Heavy'       => '5.566',
1390             'ExtUtils::Command'     => '1.04',
1391             'ExtUtils::Command::MM' => '0.01',
1392             'ExtUtils::Constant'    => '0.12',
1393             'ExtUtils::Installed'   => '0.06',
1394             'ExtUtils::Liblist'     => '1.00',
1395             'ExtUtils::Liblist::Kid'=> '1.29',
1396             'ExtUtils::MM'          => '0.04',
1397             'ExtUtils::MM_Any'      => '0.04',
1398             'ExtUtils::MM_BeOS'     => '1.03',
1399             'ExtUtils::MM_Cygwin'   => '1.04',
1400             'ExtUtils::MM_DOS'      => '0.01',
1401             'ExtUtils::MM_MacOS'    => '1.03',
1402             'ExtUtils::MM_NW5'      => '2.05',
1403             'ExtUtils::MM_OS2'      => '1.03',
1404             'ExtUtils::MM_UWIN'     => '0.01',
1405             'ExtUtils::MM_Unix'     => '1.33',
1406             'ExtUtils::MM_VMS'      => '5.65',
1407             'ExtUtils::MM_Win32'    => '1.05',
1408             'ExtUtils::MM_Win95'    => '0.02',
1409             'ExtUtils::MY'          => '0.01',
1410             'ExtUtils::MakeMaker'   => '6.03',
1411             'ExtUtils::Manifest'    => '1.38',
1412             'ExtUtils::Mkbootstrap' => '1.15',
1413             'ExtUtils::Mksymlists'  => '1.19',
1414             'ExtUtils::testlib'     => '1.15',
1415             'File::CheckTree'       => '4.2',
1416             'FileCache'             => '1.021',
1417             'Filter::Simple'        => '0.78',
1418             'Getopt::Long'          => '2.32',
1419             'Hash::Util'            => '0.04',
1420             'List::Util'            => '1.07_00',
1421             'Locale::Country'       => '2.04',
1422             'Math::BigFloat'        => '1.35',
1423             'Math::BigFloat::Trace' => '0.01',
1424             'Math::BigInt'          => '1.60',
1425             'Math::BigInt::Calc'    => '0.30',
1426             'Math::BigInt::Trace'   => '0.01',
1427             'Math::BigRat'          => '0.07',
1428             'Memoize'               => '1.01',
1429             'Memoize::Expire'       => '1.00',
1430             'Memoize::ExpireFile'   => '1.01',
1431             'Net::FTP'              => '2.65',
1432             'Net::FTP::dataconn'    => '0.11',
1433             'Net::Ping'             => '2.19',
1434             'Net::SMTP'             => '2.24',
1435             'PerlIO'                => '1.01',
1436             'PerlIO::encoding'      => '0.06',
1437             'PerlIO::scalar'        => '0.01',
1438             'PerlIO::via'           => '0.01',
1439             'PerlIO::via::QuotedPrint'=> '0.04',
1440             'Pod::Man'              => '1.33',
1441             'Pod::Text'             => '2.19',
1442             'Scalar::Util'          => '1.07_00',
1443             'Storable'              => '2.04',
1444             'Switch'                => '2.09',
1445             'Sys::Syslog'           => '0.03',
1446             'Test'                  => '1.20',
1447             'Test::Builder'         => '0.15',
1448             'Test::Harness'         => '2.26',
1449             'Test::Harness::Straps' => '0.14',
1450             'Test::More'            => '0.45',
1451             'Test::Simple'          => '0.45',
1452             'Thread::Queue'         => '2.00',
1453             'Thread::Semaphore'     => '2.00',
1454             'Tie::File'             => '0.93',
1455             'Tie::RefHash'          => '1.30',
1456             'Unicode'               => '3.2.0',
1457             'Unicode::Collate'      => '0.12',
1458             'Unicode::Normalize'    => '0.17',
1459             'XS::APItest'           => '0.01',
1460             'attributes'            => '0.05',
1461             'base'                  => '1.03',
1462             'bigint'                => '0.02',
1463             'bignum'                => '0.11',
1464             'bigrat'                => '0.04',
1465             'blib'                  => '1.02',
1466             'encoding'              => '1.35',
1467             'sort'                  => '1.01',
1468             'threads'               => '0.99',
1469         },
1470         removed => {
1471             'Encode::Internal'      => 1,
1472             'Encode::JP::Constants' => 1,
1473             'Encode::JP::ISO_2022_JP'=> 1,
1474             'Encode::JP::JIS'       => 1,
1475             'Encode::JP::Tr'        => 1,
1476             'Encode::Tcl'           => 1,
1477             'Encode::Tcl::Escape'   => 1,
1478             'Encode::Tcl::Extended' => 1,
1479             'Encode::Tcl::HanZi'    => 1,
1480             'Encode::Tcl::Table'    => 1,
1481             'Encode::XS'            => 1,
1482             'Encode::iso10646_1'    => 1,
1483             'Encode::usc2_le'       => 1,
1484             'Encode::utf8'          => 1,
1485             'PerlIO::Scalar'        => 1,
1486             'PerlIO::Via'           => 1,
1487         }
1488     },
1489     5.008001 => {
1490         delta_from => 5.008,
1491         changed => {
1492             'Attribute::Handlers'   => '0.78',
1493             'AutoLoader'            => '5.60',
1494             'AutoSplit'             => '1.04',
1495             'B'                     => '1.02',
1496             'B::Asmdata'            => '1.01',
1497             'B::Assembler'          => '0.06',
1498             'B::Bblock'             => '1.02',
1499             'B::Bytecode'           => '1.01',
1500             'B::C'                  => '1.02',
1501             'B::Concise'            => '0.56',
1502             'B::Debug'              => '1.01',
1503             'B::Deparse'            => '0.64',
1504             'B::Disassembler'       => '1.03',
1505             'B::Lint'               => '1.02',
1506             'B::Terse'              => '1.02',
1507             'Benchmark'             => '1.051',
1508             'ByteLoader'            => '0.05',
1509             'CGI'                   => '3.00',
1510             'CGI::Carp'             => '1.26',
1511             'CGI::Cookie'           => '1.24',
1512             'CGI::Fast'             => '1.041',
1513             'CGI::Pretty'           => '1.07_00',
1514             'CGI::Util'             => '1.31',
1515             'CPAN'                  => '1.76_01',
1516             'CPAN::FirstTime'       => '1.60',
1517             'CPAN::Nox'             => '1.03',
1518             'Class::Struct'         => '0.63',
1519             'Cwd'                   => '2.08',
1520             'DB_File'               => '1.806',
1521             'Data::Dumper'          => '2.121',
1522             'Devel::DProf'          => '20030813.00',
1523             'Devel::PPPort'         => '2.007',
1524             'Devel::Peek'           => '1.01',
1525             'Digest'                => '1.02',
1526             'Digest::MD5'           => '2.27',
1527             'Encode'                => '1.9801',
1528             'Encode::Alias'         => '1.38',
1529             'Encode::Byte'          => '1.23',
1530             'Encode::CJKConstants'  => '1.02',
1531             'Encode::CN::HZ'        => '1.05',
1532             'Encode::Config'        => '1.07',
1533             'Encode::Encoder'       => '0.07',
1534             'Encode::Encoding'      => '1.33',
1535             'Encode::Guess'         => '1.09',
1536             'Encode::JP::JIS7'      => '1.12',
1537             'Encode::KR'            => '1.23',
1538             'Encode::KR::2022_KR'   => '1.06',
1539             'Encode::MIME::Header'  => '1.09',
1540             'Encode::Unicode'       => '1.40',
1541             'Encode::Unicode::UTF7' => '0.02',
1542             'English'               => '1.01',
1543             'Errno'                 => '1.09_00',
1544             'Exporter'              => '5.567',
1545             'Exporter::Heavy'       => '5.567',
1546             'ExtUtils::Command'     => '1.05',
1547             'ExtUtils::Command::MM' => '0.03',
1548             'ExtUtils::Constant'    => '0.14',
1549             'ExtUtils::Install'     => '1.32',
1550             'ExtUtils::Installed'   => '0.08',
1551             'ExtUtils::Liblist'     => '1.01',
1552             'ExtUtils::Liblist::Kid'=> '1.3',
1553             'ExtUtils::MM_Any'      => '0.07',
1554             'ExtUtils::MM_BeOS'     => '1.04',
1555             'ExtUtils::MM_Cygwin'   => '1.06',
1556             'ExtUtils::MM_DOS'      => '0.02',
1557             'ExtUtils::MM_MacOS'    => '1.07',
1558             'ExtUtils::MM_NW5'      => '2.06',
1559             'ExtUtils::MM_OS2'      => '1.04',
1560             'ExtUtils::MM_UWIN'     => '0.02',
1561             'ExtUtils::MM_Unix'     => '1.42',
1562             'ExtUtils::MM_VMS'      => '5.70',
1563             'ExtUtils::MM_Win32'    => '1.09',
1564             'ExtUtils::MM_Win95'    => '0.03',
1565             'ExtUtils::MakeMaker'   => '6.17',
1566             'ExtUtils::MakeMaker::bytes'=> '0.01',
1567             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1568             'ExtUtils::Manifest'    => '1.42',
1569             'Fcntl'                 => '1.05',
1570             'File::Basename'        => '2.72',
1571             'File::Copy'            => '2.06',
1572             'File::Find'            => '1.05',
1573             'File::Glob'            => '1.02',
1574             'File::Path'            => '1.06',
1575             'File::Spec'            => '0.86',
1576             'File::Spec::Cygwin'    => '1.1',
1577             'File::Spec::Epoc'      => '1.1',
1578             'File::Spec::Functions' => '1.3',
1579             'File::Spec::Mac'       => '1.4',
1580             'File::Spec::OS2'       => '1.2',
1581             'File::Spec::Unix'      => '1.5',
1582             'File::Spec::VMS'       => '1.4',
1583             'File::Spec::Win32'     => '1.4',
1584             'File::Temp'            => '0.14',
1585             'FileCache'             => '1.03',
1586             'Filter::Util::Call'    => '1.0601',
1587             'GDBM_File'             => '1.07',
1588             'Getopt::Long'          => '2.34',
1589             'Getopt::Std'           => '1.04',
1590             'Hash::Util'            => '0.05',
1591             'I18N::LangTags'        => '0.28',
1592             'I18N::LangTags::List'  => '0.26',
1593             'I18N::Langinfo'        => '0.02',
1594             'IO'                    => '1.21',
1595             'IO::Dir'               => '1.04',
1596             'IO::File'              => '1.10',
1597             'IO::Handle'            => '1.23',
1598             'IO::Seekable'          => '1.09',
1599             'IO::Select'            => '1.16',
1600             'IO::Socket'            => '1.28',
1601             'IO::Socket::INET'      => '1.27',
1602             'IO::Socket::UNIX'      => '1.21',
1603             'IPC::Msg'              => '1.02',
1604             'IPC::Open3'            => '1.0105',
1605             'IPC::Semaphore'        => '1.02',
1606             'IPC::SysV'             => '1.04',
1607             'JNI'                   => '0.2',
1608             'List::Util'            => '1.13',
1609             'Locale::Country'       => '2.61',
1610             'Locale::Currency'      => '2.21',
1611             'Locale::Language'      => '2.21',
1612             'Locale::Maketext'      => '1.06',
1613             'Locale::Maketext::Guts'=> undef,
1614             'Locale::Maketext::GutsLoader'=> undef,
1615             'Locale::Script'        => '2.21',
1616             'MIME::Base64'          => '2.20',
1617             'MIME::QuotedPrint'     => '2.20',
1618             'Math::BigFloat'        => '1.40',
1619             'Math::BigInt'          => '1.66',
1620             'Math::BigInt::Calc'    => '0.36',
1621             'Math::BigInt::Scalar'  => '0.11',
1622             'Math::BigRat'          => '0.10',
1623             'Math::Trig'            => '1.02',
1624             'NDBM_File'             => '1.05',
1625             'NEXT'                  => '0.60',
1626             'Net::Cmd'              => '2.24',
1627             'Net::Domain'           => '2.18',
1628             'Net::FTP'              => '2.71',
1629             'Net::FTP::A'           => '1.16',
1630             'Net::NNTP'             => '2.22',
1631             'Net::POP3'             => '2.24',
1632             'Net::Ping'             => '2.31',
1633             'Net::SMTP'             => '2.26',
1634             'Net::hostent'          => '1.01',
1635             'Net::servent'          => '1.01',
1636             'ODBM_File'             => '1.04',
1637             'OS2::DLL'              => '1.01',
1638             'OS2::ExtAttr'          => '0.02',
1639             'OS2::PrfDB'            => '0.03',
1640             'OS2::Process'          => '1.01',
1641             'OS2::REXX'             => '1.02',
1642             'POSIX'                 => '1.06',
1643             'PerlIO'                => '1.02',
1644             'PerlIO::encoding'      => '0.07',
1645             'PerlIO::scalar'        => '0.02',
1646             'PerlIO::via'           => '0.02',
1647             'PerlIO::via::QuotedPrint'=> '0.05',
1648             'Pod::Checker'          => '1.41',
1649             'Pod::Find'             => '0.24',
1650             'Pod::Functions'        => '1.02',
1651             'Pod::Html'             => '1.0501',
1652             'Pod::InputObjects'     => '1.14',
1653             'Pod::LaTeX'            => '0.55',
1654             'Pod::Man'              => '1.37',
1655             'Pod::ParseLink'        => '1.06',
1656             'Pod::ParseUtils'       => '0.3',
1657             'Pod::Perldoc'          => '3.10',
1658             'Pod::Perldoc::BaseTo'  => undef,
1659             'Pod::Perldoc::GetOptsOO'=> undef,
1660             'Pod::Perldoc::ToChecker'=> undef,
1661             'Pod::Perldoc::ToMan'   => undef,
1662             'Pod::Perldoc::ToNroff' => undef,
1663             'Pod::Perldoc::ToPod'   => undef,
1664             'Pod::Perldoc::ToRtf'   => undef,
1665             'Pod::Perldoc::ToText'  => undef,
1666             'Pod::Perldoc::ToTk'    => undef,
1667             'Pod::Perldoc::ToXml'   => undef,
1668             'Pod::PlainText'        => '2.01',
1669             'Pod::Text'             => '2.21',
1670             'Pod::Text::Color'      => '1.04',
1671             'Pod::Text::Overstrike' => '1.1',
1672             'Pod::Text::Termcap'    => '1.11',
1673             'Pod::Usage'            => '1.16',
1674             'SDBM_File'             => '1.04',
1675             'Safe'                  => '2.10',
1676             'Scalar::Util'          => '1.13',
1677             'SelfLoader'            => '1.0904',
1678             'Shell'                 => '0.5',
1679             'Socket'                => '1.76',
1680             'Storable'              => '2.08',
1681             'Switch'                => '2.10',
1682             'Symbol'                => '1.05',
1683             'Sys::Hostname'         => '1.11',
1684             'Sys::Syslog'           => '0.04',
1685             'Term::ANSIColor'       => '1.07',
1686             'Term::Cap'             => '1.08',
1687             'Term::Complete'        => '1.401',
1688             'Term::ReadLine'        => '1.01',
1689             'Test'                  => '1.24',
1690             'Test::Builder'         => '0.17',
1691             'Test::Harness'         => '2.30',
1692             'Test::Harness::Straps' => '0.15',
1693             'Test::More'            => '0.47',
1694             'Test::Simple'          => '0.47',
1695             'Text::Abbrev'          => '1.01',
1696             'Text::Balanced'        => '1.95',
1697             'Text::Wrap'            => '2001.09291',
1698             'Thread::Semaphore'     => '2.01',
1699             'Tie::Array'            => '1.03',
1700             'Tie::File'             => '0.97',
1701             'Tie::RefHash'          => '1.31',
1702             'Time::HiRes'           => '1.51',
1703             'Time::Local'           => '1.07',
1704             'UNIVERSAL'             => '1.01',
1705             'Unicode'               => '4.0.0',
1706             'Unicode::Collate'      => '0.28',
1707             'Unicode::Normalize'    => '0.23',
1708             'Unicode::UCD'          => '0.21',
1709             'VMS::Filespec'         => '1.11',
1710             'XS::APItest'           => '0.02',
1711             'XSLoader'              => '0.02',
1712             'attributes'            => '0.06',
1713             'base'                  => '2.03',
1714             'bigint'                => '0.04',
1715             'bignum'                => '0.14',
1716             'bigrat'                => '0.06',
1717             'bytes'                 => '1.01',
1718             'charnames'             => '1.02',
1719             'diagnostics'           => '1.11',
1720             'encoding'              => '1.47',
1721             'fields'                => '2.03',
1722             'filetest'              => '1.01',
1723             'if'                    => '0.03',
1724             'lib'                   => '0.5565',
1725             'open'                  => '1.02',
1726             'overload'              => '1.01',
1727             're'                    => '0.04',
1728             'sort'                  => '1.02',
1729             'strict'                => '1.03',
1730             'threads'               => '1.00',
1731             'threads::shared'       => '0.91',
1732             'utf8'                  => '1.02',
1733             'vmsish'                => '1.01',
1734             'warnings'              => '1.03',
1735         },
1736         removed => {
1737         }
1738     },
1739     5.008002 => {
1740         delta_from => 5.008001,
1741         changed => {
1742             'DB_File'               => '1.807',
1743             'Devel::PPPort'         => '2.009',
1744             'Digest::MD5'           => '2.30',
1745             'I18N::LangTags'        => '0.29',
1746             'I18N::LangTags::List'  => '0.29',
1747             'MIME::Base64'          => '2.21',
1748             'MIME::QuotedPrint'     => '2.21',
1749             'Net::Domain'           => '2.19',
1750             'Net::FTP'              => '2.72',
1751             'Pod::Perldoc'          => '3.11',
1752             'Time::HiRes'           => '1.52',
1753             'Unicode::Collate'      => '0.30',
1754             'Unicode::Normalize'    => '0.25',
1755         },
1756         removed => {
1757         }
1758     },
1759     5.008003 => {
1760         delta_from => 5.008002,
1761         changed => {
1762             'Benchmark'             => '1.052',
1763             'CGI'                   => '3.01',
1764             'CGI::Carp'             => '1.27',
1765             'CGI::Fast'             => '1.05',
1766             'CGI::Pretty'           => '1.08',
1767             'CGI::Util'             => '1.4',
1768             'Cwd'                   => '2.12',
1769             'DB_File'               => '1.808',
1770             'Devel::PPPort'         => '2.011',
1771             'Digest'                => '1.05',
1772             'Digest::MD5'           => '2.33',
1773             'Digest::base'          => '1.00',
1774             'Encode'                => '1.99',
1775             'Exporter'              => '5.57',
1776             'File::CheckTree'       => '4.3',
1777             'File::Copy'            => '2.07',
1778             'File::Find'            => '1.06',
1779             'File::Spec'            => '0.87',
1780             'FindBin'               => '1.44',
1781             'Getopt::Std'           => '1.05',
1782             'Math::BigFloat'        => '1.42',
1783             'Math::BigInt'          => '1.68',
1784             'Math::BigInt::Calc'    => '0.38',
1785             'Math::BigInt::CalcEmu' => '0.02',
1786             'OS2::DLL'              => '1.02',
1787             'POSIX'                 => '1.07',
1788             'PerlIO'                => '1.03',
1789             'PerlIO::via::QuotedPrint'=> '0.06',
1790             'Pod::Html'             => '1.0502',
1791             'Pod::Parser'           => '1.14',
1792             'Pod::Perldoc'          => '3.12',
1793             'Pod::PlainText'        => '2.02',
1794             'Storable'              => '2.09',
1795             'Test::Harness'         => '2.40',
1796             'Test::Harness::Assert' => '0.02',
1797             'Test::Harness::Iterator'=> '0.02',
1798             'Test::Harness::Straps' => '0.19',
1799             'Tie::Hash'             => '1.01',
1800             'Unicode::Collate'      => '0.33',
1801             'Unicode::Normalize'    => '0.28',
1802             'XS::APItest'           => '0.03',
1803             'base'                  => '2.04',
1804             'diagnostics'           => '1.12',
1805             'encoding'              => '1.48',
1806             'threads'               => '1.01',
1807             'threads::shared'       => '0.92',
1808         },
1809         removed => {
1810             'Math::BigInt::Scalar'  => 1,
1811         }
1812     },
1813     5.008004 => {
1814         delta_from => 5.008003,
1815         changed => {
1816             'Attribute::Handlers'   => '0.78_01',
1817             'B::Assembler'          => '0.07',
1818             'B::Concise'            => '0.60',
1819             'B::Deparse'            => '0.66',
1820             'Benchmark'             => '1.06',
1821             'CGI'                   => '3.04',
1822             'Carp'                  => '1.02',
1823             'Cwd'                   => '2.17',
1824             'DBM_Filter'            => '0.01',
1825             'DBM_Filter::compress'  => '0.01',
1826             'DBM_Filter::encode'    => '0.01',
1827             'DBM_Filter::int32'     => '0.01',
1828             'DBM_Filter::null'      => '0.01',
1829             'DBM_Filter::utf8'      => '0.01',
1830             'Digest'                => '1.06',
1831             'DynaLoader'            => '1.05',
1832             'Encode'                => '1.99_01',
1833             'Encode::CN::HZ'        => '1.0501',
1834             'Exporter'              => '5.58',
1835             'Exporter::Heavy'       => '5.57',
1836             'ExtUtils::Liblist::Kid'=> '1.3001',
1837             'ExtUtils::MM_NW5'      => '2.07_02',
1838             'ExtUtils::MM_Win95'    => '0.0301',
1839             'File::Find'            => '1.07',
1840             'IO::Handle'            => '1.24',
1841             'IO::Pipe'              => '1.123',
1842             'IPC::Open3'            => '1.0106',
1843             'Locale::Maketext'      => '1.08',
1844             'MIME::Base64'          => '3.01',
1845             'MIME::QuotedPrint'     => '3.01',
1846             'Math::BigFloat'        => '1.44',
1847             'Math::BigInt'          => '1.70',
1848             'Math::BigInt::Calc'    => '0.40',
1849             'Math::BigInt::CalcEmu' => '0.04',
1850             'Math::BigRat'          => '0.12',
1851             'ODBM_File'             => '1.05',
1852             'POSIX'                 => '1.08',
1853             'Shell'                 => '0.5.2',
1854             'Socket'                => '1.77',
1855             'Storable'              => '2.12',
1856             'Sys::Syslog'           => '0.05',
1857             'Term::ANSIColor'       => '1.08',
1858             'Time::HiRes'           => '1.59',
1859             'Unicode'               => '4.0.1',
1860             'Unicode::UCD'          => '0.22',
1861             'Win32'                 => '0.23',
1862             'base'                  => '2.05',
1863             'bigint'                => '0.05',
1864             'bignum'                => '0.15',
1865             'charnames'             => '1.03',
1866             'open'                  => '1.03',
1867             'threads'               => '1.03',
1868             'utf8'                  => '1.03',
1869         },
1870         removed => {
1871         }
1872     },
1873     5.008005 => {
1874         delta_from => 5.008004,
1875         changed => {
1876             'B::Concise'            => '0.61',
1877             'B::Deparse'            => '0.67',
1878             'CGI'                   => '3.05',
1879             'CGI::Carp'             => '1.28',
1880             'CGI::Util'             => '1.5',
1881             'Carp'                  => '1.03',
1882             'Carp::Heavy'           => '1.03',
1883             'Cwd'                   => '2.19',
1884             'DB_File'               => '1.809',
1885             'Digest'                => '1.08',
1886             'Encode'                => '2.01',
1887             'Encode::Alias'         => '2.00',
1888             'Encode::Byte'          => '2.00',
1889             'Encode::CJKConstants'  => '2.00',
1890             'Encode::CN'            => '2.00',
1891             'Encode::CN::HZ'        => '2.01',
1892             'Encode::Config'        => '2.00',
1893             'Encode::EBCDIC'        => '2.00',
1894             'Encode::Encoder'       => '2.00',
1895             'Encode::Encoding'      => '2.00',
1896             'Encode::Guess'         => '2.00',
1897             'Encode::JP'            => '2.00',
1898             'Encode::JP::H2Z'       => '2.00',
1899             'Encode::JP::JIS7'      => '2.00',
1900             'Encode::KR'            => '2.00',
1901             'Encode::KR::2022_KR'   => '2.00',
1902             'Encode::MIME::Header'  => '2.00',
1903             'Encode::Symbol'        => '2.00',
1904             'Encode::TW'            => '2.00',
1905             'Encode::Unicode'       => '2.00',
1906             'Encode::Unicode::UTF7' => '2.01',
1907             'File::Basename'        => '2.73',
1908             'File::Copy'            => '2.08',
1909             'File::Glob'            => '1.03',
1910             'FileCache'             => '1.04_01',
1911             'I18N::LangTags'        => '0.33',
1912             'I18N::LangTags::Detect'=> '1.03',
1913             'List::Util'            => '1.14',
1914             'Locale::Constants'     => '2.07',
1915             'Locale::Country'       => '2.07',
1916             'Locale::Currency'      => '2.07',
1917             'Locale::Language'      => '2.07',
1918             'Locale::Maketext'      => '1.09',
1919             'Locale::Script'        => '2.07',
1920             'Net::Cmd'              => '2.26',
1921             'Net::FTP'              => '2.75',
1922             'Net::NNTP'             => '2.23',
1923             'Net::POP3'             => '2.28',
1924             'Net::SMTP'             => '2.29',
1925             'Net::Time'             => '2.10',
1926             'Pod::Checker'          => '1.42',
1927             'Pod::Find'             => '0.2401',
1928             'Pod::LaTeX'            => '0.56',
1929             'Pod::ParseUtils'       => '1.2',
1930             'Pod::Perldoc'          => '3.13',
1931             'Safe'                  => '2.11',
1932             'Scalar::Util'          => '1.14',
1933             'Shell'                 => '0.6',
1934             'Storable'              => '2.13',
1935             'Term::Cap'             => '1.09',
1936             'Test'                  => '1.25',
1937             'Test::Harness'         => '2.42',
1938             'Text::ParseWords'      => '3.22',
1939             'Text::Wrap'            => '2001.09292',
1940             'Time::Local'           => '1.10',
1941             'Unicode::Collate'      => '0.40',
1942             'Unicode::Normalize'    => '0.30',
1943             'XS::APItest'           => '0.04',
1944             'autouse'               => '1.04',
1945             'base'                  => '2.06',
1946             'charnames'             => '1.04',
1947             'diagnostics'           => '1.13',
1948             'encoding'              => '2.00',
1949             'threads'               => '1.05',
1950             'utf8'                  => '1.04',
1951         },
1952         removed => {
1953         }
1954     },
1955     5.008006 => {
1956         delta_from => 5.008005,
1957         changed => {
1958             'B'                     => '1.07',
1959             'B::C'                  => '1.04',
1960             'B::Concise'            => '0.64',
1961             'B::Debug'              => '1.02',
1962             'B::Deparse'            => '0.69',
1963             'B::Lint'               => '1.03',
1964             'B::Showlex'            => '1.02',
1965             'Cwd'                   => '3.01',
1966             'DB_File'               => '1.810',
1967             'Data::Dumper'          => '2.121_02',
1968             'Devel::PPPort'         => '3.03',
1969             'Devel::Peek'           => '1.02',
1970             'Encode'                => '2.08',
1971             'Encode::Alias'         => '2.02',
1972             'Encode::Encoding'      => '2.02',
1973             'Encode::JP'            => '2.01',
1974             'Encode::Unicode'       => '2.02',
1975             'Exporter::Heavy'       => '5.58',
1976             'ExtUtils::Constant'    => '0.1401',
1977             'File::Spec'            => '3.01',
1978             'File::Spec::Win32'     => '1.5',
1979             'I18N::LangTags'        => '0.35',
1980             'I18N::LangTags::List'  => '0.35',
1981             'MIME::Base64'          => '3.05',
1982             'MIME::QuotedPrint'     => '3.03',
1983             'Math::BigFloat'        => '1.47',
1984             'Math::BigInt'          => '1.73',
1985             'Math::BigInt::Calc'    => '0.43',
1986             'Math::BigRat'          => '0.13',
1987             'Text::ParseWords'      => '3.23',
1988             'Time::HiRes'           => '1.65',
1989             'XS::APItest'           => '0.05',
1990             'diagnostics'           => '1.14',
1991             'encoding'              => '2.01',
1992             'open'                  => '1.04',
1993             'overload'              => '1.02',
1994         },
1995         removed => {
1996         }
1997     },
1998     5.008007 => {
1999         delta_from => 5.008006,
2000         changed => {
2001             'B'                     => '1.09',
2002             'B::Concise'            => '0.65',
2003             'B::Deparse'            => '0.7',
2004             'B::Disassembler'       => '1.04',
2005             'B::Terse'              => '1.03',
2006             'Benchmark'             => '1.07',
2007             'CGI'                   => '3.10',
2008             'CGI::Carp'             => '1.29',
2009             'CGI::Cookie'           => '1.25',
2010             'Carp'                  => '1.04',
2011             'Carp::Heavy'           => '1.04',
2012             'Class::ISA'            => '0.33',
2013             'Cwd'                   => '3.05',
2014             'DB_File'               => '1.811',
2015             'Data::Dumper'          => '2.121_04',
2016             'Devel::DProf'          => '20050310.00',
2017             'Devel::PPPort'         => '3.06',
2018             'Digest'                => '1.10',
2019             'Digest::file'          => '0.01',
2020             'Encode'                => '2.10',
2021             'Encode::Alias'         => '2.03',
2022             'Errno'                 => '1.09_01',
2023             'ExtUtils::Constant'    => '0.16',
2024             'ExtUtils::Constant::Base'=> '0.01',
2025             'ExtUtils::Constant::Utils'=> '0.01',
2026             'ExtUtils::Constant::XS'=> '0.01',
2027             'File::Find'            => '1.09',
2028             'File::Glob'            => '1.04',
2029             'File::Path'            => '1.07',
2030             'File::Spec'            => '3.05',
2031             'File::Temp'            => '0.16',
2032             'FileCache'             => '1.05',
2033             'IO::File'              => '1.11',
2034             'IO::Socket::INET'      => '1.28',
2035             'Math::BigFloat'        => '1.51',
2036             'Math::BigInt'          => '1.77',
2037             'Math::BigInt::Calc'    => '0.47',
2038             'Math::BigInt::CalcEmu' => '0.05',
2039             'Math::BigRat'          => '0.15',
2040             'Pod::Find'             => '1.3',
2041             'Pod::Html'             => '1.0503',
2042             'Pod::InputObjects'     => '1.3',
2043             'Pod::LaTeX'            => '0.58',
2044             'Pod::ParseUtils'       => '1.3',
2045             'Pod::Parser'           => '1.3',
2046             'Pod::Perldoc'          => '3.14',
2047             'Pod::Select'           => '1.3',
2048             'Pod::Usage'            => '1.3',
2049             'SelectSaver'           => '1.01',
2050             'Symbol'                => '1.06',
2051             'Sys::Syslog'           => '0.06',
2052             'Term::ANSIColor'       => '1.09',
2053             'Term::Complete'        => '1.402',
2054             'Test::Builder'         => '0.22',
2055             'Test::Harness'         => '2.48',
2056             'Test::Harness::Point'  => '0.01',
2057             'Test::Harness::Straps' => '0.23',
2058             'Test::More'            => '0.54',
2059             'Test::Simple'          => '0.54',
2060             'Text::ParseWords'      => '3.24',
2061             'Text::Wrap'            => '2001.09293',
2062             'Tie::RefHash'          => '1.32',
2063             'Time::HiRes'           => '1.66',
2064             'Time::Local'           => '1.11',
2065             'Unicode'               => '4.1.0',
2066             'Unicode::Normalize'    => '0.32',
2067             'Unicode::UCD'          => '0.23',
2068             'Win32'                 => '0.24',
2069             'XS::APItest'           => '0.06',
2070             'base'                  => '2.07',
2071             'bigint'                => '0.07',
2072             'bignum'                => '0.17',
2073             'bigrat'                => '0.08',
2074             'bytes'                 => '1.02',
2075             'constant'              => '1.05',
2076             'overload'              => '1.03',
2077             'threads::shared'       => '0.93',
2078             'utf8'                  => '1.05',
2079         },
2080         removed => {
2081             'JNI'                   => 1,
2082             'JPL::AutoLoader'       => 1,
2083             'JPL::Class'            => 1,
2084             'JPL::Compile'          => 1,
2085         }
2086     },
2087     5.008008 => {
2088         delta_from => 5.008007,
2089         changed => {
2090             'Attribute::Handlers'   => '0.78_02',
2091             'B'                     => '1.09_01',
2092             'B::Bblock'             => '1.02_01',
2093             'B::Bytecode'           => '1.01_01',
2094             'B::C'                  => '1.04_01',
2095             'B::CC'                 => '1.00_01',
2096             'B::Concise'            => '0.66',
2097             'B::Debug'              => '1.02_01',
2098             'B::Deparse'            => '0.71',
2099             'B::Disassembler'       => '1.05',
2100             'B::Terse'              => '1.03_01',
2101             'ByteLoader'            => '0.06',
2102             'CGI'                   => '3.15',
2103             'CGI::Cookie'           => '1.26',
2104             'CPAN'                  => '1.76_02',
2105             'Cwd'                   => '3.12',
2106             'DB'                    => '1.01',
2107             'DB_File'               => '1.814',
2108             'Data::Dumper'          => '2.121_08',
2109             'Devel::DProf'          => '20050603.00',
2110             'Devel::PPPort'         => '3.06_01',
2111             'Devel::Peek'           => '1.03',
2112             'Digest'                => '1.14',
2113             'Digest::MD5'           => '2.36',
2114             'Digest::file'          => '1.00',
2115             'Dumpvalue'             => '1.12',
2116             'Encode'                => '2.12',
2117             'Encode::Alias'         => '2.04',
2118             'Encode::Config'        => '2.01',
2119             'Encode::MIME::Header'  => '2.01',
2120             'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2121             'English'               => '1.02',
2122             'ExtUtils::Command'     => '1.09',
2123             'ExtUtils::Command::MM' => '0.05',
2124             'ExtUtils::Constant'    => '0.17',
2125             'ExtUtils::Embed'       => '1.26',
2126             'ExtUtils::Install'     => '1.33',
2127             'ExtUtils::Liblist::Kid'=> '1.3',
2128             'ExtUtils::MM'          => '0.05',
2129             'ExtUtils::MM_AIX'      => '0.03',
2130             'ExtUtils::MM_Any'      => '0.13',
2131             'ExtUtils::MM_BeOS'     => '1.05',
2132             'ExtUtils::MM_Cygwin'   => '1.08',
2133             'ExtUtils::MM_MacOS'    => '1.08',
2134             'ExtUtils::MM_NW5'      => '2.08',
2135             'ExtUtils::MM_OS2'      => '1.05',
2136             'ExtUtils::MM_QNX'      => '0.02',
2137             'ExtUtils::MM_Unix'     => '1.50',
2138             'ExtUtils::MM_VMS'      => '5.73',
2139             'ExtUtils::MM_VOS'      => '0.02',
2140             'ExtUtils::MM_Win32'    => '1.12',
2141             'ExtUtils::MM_Win95'    => '0.04',
2142             'ExtUtils::MakeMaker'   => '6.30',
2143             'ExtUtils::MakeMaker::Config'=> '0.02',
2144             'ExtUtils::Manifest'    => '1.46',
2145             'File::Basename'        => '2.74',
2146             'File::Copy'            => '2.09',
2147             'File::Find'            => '1.10',
2148             'File::Glob'            => '1.05',
2149             'File::Path'            => '1.08',
2150             'File::Spec'            => '3.12',
2151             'File::Spec::Win32'     => '1.6',
2152             'FileCache'             => '1.06',
2153             'Filter::Simple'        => '0.82',
2154             'FindBin'               => '1.47',
2155             'GDBM_File'             => '1.08',
2156             'Getopt::Long'          => '2.35',
2157             'IO'                    => '1.22',
2158             'IO::Dir'               => '1.05',
2159             'IO::File'              => '1.13',
2160             'IO::Handle'            => '1.25',
2161             'IO::Pipe'              => '1.13',
2162             'IO::Poll'              => '0.07',
2163             'IO::Seekable'          => '1.10',
2164             'IO::Select'            => '1.17',
2165             'IO::Socket'            => '1.29',
2166             'IO::Socket::INET'      => '1.29',
2167             'IO::Socket::UNIX'      => '1.22',
2168             'IPC::Open2'            => '1.02',
2169             'IPC::Open3'            => '1.02',
2170             'List::Util'            => '1.18',
2171             'MIME::Base64'          => '3.07',
2172             'MIME::QuotedPrint'     => '3.07',
2173             'Math::Complex'         => '1.35',
2174             'Math::Trig'            => '1.03',
2175             'NDBM_File'             => '1.06',
2176             'ODBM_File'             => '1.06',
2177             'OS2::PrfDB'            => '0.04',
2178             'OS2::Process'          => '1.02',
2179             'OS2::REXX'             => '1.03',
2180             'Opcode'                => '1.06',
2181             'POSIX'                 => '1.09',
2182             'PerlIO'                => '1.04',
2183             'PerlIO::encoding'      => '0.09',
2184             'PerlIO::scalar'        => '0.04',
2185             'PerlIO::via'           => '0.03',
2186             'Pod::Checker'          => '1.43',
2187             'Pod::Find'             => '1.34',
2188             'Pod::Functions'        => '1.03',
2189             'Pod::Html'             => '1.0504',
2190             'Pod::ParseUtils'       => '1.33',
2191             'Pod::Parser'           => '1.32',
2192             'Pod::Usage'            => '1.33',
2193             'SDBM_File'             => '1.05',
2194             'Safe'                  => '2.12',
2195             'Scalar::Util'          => '1.18',
2196             'Socket'                => '1.78',
2197             'Storable'              => '2.15',
2198             'Switch'                => '2.10_01',
2199             'Sys::Syslog'           => '0.13',
2200             'Term::ANSIColor'       => '1.10',
2201             'Term::ReadLine'        => '1.02',
2202             'Test::Builder'         => '0.32',
2203             'Test::Builder::Module' => '0.02',
2204             'Test::Builder::Tester' => '1.02',
2205             'Test::Builder::Tester::Color'=> undef,
2206             'Test::Harness'         => '2.56',
2207             'Test::Harness::Straps' => '0.26',
2208             'Test::More'            => '0.62',
2209             'Test::Simple'          => '0.62',
2210             'Text::Tabs'            => '2005.0824',
2211             'Text::Wrap'            => '2005.082401',
2212             'Tie::Hash'             => '1.02',
2213             'Time::HiRes'           => '1.86',
2214             'Unicode::Collate'      => '0.52',
2215             'Unicode::UCD'          => '0.24',
2216             'User::grent'           => '1.01',
2217             'Win32'                 => '0.2601',
2218             'XS::APItest'           => '0.08',
2219             'XS::Typemap'           => '0.02',
2220             'XSLoader'              => '0.06',
2221             'attrs'                 => '1.02',
2222             'autouse'               => '1.05',
2223             'blib'                  => '1.03',
2224             'charnames'             => '1.05',
2225             'diagnostics'           => '1.15',
2226             'encoding'              => '2.02',
2227             'if'                    => '0.05',
2228             'open'                  => '1.05',
2229             'ops'                   => '1.01',
2230             'overload'              => '1.04',
2231             're'                    => '0.05',
2232             'threads'               => '1.07',
2233             'threads::shared'       => '0.94',
2234             'utf8'                  => '1.06',
2235             'vmsish'                => '1.02',
2236             'warnings'              => '1.05',
2237             'warnings::register'    => '1.01',
2238         },
2239         removed => {
2240         }
2241     },
2242     5.008009 => {
2243         delta_from => 5.008008,
2244         changed => {
2245             'Attribute::Handlers'   => '0.78_03',
2246             'AutoLoader'            => '5.67',
2247             'AutoSplit'             => '1.06',
2248             'B'                     => '1.19',
2249             'B::Asmdata'            => '1.02',
2250             'B::Assembler'          => '0.08',
2251             'B::C'                  => '1.05',
2252             'B::Concise'            => '0.76',
2253             'B::Debug'              => '1.05',
2254             'B::Deparse'            => '0.87',
2255             'B::Lint'               => '1.11',
2256             'B::Lint::Debug'        => undef,
2257             'B::Terse'              => '1.05',
2258             'Benchmark'             => '1.1',
2259             'CGI'                   => '3.42',
2260             'CGI::Carp'             => '1.30_01',
2261             'CGI::Cookie'           => '1.29',
2262             'CGI::Fast'             => '1.07',
2263             'CGI::Util'             => '1.5_01',
2264             'CPAN'                  => '1.9301',
2265             'CPAN::Debug'           => '5.5',
2266             'CPAN::DeferedCode'     => '5.50',
2267             'CPAN::Distroprefs'     => '6',
2268             'CPAN::FirstTime'       => '5.5_01',
2269             'CPAN::HandleConfig'    => '5.5',
2270             'CPAN::Kwalify'         => '5.50',
2271             'CPAN::Nox'             => '5.50',
2272             'CPAN::Queue'           => '5.5',
2273             'CPAN::Tarzip'          => '5.5',
2274             'CPAN::Version'         => '5.5',
2275             'Carp'                  => '1.10',
2276             'Carp::Heavy'           => '1.10',
2277             'Cwd'                   => '3.29',
2278             'DBM_Filter'            => '0.02',
2279             'DBM_Filter::compress'  => '0.02',
2280             'DBM_Filter::encode'    => '0.02',
2281             'DBM_Filter::int32'     => '0.02',
2282             'DBM_Filter::null'      => '0.02',
2283             'DBM_Filter::utf8'      => '0.02',
2284             'DB_File'               => '1.817',
2285             'Data::Dumper'          => '2.121_17',
2286             'Devel::DProf'          => '20080331.00',
2287             'Devel::InnerPackage'   => '0.3',
2288             'Devel::PPPort'         => '3.14',
2289             'Devel::Peek'           => '1.04',
2290             'Digest'                => '1.15',
2291             'Digest::MD5'           => '2.37',
2292             'DirHandle'             => '1.02',
2293             'DynaLoader'            => '1.09',
2294             'Encode'                => '2.26',
2295             'Encode::Alias'         => '2.10',
2296             'Encode::Byte'          => '2.03',
2297             'Encode::CJKConstants'  => '2.02',
2298             'Encode::CN'            => '2.02',
2299             'Encode::CN::HZ'        => '2.05',
2300             'Encode::Config'        => '2.05',
2301             'Encode::EBCDIC'        => '2.02',
2302             'Encode::Encoder'       => '2.01',
2303             'Encode::Encoding'      => '2.05',
2304             'Encode::GSM0338'       => '2.01',
2305             'Encode::Guess'         => '2.02',
2306             'Encode::JP'            => '2.03',
2307             'Encode::JP::H2Z'       => '2.02',
2308             'Encode::JP::JIS7'      => '2.04',
2309             'Encode::KR'            => '2.02',
2310             'Encode::KR::2022_KR'   => '2.02',
2311             'Encode::MIME::Header'  => '2.05',
2312             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2313             'Encode::MIME::Name'    => '1.01',
2314             'Encode::Symbol'        => '2.02',
2315             'Encode::TW'            => '2.02',
2316             'Encode::Unicode'       => '2.05',
2317             'Encode::Unicode::UTF7' => '2.04',
2318             'English'               => '1.03',
2319             'Errno'                 => '1.10',
2320             'Exporter'              => '5.63',
2321             'Exporter::Heavy'       => '5.63',
2322             'ExtUtils::Command'     => '1.15',
2323             'ExtUtils::Command::MM' => '6.48',
2324             'ExtUtils::Constant'    => '0.21',
2325             'ExtUtils::Constant::Base'=> '0.04',
2326             'ExtUtils::Constant::ProxySubs'=> '0.06',
2327             'ExtUtils::Constant::Utils'=> '0.02',
2328             'ExtUtils::Constant::XS'=> '0.02',
2329             'ExtUtils::Embed'       => '1.28',
2330             'ExtUtils::Install'     => '1.50_01',
2331             'ExtUtils::Installed'   => '1.43',
2332             'ExtUtils::Liblist'     => '6.48',
2333             'ExtUtils::Liblist::Kid'=> '6.48',
2334             'ExtUtils::MM'          => '6.48',
2335             'ExtUtils::MM_AIX'      => '6.48',
2336             'ExtUtils::MM_Any'      => '6.48',
2337             'ExtUtils::MM_BeOS'     => '6.48',
2338             'ExtUtils::MM_Cygwin'   => '6.48',
2339             'ExtUtils::MM_DOS'      => '6.48',
2340             'ExtUtils::MM_Darwin'   => '6.48',
2341             'ExtUtils::MM_MacOS'    => '6.48',
2342             'ExtUtils::MM_NW5'      => '6.48',
2343             'ExtUtils::MM_OS2'      => '6.48',
2344             'ExtUtils::MM_QNX'      => '6.48',
2345             'ExtUtils::MM_UWIN'     => '6.48',
2346             'ExtUtils::MM_Unix'     => '6.48',
2347             'ExtUtils::MM_VMS'      => '6.48',
2348             'ExtUtils::MM_VOS'      => '6.48',
2349             'ExtUtils::MM_Win32'    => '6.48',
2350             'ExtUtils::MM_Win95'    => '6.48',
2351             'ExtUtils::MY'          => '6.48',
2352             'ExtUtils::MakeMaker'   => '6.48',
2353             'ExtUtils::MakeMaker::Config'=> '6.48',
2354             'ExtUtils::MakeMaker::bytes'=> '6.48',
2355             'ExtUtils::MakeMaker::vmsish'=> '6.48',
2356             'ExtUtils::Manifest'    => '1.55',
2357             'ExtUtils::Mkbootstrap' => '6.48',
2358             'ExtUtils::Mksymlists'  => '6.48',
2359             'ExtUtils::Packlist'    => '1.43',
2360             'ExtUtils::ParseXS'     => '2.19',
2361             'ExtUtils::XSSymSet'    => '1.1',
2362             'ExtUtils::testlib'     => '6.48',
2363             'Fatal'                 => '1.06',
2364             'Fcntl'                 => '1.06',
2365             'File::Basename'        => '2.77',
2366             'File::CheckTree'       => '4.4',
2367             'File::Compare'         => '1.1005',
2368             'File::Copy'            => '2.13',
2369             'File::DosGlob'         => '1.01',
2370             'File::Find'            => '1.13',
2371             'File::Glob'            => '1.06',
2372             'File::Path'            => '2.07_02',
2373             'File::Spec'            => '3.29',
2374             'File::Spec::Cygwin'    => '3.29',
2375             'File::Spec::Epoc'      => '3.29',
2376             'File::Spec::Functions' => '3.29',
2377             'File::Spec::Mac'       => '3.29',
2378             'File::Spec::OS2'       => '3.29',
2379             'File::Spec::Unix'      => '3.29',
2380             'File::Spec::VMS'       => '3.29',
2381             'File::Spec::Win32'     => '3.29',
2382             'File::Temp'            => '0.20',
2383             'File::stat'            => '1.01',
2384             'FileCache'             => '1.07',
2385             'Filter::Simple'        => '0.83',
2386             'Filter::Util::Call'    => '1.07',
2387             'FindBin'               => '1.49',
2388             'GDBM_File'             => '1.09',
2389             'Getopt::Long'          => '2.37',
2390             'Getopt::Std'           => '1.06',
2391             'Hash::Util'            => '0.06',
2392             'IO'                    => '1.23',
2393             'IO::Dir'               => '1.06',
2394             'IO::File'              => '1.14',
2395             'IO::Handle'            => '1.27',
2396             'IO::Socket'            => '1.30',
2397             'IO::Socket::INET'      => '1.31',
2398             'IO::Socket::UNIX'      => '1.23',
2399             'IPC::Msg'              => '2.00',
2400             'IPC::Open2'            => '1.03',
2401             'IPC::Open3'            => '1.03',
2402             'IPC::Semaphore'        => '2.00',
2403             'IPC::SharedMem'        => '2.00',
2404             'IPC::SysV'             => '2.00',
2405             'List::Util'            => '1.19',
2406             'Locale::Maketext'      => '1.13',
2407             'Locale::Maketext::Guts'=> '1.13',
2408             'Locale::Maketext::GutsLoader'=> '1.13',
2409             'Math::BigFloat'        => '1.60',
2410             'Math::BigInt'          => '1.89',
2411             'Math::BigInt::Calc'    => '0.52',
2412             'Math::BigRat'          => '0.22',
2413             'Math::Complex'         => '1.54',
2414             'Math::Trig'            => '1.18',
2415             'Module::CoreList'      => '2.17',
2416             'Module::Pluggable'     => '3.8',
2417             'Module::Pluggable::Object'=> '3.6',
2418             'NDBM_File'             => '1.07',
2419             'NEXT'                  => '0.61',
2420             'Net::Cmd'              => '2.29',
2421             'Net::Config'           => '1.11',
2422             'Net::Domain'           => '2.20',
2423             'Net::FTP'              => '2.77',
2424             'Net::FTP::A'           => '1.18',
2425             'Net::NNTP'             => '2.24',
2426             'Net::POP3'             => '2.29',
2427             'Net::Ping'             => '2.35',
2428             'Net::SMTP'             => '2.31',
2429             'O'                     => '1.01',
2430             'ODBM_File'             => '1.07',
2431             'OS2::DLL'              => '1.03',
2432             'OS2::Process'          => '1.03',
2433             'Opcode'                => '1.0601',
2434             'POSIX'                 => '1.15',
2435             'PerlIO'                => '1.05',
2436             'PerlIO::encoding'      => '0.11',
2437             'PerlIO::scalar'        => '0.06',
2438             'PerlIO::via'           => '0.05',
2439             'Pod::Html'             => '1.09',
2440             'Pod::ParseUtils'       => '1.35',
2441             'Pod::Parser'           => '1.35',
2442             'Pod::Select'           => '1.35',
2443             'Pod::Usage'            => '1.35',
2444             'SDBM_File'             => '1.06',
2445             'Safe'                  => '2.16',
2446             'Scalar::Util'          => '1.19',
2447             'SelfLoader'            => '1.17',
2448             'Shell'                 => '0.72',
2449             'Socket'                => '1.81',
2450             'Storable'              => '2.19',
2451             'Switch'                => '2.13',
2452             'Sys::Syslog'           => '0.27',
2453             'Sys::Syslog::win32::Win32'=> undef,
2454             'Term::ANSIColor'       => '1.12',
2455             'Term::Cap'             => '1.12',
2456             'Term::ReadLine'        => '1.03',
2457             'Test::Builder'         => '0.80',
2458             'Test::Builder::Module' => '0.80',
2459             'Test::Builder::Tester' => '1.13',
2460             'Test::Harness'         => '2.64',
2461             'Test::Harness::Results'=> '0.01_01',
2462             'Test::Harness::Straps' => '0.26_01',
2463             'Test::Harness::Util'   => '0.01',
2464             'Test::More'            => '0.80',
2465             'Test::Simple'          => '0.80',
2466             'Text::Balanced'        => '1.98',
2467             'Text::ParseWords'      => '3.27',
2468             'Text::Soundex'         => '3.03',
2469             'Text::Tabs'            => '2007.1117',
2470             'Text::Wrap'            => '2006.1117',
2471             'Thread'                => '2.01',
2472             'Thread::Queue'         => '2.11',
2473             'Thread::Semaphore'     => '2.09',
2474             'Tie::Handle'           => '4.2',
2475             'Tie::Hash'             => '1.03',
2476             'Tie::Memoize'          => '1.1',
2477             'Tie::RefHash'          => '1.38',
2478             'Tie::Scalar'           => '1.01',
2479             'Tie::StdHandle'        => '4.2',
2480             'Time::HiRes'           => '1.9715',
2481             'Time::Local'           => '1.1901',
2482             'Time::gmtime'          => '1.03',
2483             'Unicode'               => '5.1.0',
2484             'Unicode::Normalize'    => '1.02',
2485             'Unicode::UCD'          => '0.25',
2486             'VMS::DCLsym'           => '1.03',
2487             'VMS::Stdio'            => '2.4',
2488             'Win32'                 => '0.38',
2489             'Win32API::File'        => '0.1001_01',
2490             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2491             'Win32CORE'             => '0.02',
2492             'XS::APItest'           => '0.15',
2493             'XS::Typemap'           => '0.03',
2494             'XSLoader'              => '0.10',
2495             'attributes'            => '0.09',
2496             'autouse'               => '1.06',
2497             'base'                  => '2.13',
2498             'bigint'                => '0.23',
2499             'bignum'                => '0.23',
2500             'bigrat'                => '0.23',
2501             'blib'                  => '1.04',
2502             'charnames'             => '1.06',
2503             'constant'              => '1.17',
2504             'diagnostics'           => '1.16',
2505             'encoding'              => '2.6_01',
2506             'fields'                => '2.12',
2507             'filetest'              => '1.02',
2508             'lib'                   => '0.61',
2509             'open'                  => '1.06',
2510             'ops'                   => '1.02',
2511             'overload'              => '1.06',
2512             're'                    => '0.0601',
2513             'sigtrap'               => '1.04',
2514             'threads'               => '1.71',
2515             'threads::shared'       => '1.27',
2516             'utf8'                  => '1.07',
2517             'warnings'              => '1.05_01',
2518         },
2519         removed => {
2520         }
2521     },
2522     5.009 => {
2523         delta_from => 5.008002,
2524         changed => {
2525             'B'                     => '1.03',
2526             'B::C'                  => '1.03',
2527             'B::Concise'            => '0.57',
2528             'B::Deparse'            => '0.65',
2529             'DB_File'               => '1.806',
2530             'Devel::PPPort'         => '2.008',
2531             'English'               => '1.02',
2532             'Fatal'                 => '1.04',
2533             'OS2::DLL'              => '1.02',
2534             'Opcode'                => '1.06',
2535             'Time::HiRes'           => '1.51',
2536             'Unicode::Collate'      => '0.28',
2537             'Unicode::Normalize'    => '0.23',
2538             'XSLoader'              => '0.03',
2539             'assertions'            => '0.01',
2540             'assertions::activate'  => '0.01',
2541             'overload'              => '1.02',
2542             'version'               => '0.29',
2543         },
2544         removed => {
2545         }
2546     },
2547     5.009001 => {
2548         delta_from => 5.008004,
2549         changed => {
2550             'B'                     => '1.05',
2551             'B::Assembler'          => '0.06',
2552             'B::C'                  => '1.04',
2553             'B::Concise'            => '0.59',
2554             'B::Debug'              => '1.02',
2555             'B::Deparse'            => '0.65',
2556             'DB_File'               => '1.808_01',
2557             'Devel::PPPort'         => '2.011_01',
2558             'Digest'                => '1.05',
2559             'DynaLoader'            => '1.04',
2560             'English'               => '1.02',
2561             'Exporter::Heavy'       => '5.567',
2562             'ExtUtils::Command'     => '1.07',
2563             'ExtUtils::Liblist::Kid'=> '1.3',
2564             'ExtUtils::MM_Any'      => '0.0901',
2565             'ExtUtils::MM_Cygwin'   => '1.07',
2566             'ExtUtils::MM_NW5'      => '2.07_01',
2567             'ExtUtils::MM_Unix'     => '1.45_01',
2568             'ExtUtils::MM_VMS'      => '5.71_01',
2569             'ExtUtils::MM_Win32'    => '1.10_01',
2570             'ExtUtils::MM_Win95'    => '0.03',
2571             'ExtUtils::MakeMaker'   => '6.21_02',
2572             'ExtUtils::Manifest'    => '1.43',
2573             'Fatal'                 => '1.04',
2574             'Getopt::Long'          => '2.3401',
2575             'IO::Handle'            => '1.23',
2576             'IO::Pipe'              => '1.122',
2577             'IPC::Open3'            => '1.0105',
2578             'MIME::Base64'          => '3.00_01',
2579             'MIME::QuotedPrint'     => '3.00',
2580             'Memoize'               => '1.01_01',
2581             'ODBM_File'             => '1.04',
2582             'Opcode'                => '1.06',
2583             'POSIX'                 => '1.07',
2584             'Storable'              => '2.11',
2585             'Time::HiRes'           => '1.56',
2586             'Time::Local'           => '1.07_94',
2587             'UNIVERSAL'             => '1.02',
2588             'Unicode'               => '4.0.0',
2589             'Unicode::UCD'          => '0.21',
2590             'XSLoader'              => '0.03',
2591             'assertions'            => '0.01',
2592             'assertions::activate'  => '0.01',
2593             'base'                  => '2.04',
2594             'if'                    => '0.0401',
2595             'open'                  => '1.02',
2596             'overload'              => '1.02',
2597             'threads'               => '1.02',
2598             'utf8'                  => '1.02',
2599             'version'               => '0.36',
2600         },
2601         removed => {
2602         }
2603     },
2604     5.009002 => {
2605         delta_from => 5.008007,
2606         changed => {
2607             'B'                     => '1.07',
2608             'B::Concise'            => '0.64',
2609             'B::Deparse'            => '0.69',
2610             'B::Disassembler'       => '1.03',
2611             'B::Terse'              => '1.02',
2612             'CGI'                   => '3.07',
2613             'Config::Extensions'    => '0.01',
2614             'Devel::DProf'          => '20030813.00',
2615             'DynaLoader'            => '1.07',
2616             'Encode'                => '2.09',
2617             'Encode::Alias'         => '2.02',
2618             'English'               => '1.03',
2619             'Exporter'              => '5.59',
2620             'Exporter::Heavy'       => '5.59',
2621             'ExtUtils::Command'     => '1.07',
2622             'ExtUtils::Command::MM' => '0.03_01',
2623             'ExtUtils::Embed'       => '1.26',
2624             'ExtUtils::Liblist::Kid'=> '1.3',
2625             'ExtUtils::MM_Any'      => '0.10',
2626             'ExtUtils::MM_Cygwin'   => '1.07',
2627             'ExtUtils::MM_MacOS'    => '1.08',
2628             'ExtUtils::MM_NW5'      => '2.07',
2629             'ExtUtils::MM_Unix'     => '1.46_01',
2630             'ExtUtils::MM_VMS'      => '5.71',
2631             'ExtUtils::MM_Win32'    => '1.10',
2632             'ExtUtils::MM_Win95'    => '0.03',
2633             'ExtUtils::MakeMaker'   => '6.25',
2634             'ExtUtils::Manifest'    => '1.44',
2635             'Fatal'                 => '1.04',
2636             'File::Path'            => '1.06',
2637             'FileCache'             => '1.04_01',
2638             'Getopt::Long'          => '2.3401',
2639             'IO::File'              => '1.10',
2640             'IO::Socket::INET'      => '1.27',
2641             'Math::BigFloat'        => '1.49',
2642             'Math::BigInt'          => '1.75',
2643             'Math::BigInt::Calc'    => '0.45',
2644             'Math::BigRat'          => '0.14',
2645             'Memoize'               => '1.01_01',
2646             'Module::CoreList'      => '1.99',
2647             'NEXT'                  => '0.60_01',
2648             'Opcode'                => '1.06',
2649             'Pod::Html'             => '1.0502',
2650             'Scalar::Util'          => '1.14_1',
2651             'Storable'              => '2.14',
2652             'Symbol'                => '1.05',
2653             'Test::Harness'         => '2.46',
2654             'Test::Harness::Straps' => '0.20_01',
2655             'Text::Balanced'        => '1.95_01',
2656             'Text::Wrap'            => '2001.09292',
2657             'UNIVERSAL'             => '1.02',
2658             'Unicode'               => '4.0.1',
2659             'Unicode::Normalize'    => '0.30',
2660             'Unicode::UCD'          => '0.22',
2661             'Win32'                 => '0.23',
2662             'XS::APItest'           => '0.05',
2663             'XSLoader'              => '0.03',
2664             'assertions'            => '0.01',
2665             'assertions::activate'  => '0.01',
2666             'base'                  => '2.06',
2667             'bigint'                => '0.06',
2668             'bignum'                => '0.16',
2669             'bigrat'                => '0.07',
2670             'bytes'                 => '1.01',
2671             'encoding::warnings'    => '0.05',
2672             'if'                    => '0.0401',
2673             're'                    => '0.05',
2674             'threads::shared'       => '0.92',
2675             'utf8'                  => '1.04',
2676             'version'               => '0.42',
2677             'warnings'              => '1.04',
2678         },
2679         removed => {
2680             'Test::Harness::Point'  => 1,
2681         }
2682     },
2683     5.009003 => {
2684         delta_from => 5.008008,
2685         changed => {
2686             'Archive::Tar'          => '1.26_01',
2687             'Archive::Tar::Constant'=> '0.02',
2688             'Archive::Tar::File'    => '0.02',
2689             'AutoSplit'             => '1.04_01',
2690             'B'                     => '1.10',
2691             'B::Bblock'             => '1.02',
2692             'B::Bytecode'           => '1.01',
2693             'B::C'                  => '1.04',
2694             'B::CC'                 => '1.00',
2695             'B::Concise'            => '0.67',
2696             'B::Debug'              => '1.02',
2697             'B::Deparse'            => '0.73',
2698             'B::Lint'               => '1.04',
2699             'B::Terse'              => '1.03',
2700             'CGI'                   => '3.15_01',
2701             'CPAN'                  => '1.83_58',
2702             'CPAN::Debug'           => '4.44',
2703             'CPAN::FirstTime'       => '4.50',
2704             'CPAN::HandleConfig'    => '4.31',
2705             'CPAN::Nox'             => '2.31',
2706             'CPAN::Tarzip'          => '3.36',
2707             'CPAN::Version'         => '2.55',
2708             'Carp'                  => '1.05',
2709             'Carp::Heavy'           => '1.05',
2710             'Compress::Zlib'        => '2.000_07',
2711             'Compress::Zlib::Common'=> '2.000_07',
2712             'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2713             'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2714             'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2715             'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2716             'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2717             'Compress::Zlib::FileConstants'=> '2.000_07',
2718             'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2719             'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2720             'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2721             'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2722             'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2723             'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2724             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2725             'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2726             'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2727             'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2728             'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2729             'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2730             'Compress::Zlib::ParseParameters'=> '2.000_07',
2731             'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2732             'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2733             'Config::Extensions'    => '0.01',
2734             'Cwd'                   => '3.15',
2735             'Devel::PPPort'         => '3.08',
2736             'Digest::SHA'           => '5.32',
2737             'DirHandle'             => '1.01',
2738             'DynaLoader'            => '1.07',
2739             'Encode'                => '2.14',
2740             'Encode::CN::HZ'        => '2.02',
2741             'Encode::MIME::Header'  => '2.02',
2742             'English'               => '1.04',
2743             'Exporter'              => '5.59',
2744             'Exporter::Heavy'       => '5.59',
2745             'ExtUtils::CBuilder'    => '0.15',
2746             'ExtUtils::CBuilder::Base'=> '0.12',
2747             'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2748             'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2749             'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2750             'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2751             'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2752             'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2753             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2754             'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2755             'ExtUtils::Command::MM' => '0.05_01',
2756             'ExtUtils::Constant'    => '0.2',
2757             'ExtUtils::Constant::Base'=> '0.02',
2758             'ExtUtils::Constant::ProxySubs'=> '0.01',
2759             'ExtUtils::Constant::XS'=> '0.02',
2760             'ExtUtils::MM_Any'      => '0.13_01',
2761             'ExtUtils::MM_Unix'     => '1.50_01',
2762             'ExtUtils::MakeMaker'   => '6.30_01',
2763             'ExtUtils::ParseXS'     => '2.15_02',
2764             'Fatal'                 => '1.04',
2765             'File::Compare'         => '1.1005',
2766             'File::Spec'            => '3.15',
2767             'File::Temp'            => '0.16_01',
2768             'IO::File'              => '1.13_01',
2769             'IO::Handle'            => '1.26',
2770             'IO::Socket'            => '1.29_01',
2771             'IO::Socket::INET'      => '1.29_02',
2772             'IO::Socket::UNIX'      => '1.22_01',
2773             'IO::Zlib'              => '1.04_02',
2774             'Locale::Maketext'      => '1.10_01',
2775             'Math::BigInt::FastCalc'=> '0.10',
2776             'Memoize'               => '1.01_01',
2777             'Module::CoreList'      => '2.02',
2778             'Moped::Msg'            => '0.01',
2779             'NEXT'                  => '0.60_01',
2780             'Net::Cmd'              => '2.26_01',
2781             'Net::Domain'           => '2.19_01',
2782             'Net::Ping'             => '2.31_04',
2783             'Opcode'                => '1.08',
2784             'POSIX'                 => '1.10',
2785             'Pod::Escapes'          => '1.04',
2786             'Pod::Man'              => '2.04',
2787             'Pod::Perldoc'          => '3.14_01',
2788             'Pod::Simple'           => '3.04',
2789             'Pod::Simple::BlackBox' => undef,
2790             'Pod::Simple::Checker'  => '2.02',
2791             'Pod::Simple::Debug'    => undef,
2792             'Pod::Simple::DumpAsText'=> '2.02',
2793             'Pod::Simple::DumpAsXML'=> '2.02',
2794             'Pod::Simple::HTML'     => '3.03',
2795             'Pod::Simple::HTMLBatch'=> '3.02',
2796             'Pod::Simple::HTMLLegacy'=> '5.01',
2797             'Pod::Simple::LinkSection'=> undef,
2798             'Pod::Simple::Methody'  => '2.02',
2799             'Pod::Simple::Progress' => '1.01',
2800             'Pod::Simple::PullParser'=> '2.02',
2801             'Pod::Simple::PullParserEndToken'=> undef,
2802             'Pod::Simple::PullParserStartToken'=> undef,
2803             'Pod::Simple::PullParserTextToken'=> undef,
2804             'Pod::Simple::PullParserToken'=> '2.02',
2805             'Pod::Simple::RTF'      => '2.02',
2806             'Pod::Simple::Search'   => '3.04',
2807             'Pod::Simple::SimpleTree'=> '2.02',
2808             'Pod::Simple::Text'     => '2.02',
2809             'Pod::Simple::TextContent'=> '2.02',
2810             'Pod::Simple::TiedOutFH'=> undef,
2811             'Pod::Simple::Transcode'=> undef,
2812             'Pod::Simple::TranscodeDumb'=> '2.02',
2813             'Pod::Simple::TranscodeSmart'=> undef,
2814             'Pod::Simple::XMLOutStream'=> '2.02',
2815             'Pod::Text'             => '3.01',
2816             'Pod::Text::Color'      => '2.01',
2817             'Pod::Text::Overstrike' => '2',
2818             'Pod::Text::Termcap'    => '2.01',
2819             'Pod::Usage'            => '1.33_01',
2820             'SelfLoader'            => '1.0905',
2821             'Storable'              => '2.15_02',
2822             'Test::Builder::Module' => '0.03',
2823             'Text::Balanced'        => '1.95_01',
2824             'Tie::File'             => '0.97_01',
2825             'UNIVERSAL'             => '1.03',
2826             'XS::APItest'           => '0.09',
2827             'assertions'            => '0.02',
2828             'assertions::activate'  => '0.02',
2829             'assertions::compat'    => undef,
2830             'constant'              => '1.07',
2831             'encoding::warnings'    => '0.05',
2832             'feature'               => '1.00',
2833             're'                    => '0.06',
2834             'sort'                  => '2.00',
2835             'version'               => '0.53',
2836         },
2837         removed => {
2838         }
2839     },
2840     5.009004 => {
2841         delta_from => 5.009003,
2842         changed => {
2843             'Archive::Tar'          => '1.30_01',
2844             'AutoLoader'            => '5.61',
2845             'B'                     => '1.11',
2846             'B::Bytecode'           => '1.02',
2847             'B::C'                  => '1.05',
2848             'B::Concise'            => '0.69',
2849             'B::Deparse'            => '0.76',
2850             'B::Lint'               => '1.08',
2851             'Benchmark'             => '1.08',
2852             'CGI'                   => '3.20',
2853             'CGI::Cookie'           => '1.27',
2854             'CGI::Fast'             => '1.07',
2855             'CPAN'                  => '1.87_55',
2856             'CPAN::Debug'           => '5.400561',
2857             'CPAN::FirstTime'       => '5.400742',
2858             'CPAN::HandleConfig'    => '5.400740',
2859             'CPAN::Nox'             => '5.400561',
2860             'CPAN::Tarzip'          => '5.400714',
2861             'CPAN::Version'         => '5.400561',
2862             'Compress::Raw::Zlib'   => '2.000_13',
2863             'Compress::Zlib'        => '2.000_13',
2864             'Cwd'                   => '3.19',
2865             'Devel::PPPort'         => '3.10',
2866             'Digest'                => '1.15',
2867             'Digest::SHA'           => '5.43',
2868             'Encode'                => '2.18_01',
2869             'Encode::Alias'         => '2.06',
2870             'Encode::Byte'          => '2.02',
2871             'Encode::CJKConstants'  => '2.02',
2872             'Encode::CN'            => '2.02',
2873             'Encode::CN::HZ'        => '2.04',
2874             'Encode::Config'        => '2.03',
2875             'Encode::EBCDIC'        => '2.02',
2876             'Encode::Encoder'       => '2.01',
2877             'Encode::Encoding'      => '2.04',
2878             'Encode::Guess'         => '2.02',
2879             'Encode::JP'            => '2.03',
2880             'Encode::JP::H2Z'       => '2.02',
2881             'Encode::JP::JIS7'      => '2.02',
2882             'Encode::KR'            => '2.02',
2883             'Encode::KR::2022_KR'   => '2.02',
2884             'Encode::MIME::Header'  => '2.04',
2885             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2886             'Encode::Symbol'        => '2.02',
2887             'Encode::TW'            => '2.02',
2888             'Encode::Unicode'       => '2.03',
2889             'Encode::Unicode::UTF7' => '2.04',
2890             'ExtUtils::CBuilder'    => '0.18',
2891             'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2892             'ExtUtils::Constant::Base'=> '0.03',
2893             'ExtUtils::Constant::ProxySubs'=> '0.03',
2894             'ExtUtils::Install'     => '1.41',
2895             'ExtUtils::Installed'   => '1.41',
2896             'ExtUtils::MM_Any'      => '0.13_02',
2897             'ExtUtils::MM_NW5'      => '2.08_01',
2898             'ExtUtils::MM_Unix'     => '1.5003',
2899             'ExtUtils::MM_VMS'      => '5.73_03',
2900             'ExtUtils::MM_Win32'    => '1.12_02',
2901             'ExtUtils::MM_Win95'    => '0.04_01',
2902             'ExtUtils::MakeMaker'   => '6.30_02',
2903             'ExtUtils::Manifest'    => '1.46_01',
2904             'ExtUtils::Mkbootstrap' => '1.15_01',
2905             'ExtUtils::Mksymlists'  => '1.19_01',
2906             'ExtUtils::Packlist'    => '1.41',
2907             'File::Basename'        => '2.75',
2908             'File::Find'            => '1.11',
2909             'File::GlobMapper'      => '0.000_02',
2910             'File::Spec'            => '3.19',
2911             'FileCache'             => '1.07',
2912             'Getopt::Long'          => '2.3501',
2913             'Hash::Util'            => '0.07',
2914             'Hash::Util::FieldHash' => '0.01',
2915             'IO'                    => '1.23_01',
2916             'IO::Compress::Adapter::Deflate'=> '2.000_13',
2917             'IO::Compress::Adapter::Identity'=> '2.000_13',
2918             'IO::Compress::Base'    => '2.000_13',
2919             'IO::Compress::Base::Common'=> '2.000_13',
2920             'IO::Compress::Deflate' => '2.000_13',
2921             'IO::Compress::Gzip'    => '2.000_13',
2922             'IO::Compress::Gzip::Constants'=> '2.000_13',
2923             'IO::Compress::RawDeflate'=> '2.000_13',
2924             'IO::Compress::Zip'     => '2.000_13',
2925             'IO::Compress::Zip::Constants'=> '2.000_13',
2926             'IO::Compress::Zlib::Constants'=> '2.000_13',
2927             'IO::Compress::Zlib::Extra'=> '2.000_13',
2928             'IO::Dir'               => '1.06',
2929             'IO::File'              => '1.14',
2930             'IO::Handle'            => '1.27',
2931             'IO::Socket'            => '1.30_01',
2932             'IO::Socket::INET'      => '1.31',
2933             'IO::Socket::UNIX'      => '1.23',
2934             'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2935             'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2936             'IO::Uncompress::AnyInflate'=> '2.000_13',
2937             'IO::Uncompress::AnyUncompress'=> '2.000_13',
2938             'IO::Uncompress::Base'  => '2.000_13',
2939             'IO::Uncompress::Gunzip'=> '2.000_13',
2940             'IO::Uncompress::Inflate'=> '2.000_13',
2941             'IO::Uncompress::RawInflate'=> '2.000_13',
2942             'IO::Uncompress::Unzip' => '2.000_13',
2943             'MIME::Base64'          => '3.07_01',
2944             'Math::Complex'         => '1.36',
2945             'Math::Trig'            => '1.04',
2946             'Module::Build'         => '0.2805',
2947             'Module::Build::Base'   => undef,
2948             'Module::Build::Compat' => '0.03',
2949             'Module::Build::ConfigData'=> undef,
2950             'Module::Build::Cookbook'=> undef,
2951             'Module::Build::ModuleInfo'=> undef,
2952             'Module::Build::Notes'  => undef,
2953             'Module::Build::PPMMaker'=> undef,
2954             'Module::Build::Platform::Amiga'=> undef,
2955             'Module::Build::Platform::Default'=> undef,
2956             'Module::Build::Platform::EBCDIC'=> undef,
2957             'Module::Build::Platform::MPEiX'=> undef,
2958             'Module::Build::Platform::MacOS'=> undef,
2959             'Module::Build::Platform::RiscOS'=> undef,
2960             'Module::Build::Platform::Unix'=> undef,
2961             'Module::Build::Platform::VMS'=> undef,
2962             'Module::Build::Platform::VOS'=> undef,
2963             'Module::Build::Platform::Windows'=> undef,
2964             'Module::Build::Platform::aix'=> undef,
2965             'Module::Build::Platform::cygwin'=> undef,
2966             'Module::Build::Platform::darwin'=> undef,
2967             'Module::Build::Platform::os2'=> undef,
2968             'Module::Build::PodParser'=> undef,
2969             'Module::Build::Version'=> '0',
2970             'Module::Build::YAML'   => '0.50',
2971             'Module::CoreList'      => '2.08',
2972             'Module::Load'          => '0.10',
2973             'Module::Loaded'        => '0.01',
2974             'Package::Constants'    => '0.01',
2975             'Pod::Html'             => '1.07',
2976             'Pod::Man'              => '2.09',
2977             'Pod::Text'             => '3.07',
2978             'Pod::Text::Color'      => '2.03',
2979             'Pod::Text::Termcap'    => '2.03',
2980             'SDBM_File'             => '1.06',
2981             'Shell'                 => '0.7',
2982             'Sys::Syslog'           => '0.17',
2983             'Term::ANSIColor'       => '1.11',
2984             'Test::Builder'         => '0.33',
2985             'Test::Builder::Tester' => '1.04',
2986             'Test::Harness'         => '2.62',
2987             'Test::Harness::Util'   => '0.01',
2988             'Test::More'            => '0.64',
2989             'Test::Simple'          => '0.64',
2990             'Text::Balanced'        => '1.98_01',
2991             'Text::ParseWords'      => '3.25',
2992             'Text::Tabs'            => '2007.071101',
2993             'Text::Wrap'            => '2006.0711',
2994             'Tie::RefHash'          => '1.34_01',
2995             'Time::HiRes'           => '1.87',
2996             'Time::Local'           => '1.13',
2997             'Time::gmtime'          => '1.03',
2998             'UNIVERSAL'             => '1.04',
2999             'Unicode::Normalize'    => '1.01',
3000             'Win32API::File'        => '0.1001',
3001             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
3002             'assertions'            => '0.03',
3003             'assertions::compat'    => '0.02',
3004             'autouse'               => '1.06',
3005             'diagnostics'           => '1.16',
3006             'encoding'              => '2.04',
3007             'encoding::warnings'    => '0.10',
3008             'feature'               => '1.01',
3009             're'                    => '0.0601',
3010             'threads'               => '1.38',
3011             'threads::shared'       => '0.94_01',
3012             'version'               => '0.67',
3013         },
3014         removed => {
3015             'Compress::Zlib::Common'=> 1,
3016             'Compress::Zlib::Compress::Gzip::Constants'=> 1,
3017             'Compress::Zlib::Compress::Zip::Constants'=> 1,
3018             'Compress::Zlib::CompressPlugin::Deflate'=> 1,
3019             'Compress::Zlib::CompressPlugin::Identity'=> 1,
3020             'Compress::Zlib::File::GlobMapper'=> 1,
3021             'Compress::Zlib::FileConstants'=> 1,
3022             'Compress::Zlib::IO::Compress::Base'=> 1,
3023             'Compress::Zlib::IO::Compress::Deflate'=> 1,
3024             'Compress::Zlib::IO::Compress::Gzip'=> 1,
3025             'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
3026             'Compress::Zlib::IO::Compress::Zip'=> 1,
3027             'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
3028             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
3029             'Compress::Zlib::IO::Uncompress::Base'=> 1,
3030             'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
3031             'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
3032             'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
3033             'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
3034             'Compress::Zlib::ParseParameters'=> 1,
3035             'Compress::Zlib::UncompressPlugin::Identity'=> 1,
3036             'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
3037         }
3038     },
3039     5.009005 => {
3040         delta_from => 5.009004,
3041         changed => {
3042             'Archive::Extract'      => '0.22_01',
3043             'Archive::Tar'          => '1.32',
3044             'Attribute::Handlers'   => '0.78_06',
3045             'AutoLoader'            => '5.63',
3046             'AutoSplit'             => '1.05',
3047             'B'                     => '1.16',
3048             'B::Concise'            => '0.72',
3049             'B::Debug'              => '1.05',
3050             'B::Deparse'            => '0.82',
3051             'B::Lint'               => '1.09',
3052             'B::Terse'              => '1.05',
3053             'Benchmark'             => '1.1',
3054             'CGI'                   => '3.29',
3055             'CGI::Cookie'           => '1.28',
3056             'CGI::Util'             => '1.5_01',
3057             'CPAN'                  => '1.9102',
3058             'CPAN::Debug'           => '5.400955',
3059             'CPAN::FirstTime'       => '5.401669',
3060             'CPAN::HandleConfig'    => '5.401744',
3061             'CPAN::Kwalify'         => '5.401418',
3062             'CPAN::Nox'             => '5.400844',
3063             'CPAN::Queue'           => '5.401704',
3064             'CPAN::Tarzip'          => '5.401717',
3065             'CPAN::Version'         => '5.401387',
3066             'CPANPLUS'              => '0.81_01',
3067             'CPANPLUS::Backend'     => undef,
3068             'CPANPLUS::Backend::RV' => undef,
3069             'CPANPLUS::Config'      => undef,
3070             'CPANPLUS::Configure'   => undef,
3071             'CPANPLUS::Configure::Setup'=> undef,
3072             'CPANPLUS::Dist'        => undef,
3073             'CPANPLUS::Dist::Base'  => '0.01',
3074             'CPANPLUS::Dist::Build' => '0.06_01',
3075             'CPANPLUS::Dist::Build::Constants'=> '0.01',
3076             'CPANPLUS::Dist::MM'    => undef,
3077             'CPANPLUS::Dist::Sample'=> undef,
3078             'CPANPLUS::Error'       => undef,
3079             'CPANPLUS::Internals'   => '0.81_01',
3080             'CPANPLUS::Internals::Constants'=> '0.01',
3081             'CPANPLUS::Internals::Constants::Report'=> '0.01',
3082             'CPANPLUS::Internals::Extract'=> undef,
3083             'CPANPLUS::Internals::Fetch'=> undef,
3084             'CPANPLUS::Internals::Report'=> undef,
3085             'CPANPLUS::Internals::Search'=> undef,
3086             'CPANPLUS::Internals::Source'=> undef,
3087             'CPANPLUS::Internals::Utils'=> undef,
3088             'CPANPLUS::Internals::Utils::Autoflush'=> undef,
3089             'CPANPLUS::Module'      => undef,
3090             'CPANPLUS::Module::Author'=> undef,
3091             'CPANPLUS::Module::Author::Fake'=> undef,
3092             'CPANPLUS::Module::Checksums'=> undef,
3093             'CPANPLUS::Module::Fake'=> undef,
3094             'CPANPLUS::Module::Signature'=> undef,
3095             'CPANPLUS::Selfupdate'  => undef,
3096             'CPANPLUS::Shell'       => undef,
3097             'CPANPLUS::Shell::Classic'=> '0.0562',
3098             'CPANPLUS::Shell::Default'=> '0.81_01',
3099             'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
3100             'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
3101             'CPANPLUS::inc'         => undef,
3102             'Carp'                  => '1.07',
3103             'Carp::Heavy'           => '1.07',
3104             'Compress::Raw::Zlib'   => '2.005',
3105             'Compress::Zlib'        => '2.005',
3106             'Cwd'                   => '3.25',
3107             'DBM_Filter'            => '0.02',
3108             'DB_File'               => '1.815',
3109             'Data::Dumper'          => '2.121_13',
3110             'Devel::InnerPackage'   => '0.3',
3111             'Devel::PPPort'         => '3.11_01',
3112             'Digest::MD5'           => '2.36_01',
3113             'Digest::SHA'           => '5.44',
3114             'DynaLoader'            => '1.08',
3115             'Encode'                => '2.23',
3116             'Encode::Alias'         => '2.07',
3117             'Encode::Byte'          => '2.03',
3118             'Encode::Config'        => '2.04',
3119             'Encode::Encoding'      => '2.05',
3120             'Encode::GSM0338'       => '2.00',
3121             'Encode::JP::JIS7'      => '2.03',
3122             'Encode::MIME::Header'  => '2.05',
3123             'Encode::MIME::Name'    => '1.01',
3124             'Encode::Unicode'       => '2.05',
3125             'Errno'                 => '1.10',
3126             'Exporter'              => '5.60',
3127             'Exporter::Heavy'       => '5.60',
3128             'ExtUtils::CBuilder'    => '0.19',
3129             'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3130             'ExtUtils::Command'     => '1.13',
3131             'ExtUtils::Command::MM' => '0.07',
3132             'ExtUtils::Constant::Base'=> '0.04',
3133             'ExtUtils::Install'     => '1.41_01',
3134             'ExtUtils::Liblist'     => '1.03',
3135             'ExtUtils::Liblist::Kid'=> '1.33',
3136             'ExtUtils::MM'          => '0.07',
3137             'ExtUtils::MM_AIX'      => '0.05',
3138             'ExtUtils::MM_Any'      => '0.15',
3139             'ExtUtils::MM_BeOS'     => '1.07',
3140             'ExtUtils::MM_Cygwin'   => '1.1',
3141             'ExtUtils::MM_DOS'      => '0.04',
3142             'ExtUtils::MM_MacOS'    => '1.1',
3143             'ExtUtils::MM_NW5'      => '2.1',
3144             'ExtUtils::MM_OS2'      => '1.07',
3145             'ExtUtils::MM_QNX'      => '0.04',
3146             'ExtUtils::MM_UWIN'     => '0.04',
3147             'ExtUtils::MM_Unix'     => '1.54_01',
3148             'ExtUtils::MM_VMS'      => '5.76',
3149             'ExtUtils::MM_VOS'      => '0.04',
3150             'ExtUtils::MM_Win32'    => '1.15',
3151             'ExtUtils::MM_Win95'    => '0.06',
3152             'ExtUtils::MY'          => '0.03',
3153             'ExtUtils::MakeMaker'   => '6.36',
3154             'ExtUtils::MakeMaker::Config'=> '0.04',
3155             'ExtUtils::MakeMaker::bytes'=> '0.03',
3156             'ExtUtils::MakeMaker::vmsish'=> '0.03',
3157             'ExtUtils::Manifest'    => '1.51_01',
3158             'ExtUtils::Mkbootstrap' => '1.17',
3159             'ExtUtils::Mksymlists'  => '1.21',
3160             'ExtUtils::ParseXS'     => '2.18',
3161             'ExtUtils::XSSymSet'    => '1.1',
3162             'ExtUtils::testlib'     => '1.17',
3163             'Fatal'                 => '1.05',
3164             'Fcntl'                 => '1.06',
3165             'File::Basename'        => '2.76',
3166             'File::Copy'            => '2.10',
3167             'File::Fetch'           => '0.10',
3168             'File::Glob'            => '1.06',
3169             'File::Path'            => '2.01',
3170             'File::Spec'            => '3.25',
3171             'File::Spec::Cygwin'    => '1.1_01',
3172             'File::Spec::VMS'       => '1.4_01',
3173             'File::Temp'            => '0.18',
3174             'Filter::Util::Call'    => '1.0602',
3175             'FindBin'               => '1.49',
3176             'Getopt::Long'          => '2.36',
3177             'Hash::Util::FieldHash' => '1.01',
3178             'IO::Compress::Adapter::Deflate'=> '2.005',
3179             'IO::Compress::Adapter::Identity'=> '2.005',
3180             'IO::Compress::Base'    => '2.005',
3181             'IO::Compress::Base::Common'=> '2.005',
3182             'IO::Compress::Deflate' => '2.005',
3183             'IO::Compress::Gzip'    => '2.005',
3184             'IO::Compress::Gzip::Constants'=> '2.005',
3185             'IO::Compress::RawDeflate'=> '2.005',
3186             'IO::Compress::Zip'     => '2.005',
3187             'IO::Compress::Zip::Constants'=> '2.005',
3188             'IO::Compress::Zlib::Constants'=> '2.005',
3189             'IO::Compress::Zlib::Extra'=> '2.005',
3190             'IO::Uncompress::Adapter::Identity'=> '2.005',
3191             'IO::Uncompress::Adapter::Inflate'=> '2.005',
3192             'IO::Uncompress::AnyInflate'=> '2.005',
3193             'IO::Uncompress::AnyUncompress'=> '2.005',
3194             'IO::Uncompress::Base'  => '2.005',
3195             'IO::Uncompress::Gunzip'=> '2.005',
3196             'IO::Uncompress::Inflate'=> '2.005',
3197             'IO::Uncompress::RawInflate'=> '2.005',
3198             'IO::Uncompress::Unzip' => '2.005',
3199             'IO::Zlib'              => '1.05_01',
3200             'IPC::Cmd'              => '0.36_01',
3201             'List::Util'            => '1.19',
3202             'Locale::Maketext::Simple'=> '0.18',
3203             'Log::Message'          => '0.01',
3204             'Log::Message::Config'  => '0.01',
3205             'Log::Message::Handlers'=> undef,
3206             'Log::Message::Item'    => undef,
3207             'Log::Message::Simple'  => '0.0201',
3208             'Math::BigFloat'        => '1.58',
3209             'Math::BigInt'          => '1.87',
3210             'Math::BigInt::Calc'    => '0.51',
3211             'Math::BigInt::FastCalc'=> '0.15_01',
3212             'Math::BigRat'          => '0.19',
3213             'Math::Complex'         => '1.37',
3214             'Memoize'               => '1.01_02',
3215             'Module::Build'         => '0.2808',
3216             'Module::Build::Config' => undef,
3217             'Module::Build::Version'=> '0.7203',
3218             'Module::CoreList'      => '2.12',
3219             'Module::Load::Conditional'=> '0.16',
3220             'Module::Pluggable'     => '3.6',
3221             'Module::Pluggable::Object'=> '3.6',
3222             'NDBM_File'             => '1.07',
3223             'Net::Cmd'              => '2.28',
3224             'Net::Config'           => '1.11',
3225             'Net::Domain'           => '2.20',
3226             'Net::FTP'              => '2.77',
3227             'Net::FTP::A'           => '1.18',
3228             'Net::NNTP'             => '2.24',
3229             'Net::POP3'             => '2.29',
3230             'Net::SMTP'             => '2.31',
3231             'ODBM_File'             => '1.07',
3232             'OS2::DLL'              => '1.03',
3233             'Object::Accessor'      => '0.32',
3234             'Opcode'                => '1.09',
3235             'POSIX'                 => '1.13',
3236             'Params::Check'         => '0.26',
3237             'PerlIO::encoding'      => '0.10',
3238             'PerlIO::scalar'        => '0.05',
3239             'PerlIO::via'           => '0.04',
3240             'Pod::Html'             => '1.08',
3241             'Pod::Man'              => '2.12',
3242             'Pod::ParseUtils'       => '1.35',
3243             'Pod::Parser'           => '1.35',
3244             'Pod::Select'           => '1.35',
3245             'Pod::Simple'           => '3.05',
3246             'Pod::Text'             => '3.08',
3247             'Pod::Usage'            => '1.35',
3248             'Scalar::Util'          => '1.19',
3249             'SelfLoader'            => '1.11',
3250             'Shell'                 => '0.72_01',
3251             'Socket'                => '1.79',
3252             'Storable'              => '2.16',
3253             'Switch'                => '2.13',
3254             'Sys::Syslog'           => '0.18_01',
3255             'Term::ANSIColor'       => '1.12',
3256             'Term::UI'              => '0.14_01',
3257             'Term::UI::History'     => undef,
3258             'Test::Builder'         => '0.70',
3259             'Test::Builder::Module' => '0.68',
3260             'Test::Builder::Tester' => '1.07',
3261             'Test::Harness'         => '2.64',
3262             'Test::Harness::Results'=> '0.01',
3263             'Test::More'            => '0.70',
3264             'Test::Simple'          => '0.70',
3265             'Text::Balanced'        => '2.0.0',
3266             'Text::Soundex'         => '3.02',
3267             'Text::Tabs'            => '2007.1117',
3268             'Text::Wrap'            => '2006.1117',
3269             'Thread'                => '3.02',
3270             'Tie::File'             => '0.97_02',
3271             'Tie::Hash::NamedCapture'=> '0.06',
3272             'Tie::Memoize'          => '1.1',
3273             'Tie::RefHash'          => '1.37',
3274             'Time::HiRes'           => '1.9707',
3275             'Time::Local'           => '1.17',
3276             'Time::Piece'           => '1.11_02',
3277             'Time::Seconds'         => undef,
3278             'Unicode'               => '5.0.0',
3279             'Unicode::Normalize'    => '1.02',
3280             'Unicode::UCD'          => '0.25',
3281             'VMS::DCLsym'           => '1.03',
3282             'Win32'                 => '0.30',
3283             'Win32API::File'        => '0.1001_01',
3284             'Win32CORE'             => '0.02',
3285             'XS::APItest'           => '0.12',
3286             'XSLoader'              => '0.08',
3287             'attributes'            => '0.08',
3288             'base'                  => '2.12',
3289             'bigint'                => '0.22',
3290             'bignum'                => '0.22',
3291             'bigrat'                => '0.22',
3292             'bytes'                 => '1.03',
3293             'charnames'             => '1.06',
3294             'constant'              => '1.10',
3295             'diagnostics'           => '1.17',
3296             'encoding'              => '2.06',
3297             'encoding::warnings'    => '0.11',
3298             'feature'               => '1.10',
3299             'fields'                => '2.12',
3300             'less'                  => '0.02',
3301             'mro'                   => '1.00',
3302             'overload'              => '1.06',
3303             're'                    => '0.08',
3304             'sigtrap'               => '1.04',
3305             'sort'                  => '2.01',
3306             'strict'                => '1.04',
3307             'threads'               => '1.63',
3308             'threads::shared'       => '1.12',
3309             'utf8'                  => '1.07',
3310             'version'               => '0.7203',
3311             'warnings'              => '1.06',
3312         },
3313         removed => {
3314             'B::Asmdata'            => 1,
3315             'B::Assembler'          => 1,
3316             'B::Bblock'             => 1,
3317             'B::Bytecode'           => 1,
3318             'B::C'                  => 1,
3319             'B::CC'                 => 1,
3320             'B::Disassembler'       => 1,
3321             'B::Stackobj'           => 1,
3322             'B::Stash'              => 1,
3323             'ByteLoader'            => 1,
3324             'Thread::Signal'        => 1,
3325             'Thread::Specific'      => 1,
3326             'assertions'            => 1,
3327             'assertions::activate'  => 1,
3328             'assertions::compat'    => 1,
3329         }
3330     },
3331     5.01 => {
3332         delta_from => 5.009005,
3333         changed => {
3334             'Archive::Extract'      => '0.24',
3335             'Archive::Tar'          => '1.38',
3336             'Attribute::Handlers'   => '0.79',
3337             'B'                     => '1.17',
3338             'B::Concise'            => '0.74',
3339             'B::Deparse'            => '0.83',
3340             'CPAN'                  => '1.9205',
3341             'CPAN::API::HOWTO'      => undef,
3342             'CPAN::Debug'           => '5.402212',
3343             'CPAN::DeferedCode'     => '5.50',
3344             'CPAN::FirstTime'       => '5.402229',
3345             'CPAN::HandleConfig'    => '5.402212',
3346             'CPAN::Nox'             => '5.402411',
3347             'CPAN::Queue'           => '5.402212',
3348             'CPAN::Tarzip'          => '5.402213',
3349             'CPAN::Version'         => '5.5',
3350             'CPANPLUS'              => '0.84',
3351             'CPANPLUS::Dist::Build' => '0.06_02',
3352             'CPANPLUS::Internals'   => '0.84',
3353             'CPANPLUS::Shell::Default'=> '0.84',
3354             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3355             'Carp'                  => '1.08',
3356             'Carp::Heavy'           => '1.08',
3357             'Compress::Raw::Zlib'   => '2.008',
3358             'Compress::Zlib'        => '2.008',
3359             'Cwd'                   => '3.2501',
3360             'DB_File'               => '1.816_1',
3361             'Data::Dumper'          => '2.121_14',
3362             'Devel::PPPort'         => '3.13',
3363             'Digest::SHA'           => '5.45',
3364             'Exporter'              => '5.62',
3365             'Exporter::Heavy'       => '5.62',
3366             'ExtUtils::CBuilder'    => '0.21',
3367             'ExtUtils::CBuilder::Base'=> '0.21',
3368             'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3369             'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3370             'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3371             'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3372             'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3373             'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3374             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3375             'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3376             'ExtUtils::Command::MM' => '6.42',
3377             'ExtUtils::Constant::ProxySubs'=> '0.05',
3378             'ExtUtils::Embed'       => '1.27',
3379             'ExtUtils::Install'     => '1.44',
3380             'ExtUtils::Installed'   => '1.43',
3381             'ExtUtils::Liblist'     => '6.42',
3382             'ExtUtils::Liblist::Kid'=> '6.42',
3383             'ExtUtils::MM'          => '6.42',
3384             'ExtUtils::MM_AIX'      => '6.42',
3385             'ExtUtils::MM_Any'      => '6.42',
3386             'ExtUtils::MM_BeOS'     => '6.42',
3387             'ExtUtils::MM_Cygwin'   => '6.42',
3388             'ExtUtils::MM_DOS'      => '6.42',
3389             'ExtUtils::MM_MacOS'    => '6.42',
3390             'ExtUtils::MM_NW5'      => '6.42',
3391             'ExtUtils::MM_OS2'      => '6.42',
3392             'ExtUtils::MM_QNX'      => '6.42',
3393             'ExtUtils::MM_UWIN'     => '6.42',
3394             'ExtUtils::MM_Unix'     => '6.42',
3395             'ExtUtils::MM_VMS'      => '6.42',
3396             'ExtUtils::MM_VOS'      => '6.42',
3397             'ExtUtils::MM_Win32'    => '6.42',
3398             'ExtUtils::MM_Win95'    => '6.42',
3399             'ExtUtils::MY'          => '6.42',
3400             'ExtUtils::MakeMaker'   => '6.42',
3401             'ExtUtils::MakeMaker::Config'=> '6.42',
3402             'ExtUtils::MakeMaker::bytes'=> '6.42',
3403             'ExtUtils::MakeMaker::vmsish'=> '6.42',
3404             'ExtUtils::Mkbootstrap' => '6.42',
3405             'ExtUtils::Mksymlists'  => '6.42',
3406             'ExtUtils::Packlist'    => '1.43',
3407             'ExtUtils::ParseXS'     => '2.18_02',
3408             'ExtUtils::testlib'     => '6.42',
3409             'File::Copy'            => '2.11',
3410             'File::Fetch'           => '0.14',
3411             'File::Find'            => '1.12',
3412             'File::Path'            => '2.04',
3413             'File::Spec'            => '3.2501',
3414             'File::Spec::Cygwin'    => '3.2501',
3415             'File::Spec::Epoc'      => '3.2501',
3416             'File::Spec::Functions' => '3.2501',
3417             'File::Spec::Mac'       => '3.2501',
3418             'File::Spec::OS2'       => '3.2501',
3419             'File::Spec::Unix'      => '3.2501',
3420             'File::Spec::VMS'       => '3.2501',
3421             'File::Spec::Win32'     => '3.2501',
3422             'Filter::Util::Call'    => '1.07',
3423             'Getopt::Long'          => '2.37',
3424             'Hash::Util::FieldHash' => '1.03',
3425             'IO::Compress::Adapter::Deflate'=> '2.008',
3426             'IO::Compress::Adapter::Identity'=> '2.008',
3427             'IO::Compress::Base'    => '2.008',
3428             'IO::Compress::Base::Common'=> '2.008',
3429             'IO::Compress::Deflate' => '2.008',
3430             'IO::Compress::Gzip'    => '2.008',
3431             'IO::Compress::Gzip::Constants'=> '2.008',
3432             'IO::Compress::RawDeflate'=> '2.008',
3433             'IO::Compress::Zip'     => '2.008',
3434             'IO::Compress::Zip::Constants'=> '2.008',
3435             'IO::Compress::Zlib::Constants'=> '2.008',
3436             'IO::Compress::Zlib::Extra'=> '2.008',
3437             'IO::Uncompress::Adapter::Identity'=> '2.008',
3438             'IO::Uncompress::Adapter::Inflate'=> '2.008',
3439             'IO::Uncompress::AnyInflate'=> '2.008',
3440             'IO::Uncompress::AnyUncompress'=> '2.008',
3441             'IO::Uncompress::Base'  => '2.008',
3442             'IO::Uncompress::Gunzip'=> '2.008',
3443             'IO::Uncompress::Inflate'=> '2.008',
3444             'IO::Uncompress::RawInflate'=> '2.008',
3445             'IO::Uncompress::Unzip' => '2.008',
3446             'IO::Zlib'              => '1.07',
3447             'IPC::Cmd'              => '0.40_1',
3448             'IPC::SysV'             => '1.05',
3449             'Locale::Maketext'      => '1.12',
3450             'Log::Message::Simple'  => '0.04',
3451             'Math::BigFloat'        => '1.59',
3452             'Math::BigInt'          => '1.88',
3453             'Math::BigInt::Calc'    => '0.52',
3454             'Math::BigInt::FastCalc'=> '0.16',
3455             'Math::BigRat'          => '0.21',
3456             'Module::Build'         => '0.2808_01',
3457             'Module::Build::Base'   => '0.2808_01',
3458             'Module::Build::Compat' => '0.2808_01',
3459             'Module::Build::Config' => '0.2808_01',
3460             'Module::Build::Dumper' => undef,
3461             'Module::Build::ModuleInfo'=> '0.2808_01',
3462             'Module::Build::Notes'  => '0.2808_01',
3463             'Module::Build::PPMMaker'=> '0.2808_01',
3464             'Module::Build::Platform::Amiga'=> '0.2808_01',
3465             'Module::Build::Platform::Default'=> '0.2808_01',
3466             'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3467             'Module::Build::Platform::MPEiX'=> '0.2808_01',
3468             'Module::Build::Platform::MacOS'=> '0.2808_01',
3469             'Module::Build::Platform::RiscOS'=> '0.2808_01',
3470             'Module::Build::Platform::Unix'=> '0.2808_01',
3471             'Module::Build::Platform::VMS'=> '0.2808_01',
3472             'Module::Build::Platform::VOS'=> '0.2808_01',
3473             'Module::Build::Platform::Windows'=> '0.2808_01',
3474             'Module::Build::Platform::aix'=> '0.2808_01',
3475             'Module::Build::Platform::cygwin'=> '0.2808_01',
3476             'Module::Build::Platform::darwin'=> '0.2808_01',
3477             'Module::Build::Platform::os2'=> '0.2808_01',
3478             'Module::Build::PodParser'=> '0.2808_01',
3479             'Module::CoreList'      => '2.13',
3480             'Module::Load'          => '0.12',
3481             'Module::Load::Conditional'=> '0.22',
3482             'Net::Cmd'              => '2.29',
3483             'Net::Ping'             => '2.33',
3484             'Opcode'                => '1.11',
3485             'Pod::Checker'          => '1.43_01',
3486             'Pod::Man'              => '2.16',
3487             'Pod::Perldoc'          => '3.14_02',
3488             'Socket'                => '1.80',
3489             'Storable'              => '2.18',
3490             'Sys::Syslog'           => '0.22',
3491             'Sys::Syslog::win32::Win32'=> undef,
3492             'Term::Cap'             => '1.12',
3493             'Term::ReadLine'        => '1.03',
3494             'Term::UI'              => '0.18',
3495             'Test::Builder'         => '0.72',
3496             'Test::Builder::Module' => '0.72',
3497             'Test::Builder::Tester' => '1.09',
3498             'Test::Harness::Straps' => '0.26_01',
3499             'Test::More'            => '0.72',
3500             'Test::Simple'          => '0.72',
3501             'Text::ParseWords'      => '3.26',
3502             'Text::Soundex'         => '3.03',
3503             'Tie::StdHandle'        => undef,
3504             'Time::HiRes'           => '1.9711',
3505             'Time::Local'           => '1.18',
3506             'Time::Piece'           => '1.12',
3507             'VMS::Filespec'         => '1.12',
3508             'Win32'                 => '0.34',
3509             'base'                  => '2.13',
3510             'constant'              => '1.13',
3511             'feature'               => '1.11',
3512             'fields'                => '2.13',
3513             'filetest'              => '1.02',
3514             'open'                  => '1.06',
3515             'threads'               => '1.67',
3516             'threads::shared'       => '1.14',
3517             'version'               => '0.74',
3518         },
3519         removed => {
3520         }
3521     },
3522     5.010001 => {
3523         delta_from => 5.01,
3524         changed => {
3525             'App::Prove'            => '3.17',
3526             'App::Prove::State'     => '3.17',
3527             'App::Prove::State::Result'=> '3.17',
3528             'App::Prove::State::Result::Test'=> '3.17',
3529             'Archive::Extract'      => '0.34',
3530             'Archive::Tar'          => '1.52',
3531             'Attribute::Handlers'   => '0.85',
3532             'AutoLoader'            => '5.68',
3533             'AutoSplit'             => '1.06',
3534             'B'                     => '1.22',
3535             'B::Concise'            => '0.76',
3536             'B::Debug'              => '1.11',
3537             'B::Deparse'            => '0.89',
3538             'B::Lint'               => '1.11',
3539             'B::Lint::Debug'        => undef,
3540             'B::Xref'               => '1.02',
3541             'Benchmark'             => '1.11',
3542             'CGI'                   => '3.43',
3543             'CGI::Carp'             => '1.30_01',
3544             'CGI::Cookie'           => '1.29',
3545             'CPAN'                  => '1.9402',
3546             'CPAN::Author'          => '5.5',
3547             'CPAN::Bundle'          => '5.5',
3548             'CPAN::CacheMgr'        => '5.5',
3549             'CPAN::Complete'        => '5.5',
3550             'CPAN::Debug'           => '5.5',
3551             'CPAN::DeferredCode'    => '5.50',
3552             'CPAN::Distribution'    => '1.93',
3553             'CPAN::Distroprefs'     => '6',
3554             'CPAN::Distrostatus'    => '5.5',
3555             'CPAN::Exception::RecursiveDependency'=> '5.5',
3556             'CPAN::Exception::blocked_urllist'=> '1.0',
3557             'CPAN::Exception::yaml_not_installed'=> '5.5',
3558             'CPAN::FTP'             => '5.5001',
3559             'CPAN::FTP::netrc'      => '1.00',
3560             'CPAN::FirstTime'       => '5.53',
3561             'CPAN::HandleConfig'    => '5.5',
3562             'CPAN::Index'           => '1.93',
3563             'CPAN::InfoObj'         => '5.5',
3564             'CPAN::Kwalify'         => '5.50',
3565             'CPAN::LWP::UserAgent'  => '1.00',
3566             'CPAN::Module'          => '5.5',
3567             'CPAN::Nox'             => '5.50',
3568             'CPAN::Prompt'          => '5.5',
3569             'CPAN::Queue'           => '5.5',
3570             'CPAN::Shell'           => '5.5',
3571             'CPAN::Tarzip'          => '5.501',
3572             'CPAN::URL'             => '5.5',
3573             'CPANPLUS'              => '0.88',
3574             'CPANPLUS::Dist::Autobundle'=> undef,
3575             'CPANPLUS::Dist::Base'  => undef,
3576             'CPANPLUS::Dist::Build' => '0.36',
3577             'CPANPLUS::Dist::Build::Constants'=> '0.36',
3578             'CPANPLUS::Internals'   => '0.88',
3579             'CPANPLUS::Internals::Constants'=> undef,
3580             'CPANPLUS::Internals::Constants::Report'=> undef,
3581             'CPANPLUS::Internals::Source::Memory'=> undef,
3582             'CPANPLUS::Internals::Source::SQLite'=> undef,
3583             'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3584             'CPANPLUS::Shell::Default'=> '0.88',
3585             'Carp'                  => '1.11',
3586             'Carp::Heavy'           => '1.11',
3587             'Compress::Raw::Bzip2'  => '2.020',
3588             'Compress::Raw::Zlib'   => '2.020',
3589             'Compress::Zlib'        => '2.020',
3590             'Cwd'                   => '3.30',
3591             'DB'                    => '1.02',
3592             'DBM_Filter::compress'  => '0.02',
3593             'DBM_Filter::encode'    => '0.02',
3594             'DBM_Filter::int32'     => '0.02',
3595             'DBM_Filter::null'      => '0.02',
3596             'DBM_Filter::utf8'      => '0.02',
3597             'DB_File'               => '1.820',
3598             'Data::Dumper'          => '2.124',
3599             'Devel::DProf'          => '20080331.00',
3600             'Devel::PPPort'         => '3.19',
3601             'Devel::Peek'           => '1.04',
3602             'Digest'                => '1.16',
3603             'Digest::MD5'           => '2.39',
3604             'Digest::SHA'           => '5.47',
3605             'Digest::base'          => '1.16',
3606             'Digest::file'          => '1.16',
3607             'DirHandle'             => '1.03',
3608             'Dumpvalue'             => '1.13',
3609             'DynaLoader'            => '1.10',
3610             'Encode'                => '2.35',
3611             'Encode::Alias'         => '2.12',
3612             'Encode::CN::HZ'        => '2.05',
3613             'Encode::Config'        => '2.05',
3614             'Encode::GSM0338'       => '2.01',
3615             'Encode::Guess'         => '2.03',
3616             'Encode::JP::JIS7'      => '2.04',
3617             'Encode::MIME::Header'  => '2.11',
3618             'Encode::Unicode'       => '2.06',
3619             'Errno'                 => '1.11',
3620             'Exporter'              => '5.63',
3621             'Exporter::Heavy'       => '5.63',
3622             'ExtUtils::CBuilder'    => '0.2602',
3623             'ExtUtils::CBuilder::Base'=> '0.2602',
3624             'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3625             'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3626             'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3627             'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3628             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3629             'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3630             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3631             'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3632             'ExtUtils::Command'     => '1.16',
3633             'ExtUtils::Command::MM' => '6.55_02',
3634             'ExtUtils::Constant'    => '0.22',
3635             'ExtUtils::Constant::ProxySubs'=> '0.06',
3636             'ExtUtils::Constant::Utils'=> '0.02',
3637             'ExtUtils::Constant::XS'=> '0.03',
3638             'ExtUtils::Embed'       => '1.28',
3639             'ExtUtils::Install'     => '1.54',
3640             'ExtUtils::Installed'   => '1.999_001',
3641             'ExtUtils::Liblist'     => '6.55_02',
3642             'ExtUtils::Liblist::Kid'=> '6.5502',
3643             'ExtUtils::MM'          => '6.55_02',
3644             'ExtUtils::MM_AIX'      => '6.55_02',
3645             'ExtUtils::MM_Any'      => '6.55_02',
3646             'ExtUtils::MM_BeOS'     => '6.55_02',
3647             'ExtUtils::MM_Cygwin'   => '6.55_02',
3648             'ExtUtils::MM_DOS'      => '6.5502',
3649             'ExtUtils::MM_Darwin'   => '6.55_02',
3650             'ExtUtils::MM_MacOS'    => '6.5502',
3651             'ExtUtils::MM_NW5'      => '6.55_02',
3652             'ExtUtils::MM_OS2'      => '6.55_02',
3653             'ExtUtils::MM_QNX'      => '6.55_02',
3654             'ExtUtils::MM_UWIN'     => '6.5502',
3655             'ExtUtils::MM_Unix'     => '6.55_02',
3656             'ExtUtils::MM_VMS'      => '6.55_02',
3657             'ExtUtils::MM_VOS'      => '6.55_02',
3658             'ExtUtils::MM_Win32'    => '6.55_02',
3659             'ExtUtils::MM_Win95'    => '6.55_02',
3660             'ExtUtils::MY'          => '6.5502',
3661             'ExtUtils::MakeMaker'   => '6.55_02',
3662             'ExtUtils::MakeMaker::Config'=> '6.55_02',
3663             'ExtUtils::Manifest'    => '1.56',
3664             'ExtUtils::Mkbootstrap' => '6.55_02',
3665             'ExtUtils::Mksymlists'  => '6.55_02',
3666             'ExtUtils::ParseXS'     => '2.2002',
3667             'ExtUtils::testlib'     => '6.5502',
3668             'Fatal'                 => '2.06_01',
3669             'File::Basename'        => '2.77',
3670             'File::CheckTree'       => '4.4',
3671             'File::Compare'         => '1.1006',
3672             'File::Copy'            => '2.14',
3673             'File::DosGlob'         => '1.01',
3674             'File::Fetch'           => '0.20',
3675             'File::Find'            => '1.14',
3676             'File::GlobMapper'      => '1.000',
3677             'File::Path'            => '2.07_03',
3678             'File::Spec'            => '3.30',
3679             'File::Spec::Cygwin'    => '3.30',
3680             'File::Spec::Epoc'      => '3.30',
3681             'File::Spec::Functions' => '3.30',
3682             'File::Spec::Mac'       => '3.30',
3683             'File::Spec::OS2'       => '3.30',
3684             'File::Spec::Unix'      => '3.30',
3685             'File::Spec::VMS'       => '3.30',
3686             'File::Spec::Win32'     => '3.30',
3687             'File::Temp'            => '0.22',
3688             'File::stat'            => '1.01',
3689             'FileCache'             => '1.08',
3690             'FileHandle'            => '2.02',
3691             'Filter::Simple'        => '0.84',
3692             'Filter::Util::Call'    => '1.08',
3693             'FindBin'               => '1.50',
3694             'GDBM_File'             => '1.09',
3695             'Getopt::Long'          => '2.38',
3696             'Getopt::Std'           => '1.06',
3697             'Hash::Util::FieldHash' => '1.04',
3698             'I18N::Collate'         => '1.01',
3699             'IO'                    => '1.25',
3700             'IO::Compress::Adapter::Bzip2'=> '2.020',
3701             'IO::Compress::Adapter::Deflate'=> '2.020',
3702             'IO::Compress::Adapter::Identity'=> '2.020',
3703             'IO::Compress::Base'    => '2.020',
3704             'IO::Compress::Base::Common'=> '2.020',
3705             'IO::Compress::Bzip2'   => '2.020',
3706             'IO::Compress::Deflate' => '2.020',
3707             'IO::Compress::Gzip'    => '2.020',
3708             'IO::Compress::Gzip::Constants'=> '2.020',
3709             'IO::Compress::RawDeflate'=> '2.020',
3710             'IO::Compress::Zip'     => '2.020',
3711             'IO::Compress::Zip::Constants'=> '2.020',
3712             'IO::Compress::Zlib::Constants'=> '2.020',
3713             'IO::Compress::Zlib::Extra'=> '2.020',
3714             'IO::Dir'               => '1.07',
3715             'IO::Handle'            => '1.28',
3716             'IO::Socket'            => '1.31',
3717             'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3718             'IO::Uncompress::Adapter::Identity'=> '2.020',
3719             'IO::Uncompress::Adapter::Inflate'=> '2.020',
3720             'IO::Uncompress::AnyInflate'=> '2.020',
3721             'IO::Uncompress::AnyUncompress'=> '2.020',
3722             'IO::Uncompress::Base'  => '2.020',
3723             'IO::Uncompress::Bunzip2'=> '2.020',
3724             'IO::Uncompress::Gunzip'=> '2.020',
3725             'IO::Uncompress::Inflate'=> '2.020',
3726             'IO::Uncompress::RawInflate'=> '2.020',
3727             'IO::Uncompress::Unzip' => '2.020',
3728             'IO::Zlib'              => '1.09',
3729             'IPC::Cmd'              => '0.46',
3730             'IPC::Msg'              => '2.01',
3731             'IPC::Open2'            => '1.03',
3732             'IPC::Open3'            => '1.04',
3733             'IPC::Semaphore'        => '2.01',
3734             'IPC::SharedMem'        => '2.01',
3735             'IPC::SysV'             => '2.01',
3736             'List::Util'            => '1.21',
3737             'List::Util::PP'        => '1.21',
3738             'List::Util::XS'        => '1.21',
3739             'Locale::Maketext'      => '1.13',
3740             'Locale::Maketext::Guts'=> '1.13',
3741             'Locale::Maketext::GutsLoader'=> '1.13',
3742             'Log::Message'          => '0.02',
3743             'MIME::Base64'          => '3.08',
3744             'MIME::QuotedPrint'     => '3.08',
3745             'Math::BigFloat'        => '1.60',
3746             'Math::BigInt'          => '1.89',
3747             'Math::BigInt::FastCalc'=> '0.19',
3748             'Math::BigRat'          => '0.22',
3749             'Math::Complex'         => '1.56',
3750             'Math::Trig'            => '1.2',
3751             'Memoize'               => '1.01_03',
3752             'Module::Build'         => '0.340201',
3753             'Module::Build::Base'   => '0.340201',
3754             'Module::Build::Compat' => '0.340201',
3755             'Module::Build::Config' => '0.340201',
3756             'Module::Build::Cookbook'=> '0.340201',
3757             'Module::Build::Dumper' => '0.340201',
3758             'Module::Build::ModuleInfo'=> '0.340201',
3759             'Module::Build::Notes'  => '0.340201',
3760             'Module::Build::PPMMaker'=> '0.340201',
3761             'Module::Build::Platform::Amiga'=> '0.340201',
3762             'Module::Build::Platform::Default'=> '0.340201',
3763             'Module::Build::Platform::EBCDIC'=> '0.340201',
3764             'Module::Build::Platform::MPEiX'=> '0.340201',
3765             'Module::Build::Platform::MacOS'=> '0.340201',
3766             'Module::Build::Platform::RiscOS'=> '0.340201',
3767             'Module::Build::Platform::Unix'=> '0.340201',
3768             'Module::Build::Platform::VMS'=> '0.340201',
3769             'Module::Build::Platform::VOS'=> '0.340201',
3770             'Module::Build::Platform::Windows'=> '0.340201',
3771             'Module::Build::Platform::aix'=> '0.340201',
3772             'Module::Build::Platform::cygwin'=> '0.340201',
3773             'Module::Build::Platform::darwin'=> '0.340201',
3774             'Module::Build::Platform::os2'=> '0.340201',
3775             'Module::Build::PodParser'=> '0.340201',
3776             'Module::Build::Version'=> '0.77',
3777             'Module::CoreList'      => '2.18',
3778             'Module::Load'          => '0.16',
3779             'Module::Load::Conditional'=> '0.30',
3780             'Module::Loaded'        => '0.02',
3781             'Module::Pluggable'     => '3.9',
3782             'Module::Pluggable::Object'=> '3.9',
3783             'NDBM_File'             => '1.08',
3784             'NEXT'                  => '0.64',
3785             'Net::Ping'             => '2.36',
3786             'O'                     => '1.01',
3787             'OS2::Process'          => '1.03',
3788             'OS2::REXX'             => '1.04',
3789             'Object::Accessor'      => '0.34',
3790             'POSIX'                 => '1.17',
3791             'Package::Constants'    => '0.02',
3792             'Parse::CPAN::Meta'     => '1.39',
3793             'PerlIO'                => '1.06',
3794             'PerlIO::encoding'      => '0.11',
3795             'PerlIO::scalar'        => '0.07',
3796             'PerlIO::via'           => '0.07',
3797             'Pod::Checker'          => '1.45',
3798             'Pod::Find'             => '1.35',
3799             'Pod::Html'             => '1.09',
3800             'Pod::InputObjects'     => '1.31',
3801             'Pod::Man'              => '2.22',
3802             'Pod::ParseLink'        => '1.09',
3803             'Pod::ParseUtils'       => '1.36',
3804             'Pod::Parser'           => '1.37',
3805             'Pod::Perldoc'          => '3.14_04',
3806             'Pod::PlainText'        => '2.04',
3807             'Pod::Select'           => '1.36',
3808             'Pod::Simple'           => '3.07',
3809             'Pod::Simple::XHTML'    => '3.04',
3810             'Pod::Text'             => '3.13',
3811             'Pod::Text::Color'      => '2.05',
3812             'Pod::Text::Overstrike' => '2.03',
3813             'Pod::Text::Termcap'    => '2.05',
3814             'Pod::Usage'            => '1.36',
3815             'Safe'                  => '2.18',
3816             'Scalar::Util'          => '1.21',
3817             'Scalar::Util::PP'      => '1.21',
3818             'SelectSaver'           => '1.02',
3819             'SelfLoader'            => '1.17',
3820             'Socket'                => '1.82',
3821             'Storable'              => '2.20',
3822             'Switch'                => '2.14',
3823             'Symbol'                => '1.07',
3824             'Sys::Syslog'           => '0.27',
3825             'TAP::Base'             => '3.17',
3826             'TAP::Formatter::Base'  => '3.17',
3827             'TAP::Formatter::Color' => '3.17',
3828             'TAP::Formatter::Console'=> '3.17',
3829             'TAP::Formatter::Console::ParallelSession'=> '3.17',
3830             'TAP::Formatter::Console::Session'=> '3.17',
3831             'TAP::Formatter::File'  => '3.17',
3832             'TAP::Formatter::File::Session'=> '3.17',
3833             'TAP::Formatter::Session'=> '3.17',
3834             'TAP::Harness'          => '3.17',
3835             'TAP::Object'           => '3.17',
3836             'TAP::Parser'           => '3.17',
3837             'TAP::Parser::Aggregator'=> '3.17',
3838             'TAP::Parser::Grammar'  => '3.17',
3839             'TAP::Parser::Iterator' => '3.17',
3840             'TAP::Parser::Iterator::Array'=> '3.17',
3841             'TAP::Parser::Iterator::Process'=> '3.17',
3842             'TAP::Parser::Iterator::Stream'=> '3.17',
3843             'TAP::Parser::IteratorFactory'=> '3.17',
3844             'TAP::Parser::Multiplexer'=> '3.17',
3845             'TAP::Parser::Result'   => '3.17',
3846             'TAP::Parser::Result::Bailout'=> '3.17',
3847             'TAP::Parser::Result::Comment'=> '3.17',
3848             'TAP::Parser::Result::Plan'=> '3.17',
3849             'TAP::Parser::Result::Pragma'=> '3.17',
3850             'TAP::Parser::Result::Test'=> '3.17',
3851             'TAP::Parser::Result::Unknown'=> '3.17',
3852             'TAP::Parser::Result::Version'=> '3.17',
3853             'TAP::Parser::Result::YAML'=> '3.17',
3854             'TAP::Parser::ResultFactory'=> '3.17',
3855             'TAP::Parser::Scheduler'=> '3.17',
3856             'TAP::Parser::Scheduler::Job'=> '3.17',
3857             'TAP::Parser::Scheduler::Spinner'=> '3.17',
3858             'TAP::Parser::Source'   => '3.17',
3859             'TAP::Parser::Source::Perl'=> '3.17',
3860             'TAP::Parser::Utils'    => '3.17',
3861             'TAP::Parser::YAMLish::Reader'=> '3.17',
3862             'TAP::Parser::YAMLish::Writer'=> '3.17',
3863             'Term::ANSIColor'       => '2.00',
3864             'Term::ReadLine'        => '1.04',
3865             'Term::UI'              => '0.20',
3866             'Test'                  => '1.25_02',
3867             'Test::Builder'         => '0.92',
3868             'Test::Builder::Module' => '0.92',
3869             'Test::Builder::Tester' => '1.18',
3870             'Test::Builder::Tester::Color'=> '1.18',
3871             'Test::Harness'         => '3.17',
3872             'Test::More'            => '0.92',
3873             'Test::Simple'          => '0.92',
3874             'Text::ParseWords'      => '3.27',
3875             'Text::Tabs'            => '2009.0305',
3876             'Text::Wrap'            => '2009.0305',
3877             'Thread::Queue'         => '2.11',
3878             'Thread::Semaphore'     => '2.09',
3879             'Tie::Handle'           => '4.2',
3880             'Tie::Hash'             => '1.03',
3881             'Tie::RefHash'          => '1.38',
3882             'Tie::Scalar'           => '1.01',
3883             'Tie::StdHandle'        => '4.2',
3884             'Time::HiRes'           => '1.9719',
3885             'Time::Local'           => '1.1901',
3886             'Time::Piece'           => '1.15',
3887             'UNIVERSAL'             => '1.05',
3888             'Unicode'               => '5.1.0',
3889             'Unicode::Normalize'    => '1.03',
3890             'Unicode::UCD'          => '0.27',
3891             'VMS::Stdio'            => '2.4',
3892             'Win32'                 => '0.39',
3893             'Win32API::File'        => '0.1101',
3894             'XS::APItest'           => '0.15',
3895             'XS::Typemap'           => '0.03',
3896             'XSLoader'              => '0.10',
3897             'attributes'            => '0.09',
3898             'attrs'                 => '1.03',
3899             'autodie'               => '2.06_01',
3900             'autodie::exception'    => '2.06_01',
3901             'autodie::exception::system'=> '2.06_01',
3902             'autodie::hints'        => '2.06_01',
3903             'base'                  => '2.14',
3904             'bigint'                => '0.23',
3905             'bignum'                => '0.23',
3906             'bigrat'                => '0.23',
3907             'blib'                  => '1.04',
3908             'charnames'             => '1.07',
3909             'constant'              => '1.17',
3910             'encoding'              => '2.6_01',
3911             'feature'               => '1.13',
3912             'fields'                => '2.14',
3913             'lib'                   => '0.62',
3914             'mro'                   => '1.01',
3915             'open'                  => '1.07',
3916             'ops'                   => '1.02',
3917             'overload'              => '1.07',
3918             'overload::numbers'     => undef,
3919             'overloading'           => '0.01',
3920             'parent'                => '0.221',
3921             're'                    => '0.09',
3922             'threads'               => '1.72',
3923             'threads::shared'       => '1.29',
3924             'version'               => '0.77',
3925         },
3926         removed => {
3927             'CPAN::API::HOWTO'      => 1,
3928             'CPAN::DeferedCode'     => 1,
3929             'CPANPLUS::inc'         => 1,
3930             'ExtUtils::MakeMaker::bytes'=> 1,
3931             'ExtUtils::MakeMaker::vmsish'=> 1,
3932             'Test::Harness::Assert' => 1,
3933             'Test::Harness::Iterator'=> 1,
3934             'Test::Harness::Point'  => 1,
3935             'Test::Harness::Results'=> 1,
3936             'Test::Harness::Straps' => 1,
3937             'Test::Harness::Util'   => 1,
3938         }
3939     },
3940     5.011 => {
3941         delta_from => 5.010001,
3942         changed => {
3943             'Archive::Tar'          => '1.54',
3944             'Attribute::Handlers'   => '0.87',
3945             'AutoLoader'            => '5.70',
3946             'B::Deparse'            => '0.91',
3947             'B::Lint'               => '1.11_01',
3948             'B::Lint::Debug'        => '0.01',
3949             'CGI'                   => '3.45',
3950             'CGI::Apache'           => '1.01',
3951             'CGI::Carp'             => '3.45',
3952             'CGI::Pretty'           => '3.44',
3953             'CGI::Switch'           => '1.01',
3954             'CGI::Util'             => '3.45',
3955             'CPAN'                  => '1.94_51',
3956             'CPAN::Distribution'    => '1.94',
3957             'CPAN::FTP'             => '5.5002',
3958             'CPAN::Index'           => '1.94',
3959             'CPAN::LWP::UserAgent'  => '1.94',
3960             'CPANPLUS::Dist::Build' => '0.40',
3961             'CPANPLUS::Dist::Build::Constants'=> '0.40',
3962             'Carp'                  => '1.12',
3963             'Carp::Heavy'           => '1.12',
3964             'Class::ISA'            => '0.36',
3965             'Compress::Raw::Bzip2'  => '2.021',
3966             'Compress::Raw::Zlib'   => '2.021',
3967             'Compress::Zlib'        => '2.021',
3968             'Cwd'                   => '3.3002',
3969             'Data::Dumper'          => '2.125',
3970             'Encode'                => '2.37',
3971             'Exporter'              => '5.64',
3972             'Exporter::Heavy'       => '5.64',
3973             'ExtUtils::ParseXS'     => '2.200403',
3974             'File::Basename'        => '2.78',
3975             'File::Copy'            => '2.16',
3976             'File::stat'            => '1.02',
3977             'IO'                    => '1.25_01',
3978             'IO::Compress::Adapter::Bzip2'=> '2.021',
3979             'IO::Compress::Adapter::Deflate'=> '2.021',
3980             'IO::Compress::Adapter::Identity'=> '2.021',
3981             'IO::Compress::Base'    => '2.021',
3982             'IO::Compress::Base::Common'=> '2.021',
3983             'IO::Compress::Bzip2'   => '2.021',
3984             'IO::Compress::Deflate' => '2.021',
3985             'IO::Compress::Gzip'    => '2.021',
3986             'IO::Compress::Gzip::Constants'=> '2.021',
3987             'IO::Compress::RawDeflate'=> '2.021',
3988             'IO::Compress::Zip'     => '2.021',
3989             'IO::Compress::Zip::Constants'=> '2.021',
3990             'IO::Compress::Zlib::Constants'=> '2.021',
3991             'IO::Compress::Zlib::Extra'=> '2.021',
3992             'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
3993             'IO::Uncompress::Adapter::Identity'=> '2.021',
3994             'IO::Uncompress::Adapter::Inflate'=> '2.021',
3995             'IO::Uncompress::AnyInflate'=> '2.021',
3996             'IO::Uncompress::AnyUncompress'=> '2.021',
3997             'IO::Uncompress::Base'  => '2.021',
3998             'IO::Uncompress::Bunzip2'=> '2.021',
3999             'IO::Uncompress::Gunzip'=> '2.021',
4000             'IO::Uncompress::Inflate'=> '2.021',
4001             'IO::Uncompress::RawInflate'=> '2.021',
4002             'IO::Uncompress::Unzip' => '2.021',
4003             'IO::Zlib'              => '1.10',
4004             'IPC::Cmd'              => '0.50',
4005             'IPC::Open3'            => '1.05',
4006             'Locale::Maketext::Simple'=> '0.21',
4007             'Log::Message::Simple'  => '0.06',
4008             'Math::BigInt'          => '1.89_01',
4009             'Math::BigRat'          => '0.24',
4010             'Module::Build'         => '0.35',
4011             'Module::Build::Base'   => '0.35',
4012             'Module::Build::Compat' => '0.35',
4013             'Module::Build::Config' => '0.35',
4014             'Module::Build::Cookbook'=> '0.35',
4015             'Module::Build::Dumper' => '0.35',
4016             'Module::Build::ModuleInfo'=> '0.35',
4017             'Module::Build::Notes'  => '0.35',
4018             'Module::Build::PPMMaker'=> '0.35',
4019             'Module::Build::Platform::Amiga'=> '0.35',
4020             'Module::Build::Platform::Default'=> '0.35',
4021             'Module::Build::Platform::EBCDIC'=> '0.35',
4022             'Module::Build::Platform::MPEiX'=> '0.35',
4023             'Module::Build::Platform::MacOS'=> '0.35',
4024             'Module::Build::Platform::RiscOS'=> '0.35',
4025             'Module::Build::Platform::Unix'=> '0.35',
4026             'Module::Build::Platform::VMS'=> '0.35',
4027             'Module::Build::Platform::VOS'=> '0.35',
4028             'Module::Build::Platform::Windows'=> '0.35',
4029             'Module::Build::Platform::aix'=> '0.35',
4030             'Module::Build::Platform::cygwin'=> '0.35',
4031             'Module::Build::Platform::darwin'=> '0.35',
4032             'Module::Build::Platform::os2'=> '0.35',
4033             'Module::Build::PodParser'=> '0.35',
4034             'Module::CoreList'      => '2.19',
4035             'Module::Loaded'        => '0.06',
4036             'Opcode'                => '1.13',
4037             'PerlIO::via'           => '0.08',
4038             'Pod::Perldoc'          => '3.15_01',
4039             'Pod::Plainer'          => '1.01',
4040             'Safe'                  => '2.19',
4041             'Socket'                => '1.84',
4042             'Switch'                => '2.14_01',
4043             'Term::ANSIColor'       => '2.02',
4044             'Term::ReadLine'        => '1.05',
4045             'Text::Balanced'        => '2.02',
4046             'Text::Soundex'         => '3.03_01',
4047             'Time::Local'           => '1.1901_01',
4048             'Unicode::Collate'      => '0.52_01',
4049             'attributes'            => '0.12',
4050             'constant'              => '1.19',
4051             'deprecate'             => '0.01',
4052             'overload'              => '1.08',
4053             'parent'                => '0.223',
4054             're'                    => '0.10',
4055             'threads'               => '1.74',
4056             'threads::shared'       => '1.31',
4057             'warnings'              => '1.07',
4058         },
4059         removed => {
4060             'attrs'                 => 1,
4061         }
4062     },
4063     5.011001 => {
4064         delta_from => 5.011,
4065         changed => {
4066             'B'                     => '1.23',
4067             'B::Concise'            => '0.77',
4068             'B::Deparse'            => '0.92',
4069             'CGI'                   => '3.48',
4070             'CGI::Pretty'           => '3.46',
4071             'CGI::Util'             => '3.48',
4072             'CPANPLUS'              => '0.89_03',
4073             'CPANPLUS::Internals'   => '0.89_03',
4074             'CPANPLUS::Shell::Default'=> '0.89_03',
4075             'Carp'                  => '1.13',
4076             'Carp::Heavy'           => '1.13',
4077             'ExtUtils::CBuilder'    => '0.260301',
4078             'ExtUtils::CBuilder::Base'=> '0.260301',
4079             'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
4080             'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
4081             'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
4082             'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
4083             'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
4084             'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
4085             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
4086             'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
4087             'ExtUtils::Install'     => '1.55',
4088             'ExtUtils::Manifest'    => '1.57',
4089             'ExtUtils::Packlist'    => '1.44',
4090             'ExtUtils::ParseXS'     => '2.21',
4091             'File::Glob'            => '1.07',
4092             'File::Path'            => '2.08',
4093             'IO'                    => '1.25_02',
4094             'Module::CoreList'      => '2.21',
4095             'OS2::DLL'              => '1.04',
4096             'OS2::Process'          => '1.04',
4097             'Object::Accessor'      => '0.36',
4098             'Opcode'                => '1.15',
4099             'POSIX'                 => '1.18',
4100             'Parse::CPAN::Meta'     => '1.40',
4101             'PerlIO::via'           => '0.09',
4102             'Pod::Simple'           => '3.08',
4103             'Socket'                => '1.85',
4104             'Storable'              => '2.22',
4105             'Switch'                => '2.15',
4106             'Test::Builder'         => '0.94',
4107             'Test::Builder::Module' => '0.94',
4108             'Test::More'            => '0.94',
4109             'Test::Simple'          => '0.94',
4110             'XS::APItest'           => '0.16',
4111             'mro'                   => '1.02',
4112             'overload'              => '1.09',
4113             'threads::shared'       => '1.32',
4114         },
4115         removed => {
4116         }
4117     },
4118     5.011002 => {
4119         delta_from => 5.011001,
4120         changed => {
4121             'B::Concise'            => '0.78',
4122             'B::Deparse'            => '0.93',
4123             'CPANPLUS'              => '0.89_09',
4124             'CPANPLUS::Dist::Build' => '0.44',
4125             'CPANPLUS::Dist::Build::Constants'=> '0.44',
4126             'CPANPLUS::Internals'   => '0.89_09',
4127             'CPANPLUS::Shell::Default'=> '0.89_09',
4128             'Carp'                  => '1.14',
4129             'Carp::Heavy'           => '1.14',
4130             'Compress::Zlib'        => '2.022',
4131             'DBM_Filter'            => '0.03',
4132             'Encode'                => '2.38',
4133             'Encode::Byte'          => '2.04',
4134             'Encode::CN'            => '2.03',
4135             'Encode::JP'            => '2.04',
4136             'Encode::KR'            => '2.03',
4137             'Encode::TW'            => '2.03',
4138             'Encode::Unicode'       => '2.07',
4139             'Env'                   => '1.01',
4140             'Exporter'              => '5.64_01',
4141             'Exporter::Heavy'       => '5.64_01',
4142             'ExtUtils::CBuilder'    => '0.27',
4143             'ExtUtils::CBuilder::Base'=> '0.27',
4144             'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
4145             'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
4146             'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
4147             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
4148             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
4149             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
4150             'ExtUtils::CBuilder::Platform::aix'=> '0.27',
4151             'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
4152             'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
4153             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
4154             'ExtUtils::CBuilder::Platform::os2'=> '0.27',
4155             'File::Fetch'           => '0.22',
4156             'I18N::LangTags::Detect'=> '1.04',
4157             'I18N::Langinfo'        => '0.03',
4158             'IO::Compress::Adapter::Bzip2'=> '2.022',
4159             'IO::Compress::Adapter::Deflate'=> '2.022',
4160             'IO::Compress::Adapter::Identity'=> '2.022',
4161             'IO::Compress::Base'    => '2.022',
4162             'IO::Compress::Base::Common'=> '2.022',
4163             'IO::Compress::Bzip2'   => '2.022',
4164             'IO::Compress::Deflate' => '2.022',
4165             'IO::Compress::Gzip'    => '2.022',
4166             'IO::Compress::Gzip::Constants'=> '2.022',
4167             'IO::Compress::RawDeflate'=> '2.022',
4168             'IO::Compress::Zip'     => '2.022',
4169             'IO::Compress::Zip::Constants'=> '2.022',
4170             'IO::Compress::Zlib::Constants'=> '2.022',
4171             'IO::Compress::Zlib::Extra'=> '2.022',
4172             'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4173             'IO::Uncompress::Adapter::Identity'=> '2.022',
4174             'IO::Uncompress::Adapter::Inflate'=> '2.022',
4175             'IO::Uncompress::AnyInflate'=> '2.022',
4176             'IO::Uncompress::AnyUncompress'=> '2.022',
4177             'IO::Uncompress::Base'  => '2.022',
4178             'IO::Uncompress::Bunzip2'=> '2.022',
4179             'IO::Uncompress::Gunzip'=> '2.022',
4180             'IO::Uncompress::Inflate'=> '2.022',
4181             'IO::Uncompress::RawInflate'=> '2.022',
4182             'IO::Uncompress::Unzip' => '2.022',
4183             'IPC::Cmd'              => '0.54',
4184             'List::Util'            => '1.22',
4185             'List::Util::PP'        => '1.22',
4186             'List::Util::XS'        => '1.22',
4187             'Locale::Maketext'      => '1.14',
4188             'Module::Build'         => '0.35_09',
4189             'Module::Build::Base'   => '0.35_09',
4190             'Module::Build::Compat' => '0.35_09',
4191             'Module::Build::Config' => '0.35_09',
4192             'Module::Build::Cookbook'=> '0.35_09',
4193             'Module::Build::Dumper' => '0.35_09',
4194             'Module::Build::ModuleInfo'=> '0.35_09',
4195             'Module::Build::Notes'  => '0.35_09',
4196             'Module::Build::PPMMaker'=> '0.35_09',
4197             'Module::Build::Platform::Amiga'=> '0.35_09',
4198             'Module::Build::Platform::Default'=> '0.35_09',
4199             'Module::Build::Platform::EBCDIC'=> '0.35_09',
4200             'Module::Build::Platform::MPEiX'=> '0.35_09',
4201             'Module::Build::Platform::MacOS'=> '0.35_09',
4202             'Module::Build::Platform::RiscOS'=> '0.35_09',
4203             'Module::Build::Platform::Unix'=> '0.35_09',
4204             'Module::Build::Platform::VMS'=> '0.35_09',
4205             'Module::Build::Platform::VOS'=> '0.35_09',
4206             'Module::Build::Platform::Windows'=> '0.35_09',
4207             'Module::Build::Platform::aix'=> '0.35_09',
4208             'Module::Build::Platform::cygwin'=> '0.35_09',
4209             'Module::Build::Platform::darwin'=> '0.35_09',
4210             'Module::Build::Platform::os2'=> '0.35_09',
4211             'Module::Build::PodParser'=> '0.35_09',
4212             'Module::Build::YAML'   => '1.40',
4213             'Module::CoreList'      => '2.23',
4214             'Module::Load::Conditional'=> '0.34',
4215             'Pod::Simple'           => '3.10',
4216             'Pod::Simple::XHTML'    => '3.10',
4217             'Scalar::Util'          => '1.22',
4218             'Scalar::Util::PP'      => '1.22',
4219             'Switch'                => '2.16',
4220             'XS::APItest'           => '0.17',
4221             'XS::APItest::KeywordRPN'=> '0.003',
4222             'base'                  => '2.15',
4223             'diagnostics'           => '1.18',
4224             'fields'                => '2.15',
4225             'inc::latest'           => '0.35_09',
4226             'legacy'                => '1.00',
4227             'overload'              => '1.10',
4228         },
4229         removed => {
4230         }
4231     },
4232     5.011003 => {
4233         delta_from => 5.011002,
4234         changed => {
4235             'App::Cpan'             => '1.570001',
4236             'Archive::Extract'      => '0.36',
4237             'CPAN'                  => '1.94_5301',
4238             'CPAN::FTP'             => '5.5004',
4239             'CPAN::FirstTime'       => '5.530001',
4240             'CPAN::Mirrors'         => '1.770001',
4241             'CPANPLUS'              => '0.90',
4242             'CPANPLUS::Internals'   => '0.90',
4243             'CPANPLUS::Shell::Default'=> '0.90',
4244             'Cwd'                   => '3.31',
4245             'Encode'                => '2.39',
4246             'ExtUtils::Command::MM' => '6.56',
4247             'ExtUtils::Liblist'     => '6.56',
4248             'ExtUtils::Liblist::Kid'=> '6.56',
4249             'ExtUtils::MM'          => '6.56',
4250             'ExtUtils::MM_AIX'      => '6.56',
4251             'ExtUtils::MM_Any'      => '6.56',
4252             'ExtUtils::MM_BeOS'     => '6.56',
4253             'ExtUtils::MM_Cygwin'   => '6.56',
4254             'ExtUtils::MM_DOS'      => '6.56',
4255             'ExtUtils::MM_Darwin'   => '6.56',
4256             'ExtUtils::MM_MacOS'    => '6.56',
4257             'ExtUtils::MM_NW5'      => '6.56',
4258             'ExtUtils::MM_OS2'      => '6.56',
4259             'ExtUtils::MM_QNX'      => '6.56',
4260             'ExtUtils::MM_UWIN'     => '6.56',
4261             'ExtUtils::MM_Unix'     => '6.56',
4262             'ExtUtils::MM_VMS'      => '6.56',
4263             'ExtUtils::MM_VOS'      => '6.56',
4264             'ExtUtils::MM_Win32'    => '6.56',
4265             'ExtUtils::MM_Win95'    => '6.56',
4266             'ExtUtils::MY'          => '6.56',
4267             'ExtUtils::MakeMaker'   => '6.56',
4268             'ExtUtils::MakeMaker::Config'=> '6.56',
4269             'ExtUtils::Mkbootstrap' => '6.56',
4270             'ExtUtils::Mksymlists'  => '6.56',
4271             'ExtUtils::testlib'     => '6.56',
4272             'File::Find'            => '1.15',
4273             'File::Path'            => '2.08_01',
4274             'File::Spec'            => '3.31',
4275             'Module::Build'         => '0.36',
4276             'Module::Build::Base'   => '0.36',
4277             'Module::Build::Compat' => '0.36',
4278             'Module::Build::Config' => '0.36',
4279             'Module::Build::Cookbook'=> '0.36',
4280             'Module::Build::Dumper' => '0.36',
4281             'Module::Build::ModuleInfo'=> '0.36',
4282             'Module::Build::Notes'  => '0.36',
4283             'Module::Build::PPMMaker'=> '0.36',
4284             'Module::Build::Platform::Amiga'=> '0.36',
4285             'Module::Build::Platform::Default'=> '0.36',
4286             'Module::Build::Platform::EBCDIC'=> '0.36',
4287             'Module::Build::Platform::MPEiX'=> '0.36',
4288             'Module::Build::Platform::MacOS'=> '0.36',
4289             'Module::Build::Platform::RiscOS'=> '0.36',
4290             'Module::Build::Platform::Unix'=> '0.36',
4291             'Module::Build::Platform::VMS'=> '0.36',
4292             'Module::Build::Platform::VOS'=> '0.36',
4293             'Module::Build::Platform::Windows'=> '0.36',
4294             'Module::Build::Platform::aix'=> '0.36',
4295             'Module::Build::Platform::cygwin'=> '0.36',
4296             'Module::Build::Platform::darwin'=> '0.36',
4297             'Module::Build::Platform::os2'=> '0.36',
4298             'Module::Build::PodParser'=> '0.36',
4299             'Module::CoreList'      => '2.24',
4300             'POSIX'                 => '1.19',
4301             'Pod::Simple'           => '3.13',
4302             'Pod::Simple::BlackBox' => '3.13',
4303             'Pod::Simple::Checker'  => '3.13',
4304             'Pod::Simple::Debug'    => '3.13',
4305             'Pod::Simple::DumpAsText'=> '3.13',
4306             'Pod::Simple::DumpAsXML'=> '3.13',
4307             'Pod::Simple::HTML'     => '3.13',
4308             'Pod::Simple::HTMLBatch'=> '3.13',
4309             'Pod::Simple::LinkSection'=> '3.13',
4310             'Pod::Simple::Methody'  => '3.13',
4311             'Pod::Simple::Progress' => '3.13',
4312             'Pod::Simple::PullParser'=> '3.13',
4313             'Pod::Simple::PullParserEndToken'=> '3.13',
4314             'Pod::Simple::PullParserStartToken'=> '3.13',
4315             'Pod::Simple::PullParserTextToken'=> '3.13',
4316             'Pod::Simple::PullParserToken'=> '3.13',
4317             'Pod::Simple::RTF'      => '3.13',
4318             'Pod::Simple::Search'   => '3.13',
4319             'Pod::Simple::SimpleTree'=> '3.13',
4320             'Pod::Simple::Text'     => '3.13',
4321             'Pod::Simple::TextContent'=> '3.13',
4322             'Pod::Simple::TiedOutFH'=> '3.13',
4323             'Pod::Simple::Transcode'=> '3.13',
4324             'Pod::Simple::TranscodeDumb'=> '3.13',
4325             'Pod::Simple::TranscodeSmart'=> '3.13',
4326             'Pod::Simple::XHTML'    => '3.13',
4327             'Pod::Simple::XMLOutStream'=> '3.13',
4328             'Safe'                  => '2.20',
4329             'Unicode'               => '5.2.0',
4330             'constant'              => '1.20',
4331             'diagnostics'           => '1.19',
4332             'feature'               => '1.14',
4333             'inc::latest'           => '0.36',
4334             'threads'               => '1.75',
4335             'warnings'              => '1.08',
4336         },
4337         removed => {
4338             'legacy'                => 1,
4339         }
4340     },
4341     5.011004 => {
4342         delta_from => 5.011003,
4343         changed => {
4344             'App::Cpan'             => '1.5701',
4345             'Archive::Extract'      => '0.38',
4346             'B::Deparse'            => '0.94',
4347             'CPAN'                  => '1.94_54',
4348             'CPAN::FirstTime'       => '5.53',
4349             'CPAN::Mirrors'         => '1.77',
4350             'Carp'                  => '1.15',
4351             'Carp::Heavy'           => '1.15',
4352             'Compress::Raw::Bzip2'  => '2.024',
4353             'Compress::Raw::Zlib'   => '2.024',
4354             'Compress::Zlib'        => '2.024',
4355             'File::Copy'            => '2.17',
4356             'File::Fetch'           => '0.24',
4357             'GDBM_File'             => '1.10',
4358             'IO::Compress::Adapter::Bzip2'=> '2.024',
4359             'IO::Compress::Adapter::Deflate'=> '2.024',
4360             'IO::Compress::Adapter::Identity'=> '2.024',
4361             'IO::Compress::Base'    => '2.024',
4362             'IO::Compress::Base::Common'=> '2.024',
4363             'IO::Compress::Bzip2'   => '2.024',
4364             'IO::Compress::Deflate' => '2.024',
4365             'IO::Compress::Gzip'    => '2.024',
4366             'IO::Compress::Gzip::Constants'=> '2.024',
4367             'IO::Compress::RawDeflate'=> '2.024',
4368             'IO::Compress::Zip'     => '2.024',
4369             'IO::Compress::Zip::Constants'=> '2.024',
4370             'IO::Compress::Zlib::Constants'=> '2.024',
4371             'IO::Compress::Zlib::Extra'=> '2.024',
4372             'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4373             'IO::Uncompress::Adapter::Identity'=> '2.024',
4374             'IO::Uncompress::Adapter::Inflate'=> '2.024',
4375             'IO::Uncompress::AnyInflate'=> '2.024',
4376             'IO::Uncompress::AnyUncompress'=> '2.024',
4377             'IO::Uncompress::Base'  => '2.024',
4378             'IO::Uncompress::Bunzip2'=> '2.024',
4379             'IO::Uncompress::Gunzip'=> '2.024',
4380             'IO::Uncompress::Inflate'=> '2.024',
4381             'IO::Uncompress::RawInflate'=> '2.024',
4382             'IO::Uncompress::Unzip' => '2.024',
4383             'Module::Build'         => '0.3603',
4384             'Module::Build::Base'   => '0.3603',
4385             'Module::Build::Compat' => '0.3603',
4386             'Module::Build::Config' => '0.3603',
4387             'Module::Build::Cookbook'=> '0.3603',
4388             'Module::Build::Dumper' => '0.3603',
4389             'Module::Build::ModuleInfo'=> '0.3603',
4390             'Module::Build::Notes'  => '0.3603',
4391             'Module::Build::PPMMaker'=> '0.3603',
4392             'Module::Build::Platform::Amiga'=> '0.3603',
4393             'Module::Build::Platform::Default'=> '0.3603',
4394             'Module::Build::Platform::EBCDIC'=> '0.3603',
4395             'Module::Build::Platform::MPEiX'=> '0.3603',
4396             'Module::Build::Platform::MacOS'=> '0.3603',
4397             'Module::Build::Platform::RiscOS'=> '0.3603',
4398             'Module::Build::Platform::Unix'=> '0.3603',
4399             'Module::Build::Platform::VMS'=> '0.3603',
4400             'Module::Build::Platform::VOS'=> '0.3603',
4401             'Module::Build::Platform::Windows'=> '0.3603',
4402             'Module::Build::Platform::aix'=> '0.3603',
4403             'Module::Build::Platform::cygwin'=> '0.3603',
4404             'Module::Build::Platform::darwin'=> '0.3603',
4405             'Module::Build::Platform::os2'=> '0.3603',
4406             'Module::Build::PodParser'=> '0.3603',
4407             'Module::CoreList'      => '2.25',
4408             'PerlIO::encoding'      => '0.12',
4409             'Safe'                  => '2.21',
4410             'UNIVERSAL'             => '1.06',
4411             'feature'               => '1.15',
4412             'inc::latest'           => '0.3603',
4413             'less'                  => '0.03',
4414             're'                    => '0.11',
4415             'version'               => '0.81',
4416             'warnings'              => '1.09',
4417         },
4418         removed => {
4419         }
4420     },
4421     5.011005 => {
4422         delta_from => 5.011004,
4423         changed => {
4424             'B::Debug'              => '1.12',
4425             'CPAN'                  => '1.94_56',
4426             'CPAN::Debug'           => '5.5001',
4427             'CPAN::Distribution'    => '1.9456',
4428             'CPAN::FirstTime'       => '5.5301',
4429             'CPAN::HandleConfig'    => '5.5001',
4430             'CPAN::Shell'           => '5.5001',
4431             'CPAN::Tarzip'          => '5.5011',
4432             'CPANPLUS::Dist::Build' => '0.46',
4433             'CPANPLUS::Dist::Build::Constants'=> '0.46',
4434             'Module::CoreList'      => '2.26',
4435             'Pod::Man'              => '2.23',
4436             'Pod::ParseLink'        => '1.10',
4437             'Pod::Perldoc'          => '3.15_02',
4438             'Pod::Plainer'          => '1.02',
4439             'Pod::Text'             => '3.14',
4440             'Pod::Text::Color'      => '2.06',
4441             'Pod::Text::Overstrike' => '2.04',
4442             'Pod::Text::Termcap'    => '2.06',
4443             'Safe'                  => '2.22',
4444             'Socket'                => '1.86',
4445             'version'               => '0.82',
4446         },
4447         removed => {
4448         }
4449     },
4450     5.012 => {
4451         delta_from => 5.011005,
4452         changed => {
4453             'B::Deparse'            => '0.96',
4454             'CPAN::Distribution'    => '1.9456_01',
4455             'Module::CoreList'      => '2.29',
4456             'Safe'                  => '2.25',
4457             'Socket'                => '1.87',
4458             'Tie::Scalar'           => '1.02',
4459             'Time::Piece'           => '1.15_01',
4460             'bytes'                 => '1.04',
4461             'feature'               => '1.16',
4462             'utf8'                  => '1.08',
4463         },
4464         removed => {
4465         }
4466     },
4467     5.012001 => {
4468         delta_from => 5.012,
4469         changed => {
4470             'B::Deparse'            => '0.97',
4471             'CGI'                   => '3.49',
4472             'CGI::Fast'             => '1.08',
4473             'Carp'                  => '1.16',
4474             'Carp::Heavy'           => '1.16',
4475             'File::Copy'            => '2.18',
4476             'Module::CoreList'      => '2.32',
4477             'Pod::Functions'        => '1.04',
4478             'Pod::Simple'           => '3.14',
4479             'Pod::Simple::BlackBox' => '3.14',
4480             'Pod::Simple::Checker'  => '3.14',
4481             'Pod::Simple::Debug'    => '3.14',
4482             'Pod::Simple::DumpAsText'=> '3.14',
4483             'Pod::Simple::DumpAsXML'=> '3.14',
4484             'Pod::Simple::HTML'     => '3.14',
4485             'Pod::Simple::HTMLBatch'=> '3.14',
4486             'Pod::Simple::LinkSection'=> '3.14',
4487             'Pod::Simple::Methody'  => '3.14',
4488             'Pod::Simple::Progress' => '3.14',
4489             'Pod::Simple::PullParser'=> '3.14',
4490             'Pod::Simple::PullParserEndToken'=> '3.14',
4491             'Pod::Simple::PullParserStartToken'=> '3.14',
4492             'Pod::Simple::PullParserTextToken'=> '3.14',
4493             'Pod::Simple::PullParserToken'=> '3.14',
4494             'Pod::Simple::RTF'      => '3.14',
4495             'Pod::Simple::Search'   => '3.14',
4496             'Pod::Simple::SimpleTree'=> '3.14',
4497             'Pod::Simple::Text'     => '3.14',
4498             'Pod::Simple::TextContent'=> '3.14',
4499             'Pod::Simple::TiedOutFH'=> '3.14',
4500             'Pod::Simple::Transcode'=> '3.14',
4501             'Pod::Simple::TranscodeDumb'=> '3.14',
4502             'Pod::Simple::TranscodeSmart'=> '3.14',
4503             'Pod::Simple::XHTML'    => '3.14',
4504             'Pod::Simple::XMLOutStream'=> '3.14',
4505             'Safe'                  => '2.27',
4506         },
4507         removed => {
4508         }
4509     },
4510     5.012002 => {
4511         delta_from => 5.012001,
4512         changed => {
4513             'Carp'                  => '1.17',
4514             'Carp::Heavy'           => '1.17',
4515             'File::Spec'            => '3.31_01',
4516             'Module::CoreList'      => '2.38',
4517             'Module::Load::Conditional'=> '0.38',
4518             'PerlIO::scalar'        => '0.08',
4519         },
4520         removed => {
4521         }
4522     },
4523     5.012003 => {
4524         delta_from => 5.012002,
4525         changed => {
4526             'B::Deparse'            => '0.9701',
4527             'Module::Build::Platform::cygwin'=> '0.360301',
4528             'Module::CoreList'      => '2.43',
4529             'Socket'                => '1.87_01',
4530         },
4531         removed => {
4532         }
4533     },
4534     5.012004 => {
4535         delta_from => 5.012003,
4536         changed => {
4537             'Module::CoreList'      => '2.50',
4538         },
4539         removed => {
4540         }
4541     },
4542     5.012005 => {
4543         delta_from => 5.012004,
4544         changed => {
4545             'B::Concise'            => '0.78_01',
4546             'Encode'                => '2.39_01',
4547             'File::Glob'            => '1.07_01',
4548             'Module::CoreList'      => '2.50_02',
4549             'Unicode::UCD'          => '0.29',
4550             'charnames'             => '1.07_01',
4551         },
4552         removed => {
4553         }
4554     },
4555     5.013 => {
4556         delta_from => 5.012,
4557         changed => {
4558             'CGI'                   => '3.49',
4559             'CGI::Fast'             => '1.08',
4560             'Data::Dumper'          => '2.126',
4561             'ExtUtils::MM_Unix'     => '6.5601',
4562             'ExtUtils::MakeMaker'   => '6.5601',
4563             'File::Copy'            => '2.18',
4564             'IPC::Open3'            => '1.06',
4565             'MIME::Base64'          => '3.09',
4566             'MIME::QuotedPrint'     => '3.09',
4567             'Module::CoreList'      => '2.31',
4568             'Pod::Functions'        => '1.04',
4569             'XS::APItest'           => '0.18',
4570             'XS::APItest::KeywordRPN'=> '0.004',
4571             'feature'               => '1.17',
4572             'threads'               => '1.77_01',
4573             'threads::shared'       => '1.33',
4574         },
4575         removed => {
4576         }
4577     },
4578     5.013001 => {
4579         delta_from => 5.012001,
4580         changed => {
4581             'Data::Dumper'          => '2.126',
4582             'Dumpvalue'             => '1.14',
4583             'Errno'                 => '1.12',
4584             'ExtUtils::MM_Unix'     => '6.5601',
4585             'ExtUtils::MakeMaker'   => '6.5601',
4586             'ExtUtils::ParseXS'     => '2.2205',
4587             'File::Find'            => '1.16',
4588             'IPC::Cmd'              => '0.58',
4589             'IPC::Open3'            => '1.06',
4590             'List::Util'            => '1.23',
4591             'List::Util::PP'        => '1.23',
4592             'List::Util::XS'        => '1.23',
4593             'Locale::Codes'         => '3.12',
4594             'Locale::Codes::Country'=> '3.12',
4595             'Locale::Codes::Currency'=> '3.12',
4596             'Locale::Codes::Language'=> '3.12',
4597             'Locale::Codes::Script' => '3.12',
4598             'Locale::Constants'     => '3.12',
4599             'Locale::Country'       => '3.12',
4600             'Locale::Currency'      => '3.12',
4601             'Locale::Language'      => '3.12',
4602             'Locale::Script'        => '3.12',
4603             'MIME::Base64'          => '3.09',
4604             'MIME::QuotedPrint'     => '3.09',
4605             'Module::Build::Platform::cygwin'=> '0.360301',
4606             'Module::CoreList'      => '2.34',
4607             'Module::Load::Conditional'=> '0.38',
4608             'PerlIO::scalar'        => '0.08',
4609             'Scalar::Util'          => '1.23',
4610             'Scalar::Util::PP'      => '1.23',
4611             'Socket'                => '1.88',
4612             'Term::ReadLine'        => '1.06',
4613             'Unicode::UCD'          => '0.28',
4614             'XS::APItest'           => '0.19',
4615             'XS::APItest::KeywordRPN'=> '0.004',
4616             'charnames'             => '1.08',
4617             'feature'               => '1.17',
4618             'threads'               => '1.77_01',
4619             'threads::shared'       => '1.33',
4620         },
4621         removed => {
4622             'Class::ISA'            => 1,
4623             'Pod::Plainer'          => 1,
4624             'Switch'                => 1,
4625         }
4626     },
4627     5.013002 => {
4628         delta_from => 5.013001,
4629         changed => {
4630             'B::Concise'            => '0.79',
4631             'B::Deparse'            => '0.98',
4632             'CPAN'                  => '1.94_57',
4633             'CPAN::Distribution'    => '1.9600',
4634             'Exporter'              => '5.64_02',
4635             'Exporter::Heavy'       => '5.64_02',
4636             'File::Copy'            => '2.19',
4637             'Hash::Util'            => '0.08',
4638             'IO::Socket'            => '1.32',
4639             'Locale::Codes'         => '3.13',
4640             'Locale::Codes::Country'=> '3.13',
4641             'Locale::Codes::Currency'=> '3.13',
4642             'Locale::Codes::Language'=> '3.13',
4643             'Locale::Codes::Script' => '3.13',
4644             'Locale::Constants'     => '3.13',
4645             'Locale::Country'       => '3.13',
4646             'Locale::Currency'      => '3.13',
4647             'Locale::Language'      => '3.13',
4648             'Locale::Script'        => '3.13',
4649             'Search::Dict'          => '1.03',
4650             'Socket'                => '1.89',
4651             'Thread::Semaphore'     => '2.11',
4652             'UNIVERSAL'             => '1.07',
4653             'VMS::DCLsym'           => '1.04',
4654             'mro'                   => '1.03',
4655             'threads'               => '1.77_02',
4656             'threads::shared'       => '1.33_01',
4657         },
4658         removed => {
4659         }
4660     },
4661     5.013003 => {
4662         delta_from => 5.013002,
4663         changed => {
4664             'App::Prove'            => '3.21',
4665             'App::Prove::State'     => '3.21',
4666             'App::Prove::State::Result'=> '3.21',
4667             'App::Prove::State::Result::Test'=> '3.21',
4668             'Archive::Extract'      => '0.42',
4669             'Archive::Tar'          => '1.64',
4670             'Archive::Tar::Constant'=> '1.64',
4671             'Archive::Tar::File'    => '1.64',
4672             'Attribute::Handlers'   => '0.88',
4673             'CPANPLUS'              => '0.9007',
4674             'CPANPLUS::Internals'   => '0.9007',
4675             'CPANPLUS::Shell::Default'=> '0.9007',
4676             'Compress::Raw::Bzip2'  => '2.027',
4677             'Compress::Raw::Zlib'   => '2.027_01',
4678             'Compress::Zlib'        => '2.027',
4679             'DB'                    => '1.03',
4680             'Digest::MD5'           => '2.40',
4681             'Digest::SHA'           => '5.48',
4682             'Exporter'              => '5.64_03',
4683             'Exporter::Heavy'       => '5.64_03',
4684             'ExtUtils::CBuilder'    => '0.2703',
4685             'ExtUtils::CBuilder::Base'=> '0.2703_01',
4686             'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4687             'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4688             'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4689             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4690             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4691             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4692             'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4693             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4694             'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4695             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4696             'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4697             'ExtUtils::Manifest'    => '1.58',
4698             'ExtUtils::ParseXS'     => '2.2206',
4699             'Fatal'                 => '2.10',
4700             'File::Basename'        => '2.79',
4701             'File::Copy'            => '2.20',
4702             'File::DosGlob'         => '1.02',
4703             'File::Find'            => '1.17',
4704             'File::Glob'            => '1.08',
4705             'File::stat'            => '1.03',
4706             'I18N::LangTags'        => '0.35_01',
4707             'I18N::LangTags::List'  => '0.35_01',
4708             'IO::Compress::Adapter::Bzip2'=> '2.027',
4709             'IO::Compress::Adapter::Deflate'=> '2.027',
4710             'IO::Compress::Adapter::Identity'=> '2.027',
4711             'IO::Compress::Base'    => '2.027',
4712             'IO::Compress::Base::Common'=> '2.027',
4713             'IO::Compress::Bzip2'   => '2.027',
4714             'IO::Compress::Deflate' => '2.027',
4715             'IO::Compress::Gzip'    => '2.027',
4716             'IO::Compress::Gzip::Constants'=> '2.027',
4717             'IO::Compress::RawDeflate'=> '2.027',
4718             'IO::Compress::Zip'     => '2.027',
4719             'IO::Compress::Zip::Constants'=> '2.027',
4720             'IO::Compress::Zlib::Constants'=> '2.027',
4721             'IO::Compress::Zlib::Extra'=> '2.027',
4722             'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4723             'IO::Uncompress::Adapter::Identity'=> '2.027',
4724             'IO::Uncompress::Adapter::Inflate'=> '2.027',
4725             'IO::Uncompress::AnyInflate'=> '2.027',
4726             'IO::Uncompress::AnyUncompress'=> '2.027',
4727             'IO::Uncompress::Base'  => '2.027',
4728             'IO::Uncompress::Bunzip2'=> '2.027',
4729             'IO::Uncompress::Gunzip'=> '2.027',
4730             'IO::Uncompress::Inflate'=> '2.027',
4731             'IO::Uncompress::RawInflate'=> '2.027',
4732             'IO::Uncompress::Unzip' => '2.027',
4733             'IPC::Cmd'              => '0.60',
4734             'IPC::Msg'              => '2.03',
4735             'IPC::Semaphore'        => '2.03',
4736             'IPC::SharedMem'        => '2.03',
4737             'IPC::SysV'             => '2.03',
4738             'Locale::Maketext'      => '1.15',
4739             'Locale::Maketext::Guts'=> undef,
4740             'Locale::Maketext::GutsLoader'=> undef,
4741             'Module::Build'         => '0.3607',
4742             'Module::Build::Base'   => '0.3607',
4743             'Module::Build::Compat' => '0.3607',
4744             'Module::Build::Config' => '0.3607',
4745             'Module::Build::Cookbook'=> '0.3607',
4746             'Module::Build::Dumper' => '0.3607',
4747             'Module::Build::ModuleInfo'=> '0.3607',
4748             'Module::Build::Notes'  => '0.3607',
4749             'Module::Build::PPMMaker'=> '0.3607',
4750             'Module::Build::Platform::Amiga'=> '0.3607',
4751             'Module::Build::Platform::Default'=> '0.3607',
4752             'Module::Build::Platform::EBCDIC'=> '0.3607',
4753             'Module::Build::Platform::MPEiX'=> '0.3607',
4754             'Module::Build::Platform::MacOS'=> '0.3607',
4755             'Module::Build::Platform::RiscOS'=> '0.3607',
4756             'Module::Build::Platform::Unix'=> '0.3607',
4757             'Module::Build::Platform::VMS'=> '0.3607',
4758             'Module::Build::Platform::VOS'=> '0.3607',
4759             'Module::Build::Platform::Windows'=> '0.3607',
4760             'Module::Build::Platform::aix'=> '0.3607',
4761             'Module::Build::Platform::cygwin'=> '0.3607',
4762             'Module::Build::Platform::darwin'=> '0.3607',
4763             'Module::Build::Platform::os2'=> '0.3607',
4764             'Module::Build::PodParser'=> '0.3607',
4765             'Module::CoreList'      => '2.36',
4766             'Module::Load'          => '0.18',
4767             'TAP::Base'             => '3.21',
4768             'TAP::Formatter::Base'  => '3.21',
4769             'TAP::Formatter::Color' => '3.21',
4770             'TAP::Formatter::Console'=> '3.21',
4771             'TAP::Formatter::Console::ParallelSession'=> '3.21',
4772             'TAP::Formatter::Console::Session'=> '3.21',
4773             'TAP::Formatter::File'  => '3.21',
4774             'TAP::Formatter::File::Session'=> '3.21',
4775             'TAP::Formatter::Session'=> '3.21',
4776             'TAP::Harness'          => '3.21',
4777             'TAP::Object'           => '3.21',
4778             'TAP::Parser'           => '3.21',
4779             'TAP::Parser::Aggregator'=> '3.21',
4780             'TAP::Parser::Grammar'  => '3.21',
4781             'TAP::Parser::Iterator' => '3.21',
4782             'TAP::Parser::Iterator::Array'=> '3.21',
4783             'TAP::Parser::Iterator::Process'=> '3.21',
4784             'TAP::Parser::Iterator::Stream'=> '3.21',
4785             'TAP::Parser::IteratorFactory'=> '3.21',
4786             'TAP::Parser::Multiplexer'=> '3.21',
4787             'TAP::Parser::Result'   => '3.21',
4788             'TAP::Parser::Result::Bailout'=> '3.21',
4789             'TAP::Parser::Result::Comment'=> '3.21',
4790             'TAP::Parser::Result::Plan'=> '3.21',
4791             'TAP::Parser::Result::Pragma'=> '3.21',
4792             'TAP::Parser::Result::Test'=> '3.21',
4793             'TAP::Parser::Result::Unknown'=> '3.21',
4794             'TAP::Parser::Result::Version'=> '3.21',
4795             'TAP::Parser::Result::YAML'=> '3.21',
4796             'TAP::Parser::ResultFactory'=> '3.21',
4797             'TAP::Parser::Scheduler'=> '3.21',
4798             'TAP::Parser::Scheduler::Job'=> '3.21',
4799             'TAP::Parser::Scheduler::Spinner'=> '3.21',
4800             'TAP::Parser::Source'   => '3.21',
4801             'TAP::Parser::SourceHandler'=> '3.21',
4802             'TAP::Parser::SourceHandler::Executable'=> '3.21',
4803             'TAP::Parser::SourceHandler::File'=> '3.21',
4804             'TAP::Parser::SourceHandler::Handle'=> '3.21',
4805             'TAP::Parser::SourceHandler::Perl'=> '3.21',
4806             'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4807             'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4808             'TAP::Parser::Utils'    => '3.21',
4809             'TAP::Parser::YAMLish::Reader'=> '3.21',
4810             'TAP::Parser::YAMLish::Writer'=> '3.21',
4811             'Term::ANSIColor'       => '3.00',
4812             'Term::ReadLine'        => '1.07',
4813             'Test::Harness'         => '3.21',
4814             'Tie::Array'            => '1.04',
4815             'Time::HiRes'           => '1.9721',
4816             'Time::Piece'           => '1.20_01',
4817             'Unicode::Collate'      => '0.53',
4818             'Unicode::Normalize'    => '1.06',
4819             'Unicode::UCD'          => '0.29',
4820             'autodie'               => '2.10',
4821             'autodie::exception'    => '2.10',
4822             'autodie::exception::system'=> '2.10',
4823             'autodie::hints'        => '2.10',
4824             'blib'                  => '1.05',
4825             'charnames'             => '1.11',
4826             'diagnostics'           => '1.20',
4827             'inc::latest'           => '0.3607',
4828             'lib'                   => '0.63',
4829             're'                    => '0.12',
4830             'threads'               => '1.77_03',
4831             'threads::shared'       => '1.33_02',
4832             'vars'                  => '1.02',
4833             'warnings'              => '1.10',
4834         },
4835         removed => {
4836             'TAP::Parser::Source::Perl'=> 1,
4837         }
4838     },
4839     5.013004 => {
4840         delta_from => 5.013003,
4841         changed => {
4842             'App::Prove'            => '3.22',
4843             'App::Prove::State'     => '3.22',
4844             'App::Prove::State::Result'=> '3.22',
4845             'App::Prove::State::Result::Test'=> '3.22',
4846             'Archive::Tar'          => '1.68',
4847             'Archive::Tar::Constant'=> '1.68',
4848             'Archive::Tar::File'    => '1.68',
4849             'B::Lint'               => '1.12',
4850             'B::Lint::Debug'        => '1.12',
4851             'Carp'                  => '1.18',
4852             'Carp::Heavy'           => '1.18',
4853             'Compress::Raw::Bzip2'  => '2.030',
4854             'Compress::Raw::Zlib'   => '2.030',
4855             'Compress::Zlib'        => '2.030',
4856             'ExtUtils::ParseXS'     => '2.2207',
4857             'File::Spec'            => '3.31_01',
4858             'I18N::Langinfo'        => '0.04',
4859             'IO::Compress::Adapter::Bzip2'=> '2.030',
4860             'IO::Compress::Adapter::Deflate'=> '2.030',
4861             'IO::Compress::Adapter::Identity'=> '2.030',
4862             'IO::Compress::Base'    => '2.030',
4863             'IO::Compress::Base::Common'=> '2.030',
4864             'IO::Compress::Bzip2'   => '2.030',
4865             'IO::Compress::Deflate' => '2.030',
4866             'IO::Compress::Gzip'    => '2.030',
4867             'IO::Compress::Gzip::Constants'=> '2.030',
4868             'IO::Compress::RawDeflate'=> '2.030',
4869             'IO::Compress::Zip'     => '2.030',
4870             'IO::Compress::Zip::Constants'=> '2.030',
4871             'IO::Compress::Zlib::Constants'=> '2.030',
4872             'IO::Compress::Zlib::Extra'=> '2.030',
4873             'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4874             'IO::Uncompress::Adapter::Identity'=> '2.030',
4875             'IO::Uncompress::Adapter::Inflate'=> '2.030',
4876             'IO::Uncompress::AnyInflate'=> '2.030',
4877             'IO::Uncompress::AnyUncompress'=> '2.030',
4878             'IO::Uncompress::Base'  => '2.030',
4879             'IO::Uncompress::Bunzip2'=> '2.030',
4880             'IO::Uncompress::Gunzip'=> '2.030',
4881             'IO::Uncompress::Inflate'=> '2.030',
4882             'IO::Uncompress::RawInflate'=> '2.030',
4883             'IO::Uncompress::Unzip' => '2.030',
4884             'Module::CoreList'      => '2.37',
4885             'TAP::Base'             => '3.22',
4886             'TAP::Formatter::Base'  => '3.22',
4887             'TAP::Formatter::Color' => '3.22',
4888             'TAP::Formatter::Console'=> '3.22',
4889             'TAP::Formatter::Console::ParallelSession'=> '3.22',
4890             'TAP::Formatter::Console::Session'=> '3.22',
4891             'TAP::Formatter::File'  => '3.22',
4892             'TAP::Formatter::File::Session'=> '3.22',
4893             'TAP::Formatter::Session'=> '3.22',
4894             'TAP::Harness'          => '3.22',
4895             'TAP::Object'           => '3.22',
4896             'TAP::Parser'           => '3.22',
4897             'TAP::Parser::Aggregator'=> '3.22',
4898             'TAP::Parser::Grammar'  => '3.22',
4899             'TAP::Parser::Iterator' => '3.22',
4900             'TAP::Parser::Iterator::Array'=> '3.22',
4901             'TAP::Parser::Iterator::Process'=> '3.22',
4902             'TAP::Parser::Iterator::Stream'=> '3.22',
4903             'TAP::Parser::IteratorFactory'=> '3.22',
4904             'TAP::Parser::Multiplexer'=> '3.22',
4905             'TAP::Parser::Result'   => '3.22',
4906             'TAP::Parser::Result::Bailout'=> '3.22',
4907             'TAP::Parser::Result::Comment'=> '3.22',
4908             'TAP::Parser::Result::Plan'=> '3.22',
4909             'TAP::Parser::Result::Pragma'=> '3.22',
4910             'TAP::Parser::Result::Test'=> '3.22',
4911             'TAP::Parser::Result::Unknown'=> '3.22',
4912             'TAP::Parser::Result::Version'=> '3.22',
4913             'TAP::Parser::Result::YAML'=> '3.22',
4914             'TAP::Parser::ResultFactory'=> '3.22',
4915             'TAP::Parser::Scheduler'=> '3.22',
4916             'TAP::Parser::Scheduler::Job'=> '3.22',
4917             'TAP::Parser::Scheduler::Spinner'=> '3.22',
4918             'TAP::Parser::Source'   => '3.22',
4919             'TAP::Parser::SourceHandler'=> '3.22',
4920             'TAP::Parser::SourceHandler::Executable'=> '3.22',
4921             'TAP::Parser::SourceHandler::File'=> '3.22',
4922             'TAP::Parser::SourceHandler::Handle'=> '3.22',
4923             'TAP::Parser::SourceHandler::Perl'=> '3.22',
4924             'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4925             'TAP::Parser::Utils'    => '3.22',
4926             'TAP::Parser::YAMLish::Reader'=> '3.22',
4927             'TAP::Parser::YAMLish::Writer'=> '3.22',
4928             'Test::Builder'         => '0.96',
4929             'Test::Builder::Module' => '0.96',
4930             'Test::Builder::Tester' => '1.20',
4931             'Test::Builder::Tester::Color'=> '1.20',
4932             'Test::Harness'         => '3.22',
4933             'Test::More'            => '0.96',
4934             'Test::Simple'          => '0.96',
4935             'Unicode::Collate'      => '0.56',
4936             'Unicode::Collate::Locale'=> '0.56',
4937             'XS::APItest'           => '0.20',
4938             'charnames'             => '1.15',
4939             'feature'               => '1.18',
4940         },
4941         removed => {
4942             'TAP::Parser::SourceHandler::pgTAP'=> 1,
4943         }
4944     },
4945     5.013005 => {
4946         delta_from => 5.013004,
4947         changed => {
4948             'B::Debug'              => '1.16',
4949             'CPANPLUS::Dist::Build' => '0.48',
4950             'CPANPLUS::Dist::Build::Constants'=> '0.48',
4951             'Data::Dumper'          => '2.128',
4952             'Encode'                => '2.40',
4953             'Encode::Guess'         => '2.04',
4954             'Encode::MIME::Header'  => '2.12',
4955             'Encode::Unicode::UTF7' => '2.05',
4956             'Errno'                 => '1.13',
4957             'ExtUtils::Command::MM' => '6.57_05',
4958             'ExtUtils::Liblist'     => '6.57_05',
4959             'ExtUtils::Liblist::Kid'=> '6.5705',
4960             'ExtUtils::MM'          => '6.57_05',
4961             'ExtUtils::MM_AIX'      => '6.57_05',
4962             'ExtUtils::MM_Any'      => '6.57_05',
4963             'ExtUtils::MM_BeOS'     => '6.57_05',
4964             'ExtUtils::MM_Cygwin'   => '6.57_05',
4965             'ExtUtils::MM_DOS'      => '6.5705',
4966             'ExtUtils::MM_Darwin'   => '6.57_05',
4967             'ExtUtils::MM_MacOS'    => '6.5705',
4968             'ExtUtils::MM_NW5'      => '6.57_05',
4969             'ExtUtils::MM_OS2'      => '6.57_05',
4970             'ExtUtils::MM_QNX'      => '6.57_05',
4971             'ExtUtils::MM_UWIN'     => '6.5705',
4972             'ExtUtils::MM_Unix'     => '6.57_05',
4973             'ExtUtils::MM_VMS'      => '6.57_05',
4974             'ExtUtils::MM_VOS'      => '6.57_05',
4975             'ExtUtils::MM_Win32'    => '6.57_05',
4976             'ExtUtils::MM_Win95'    => '6.57_05',
4977             'ExtUtils::MY'          => '6.5705',
4978             'ExtUtils::MakeMaker'   => '6.57_05',
4979             'ExtUtils::MakeMaker::Config'=> '6.57_05',
4980             'ExtUtils::MakeMaker::YAML'=> '1.44',
4981             'ExtUtils::Mkbootstrap' => '6.57_05',
4982             'ExtUtils::Mksymlists'  => '6.57_05',
4983             'ExtUtils::testlib'     => '6.5705',
4984             'Filter::Simple'        => '0.85',
4985             'Hash::Util'            => '0.09',
4986             'Math::BigFloat'        => '1.62',
4987             'Math::BigInt'          => '1.95',
4988             'Math::BigInt::Calc'    => '0.54',
4989             'Math::BigInt::CalcEmu' => '0.06',
4990             'Math::BigInt::FastCalc'=> '0.22',
4991             'Math::BigRat'          => '0.26',
4992             'Module::CoreList'      => '2.39',
4993             'POSIX'                 => '1.20',
4994             'PerlIO::scalar'        => '0.09',
4995             'Safe'                  => '2.28',
4996             'Test::Builder'         => '0.97_01',
4997             'Test::Builder::Module' => '0.97_01',
4998             'Test::Builder::Tester' => '1.21_01',
4999             'Test::Builder::Tester::Color'=> '1.21_01',
5000             'Test::More'            => '0.97_01',
5001             'Test::Simple'          => '0.97_01',
5002             'Tie::Hash'             => '1.04',
5003             'Unicode::Collate'      => '0.59',
5004             'Unicode::Collate::Locale'=> '0.59',
5005             'XS::APItest'           => '0.21',
5006             'XS::APItest::KeywordRPN'=> '0.005',
5007             'XSLoader'              => '0.11',
5008             'bigint'                => '0.25',
5009             'bignum'                => '0.25',
5010             'bigrat'                => '0.25',
5011             'blib'                  => '1.06',
5012             'open'                  => '1.08',
5013             'threads::shared'       => '1.33_03',
5014             'warnings'              => '1.11',
5015             'warnings::register'    => '1.02',
5016         },
5017         removed => {
5018         }
5019     },
5020     5.013006 => {
5021         delta_from => 5.013005,
5022         changed => {
5023             'Archive::Extract'      => '0.44',
5024             'B'                     => '1.24',
5025             'B::Deparse'            => '0.99',
5026             'CPAN'                  => '1.94_61',
5027             'CPAN::FTP'             => '5.5005',
5028             'CPAN::Queue'           => '5.5001',
5029             'CPAN::Version'         => '5.5001',
5030             'Carp'                  => '1.19',
5031             'Carp::Heavy'           => '1.19',
5032             'Compress::Raw::Bzip2'  => '2.031',
5033             'Cwd'                   => '3.34',
5034             'Data::Dumper'          => '2.129',
5035             'Devel::Peek'           => '1.05',
5036             'Digest::MD5'           => '2.51',
5037             'ExtUtils::Constant::Base'=> '0.05',
5038             'ExtUtils::Constant::ProxySubs'=> '0.07',
5039             'ExtUtils::Embed'       => '1.29',
5040             'ExtUtils::XSSymSet'    => '1.2',
5041             'Fcntl'                 => '1.09',
5042             'File::DosGlob'         => '1.03',
5043             'File::Find'            => '1.18',
5044             'File::Glob'            => '1.09',
5045             'File::Spec'            => '3.33',
5046             'File::Spec::Cygwin'    => '3.33',
5047             'File::Spec::Epoc'      => '3.33',
5048             'File::Spec::Functions' => '3.33',
5049             'File::Spec::Mac'       => '3.33',
5050             'File::Spec::OS2'       => '3.33',
5051             'File::Spec::Unix'      => '3.33',
5052             'File::Spec::VMS'       => '3.33',
5053             'File::Spec::Win32'     => '3.33',
5054             'GDBM_File'             => '1.11',
5055             'Hash::Util::FieldHash' => '1.05',
5056             'I18N::Langinfo'        => '0.06',
5057             'IPC::Cmd'              => '0.64',
5058             'IPC::Open3'            => '1.07',
5059             'Locale::Codes'         => '3.14',
5060             'Locale::Codes::Country'=> '3.14',
5061             'Locale::Codes::Currency'=> '3.14',
5062             'Locale::Codes::Language'=> '3.14',
5063             'Locale::Codes::Script' => '3.14',
5064             'Locale::Constants'     => '3.14',
5065             'Locale::Country'       => '3.14',
5066             'Locale::Currency'      => '3.14',
5067             'Locale::Language'      => '3.14',
5068             'Locale::Maketext'      => '1.16',
5069             'Locale::Script'        => '3.14',
5070             'Math::BigFloat'        => '1.63',
5071             'Math::BigInt'          => '1.97',
5072             'Math::BigInt::Calc'    => '0.55',
5073             'Math::BigInt::CalcEmu' => '0.07',
5074             'Module::CoreList'      => '2.40',
5075             'NDBM_File'             => '1.09',
5076             'NEXT'                  => '0.65',
5077             'ODBM_File'             => '1.08',
5078             'Opcode'                => '1.16',
5079             'POSIX'                 => '1.21',
5080             'PerlIO::encoding'      => '0.13',
5081             'PerlIO::scalar'        => '0.10',
5082             'PerlIO::via'           => '0.10',
5083             'Pod::Man'              => '2.25',
5084             'Pod::Text'             => '3.15',
5085             'SDBM_File'             => '1.07',
5086             'Socket'                => '1.90',
5087             'Sys::Hostname'         => '1.13',
5088             'Tie::Hash::NamedCapture'=> '0.07',
5089             'Unicode::Collate'      => '0.63',
5090             'Unicode::Collate::Locale'=> '0.63',
5091             'Unicode::Normalize'    => '1.07',
5092             'XS::APItest'           => '0.23',
5093             'XSLoader'              => '0.13',
5094             'attributes'            => '0.13',
5095             'charnames'             => '1.16',
5096             'if'                    => '0.06',
5097             'mro'                   => '1.04',
5098             'overload'              => '1.11',
5099             're'                    => '0.13',
5100             'sigtrap'               => '1.05',
5101             'threads'               => '1.81_01',
5102             'threads::shared'       => '1.34',
5103         },
5104         removed => {
5105             'XS::APItest::KeywordRPN'=> 1,
5106         }
5107     },
5108     5.013007 => {
5109         delta_from => 5.013006,
5110         changed => {
5111             'Archive::Extract'      => '0.46',
5112             'Archive::Tar'          => '1.72',
5113             'Archive::Tar::Constant'=> '1.72',
5114             'Archive::Tar::File'    => '1.72',
5115             'AutoLoader'            => '5.71',
5116             'B'                     => '1.26',
5117             'B::Concise'            => '0.81',
5118             'B::Deparse'            => '1.01',
5119             'CGI'                   => '3.50',
5120             'CPAN'                  => '1.94_62',
5121             'CPANPLUS'              => '0.9010',
5122             'CPANPLUS::Dist::Build' => '0.50',
5123             'CPANPLUS::Dist::Build::Constants'=> '0.50',
5124             'CPANPLUS::Internals'   => '0.9010',
5125             'CPANPLUS::Shell::Default'=> '0.9010',
5126             'Data::Dumper'          => '2.130_01',
5127             'DynaLoader'            => '1.11',
5128             'ExtUtils::Constant'    => '0.23',
5129             'ExtUtils::Constant::ProxySubs'=> '0.08',
5130             'Fcntl'                 => '1.10',
5131             'File::Fetch'           => '0.28',
5132             'File::Glob'            => '1.10',
5133             'File::stat'            => '1.04',
5134             'GDBM_File'             => '1.12',
5135             'Hash::Util'            => '0.10',
5136             'Hash::Util::FieldHash' => '1.06',
5137             'I18N::Langinfo'        => '0.07',
5138             'Locale::Maketext'      => '1.17',
5139             'Locale::Maketext::Guts'=> '1.17',
5140             'Locale::Maketext::GutsLoader'=> '1.17',
5141             'MIME::Base64'          => '3.10',
5142             'MIME::QuotedPrint'     => '3.10',
5143             'Math::BigFloat'        => '1.99_01',
5144             'Math::BigInt'          => '1.99_01',
5145             'Math::BigInt::Calc'    => '1.99_01',
5146             'Math::BigInt::CalcEmu' => '1.99_01',
5147             'Math::BigInt::FastCalc'=> '0.24_01',
5148             'Math::BigRat'          => '0.26_01',
5149             'Module::CoreList'      => '2.41',
5150             'NDBM_File'             => '1.10',
5151             'ODBM_File'             => '1.09',
5152             'Opcode'                => '1.17',
5153             'POSIX'                 => '1.22',
5154             'Pod::Simple'           => '3.15',
5155             'Pod::Simple::BlackBox' => '3.15',
5156             'Pod::Simple::Checker'  => '3.15',
5157             'Pod::Simple::Debug'    => '3.15',
5158             'Pod::Simple::DumpAsText'=> '3.15',
5159             'Pod::Simple::DumpAsXML'=> '3.15',
5160             'Pod::Simple::HTML'     => '3.15',
5161             'Pod::Simple::HTMLBatch'=> '3.15',
5162             'Pod::Simple::LinkSection'=> '3.15',
5163             'Pod::Simple::Methody'  => '3.15',
5164             'Pod::Simple::Progress' => '3.15',
5165             'Pod::Simple::PullParser'=> '3.15',
5166             'Pod::Simple::PullParserEndToken'=> '3.15',
5167             'Pod::Simple::PullParserStartToken'=> '3.15',
5168             'Pod::Simple::PullParserTextToken'=> '3.15',
5169             'Pod::Simple::PullParserToken'=> '3.15',
5170             'Pod::Simple::RTF'      => '3.15',
5171             'Pod::Simple::Search'   => '3.15',
5172             'Pod::Simple::SimpleTree'=> '3.15',
5173             'Pod::Simple::Text'     => '3.15',
5174             'Pod::Simple::TextContent'=> '3.15',
5175             'Pod::Simple::TiedOutFH'=> '3.15',
5176             'Pod::Simple::Transcode'=> '3.15',
5177             'Pod::Simple::TranscodeDumb'=> '3.15',
5178             'Pod::Simple::TranscodeSmart'=> '3.15',
5179             'Pod::Simple::XHTML'    => '3.15',
5180             'Pod::Simple::XMLOutStream'=> '3.15',
5181             'SDBM_File'             => '1.08',
5182             'Safe'                  => '2.29',
5183             'SelfLoader'            => '1.18',
5184             'Socket'                => '1.91',
5185             'Storable'              => '2.24',
5186             'Sys::Hostname'         => '1.14',
5187             'Unicode'               => '6.0.0',
5188             'Unicode::Collate'      => '0.67',
5189             'Unicode::Collate::CJK::Big5'=> '0.65',
5190             'Unicode::Collate::CJK::GB2312'=> '0.65',
5191             'Unicode::Collate::CJK::JISX0208'=> '0.64',
5192             'Unicode::Collate::CJK::Korean'=> '0.66',
5193             'Unicode::Collate::CJK::Pinyin'=> '0.65',
5194             'Unicode::Collate::CJK::Stroke'=> '0.65',
5195             'Unicode::Collate::Locale'=> '0.67',
5196             'XS::APItest'           => '0.26',
5197             'XS::Typemap'           => '0.04',
5198             'charnames'             => '1.17',
5199             'mro'                   => '1.05',
5200             'parent'                => '0.224',
5201             're'                    => '0.14',
5202             'threads'               => '1.81_02',
5203         },
5204         removed => {
5205         }
5206     },
5207     5.013008 => {
5208         delta_from => 5.013007,
5209         changed => {
5210             'Archive::Tar'          => '1.74',
5211             'Archive::Tar::Constant'=> '1.74',
5212             'Archive::Tar::File'    => '1.74',
5213             'B'                     => '1.27',
5214             'B::Concise'            => '0.82',
5215             'B::Deparse'            => '1.02',
5216             'Carp::Heavy'           => '1.17',
5217             'Cwd'                   => '3.35',
5218             'Data::Dumper'          => '2.130_02',
5219             'Devel::Peek'           => '1.06',
5220             'Devel::SelfStubber'    => '1.05',
5221             'Digest::SHA'           => '5.50',
5222             'Dumpvalue'             => '1.15',
5223             'DynaLoader'            => '1.12',
5224             'Env'                   => '1.02',
5225             'Exporter::Heavy'       => '5.64_01',
5226             'ExtUtils::CBuilder'    => '0.280201',
5227             'ExtUtils::CBuilder::Base'=> '0.280201',
5228             'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5229             'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5230             'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5231             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5232             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5233             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5234             'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5235             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5236             'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5237             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5238             'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5239             'ExtUtils::Constant::Utils'=> '0.03',
5240             'ExtUtils::Embed'       => '1.30',
5241             'ExtUtils::ParseXS'     => '2.2208',
5242             'Fatal'                 => '2.1001',
5243             'Fcntl'                 => '1.11',
5244             'File::CheckTree'       => '4.41',
5245             'File::Glob'            => '1.11',
5246             'GDBM_File'             => '1.13',
5247             'Hash::Util::FieldHash' => '1.07',
5248             'I18N::Collate'         => '1.02',
5249             'IO'                    => '1.25_03',
5250             'IPC::Cmd'              => '0.66',
5251             'IPC::Open3'            => '1.08',
5252             'Locale::Codes'         => '3.15',
5253             'Locale::Codes::Country'=> '3.15',
5254             'Locale::Codes::Currency'=> '3.15',
5255             'Locale::Codes::Language'=> '3.15',
5256             'Locale::Codes::Script' => '3.15',
5257             'Locale::Constants'     => '3.15',
5258             'Locale::Country'       => '3.15',
5259             'Locale::Currency'      => '3.15',
5260             'Locale::Language'      => '3.15',
5261             'Locale::Script'        => '3.15',
5262             'MIME::Base64'          => '3.13',
5263             'MIME::QuotedPrint'     => '3.13',
5264             'Math::BigFloat'        => '1.99_02',
5265             'Math::BigInt'          => '1.99_02',
5266             'Math::BigInt::Calc'    => '1.99_02',
5267             'Math::BigInt::CalcEmu' => '1.99_02',
5268             'Memoize'               => '1.02',
5269             'Memoize::AnyDBM_File'  => '1.02',
5270             'Memoize::Expire'       => '1.02',
5271             'Memoize::ExpireFile'   => '1.02',
5272             'Memoize::ExpireTest'   => '1.02',
5273             'Memoize::NDBM_File'    => '1.02',
5274             'Memoize::SDBM_File'    => '1.02',
5275             'Memoize::Storable'     => '1.02',
5276             'Module::CoreList'      => '2.43',
5277             'NDBM_File'             => '1.11',
5278             'Net::Ping'             => '2.37',
5279             'ODBM_File'             => '1.10',
5280             'Opcode'                => '1.18',
5281             'POSIX'                 => '1.23',
5282             'PerlIO::encoding'      => '0.14',
5283             'PerlIO::scalar'        => '0.11',
5284             'PerlIO::via'           => '0.11',
5285             'SDBM_File'             => '1.09',
5286             'Socket'                => '1.92',
5287             'Storable'              => '2.25',
5288             'Time::HiRes'           => '1.9721_01',
5289             'Unicode::Collate'      => '0.6801',
5290             'Unicode::Collate::Locale'=> '0.68',
5291             'Unicode::Normalize'    => '1.08',
5292             'Unicode::UCD'          => '0.30',
5293             'Win32'                 => '0.41',
5294             'XS::APItest'           => '0.27',
5295             'autodie'               => '2.1001',
5296             'autodie::exception'    => '2.1001',
5297             'autodie::exception::system'=> '2.1001',
5298             'autodie::hints'        => '2.1001',
5299             'feature'               => '1.19',
5300             'if'                    => '0.0601',
5301             'mro'                   => '1.06',
5302             'overload'              => '1.12',
5303             're'                    => '0.15',
5304             'threads'               => '1.81_03',
5305             'threads::shared'       => '1.35',
5306             'version'               => '0.86',
5307         },
5308         removed => {
5309         }
5310     },
5311     5.013009 => {
5312         delta_from => 5.013008,
5313         changed => {
5314             'Archive::Extract'      => '0.48',
5315             'Archive::Tar'          => '1.76',
5316             'Archive::Tar::Constant'=> '1.76',
5317             'Archive::Tar::File'    => '1.76',
5318             'B::Concise'            => '0.83',
5319             'B::Deparse'            => '1.03',
5320             'B::Lint'               => '1.13',
5321             'Benchmark'             => '1.12',
5322             'CGI'                   => '3.51',
5323             'CGI::Carp'             => '3.51',
5324             'CGI::Cookie'           => '1.30',
5325             'CGI::Push'             => '1.05',
5326             'CGI::Util'             => '3.51',
5327             'CPAN'                  => '1.94_63',
5328             'CPAN::HTTP::Client'    => '1.94',
5329             'CPAN::HTTP::Credentials'=> '1.94',
5330             'CPAN::Meta::YAML'      => '0.003',
5331             'CPANPLUS'              => '0.9011',
5332             'CPANPLUS::Dist::Build' => '0.52',
5333             'CPANPLUS::Dist::Build::Constants'=> '0.52',
5334             'CPANPLUS::Internals'   => '0.9011',
5335             'CPANPLUS::Shell::Default'=> '0.9011',
5336             'Carp::Heavy'           => '1.19',
5337             'Compress::Raw::Bzip2'  => '2.033',
5338             'Compress::Raw::Zlib'   => '2.033',
5339             'Compress::Zlib'        => '2.033',
5340             'Cwd'                   => '3.36',
5341             'DBM_Filter'            => '0.04',
5342             'DB_File'               => '1.821',
5343             'Devel::Peek'           => '1.07',
5344             'DirHandle'             => '1.04',
5345             'Dumpvalue'             => '1.16',
5346             'Encode'                => '2.42',
5347             'Encode::Alias'         => '2.13',
5348             'Encode::MIME::Header'  => '2.13',
5349             'Exporter::Heavy'       => '5.64_03',
5350             'ExtUtils::Install'     => '1.56',
5351             'ExtUtils::ParseXS'     => '2.2209',
5352             'File::Basename'        => '2.80',
5353             'File::Copy'            => '2.21',
5354             'File::DosGlob'         => '1.04',
5355             'File::Fetch'           => '0.32',
5356             'File::Find'            => '1.19',
5357             'File::Spec::Mac'       => '3.34',
5358             'File::Spec::VMS'       => '3.34',
5359             'File::stat'            => '1.05',
5360             'HTTP::Tiny'            => '0.009',
5361             'Hash::Util::FieldHash' => '1.08',
5362             'IO::Compress::Adapter::Bzip2'=> '2.033',
5363             'IO::Compress::Adapter::Deflate'=> '2.033',
5364             'IO::Compress::Adapter::Identity'=> '2.033',
5365             'IO::Compress::Base'    => '2.033',
5366             'IO::Compress::Base::Common'=> '2.033',
5367             'IO::Compress::Bzip2'   => '2.033',
5368             'IO::Compress::Deflate' => '2.033',
5369             'IO::Compress::Gzip'    => '2.033',
5370             'IO::Compress::Gzip::Constants'=> '2.033',
5371             'IO::Compress::RawDeflate'=> '2.033',
5372             'IO::Compress::Zip'     => '2.033',
5373             'IO::Compress::Zip::Constants'=> '2.033',
5374             'IO::Compress::Zlib::Constants'=> '2.033',
5375             'IO::Compress::Zlib::Extra'=> '2.033',
5376             'IO::Handle'            => '1.29',
5377             'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5378             'IO::Uncompress::Adapter::Identity'=> '2.033',
5379             'IO::Uncompress::Adapter::Inflate'=> '2.033',
5380             'IO::Uncompress::AnyInflate'=> '2.033',
5381             'IO::Uncompress::AnyUncompress'=> '2.033',
5382             'IO::Uncompress::Base'  => '2.033',
5383             'IO::Uncompress::Bunzip2'=> '2.033',
5384             'IO::Uncompress::Gunzip'=> '2.033',
5385             'IO::Uncompress::Inflate'=> '2.033',
5386             'IO::Uncompress::RawInflate'=> '2.033',
5387             'IO::Uncompress::Unzip' => '2.033',
5388             'IPC::Cmd'              => '0.68',
5389             'IPC::Open3'            => '1.09',
5390             'JSON::PP'              => '2.27103',
5391             'JSON::PP::Boolean'     => undef,
5392             'Locale::Maketext'      => '1.18',
5393             'Log::Message'          => '0.04',
5394             'Log::Message::Config'  => '0.04',
5395             'Log::Message::Handlers'=> '0.04',
5396             'Log::Message::Item'    => '0.04',
5397             'Log::Message::Simple'  => '0.08',
5398             'Math::BigFloat'        => '1.99_03',
5399             'Math::BigInt'          => '1.99_03',
5400             'Math::BigInt::Calc'    => '1.99_03',
5401             'Math::BigInt::FastCalc'=> '0.24_02',
5402             'Math::BigRat'          => '0.26_02',
5403             'Module::CoreList'      => '2.42_01',
5404             'Module::Load::Conditional'=> '0.40',
5405             'Module::Metadata'      => '1.000003',
5406             'Net::Ping'             => '2.38',
5407             'OS2::Process'          => '1.05',
5408             'Object::Accessor'      => '0.38',
5409             'POSIX'                 => '1.24',
5410             'Params::Check'         => '0.28',
5411             'Perl::OSType'          => '1.002',
5412             'Pod::LaTeX'            => '0.59',
5413             'Pod::Perldoc'          => '3.15_03',
5414             'Socket'                => '1.93',
5415             'Storable'              => '2.26',
5416             'Sys::Hostname'         => '1.15',
5417             'Term::UI'              => '0.24',
5418             'Thread::Queue'         => '2.12',
5419             'Thread::Semaphore'     => '2.12',
5420             'Time::Local'           => '1.2000',
5421             'UNIVERSAL'             => '1.08',
5422             'Unicode::Normalize'    => '1.10',
5423             'Win32'                 => '0.44',
5424             'bigint'                => '0.26',
5425             'bignum'                => '0.26',
5426             'bigrat'                => '0.26',
5427             'charnames'             => '1.18',
5428             'diagnostics'           => '1.21',
5429             're'                    => '0.16',
5430             'threads'               => '1.83',
5431             'threads::shared'       => '1.36',
5432             'version'               => '0.88',
5433         },
5434         removed => {
5435         }
5436     },
5437     5.01301 => {
5438         delta_from => 5.013009,
5439         changed => {
5440             'Attribute::Handlers'   => '0.89',
5441             'B'                     => '1.28',
5442             'B::Showlex'            => '1.03',
5443             'CGI'                   => '3.52',
5444             'CPAN'                  => '1.94_65',
5445             'CPAN::Distribution'    => '1.9601',
5446             'CPAN::FTP::netrc'      => '1.01',
5447             'CPAN::FirstTime'       => '5.5303',
5448             'CPAN::HandleConfig'    => '5.5003',
5449             'CPAN::Meta'            => '2.110440',
5450             'CPAN::Meta::Converter' => '2.110440',
5451             'CPAN::Meta::Feature'   => '2.110440',
5452             'CPAN::Meta::History'   => '2.110440',
5453             'CPAN::Meta::Prereqs'   => '2.110440',
5454             'CPAN::Meta::Spec'      => '2.110440',
5455             'CPAN::Meta::Validator' => '2.110440',
5456             'CPAN::Shell'           => '5.5002',
5457             'CPANPLUS'              => '0.9101',
5458             'CPANPLUS::Internals'   => '0.9101',
5459             'CPANPLUS::Shell::Default'=> '0.9101',
5460             'Carp'                  => '1.20',
5461             'Carp::Heavy'           => '1.20',
5462             'Cwd'                   => '3.37',
5463             'Devel::DProf'          => '20110217.00',
5464             'DynaLoader'            => '1.13',
5465             'ExtUtils::CBuilder'    => '0.280202',
5466             'ExtUtils::CBuilder::Base'=> '0.280202',
5467             'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5468             'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5469             'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5470             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5471             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5472             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5473             'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5474             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5475             'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5476             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5477             'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5478             'File::Copy'            => '2.22',
5479             'Filter::Simple'        => '0.86',
5480             'HTTP::Tiny'            => '0.010',
5481             'I18N::LangTags::Detect'=> '1.05',
5482             'IO::Select'            => '1.18',
5483             'IPC::Cmd'              => '0.70',
5484             'Locale::Maketext'      => '1.19',
5485             'Math::BigFloat'        => '1.992',
5486             'Math::BigInt'          => '1.992',
5487             'Math::BigInt::Calc'    => '1.992',
5488             'Math::BigInt::CalcEmu' => '1.992',
5489             'Module::Build'         => '0.37_05',
5490             'Module::Build::Base'   => '0.37_05',
5491             'Module::Build::Compat' => '0.37_05',
5492             'Module::Build::Config' => '0.37_05',
5493             'Module::Build::Cookbook'=> '0.37_05',
5494             'Module::Build::Dumper' => '0.37_05',
5495             'Module::Build::ModuleInfo'=> '0.37_05',
5496             'Module::Build::Notes'  => '0.37_05',
5497             'Module::Build::PPMMaker'=> '0.37_05',
5498             'Module::Build::Platform::Amiga'=> '0.37_05',
5499             'Module::Build::Platform::Default'=> '0.37_05',
5500             'Module::Build::Platform::EBCDIC'=> '0.37_05',
5501             'Module::Build::Platform::MPEiX'=> '0.37_05',
5502             'Module::Build::Platform::MacOS'=> '0.37_05',
5503             'Module::Build::Platform::RiscOS'=> '0.37_05',
5504             'Module::Build::Platform::Unix'=> '0.37_05',
5505             'Module::Build::Platform::VMS'=> '0.37_05',
5506             'Module::Build::Platform::VOS'=> '0.37_05',
5507             'Module::Build::Platform::Windows'=> '0.37_05',
5508             'Module::Build::Platform::aix'=> '0.37_05',
5509             'Module::Build::Platform::cygwin'=> '0.37_05',
5510             'Module::Build::Platform::darwin'=> '0.37_05',
5511             'Module::Build::Platform::os2'=> '0.37_05',
5512             'Module::Build::PodParser'=> '0.37_05',
5513             'Module::Build::Version'=> '0.87',
5514             'Module::Build::YAML'   => '1.41',
5515             'Module::CoreList'      => '2.45',
5516             'Module::Load::Conditional'=> '0.44',
5517             'Module::Metadata'      => '1.000004',
5518             'OS2::Process'          => '1.06',
5519             'Parse::CPAN::Meta'     => '1.4401',
5520             'Pod::Html'             => '1.1',
5521             'Socket'                => '1.94',
5522             'Term::UI'              => '0.26',
5523             'Unicode::Collate'      => '0.72',
5524             'Unicode::Collate::Locale'=> '0.71',
5525             'Unicode::UCD'          => '0.31',
5526             'VMS::DCLsym'           => '1.05',
5527             'Version::Requirements' => '0.101020',
5528             'bigrat'                => '0.27',
5529             'deprecate'             => '0.02',
5530             'diagnostics'           => '1.22',
5531             'inc::latest'           => '0.37_05',
5532             'overload'              => '1.13',
5533             're'                    => '0.17',
5534             'utf8'                  => '1.09',
5535             'warnings'              => '1.12',
5536         },
5537         removed => {
5538         }
5539     },
5540     5.013011 => {
5541         delta_from => 5.01301,
5542         changed => {
5543             'App::Prove'            => '3.23',
5544             'App::Prove::State'     => '3.23',
5545             'App::Prove::State::Result'=> '3.23',
5546             'App::Prove::State::Result::Test'=> '3.23',
5547             'B'                     => '1.29',
5548             'CPAN'                  => '1.9600',
5549             'CPAN::Author'          => '5.5001',
5550             'CPAN::CacheMgr'        => '5.5001',
5551             'CPAN::Distribution'    => '1.9602',
5552             'CPAN::Exception::blocked_urllist'=> '1.001',
5553             'CPAN::HTTP::Client'    => '1.9600',
5554             'CPAN::HTTP::Credentials'=> '1.9600',
5555             'CPAN::Index'           => '1.9600',
5556             'CPAN::LWP::UserAgent'  => '1.9600',
5557             'CPAN::Mirrors'         => '1.9600',
5558             'CPAN::Module'          => '5.5001',
5559             'CPANPLUS'              => '0.9103',
5560             'CPANPLUS::Dist::Build' => '0.54',
5561             'CPANPLUS::Dist::Build::Constants'=> '0.54',
5562             'CPANPLUS::Internals'   => '0.9103',
5563             'CPANPLUS::Shell::Default'=> '0.9103',
5564             'Cwd'                   => '3.36',
5565             'Devel::DProf'          => '20110228.00',
5566             'Digest::SHA'           => '5.61',
5567             'ExtUtils::Command'     => '1.17',
5568             'File::Basename'        => '2.81',
5569             'File::Copy'            => '2.21',
5570             'File::Glob'            => '1.12',
5571             'GDBM_File'             => '1.14',
5572             'HTTP::Tiny'            => '0.011',
5573             'Hash::Util'            => '0.11',
5574             'Hash::Util::FieldHash' => '1.09',
5575             'I18N::Langinfo'        => '0.08',
5576             'IO'                    => '1.25_04',
5577             'IO::Dir'               => '1.08',
5578             'IO::File'              => '1.15',
5579             'IO::Handle'            => '1.30',
5580             'IO::Pipe'              => '1.14',
5581             'IO::Poll'              => '0.08',
5582             'IO::Select'            => '1.20',
5583             'JSON::PP'              => '2.27105',
5584             'Locale::Codes'         => '3.16',
5585             'Locale::Codes::Country'=> '3.16',
5586             'Locale::Codes::Currency'=> '3.16',
5587             'Locale::Codes::Language'=> '3.16',
5588             'Locale::Codes::Script' => '3.16',
5589             'Locale::Constants'     => '3.16',
5590             'Locale::Country'       => '3.16',
5591             'Locale::Currency'      => '3.16',
5592             'Locale::Language'      => '3.16',
5593             'Locale::Script'        => '3.16',
5594             'Math::BigFloat'        => '1.993',
5595             'Math::BigInt'          => '1.994',
5596             'Math::BigInt::Calc'    => '1.993',
5597             'Math::BigInt::CalcEmu' => '1.993',
5598             'Math::BigInt::FastCalc'=> '0.28',
5599             'Module::Build'         => '0.3800',
5600             'Module::Build::Base'   => '0.3800',
5601             'Module::Build::Compat' => '0.3800',
5602             'Module::Build::Config' => '0.3800',
5603             'Module::Build::Cookbook'=> '0.3800',
5604             'Module::Build::Dumper' => '0.3800',
5605             'Module::Build::ModuleInfo'=> '0.3800',
5606             'Module::Build::Notes'  => '0.3800',
5607             'Module::Build::PPMMaker'=> '0.3800',
5608             'Module::Build::Platform::Amiga'=> '0.3800',
5609             'Module::Build::Platform::Default'=> '0.3800',
5610             'Module::Build::Platform::EBCDIC'=> '0.3800',
5611             'Module::Build::Platform::MPEiX'=> '0.3800',
5612             'Module::Build::Platform::MacOS'=> '0.3800',
5613             'Module::Build::Platform::RiscOS'=> '0.3800',
5614             'Module::Build::Platform::Unix'=> '0.3800',
5615             'Module::Build::Platform::VMS'=> '0.3800',
5616             'Module::Build::Platform::VOS'=> '0.3800',
5617             'Module::Build::Platform::Windows'=> '0.3800',
5618             'Module::Build::Platform::aix'=> '0.3800',
5619             'Module::Build::Platform::cygwin'=> '0.3800',
5620             'Module::Build::Platform::darwin'=> '0.3800',
5621             'Module::Build::Platform::os2'=> '0.3800',
5622             'Module::Build::PodParser'=> '0.3800',
5623             'Module::CoreList'      => '2.46',
5624             'NDBM_File'             => '1.12',
5625             'Pod::Simple'           => '3.16',
5626             'Pod::Simple::BlackBox' => '3.16',
5627             'Pod::Simple::Checker'  => '3.16',
5628             'Pod::Simple::Debug'    => '3.16',
5629             'Pod::Simple::DumpAsText'=> '3.16',
5630             'Pod::Simple::DumpAsXML'=> '3.16',
5631             'Pod::Simple::HTML'     => '3.16',
5632             'Pod::Simple::HTMLBatch'=> '3.16',
5633             'Pod::Simple::LinkSection'=> '3.16',
5634             'Pod::Simple::Methody'  => '3.16',
5635             'Pod::Simple::Progress' => '3.16',
5636             'Pod::Simple::PullParser'=> '3.16',
5637             'Pod::Simple::PullParserEndToken'=> '3.16',
5638             'Pod::Simple::PullParserStartToken'=> '3.16',
5639             'Pod::Simple::PullParserTextToken'=> '3.16',
5640             'Pod::Simple::PullParserToken'=> '3.16',
5641             'Pod::Simple::RTF'      => '3.16',
5642             'Pod::Simple::Search'   => '3.16',
5643             'Pod::Simple::SimpleTree'=> '3.16',
5644             'Pod::Simple::Text'     => '3.16',
5645             'Pod::Simple::TextContent'=> '3.16',
5646             'Pod::Simple::TiedOutFH'=> '3.16',
5647             'Pod::Simple::Transcode'=> '3.16',
5648             'Pod::Simple::TranscodeDumb'=> '3.16',
5649             'Pod::Simple::TranscodeSmart'=> '3.16',
5650             'Pod::Simple::XHTML'    => '3.16',
5651             'Pod::Simple::XMLOutStream'=> '3.16',
5652             'Storable'              => '2.27',
5653             'Sys::Hostname'         => '1.16',
5654             'TAP::Base'             => '3.23',
5655             'TAP::Formatter::Base'  => '3.23',
5656             'TAP::Formatter::Color' => '3.23',
5657             'TAP::Formatter::Console'=> '3.23',
5658             'TAP::Formatter::Console::ParallelSession'=> '3.23',
5659             'TAP::Formatter::Console::Session'=> '3.23',
5660             'TAP::Formatter::File'  => '3.23',
5661             'TAP::Formatter::File::Session'=> '3.23',
5662             'TAP::Formatter::Session'=> '3.23',
5663             'TAP::Harness'          => '3.23',
5664             'TAP::Object'           => '3.23',
5665             'TAP::Parser'           => '3.23',
5666             'TAP::Parser::Aggregator'=> '3.23',
5667             'TAP::Parser::Grammar'  => '3.23',
5668             'TAP::Parser::Iterator' => '3.23',
5669             'TAP::Parser::Iterator::Array'=> '3.23',
5670             'TAP::Parser::Iterator::Process'=> '3.23',
5671             'TAP::Parser::Iterator::Stream'=> '3.23',
5672             'TAP::Parser::IteratorFactory'=> '3.23',
5673             'TAP::Parser::Multiplexer'=> '3.23',
5674             'TAP::Parser::Result'   => '3.23',
5675             'TAP::Parser::Result::Bailout'=> '3.23',
5676             'TAP::Parser::Result::Comment'=> '3.23',
5677             'TAP::Parser::Result::Plan'=> '3.23',
5678             'TAP::Parser::Result::Pragma'=> '3.23',
5679             'TAP::Parser::Result::Test'=> '3.23',
5680             'TAP::Parser::Result::Unknown'=> '3.23',
5681             'TAP::Parser::Result::Version'=> '3.23',
5682             'TAP::Parser::Result::YAML'=> '3.23',
5683             'TAP::Parser::ResultFactory'=> '3.23',
5684             'TAP::Parser::Scheduler'=> '3.23',
5685             'TAP::Parser::Scheduler::Job'=> '3.23',
5686             'TAP::Parser::Scheduler::Spinner'=> '3.23',
5687             'TAP::Parser::Source'   => '3.23',
5688             'TAP::Parser::SourceHandler'=> '3.23',
5689             'TAP::Parser::SourceHandler::Executable'=> '3.23',
5690             'TAP::Parser::SourceHandler::File'=> '3.23',
5691             'TAP::Parser::SourceHandler::Handle'=> '3.23',
5692             'TAP::Parser::SourceHandler::Perl'=> '3.23',
5693             'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5694             'TAP::Parser::Utils'    => '3.23',
5695             'TAP::Parser::YAMLish::Reader'=> '3.23',
5696             'TAP::Parser::YAMLish::Writer'=> '3.23',
5697             'Test::Builder'         => '0.98',
5698             'Test::Builder::Module' => '0.98',
5699             'Test::Builder::Tester' => '1.22',
5700             'Test::Builder::Tester::Color'=> '1.22',
5701             'Test::Harness'         => '3.23',
5702             'Test::More'            => '0.98',
5703             'Test::Simple'          => '0.98',
5704             'Tie::Hash::NamedCapture'=> '0.08',
5705             'Tie::RefHash'          => '1.39',
5706             'Unicode::Collate'      => '0.73',
5707             'Unicode::Collate::Locale'=> '0.73',
5708             'Unicode::UCD'          => '0.32',
5709             'XS::Typemap'           => '0.05',
5710             'attributes'            => '0.14',
5711             'base'                  => '2.16',
5712             'inc::latest'           => '0.3800',
5713             'mro'                   => '1.07',
5714             'parent'                => '0.225',
5715         },
5716         removed => {
5717         }
5718     },
5719     5.014 => {
5720         delta_from => 5.013011,
5721         changed => {
5722             'ExtUtils::CBuilder'    => '0.280203',
5723             'ExtUtils::CBuilder::Base'=> '0.280203',
5724             'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5725             'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5726             'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5727             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5728             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5729             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5730             'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5731             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5732             'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5733             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5734             'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5735             'ExtUtils::ParseXS'     => '2.2210',
5736             'File::Basename'        => '2.82',
5737             'HTTP::Tiny'            => '0.012',
5738             'IO::Handle'            => '1.31',
5739             'Module::CoreList'      => '2.49',
5740             'PerlIO'                => '1.07',
5741             'Pod::Html'             => '1.11',
5742             'XS::APItest'           => '0.28',
5743             'bigint'                => '0.27',
5744             'bignum'                => '0.27',
5745             'bigrat'                => '0.28',
5746             'constant'              => '1.21',
5747             'feature'               => '1.20',
5748             're'                    => '0.18',
5749             'threads::shared'       => '1.37',
5750         },
5751         removed => {
5752         }
5753     },
5754     5.014001 => {
5755         delta_from => 5.014,
5756         changed => {
5757             'B::Deparse'            => '1.04',
5758             'Module::CoreList'      => '2.49_01',
5759             'Pod::Perldoc'          => '3.15_04',
5760         },
5761         removed => {
5762         }
5763     },
5764     5.014002 => {
5765         delta_from => 5.014001,
5766         changed => {
5767             'CPAN'                  => '1.9600_01',
5768             'CPAN::Distribution'    => '1.9602_01',
5769             'Devel::DProf::dprof::V'=> undef,
5770             'Encode'                => '2.42_01',
5771             'File::Glob'            => '1.13',
5772             'Module::CoreList'      => '2.49_02',
5773             'PerlIO::scalar'        => '0.11_01',
5774             'Time::Piece::Seconds'  => undef,
5775         },
5776         removed => {
5777         }
5778     },
5779     5.014003 => {
5780         delta_from => 5.014002,
5781         changed => {
5782             'Digest'                => '1.16_01',
5783             'IPC::Open3'            => '1.09_01',
5784             'Module::CoreList'      => '2.49_04',
5785         },
5786         removed => {
5787         }
5788     },
5789     5.014004 => {
5790         delta_from => 5.014003,
5791         changed => {
5792             'Encode'                => '2.42_02',
5793             'IPC::Open3'            => '1.0901',
5794             'Module::CoreList'      => '2.49_06',
5795         },
5796         removed => {
5797         }
5798     },
5799     5.015 => {
5800         delta_from => 5.014001,
5801         changed => {
5802             'Archive::Extract'      => '0.52',
5803             'Attribute::Handlers'   => '0.91',
5804             'B'                     => '1.30',
5805             'B::Concise'            => '0.84',
5806             'B::Deparse'            => '1.05',
5807             'Benchmark'             => '1.13',
5808             'CGI'                   => '3.54',
5809             'CGI::Util'             => '3.53',
5810             'CPAN::Meta'            => '2.110930',
5811             'CPAN::Meta::Converter' => '2.110930',
5812             'CPAN::Meta::Feature'   => '2.110930',
5813             'CPAN::Meta::History'   => '2.110930',
5814             'CPAN::Meta::Prereqs'   => '2.110930',
5815             'CPAN::Meta::Spec'      => '2.110930',
5816             'CPAN::Meta::Validator' => '2.110930',
5817             'CPANPLUS'              => '0.9105',
5818             'CPANPLUS::Dist::Build' => '0.56',
5819             'CPANPLUS::Dist::Build::Constants'=> '0.56',
5820             'CPANPLUS::Internals'   => '0.9105',
5821             'CPANPLUS::Shell::Default'=> '0.9105',
5822             'Compress::Raw::Bzip2'  => '2.035',
5823             'Compress::Raw::Zlib'   => '2.035',
5824             'Compress::Zlib'        => '2.035',
5825             'DB_File'               => '1.822',
5826             'Data::Dumper'          => '2.131',
5827             'Devel::Peek'           => '1.08',
5828             'Digest::SHA'           => '5.62',
5829             'Encode'                => '2.43',
5830             'Encode::Alias'         => '2.14',
5831             'ExtUtils::CBuilder'    => '0.280204',
5832             'ExtUtils::CBuilder::Base'=> '0.280204',
5833             'Fatal'                 => '2.10',
5834             'File::Spec::Win32'     => '3.34',
5835             'Filter::Simple'        => '0.87',
5836             'Filter::Util::Call'    => '1.39',
5837             'FindBin'               => '1.51',
5838             'Hash::Util::FieldHash' => '1.10',
5839             'I18N::LangTags'        => '0.36',
5840             'IO::Compress::Adapter::Bzip2'=> '2.035',
5841             'IO::Compress::Adapter::Deflate'=> '2.035',
5842             'IO::Compress::Adapter::Identity'=> '2.035',
5843             'IO::Compress::Base'    => '2.035',
5844             'IO::Compress::Base::Common'=> '2.035',
5845             'IO::Compress::Bzip2'   => '2.035',
5846             'IO::Compress::Deflate' => '2.035',
5847             'IO::Compress::Gzip'    => '2.035',
5848             'IO::Compress::Gzip::Constants'=> '2.035',
5849             'IO::Compress::RawDeflate'=> '2.035',
5850             'IO::Compress::Zip'     => '2.035',
5851             'IO::Compress::Zip::Constants'=> '2.035',
5852             'IO::Compress::Zlib::Constants'=> '2.035',
5853             'IO::Compress::Zlib::Extra'=> '2.035',
5854             'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5855             'IO::Uncompress::Adapter::Identity'=> '2.035',
5856             'IO::Uncompress::Adapter::Inflate'=> '2.035',
5857             'IO::Uncompress::AnyInflate'=> '2.035',
5858             'IO::Uncompress::AnyUncompress'=> '2.035',
5859             'IO::Uncompress::Base'  => '2.035',
5860             'IO::Uncompress::Bunzip2'=> '2.035',
5861             'IO::Uncompress::Gunzip'=> '2.035',
5862             'IO::Uncompress::Inflate'=> '2.035',
5863             'IO::Uncompress::RawInflate'=> '2.035',
5864             'IO::Uncompress::Unzip' => '2.035',
5865             'IPC::Open2'            => '1.04',
5866             'IPC::Open3'            => '1.11',
5867             'JSON::PP'              => '2.27200',
5868             'Math::BigFloat'        => '1.994',
5869             'Math::BigInt'          => '1.995',
5870             'Math::Complex'         => '1.57',
5871             'Math::Trig'            => '1.21',
5872             'Module::CoreList'      => '2.51',
5873             'ODBM_File'             => '1.11',
5874             'Object::Accessor'      => '0.42',
5875             'Opcode'                => '1.19',
5876             'PerlIO::encoding'      => '0.15',
5877             'PerlIO::scalar'        => '0.12',
5878             'Pod::Perldoc'          => '3.15_05',
5879             'Storable'              => '2.28',
5880             'Sys::Syslog'           => '0.29',
5881             'Time::HiRes'           => '1.9722',
5882             'Unicode::Collate'      => '0.76',
5883             'Unicode::Collate::CJK::Pinyin'=> '0.76',
5884             'Unicode::Collate::CJK::Stroke'=> '0.76',
5885             'Unicode::Collate::Locale'=> '0.76',
5886             'Unicode::Normalize'    => '1.12',
5887             'XS::APItest'           => '0.29',
5888             'XSLoader'              => '0.15',
5889             'autodie'               => '2.10',
5890             'autodie::exception'    => '2.10',
5891             'autodie::exception::system'=> '2.10',
5892             'autodie::hints'        => '2.10',
5893             'base'                  => '2.17',
5894             'charnames'             => '1.22',
5895             'constant'              => '1.22',
5896             'feature'               => '1.21',
5897             'mro'                   => '1.08',
5898             'overload'              => '1.14',
5899             'threads::shared'       => '1.38',
5900             'vmsish'                => '1.03',
5901         },
5902         removed => {
5903             'Devel::DProf'          => 1,
5904             'Shell'                 => 1,
5905         }
5906     },
5907     5.015001 => {
5908         delta_from => 5.015,
5909         changed => {
5910             'B::Deparse'            => '1.06',
5911             'CGI'                   => '3.55',
5912             'CPAN::Meta'            => '2.110930001',
5913             'CPAN::Meta::Converter' => '2.110930001',
5914             'CPANPLUS'              => '0.9108',
5915             'CPANPLUS::Internals'   => '0.9108',
5916             'CPANPLUS::Shell::Default'=> '0.9108',
5917             'Carp'                  => '1.21',
5918             'Carp::Heavy'           => '1.21',
5919             'Compress::Raw::Bzip2'  => '2.037',
5920             'Compress::Raw::Zlib'   => '2.037',
5921             'Compress::Zlib'        => '2.037',
5922             'Cwd'                   => '3.37',
5923             'Env'                   => '1.03',
5924             'ExtUtils::Command::MM' => '6.58',
5925             'ExtUtils::Liblist'     => '6.58',
5926             'ExtUtils::Liblist::Kid'=> '6.58',
5927             'ExtUtils::MM'          => '6.58',
5928             'ExtUtils::MM_AIX'      => '6.58',
5929             'ExtUtils::MM_Any'      => '6.58',
5930             'ExtUtils::MM_BeOS'     => '6.58',
5931             'ExtUtils::MM_Cygwin'   => '6.58',
5932             'ExtUtils::MM_DOS'      => '6.58',
5933             'ExtUtils::MM_Darwin'   => '6.58',
5934             'ExtUtils::MM_MacOS'    => '6.58',
5935             'ExtUtils::MM_NW5'      => '6.58',
5936             'ExtUtils::MM_OS2'      => '6.58',
5937             'ExtUtils::MM_QNX'      => '6.58',
5938             'ExtUtils::MM_UWIN'     => '6.58',
5939             'ExtUtils::MM_Unix'     => '6.58',
5940             'ExtUtils::MM_VMS'      => '6.58',
5941             'ExtUtils::MM_VOS'      => '6.58',
5942             'ExtUtils::MM_Win32'    => '6.58',
5943             'ExtUtils::MM_Win95'    => '6.58',
5944             'ExtUtils::MY'          => '6.58',
5945             'ExtUtils::MakeMaker'   => '6.58',
5946             'ExtUtils::MakeMaker::Config'=> '6.58',
5947             'ExtUtils::Mkbootstrap' => '6.58',
5948             'ExtUtils::Mksymlists'  => '6.58',
5949             'ExtUtils::ParseXS'     => '3.00_01',
5950             'ExtUtils::ParseXS::Constants'=> undef,
5951             'ExtUtils::ParseXS::CountLines'=> undef,
5952             'ExtUtils::ParseXS::Utilities'=> undef,
5953             'ExtUtils::Typemaps'    => '1.00',
5954             'ExtUtils::Typemaps::InputMap'=> undef,
5955             'ExtUtils::Typemaps::OutputMap'=> undef,
5956             'ExtUtils::Typemaps::Type'=> '0.05',
5957             'ExtUtils::testlib'     => '6.58',
5958             'File::Basename'        => '2.83',
5959             'File::Find'            => '1.20',
5960             'HTTP::Tiny'            => '0.013',
5961             'I18N::Langinfo'        => '0.08_02',
5962             'IO::Compress::Adapter::Bzip2'=> '2.037',
5963             'IO::Compress::Adapter::Deflate'=> '2.037',
5964             'IO::Compress::Adapter::Identity'=> '2.037',
5965             'IO::Compress::Base'    => '2.037',
5966             'IO::Compress::Base::Common'=> '2.037',
5967             'IO::Compress::Bzip2'   => '2.037',
5968             'IO::Compress::Deflate' => '2.037',
5969             'IO::Compress::Gzip'    => '2.037',
5970             'IO::Compress::Gzip::Constants'=> '2.037',
5971             'IO::Compress::RawDeflate'=> '2.037',
5972             'IO::Compress::Zip'     => '2.037',
5973             'IO::Compress::Zip::Constants'=> '2.037',
5974             'IO::Compress::Zlib::Constants'=> '2.037',
5975             'IO::Compress::Zlib::Extra'=> '2.037',
5976             'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
5977             'IO::Uncompress::Adapter::Identity'=> '2.037',
5978             'IO::Uncompress::Adapter::Inflate'=> '2.037',
5979             'IO::Uncompress::AnyInflate'=> '2.037',
5980             'IO::Uncompress::AnyUncompress'=> '2.037',
5981             'IO::Uncompress::Base'  => '2.037',
5982             'IO::Uncompress::Bunzip2'=> '2.037',
5983             'IO::Uncompress::Gunzip'=> '2.037',
5984             'IO::Uncompress::Inflate'=> '2.037',
5985             'IO::Uncompress::RawInflate'=> '2.037',
5986             'IO::Uncompress::Unzip' => '2.037',
5987             'IPC::Cmd'              => '0.72',
5988             'Locale::Codes'         => '3.17',
5989             'Locale::Codes::Constants'=> '3.17',
5990             'Locale::Codes::Country'=> '3.17',
5991             'Locale::Codes::Country_Codes'=> '3.17',
5992             'Locale::Codes::Currency'=> '3.17',
5993             'Locale::Codes::Currency_Codes'=> '3.17',
5994             'Locale::Codes::LangExt'=> '3.17',
5995             'Locale::Codes::LangExt_Codes'=> '3.17',
5996             'Locale::Codes::LangVar'=> '3.17',
5997             'Locale::Codes::LangVar_Codes'=> '3.17',
5998             'Locale::Codes::Language'=> '3.17',
5999             'Locale::Codes::Language_Codes'=> '3.17',
6000             'Locale::Codes::Script' => '3.17',
6001             'Locale::Codes::Script_Codes'=> '3.17',
6002             'Locale::Country'       => '3.17',
6003             'Locale::Currency'      => '3.17',
6004             'Locale::Language'      => '3.17',
6005             'Locale::Script'        => '3.17',
6006             'Math::BigFloat::Trace' => '0.28',
6007             'Math::BigInt::FastCalc'=> '0.29',
6008             'Math::BigInt::Trace'   => '0.28',
6009             'Math::BigRat'          => '0.2602',
6010             'Math::Complex'         => '1.58',
6011             'Math::Trig'            => '1.22',
6012             'Module::CoreList'      => '2.54',
6013             'OS2::Process'          => '1.07',
6014             'Pod::Perldoc'          => '3.15_06',
6015             'Pod::Simple'           => '3.18',
6016             'Pod::Simple::BlackBox' => '3.18',
6017             'Pod::Simple::Checker'  => '3.18',
6018             'Pod::Simple::Debug'    => '3.18',
6019             'Pod::Simple::DumpAsText'=> '3.18',
6020             'Pod::Simple::DumpAsXML'=> '3.18',
6021             'Pod::Simple::HTML'     => '3.18',
6022             'Pod::Simple::HTMLBatch'=> '3.18',
6023             'Pod::Simple::LinkSection'=> '3.18',
6024             'Pod::Simple::Methody'  => '3.18',
6025             'Pod::Simple::Progress' => '3.18',
6026             'Pod::Simple::PullParser'=> '3.18',
6027             'Pod::Simple::PullParserEndToken'=> '3.18',
6028             'Pod::Simple::PullParserStartToken'=> '3.18',
6029             'Pod::Simple::PullParserTextToken'=> '3.18',
6030             'Pod::Simple::PullParserToken'=> '3.18',
6031             'Pod::Simple::RTF'      => '3.18',
6032             'Pod::Simple::Search'   => '3.18',
6033             'Pod::Simple::SimpleTree'=> '3.18',
6034             'Pod::Simple::Text'     => '3.18',
6035             'Pod::Simple::TextContent'=> '3.18',
6036             'Pod::Simple::TiedOutFH'=> '3.18',
6037             'Pod::Simple::Transcode'=> '3.18',
6038             'Pod::Simple::TranscodeDumb'=> '3.18',
6039             'Pod::Simple::TranscodeSmart'=> '3.18',
6040             'Pod::Simple::XHTML'    => '3.18',
6041             'Pod::Simple::XMLOutStream'=> '3.18',
6042             'Storable'              => '2.31',
6043             'Sys::Syslog::Win32'    => undef,
6044             'Time::HiRes'           => '1.9724',
6045             'Unicode::Collate'      => '0.77',
6046             'Unicode::UCD'          => '0.33',
6047             'Win32API::File'        => '0.1200',
6048             'XS::APItest'           => '0.30',
6049             'attributes'            => '0.15',
6050             'bigint'                => '0.28',
6051             'bignum'                => '0.28',
6052             'charnames'             => '1.23',
6053             'diagnostics'           => '1.23',
6054             'feature'               => '1.22',
6055             'overload'              => '1.15',
6056             'perlfaq'               => '5.015000',
6057             'threads'               => '1.84',
6058             'version'               => '0.93',
6059         },
6060         removed => {
6061             'ExtUtils::MakeMaker::YAML'=> 1,
6062             'Locale::Constants'     => 1,
6063             'Sys::Syslog::win32::Win32'=> 1,
6064         }
6065     },
6066     5.015002 => {
6067         delta_from => 5.015001,
6068         changed => {
6069             'Attribute::Handlers'   => '0.92',
6070             'B'                     => '1.31',
6071             'B::Concise'            => '0.85',
6072             'B::Deparse'            => '1.07',
6073             'B::Terse'              => '1.06',
6074             'B::Xref'               => '1.03',
6075             'CPAN'                  => '1.9800',
6076             'CPAN::Exception::yaml_process_error'=> '5.5',
6077             'CPAN::Meta'            => '2.112150',
6078             'CPAN::Meta::Converter' => '2.112150',
6079             'CPAN::Meta::Feature'   => '2.112150',
6080             'CPAN::Meta::History'   => '2.112150',
6081             'CPAN::Meta::Prereqs'   => '2.112150',
6082             'CPAN::Meta::Spec'      => '2.112150',
6083             'CPAN::Meta::Validator' => '2.112150',
6084             'CPANPLUS'              => '0.9109',
6085             'CPANPLUS::Internals'   => '0.9109',
6086             'CPANPLUS::Shell::Default'=> '0.9109',
6087             'DB_File'               => '1.824',
6088             'Data::Dumper'          => '2.132',
6089             'Encode'                => '2.44',
6090             'Encode::Alias'         => '2.15',
6091             'Encode::Encoder'       => '2.02',
6092             'Encode::Guess'         => '2.05',
6093             'ExtUtils::Command::MM' => '6.59',
6094             'ExtUtils::Install'     => '1.57',
6095             'ExtUtils::Installed'   => '1.999002',
6096             'ExtUtils::Liblist'     => '6.59',
6097             'ExtUtils::Liblist::Kid'=> '6.59',
6098             'ExtUtils::MM'          => '6.59',
6099             'ExtUtils::MM_AIX'      => '6.59',
6100             'ExtUtils::MM_Any'      => '6.59',
6101             'ExtUtils::MM_BeOS'     => '6.59',
6102             'ExtUtils::MM_Cygwin'   => '6.59',
6103             'ExtUtils::MM_DOS'      => '6.59',
6104             'ExtUtils::MM_Darwin'   => '6.59',
6105             'ExtUtils::MM_MacOS'    => '6.59',
6106             'ExtUtils::MM_NW5'      => '6.59',
6107             'ExtUtils::MM_OS2'      => '6.59',
6108             'ExtUtils::MM_QNX'      => '6.59',
6109             'ExtUtils::MM_UWIN'     => '6.59',
6110             'ExtUtils::MM_Unix'     => '6.59',
6111             'ExtUtils::MM_VMS'      => '6.59',
6112             'ExtUtils::MM_VOS'      => '6.59',
6113             'ExtUtils::MM_Win32'    => '6.59',
6114             'ExtUtils::MM_Win95'    => '6.59',
6115             'ExtUtils::MY'          => '6.59',
6116             'ExtUtils::MakeMaker'   => '6.59',
6117             'ExtUtils::MakeMaker::Config'=> '6.59',
6118             'ExtUtils::Manifest'    => '1.60',
6119             'ExtUtils::Mkbootstrap' => '6.59',
6120             'ExtUtils::Mksymlists'  => '6.59',
6121             'ExtUtils::ParseXS'     => '3.03_01',
6122             'ExtUtils::Typemaps'    => '1.01',
6123             'ExtUtils::testlib'     => '6.59',
6124             'File::Spec'            => '3.34',
6125             'File::Spec::Mac'       => '3.35',
6126             'File::Spec::Unix'      => '3.34',
6127             'File::Spec::VMS'       => '3.35',
6128             'File::Spec::Win32'     => '3.35',
6129             'I18N::LangTags'        => '0.37',
6130             'IO'                    => '1.25_05',
6131             'IO::Handle'            => '1.32',
6132             'IO::Socket'            => '1.33',
6133             'IO::Socket::INET'      => '1.32',
6134             'IPC::Open3'            => '1.12',
6135             'Math::BigFloat'        => '1.995',
6136             'Math::BigFloat::Trace' => '0.29',
6137             'Math::BigInt'          => '1.996',
6138             'Math::BigInt::Trace'   => '0.29',
6139             'Module::Build'         => '0.39_01',
6140             'Module::Build::Base'   => '0.39_01',
6141             'Module::Build::Compat' => '0.39_01',
6142             'Module::Build::Config' => '0.39_01',
6143             'Module::Build::Cookbook'=> '0.39_01',
6144             'Module::Build::Dumper' => '0.39_01',
6145             'Module::Build::ModuleInfo'=> '0.39_01',
6146             'Module::Build::Notes'  => '0.39_01',
6147             'Module::Build::PPMMaker'=> '0.39_01',
6148             'Module::Build::Platform::Amiga'=> '0.39_01',
6149             'Module::Build::Platform::Default'=> '0.39_01',
6150             'Module::Build::Platform::EBCDIC'=> '0.39_01',
6151             'Module::Build::Platform::MPEiX'=> '0.39_01',
6152             'Module::Build::Platform::MacOS'=> '0.39_01',
6153             'Module::Build::Platform::RiscOS'=> '0.39_01',
6154             'Module::Build::Platform::Unix'=> '0.39_01',
6155             'Module::Build::Platform::VMS'=> '0.39_01',
6156             'Module::Build::Platform::VOS'=> '0.39_01',
6157             'Module::Build::Platform::Windows'=> '0.39_01',
6158             'Module::Build::Platform::aix'=> '0.39_01',
6159             'Module::Build::Platform::cygwin'=> '0.39_01',
6160             'Module::Build::Platform::darwin'=> '0.39_01',
6161             'Module::Build::Platform::os2'=> '0.39_01',
6162             'Module::Build::PodParser'=> '0.39_01',
6163             'Module::CoreList'      => '2.55',
6164             'Module::Load'          => '0.20',
6165             'Module::Metadata'      => '1.000005_01',
6166             'Opcode'                => '1.20',
6167             'Params::Check'         => '0.32',
6168             'PerlIO::via'           => '0.12',
6169             'Term::ANSIColor'       => '3.01',
6170             'Unicode::Collate'      => '0.78',
6171             'Unicode::Normalize'    => '1.13',
6172             'Unicode::UCD'          => '0.34',
6173             'bigint'                => '0.29',
6174             'bignum'                => '0.29',
6175             'bigrat'                => '0.29',
6176             'diagnostics'           => '1.24',
6177             'fields'                => '2.16',
6178             'inc::latest'           => '0.39_01',
6179         },
6180         removed => {
6181         }
6182     },
6183     5.015003 => {
6184         delta_from => 5.015002,
6185         changed => {
6186             'AnyDBM_File'           => '1.01',
6187             'Archive::Extract'      => '0.56',
6188             'Archive::Tar'          => '1.78',
6189             'Archive::Tar::Constant'=> '1.78',
6190             'Archive::Tar::File'    => '1.78',
6191             'Attribute::Handlers'   => '0.93',
6192             'B'                     => '1.32',
6193             'B::Concise'            => '0.86',
6194             'B::Deparse'            => '1.08',
6195             'CPAN::Meta'            => '2.112621',
6196             'CPAN::Meta::Converter' => '2.112621',
6197             'CPAN::Meta::Feature'   => '2.112621',
6198             'CPAN::Meta::History'   => '2.112621',
6199             'CPAN::Meta::Prereqs'   => '2.112621',
6200             'CPAN::Meta::Spec'      => '2.112621',
6201             'CPAN::Meta::Validator' => '2.112621',
6202             'CPAN::Meta::YAML'      => '0.004',
6203             'CPANPLUS'              => '0.9111',
6204             'CPANPLUS::Dist::Build' => '0.58',
6205             'CPANPLUS::Dist::Build::Constants'=> '0.58',
6206             'CPANPLUS::Internals'   => '0.9111',
6207             'CPANPLUS::Shell::Default'=> '0.9111',
6208             'Carp'                  => '1.23',
6209             'Carp::Heavy'           => '1.23',
6210             'Data::Dumper'          => '2.134',
6211             'Devel::PPPort'         => '3.20',
6212             'Errno'                 => '1.14',
6213             'Exporter'              => '5.65',
6214             'Exporter::Heavy'       => '5.65',
6215             'ExtUtils::ParseXS'     => '3.04_04',
6216             'ExtUtils::ParseXS::Constants'=> '3.04_04',
6217             'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6218             'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6219             'ExtUtils::Typemaps'    => '1.02',
6220             'File::Glob'            => '1.13',
6221             'Filter::Simple'        => '0.88',
6222             'IO'                    => '1.25_06',
6223             'IO::Handle'            => '1.33',
6224             'Locale::Codes'         => '3.18',
6225             'Locale::Codes::Constants'=> '3.18',
6226             'Locale::Codes::Country'=> '3.18',
6227             'Locale::Codes::Country_Codes'=> '3.18',
6228             'Locale::Codes::Currency'=> '3.18',
6229             'Locale::Codes::Currency_Codes'=> '3.18',
6230             'Locale::Codes::LangExt'=> '3.18',
6231             'Locale::Codes::LangExt_Codes'=> '3.18',
6232             'Locale::Codes::LangVar'=> '3.18',
6233             'Locale::Codes::LangVar_Codes'=> '3.18',
6234             'Locale::Codes::Language'=> '3.18',
6235             'Locale::Codes::Language_Codes'=> '3.18',
6236             'Locale::Codes::Script' => '3.18',
6237             'Locale::Codes::Script_Codes'=> '3.18',
6238             'Locale::Country'       => '3.18',
6239             'Locale::Currency'      => '3.18',
6240             'Locale::Language'      => '3.18',
6241             'Locale::Script'        => '3.18',
6242             'Math::BigFloat'        => '1.997',
6243             'Math::BigInt'          => '1.997',
6244             'Math::BigInt::Calc'    => '1.997',
6245             'Math::BigInt::CalcEmu' => '1.997',
6246             'Math::BigInt::FastCalc'=> '0.30',
6247             'Math::BigRat'          => '0.2603',
6248             'Module::CoreList'      => '2.56',
6249             'Module::Load::Conditional'=> '0.46',
6250             'Module::Metadata'      => '1.000007',
6251             'ODBM_File'             => '1.12',
6252             'POSIX'                 => '1.26',
6253             'Pod::Perldoc'          => '3.15_07',
6254             'Pod::Simple'           => '3.19',
6255             'Pod::Simple::BlackBox' => '3.19',
6256             'Pod::Simple::Checker'  => '3.19',
6257             'Pod::Simple::Debug'    => '3.19',
6258             'Pod::Simple::DumpAsText'=> '3.19',
6259             'Pod::Simple::DumpAsXML'=> '3.19',
6260             'Pod::Simple::HTML'     => '3.19',
6261             'Pod::Simple::HTMLBatch'=> '3.19',
6262             'Pod::Simple::LinkSection'=> '3.19',
6263             'Pod::Simple::Methody'  => '3.19',
6264             'Pod::Simple::Progress' => '3.19',
6265             'Pod::Simple::PullParser'=> '3.19',
6266             'Pod::Simple::PullParserEndToken'=> '3.19',
6267             'Pod::Simple::PullParserStartToken'=> '3.19',
6268             'Pod::Simple::PullParserTextToken'=> '3.19',
6269             'Pod::Simple::PullParserToken'=> '3.19',
6270             'Pod::Simple::RTF'      => '3.19',
6271             'Pod::Simple::Search'   => '3.19',
6272             'Pod::Simple::SimpleTree'=> '3.19',
6273             'Pod::Simple::Text'     => '3.19',
6274             'Pod::Simple::TextContent'=> '3.19',
6275             'Pod::Simple::TiedOutFH'=> '3.19',
6276             'Pod::Simple::Transcode'=> '3.19',
6277             'Pod::Simple::TranscodeDumb'=> '3.19',
6278             'Pod::Simple::TranscodeSmart'=> '3.19',
6279             'Pod::Simple::XHTML'    => '3.19',
6280             'Pod::Simple::XMLOutStream'=> '3.19',
6281             'Search::Dict'          => '1.04',
6282             'Socket'                => '1.94_01',
6283             'Storable'              => '2.32',
6284             'Text::Abbrev'          => '1.02',
6285             'Tie::Array'            => '1.05',
6286             'UNIVERSAL'             => '1.09',
6287             'Unicode::UCD'          => '0.35',
6288             'XS::APItest'           => '0.31',
6289             'XSLoader'              => '0.16',
6290             'attributes'            => '0.16',
6291             'diagnostics'           => '1.25',
6292             'open'                  => '1.09',
6293             'perlfaq'               => '5.0150034',
6294             'threads'               => '1.85',
6295             'threads::shared'       => '1.40',
6296         },
6297         removed => {
6298         }
6299     },
6300     5.015004 => {
6301         delta_from => 5.015003,
6302         changed => {
6303             'Archive::Tar'          => '1.80',
6304             'Archive::Tar::Constant'=> '1.80',
6305             'Archive::Tar::File'    => '1.80',
6306             'Digest'                => '1.17',
6307             'DynaLoader'            => '1.14',
6308             'ExtUtils::Command::MM' => '6.61_01',
6309             'ExtUtils::Liblist'     => '6.61_01',
6310             'ExtUtils::Liblist::Kid'=> '6.61_01',
6311             'ExtUtils::MM'          => '6.61_01',
6312             'ExtUtils::MM_AIX'      => '6.61_01',
6313             'ExtUtils::MM_Any'      => '6.61_01',
6314             'ExtUtils::MM_BeOS'     => '6.61_01',
6315             'ExtUtils::MM_Cygwin'   => '6.61_01',
6316             'ExtUtils::MM_DOS'      => '6.61_01',
6317             'ExtUtils::MM_Darwin'   => '6.61_01',
6318             'ExtUtils::MM_MacOS'    => '6.61_01',
6319             'ExtUtils::MM_NW5'      => '6.61_01',
6320             'ExtUtils::MM_OS2'      => '6.61_01',
6321             'ExtUtils::MM_QNX'      => '6.61_01',
6322             'ExtUtils::MM_UWIN'     => '6.61_01',
6323             'ExtUtils::MM_Unix'     => '6.61_01',
6324             'ExtUtils::MM_VMS'      => '6.61_01',
6325             'ExtUtils::MM_VOS'      => '6.61_01',
6326             'ExtUtils::MM_Win32'    => '6.61_01',
6327             'ExtUtils::MM_Win95'    => '6.61_01',
6328             'ExtUtils::MY'          => '6.61_01',
6329             'ExtUtils::MakeMaker'   => '6.61_01',
6330             'ExtUtils::MakeMaker::Config'=> '6.61_01',
6331             'ExtUtils::Mkbootstrap' => '6.61_01',
6332             'ExtUtils::Mksymlists'  => '6.61_01',
6333             'ExtUtils::ParseXS'     => '3.05',
6334             'ExtUtils::ParseXS::Constants'=> '3.05',
6335             'ExtUtils::ParseXS::CountLines'=> '3.05',
6336             'ExtUtils::ParseXS::Utilities'=> '3.05',
6337             'ExtUtils::testlib'     => '6.61_01',
6338             'File::DosGlob'         => '1.05',
6339             'Module::CoreList'      => '2.57',
6340             'Module::Load'          => '0.22',
6341             'Unicode::Collate'      => '0.80',
6342             'Unicode::Collate::Locale'=> '0.80',
6343             'Unicode::UCD'          => '0.36',
6344             'XS::APItest'           => '0.32',
6345             'XS::Typemap'           => '0.07',
6346             'attributes'            => '0.17',
6347             'base'                  => '2.18',
6348             'constant'              => '1.23',
6349             'mro'                   => '1.09',
6350             'open'                  => '1.10',
6351             'perlfaq'               => '5.0150035',
6352         },
6353         removed => {
6354         }
6355     },
6356     5.015005 => {
6357         delta_from => 5.015004,
6358         changed => {
6359             'Archive::Extract'      => '0.58',
6360             'B::Concise'            => '0.87',
6361             'B::Deparse'            => '1.09',
6362             'CGI'                   => '3.58',
6363             'CGI::Fast'             => '1.09',
6364             'CPANPLUS'              => '0.9112',
6365             'CPANPLUS::Dist::Build' => '0.60',
6366             'CPANPLUS::Dist::Build::Constants'=> '0.60',
6367             'CPANPLUS::Internals'   => '0.9112',
6368             'CPANPLUS::Shell::Default'=> '0.9112',
6369             'Compress::Raw::Bzip2'  => '2.042',
6370             'Compress::Raw::Zlib'   => '2.042',
6371             'Compress::Zlib'        => '2.042',
6372             'Digest::SHA'           => '5.63',
6373             'Errno'                 => '1.15',
6374             'ExtUtils::Command::MM' => '6.63_02',
6375             'ExtUtils::Liblist'     => '6.63_02',
6376             'ExtUtils::Liblist::Kid'=> '6.63_02',
6377             'ExtUtils::MM'          => '6.63_02',
6378             'ExtUtils::MM_AIX'      => '6.63_02',
6379             'ExtUtils::MM_Any'      => '6.63_02',
6380             'ExtUtils::MM_BeOS'     => '6.63_02',
6381             'ExtUtils::MM_Cygwin'   => '6.63_02',
6382             'ExtUtils::MM_DOS'      => '6.63_02',
6383             'ExtUtils::MM_Darwin'   => '6.63_02',
6384             'ExtUtils::MM_MacOS'    => '6.63_02',
6385             'ExtUtils::MM_NW5'      => '6.63_02',
6386             'ExtUtils::MM_OS2'      => '6.63_02',
6387             'ExtUtils::MM_QNX'      => '6.63_02',
6388             'ExtUtils::MM_UWIN'     => '6.63_02',
6389             'ExtUtils::MM_Unix'     => '6.63_02',
6390             'ExtUtils::MM_VMS'      => '6.63_02',
6391             'ExtUtils::MM_VOS'      => '6.63_02',
6392             'ExtUtils::MM_Win32'    => '6.63_02',
6393             'ExtUtils::MM_Win95'    => '6.63_02',
6394             'ExtUtils::MY'          => '6.63_02',
6395             'ExtUtils::MakeMaker'   => '6.63_02',
6396             'ExtUtils::MakeMaker::Config'=> '6.63_02',
6397             'ExtUtils::Mkbootstrap' => '6.63_02',
6398             'ExtUtils::Mksymlists'  => '6.63_02',
6399             'ExtUtils::testlib'     => '6.63_02',
6400             'File::DosGlob'         => '1.06',
6401             'File::Glob'            => '1.14',
6402             'HTTP::Tiny'            => '0.016',
6403             'IO::Compress::Adapter::Bzip2'=> '2.042',
6404             'IO::Compress::Adapter::Deflate'=> '2.042',
6405             'IO::Compress::Adapter::Identity'=> '2.042',
6406             'IO::Compress::Base'    => '2.042',
6407             'IO::Compress::Base::Common'=> '2.042',
6408             'IO::Compress::Bzip2'   => '2.042',
6409             'IO::Compress::Deflate' => '2.042',
6410             'IO::Compress::Gzip'    => '2.042',
6411             'IO::Compress::Gzip::Constants'=> '2.042',
6412             'IO::Compress::RawDeflate'=> '2.042',
6413             'IO::Compress::Zip'     => '2.042',
6414             'IO::Compress::Zip::Constants'=> '2.042',
6415             'IO::Compress::Zlib::Constants'=> '2.042',
6416             'IO::Compress::Zlib::Extra'=> '2.042',
6417             'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6418             'IO::Uncompress::Adapter::Identity'=> '2.042',
6419             'IO::Uncompress::Adapter::Inflate'=> '2.042',
6420             'IO::Uncompress::AnyInflate'=> '2.042',
6421             'IO::Uncompress::AnyUncompress'=> '2.042',
6422             'IO::Uncompress::Base'  => '2.042',
6423             'IO::Uncompress::Bunzip2'=> '2.042',
6424             'IO::Uncompress::Gunzip'=> '2.042',
6425             'IO::Uncompress::Inflate'=> '2.042',
6426             'IO::Uncompress::RawInflate'=> '2.042',
6427             'IO::Uncompress::Unzip' => '2.042',
6428             'Locale::Maketext'      => '1.20',
6429             'Locale::Maketext::Guts'=> '1.20',
6430             'Locale::Maketext::GutsLoader'=> '1.20',
6431             'Module::CoreList'      => '2.58',
6432             'Opcode'                => '1.21',
6433             'Socket'                => '1.94_02',
6434             'Storable'              => '2.33',
6435             'UNIVERSAL'             => '1.10',
6436             'Unicode::Collate'      => '0.85',
6437             'Unicode::Collate::CJK::Pinyin'=> '0.85',
6438             'Unicode::Collate::CJK::Stroke'=> '0.85',
6439             'Unicode::Collate::Locale'=> '0.85',
6440             'Unicode::UCD'          => '0.37',
6441             'XS::APItest'           => '0.33',
6442             'arybase'               => '0.01',
6443             'charnames'             => '1.24',
6444             'feature'               => '1.23',
6445             'perlfaq'               => '5.0150036',
6446             'strict'                => '1.05',
6447             'unicore::Name'         => undef,
6448         },
6449         removed => {
6450         }
6451     },
6452     5.015006 => {
6453         delta_from => 5.015005,
6454         changed => {
6455             'Archive::Tar'          => '1.82',
6456             'Archive::Tar::Constant'=> '1.82',
6457             'Archive::Tar::File'    => '1.82',
6458             'AutoLoader'            => '5.72',
6459             'B::Concise'            => '0.88',
6460             'B::Debug'              => '1.17',
6461             'B::Deparse'            => '1.10',
6462             'CPAN::Meta::YAML'      => '0.005',
6463             'CPANPLUS'              => '0.9113',
6464             'CPANPLUS::Internals'   => '0.9113',
6465             'CPANPLUS::Shell::Default'=> '0.9113',
6466             'Carp'                  => '1.24',
6467             'Compress::Raw::Bzip2'  => '2.045',
6468             'Compress::Raw::Zlib'   => '2.045',
6469             'Compress::Zlib'        => '2.045',
6470             'Cwd'                   => '3.38',
6471             'DB'                    => '1.04',
6472             'Data::Dumper'          => '2.135_01',
6473             'Digest::SHA'           => '5.70',
6474             'Dumpvalue'             => '1.17',
6475             'Exporter'              => '5.66',
6476             'Exporter::Heavy'       => '5.66',
6477             'ExtUtils::CBuilder'    => '0.280205',
6478             'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6479             'ExtUtils::Packlist'    => '1.45',
6480             'ExtUtils::ParseXS'     => '3.08',
6481             'ExtUtils::ParseXS::Constants'=> '3.08',
6482             'ExtUtils::ParseXS::CountLines'=> '3.08',
6483             'ExtUtils::ParseXS::Utilities'=> '3.08',
6484             'File::Basename'        => '2.84',
6485             'File::Glob'            => '1.15',
6486             'File::Spec::Unix'      => '3.35',
6487             'Getopt::Std'           => '1.07',
6488             'I18N::LangTags'        => '0.38',
6489             'IO::Compress::Adapter::Bzip2'=> '2.045',
6490             'IO::Compress::Adapter::Deflate'=> '2.045',
6491             'IO::Compress::Adapter::Identity'=> '2.045',
6492             'IO::Compress::Base'    => '2.046',
6493             'IO::Compress::Base::Common'=> '2.045',
6494             'IO::Compress::Bzip2'   => '2.045',
6495             'IO::Compress::Deflate' => '2.045',
6496             'IO::Compress::Gzip'    => '2.045',
6497             'IO::Compress::Gzip::Constants'=> '2.045',
6498             'IO::Compress::RawDeflate'=> '2.045',
6499             'IO::Compress::Zip'     => '2.046',
6500             'IO::Compress::Zip::Constants'=> '2.045',
6501             'IO::Compress::Zlib::Constants'=> '2.045',
6502             'IO::Compress::Zlib::Extra'=> '2.045',
6503             'IO::Dir'               => '1.09',
6504             'IO::File'              => '1.16',
6505             'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6506             'IO::Uncompress::Adapter::Identity'=> '2.045',
6507             'IO::Uncompress::Adapter::Inflate'=> '2.045',
6508             'IO::Uncompress::AnyInflate'=> '2.045',
6509             'IO::Uncompress::AnyUncompress'=> '2.045',
6510             'IO::Uncompress::Base'  => '2.046',
6511             'IO::Uncompress::Bunzip2'=> '2.045',
6512             'IO::Uncompress::Gunzip'=> '2.045',
6513             'IO::Uncompress::Inflate'=> '2.045',
6514             'IO::Uncompress::RawInflate'=> '2.045',
6515             'IO::Uncompress::Unzip' => '2.046',
6516             'Locale::Codes'         => '3.20',
6517             'Locale::Codes::Constants'=> '3.20',
6518             'Locale::Codes::Country'=> '3.20',
6519             'Locale::Codes::Country_Codes'=> '3.20',
6520             'Locale::Codes::Country_Retired'=> '3.20',
6521             'Locale::Codes::Currency'=> '3.20',
6522             'Locale::Codes::Currency_Codes'=> '3.20',
6523             'Locale::Codes::Currency_Retired'=> '3.20',
6524             'Locale::Codes::LangExt'=> '3.20',
6525             'Locale::Codes::LangExt_Codes'=> '3.20',
6526             'Locale::Codes::LangExt_Retired'=> '3.20',
6527             'Locale::Codes::LangFam'=> '3.20',
6528             'Locale::Codes::LangFam_Codes'=> '3.20',
6529             'Locale::Codes::LangFam_Retired'=> '3.20',
6530             'Locale::Codes::LangVar'=> '3.20',
6531             'Locale::Codes::LangVar_Codes'=> '3.20',
6532             'Locale::Codes::LangVar_Retired'=> '3.20',
6533             'Locale::Codes::Language'=> '3.20',
6534             'Locale::Codes::Language_Codes'=> '3.20',
6535             'Locale::Codes::Language_Retired'=> '3.20',
6536             'Locale::Codes::Script' => '3.20',
6537             'Locale::Codes::Script_Codes'=> '3.20',
6538             'Locale::Codes::Script_Retired'=> '3.20',
6539             'Locale::Country'       => '3.20',
6540             'Locale::Currency'      => '3.20',
6541             'Locale::Language'      => '3.20',
6542             'Locale::Maketext'      => '1.21',
6543             'Locale::Script'        => '3.20',
6544             'Module::CoreList'      => '2.59',
6545             'Module::Loaded'        => '0.08',
6546             'Opcode'                => '1.22',
6547             'POSIX'                 => '1.27',
6548             'Pod::Html'             => '1.12',
6549             'Pod::LaTeX'            => '0.60',
6550             'Pod::Perldoc'          => '3.15_08',
6551             'Safe'                  => '2.30',
6552             'SelfLoader'            => '1.20',
6553             'Socket'                => '1.97',
6554             'Storable'              => '2.34',
6555             'UNIVERSAL'             => '1.11',
6556             'Unicode::Collate'      => '0.87',
6557             'Unicode::Collate::Locale'=> '0.87',
6558             'XS::APItest'           => '0.34',
6559             'arybase'               => '0.02',
6560             'charnames'             => '1.27',
6561             'diagnostics'           => '1.26',
6562             'feature'               => '1.24',
6563             'if'                    => '0.0602',
6564             'overload'              => '1.16',
6565             'sigtrap'               => '1.06',
6566             'strict'                => '1.06',
6567             'threads'               => '1.86',
6568             'version'               => '0.96',
6569         },
6570         removed => {
6571         }
6572     },
6573     5.015007 => {
6574         delta_from => 5.015006,
6575         changed => {
6576             'B'                     => '1.33',
6577             'B::Deparse'            => '1.11',
6578             'CGI'                   => '3.59',
6579             'CPAN::Meta'            => '2.113640',
6580             'CPAN::Meta::Converter' => '2.113640',
6581             'CPAN::Meta::Feature'   => '2.113640',
6582             'CPAN::Meta::History'   => '2.113640',
6583             'CPAN::Meta::Prereqs'   => '2.113640',
6584             'CPAN::Meta::Requirements'=> '2.113640',
6585             'CPAN::Meta::Spec'      => '2.113640',
6586             'CPAN::Meta::Validator' => '2.113640',
6587             'CPANPLUS'              => '0.9116',
6588             'CPANPLUS::Internals'   => '0.9116',
6589             'CPANPLUS::Shell::Default'=> '0.9116',
6590             'Cwd'                   => '3.39_01',
6591             'Data::Dumper'          => '2.135_03',
6592             'Devel::InnerPackage'   => '0.4',
6593             'ExtUtils::CBuilder::Base'=> '0.280205',
6594             'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6595             'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6596             'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6597             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6598             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6599             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6600             'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6601             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6602             'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6603             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6604             'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6605             'ExtUtils::Manifest'    => '1.61',
6606             'ExtUtils::Packlist'    => '1.46',
6607             'ExtUtils::ParseXS'     => '3.12',
6608             'ExtUtils::ParseXS::Constants'=> '3.12',
6609             'ExtUtils::ParseXS::CountLines'=> '3.12',
6610             'ExtUtils::ParseXS::Utilities'=> '3.12',
6611             'ExtUtils::Typemaps'    => '1.03',
6612             'ExtUtils::Typemaps::Cmd'=> undef,
6613             'ExtUtils::Typemaps::Type'=> '0.06',
6614             'File::Glob'            => '1.16',
6615             'File::Spec'            => '3.39_01',
6616             'File::Spec::Cygwin'    => '3.39_01',
6617             'File::Spec::Epoc'      => '3.39_01',
6618             'File::Spec::Functions' => '3.39_01',
6619             'File::Spec::Mac'       => '3.39_01',
6620             'File::Spec::OS2'       => '3.39_01',
6621             'File::Spec::Unix'      => '3.39_01',
6622             'File::Spec::VMS'       => '3.39_01',
6623             'File::Spec::Win32'     => '3.39_01',
6624             'IO::Dir'               => '1.10',
6625             'IO::Pipe'              => '1.15',
6626             'IO::Poll'              => '0.09',
6627             'IO::Select'            => '1.21',
6628             'IO::Socket'            => '1.34',
6629             'IO::Socket::INET'      => '1.33',
6630             'IO::Socket::UNIX'      => '1.24',
6631             'Locale::Maketext'      => '1.22',
6632             'Math::BigInt'          => '1.998',
6633             'Module::CoreList'      => '2.60',
6634             'Module::Pluggable'     => '4.0',
6635             'POSIX'                 => '1.28',
6636             'PerlIO::scalar'        => '0.13',
6637             'Pod::Html'             => '1.13',
6638             'Pod::Perldoc'          => '3.15_15',
6639             'Pod::Perldoc::BaseTo'  => '3.15_15',
6640             'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6641             'Pod::Perldoc::ToANSI'  => '3.15_15',
6642             'Pod::Perldoc::ToChecker'=> '3.15_15',
6643             'Pod::Perldoc::ToMan'   => '3.15_15',
6644             'Pod::Perldoc::ToNroff' => '3.15_15',
6645             'Pod::Perldoc::ToPod'   => '3.15_15',
6646             'Pod::Perldoc::ToRtf'   => '3.15_15',
6647             'Pod::Perldoc::ToTerm'  => '3.15_15',
6648             'Pod::Perldoc::ToText'  => '3.15_15',
6649             'Pod::Perldoc::ToTk'    => '3.15_15',
6650             'Pod::Perldoc::ToXml'   => '3.15_15',
6651             'Term::UI'              => '0.30',
6652             'Tie::File'             => '0.98',
6653             'Unicode::UCD'          => '0.39',
6654             'Version::Requirements' => '0.101021',
6655             'XS::APItest'           => '0.35',
6656             '_charnames'            => '1.28',
6657             'arybase'               => '0.03',
6658             'autouse'               => '1.07',
6659             'charnames'             => '1.28',
6660             'diagnostics'           => '1.27',
6661             'feature'               => '1.25',
6662             'overload'              => '1.17',
6663             'overloading'           => '0.02',
6664             'perlfaq'               => '5.0150038',
6665         },
6666         removed => {
6667         }
6668     },
6669     5.015008 => {
6670         delta_from => 5.015007,
6671         changed => {
6672             'B'                     => '1.34',
6673             'B::Deparse'            => '1.12',
6674             'CPAN::Meta'            => '2.120351',
6675             'CPAN::Meta::Converter' => '2.120351',
6676             'CPAN::Meta::Feature'   => '2.120351',
6677             'CPAN::Meta::History'   => '2.120351',
6678             'CPAN::Meta::Prereqs'   => '2.120351',
6679             'CPAN::Meta::Requirements'=> '2.120351',
6680             'CPAN::Meta::Spec'      => '2.120351',
6681             'CPAN::Meta::Validator' => '2.120351',
6682             'CPAN::Meta::YAML'      => '0.007',
6683             'CPANPLUS'              => '0.9118',
6684             'CPANPLUS::Dist::Build' => '0.62',
6685             'CPANPLUS::Dist::Build::Constants'=> '0.62',
6686             'CPANPLUS::Internals'   => '0.9118',
6687             'CPANPLUS::Shell::Default'=> '0.9118',
6688             'Carp'                  => '1.25',
6689             'Carp::Heavy'           => '1.25',
6690             'Compress::Raw::Bzip2'  => '2.048',
6691             'Compress::Raw::Zlib'   => '2.048',
6692             'Compress::Zlib'        => '2.048',
6693             'Cwd'                   => '3.39_02',
6694             'DB_File'               => '1.826',
6695             'Data::Dumper'          => '2.135_05',
6696             'English'               => '1.05',
6697             'ExtUtils::Install'     => '1.58',
6698             'ExtUtils::ParseXS'     => '3.16',
6699             'ExtUtils::ParseXS::Constants'=> '3.16',
6700             'ExtUtils::ParseXS::CountLines'=> '3.16',
6701             'ExtUtils::ParseXS::Utilities'=> '3.16',
6702             'ExtUtils::Typemaps'    => '3.16',
6703             'ExtUtils::Typemaps::Cmd'=> '3.16',
6704             'ExtUtils::Typemaps::InputMap'=> '3.16',
6705             'ExtUtils::Typemaps::OutputMap'=> '3.16',
6706             'ExtUtils::Typemaps::Type'=> '3.16',
6707             'File::Copy'            => '2.23',
6708             'File::Glob'            => '1.17',
6709             'File::Spec'            => '3.39_02',
6710             'File::Spec::Cygwin'    => '3.39_02',
6711             'File::Spec::Epoc'      => '3.39_02',
6712             'File::Spec::Functions' => '3.39_02',
6713             'File::Spec::Mac'       => '3.39_02',
6714             'File::Spec::OS2'       => '3.39_02',
6715             'File::Spec::Unix'      => '3.39_02',
6716             'File::Spec::VMS'       => '3.39_02',
6717             'File::Spec::Win32'     => '3.39_02',
6718             'Filter::Util::Call'    => '1.40',
6719             'IO::Compress::Adapter::Bzip2'=> '2.048',
6720             'IO::Compress::Adapter::Deflate'=> '2.048',
6721             'IO::Compress::Adapter::Identity'=> '2.048',
6722             'IO::Compress::Base'    => '2.048',
6723             'IO::Compress::Base::Common'=> '2.048',
6724             'IO::Compress::Bzip2'   => '2.048',
6725             'IO::Compress::Deflate' => '2.048',
6726             'IO::Compress::Gzip'    => '2.048',
6727             'IO::Compress::Gzip::Constants'=> '2.048',
6728             'IO::Compress::RawDeflate'=> '2.048',
6729             'IO::Compress::Zip'     => '2.048',
6730             'IO::Compress::Zip::Constants'=> '2.048',
6731             'IO::Compress::Zlib::Constants'=> '2.048',
6732             'IO::Compress::Zlib::Extra'=> '2.048',
6733             'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6734             'IO::Uncompress::Adapter::Identity'=> '2.048',
6735             'IO::Uncompress::Adapter::Inflate'=> '2.048',
6736             'IO::Uncompress::AnyInflate'=> '2.048',
6737             'IO::Uncompress::AnyUncompress'=> '2.048',
6738             'IO::Uncompress::Base'  => '2.048',
6739             'IO::Uncompress::Bunzip2'=> '2.048',
6740             'IO::Uncompress::Gunzip'=> '2.048',
6741             'IO::Uncompress::Inflate'=> '2.048',
6742             'IO::Uncompress::RawInflate'=> '2.048',
6743             'IO::Uncompress::Unzip' => '2.048',
6744             'IPC::Cmd'              => '0.76',
6745             'Math::Complex'         => '1.59',
6746             'Math::Trig'            => '1.23',
6747             'Module::Metadata'      => '1.000009',
6748             'Opcode'                => '1.23',
6749             'POSIX'                 => '1.30',
6750             'Parse::CPAN::Meta'     => '1.4402',
6751             'PerlIO::mmap'          => '0.010',
6752             'Pod::Checker'          => '1.51',
6753             'Pod::Find'             => '1.51',
6754             'Pod::Functions'        => '1.05',
6755             'Pod::Html'             => '1.14',
6756             'Pod::InputObjects'     => '1.51',
6757             'Pod::ParseUtils'       => '1.51',
6758             'Pod::Parser'           => '1.51',
6759             'Pod::PlainText'        => '2.05',
6760             'Pod::Select'           => '1.51',
6761             'Pod::Usage'            => '1.51',
6762             'Safe'                  => '2.31',
6763             'Socket'                => '1.98',
6764             'Term::Cap'             => '1.13',
6765             'Term::ReadLine'        => '1.08',
6766             'Time::HiRes'           => '1.9725',
6767             'Unicode'               => '6.1.0',
6768             'Unicode::UCD'          => '0.41',
6769             'Version::Requirements' => '0.101022',
6770             'XS::APItest'           => '0.36',
6771             'XS::Typemap'           => '0.08',
6772             '_charnames'            => '1.29',
6773             'arybase'               => '0.04',
6774             'charnames'             => '1.29',
6775             'diagnostics'           => '1.28',
6776             'feature'               => '1.26',
6777             'locale'                => '1.01',
6778             'overload'              => '1.18',
6779             'perlfaq'               => '5.0150039',
6780             're'                    => '0.19',
6781             'subs'                  => '1.01',
6782             'warnings'              => '1.13',
6783         },
6784         removed => {
6785         }
6786     },
6787     5.015009 => {
6788         delta_from => 5.015008,
6789         changed => {
6790             'B::Deparse'            => '1.13',
6791             'B::Lint'               => '1.14',
6792             'B::Lint::Debug'        => '1.14',
6793             'CPAN::Meta'            => '2.120630',
6794             'CPAN::Meta::Converter' => '2.120630',
6795             'CPAN::Meta::Feature'   => '2.120630',
6796             'CPAN::Meta::History'   => '2.120630',
6797             'CPAN::Meta::Prereqs'   => '2.120630',
6798             'CPAN::Meta::Requirements'=> '2.120630',
6799             'CPAN::Meta::Spec'      => '2.120630',
6800             'CPAN::Meta::Validator' => '2.120630',
6801             'CPANPLUS'              => '0.9121',
6802             'CPANPLUS::Internals'   => '0.9121',
6803             'CPANPLUS::Shell::Default'=> '0.9121',
6804             'Data::Dumper'          => '2.135_06',
6805             'Digest::SHA'           => '5.71',
6806             'ExtUtils::CBuilder'    => '0.280206',
6807             'ExtUtils::CBuilder::Base'=> '0.280206',
6808             'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6809             'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6810             'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6811             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6812             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6813             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6814             'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6815             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6816             'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6817             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6818             'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6819             'HTTP::Tiny'            => '0.017',
6820             'Locale::Codes'         => '3.21',
6821             'Locale::Codes::Constants'=> '3.21',
6822             'Locale::Codes::Country'=> '3.21',
6823             'Locale::Codes::Country_Codes'=> '3.21',
6824             'Locale::Codes::Country_Retired'=> '3.21',
6825             'Locale::Codes::Currency'=> '3.21',
6826             'Locale::Codes::Currency_Codes'=> '3.21',
6827             'Locale::Codes::Currency_Retired'=> '3.21',
6828             'Locale::Codes::LangExt'=> '3.21',
6829             'Locale::Codes::LangExt_Codes'=> '3.21',
6830             'Locale::Codes::LangExt_Retired'=> '3.21',
6831             'Locale::Codes::LangFam'=> '3.21',
6832             'Locale::Codes::LangFam_Codes'=> '3.21',
6833             'Locale::Codes::LangFam_Retired'=> '3.21',
6834             'Locale::Codes::LangVar'=> '3.21',
6835             'Locale::Codes::LangVar_Codes'=> '3.21',
6836             'Locale::Codes::LangVar_Retired'=> '3.21',
6837             'Locale::Codes::Language'=> '3.21',
6838             'Locale::Codes::Language_Codes'=> '3.21',
6839             'Locale::Codes::Language_Retired'=> '3.21',
6840             'Locale::Codes::Script' => '3.21',
6841             'Locale::Codes::Script_Codes'=> '3.21',
6842             'Locale::Codes::Script_Retired'=> '3.21',
6843             'Locale::Country'       => '3.21',
6844             'Locale::Currency'      => '3.21',
6845             'Locale::Language'      => '3.21',
6846             'Locale::Script'        => '3.21',
6847             'Module::CoreList'      => '2.65',
6848             'Pod::Html'             => '1.1501',
6849             'Pod::Perldoc'          => '3.17',
6850             'Pod::Perldoc::BaseTo'  => '3.17',
6851             'Pod::Perldoc::GetOptsOO'=> '3.17',
6852             'Pod::Perldoc::ToANSI'  => '3.17',
6853             'Pod::Perldoc::ToChecker'=> '3.17',
6854             'Pod::Perldoc::ToMan'   => '3.17',
6855             'Pod::Perldoc::ToNroff' => '3.17',
6856             'Pod::Perldoc::ToPod'   => '3.17',
6857             'Pod::Perldoc::ToRtf'   => '3.17',
6858             'Pod::Perldoc::ToTerm'  => '3.17',
6859             'Pod::Perldoc::ToText'  => '3.17',
6860             'Pod::Perldoc::ToTk'    => '3.17',
6861             'Pod::Perldoc::ToXml'   => '3.17',
6862             'Pod::Simple'           => '3.20',
6863             'Pod::Simple::BlackBox' => '3.20',
6864             'Pod::Simple::Checker'  => '3.20',
6865             'Pod::Simple::Debug'    => '3.20',
6866             'Pod::Simple::DumpAsText'=> '3.20',
6867             'Pod::Simple::DumpAsXML'=> '3.20',
6868             'Pod::Simple::HTML'     => '3.20',
6869             'Pod::Simple::HTMLBatch'=> '3.20',
6870             'Pod::Simple::LinkSection'=> '3.20',
6871             'Pod::Simple::Methody'  => '3.20',
6872             'Pod::Simple::Progress' => '3.20',
6873             'Pod::Simple::PullParser'=> '3.20',
6874             'Pod::Simple::PullParserEndToken'=> '3.20',
6875             'Pod::Simple::PullParserStartToken'=> '3.20',
6876             'Pod::Simple::PullParserTextToken'=> '3.20',
6877             'Pod::Simple::PullParserToken'=> '3.20',
6878             'Pod::Simple::RTF'      => '3.20',
6879             'Pod::Simple::Search'   => '3.20',
6880             'Pod::Simple::SimpleTree'=> '3.20',
6881             'Pod::Simple::Text'     => '3.20',
6882             'Pod::Simple::TextContent'=> '3.20',
6883             'Pod::Simple::TiedOutFH'=> '3.20',
6884             'Pod::Simple::Transcode'=> '3.20',
6885             'Pod::Simple::TranscodeDumb'=> '3.20',
6886             'Pod::Simple::TranscodeSmart'=> '3.20',
6887             'Pod::Simple::XHTML'    => '3.20',
6888             'Pod::Simple::XMLOutStream'=> '3.20',
6889             'Socket'                => '2.000',
6890             'Term::ReadLine'        => '1.09',
6891             'Unicode::Collate'      => '0.89',
6892             'Unicode::Collate::CJK::Korean'=> '0.88',
6893             'Unicode::Collate::Locale'=> '0.89',
6894             'Unicode::Normalize'    => '1.14',
6895             'Unicode::UCD'          => '0.42',
6896             'XS::APItest'           => '0.37',
6897             'arybase'               => '0.05',
6898             'attributes'            => '0.18',
6899             'charnames'             => '1.30',
6900             'feature'               => '1.27',
6901         },
6902         removed => {
6903         }
6904     },
6905     5.016 => {
6906         delta_from => 5.015009,
6907         changed => {
6908             'B::Concise'            => '0.89',
6909             'B::Deparse'            => '1.14',
6910             'Carp'                  => '1.26',
6911             'Carp::Heavy'           => '1.26',
6912             'IO::Socket'            => '1.35',
6913             'Module::CoreList'      => '2.66',
6914             'PerlIO::scalar'        => '0.14',
6915             'Pod::Html'             => '1.1502',
6916             'Safe'                  => '2.31_01',
6917             'Socket'                => '2.001',
6918             'Unicode::UCD'          => '0.43',
6919             'XS::APItest'           => '0.38',
6920             '_charnames'            => '1.31',
6921             'attributes'            => '0.19',
6922             'strict'                => '1.07',
6923             'version'               => '0.99',
6924         },
6925         removed => {
6926         }
6927     },
6928     5.016001 => {
6929         delta_from => 5.016,
6930         changed => {
6931             'B'                     => '1.35',
6932             'B::Deparse'            => '1.14_01',
6933             'List::Util'            => '1.25',
6934             'List::Util::PP'        => '1.25',
6935             'List::Util::XS'        => '1.25',
6936             'Module::CoreList'      => '2.70',
6937             'PerlIO::scalar'        => '0.14_01',
6938             'Scalar::Util'          => '1.25',
6939             'Scalar::Util::PP'      => '1.25',
6940             're'                    => '0.19_01',
6941         },
6942         removed => {
6943         }
6944     },
6945     5.016002 => {
6946         delta_from => 5.016001,
6947         changed => {
6948             'Module::CoreList'      => '2.76',
6949         },
6950         removed => {
6951         }
6952     },
6953     5.016003 => {
6954         delta_from => 5.016002,
6955         changed => {
6956             'Encode'                => '2.44_01',
6957             'Module::CoreList'      => '2.76_02',
6958             'XS::APItest'           => '0.39',
6959         },
6960         removed => {
6961         }
6962     },
6963     5.017 => {
6964         delta_from => 5.016,
6965         changed => {
6966             'B'                     => '1.35',
6967             'B::Concise'            => '0.90',
6968             'ExtUtils::ParseXS'     => '3.17',
6969             'ExtUtils::ParseXS::Utilities'=> '3.17',
6970             'File::DosGlob'         => '1.07',
6971             'File::Find'            => '1.21',
6972             'File::stat'            => '1.06',
6973             'Hash::Util'            => '0.12',
6974             'IO::Socket'            => '1.34',
6975             'Module::CoreList'      => '2.67',
6976             'Pod::Functions'        => '1.06',
6977             'Storable'              => '2.35',
6978             'XS::APItest'           => '0.39',
6979             'diagnostics'           => '1.29',
6980             'feature'               => '1.28',
6981             'overload'              => '1.19',
6982             'utf8'                  => '1.10',
6983         },
6984         removed => {
6985             'Version::Requirements' => 1,
6986         }
6987     },
6988     5.017001 => {
6989         delta_from => 5.017,
6990         changed => {
6991             'App::Prove'            => '3.25',
6992             'App::Prove::State'     => '3.25',
6993             'App::Prove::State::Result'=> '3.25',
6994             'App::Prove::State::Result::Test'=> '3.25',
6995             'Archive::Extract'      => '0.60',
6996             'Archive::Tar'          => '1.88',
6997             'Archive::Tar::Constant'=> '1.88',
6998             'Archive::Tar::File'    => '1.88',
6999             'B'                     => '1.36',
7000             'B::Deparse'            => '1.15',
7001             'CPAN::Meta'            => '2.120921',
7002             'CPAN::Meta::Converter' => '2.120921',
7003             'CPAN::Meta::Feature'   => '2.120921',
7004             'CPAN::Meta::History'   => '2.120921',
7005             'CPAN::Meta::Prereqs'   => '2.120921',
7006             'CPAN::Meta::Requirements'=> '2.122',
7007             'CPAN::Meta::Spec'      => '2.120921',
7008             'CPAN::Meta::Validator' => '2.120921',
7009             'CPAN::Meta::YAML'      => '0.008',
7010             'CPANPLUS'              => '0.9130',
7011             'CPANPLUS::Config::HomeEnv'=> '0.04',
7012             'CPANPLUS::Internals'   => '0.9130',
7013             'CPANPLUS::Shell::Default'=> '0.9130',
7014             'Class::Struct'         => '0.64',
7015             'Compress::Raw::Bzip2'  => '2.052',
7016             'Compress::Raw::Zlib'   => '2.054',
7017             'Compress::Zlib'        => '2.052',
7018             'Digest::MD5'           => '2.52',
7019             'DynaLoader'            => '1.15',
7020             'ExtUtils::CBuilder'    => '0.280208',
7021             'ExtUtils::CBuilder::Base'=> '0.280208',
7022             'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
7023             'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
7024             'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
7025             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
7026             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
7027             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
7028             'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
7029             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
7030             'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
7031             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
7032             'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
7033             'Fatal'                 => '2.11',
7034             'File::DosGlob'         => '1.08',
7035             'File::Fetch'           => '0.34',
7036             'File::Spec::Unix'      => '3.39_03',
7037             'Filter::Util::Call'    => '1.45',
7038             'HTTP::Tiny'            => '0.022',
7039             'IO'                    => '1.25_07',
7040             'IO::Compress::Adapter::Bzip2'=> '2.052',
7041             'IO::Compress::Adapter::Deflate'=> '2.052',
7042             'IO::Compress::Adapter::Identity'=> '2.052',
7043             'IO::Compress::Base'    => '2.052',
7044             'IO::Compress::Base::Common'=> '2.052',
7045             'IO::Compress::Bzip2'   => '2.052',
7046             'IO::Compress::Deflate' => '2.052',
7047             'IO::Compress::Gzip'    => '2.052',
7048             'IO::Compress::Gzip::Constants'=> '2.052',
7049             'IO::Compress::RawDeflate'=> '2.052',
7050             'IO::Compress::Zip'     => '2.052',
7051             'IO::Compress::Zip::Constants'=> '2.052',
7052             'IO::Compress::Zlib::Constants'=> '2.052',
7053             'IO::Compress::Zlib::Extra'=> '2.052',
7054             'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
7055             'IO::Uncompress::Adapter::Identity'=> '2.052',
7056             'IO::Uncompress::Adapter::Inflate'=> '2.052',
7057             'IO::Uncompress::AnyInflate'=> '2.052',
7058             'IO::Uncompress::AnyUncompress'=> '2.052',
7059             'IO::Uncompress::Base'  => '2.052',
7060             'IO::Uncompress::Bunzip2'=> '2.052',
7061             'IO::Uncompress::Gunzip'=> '2.052',
7062             'IO::Uncompress::Inflate'=> '2.052',
7063             'IO::Uncompress::RawInflate'=> '2.052',
7064             'IO::Uncompress::Unzip' => '2.052',
7065             'IPC::Cmd'              => '0.78',
7066             'List::Util'            => '1.25',
7067             'List::Util::XS'        => '1.25',
7068             'Locale::Codes'         => '3.22',
7069             'Locale::Codes::Constants'=> '3.22',
7070             'Locale::Codes::Country'=> '3.22',
7071             'Locale::Codes::Country_Codes'=> '3.22',
7072             'Locale::Codes::Country_Retired'=> '3.22',
7073             'Locale::Codes::Currency'=> '3.22',
7074             'Locale::Codes::Currency_Codes'=> '3.22',
7075             'Locale::Codes::Currency_Retired'=> '3.22',
7076             'Locale::Codes::LangExt'=> '3.22',
7077             'Locale::Codes::LangExt_Codes'=> '3.22',
7078             'Locale::Codes::LangExt_Retired'=> '3.22',
7079             'Locale::Codes::LangFam'=> '3.22',
7080             'Locale::Codes::LangFam_Codes'=> '3.22',
7081             'Locale::Codes::LangFam_Retired'=> '3.22',
7082             'Locale::Codes::LangVar'=> '3.22',
7083             'Locale::Codes::LangVar_Codes'=> '3.22',
7084             'Locale::Codes::LangVar_Retired'=> '3.22',
7085             'Locale::Codes::Language'=> '3.22',
7086             'Locale::Codes::Language_Codes'=> '3.22',
7087             'Locale::Codes::Language_Retired'=> '3.22',
7088             'Locale::Codes::Script' => '3.22',
7089             'Locale::Codes::Script_Codes'=> '3.22',
7090             'Locale::Codes::Script_Retired'=> '3.22',
7091             'Locale::Country'       => '3.22',
7092             'Locale::Currency'      => '3.22',
7093             'Locale::Language'      => '3.22',
7094             'Locale::Script'        => '3.22',
7095             'Memoize'               => '1.03',
7096             'Memoize::AnyDBM_File'  => '1.03',
7097             'Memoize::Expire'       => '1.03',
7098             'Memoize::ExpireFile'   => '1.03',
7099             'Memoize::ExpireTest'   => '1.03',
7100             'Memoize::NDBM_File'    => '1.03',
7101             'Memoize::SDBM_File'    => '1.03',
7102             'Memoize::Storable'     => '1.03',
7103             'Module::Build'         => '0.40',
7104             'Module::Build::Base'   => '0.40',
7105             'Module::Build::Compat' => '0.40',
7106             'Module::Build::Config' => '0.40',
7107             'Module::Build::Cookbook'=> '0.40',
7108             'Module::Build::Dumper' => '0.40',
7109             'Module::Build::ModuleInfo'=> '0.40',
7110             'Module::Build::Notes'  => '0.40',
7111             'Module::Build::PPMMaker'=> '0.40',
7112             'Module::Build::Platform::Amiga'=> '0.40',
7113             'Module::Build::Platform::Default'=> '0.40',
7114             'Module::Build::Platform::EBCDIC'=> '0.40',
7115             'Module::Build::Platform::MPEiX'=> '0.40',
7116             'Module::Build::Platform::MacOS'=> '0.40',
7117             'Module::Build::Platform::RiscOS'=> '0.40',
7118             'Module::Build::Platform::Unix'=> '0.40',
7119             'Module::Build::Platform::VMS'=> '0.40',
7120             'Module::Build::Platform::VOS'=> '0.40',
7121             'Module::Build::Platform::Windows'=> '0.40',
7122             'Module::Build::Platform::aix'=> '0.40',
7123             'Module::Build::Platform::cygwin'=> '0.40',
7124             'Module::Build::Platform::darwin'=> '0.40',
7125             'Module::Build::Platform::os2'=> '0.40',
7126             'Module::Build::PodParser'=> '0.40',
7127             'Module::CoreList'      => '2.68',
7128             'Module::Load::Conditional'=> '0.50',
7129             'Object::Accessor'      => '0.44',
7130             'POSIX'                 => '1.31',
7131             'Params::Check'         => '0.36',
7132             'Parse::CPAN::Meta'     => '1.4404',
7133             'PerlIO::mmap'          => '0.011',
7134             'PerlIO::via::QuotedPrint'=> '0.07',
7135             'Pod::Html'             => '1.16',
7136             'Pod::Man'              => '2.26',
7137             'Pod::Text'             => '3.16',
7138             'Safe'                  => '2.33_01',
7139             'Scalar::Util'          => '1.25',
7140             'Search::Dict'          => '1.07',
7141             'Storable'              => '2.36',
7142             'TAP::Base'             => '3.25',
7143             'TAP::Formatter::Base'  => '3.25',
7144             'TAP::Formatter::Color' => '3.25',
7145             'TAP::Formatter::Console'=> '3.25',
7146             'TAP::Formatter::Console::ParallelSession'=> '3.25',
7147             'TAP::Formatter::Console::Session'=> '3.25',
7148             'TAP::Formatter::File'  => '3.25',
7149             'TAP::Formatter::File::Session'=> '3.25',
7150             'TAP::Formatter::Session'=> '3.25',
7151             'TAP::Harness'          => '3.25',
7152             'TAP::Object'           => '3.25',
7153             'TAP::Parser'           => '3.25',
7154             'TAP::Parser::Aggregator'=> '3.25',
7155             'TAP::Parser::Grammar'  => '3.25',
7156             'TAP::Parser::Iterator' => '3.25',
7157             'TAP::Parser::Iterator::Array'=> '3.25',
7158             'TAP::Parser::Iterator::Process'=> '3.25',
7159             'TAP::Parser::Iterator::Stream'=> '3.25',
7160             'TAP::Parser::IteratorFactory'=> '3.25',
7161             'TAP::Parser::Multiplexer'=> '3.25',
7162             'TAP::Parser::Result'   => '3.25',
7163             'TAP::Parser::Result::Bailout'=> '3.25',
7164             'TAP::Parser::Result::Comment'=> '3.25',
7165             'TAP::Parser::Result::Plan'=> '3.25',
7166             'TAP::Parser::Result::Pragma'=> '3.25',
7167             'TAP::Parser::Result::Test'=> '3.25',
7168             'TAP::Parser::Result::Unknown'=> '3.25',
7169             'TAP::Parser::Result::Version'=> '3.25',
7170             'TAP::Parser::Result::YAML'=> '3.25',
7171             'TAP::Parser::ResultFactory'=> '3.25',
7172             'TAP::Parser::Scheduler'=> '3.25',
7173             'TAP::Parser::Scheduler::Job'=> '3.25',
7174             'TAP::Parser::Scheduler::Spinner'=> '3.25',
7175             'TAP::Parser::Source'   => '3.25',
7176             'TAP::Parser::SourceHandler'=> '3.25',
7177             'TAP::Parser::SourceHandler::Executable'=> '3.25',
7178             'TAP::Parser::SourceHandler::File'=> '3.25',
7179             'TAP::Parser::SourceHandler::Handle'=> '3.25',
7180             'TAP::Parser::SourceHandler::Perl'=> '3.25',
7181             'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7182             'TAP::Parser::Utils'    => '3.25',
7183             'TAP::Parser::YAMLish::Reader'=> '3.25',
7184             'TAP::Parser::YAMLish::Writer'=> '3.25',
7185             'Term::ANSIColor'       => '3.02',
7186             'Test::Harness'         => '3.25',
7187             'Unicode'               => '6.2.0',
7188             'Unicode::UCD'          => '0.44',
7189             'XS::APItest'           => '0.40',
7190             '_charnames'            => '1.32',
7191             'attributes'            => '0.2',
7192             'autodie'               => '2.11',
7193             'autodie::exception'    => '2.11',
7194             'autodie::exception::system'=> '2.11',
7195             'autodie::hints'        => '2.11',
7196             'bigint'                => '0.30',
7197             'charnames'             => '1.32',
7198             'feature'               => '1.29',
7199             'inc::latest'           => '0.40',
7200             'perlfaq'               => '5.0150040',
7201             're'                    => '0.20',
7202         },
7203         removed => {
7204             'List::Util::PP'        => 1,
7205             'Scalar::Util::PP'      => 1,
7206         }
7207     },
7208     5.017002 => {
7209         delta_from => 5.017001,
7210         changed => {
7211             'App::Prove'            => '3.25_01',
7212             'App::Prove::State'     => '3.25_01',
7213             'App::Prove::State::Result'=> '3.25_01',
7214             'App::Prove::State::Result::Test'=> '3.25_01',
7215             'B::Concise'            => '0.91',
7216             'Compress::Raw::Bzip2'  => '2.05201',
7217             'Compress::Raw::Zlib'   => '2.05401',
7218             'Exporter'              => '5.67',
7219             'Exporter::Heavy'       => '5.67',
7220             'Fatal'                 => '2.12',
7221             'File::Fetch'           => '0.36',
7222             'File::stat'            => '1.07',
7223             'IO'                    => '1.25_08',
7224             'IO::Socket'            => '1.35',
7225             'Module::CoreList'      => '2.69',
7226             'PerlIO::scalar'        => '0.15',
7227             'Socket'                => '2.002',
7228             'Storable'              => '2.37',
7229             'TAP::Base'             => '3.25_01',
7230             'TAP::Formatter::Base'  => '3.25_01',
7231             'TAP::Formatter::Color' => '3.25_01',
7232             'TAP::Formatter::Console'=> '3.25_01',
7233             'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7234             'TAP::Formatter::Console::Session'=> '3.25_01',
7235             'TAP::Formatter::File'  => '3.25_01',
7236             'TAP::Formatter::File::Session'=> '3.25_01',
7237             'TAP::Formatter::Session'=> '3.25_01',
7238             'TAP::Harness'          => '3.25_01',
7239             'TAP::Object'           => '3.25_01',
7240             'TAP::Parser'           => '3.25_01',
7241             'TAP::Parser::Aggregator'=> '3.25_01',
7242             'TAP::Parser::Grammar'  => '3.25_01',
7243             'TAP::Parser::Iterator' => '3.25_01',
7244             'TAP::Parser::Iterator::Array'=> '3.25_01',
7245             'TAP::Parser::Iterator::Process'=> '3.25_01',
7246             'TAP::Parser::Iterator::Stream'=> '3.25_01',
7247             'TAP::Parser::IteratorFactory'=> '3.25_01',
7248             'TAP::Parser::Multiplexer'=> '3.25_01',
7249             'TAP::Parser::Result'   => '3.25_01',
7250             'TAP::Parser::Result::Bailout'=> '3.25_01',
7251             'TAP::Parser::Result::Comment'=> '3.25_01',
7252             'TAP::Parser::Result::Plan'=> '3.25_01',
7253             'TAP::Parser::Result::Pragma'=> '3.25_01',
7254             'TAP::Parser::Result::Test'=> '3.25_01',
7255             'TAP::Parser::Result::Unknown'=> '3.25_01',
7256             'TAP::Parser::Result::Version'=> '3.25_01',
7257             'TAP::Parser::Result::YAML'=> '3.25_01',
7258             'TAP::Parser::ResultFactory'=> '3.25_01',
7259             'TAP::Parser::Scheduler'=> '3.25_01',
7260             'TAP::Parser::Scheduler::Job'=> '3.25_01',
7261             'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7262             'TAP::Parser::Source'   => '3.25_01',
7263             'TAP::Parser::SourceHandler'=> '3.25_01',
7264             'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7265             'TAP::Parser::SourceHandler::File'=> '3.25_01',
7266             'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7267             'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7268             'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7269             'TAP::Parser::Utils'    => '3.25_01',
7270             'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7271             'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7272             'Test::Harness'         => '3.25_01',
7273             'Tie::StdHandle'        => '4.3',
7274             'XS::APItest'           => '0.41',
7275             'autodie'               => '2.12',
7276             'autodie::exception'    => '2.12',
7277             'autodie::exception::system'=> '2.12',
7278             'autodie::hints'        => '2.12',
7279             'diagnostics'           => '1.30',
7280             'overload'              => '1.20',
7281             're'                    => '0.21',
7282             'vars'                  => '1.03',
7283         },
7284         removed => {
7285         }
7286     },
7287     5.017003 => {
7288         delta_from => 5.017002,
7289         changed => {
7290             'B'                     => '1.37',
7291             'B::Concise'            => '0.92',
7292             'B::Debug'              => '1.18',
7293             'B::Deparse'            => '1.16',
7294             'CGI'                   => '3.60',
7295             'Compress::Raw::Bzip2'  => '2.055',
7296             'Compress::Raw::Zlib'   => '2.056',
7297             'Compress::Zlib'        => '2.055',
7298             'Data::Dumper'          => '2.135_07',
7299             'Devel::Peek'           => '1.09',
7300             'Encode'                => '2.47',
7301             'Encode::Alias'         => '2.16',
7302             'Encode::GSM0338'       => '2.02',
7303             'Encode::Unicode::UTF7' => '2.06',
7304             'IO::Compress::Adapter::Bzip2'=> '2.055',
7305             'IO::Compress::Adapter::Deflate'=> '2.055',
7306             'IO::Compress::Adapter::Identity'=> '2.055',
7307             'IO::Compress::Base'    => '2.055',
7308             'IO::Compress::Base::Common'=> '2.055',
7309             'IO::Compress::Bzip2'   => '2.055',
7310             'IO::Compress::Deflate' => '2.055',
7311             'IO::Compress::Gzip'    => '2.055',
7312             'IO::Compress::Gzip::Constants'=> '2.055',
7313             'IO::Compress::RawDeflate'=> '2.055',
7314             'IO::Compress::Zip'     => '2.055',
7315             'IO::Compress::Zip::Constants'=> '2.055',
7316             'IO::Compress::Zlib::Constants'=> '2.055',
7317             'IO::Compress::Zlib::Extra'=> '2.055',
7318             'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7319             'IO::Uncompress::Adapter::Identity'=> '2.055',
7320             'IO::Uncompress::Adapter::Inflate'=> '2.055',
7321             'IO::Uncompress::AnyInflate'=> '2.055',
7322             'IO::Uncompress::AnyUncompress'=> '2.055',
7323             'IO::Uncompress::Base'  => '2.055',
7324             'IO::Uncompress::Bunzip2'=> '2.055',
7325             'IO::Uncompress::Gunzip'=> '2.055',
7326             'IO::Uncompress::Inflate'=> '2.055',
7327             'IO::Uncompress::RawInflate'=> '2.055',
7328             'IO::Uncompress::Unzip' => '2.055',
7329             'Module::Build'         => '0.4003',
7330             'Module::Build::Base'   => '0.4003',
7331             'Module::Build::Compat' => '0.4003',
7332             'Module::Build::Config' => '0.4003',
7333             'Module::Build::Cookbook'=> '0.4003',
7334             'Module::Build::Dumper' => '0.4003',
7335             'Module::Build::ModuleInfo'=> '0.4003',
7336             'Module::Build::Notes'  => '0.4003',
7337             'Module::Build::PPMMaker'=> '0.4003',
7338             'Module::Build::Platform::Amiga'=> '0.4003',
7339             'Module::Build::Platform::Default'=> '0.4003',
7340             'Module::Build::Platform::EBCDIC'=> '0.4003',
7341             'Module::Build::Platform::MPEiX'=> '0.4003',
7342             'Module::Build::Platform::MacOS'=> '0.4003',
7343             'Module::Build::Platform::RiscOS'=> '0.4003',
7344             'Module::Build::Platform::Unix'=> '0.4003',
7345             'Module::Build::Platform::VMS'=> '0.4003',
7346             'Module::Build::Platform::VOS'=> '0.4003',
7347             'Module::Build::Platform::Windows'=> '0.4003',
7348             'Module::Build::Platform::aix'=> '0.4003',
7349             'Module::Build::Platform::cygwin'=> '0.4003',
7350             'Module::Build::Platform::darwin'=> '0.4003',
7351             'Module::Build::Platform::os2'=> '0.4003',
7352             'Module::Build::PodParser'=> '0.4003',
7353             'Module::CoreList'      => '2.71',
7354             'Module::CoreList::TieHashDelta'=> '2.71',
7355             'Module::Load::Conditional'=> '0.54',
7356             'Module::Metadata'      => '1.000011',
7357             'Module::Pluggable'     => '4.3',
7358             'Module::Pluggable::Object'=> '4.3',
7359             'Pod::Simple'           => '3.23',
7360             'Pod::Simple::BlackBox' => '3.23',
7361             'Pod::Simple::Checker'  => '3.23',
7362             'Pod::Simple::Debug'    => '3.23',
7363             'Pod::Simple::DumpAsText'=> '3.23',
7364             'Pod::Simple::DumpAsXML'=> '3.23',
7365             'Pod::Simple::HTML'     => '3.23',
7366             'Pod::Simple::HTMLBatch'=> '3.23',
7367             'Pod::Simple::LinkSection'=> '3.23',
7368             'Pod::Simple::Methody'  => '3.23',
7369             'Pod::Simple::Progress' => '3.23',
7370             'Pod::Simple::PullParser'=> '3.23',
7371             'Pod::Simple::PullParserEndToken'=> '3.23',
7372             'Pod::Simple::PullParserStartToken'=> '3.23',
7373             'Pod::Simple::PullParserTextToken'=> '3.23',
7374             'Pod::Simple::PullParserToken'=> '3.23',
7375             'Pod::Simple::RTF'      => '3.23',
7376             'Pod::Simple::Search'   => '3.23',
7377             'Pod::Simple::SimpleTree'=> '3.23',
7378             'Pod::Simple::Text'     => '3.23',
7379             'Pod::Simple::TextContent'=> '3.23',
7380             'Pod::Simple::TiedOutFH'=> '3.23',
7381             'Pod::Simple::Transcode'=> '3.23',
7382             'Pod::Simple::TranscodeDumb'=> '3.23',
7383             'Pod::Simple::TranscodeSmart'=> '3.23',
7384             'Pod::Simple::XHTML'    => '3.23',
7385             'Pod::Simple::XMLOutStream'=> '3.23',
7386             'Socket'                => '2.004',
7387             'Storable'              => '2.38',
7388             'Sys::Syslog'           => '0.31',
7389             'Term::ReadLine'        => '1.10',
7390             'Text::Tabs'            => '2012.0818',
7391             'Text::Wrap'            => '2012.0818',
7392             'Time::Local'           => '1.2300',
7393             'Unicode::UCD'          => '0.45',
7394             'Win32'                 => '0.45',
7395             'Win32CORE'             => '0.03',
7396             'XS::APItest'           => '0.42',
7397             'inc::latest'           => '0.4003',
7398             'perlfaq'               => '5.0150041',
7399             're'                    => '0.22',
7400         },
7401         removed => {
7402         }
7403     },
7404     5.017004 => {
7405         delta_from => 5.017003,
7406         changed => {
7407             'Archive::Tar'          => '1.90',
7408             'Archive::Tar::Constant'=> '1.90',
7409             'Archive::Tar::File'    => '1.90',
7410             'B'                     => '1.38',
7411             'B::Concise'            => '0.93',
7412             'B::Deparse'            => '1.17',
7413             'B::Xref'               => '1.04',
7414             'CPANPLUS'              => '0.9131',
7415             'CPANPLUS::Internals'   => '0.9131',
7416             'CPANPLUS::Shell::Default'=> '0.9131',
7417             'DB_File'               => '1.827',
7418             'Devel::Peek'           => '1.10',
7419             'DynaLoader'            => '1.16',
7420             'Errno'                 => '1.16',
7421             'ExtUtils::ParseXS'     => '3.18',
7422             'ExtUtils::ParseXS::Constants'=> '3.18',
7423             'ExtUtils::ParseXS::CountLines'=> '3.18',
7424             'ExtUtils::ParseXS::Utilities'=> '3.18',
7425             'File::Copy'            => '2.24',
7426             'File::Find'            => '1.22',
7427             'IPC::Open3'            => '1.13',
7428             'Locale::Codes'         => '3.23',
7429             'Locale::Codes::Constants'=> '3.23',
7430             'Locale::Codes::Country'=> '3.23',
7431             'Locale::Codes::Country_Codes'=> '3.23',
7432             'Locale::Codes::Country_Retired'=> '3.23',
7433             'Locale::Codes::Currency'=> '3.23',
7434             'Locale::Codes::Currency_Codes'=> '3.23',
7435             'Locale::Codes::Currency_Retired'=> '3.23',
7436             'Locale::Codes::LangExt'=> '3.23',
7437             'Locale::Codes::LangExt_Codes'=> '3.23',
7438             'Locale::Codes::LangExt_Retired'=> '3.23',
7439             'Locale::Codes::LangFam'=> '3.23',
7440             'Locale::Codes::LangFam_Codes'=> '3.23',
7441             'Locale::Codes::LangFam_Retired'=> '3.23',
7442             'Locale::Codes::LangVar'=> '3.23',
7443             'Locale::Codes::LangVar_Codes'=> '3.23',
7444             'Locale::Codes::LangVar_Retired'=> '3.23',
7445             'Locale::Codes::Language'=> '3.23',
7446             'Locale::Codes::Language_Codes'=> '3.23',
7447             'Locale::Codes::Language_Retired'=> '3.23',
7448             'Locale::Codes::Script' => '3.23',
7449             'Locale::Codes::Script_Codes'=> '3.23',
7450             'Locale::Codes::Script_Retired'=> '3.23',
7451             'Locale::Country'       => '3.23',
7452             'Locale::Currency'      => '3.23',
7453             'Locale::Language'      => '3.23',
7454             'Locale::Script'        => '3.23',
7455             'Math::BigFloat::Trace' => '0.30',
7456             'Math::BigInt::Trace'   => '0.30',
7457             'Module::CoreList'      => '2.73',
7458             'Module::CoreList::TieHashDelta'=> '2.73',
7459             'Opcode'                => '1.24',
7460             'Socket'                => '2.006',
7461             'Storable'              => '2.39',
7462             'Sys::Syslog'           => '0.32',
7463             'Unicode::UCD'          => '0.46',
7464             'XS::APItest'           => '0.43',
7465             'bignum'                => '0.30',
7466             'bigrat'                => '0.30',
7467             'constant'              => '1.24',
7468             'feature'               => '1.30',
7469             'threads::shared'       => '1.41',
7470             'version'               => '0.9901',
7471             'warnings'              => '1.14',
7472         },
7473         removed => {
7474         }
7475     },
7476     5.017005 => {
7477         delta_from => 5.017004,
7478         changed => {
7479             'AutoLoader'            => '5.73',
7480             'B'                     => '1.39',
7481             'B::Deparse'            => '1.18',
7482             'CPANPLUS'              => '0.9133',
7483             'CPANPLUS::Internals'   => '0.9133',
7484             'CPANPLUS::Shell::Default'=> '0.9133',
7485             'Carp'                  => '1.27',
7486             'Carp::Heavy'           => '1.27',
7487             'Data::Dumper'          => '2.136',
7488             'Digest::SHA'           => '5.72',
7489             'ExtUtils::CBuilder'    => '0.280209',
7490             'ExtUtils::CBuilder::Base'=> '0.280209',
7491             'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7492             'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7493             'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7494             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7495             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7496             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7497             'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7498             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7499             'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7500             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7501             'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7502             'File::Copy'            => '2.25',
7503             'File::Glob'            => '1.18',
7504             'HTTP::Tiny'            => '0.024',
7505             'Module::CoreList'      => '2.75',
7506             'Module::CoreList::TieHashDelta'=> '2.75',
7507             'PerlIO::encoding'      => '0.16',
7508             'Unicode::Collate'      => '0.90',
7509             'Unicode::Collate::Locale'=> '0.90',
7510             'Unicode::Normalize'    => '1.15',
7511             'Win32CORE'             => '0.04',
7512             'XS::APItest'           => '0.44',
7513             'attributes'            => '0.21',
7514             'bigint'                => '0.31',
7515             'bignum'                => '0.31',
7516             'bigrat'                => '0.31',
7517             'feature'               => '1.31',
7518             'threads::shared'       => '1.42',
7519             'warnings'              => '1.15',
7520         },
7521         removed => {
7522         }
7523     },
7524     5.017006 => {
7525         delta_from => 5.017005,
7526         changed => {
7527             'B'                     => '1.40',
7528             'B::Concise'            => '0.94',
7529             'B::Deparse'            => '1.19',
7530             'B::Xref'               => '1.05',
7531             'CGI'                   => '3.63',
7532             'CGI::Util'             => '3.62',
7533             'CPAN'                  => '1.99_51',
7534             'CPANPLUS::Dist::Build' => '0.64',
7535             'CPANPLUS::Dist::Build::Constants'=> '0.64',
7536             'Carp'                  => '1.28',
7537             'Carp::Heavy'           => '1.28',
7538             'Compress::Raw::Bzip2'  => '2.058',
7539             'Compress::Raw::Zlib'   => '2.058',
7540             'Compress::Zlib'        => '2.058',
7541             'Data::Dumper'          => '2.137',
7542             'Digest::SHA'           => '5.73',
7543             'DynaLoader'            => '1.17',
7544             'Env'                   => '1.04',
7545             'Errno'                 => '1.17',
7546             'ExtUtils::Manifest'    => '1.62',
7547             'ExtUtils::Typemaps'    => '3.18',
7548             'ExtUtils::Typemaps::Cmd'=> '3.18',
7549             'ExtUtils::Typemaps::InputMap'=> '3.18',
7550             'ExtUtils::Typemaps::OutputMap'=> '3.18',
7551             'ExtUtils::Typemaps::Type'=> '3.18',
7552             'Fatal'                 => '2.13',
7553             'File::Find'            => '1.23',
7554             'Hash::Util'            => '0.13',
7555             'IO::Compress::Adapter::Bzip2'=> '2.058',
7556             'IO::Compress::Adapter::Deflate'=> '2.058',
7557             'IO::Compress::Adapter::Identity'=> '2.058',
7558             'IO::Compress::Base'    => '2.058',
7559             'IO::Compress::Base::Common'=> '2.058',
7560             'IO::Compress::Bzip2'   => '2.058',
7561             'IO::Compress::Deflate' => '2.058',
7562             'IO::Compress::Gzip'    => '2.058',
7563             'IO::Compress::Gzip::Constants'=> '2.058',
7564             'IO::Compress::RawDeflate'=> '2.058',
7565             'IO::Compress::Zip'     => '2.058',
7566             'IO::Compress::Zip::Constants'=> '2.058',
7567             'IO::Compress::Zlib::Constants'=> '2.058',
7568             'IO::Compress::Zlib::Extra'=> '2.058',
7569             'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7570             'IO::Uncompress::Adapter::Identity'=> '2.058',
7571             'IO::Uncompress::Adapter::Inflate'=> '2.058',
7572             'IO::Uncompress::AnyInflate'=> '2.058',
7573             'IO::Uncompress::AnyUncompress'=> '2.058',
7574             'IO::Uncompress::Base'  => '2.058',
7575             'IO::Uncompress::Bunzip2'=> '2.058',
7576             'IO::Uncompress::Gunzip'=> '2.058',
7577             'IO::Uncompress::Inflate'=> '2.058',
7578             'IO::Uncompress::RawInflate'=> '2.058',
7579             'IO::Uncompress::Unzip' => '2.058',
7580             'Module::CoreList'      => '2.78',
7581             'Module::CoreList::TieHashDelta'=> '2.77',
7582             'Module::Pluggable'     => '4.5',
7583             'Module::Pluggable::Object'=> '4.5',
7584             'Opcode'                => '1.25',
7585             'Sys::Hostname'         => '1.17',
7586             'Term::UI'              => '0.32',
7587             'Thread::Queue'         => '3.01',
7588             'Tie::Hash::NamedCapture'=> '0.09',
7589             'Unicode::Collate'      => '0.93',
7590             'Unicode::Collate::CJK::Korean'=> '0.93',
7591             'Unicode::Collate::Locale'=> '0.93',
7592             'Unicode::Normalize'    => '1.16',
7593             'Unicode::UCD'          => '0.47',
7594             'XS::APItest'           => '0.46',
7595             '_charnames'            => '1.33',
7596             'autodie'               => '2.13',
7597             'autodie::exception'    => '2.13',
7598             'autodie::exception::system'=> '2.13',
7599             'autodie::hints'        => '2.13',
7600             'charnames'             => '1.33',
7601             're'                    => '0.23',
7602         },
7603         removed => {
7604         }
7605     },
7606     5.017007 => {
7607         delta_from => 5.017006,
7608         changed => {
7609             'B'                     => '1.41',
7610             'CPANPLUS::Dist::Build' => '0.68',
7611             'CPANPLUS::Dist::Build::Constants'=> '0.68',
7612             'Compress::Raw::Bzip2'  => '2.059',
7613             'Compress::Raw::Zlib'   => '2.059',
7614             'Compress::Zlib'        => '2.059',
7615             'Cwd'                   => '3.39_03',
7616             'Data::Dumper'          => '2.139',
7617             'Devel::Peek'           => '1.11',
7618             'Digest::SHA'           => '5.80',
7619             'DynaLoader'            => '1.18',
7620             'English'               => '1.06',
7621             'Errno'                 => '1.18',
7622             'ExtUtils::Command::MM' => '6.64',
7623             'ExtUtils::Liblist'     => '6.64',
7624             'ExtUtils::Liblist::Kid'=> '6.64',
7625             'ExtUtils::MM'          => '6.64',
7626             'ExtUtils::MM_AIX'      => '6.64',
7627             'ExtUtils::MM_Any'      => '6.64',
7628             'ExtUtils::MM_BeOS'     => '6.64',
7629             'ExtUtils::MM_Cygwin'   => '6.64',
7630             'ExtUtils::MM_DOS'      => '6.64',
7631             'ExtUtils::MM_Darwin'   => '6.64',
7632             'ExtUtils::MM_MacOS'    => '6.64',
7633             'ExtUtils::MM_NW5'      => '6.64',
7634             'ExtUtils::MM_OS2'      => '6.64',
7635             'ExtUtils::MM_QNX'      => '6.64',
7636             'ExtUtils::MM_UWIN'     => '6.64',
7637             'ExtUtils::MM_Unix'     => '6.64',
7638             'ExtUtils::MM_VMS'      => '6.64',
7639             'ExtUtils::MM_VOS'      => '6.64',
7640             'ExtUtils::MM_Win32'    => '6.64',
7641             'ExtUtils::MM_Win95'    => '6.64',
7642             'ExtUtils::MY'          => '6.64',
7643             'ExtUtils::MakeMaker'   => '6.64',
7644             'ExtUtils::MakeMaker::Config'=> '6.64',
7645             'ExtUtils::Mkbootstrap' => '6.64',
7646             'ExtUtils::Mksymlists'  => '6.64',
7647             'ExtUtils::testlib'     => '6.64',
7648             'File::DosGlob'         => '1.09',
7649             'File::Glob'            => '1.19',
7650             'GDBM_File'             => '1.15',
7651             'IO::Compress::Adapter::Bzip2'=> '2.059',
7652             'IO::Compress::Adapter::Deflate'=> '2.059',
7653             'IO::Compress::Adapter::Identity'=> '2.059',
7654             'IO::Compress::Base'    => '2.059',
7655             'IO::Compress::Base::Common'=> '2.059',
7656             'IO::Compress::Bzip2'   => '2.059',
7657             'IO::Compress::Deflate' => '2.059',
7658             'IO::Compress::Gzip'    => '2.059',
7659             'IO::Compress::Gzip::Constants'=> '2.059',
7660             'IO::Compress::RawDeflate'=> '2.059',
7661             'IO::Compress::Zip'     => '2.059',
7662             'IO::Compress::Zip::Constants'=> '2.059',
7663             'IO::Compress::Zlib::Constants'=> '2.059',
7664             'IO::Compress::Zlib::Extra'=> '2.059',
7665             'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7666             'IO::Uncompress::Adapter::Identity'=> '2.059',
7667             'IO::Uncompress::Adapter::Inflate'=> '2.059',
7668             'IO::Uncompress::AnyInflate'=> '2.059',
7669             'IO::Uncompress::AnyUncompress'=> '2.059',
7670             'IO::Uncompress::Base'  => '2.059',
7671             'IO::Uncompress::Bunzip2'=> '2.059',
7672             'IO::Uncompress::Gunzip'=> '2.059',
7673             'IO::Uncompress::Inflate'=> '2.059',
7674             'IO::Uncompress::RawInflate'=> '2.059',
7675             'IO::Uncompress::Unzip' => '2.059',
7676             'List::Util'            => '1.26',
7677             'List::Util::XS'        => '1.26',
7678             'Locale::Codes'         => '3.24',
7679             'Locale::Codes::Constants'=> '3.24',
7680             'Locale::Codes::Country'=> '3.24',
7681             'Locale::Codes::Country_Codes'=> '3.24',
7682             'Locale::Codes::Country_Retired'=> '3.24',
7683             'Locale::Codes::Currency'=> '3.24',
7684             'Locale::Codes::Currency_Codes'=> '3.24',
7685             'Locale::Codes::Currency_Retired'=> '3.24',
7686             'Locale::Codes::LangExt'=> '3.24',
7687             'Locale::Codes::LangExt_Codes'=> '3.24',
7688             'Locale::Codes::LangExt_Retired'=> '3.24',
7689             'Locale::Codes::LangFam'=> '3.24',
7690             'Locale::Codes::LangFam_Codes'=> '3.24',
7691             'Locale::Codes::LangFam_Retired'=> '3.24',
7692             'Locale::Codes::LangVar'=> '3.24',
7693             'Locale::Codes::LangVar_Codes'=> '3.24',
7694             'Locale::Codes::LangVar_Retired'=> '3.24',
7695             'Locale::Codes::Language'=> '3.24',
7696             'Locale::Codes::Language_Codes'=> '3.24',
7697             'Locale::Codes::Language_Retired'=> '3.24',
7698             'Locale::Codes::Script' => '3.24',
7699             'Locale::Codes::Script_Codes'=> '3.24',
7700             'Locale::Codes::Script_Retired'=> '3.24',
7701             'Locale::Country'       => '3.24',
7702             'Locale::Currency'      => '3.24',
7703             'Locale::Language'      => '3.24',
7704             'Locale::Maketext'      => '1.23',
7705             'Locale::Script'        => '3.24',
7706             'Module::CoreList'      => '2.79',
7707             'Module::CoreList::TieHashDelta'=> '2.79',
7708             'POSIX'                 => '1.32',
7709             'Scalar::Util'          => '1.26',
7710             'Socket'                => '2.006_001',
7711             'Storable'              => '2.40',
7712             'Term::ReadLine'        => '1.11',
7713             'Unicode::Collate'      => '0.96',
7714             'Unicode::Collate::CJK::Stroke'=> '0.94',
7715             'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7716             'Unicode::Collate::Locale'=> '0.96',
7717             'XS::APItest'           => '0.48',
7718             'XS::Typemap'           => '0.09',
7719             '_charnames'            => '1.34',
7720             'charnames'             => '1.34',
7721             'feature'               => '1.32',
7722             'mro'                   => '1.10',
7723             'sigtrap'               => '1.07',
7724             'sort'                  => '2.02',
7725         },
7726         removed => {
7727         }
7728     },
7729     5.017008 => {
7730         delta_from => 5.017007,
7731         changed => {
7732             'Archive::Extract'      => '0.62',
7733             'B'                     => '1.42',
7734             'B::Concise'            => '0.95',
7735             'Compress::Raw::Bzip2'  => '2.060',
7736             'Compress::Raw::Zlib'   => '2.060',
7737             'Compress::Zlib'        => '2.060',
7738             'Cwd'                   => '3.40',
7739             'Data::Dumper'          => '2.141',
7740             'Digest::SHA'           => '5.81',
7741             'ExtUtils::Install'     => '1.59',
7742             'File::Fetch'           => '0.38',
7743             'File::Path'            => '2.09',
7744             'File::Spec'            => '3.40',
7745             'File::Spec::Cygwin'    => '3.40',
7746             'File::Spec::Epoc'      => '3.40',
7747             'File::Spec::Functions' => '3.40',
7748             'File::Spec::Mac'       => '3.40',
7749             'File::Spec::OS2'       => '3.40',
7750             'File::Spec::Unix'      => '3.40',
7751             'File::Spec::VMS'       => '3.40',
7752             'File::Spec::Win32'     => '3.40',
7753             'HTTP::Tiny'            => '0.025',
7754             'Hash::Util'            => '0.14',
7755             'I18N::LangTags'        => '0.39',
7756             'I18N::LangTags::List'  => '0.39',
7757             'I18N::Langinfo'        => '0.09',
7758             'IO'                    => '1.26',
7759             'IO::Compress::Adapter::Bzip2'=> '2.060',
7760             'IO::Compress::Adapter::Deflate'=> '2.060',
7761             'IO::Compress::Adapter::Identity'=> '2.060',
7762             'IO::Compress::Base'    => '2.060',
7763             'IO::Compress::Base::Common'=> '2.060',
7764             'IO::Compress::Bzip2'   => '2.060',
7765             'IO::Compress::Deflate' => '2.060',
7766             'IO::Compress::Gzip'    => '2.060',
7767             'IO::Compress::Gzip::Constants'=> '2.060',
7768             'IO::Compress::RawDeflate'=> '2.060',
7769             'IO::Compress::Zip'     => '2.060',
7770             'IO::Compress::Zip::Constants'=> '2.060',
7771             'IO::Compress::Zlib::Constants'=> '2.060',
7772             'IO::Compress::Zlib::Extra'=> '2.060',
7773             'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7774             'IO::Uncompress::Adapter::Identity'=> '2.060',
7775             'IO::Uncompress::Adapter::Inflate'=> '2.060',
7776             'IO::Uncompress::AnyInflate'=> '2.060',
7777             'IO::Uncompress::AnyUncompress'=> '2.060',
7778             'IO::Uncompress::Base'  => '2.060',
7779             'IO::Uncompress::Bunzip2'=> '2.060',
7780             'IO::Uncompress::Gunzip'=> '2.060',
7781             'IO::Uncompress::Inflate'=> '2.060',
7782             'IO::Uncompress::RawInflate'=> '2.060',
7783             'IO::Uncompress::Unzip' => '2.060',
7784             'List::Util'            => '1.27',
7785             'List::Util::XS'        => '1.27',
7786             'Module::CoreList'      => '2.80',
7787             'Module::CoreList::TieHashDelta'=> '2.80',
7788             'Pod::Html'             => '1.17',
7789             'Pod::LaTeX'            => '0.61',
7790             'Pod::Man'              => '2.27',
7791             'Pod::Text'             => '3.17',
7792             'Pod::Text::Color'      => '2.07',
7793             'Pod::Text::Overstrike' => '2.05',
7794             'Pod::Text::Termcap'    => '2.07',
7795             'Safe'                  => '2.34',
7796             'Scalar::Util'          => '1.27',
7797             'Socket'                => '2.009',
7798             'Term::ANSIColor'       => '4.02',
7799             'Test'                  => '1.26',
7800             'Unicode::Collate'      => '0.97',
7801             'XS::APItest'           => '0.51',
7802             'XS::Typemap'           => '0.10',
7803             '_charnames'            => '1.35',
7804             'charnames'             => '1.35',
7805             'constant'              => '1.25',
7806             'diagnostics'           => '1.31',
7807             'threads::shared'       => '1.43',
7808             'warnings'              => '1.16',
7809         },
7810         removed => {
7811         }
7812     },
7813     5.017009 => {
7814         delta_from => 5.017008,
7815         changed => {
7816             'App::Cpan'             => '1.60_02',
7817             'App::Prove'            => '3.26',
7818             'App::Prove::State'     => '3.26',
7819             'App::Prove::State::Result'=> '3.26',
7820             'App::Prove::State::Result::Test'=> '3.26',
7821             'Archive::Extract'      => '0.68',
7822             'Attribute::Handlers'   => '0.94',
7823             'B::Lint'               => '1.17',
7824             'B::Lint::Debug'        => '1.17',
7825             'Benchmark'             => '1.14',
7826             'CPAN'                  => '2.00',
7827             'CPAN::Distribution'    => '2.00',
7828             'CPAN::FirstTime'       => '5.5304',
7829             'CPAN::Nox'             => '5.5001',
7830             'CPANPLUS'              => '0.9135',
7831             'CPANPLUS::Backend'     => '0.9135',
7832             'CPANPLUS::Backend::RV' => '0.9135',
7833             'CPANPLUS::Config'      => '0.9135',
7834             'CPANPLUS::Config::HomeEnv'=> '0.9135',
7835             'CPANPLUS::Configure'   => '0.9135',
7836             'CPANPLUS::Configure::Setup'=> '0.9135',
7837             'CPANPLUS::Dist'        => '0.9135',
7838             'CPANPLUS::Dist::Autobundle'=> '0.9135',
7839             'CPANPLUS::Dist::Base'  => '0.9135',
7840             'CPANPLUS::Dist::Build' => '0.70',
7841             'CPANPLUS::Dist::Build::Constants'=> '0.70',
7842             'CPANPLUS::Dist::MM'    => '0.9135',
7843             'CPANPLUS::Dist::Sample'=> '0.9135',
7844             'CPANPLUS::Error'       => '0.9135',
7845             'CPANPLUS::Internals'   => '0.9135',
7846             'CPANPLUS::Internals::Constants'=> '0.9135',
7847             'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7848             'CPANPLUS::Internals::Extract'=> '0.9135',
7849             'CPANPLUS::Internals::Fetch'=> '0.9135',
7850             'CPANPLUS::Internals::Report'=> '0.9135',
7851             'CPANPLUS::Internals::Search'=> '0.9135',
7852             'CPANPLUS::Internals::Source'=> '0.9135',
7853             'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7854             'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7855             'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7856             'CPANPLUS::Internals::Utils'=> '0.9135',
7857             'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7858             'CPANPLUS::Module'      => '0.9135',
7859             'CPANPLUS::Module::Author'=> '0.9135',
7860             'CPANPLUS::Module::Author::Fake'=> '0.9135',
7861             'CPANPLUS::Module::Checksums'=> '0.9135',
7862             'CPANPLUS::Module::Fake'=> '0.9135',
7863             'CPANPLUS::Module::Signature'=> '0.9135',
7864             'CPANPLUS::Selfupdate'  => '0.9135',
7865             'CPANPLUS::Shell'       => '0.9135',
7866             'CPANPLUS::Shell::Classic'=> '0.9135',
7867             'CPANPLUS::Shell::Default'=> '0.9135',
7868             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7869             'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7870             'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
7871             'Config'                => '5.017009',
7872             'Config::Perl::V'       => '0.17',
7873             'DBM_Filter'            => '0.05',
7874             'Data::Dumper'          => '2.142',
7875             'Digest::SHA'           => '5.82',
7876             'Encode'                => '2.48',
7877             'ExtUtils::Installed'   => '1.999003',
7878             'ExtUtils::Manifest'    => '1.63',
7879             'ExtUtils::ParseXS::Utilities'=> '3.19',
7880             'ExtUtils::Typemaps'    => '3.19',
7881             'File::CheckTree'       => '4.42',
7882             'File::DosGlob'         => '1.10',
7883             'File::Temp'            => '0.22_90',
7884             'Filter::Simple'        => '0.89',
7885             'IO'                    => '1.27',
7886             'Log::Message'          => '0.06',
7887             'Log::Message::Config'  => '0.06',
7888             'Log::Message::Handlers'=> '0.06',
7889             'Log::Message::Item'    => '0.06',
7890             'Log::Message::Simple'  => '0.10',
7891             'Math::BigInt'          => '1.999',
7892             'Module::CoreList'      => '2.82',
7893             'Module::CoreList::TieHashDelta'=> '2.82',
7894             'Module::Load'          => '0.24',
7895             'Module::Pluggable'     => '4.6',
7896             'Module::Pluggable::Object'=> '4.6',
7897             'OS2::DLL'              => '1.05',
7898             'OS2::ExtAttr'          => '0.03',
7899             'OS2::Process'          => '1.08',
7900             'Object::Accessor'      => '0.46',
7901             'PerlIO::scalar'        => '0.16',
7902             'Pod::Checker'          => '1.60',
7903             'Pod::Find'             => '1.60',
7904             'Pod::Html'             => '1.18',
7905             'Pod::InputObjects'     => '1.60',
7906             'Pod::ParseUtils'       => '1.60',
7907             'Pod::Parser'           => '1.60',
7908             'Pod::Perldoc'          => '3.19',
7909             'Pod::Perldoc::BaseTo'  => '3.19',
7910             'Pod::Perldoc::GetOptsOO'=> '3.19',
7911             'Pod::Perldoc::ToANSI'  => '3.19',
7912             'Pod::Perldoc::ToChecker'=> '3.19',
7913             'Pod::Perldoc::ToMan'   => '3.19',
7914             'Pod::Perldoc::ToNroff' => '3.19',
7915             'Pod::Perldoc::ToPod'   => '3.19',
7916             'Pod::Perldoc::ToRtf'   => '3.19',
7917             'Pod::Perldoc::ToTerm'  => '3.19',
7918             'Pod::Perldoc::ToText'  => '3.19',
7919             'Pod::Perldoc::ToTk'    => '3.19',
7920             'Pod::Perldoc::ToXml'   => '3.19',
7921             'Pod::PlainText'        => '2.06',
7922             'Pod::Select'           => '1.60',
7923             'Pod::Usage'            => '1.61',
7924             'SelfLoader'            => '1.21',
7925             'TAP::Base'             => '3.26',
7926             'TAP::Formatter::Base'  => '3.26',
7927             'TAP::Formatter::Color' => '3.26',
7928             'TAP::Formatter::Console'=> '3.26',
7929             'TAP::Formatter::Console::ParallelSession'=> '3.26',
7930             'TAP::Formatter::Console::Session'=> '3.26',
7931             'TAP::Formatter::File'  => '3.26',
7932             'TAP::Formatter::File::Session'=> '3.26',
7933             'TAP::Formatter::Session'=> '3.26',
7934             'TAP::Harness'          => '3.26',
7935             'TAP::Object'           => '3.26',
7936             'TAP::Parser'           => '3.26',
7937             'TAP::Parser::Aggregator'=> '3.26',
7938             'TAP::Parser::Grammar'  => '3.26',
7939             'TAP::Parser::Iterator' => '3.26',
7940             'TAP::Parser::Iterator::Array'=> '3.26',
7941             'TAP::Parser::Iterator::Process'=> '3.26',
7942             'TAP::Parser::Iterator::Stream'=> '3.26',
7943             'TAP::Parser::IteratorFactory'=> '3.26',
7944             'TAP::Parser::Multiplexer'=> '3.26',
7945             'TAP::Parser::Result'   => '3.26',
7946             'TAP::Parser::Result::Bailout'=> '3.26',
7947             'TAP::Parser::Result::Comment'=> '3.26',
7948             'TAP::Parser::Result::Plan'=> '3.26',
7949             'TAP::Parser::Result::Pragma'=> '3.26',
7950             'TAP::Parser::Result::Test'=> '3.26',
7951             'TAP::Parser::Result::Unknown'=> '3.26',
7952             'TAP::Parser::Result::Version'=> '3.26',
7953             'TAP::Parser::Result::YAML'=> '3.26',
7954             'TAP::Parser::ResultFactory'=> '3.26',
7955             'TAP::Parser::Scheduler'=> '3.26',
7956             'TAP::Parser::Scheduler::Job'=> '3.26',
7957             'TAP::Parser::Scheduler::Spinner'=> '3.26',
7958             'TAP::Parser::Source'   => '3.26',
7959             'TAP::Parser::SourceHandler'=> '3.26',
7960             'TAP::Parser::SourceHandler::Executable'=> '3.26',
7961             'TAP::Parser::SourceHandler::File'=> '3.26',
7962             'TAP::Parser::SourceHandler::Handle'=> '3.26',
7963             'TAP::Parser::SourceHandler::Perl'=> '3.26',
7964             'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
7965             'TAP::Parser::Utils'    => '3.26',
7966             'TAP::Parser::YAMLish::Reader'=> '3.26',
7967             'TAP::Parser::YAMLish::Writer'=> '3.26',
7968             'Term::UI'              => '0.34',
7969             'Test::Harness'         => '3.26',
7970             'Text::Soundex'         => '3.04',
7971             'Thread::Queue'         => '3.02',
7972             'Unicode::UCD'          => '0.50',
7973             'Win32'                 => '0.46',
7974             'Win32API::File'        => '0.1201',
7975             '_charnames'            => '1.36',
7976             'arybase'               => '0.06',
7977             'bigint'                => '0.32',
7978             'bignum'                => '0.32',
7979             'charnames'             => '1.36',
7980             'filetest'              => '1.03',
7981             'locale'                => '1.02',
7982             'overload'              => '1.21',
7983             'warnings'              => '1.17',
7984         },
7985         removed => {
7986         }
7987     },
7988     5.017010 => {
7989         delta_from => 5.017009,
7990         changed => {
7991             'Benchmark'             => '1.15',
7992             'Config'                => '5.017009',
7993             'Data::Dumper'          => '2.145',
7994             'Digest::SHA'           => '5.84',
7995             'Encode'                => '2.49',
7996             'ExtUtils::Command::MM' => '6.65_01',
7997             'ExtUtils::Liblist'     => '6.65_01',
7998             'ExtUtils::Liblist::Kid'=> '6.65_01',
7999             'ExtUtils::MM'          => '6.65_01',
8000             'ExtUtils::MM_AIX'      => '6.65_01',
8001             'ExtUtils::MM_Any'      => '6.65_01',
8002             'ExtUtils::MM_BeOS'     => '6.65_01',
8003             'ExtUtils::MM_Cygwin'   => '6.65_01',
8004             'ExtUtils::MM_DOS'      => '6.65_01',
8005             'ExtUtils::MM_Darwin'   => '6.65_01',
8006             'ExtUtils::MM_MacOS'    => '6.65_01',
8007             'ExtUtils::MM_NW5'      => '6.65_01',
8008             'ExtUtils::MM_OS2'      => '6.65_01',
8009             'ExtUtils::MM_QNX'      => '6.65_01',
8010             'ExtUtils::MM_UWIN'     => '6.65_01',
8011             'ExtUtils::MM_Unix'     => '6.65_01',
8012             'ExtUtils::MM_VMS'      => '6.65_01',
8013             'ExtUtils::MM_VOS'      => '6.65_01',
8014             'ExtUtils::MM_Win32'    => '6.65_01',
8015             'ExtUtils::MM_Win95'    => '6.65_01',
8016             'ExtUtils::MY'          => '6.65_01',
8017             'ExtUtils::MakeMaker'   => '6.65_01',
8018             'ExtUtils::MakeMaker::Config'=> '6.65_01',
8019             'ExtUtils::Mkbootstrap' => '6.65_01',
8020             'ExtUtils::Mksymlists'  => '6.65_01',
8021             'ExtUtils::testlib'     => '6.65_01',
8022             'File::Copy'            => '2.26',
8023             'File::Temp'            => '0.23',
8024             'Getopt::Long'          => '2.39',
8025             'Hash::Util'            => '0.15',
8026             'I18N::Langinfo'        => '0.10',
8027             'IPC::Cmd'              => '0.80',
8028             'JSON::PP'              => '2.27202',
8029             'Locale::Codes'         => '3.25',
8030             'Locale::Codes::Constants'=> '3.25',
8031             'Locale::Codes::Country'=> '3.25',
8032             'Locale::Codes::Country_Codes'=> '3.25',
8033             'Locale::Codes::Country_Retired'=> '3.25',
8034             'Locale::Codes::Currency'=> '3.25',
8035             'Locale::Codes::Currency_Codes'=> '3.25',
8036             'Locale::Codes::Currency_Retired'=> '3.25',
8037             'Locale::Codes::LangExt'=> '3.25',
8038             'Locale::Codes::LangExt_Codes'=> '3.25',
8039             'Locale::Codes::LangExt_Retired'=> '3.25',
8040             'Locale::Codes::LangFam'=> '3.25',
8041             'Locale::Codes::LangFam_Codes'=> '3.25',
8042             'Locale::Codes::LangFam_Retired'=> '3.25',
8043             'Locale::Codes::LangVar'=> '3.25',
8044             'Locale::Codes::LangVar_Codes'=> '3.25',
8045             'Locale::Codes::LangVar_Retired'=> '3.25',
8046             'Locale::Codes::Language'=> '3.25',
8047             'Locale::Codes::Language_Codes'=> '3.25',
8048             'Locale::Codes::Language_Retired'=> '3.25',
8049             'Locale::Codes::Script' => '3.25',
8050             'Locale::Codes::Script_Codes'=> '3.25',
8051             'Locale::Codes::Script_Retired'=> '3.25',
8052             'Locale::Country'       => '3.25',
8053             'Locale::Currency'      => '3.25',
8054             'Locale::Language'      => '3.25',
8055             'Locale::Script'        => '3.25',
8056             'Math::BigFloat'        => '1.998',
8057             'Math::BigFloat::Trace' => '0.32',
8058             'Math::BigInt'          => '1.9991',
8059             'Math::BigInt::CalcEmu' => '1.998',
8060             'Math::BigInt::Trace'   => '0.32',
8061             'Math::BigRat'          => '0.2604',
8062             'Module::CoreList'      => '2.84',
8063             'Module::CoreList::TieHashDelta'=> '2.84',
8064             'Module::Pluggable'     => '4.7',
8065             'Net::Ping'             => '2.41',
8066             'Perl::OSType'          => '1.003',
8067             'Pod::Simple'           => '3.26',
8068             'Pod::Simple::BlackBox' => '3.26',
8069             'Pod::Simple::Checker'  => '3.26',
8070             'Pod::Simple::Debug'    => '3.26',
8071             'Pod::Simple::DumpAsText'=> '3.26',
8072             'Pod::Simple::DumpAsXML'=> '3.26',
8073             'Pod::Simple::HTML'     => '3.26',
8074             'Pod::Simple::HTMLBatch'=> '3.26',
8075             'Pod::Simple::LinkSection'=> '3.26',
8076             'Pod::Simple::Methody'  => '3.26',
8077             'Pod::Simple::Progress' => '3.26',
8078             'Pod::Simple::PullParser'=> '3.26',
8079             'Pod::Simple::PullParserEndToken'=> '3.26',
8080             'Pod::Simple::PullParserStartToken'=> '3.26',
8081             'Pod::Simple::PullParserTextToken'=> '3.26',
8082             'Pod::Simple::PullParserToken'=> '3.26',
8083             'Pod::Simple::RTF'      => '3.26',
8084             'Pod::Simple::Search'   => '3.26',
8085             'Pod::Simple::SimpleTree'=> '3.26',
8086             'Pod::Simple::Text'     => '3.26',
8087             'Pod::Simple::TextContent'=> '3.26',
8088             'Pod::Simple::TiedOutFH'=> '3.26',
8089             'Pod::Simple::Transcode'=> '3.26',
8090             'Pod::Simple::TranscodeDumb'=> '3.26',
8091             'Pod::Simple::TranscodeSmart'=> '3.26',
8092             'Pod::Simple::XHTML'    => '3.26',
8093             'Pod::Simple::XMLOutStream'=> '3.26',
8094             'Safe'                  => '2.35',
8095             'Term::ReadLine'        => '1.12',
8096             'Text::ParseWords'      => '3.28',
8097             'Tie::File'             => '0.99',
8098             'Unicode::UCD'          => '0.51',
8099             'Win32'                 => '0.47',
8100             'bigint'                => '0.33',
8101             'bignum'                => '0.33',
8102             'bigrat'                => '0.33',
8103             'constant'              => '1.27',
8104             'perlfaq'               => '5.0150042',
8105             'version'               => '0.9902',
8106         },
8107         removed => {
8108         }
8109     },
8110     5.017011 => {
8111         delta_from => 5.017010,
8112         changed => {
8113             'App::Cpan'             => '1.61',
8114             'B::Deparse'            => '1.20',
8115             'Config'                => '5.017009',
8116             'Exporter'              => '5.68',
8117             'Exporter::Heavy'       => '5.68',
8118             'ExtUtils::CBuilder'    => '0.280210',
8119             'ExtUtils::Command::MM' => '6.66',
8120             'ExtUtils::Liblist'     => '6.66',
8121             'ExtUtils::Liblist::Kid'=> '6.66',
8122             'ExtUtils::MM'          => '6.66',
8123             'ExtUtils::MM_AIX'      => '6.66',
8124             'ExtUtils::MM_Any'      => '6.66',
8125             'ExtUtils::MM_BeOS'     => '6.66',
8126             'ExtUtils::MM_Cygwin'   => '6.66',
8127             'ExtUtils::MM_DOS'      => '6.66',
8128             'ExtUtils::MM_Darwin'   => '6.66',
8129             'ExtUtils::MM_MacOS'    => '6.66',
8130             'ExtUtils::MM_NW5'      => '6.66',
8131             'ExtUtils::MM_OS2'      => '6.66',
8132             'ExtUtils::MM_QNX'      => '6.66',
8133             'ExtUtils::MM_UWIN'     => '6.66',
8134             'ExtUtils::MM_Unix'     => '6.66',
8135             'ExtUtils::MM_VMS'      => '6.66',
8136             'ExtUtils::MM_VOS'      => '6.66',
8137             'ExtUtils::MM_Win32'    => '6.66',
8138             'ExtUtils::MM_Win95'    => '6.66',
8139             'ExtUtils::MY'          => '6.66',
8140             'ExtUtils::MakeMaker'   => '6.66',
8141             'ExtUtils::MakeMaker::Config'=> '6.66',
8142             'ExtUtils::Mkbootstrap' => '6.66',
8143             'ExtUtils::Mksymlists'  => '6.66',
8144             'ExtUtils::testlib'     => '6.66',
8145             'File::Glob'            => '1.20',
8146             'IO'                    => '1.28',
8147             'Module::CoreList'      => '2.87',
8148             'Module::CoreList::TieHashDelta'=> '2.87',
8149             'Storable'              => '2.41',
8150             'bigint'                => '0.34',
8151             'mro'                   => '1.11',
8152             'overload'              => '1.22',
8153             'warnings'              => '1.18',
8154         },
8155         removed => {
8156         }
8157     },
8158     5.018000 => {
8159         delta_from => 5.017011,
8160         changed => {
8161             'Carp'                  => '1.29',
8162             'Carp::Heavy'           => '1.29',
8163             'Config'                => '5.018000',
8164             'Hash::Util'            => '0.16',
8165             'IO::Handle'            => '1.34',
8166             'IO::Socket'            => '1.36',
8167             'Module::CoreList'      => '2.89',
8168             'Module::CoreList::TieHashDelta'=> '2.89',
8169             'Pod::Simple'           => '3.28',
8170             'Pod::Simple::BlackBox' => '3.28',
8171             'Pod::Simple::Checker'  => '3.28',
8172             'Pod::Simple::Debug'    => '3.28',
8173             'Pod::Simple::DumpAsText'=> '3.28',
8174             'Pod::Simple::DumpAsXML'=> '3.28',
8175             'Pod::Simple::HTML'     => '3.28',
8176             'Pod::Simple::HTMLBatch'=> '3.28',
8177             'Pod::Simple::LinkSection'=> '3.28',
8178             'Pod::Simple::Methody'  => '3.28',
8179             'Pod::Simple::Progress' => '3.28',
8180             'Pod::Simple::PullParser'=> '3.28',
8181             'Pod::Simple::PullParserEndToken'=> '3.28',
8182             'Pod::Simple::PullParserStartToken'=> '3.28',
8183             'Pod::Simple::PullParserTextToken'=> '3.28',
8184             'Pod::Simple::PullParserToken'=> '3.28',
8185             'Pod::Simple::RTF'      => '3.28',
8186             'Pod::Simple::Search'   => '3.28',
8187             'Pod::Simple::SimpleTree'=> '3.28',
8188             'Pod::Simple::Text'     => '3.28',
8189             'Pod::Simple::TextContent'=> '3.28',
8190             'Pod::Simple::TiedOutFH'=> '3.28',
8191             'Pod::Simple::Transcode'=> '3.28',
8192             'Pod::Simple::TranscodeDumb'=> '3.28',
8193             'Pod::Simple::TranscodeSmart'=> '3.28',
8194             'Pod::Simple::XHTML'    => '3.28',
8195             'Pod::Simple::XMLOutStream'=> '3.28',
8196         },
8197         removed => {
8198         }
8199     },
8200     5.018001 => {
8201         delta_from => 5.018000,
8202         changed => {
8203             'B'                     => '1.42_01',
8204             'Config'                => '5.018001',
8205             'Digest::SHA'           => '5.84_01',
8206             'Module::CoreList'      => '2.96',
8207             'Module::CoreList::TieHashDelta'=> '2.96',
8208             'Module::CoreList::Utils'=> '2.96',
8209         },
8210         removed => {
8211            'VMS::Filespec'         => 1,
8212         }
8213     },
8214     5.018002 => {
8215         delta_from => 5.018001,
8216         changed => {
8217             'B'                     => '1.42_02',
8218             'B::Concise'            => '0.95_01',
8219             'Config'                => '5.018002',
8220             'File::Glob'            => '1.20_01',
8221             'Module::CoreList'      => '3.03',
8222             'Module::CoreList::TieHashDelta'=> '3.03',
8223             'Module::CoreList::Utils'=> '3.03',
8224         },
8225     },
8226     5.018003 => {
8227         delta_from => 5.018002,
8228         changed => {
8229             'Config'                => '5.018003',
8230             'Digest::SHA'           => '5.84_02',
8231             'Module::CoreList'      => '3.12',
8232             'Module::CoreList::TieHashDelta'=> '3.12',
8233             'Module::CoreList::Utils'=> '3.12',
8234         },
8235     },
8236     5.018004 => {
8237         delta_from => 5.018003,
8238         changed => {
8239             'Config'                => '5.018004',
8240             'Module::CoreList'      => '3.13',
8241             'Module::CoreList::TieHashDelta'=> '3.13',
8242             'Module::CoreList::Utils'=> '3.13',
8243         },
8244     },
8245     5.019000 => {
8246         delta_from => 5.018000,
8247         changed => {
8248             'Config'                => '5.019000',
8249             'Getopt::Std'           => '1.08',
8250             'Module::CoreList'      => '2.91',
8251             'Module::CoreList::TieHashDelta'=> '2.91',
8252             'Storable'              => '2.42',
8253             'feature'               => '1.33',
8254             'utf8'                  => '1.11',
8255         },
8256         removed => {
8257            'Archive::Extract'      => 1,
8258            'B::Lint'               => 1,
8259            'B::Lint::Debug'        => 1,
8260            'CPANPLUS'              => 1,
8261            'CPANPLUS::Backend'     => 1,
8262            'CPANPLUS::Backend::RV' => 1,
8263            'CPANPLUS::Config'      => 1,
8264            'CPANPLUS::Config::HomeEnv'=> 1,
8265            'CPANPLUS::Configure'   => 1,
8266            'CPANPLUS::Configure::Setup'=> 1,
8267            'CPANPLUS::Dist'        => 1,
8268            'CPANPLUS::Dist::Autobundle'=> 1,
8269            'CPANPLUS::Dist::Base'  => 1,
8270            'CPANPLUS::Dist::Build' => 1,
8271            'CPANPLUS::Dist::Build::Constants'=> 1,
8272            'CPANPLUS::Dist::MM'    => 1,
8273            'CPANPLUS::Dist::Sample'=> 1,
8274            'CPANPLUS::Error'       => 1,
8275            'CPANPLUS::Internals'   => 1,
8276            'CPANPLUS::Internals::Constants'=> 1,
8277            'CPANPLUS::Internals::Constants::Report'=> 1,
8278            'CPANPLUS::Internals::Extract'=> 1,
8279            'CPANPLUS::Internals::Fetch'=> 1,
8280            'CPANPLUS::Internals::Report'=> 1,
8281            'CPANPLUS::Internals::Search'=> 1,
8282            'CPANPLUS::Internals::Source'=> 1,
8283            'CPANPLUS::Internals::Source::Memory'=> 1,
8284            'CPANPLUS::Internals::Source::SQLite'=> 1,
8285            'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8286            'CPANPLUS::Internals::Utils'=> 1,
8287            'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8288            'CPANPLUS::Module'      => 1,
8289            'CPANPLUS::Module::Author'=> 1,
8290            'CPANPLUS::Module::Author::Fake'=> 1,
8291            'CPANPLUS::Module::Checksums'=> 1,
8292            'CPANPLUS::Module::Fake'=> 1,
8293            'CPANPLUS::Module::Signature'=> 1,
8294            'CPANPLUS::Selfupdate'  => 1,
8295            'CPANPLUS::Shell'       => 1,
8296            'CPANPLUS::Shell::Classic'=> 1,
8297            'CPANPLUS::Shell::Default'=> 1,
8298            'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8299            'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8300            'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8301            'Devel::InnerPackage'   => 1,
8302            'File::CheckTree'       => 1,
8303            'Log::Message'          => 1,
8304            'Log::Message::Config'  => 1,
8305            'Log::Message::Handlers'=> 1,
8306            'Log::Message::Item'    => 1,
8307            'Log::Message::Simple'  => 1,
8308            'Module::Pluggable'     => 1,
8309            'Module::Pluggable::Object'=> 1,
8310            'Object::Accessor'      => 1,
8311            'Pod::LaTeX'            => 1,
8312            'Term::UI'              => 1,
8313            'Term::UI::History'     => 1,
8314            'Text::Soundex'         => 1,
8315         }
8316     },
8317     5.019001 => {
8318         delta_from => 5.019000,
8319         changed => {
8320             'App::Prove'            => '3.28',
8321             'App::Prove::State'     => '3.28',
8322             'App::Prove::State::Result'=> '3.28',
8323             'App::Prove::State::Result::Test'=> '3.28',
8324             'Archive::Tar'          => '1.92',
8325             'Archive::Tar::Constant'=> '1.92',
8326             'Archive::Tar::File'    => '1.92',
8327             'Attribute::Handlers'   => '0.95',
8328             'B'                     => '1.43',
8329             'B::Concise'            => '0.96',
8330             'B::Deparse'            => '1.21',
8331             'B::Showlex'            => '1.04',
8332             'Benchmark'             => '1.16',
8333             'CPAN::Meta'            => '2.131560',
8334             'CPAN::Meta::Converter' => '2.131560',
8335             'CPAN::Meta::Feature'   => '2.131560',
8336             'CPAN::Meta::History'   => '2.131560',
8337             'CPAN::Meta::Prereqs'   => '2.131560',
8338             'CPAN::Meta::Spec'      => '2.131560',
8339             'CPAN::Meta::Validator' => '2.131560',
8340             'Carp'                  => '1.30',
8341             'Carp::Heavy'           => '1.30',
8342             'Compress::Raw::Bzip2'  => '2.061',
8343             'Compress::Raw::Zlib'   => '2.061',
8344             'Compress::Zlib'        => '2.061',
8345             'Config'                => '5.019001',
8346             'Config::Perl::V'       => '0.18',
8347             'Cwd'                   => '3.41',
8348             'DB'                    => '1.06',
8349             'DB_File'               => '1.828',
8350             'Data::Dumper'          => '2.146',
8351             'Encode'                => '2.51',
8352             'Encode::CN::HZ'        => '2.06',
8353             'Encode::GSM0338'       => '2.03',
8354             'Encode::Unicode::UTF7' => '2.07',
8355             'ExtUtils::CBuilder::Base'=> '0.280210',
8356             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8357             'ExtUtils::Command::MM' => '6.68',
8358             'ExtUtils::Install'     => '1.60',
8359             'ExtUtils::Liblist'     => '6.68',
8360             'ExtUtils::Liblist::Kid'=> '6.68',
8361             'ExtUtils::MM'          => '6.68',
8362             'ExtUtils::MM_AIX'      => '6.68',
8363             'ExtUtils::MM_Any'      => '6.68',
8364             'ExtUtils::MM_BeOS'     => '6.68',
8365             'ExtUtils::MM_Cygwin'   => '6.68',
8366             'ExtUtils::MM_DOS'      => '6.68',
8367             'ExtUtils::MM_Darwin'   => '6.68',
8368             'ExtUtils::MM_MacOS'    => '6.68',
8369             'ExtUtils::MM_NW5'      => '6.68',
8370             'ExtUtils::MM_OS2'      => '6.68',
8371             'ExtUtils::MM_QNX'      => '6.68',
8372             'ExtUtils::MM_UWIN'     => '6.68',
8373             'ExtUtils::MM_Unix'     => '6.68',
8374             'ExtUtils::MM_VMS'      => '6.68',
8375             'ExtUtils::MM_VOS'      => '6.68',
8376             'ExtUtils::MM_Win32'    => '6.68',
8377             'ExtUtils::MM_Win95'    => '6.68',
8378             'ExtUtils::MY'          => '6.68',
8379             'ExtUtils::MakeMaker'   => '6.68',
8380             'ExtUtils::MakeMaker::Config'=> '6.68',
8381             'ExtUtils::Mkbootstrap' => '6.68',
8382             'ExtUtils::Mksymlists'  => '6.68',
8383             'ExtUtils::ParseXS'     => '3.19',
8384             'ExtUtils::testlib'     => '6.68',
8385             'Fatal'                 => '2.19',
8386             'File::Copy'            => '2.27',
8387             'File::DosGlob'         => '1.11',
8388             'File::Fetch'           => '0.42',
8389             'File::Find'            => '1.24',
8390             'File::Spec'            => '3.41',
8391             'File::Spec::Cygwin'    => '3.41',
8392             'File::Spec::Epoc'      => '3.41',
8393             'File::Spec::Mac'       => '3.41',
8394             'File::Spec::OS2'       => '3.41',
8395             'File::Spec::Unix'      => '3.41',
8396             'File::Spec::VMS'       => '3.41',
8397             'File::Spec::Win32'     => '3.41',
8398             'File::Temp'            => '0.2301',
8399             'Filter::Simple'        => '0.90',
8400             'Filter::Util::Call'    => '1.49',
8401             'Getopt::Long'          => '2.4',
8402             'HTTP::Tiny'            => '0.031',
8403             'Hash::Util::FieldHash' => '1.11',
8404             'IO::Compress::Adapter::Bzip2'=> '2.061',
8405             'IO::Compress::Adapter::Deflate'=> '2.061',
8406             'IO::Compress::Adapter::Identity'=> '2.061',
8407             'IO::Compress::Base'    => '2.061',
8408             'IO::Compress::Base::Common'=> '2.061',
8409             'IO::Compress::Bzip2'   => '2.061',
8410             'IO::Compress::Deflate' => '2.061',
8411             'IO::Compress::Gzip'    => '2.061',
8412             'IO::Compress::Gzip::Constants'=> '2.061',
8413             'IO::Compress::RawDeflate'=> '2.061',
8414             'IO::Compress::Zip'     => '2.061',
8415             'IO::Compress::Zip::Constants'=> '2.061',
8416             'IO::Compress::Zlib::Constants'=> '2.061',
8417             'IO::Compress::Zlib::Extra'=> '2.061',
8418             'IO::Handle'            => '1.35',
8419             'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8420             'IO::Uncompress::Adapter::Identity'=> '2.061',
8421             'IO::Uncompress::Adapter::Inflate'=> '2.061',
8422             'IO::Uncompress::AnyInflate'=> '2.061',
8423             'IO::Uncompress::AnyUncompress'=> '2.061',
8424             'IO::Uncompress::Base'  => '2.061',
8425             'IO::Uncompress::Bunzip2'=> '2.061',
8426             'IO::Uncompress::Gunzip'=> '2.061',
8427             'IO::Uncompress::Inflate'=> '2.061',
8428             'IO::Uncompress::RawInflate'=> '2.061',
8429             'IO::Uncompress::Unzip' => '2.061',
8430             'IPC::Open3'            => '1.14',
8431             'Locale::Codes'         => '3.26',
8432             'Locale::Codes::Constants'=> '3.26',
8433             'Locale::Codes::Country'=> '3.26',
8434             'Locale::Codes::Country_Codes'=> '3.26',
8435             'Locale::Codes::Country_Retired'=> '3.26',
8436             'Locale::Codes::Currency'=> '3.26',
8437             'Locale::Codes::Currency_Codes'=> '3.26',
8438             'Locale::Codes::Currency_Retired'=> '3.26',
8439             'Locale::Codes::LangExt'=> '3.26',
8440             'Locale::Codes::LangExt_Codes'=> '3.26',
8441             'Locale::Codes::LangExt_Retired'=> '3.26',
8442             'Locale::Codes::LangFam'=> '3.26',
8443             'Locale::Codes::LangFam_Codes'=> '3.26',
8444             'Locale::Codes::LangFam_Retired'=> '3.26',
8445             'Locale::Codes::LangVar'=> '3.26',
8446             'Locale::Codes::LangVar_Codes'=> '3.26',
8447             'Locale::Codes::LangVar_Retired'=> '3.26',
8448             'Locale::Codes::Language'=> '3.26',
8449             'Locale::Codes::Language_Codes'=> '3.26',
8450             'Locale::Codes::Language_Retired'=> '3.26',
8451             'Locale::Codes::Script' => '3.26',
8452             'Locale::Codes::Script_Codes'=> '3.26',
8453             'Locale::Codes::Script_Retired'=> '3.26',
8454             'Locale::Country'       => '3.26',
8455             'Locale::Currency'      => '3.26',
8456             'Locale::Language'      => '3.26',
8457             'Locale::Maketext'      => '1.24',
8458             'Locale::Script'        => '3.26',
8459             'Math::BigFloat'        => '1.999',
8460             'Math::BigInt'          => '1.9992',
8461             'Math::BigInt::Calc'    => '1.998',
8462             'Math::BigInt::CalcEmu' => '1.9991',
8463             'Math::BigRat'          => '0.2606',
8464             'Module::Build'         => '0.4005',
8465             'Module::Build::Base'   => '0.4005',
8466             'Module::Build::Compat' => '0.4005',
8467             'Module::Build::Config' => '0.4005',
8468             'Module::Build::Cookbook'=> '0.4005',
8469             'Module::Build::Dumper' => '0.4005',
8470             'Module::Build::ModuleInfo'=> '0.4005',
8471             'Module::Build::Notes'  => '0.4005',
8472             'Module::Build::PPMMaker'=> '0.4005',
8473             'Module::Build::Platform::Amiga'=> '0.4005',
8474             'Module::Build::Platform::Default'=> '0.4005',
8475             'Module::Build::Platform::EBCDIC'=> '0.4005',
8476             'Module::Build::Platform::MPEiX'=> '0.4005',
8477             'Module::Build::Platform::MacOS'=> '0.4005',
8478             'Module::Build::Platform::RiscOS'=> '0.4005',
8479             'Module::Build::Platform::Unix'=> '0.4005',
8480             'Module::Build::Platform::VMS'=> '0.4005',
8481             'Module::Build::Platform::VOS'=> '0.4005',
8482             'Module::Build::Platform::Windows'=> '0.4005',
8483             'Module::Build::Platform::aix'=> '0.4005',
8484             'Module::Build::Platform::cygwin'=> '0.4005',
8485             'Module::Build::Platform::darwin'=> '0.4005',
8486             'Module::Build::Platform::os2'=> '0.4005',
8487             'Module::Build::PodParser'=> '0.4005',
8488             'Module::CoreList'      => '2.92',
8489             'Module::CoreList::TieHashDelta'=> '2.92',
8490             'Module::CoreList::Utils'=> '2.92',
8491             'Module::Metadata'      => '1.000014',
8492             'Net::Ping'             => '2.42',
8493             'OS2::Process'          => '1.09',
8494             'POSIX'                 => '1.33',
8495             'Pod::Find'             => '1.61',
8496             'Pod::Html'             => '1.19',
8497             'Pod::InputObjects'     => '1.61',
8498             'Pod::ParseUtils'       => '1.61',
8499             'Pod::Parser'           => '1.61',
8500             'Pod::Perldoc'          => '3.20',
8501             'Pod::Perldoc::BaseTo'  => '3.20',
8502             'Pod::Perldoc::GetOptsOO'=> '3.20',
8503             'Pod::Perldoc::ToANSI'  => '3.20',
8504             'Pod::Perldoc::ToChecker'=> '3.20',
8505             'Pod::Perldoc::ToMan'   => '3.20',
8506             'Pod::Perldoc::ToNroff' => '3.20',
8507             'Pod::Perldoc::ToPod'   => '3.20',
8508             'Pod::Perldoc::ToRtf'   => '3.20',
8509             'Pod::Perldoc::ToTerm'  => '3.20',
8510             'Pod::Perldoc::ToText'  => '3.20',
8511             'Pod::Perldoc::ToTk'    => '3.20',
8512             'Pod::Perldoc::ToXml'   => '3.20',
8513             'Pod::Select'           => '1.61',
8514             'Pod::Usage'            => '1.63',
8515             'Safe'                  => '2.36',
8516             'Storable'              => '2.43',
8517             'Sys::Hostname'         => '1.18',
8518             'Sys::Syslog'           => '0.33',
8519             'TAP::Base'             => '3.28',
8520             'TAP::Formatter::Base'  => '3.28',
8521             'TAP::Formatter::Color' => '3.28',
8522             'TAP::Formatter::Console'=> '3.28',
8523             'TAP::Formatter::Console::ParallelSession'=> '3.28',
8524             'TAP::Formatter::Console::Session'=> '3.28',
8525             'TAP::Formatter::File'  => '3.28',
8526             'TAP::Formatter::File::Session'=> '3.28',
8527             'TAP::Formatter::Session'=> '3.28',
8528             'TAP::Harness'          => '3.28',
8529             'TAP::Object'           => '3.28',
8530             'TAP::Parser'           => '3.28',
8531             'TAP::Parser::Aggregator'=> '3.28',
8532             'TAP::Parser::Grammar'  => '3.28',
8533             'TAP::Parser::Iterator' => '3.28',
8534             'TAP::Parser::Iterator::Array'=> '3.28',
8535             'TAP::Parser::Iterator::Process'=> '3.28',
8536             'TAP::Parser::Iterator::Stream'=> '3.28',
8537             'TAP::Parser::IteratorFactory'=> '3.28',
8538             'TAP::Parser::Multiplexer'=> '3.28',
8539             'TAP::Parser::Result'   => '3.28',
8540             'TAP::Parser::Result::Bailout'=> '3.28',
8541             'TAP::Parser::Result::Comment'=> '3.28',
8542             'TAP::Parser::Result::Plan'=> '3.28',
8543             'TAP::Parser::Result::Pragma'=> '3.28',
8544             'TAP::Parser::Result::Test'=> '3.28',
8545             'TAP::Parser::Result::Unknown'=> '3.28',
8546             'TAP::Parser::Result::Version'=> '3.28',
8547             'TAP::Parser::Result::YAML'=> '3.28',
8548             'TAP::Parser::ResultFactory'=> '3.28',
8549             'TAP::Parser::Scheduler'=> '3.28',
8550             'TAP::Parser::Scheduler::Job'=> '3.28',
8551             'TAP::Parser::Scheduler::Spinner'=> '3.28',
8552             'TAP::Parser::Source'   => '3.28',
8553             'TAP::Parser::SourceHandler'=> '3.28',
8554             'TAP::Parser::SourceHandler::Executable'=> '3.28',
8555             'TAP::Parser::SourceHandler::File'=> '3.28',
8556             'TAP::Parser::SourceHandler::Handle'=> '3.28',
8557             'TAP::Parser::SourceHandler::Perl'=> '3.28',
8558             'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8559             'TAP::Parser::Utils'    => '3.28',
8560             'TAP::Parser::YAMLish::Reader'=> '3.28',
8561             'TAP::Parser::YAMLish::Writer'=> '3.28',
8562             'Term::ReadLine'        => '1.13',
8563             'Test::Harness'         => '3.28',
8564             'Text::Tabs'            => '2013.0523',
8565             'Text::Wrap'            => '2013.0523',
8566             'Thread'                => '3.04',
8567             'Tie::File'             => '1.00',
8568             'Time::Piece'           => '1.2002',
8569             'Unicode::Collate'      => '0.98',
8570             'Unicode::UCD'          => '0.53',
8571             'XS::APItest'           => '0.53',
8572             '_charnames'            => '1.37',
8573             'autodie'               => '2.19',
8574             'autodie::exception'    => '2.19',
8575             'autodie::exception::system'=> '2.19',
8576             'autodie::hints'        => '2.19',
8577             'autodie::skip'         => '2.19',
8578             'bigint'                => '0.35',
8579             'charnames'             => '1.38',
8580             'encoding'              => '2.12',
8581             'inc::latest'           => '0.4005',
8582             'mro'                   => '1.12',
8583             'perlfaq'               => '5.0150043',
8584             're'                    => '0.25',
8585             'threads'               => '1.87',
8586             'threads::shared'       => '1.44',
8587             'utf8'                  => '1.12',
8588         },
8589         removed => {
8590         }
8591     },
8592     5.019002 => {
8593         delta_from => 5.019001,
8594         changed => {
8595             'B'                     => '1.44',
8596             'B::Concise'            => '0.98',
8597             'B::Deparse'            => '1.22',
8598             'Benchmark'             => '1.17',
8599             'Class::Struct'         => '0.65',
8600             'Config'                => '5.019002',
8601             'DB'                    => '1.07',
8602             'DBM_Filter'            => '0.06',
8603             'DBM_Filter::compress'  => '0.03',
8604             'DBM_Filter::encode'    => '0.03',
8605             'DBM_Filter::int32'     => '0.03',
8606             'DBM_Filter::null'      => '0.03',
8607             'DBM_Filter::utf8'      => '0.03',
8608             'DB_File'               => '1.829',
8609             'Data::Dumper'          => '2.147',
8610             'Devel::Peek'           => '1.12',
8611             'Digest::MD5'           => '2.53',
8612             'Digest::SHA'           => '5.85',
8613             'English'               => '1.07',
8614             'Errno'                 => '1.19',
8615             'ExtUtils::Embed'       => '1.31',
8616             'ExtUtils::Miniperl'    => '1',
8617             'ExtUtils::ParseXS'     => '3.21',
8618             'ExtUtils::ParseXS::Constants'=> '3.21',
8619             'ExtUtils::ParseXS::CountLines'=> '3.21',
8620             'ExtUtils::ParseXS::Eval'=> '3.19',
8621             'ExtUtils::ParseXS::Utilities'=> '3.21',
8622             'ExtUtils::Typemaps'    => '3.21',
8623             'ExtUtils::Typemaps::Cmd'=> '3.21',
8624             'ExtUtils::Typemaps::InputMap'=> '3.21',
8625             'ExtUtils::Typemaps::OutputMap'=> '3.21',
8626             'ExtUtils::Typemaps::Type'=> '3.21',
8627             'ExtUtils::XSSymSet'    => '1.3',
8628             'Fatal'                 => '2.20',
8629             'File::Basename'        => '2.85',
8630             'File::Spec::VMS'       => '3.43',
8631             'File::Spec::Win32'     => '3.42',
8632             'Getopt::Long'          => '2.41',
8633             'Getopt::Std'           => '1.09',
8634             'HTTP::Tiny'            => '0.034',
8635             'Hash::Util::FieldHash' => '1.12',
8636             'I18N::Langinfo'        => '0.11',
8637             'IO::Socket::INET'      => '1.34',
8638             'IO::Socket::UNIX'      => '1.25',
8639             'IPC::Cmd'              => '0.82',
8640             'MIME::Base64'          => '3.14',
8641             'Module::CoreList'      => '2.94',
8642             'Module::CoreList::TieHashDelta'=> '2.94',
8643             'Module::CoreList::Utils'=> '2.94',
8644             'POSIX'                 => '1.34',
8645             'Params::Check'         => '0.38',
8646             'Parse::CPAN::Meta'     => '1.4405',
8647             'Pod::Functions'        => '1.07',
8648             'Pod::Html'             => '1.2',
8649             'Safe'                  => '2.37',
8650             'Socket'                => '2.010',
8651             'Storable'              => '2.45',
8652             'Text::ParseWords'      => '3.29',
8653             'Tie::Array'            => '1.06',
8654             'Tie::Hash'             => '1.05',
8655             'Tie::Scalar'           => '1.03',
8656             'Time::Piece'           => '1.21',
8657             'Time::Seconds'         => '1.21',
8658             'XS::APItest'           => '0.54',
8659             'autodie'               => '2.20',
8660             'autodie::exception'    => '2.20',
8661             'autodie::exception::system'=> '2.20',
8662             'autodie::hints'        => '2.20',
8663             'autodie::skip'         => '2.20',
8664             'base'                  => '2.19',
8665             'deprecate'             => '0.03',
8666             'if'                    => '0.0603',
8667             'integer'               => '1.01',
8668             'strict'                => '1.08',
8669             'subs'                  => '1.02',
8670             'vmsish'                => '1.04',
8671         },
8672         removed => {
8673         }
8674     },
8675     5.019003 => {
8676         delta_from => 5.019002,
8677         changed => {
8678             'B'                     => '1.45',
8679             'CPAN::Meta'            => '2.132140',
8680             'CPAN::Meta::Converter' => '2.132140',
8681             'CPAN::Meta::Feature'   => '2.132140',
8682             'CPAN::Meta::History'   => '2.132140',
8683             'CPAN::Meta::Prereqs'   => '2.132140',
8684             'CPAN::Meta::Spec'      => '2.132140',
8685             'CPAN::Meta::Validator' => '2.132140',
8686             'Carp'                  => '1.31',
8687             'Carp::Heavy'           => '1.31',
8688             'Compress::Raw::Bzip2'  => '2.062',
8689             'Compress::Raw::Zlib'   => '2.062',
8690             'Compress::Zlib'        => '2.062',
8691             'Config'                => '5.019003',
8692             'Config::Perl::V'       => '0.19',
8693             'Cwd'                   => '3.44',
8694             'Data::Dumper'          => '2.148',
8695             'Devel::PPPort'         => '3.21',
8696             'Devel::Peek'           => '1.13',
8697             'DynaLoader'            => '1.19',
8698             'Encode'                => '2.52',
8699             'Encode::Alias'         => '2.17',
8700             'Encode::Encoding'      => '2.06',
8701             'Encode::GSM0338'       => '2.04',
8702             'Encode::MIME::Header'  => '2.14',
8703             'Encode::Unicode'       => '2.08',
8704             'English'               => '1.08',
8705             'Exporter'              => '5.69',
8706             'Exporter::Heavy'       => '5.69',
8707             'ExtUtils::Command::MM' => '6.72',
8708             'ExtUtils::Liblist'     => '6.72',
8709             'ExtUtils::Liblist::Kid'=> '6.72',
8710             'ExtUtils::MM'          => '6.72',
8711             'ExtUtils::MM_AIX'      => '6.72',
8712             'ExtUtils::MM_Any'      => '6.72',
8713             'ExtUtils::MM_BeOS'     => '6.72',
8714             'ExtUtils::MM_Cygwin'   => '6.72',
8715             'ExtUtils::MM_DOS'      => '6.72',
8716             'ExtUtils::MM_Darwin'   => '6.72',
8717             'ExtUtils::MM_MacOS'    => '6.72',
8718             'ExtUtils::MM_NW5'      => '6.72',
8719             'ExtUtils::MM_OS2'      => '6.72',
8720             'ExtUtils::MM_QNX'      => '6.72',
8721             'ExtUtils::MM_UWIN'     => '6.72',
8722             'ExtUtils::MM_Unix'     => '6.72',
8723             'ExtUtils::MM_VMS'      => '6.72',
8724             'ExtUtils::MM_VOS'      => '6.72',
8725             'ExtUtils::MM_Win32'    => '6.72',
8726             'ExtUtils::MM_Win95'    => '6.72',
8727             'ExtUtils::MY'          => '6.72',
8728             'ExtUtils::MakeMaker'   => '6.72',
8729             'ExtUtils::MakeMaker::Config'=> '6.72',
8730             'ExtUtils::Mkbootstrap' => '6.72',
8731             'ExtUtils::Mksymlists'  => '6.72',
8732             'ExtUtils::ParseXS::Eval'=> '3.21',
8733             'ExtUtils::testlib'     => '6.72',
8734             'File::Spec'            => '3.44',
8735             'File::Spec::Cygwin'    => '3.44',
8736             'File::Spec::Epoc'      => '3.44',
8737             'File::Spec::Functions' => '3.44',
8738             'File::Spec::Mac'       => '3.44',
8739             'File::Spec::OS2'       => '3.44',
8740             'File::Spec::Unix'      => '3.44',
8741             'File::Spec::VMS'       => '3.44',
8742             'File::Spec::Win32'     => '3.44',
8743             'Getopt::Std'           => '1.10',
8744             'IO::Compress::Adapter::Bzip2'=> '2.062',
8745             'IO::Compress::Adapter::Deflate'=> '2.062',
8746             'IO::Compress::Adapter::Identity'=> '2.062',
8747             'IO::Compress::Base'    => '2.062',
8748             'IO::Compress::Base::Common'=> '2.062',
8749             'IO::Compress::Bzip2'   => '2.062',
8750             'IO::Compress::Deflate' => '2.062',
8751             'IO::Compress::Gzip'    => '2.062',
8752             'IO::Compress::Gzip::Constants'=> '2.062',
8753             'IO::Compress::RawDeflate'=> '2.062',
8754             'IO::Compress::Zip'     => '2.062',
8755             'IO::Compress::Zip::Constants'=> '2.062',
8756             'IO::Compress::Zlib::Constants'=> '2.062',
8757             'IO::Compress::Zlib::Extra'=> '2.062',
8758             'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8759             'IO::Uncompress::Adapter::Identity'=> '2.062',
8760             'IO::Uncompress::Adapter::Inflate'=> '2.062',
8761             'IO::Uncompress::AnyInflate'=> '2.062',
8762             'IO::Uncompress::AnyUncompress'=> '2.062',
8763             'IO::Uncompress::Base'  => '2.062',
8764             'IO::Uncompress::Bunzip2'=> '2.062',
8765             'IO::Uncompress::Gunzip'=> '2.062',
8766             'IO::Uncompress::Inflate'=> '2.062',
8767             'IO::Uncompress::RawInflate'=> '2.062',
8768             'IO::Uncompress::Unzip' => '2.062',
8769             'IPC::Cmd'              => '0.84',
8770             'IPC::Msg'              => '2.04',
8771             'IPC::Open3'            => '1.15',
8772             'IPC::Semaphore'        => '2.04',
8773             'IPC::SharedMem'        => '2.04',
8774             'IPC::SysV'             => '2.04',
8775             'List::Util'            => '1.31',
8776             'List::Util::XS'        => '1.31',
8777             'Math::BigFloat::Trace' => '0.36',
8778             'Math::BigInt::Trace'   => '0.36',
8779             'Module::Build'         => '0.4007',
8780             'Module::Build::Base'   => '0.4007',
8781             'Module::Build::Compat' => '0.4007',
8782             'Module::Build::Config' => '0.4007',
8783             'Module::Build::Cookbook'=> '0.4007',
8784             'Module::Build::Dumper' => '0.4007',
8785             'Module::Build::ModuleInfo'=> '0.4007',
8786             'Module::Build::Notes'  => '0.4007',
8787             'Module::Build::PPMMaker'=> '0.4007',
8788             'Module::Build::Platform::Default'=> '0.4007',
8789             'Module::Build::Platform::MacOS'=> '0.4007',
8790             'Module::Build::Platform::Unix'=> '0.4007',
8791             'Module::Build::Platform::VMS'=> '0.4007',
8792             'Module::Build::Platform::VOS'=> '0.4007',
8793             'Module::Build::Platform::Windows'=> '0.4007',
8794             'Module::Build::Platform::aix'=> '0.4007',
8795             'Module::Build::Platform::cygwin'=> '0.4007',
8796             'Module::Build::Platform::darwin'=> '0.4007',
8797             'Module::Build::Platform::os2'=> '0.4007',
8798             'Module::Build::PodParser'=> '0.4007',
8799             'Module::CoreList'      => '2.97',
8800             'Module::CoreList::TieHashDelta'=> '2.97',
8801             'Module::CoreList::Utils'=> '2.97',
8802             'Net::Cmd'              => '2.30',
8803             'Net::Config'           => '1.12',
8804             'Net::Domain'           => '2.22',
8805             'Net::FTP'              => '2.78',
8806             'Net::FTP::dataconn'    => '0.12',
8807             'Net::NNTP'             => '2.25',
8808             'Net::Netrc'            => '2.14',
8809             'Net::POP3'             => '2.30',
8810             'Net::SMTP'             => '2.32',
8811             'PerlIO'                => '1.08',
8812             'Pod::Functions'        => '1.08',
8813             'Scalar::Util'          => '1.31',
8814             'Socket'                => '2.011',
8815             'Storable'              => '2.46',
8816             'Time::HiRes'           => '1.9726',
8817             'Time::Piece'           => '1.22',
8818             'Time::Seconds'         => '1.22',
8819             'XS::APItest'           => '0.55',
8820             'bigint'                => '0.36',
8821             'bignum'                => '0.36',
8822             'bigrat'                => '0.36',
8823             'constant'              => '1.28',
8824             'diagnostics'           => '1.32',
8825             'inc::latest'           => '0.4007',
8826             'mro'                   => '1.13',
8827             'parent'                => '0.226',
8828             'utf8'                  => '1.13',
8829             'version'               => '0.9903',
8830         },
8831         removed => {
8832            'Module::Build::Platform::Amiga'=> 1,
8833            'Module::Build::Platform::EBCDIC'=> 1,
8834            'Module::Build::Platform::MPEiX'=> 1,
8835            'Module::Build::Platform::RiscOS'=> 1,
8836         }
8837     },
8838     5.019004 => {
8839         delta_from => 5.019003,
8840         changed => {
8841             'B'                     => '1.46',
8842             'B::Concise'            => '0.99',
8843             'B::Deparse'            => '1.23',
8844             'CPAN'                  => '2.03',
8845             'CPAN::Meta'            => '2.132620',
8846             'CPAN::Meta::Converter' => '2.132620',
8847             'CPAN::Meta::Feature'   => '2.132620',
8848             'CPAN::Meta::History'   => '2.132620',
8849             'CPAN::Meta::Prereqs'   => '2.132620',
8850             'CPAN::Meta::Requirements'=> '2.123',
8851             'CPAN::Meta::Spec'      => '2.132620',
8852             'CPAN::Meta::Validator' => '2.132620',
8853             'Carp'                  => '1.32',
8854             'Carp::Heavy'           => '1.32',
8855             'Config'                => '5.019004',
8856             'Data::Dumper'          => '2.149',
8857             'Devel::Peek'           => '1.14',
8858             'DynaLoader'            => '1.20',
8859             'Encode'                => '2.55',
8860             'Encode::Alias'         => '2.18',
8861             'Encode::CN::HZ'        => '2.07',
8862             'Encode::Encoder'       => '2.03',
8863             'Encode::Encoding'      => '2.07',
8864             'Encode::GSM0338'       => '2.05',
8865             'Encode::Guess'         => '2.06',
8866             'Encode::JP::JIS7'      => '2.05',
8867             'Encode::KR::2022_KR'   => '2.03',
8868             'Encode::MIME::Header'  => '2.15',
8869             'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8870             'Encode::Unicode'       => '2.09',
8871             'Encode::Unicode::UTF7' => '2.08',
8872             'Errno'                 => '1.20',
8873             'Exporter'              => '5.70',
8874             'Exporter::Heavy'       => '5.70',
8875             'ExtUtils::CBuilder'    => '0.280212',
8876             'ExtUtils::CBuilder::Base'=> '0.280212',
8877             'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8878             'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8879             'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8880             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8881             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8882             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8883             'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8884             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8885             'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8886             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8887             'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8888             'ExtUtils::Command'     => '1.18',
8889             'ExtUtils::Command::MM' => '6.76',
8890             'ExtUtils::Liblist'     => '6.76',
8891             'ExtUtils::Liblist::Kid'=> '6.76',
8892             'ExtUtils::MM'          => '6.76',
8893             'ExtUtils::MM_AIX'      => '6.76',
8894             'ExtUtils::MM_Any'      => '6.76',
8895             'ExtUtils::MM_BeOS'     => '6.76',
8896             'ExtUtils::MM_Cygwin'   => '6.76',
8897             'ExtUtils::MM_DOS'      => '6.76',
8898             'ExtUtils::MM_Darwin'   => '6.76',
8899             'ExtUtils::MM_MacOS'    => '6.76',
8900             'ExtUtils::MM_NW5'      => '6.76',
8901             'ExtUtils::MM_OS2'      => '6.76',
8902             'ExtUtils::MM_QNX'      => '6.76',
8903             'ExtUtils::MM_UWIN'     => '6.76',
8904             'ExtUtils::MM_Unix'     => '6.76',
8905             'ExtUtils::MM_VMS'      => '6.76',
8906             'ExtUtils::MM_VOS'      => '6.76',
8907             'ExtUtils::MM_Win32'    => '6.76',
8908             'ExtUtils::MM_Win95'    => '6.76',
8909             'ExtUtils::MY'          => '6.76',
8910             'ExtUtils::MakeMaker'   => '6.76',
8911             'ExtUtils::MakeMaker::Config'=> '6.76',
8912             'ExtUtils::Mkbootstrap' => '6.76',
8913             'ExtUtils::Mksymlists'  => '6.76',
8914             'ExtUtils::ParseXS'     => '3.23',
8915             'ExtUtils::ParseXS::Constants'=> '3.23',
8916             'ExtUtils::ParseXS::CountLines'=> '3.23',
8917             'ExtUtils::ParseXS::Eval'=> '3.23',
8918             'ExtUtils::ParseXS::Utilities'=> '3.23',
8919             'ExtUtils::Typemaps'    => '3.23',
8920             'ExtUtils::Typemaps::Cmd'=> '3.23',
8921             'ExtUtils::Typemaps::InputMap'=> '3.23',
8922             'ExtUtils::Typemaps::OutputMap'=> '3.23',
8923             'ExtUtils::Typemaps::Type'=> '3.23',
8924             'ExtUtils::testlib'     => '6.76',
8925             'Fatal'                 => '2.21',
8926             'File::Copy'            => '2.28',
8927             'File::Find'            => '1.25',
8928             'File::Glob'            => '1.21',
8929             'FileCache'             => '1.09',
8930             'HTTP::Tiny'            => '0.035',
8931             'Hash::Util::FieldHash' => '1.13',
8932             'I18N::LangTags'        => '0.40',
8933             'IO'                    => '1.29',
8934             'IO::Socket'            => '1.37',
8935             'IPC::Open3'            => '1.16',
8936             'JSON::PP'              => '2.27202_01',
8937             'List::Util'            => '1.32',
8938             'List::Util::XS'        => '1.32',
8939             'Locale::Codes'         => '3.27',
8940             'Locale::Codes::Constants'=> '3.27',
8941             'Locale::Codes::Country'=> '3.27',
8942             'Locale::Codes::Country_Codes'=> '3.27',
8943             'Locale::Codes::Country_Retired'=> '3.27',
8944             'Locale::Codes::Currency'=> '3.27',
8945             'Locale::Codes::Currency_Codes'=> '3.27',
8946             'Locale::Codes::Currency_Retired'=> '3.27',
8947             'Locale::Codes::LangExt'=> '3.27',
8948             'Locale::Codes::LangExt_Codes'=> '3.27',
8949             'Locale::Codes::LangExt_Retired'=> '3.27',
8950             'Locale::Codes::LangFam'=> '3.27',
8951             'Locale::Codes::LangFam_Codes'=> '3.27',
8952             'Locale::Codes::LangFam_Retired'=> '3.27',
8953             'Locale::Codes::LangVar'=> '3.27',
8954             'Locale::Codes::LangVar_Codes'=> '3.27',
8955             'Locale::Codes::LangVar_Retired'=> '3.27',
8956             'Locale::Codes::Language'=> '3.27',
8957             'Locale::Codes::Language_Codes'=> '3.27',
8958             'Locale::Codes::Language_Retired'=> '3.27',
8959             'Locale::Codes::Script' => '3.27',
8960             'Locale::Codes::Script_Codes'=> '3.27',
8961             'Locale::Codes::Script_Retired'=> '3.27',
8962             'Locale::Country'       => '3.27',
8963             'Locale::Currency'      => '3.27',
8964             'Locale::Language'      => '3.27',
8965             'Locale::Script'        => '3.27',
8966             'Math::BigFloat'        => '1.9991',
8967             'Math::BigInt'          => '1.9993',
8968             'Math::BigInt::FastCalc'=> '0.31',
8969             'Module::CoreList'      => '2.99',
8970             'Module::CoreList::TieHashDelta'=> '2.99',
8971             'Module::CoreList::Utils'=> '2.99',
8972             'Module::Load::Conditional'=> '0.58',
8973             'Module::Metadata'      => '1.000018',
8974             'Opcode'                => '1.26',
8975             'POSIX'                 => '1.35',
8976             'Parse::CPAN::Meta'     => '1.4407',
8977             'Perl::OSType'          => '1.005',
8978             'Pod::Html'             => '1.21',
8979             'Scalar::Util'          => '1.32',
8980             'Socket'                => '2.012',
8981             'Storable'              => '2.47',
8982             'Term::ReadLine'        => '1.14',
8983             'Test::Builder'         => '0.98_06',
8984             'Test::Builder::Module' => '0.98_06',
8985             'Test::More'            => '0.98_06',
8986             'Test::Simple'          => '0.98_06',
8987             'Time::Piece'           => '1.23',
8988             'Time::Seconds'         => '1.23',
8989             'Unicode::Collate'      => '0.99',
8990             'Unicode::UCD'          => '0.54',
8991             'XS::APItest'           => '0.56',
8992             'XS::Typemap'           => '0.11',
8993             '_charnames'            => '1.39',
8994             'autodie'               => '2.21',
8995             'autodie::exception'    => '2.21',
8996             'autodie::exception::system'=> '2.21',
8997             'autodie::hints'        => '2.21',
8998             'autodie::skip'         => '2.21',
8999             'charnames'             => '1.39',
9000             'diagnostics'           => '1.33',
9001             'mro'                   => '1.14',
9002             'parent'                => '0.228',
9003             'perlfaq'               => '5.0150044',
9004             're'                    => '0.26',
9005             'version'               => '0.9904',
9006             'warnings'              => '1.19',
9007         },
9008         removed => {
9009         }
9010     },
9011     5.019005 => {
9012         delta_from => 5.019004,
9013         changed => {
9014             'App::Prove'            => '3.29',
9015             'App::Prove::State'     => '3.29',
9016             'App::Prove::State::Result'=> '3.29',
9017             'App::Prove::State::Result::Test'=> '3.29',
9018             'CPAN::Meta'            => '2.132830',
9019             'CPAN::Meta::Converter' => '2.132830',
9020             'CPAN::Meta::Feature'   => '2.132830',
9021             'CPAN::Meta::History'   => '2.132830',
9022             'CPAN::Meta::Prereqs'   => '2.132830',
9023             'CPAN::Meta::Requirements'=> '2.125',
9024             'CPAN::Meta::Spec'      => '2.132830',
9025             'CPAN::Meta::Validator' => '2.132830',
9026             'CPAN::Meta::YAML'      => '0.010',
9027             'Config'                => '5.019005',
9028             'Cwd'                   => '3.45',
9029             'ExtUtils::Command::MM' => '6.80',
9030             'ExtUtils::Install'     => '1.61',
9031             'ExtUtils::Liblist'     => '6.80',
9032             'ExtUtils::Liblist::Kid'=> '6.80',
9033             'ExtUtils::MM'          => '6.80',
9034             'ExtUtils::MM_AIX'      => '6.80',
9035             'ExtUtils::MM_Any'      => '6.80',
9036             'ExtUtils::MM_BeOS'     => '6.80',
9037             'ExtUtils::MM_Cygwin'   => '6.80',
9038             'ExtUtils::MM_DOS'      => '6.80',
9039             'ExtUtils::MM_Darwin'   => '6.80',
9040             'ExtUtils::MM_MacOS'    => '6.80',
9041             'ExtUtils::MM_NW5'      => '6.80',
9042             'ExtUtils::MM_OS2'      => '6.80',
9043             'ExtUtils::MM_QNX'      => '6.80',
9044             'ExtUtils::MM_UWIN'     => '6.80',
9045             'ExtUtils::MM_Unix'     => '6.80',
9046             'ExtUtils::MM_VMS'      => '6.80',
9047             'ExtUtils::MM_VOS'      => '6.80',
9048             'ExtUtils::MM_Win32'    => '6.80',
9049             'ExtUtils::MM_Win95'    => '6.80',
9050             'ExtUtils::MY'          => '6.80',
9051             'ExtUtils::MakeMaker'   => '6.80',
9052             'ExtUtils::MakeMaker::Config'=> '6.80',
9053             'ExtUtils::Mkbootstrap' => '6.80',
9054             'ExtUtils::Mksymlists'  => '6.80',
9055             'ExtUtils::testlib'     => '6.80',
9056             'Fatal'                 => '2.22',
9057             'File::Fetch'           => '0.44',
9058             'File::Glob'            => '1.22',
9059             'File::Spec'            => '3.45',
9060             'File::Spec::Cygwin'    => '3.45',
9061             'File::Spec::Epoc'      => '3.45',
9062             'File::Spec::Functions' => '3.45',
9063             'File::Spec::Mac'       => '3.45',
9064             'File::Spec::OS2'       => '3.45',
9065             'File::Spec::Unix'      => '3.45',
9066             'File::Spec::VMS'       => '3.45',
9067             'File::Spec::Win32'     => '3.45',
9068             'File::Temp'            => '0.2304',
9069             'Getopt::Long'          => '2.42',
9070             'HTTP::Tiny'            => '0.036',
9071             'IPC::Cmd'              => '0.84_01',
9072             'JSON::PP'              => '2.27203',
9073             'List::Util'            => '1.35',
9074             'List::Util::XS'        => '1.35',
9075             'Module::CoreList'      => '3.00',
9076             'Module::CoreList::TieHashDelta'=> '3.00',
9077             'Module::CoreList::Utils'=> '3.00',
9078             'Module::Metadata'      => '1.000019',
9079             'Parse::CPAN::Meta'     => '1.4409',
9080             'Perl::OSType'          => '1.006',
9081             'PerlIO::scalar'        => '0.17',
9082             'Pod::Man'              => '2.28',
9083             'Pod::Text'             => '3.18',
9084             'Pod::Text::Termcap'    => '2.08',
9085             'Scalar::Util'          => '1.35',
9086             'TAP::Base'             => '3.29',
9087             'TAP::Formatter::Base'  => '3.29',
9088             'TAP::Formatter::Color' => '3.29',
9089             'TAP::Formatter::Console'=> '3.29',
9090             'TAP::Formatter::Console::ParallelSession'=> '3.29',
9091             'TAP::Formatter::Console::Session'=> '3.29',
9092             'TAP::Formatter::File'  => '3.29',
9093             'TAP::Formatter::File::Session'=> '3.29',
9094             'TAP::Formatter::Session'=> '3.29',
9095             'TAP::Harness'          => '3.29',
9096             'TAP::Harness::Env'     => '3.29',
9097             'TAP::Object'           => '3.29',
9098             'TAP::Parser'           => '3.29',
9099             'TAP::Parser::Aggregator'=> '3.29',
9100             'TAP::Parser::Grammar'  => '3.29',
9101             'TAP::Parser::Iterator' => '3.29',
9102             'TAP::Parser::Iterator::Array'=> '3.29',
9103             'TAP::Parser::Iterator::Process'=> '3.29',
9104             'TAP::Parser::Iterator::Stream'=> '3.29',
9105             'TAP::Parser::IteratorFactory'=> '3.29',
9106             'TAP::Parser::Multiplexer'=> '3.29',
9107             'TAP::Parser::Result'   => '3.29',
9108             'TAP::Parser::Result::Bailout'=> '3.29',
9109             'TAP::Parser::Result::Comment'=> '3.29',
9110             'TAP::Parser::Result::Plan'=> '3.29',
9111             'TAP::Parser::Result::Pragma'=> '3.29',
9112             'TAP::Parser::Result::Test'=> '3.29',
9113             'TAP::Parser::Result::Unknown'=> '3.29',
9114             'TAP::Parser::Result::Version'=> '3.29',
9115             'TAP::Parser::Result::YAML'=> '3.29',
9116             'TAP::Parser::ResultFactory'=> '3.29',
9117             'TAP::Parser::Scheduler'=> '3.29',
9118             'TAP::Parser::Scheduler::Job'=> '3.29',
9119             'TAP::Parser::Scheduler::Spinner'=> '3.29',
9120             'TAP::Parser::Source'   => '3.29',
9121             'TAP::Parser::SourceHandler'=> '3.29',
9122             'TAP::Parser::SourceHandler::Executable'=> '3.29',
9123             'TAP::Parser::SourceHandler::File'=> '3.29',
9124             'TAP::Parser::SourceHandler::Handle'=> '3.29',
9125             'TAP::Parser::SourceHandler::Perl'=> '3.29',
9126             'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
9127             'TAP::Parser::YAMLish::Reader'=> '3.29',
9128             'TAP::Parser::YAMLish::Writer'=> '3.29',
9129             'Test::Builder'         => '0.99',
9130             'Test::Builder::Module' => '0.99',
9131             'Test::Builder::Tester' => '1.23_002',
9132             'Test::Builder::Tester::Color'=> '1.23_002',
9133             'Test::Harness'         => '3.29',
9134             'Test::More'            => '0.99',
9135             'Test::Simple'          => '0.99',
9136             'Unicode'               => '6.3.0',
9137             'Unicode::Normalize'    => '1.17',
9138             'Unicode::UCD'          => '0.55',
9139             'attributes'            => '0.22',
9140             'autodie'               => '2.22',
9141             'autodie::exception'    => '2.22',
9142             'autodie::exception::system'=> '2.22',
9143             'autodie::hints'        => '2.22',
9144             'autodie::skip'         => '2.22',
9145             'feature'               => '1.34',
9146             'threads'               => '1.89',
9147             'warnings'              => '1.20',
9148         },
9149         removed => {
9150             'TAP::Parser::Utils'    => 1,
9151         }
9152     },
9153     5.019006 => {
9154         delta_from => 5.019005,
9155         changed => {
9156             'App::Prove'            => '3.30',
9157             'App::Prove::State'     => '3.30',
9158             'App::Prove::State::Result'=> '3.30',
9159             'App::Prove::State::Result::Test'=> '3.30',
9160             'Archive::Tar'          => '1.96',
9161             'Archive::Tar::Constant'=> '1.96',
9162             'Archive::Tar::File'    => '1.96',
9163             'AutoLoader'            => '5.74',
9164             'B'                     => '1.47',
9165             'B::Concise'            => '0.991',
9166             'B::Debug'              => '1.19',
9167             'B::Deparse'            => '1.24',
9168             'Benchmark'             => '1.18',
9169             'Compress::Raw::Bzip2'  => '2.063',
9170             'Compress::Raw::Zlib'   => '2.063',
9171             'Compress::Zlib'        => '2.063',
9172             'Config'                => '5.019006',
9173             'DB_File'               => '1.831',
9174             'Devel::Peek'           => '1.15',
9175             'DynaLoader'            => '1.21',
9176             'Errno'                 => '1.20_01',
9177             'ExtUtils::Command::MM' => '6.82',
9178             'ExtUtils::Liblist'     => '6.82',
9179             'ExtUtils::Liblist::Kid'=> '6.82',
9180             'ExtUtils::MM'          => '6.82',
9181             'ExtUtils::MM_AIX'      => '6.82',
9182             'ExtUtils::MM_Any'      => '6.82',
9183             'ExtUtils::MM_BeOS'     => '6.82',
9184             'ExtUtils::MM_Cygwin'   => '6.82',
9185             'ExtUtils::MM_DOS'      => '6.82',
9186             'ExtUtils::MM_Darwin'   => '6.82',
9187             'ExtUtils::MM_MacOS'    => '6.82',
9188             'ExtUtils::MM_NW5'      => '6.82',
9189             'ExtUtils::MM_OS2'      => '6.82',
9190             'ExtUtils::MM_QNX'      => '6.82',
9191             'ExtUtils::MM_UWIN'     => '6.82',
9192             'ExtUtils::MM_Unix'     => '6.82',
9193             'ExtUtils::MM_VMS'      => '6.82',
9194             'ExtUtils::MM_VOS'      => '6.82',
9195             'ExtUtils::MM_Win32'    => '6.82',
9196             'ExtUtils::MM_Win95'    => '6.82',
9197             'ExtUtils::MY'          => '6.82',
9198             'ExtUtils::MakeMaker'   => '6.82',
9199             'ExtUtils::MakeMaker::Config'=> '6.82',
9200             'ExtUtils::Mkbootstrap' => '6.82',
9201             'ExtUtils::Mksymlists'  => '6.82',
9202             'ExtUtils::testlib'     => '6.82',
9203             'File::DosGlob'         => '1.12',
9204             'File::Find'            => '1.26',
9205             'File::Glob'            => '1.23',
9206             'HTTP::Tiny'            => '0.038',
9207             'IO'                    => '1.30',
9208             'IO::Compress::Adapter::Bzip2'=> '2.063',
9209             'IO::Compress::Adapter::Deflate'=> '2.063',
9210             'IO::Compress::Adapter::Identity'=> '2.063',
9211             'IO::Compress::Base'    => '2.063',
9212             'IO::Compress::Base::Common'=> '2.063',
9213             'IO::Compress::Bzip2'   => '2.063',
9214             'IO::Compress::Deflate' => '2.063',
9215             'IO::Compress::Gzip'    => '2.063',
9216             'IO::Compress::Gzip::Constants'=> '2.063',
9217             'IO::Compress::RawDeflate'=> '2.063',
9218             'IO::Compress::Zip'     => '2.063',
9219             'IO::Compress::Zip::Constants'=> '2.063',
9220             'IO::Compress::Zlib::Constants'=> '2.063',
9221             'IO::Compress::Zlib::Extra'=> '2.063',
9222             'IO::Select'            => '1.22',
9223             'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9224             'IO::Uncompress::Adapter::Identity'=> '2.063',
9225             'IO::Uncompress::Adapter::Inflate'=> '2.063',
9226             'IO::Uncompress::AnyInflate'=> '2.063',
9227             'IO::Uncompress::AnyUncompress'=> '2.063',
9228             'IO::Uncompress::Base'  => '2.063',
9229             'IO::Uncompress::Bunzip2'=> '2.063',
9230             'IO::Uncompress::Gunzip'=> '2.063',
9231             'IO::Uncompress::Inflate'=> '2.063',
9232             'IO::Uncompress::RawInflate'=> '2.063',
9233             'IO::Uncompress::Unzip' => '2.063',
9234             'IPC::Cmd'              => '0.90',
9235             'Locale::Maketext'      => '1.25',
9236             'Module::Build'         => '0.4202',
9237             'Module::Build::Base'   => '0.4202',
9238             'Module::Build::Compat' => '0.4202',
9239             'Module::Build::Config' => '0.4202',
9240             'Module::Build::Cookbook'=> '0.4202',
9241             'Module::Build::Dumper' => '0.4202',
9242             'Module::Build::ModuleInfo'=> '0.4202',
9243             'Module::Build::Notes'  => '0.4202',
9244             'Module::Build::PPMMaker'=> '0.4202',
9245             'Module::Build::Platform::Default'=> '0.4202',
9246             'Module::Build::Platform::MacOS'=> '0.4202',
9247             'Module::Build::Platform::Unix'=> '0.4202',
9248             'Module::Build::Platform::VMS'=> '0.4202',
9249             'Module::Build::Platform::VOS'=> '0.4202',
9250             'Module::Build::Platform::Windows'=> '0.4202',
9251             'Module::Build::Platform::aix'=> '0.4202',
9252             'Module::Build::Platform::cygwin'=> '0.4202',
9253             'Module::Build::Platform::darwin'=> '0.4202',
9254             'Module::Build::Platform::os2'=> '0.4202',
9255             'Module::Build::PodParser'=> '0.4202',
9256             'Module::CoreList'      => '3.01',
9257             'Module::CoreList::TieHashDelta'=> '3.01',
9258             'Module::CoreList::Utils'=> '3.01',
9259             'Opcode'                => '1.27',
9260             'POSIX'                 => '1.36',
9261             'Package::Constants'    => '0.04',
9262             'PerlIO::scalar'        => '0.18',
9263             'PerlIO::via'           => '0.13',
9264             'SDBM_File'             => '1.10',
9265             'Socket'                => '2.013',
9266             'TAP::Base'             => '3.30',
9267             'TAP::Formatter::Base'  => '3.30',
9268             'TAP::Formatter::Color' => '3.30',
9269             'TAP::Formatter::Console'=> '3.30',
9270             'TAP::Formatter::Console::ParallelSession'=> '3.30',
9271             'TAP::Formatter::Console::Session'=> '3.30',
9272             'TAP::Formatter::File'  => '3.30',
9273             'TAP::Formatter::File::Session'=> '3.30',
9274             'TAP::Formatter::Session'=> '3.30',
9275             'TAP::Harness'          => '3.30',
9276             'TAP::Harness::Env'     => '3.30',
9277             'TAP::Object'           => '3.30',
9278             'TAP::Parser'           => '3.30',
9279             'TAP::Parser::Aggregator'=> '3.30',
9280             'TAP::Parser::Grammar'  => '3.30',
9281             'TAP::Parser::Iterator' => '3.30',
9282             'TAP::Parser::Iterator::Array'=> '3.30',
9283             'TAP::Parser::Iterator::Process'=> '3.30',
9284             'TAP::Parser::Iterator::Stream'=> '3.30',
9285             'TAP::Parser::IteratorFactory'=> '3.30',
9286             'TAP::Parser::Multiplexer'=> '3.30',
9287             'TAP::Parser::Result'   => '3.30',
9288             'TAP::Parser::Result::Bailout'=> '3.30',
9289             'TAP::Parser::Result::Comment'=> '3.30',
9290             'TAP::Parser::Result::Plan'=> '3.30',
9291             'TAP::Parser::Result::Pragma'=> '3.30',
9292             'TAP::Parser::Result::Test'=> '3.30',
9293             'TAP::Parser::Result::Unknown'=> '3.30',
9294             'TAP::Parser::Result::Version'=> '3.30',
9295             'TAP::Parser::Result::YAML'=> '3.30',
9296             'TAP::Parser::ResultFactory'=> '3.30',
9297             'TAP::Parser::Scheduler'=> '3.30',
9298             'TAP::Parser::Scheduler::Job'=> '3.30',
9299             'TAP::Parser::Scheduler::Spinner'=> '3.30',
9300             'TAP::Parser::Source'   => '3.30',
9301             'TAP::Parser::SourceHandler'=> '3.30',
9302             'TAP::Parser::SourceHandler::Executable'=> '3.30',
9303             'TAP::Parser::SourceHandler::File'=> '3.30',
9304             'TAP::Parser::SourceHandler::Handle'=> '3.30',
9305             'TAP::Parser::SourceHandler::Perl'=> '3.30',
9306             'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9307             'TAP::Parser::YAMLish::Reader'=> '3.30',
9308             'TAP::Parser::YAMLish::Writer'=> '3.30',
9309             'Term::Cap'             => '1.15',
9310             'Test::Builder'         => '1.001002',
9311             'Test::Builder::Module' => '1.001002',
9312             'Test::Harness'         => '3.30',
9313             'Test::More'            => '1.001002',
9314             'Test::Simple'          => '1.001002',
9315             'Tie::StdHandle'        => '4.4',
9316             'Unicode::Collate'      => '1.02',
9317             'Unicode::Collate::CJK::Korean'=> '1.02',
9318             'Unicode::Collate::Locale'=> '1.02',
9319             'XS::APItest'           => '0.57',
9320             'XS::Typemap'           => '0.12',
9321             'arybase'               => '0.07',
9322             'bignum'                => '0.37',
9323             'constant'              => '1.29',
9324             'fields'                => '2.17',
9325             'inc::latest'           => '0.4202',
9326             'threads'               => '1.90',
9327             'threads::shared'       => '1.45',
9328         },
9329         removed => {
9330         }
9331     },
9332     5.019007 => {
9333         delta_from => 5.019006,
9334         changed => {
9335             'CGI'                   => '3.64',
9336             'CGI::Apache'           => '1.02',
9337             'CGI::Carp'             => '3.64',
9338             'CGI::Cookie'           => '1.31',
9339             'CGI::Fast'             => '1.10',
9340             'CGI::Pretty'           => '3.64',
9341             'CGI::Push'             => '1.06',
9342             'CGI::Switch'           => '1.02',
9343             'CGI::Util'             => '3.64',
9344             'CPAN::Meta'            => '2.133380',
9345             'CPAN::Meta::Converter' => '2.133380',
9346             'CPAN::Meta::Feature'   => '2.133380',
9347             'CPAN::Meta::History'   => '2.133380',
9348             'CPAN::Meta::Prereqs'   => '2.133380',
9349             'CPAN::Meta::Spec'      => '2.133380',
9350             'CPAN::Meta::Validator' => '2.133380',
9351             'Config'                => '5.019007',
9352             'Data::Dumper'          => '2.150',
9353             'DynaLoader'            => '1.22',
9354             'ExtUtils::Command::MM' => '6.84',
9355             'ExtUtils::Liblist'     => '6.84',
9356             'ExtUtils::Liblist::Kid'=> '6.84',
9357             'ExtUtils::MM'          => '6.84',
9358             'ExtUtils::MM_AIX'      => '6.84',
9359             'ExtUtils::MM_Any'      => '6.84',
9360             'ExtUtils::MM_BeOS'     => '6.84',
9361             'ExtUtils::MM_Cygwin'   => '6.84',
9362             'ExtUtils::MM_DOS'      => '6.84',
9363             'ExtUtils::MM_Darwin'   => '6.84',
9364             'ExtUtils::MM_MacOS'    => '6.84',
9365             'ExtUtils::MM_NW5'      => '6.84',
9366             'ExtUtils::MM_OS2'      => '6.84',
9367             'ExtUtils::MM_QNX'      => '6.84',
9368             'ExtUtils::MM_UWIN'     => '6.84',
9369             'ExtUtils::MM_Unix'     => '6.84',
9370             'ExtUtils::MM_VMS'      => '6.84',
9371             'ExtUtils::MM_VOS'      => '6.84',
9372             'ExtUtils::MM_Win32'    => '6.84',
9373             'ExtUtils::MM_Win95'    => '6.84',
9374             'ExtUtils::MY'          => '6.84',
9375             'ExtUtils::MakeMaker'   => '6.84',
9376             'ExtUtils::MakeMaker::Config'=> '6.84',
9377             'ExtUtils::Mkbootstrap' => '6.84',
9378             'ExtUtils::Mksymlists'  => '6.84',
9379             'ExtUtils::testlib'     => '6.84',
9380             'File::Fetch'           => '0.46',
9381             'HTTP::Tiny'            => '0.039',
9382             'Locale::Codes'         => '3.28',
9383             'Locale::Codes::Constants'=> '3.28',
9384             'Locale::Codes::Country'=> '3.28',
9385             'Locale::Codes::Country_Codes'=> '3.28',
9386             'Locale::Codes::Country_Retired'=> '3.28',
9387             'Locale::Codes::Currency'=> '3.28',
9388             'Locale::Codes::Currency_Codes'=> '3.28',
9389             'Locale::Codes::Currency_Retired'=> '3.28',
9390             'Locale::Codes::LangExt'=> '3.28',
9391             'Locale::Codes::LangExt_Codes'=> '3.28',
9392             'Locale::Codes::LangExt_Retired'=> '3.28',
9393             'Locale::Codes::LangFam'=> '3.28',
9394             'Locale::Codes::LangFam_Codes'=> '3.28',
9395             'Locale::Codes::LangFam_Retired'=> '3.28',
9396             'Locale::Codes::LangVar'=> '3.28',
9397             'Locale::Codes::LangVar_Codes'=> '3.28',
9398             'Locale::Codes::LangVar_Retired'=> '3.28',
9399             'Locale::Codes::Language'=> '3.28',
9400             'Locale::Codes::Language_Codes'=> '3.28',
9401             'Locale::Codes::Language_Retired'=> '3.28',
9402             'Locale::Codes::Script' => '3.28',
9403             'Locale::Codes::Script_Codes'=> '3.28',
9404             'Locale::Codes::Script_Retired'=> '3.28',
9405             'Locale::Country'       => '3.28',
9406             'Locale::Currency'      => '3.28',
9407             'Locale::Language'      => '3.28',
9408             'Locale::Script'        => '3.28',
9409             'Module::Build'         => '0.4203',
9410             'Module::Build::Base'   => '0.4203',
9411             'Module::Build::Compat' => '0.4203',
9412             'Module::Build::Config' => '0.4203',
9413             'Module::Build::Cookbook'=> '0.4203',
9414             'Module::Build::Dumper' => '0.4203',
9415             'Module::Build::ModuleInfo'=> '0.4203',
9416             'Module::Build::Notes'  => '0.4203',
9417             'Module::Build::PPMMaker'=> '0.4203',
9418             'Module::Build::Platform::Default'=> '0.4203',
9419             'Module::Build::Platform::MacOS'=> '0.4203',
9420             'Module::Build::Platform::Unix'=> '0.4203',
9421             'Module::Build::Platform::VMS'=> '0.4203',
9422             'Module::Build::Platform::VOS'=> '0.4203',
9423             'Module::Build::Platform::Windows'=> '0.4203',
9424             'Module::Build::Platform::aix'=> '0.4203',
9425             'Module::Build::Platform::cygwin'=> '0.4203',
9426             'Module::Build::Platform::darwin'=> '0.4203',
9427             'Module::Build::Platform::os2'=> '0.4203',
9428             'Module::Build::PodParser'=> '0.4203',
9429             'Module::CoreList'      => '3.02',
9430             'Module::CoreList::TieHashDelta'=> '3.02',
9431             'Module::CoreList::Utils'=> '3.02',
9432             'POSIX'                 => '1.37',
9433             'PerlIO::encoding'      => '0.17',
9434             'PerlIO::via'           => '0.14',
9435             'SDBM_File'             => '1.11',
9436             'Storable'              => '2.48',
9437             'Time::Piece'           => '1.24',
9438             'Time::Seconds'         => '1.24',
9439             'Unicode::Collate'      => '1.04',
9440             'Win32'                 => '0.48',
9441             'XS::APItest'           => '0.58',
9442             'base'                  => '2.20',
9443             'constant'              => '1.30',
9444             'inc::latest'           => '0.4203',
9445             'threads'               => '1.91',
9446         },
9447         removed => {
9448         }
9449     },
9450     5.019008 => {
9451         delta_from => 5.019007,
9452         changed => {
9453             'Config'                => '5.019008',
9454             'DynaLoader'            => '1.24',
9455             'Encode'                => '2.57',
9456             'Errno'                 => '1.20_02',
9457             'ExtUtils::CBuilder'    => '0.280213',
9458             'ExtUtils::CBuilder::Base'=> '0.280213',
9459             'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9460             'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9461             'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9462             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9463             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9464             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9465             'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9466             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9467             'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9468             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9469             'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9470             'ExtUtils::Command::MM' => '6.86',
9471             'ExtUtils::Liblist'     => '6.86',
9472             'ExtUtils::Liblist::Kid'=> '6.86',
9473             'ExtUtils::MM'          => '6.86',
9474             'ExtUtils::MM_AIX'      => '6.86',
9475             'ExtUtils::MM_Any'      => '6.86',
9476             'ExtUtils::MM_BeOS'     => '6.86',
9477             'ExtUtils::MM_Cygwin'   => '6.86',
9478             'ExtUtils::MM_DOS'      => '6.86',
9479             'ExtUtils::MM_Darwin'   => '6.86',
9480             'ExtUtils::MM_MacOS'    => '6.86',
9481             'ExtUtils::MM_NW5'      => '6.86',
9482             'ExtUtils::MM_OS2'      => '6.86',
9483             'ExtUtils::MM_QNX'      => '6.86',
9484             'ExtUtils::MM_UWIN'     => '6.86',
9485             'ExtUtils::MM_Unix'     => '6.86',
9486             'ExtUtils::MM_VMS'      => '6.86',
9487             'ExtUtils::MM_VOS'      => '6.86',
9488             'ExtUtils::MM_Win32'    => '6.86',
9489             'ExtUtils::MM_Win95'    => '6.86',
9490             'ExtUtils::MY'          => '6.86',
9491             'ExtUtils::MakeMaker'   => '6.86',
9492             'ExtUtils::MakeMaker::Config'=> '6.86',
9493             'ExtUtils::Mkbootstrap' => '6.86',
9494             'ExtUtils::Mksymlists'  => '6.86',
9495             'ExtUtils::testlib'     => '6.86',
9496             'File::Copy'            => '2.29',
9497             'Hash::Util::FieldHash' => '1.14',
9498             'IO::Socket::IP'        => '0.26',
9499             'IO::Socket::UNIX'      => '1.26',
9500             'List::Util'            => '1.36',
9501             'List::Util::XS'        => '1.36',
9502             'Module::Build'         => '0.4204',
9503             'Module::Build::Base'   => '0.4204',
9504             'Module::Build::Compat' => '0.4204',
9505             'Module::Build::Config' => '0.4204',
9506             'Module::Build::Cookbook'=> '0.4204',
9507             'Module::Build::Dumper' => '0.4204',
9508             'Module::Build::ModuleInfo'=> '0.4204',
9509             'Module::Build::Notes'  => '0.4204',
9510             'Module::Build::PPMMaker'=> '0.4204',
9511             'Module::Build::Platform::Default'=> '0.4204',
9512             'Module::Build::Platform::MacOS'=> '0.4204',
9513             'Module::Build::Platform::Unix'=> '0.4204',
9514             'Module::Build::Platform::VMS'=> '0.4204',
9515             'Module::Build::Platform::VOS'=> '0.4204',
9516             'Module::Build::Platform::Windows'=> '0.4204',
9517             'Module::Build::Platform::aix'=> '0.4204',
9518             'Module::Build::Platform::cygwin'=> '0.4204',
9519             'Module::Build::Platform::darwin'=> '0.4204',
9520             'Module::Build::Platform::os2'=> '0.4204',
9521             'Module::Build::PodParser'=> '0.4204',
9522             'Module::CoreList'      => '3.04',
9523             'Module::CoreList::TieHashDelta'=> '3.04',
9524             'Module::CoreList::Utils'=> '3.04',
9525             'Module::Load'          => '0.28',
9526             'Module::Load::Conditional'=> '0.60',
9527             'Net::Config'           => '1.13',
9528             'Net::FTP::A'           => '1.19',
9529             'POSIX'                 => '1.38_01',
9530             'Perl::OSType'          => '1.007',
9531             'PerlIO::encoding'      => '0.18',
9532             'Pod::Perldoc'          => '3.21',
9533             'Pod::Perldoc::BaseTo'  => '3.21',
9534             'Pod::Perldoc::GetOptsOO'=> '3.21',
9535             'Pod::Perldoc::ToANSI'  => '3.21',
9536             'Pod::Perldoc::ToChecker'=> '3.21',
9537             'Pod::Perldoc::ToMan'   => '3.21',
9538             'Pod::Perldoc::ToNroff' => '3.21',
9539             'Pod::Perldoc::ToPod'   => '3.21',
9540             'Pod::Perldoc::ToRtf'   => '3.21',
9541             'Pod::Perldoc::ToTerm'  => '3.21',
9542             'Pod::Perldoc::ToText'  => '3.21',
9543             'Pod::Perldoc::ToTk'    => '3.21',
9544             'Pod::Perldoc::ToXml'   => '3.21',
9545             'Scalar::Util'          => '1.36',
9546             'Time::Piece'           => '1.27',
9547             'Time::Seconds'         => '1.27',
9548             'Unicode::UCD'          => '0.57',
9549             'XS::APItest'           => '0.59',
9550             'XSLoader'              => '0.17',
9551             'base'                  => '2.21',
9552             'constant'              => '1.31',
9553             'inc::latest'           => '0.4204',
9554             'threads::shared'       => '1.46',
9555             'version'               => '0.9907',
9556             'version::regex'        => '0.9907',
9557             'version::vpp'          => '0.9907',
9558             'warnings'              => '1.21',
9559         },
9560         removed => {
9561         }
9562     },
9563     5.019009 => {
9564         delta_from => 5.019008,
9565         changed => {
9566             'B'                     => '1.48',
9567             'B::Concise'            => '0.992',
9568             'B::Deparse'            => '1.25',
9569             'CGI'                   => '3.65',
9570             'CPAN::Meta::YAML'      => '0.011',
9571             'Compress::Raw::Bzip2'  => '2.064',
9572             'Compress::Raw::Zlib'   => '2.065',
9573             'Compress::Zlib'        => '2.064',
9574             'Config'                => '5.019009',
9575             'Config::Perl::V'       => '0.20',
9576             'Cwd'                   => '3.47',
9577             'Devel::Peek'           => '1.16',
9578             'Digest::SHA'           => '5.87',
9579             'DynaLoader'            => '1.25',
9580             'English'               => '1.09',
9581             'ExtUtils::CBuilder'    => '0.280216',
9582             'ExtUtils::CBuilder::Base'=> '0.280216',
9583             'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9584             'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9585             'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9586             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9587             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9588             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9589             'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9590             'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9591             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9592             'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9593             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9594             'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9595             'ExtUtils::Command::MM' => '6.88',
9596             'ExtUtils::Embed'       => '1.32',
9597             'ExtUtils::Install'     => '1.62',
9598             'ExtUtils::Installed'   => '1.999004',
9599             'ExtUtils::Liblist'     => '6.88',
9600             'ExtUtils::Liblist::Kid'=> '6.88',
9601             'ExtUtils::MM'          => '6.88',
9602             'ExtUtils::MM_AIX'      => '6.88',
9603             'ExtUtils::MM_Any'      => '6.88',
9604             'ExtUtils::MM_BeOS'     => '6.88',
9605             'ExtUtils::MM_Cygwin'   => '6.88',
9606             'ExtUtils::MM_DOS'      => '6.88',
9607             'ExtUtils::MM_Darwin'   => '6.88',
9608             'ExtUtils::MM_MacOS'    => '6.88',
9609             'ExtUtils::MM_NW5'      => '6.88',
9610             'ExtUtils::MM_OS2'      => '6.88',
9611             'ExtUtils::MM_QNX'      => '6.88',
9612             'ExtUtils::MM_UWIN'     => '6.88',
9613             'ExtUtils::MM_Unix'     => '6.88',
9614             'ExtUtils::MM_VMS'      => '6.88',
9615             'ExtUtils::MM_VOS'      => '6.88',
9616             'ExtUtils::MM_Win32'    => '6.88',
9617             'ExtUtils::MM_Win95'    => '6.88',
9618             'ExtUtils::MY'          => '6.88',
9619             'ExtUtils::MakeMaker'   => '6.88',
9620             'ExtUtils::MakeMaker::Config'=> '6.88',
9621             'ExtUtils::Mkbootstrap' => '6.88',
9622             'ExtUtils::Mksymlists'  => '6.88',
9623             'ExtUtils::Packlist'    => '1.47',
9624             'ExtUtils::testlib'     => '6.88',
9625             'Fatal'                 => '2.23',
9626             'File::Fetch'           => '0.48',
9627             'File::Spec'            => '3.47',
9628             'File::Spec::Cygwin'    => '3.47',
9629             'File::Spec::Epoc'      => '3.47',
9630             'File::Spec::Functions' => '3.47',
9631             'File::Spec::Mac'       => '3.47',
9632             'File::Spec::OS2'       => '3.47',
9633             'File::Spec::Unix'      => '3.47',
9634             'File::Spec::VMS'       => '3.47',
9635             'File::Spec::Win32'     => '3.47',
9636             'HTTP::Tiny'            => '0.042',
9637             'IO::Compress::Adapter::Bzip2'=> '2.064',
9638             'IO::Compress::Adapter::Deflate'=> '2.064',
9639             'IO::Compress::Adapter::Identity'=> '2.064',
9640             'IO::Compress::Base'    => '2.064',
9641             'IO::Compress::Base::Common'=> '2.064',
9642             'IO::Compress::Bzip2'   => '2.064',
9643             'IO::Compress::Deflate' => '2.064',
9644             'IO::Compress::Gzip'    => '2.064',
9645             'IO::Compress::Gzip::Constants'=> '2.064',
9646             'IO::Compress::RawDeflate'=> '2.064',
9647             'IO::Compress::Zip'     => '2.064',
9648             'IO::Compress::Zip::Constants'=> '2.064',
9649             'IO::Compress::Zlib::Constants'=> '2.064',
9650             'IO::Compress::Zlib::Extra'=> '2.064',
9651             'IO::Socket::INET'      => '1.35',
9652             'IO::Socket::IP'        => '0.28',
9653             'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9654             'IO::Uncompress::Adapter::Identity'=> '2.064',
9655             'IO::Uncompress::Adapter::Inflate'=> '2.064',
9656             'IO::Uncompress::AnyInflate'=> '2.064',
9657             'IO::Uncompress::AnyUncompress'=> '2.064',
9658             'IO::Uncompress::Base'  => '2.064',
9659             'IO::Uncompress::Bunzip2'=> '2.064',
9660             'IO::Uncompress::Gunzip'=> '2.064',
9661             'IO::Uncompress::Inflate'=> '2.064',
9662             'IO::Uncompress::RawInflate'=> '2.064',
9663             'IO::Uncompress::Unzip' => '2.064',
9664             'IPC::Cmd'              => '0.92',
9665             'List::Util'            => '1.38',
9666             'List::Util::XS'        => '1.38',
9667             'Locale::Codes'         => '3.29',
9668             'Locale::Codes::Constants'=> '3.29',
9669             'Locale::Codes::Country'=> '3.29',
9670             'Locale::Codes::Country_Codes'=> '3.29',
9671             'Locale::Codes::Country_Retired'=> '3.29',
9672             'Locale::Codes::Currency'=> '3.29',
9673             'Locale::Codes::Currency_Codes'=> '3.29',
9674             'Locale::Codes::Currency_Retired'=> '3.29',
9675             'Locale::Codes::LangExt'=> '3.29',
9676             'Locale::Codes::LangExt_Codes'=> '3.29',
9677             'Locale::Codes::LangExt_Retired'=> '3.29',
9678             'Locale::Codes::LangFam'=> '3.29',
9679             'Locale::Codes::LangFam_Codes'=> '3.29',
9680             'Locale::Codes::LangFam_Retired'=> '3.29',
9681             'Locale::Codes::LangVar'=> '3.29',
9682             'Locale::Codes::LangVar_Codes'=> '3.29',
9683             'Locale::Codes::LangVar_Retired'=> '3.29',
9684             'Locale::Codes::Language'=> '3.29',
9685             'Locale::Codes::Language_Codes'=> '3.29',
9686             'Locale::Codes::Language_Retired'=> '3.29',
9687             'Locale::Codes::Script' => '3.29',
9688             'Locale::Codes::Script_Codes'=> '3.29',
9689             'Locale::Codes::Script_Retired'=> '3.29',
9690             'Locale::Country'       => '3.29',
9691             'Locale::Currency'      => '3.29',
9692             'Locale::Language'      => '3.29',
9693             'Locale::Script'        => '3.29',
9694             'Module::Build'         => '0.4205',
9695             'Module::Build::Base'   => '0.4205',
9696             'Module::Build::Compat' => '0.4205',
9697             'Module::Build::Config' => '0.4205',
9698             'Module::Build::Cookbook'=> '0.4205',
9699             'Module::Build::Dumper' => '0.4205',
9700             'Module::Build::ModuleInfo'=> '0.4205',
9701             'Module::Build::Notes'  => '0.4205',
9702             'Module::Build::PPMMaker'=> '0.4205',
9703             'Module::Build::Platform::Default'=> '0.4205',
9704             'Module::Build::Platform::MacOS'=> '0.4205',
9705             'Module::Build::Platform::Unix'=> '0.4205',
9706             'Module::Build::Platform::VMS'=> '0.4205',
9707             'Module::Build::Platform::VOS'=> '0.4205',
9708             'Module::Build::Platform::Windows'=> '0.4205',
9709             'Module::Build::Platform::aix'=> '0.4205',
9710             'Module::Build::Platform::cygwin'=> '0.4205',
9711             'Module::Build::Platform::darwin'=> '0.4205',
9712             'Module::Build::Platform::os2'=> '0.4205',
9713             'Module::Build::PodParser'=> '0.4205',
9714             'Module::CoreList'      => '3.06',
9715             'Module::CoreList::TieHashDelta'=> '3.06',
9716             'Module::CoreList::Utils'=> '3.06',
9717             'Module::Load'          => '0.30',
9718             'Module::Load::Conditional'=> '0.62',
9719             'Net::Domain'           => '2.23',
9720             'Net::FTP'              => '2.79',
9721             'Net::NNTP'             => '2.26',
9722             'Net::POP3'             => '2.31',
9723             'Net::Ping'             => '2.43',
9724             'Net::SMTP'             => '2.33',
9725             'POSIX'                 => '1.38_02',
9726             'Parse::CPAN::Meta'     => '1.4413',
9727             'Pod::Escapes'          => '1.06',
9728             'Pod::Find'             => '1.62',
9729             'Pod::InputObjects'     => '1.62',
9730             'Pod::ParseUtils'       => '1.62',
9731             'Pod::Parser'           => '1.62',
9732             'Pod::Select'           => '1.62',
9733             'Scalar::Util'          => '1.38',
9734             'autodie'               => '2.23',
9735             'autodie::exception'    => '2.23',
9736             'autodie::exception::system'=> '2.23',
9737             'autodie::hints'        => '2.23',
9738             'autodie::skip'         => '2.23',
9739             'diagnostics'           => '1.34',
9740             'feature'               => '1.35',
9741             'inc::latest'           => '0.4205',
9742             'locale'                => '1.03',
9743             'mro'                   => '1.15',
9744             'threads'               => '1.92',
9745             'version'               => '0.9908',
9746             'version::regex'        => '0.9908',
9747             'version::vpp'          => '0.9908',
9748             'warnings'              => '1.22',
9749         },
9750         removed => {
9751         }
9752     },
9753     5.01901 => {
9754         delta_from => 5.019009,
9755         changed => {
9756             'App::Cpan'             => '1.62',
9757             'Attribute::Handlers'   => '0.96',
9758             'B::Deparse'            => '1.26',
9759             'CPAN'                  => '2.04',
9760             'CPAN::Bundle'          => '5.5001',
9761             'CPAN::Complete'        => '5.5001',
9762             'CPAN::Distribution'    => '2.01',
9763             'CPAN::Distroprefs'     => '6.0001',
9764             'CPAN::FirstTime'       => '5.5305',
9765             'CPAN::Meta'            => '2.140640',
9766             'CPAN::Meta::Converter' => '2.140640',
9767             'CPAN::Meta::Feature'   => '2.140640',
9768             'CPAN::Meta::History'   => '2.140640',
9769             'CPAN::Meta::Prereqs'   => '2.140640',
9770             'CPAN::Meta::Spec'      => '2.140640',
9771             'CPAN::Meta::Validator' => '2.140640',
9772             'CPAN::Meta::YAML'      => '0.012',
9773             'CPAN::Queue'           => '5.5002',
9774             'CPAN::Shell'           => '5.5003',
9775             'CPAN::Tarzip'          => '5.5012',
9776             'CPAN::Version'         => '5.5003',
9777             'Carp'                  => '1.33',
9778             'Carp::Heavy'           => '1.33',
9779             'Config'                => '5.019010',
9780             'Data::Dumper'          => '2.151',
9781             'Devel::PPPort'         => '3.22',
9782             'Digest::SHA'           => '5.88',
9783             'ExtUtils::Command::MM' => '6.92',
9784             'ExtUtils::Install'     => '1.63',
9785             'ExtUtils::Installed'   => '1.999005',
9786             'ExtUtils::Liblist'     => '6.92',
9787             'ExtUtils::Liblist::Kid'=> '6.92',
9788             'ExtUtils::MM'          => '6.92',
9789             'ExtUtils::MM_AIX'      => '6.92',
9790             'ExtUtils::MM_Any'      => '6.92',
9791             'ExtUtils::MM_BeOS'     => '6.92',
9792             'ExtUtils::MM_Cygwin'   => '6.92',
9793             'ExtUtils::MM_DOS'      => '6.92',
9794             'ExtUtils::MM_Darwin'   => '6.92',
9795             'ExtUtils::MM_MacOS'    => '6.92',
9796             'ExtUtils::MM_NW5'      => '6.92',
9797             'ExtUtils::MM_OS2'      => '6.92',
9798             'ExtUtils::MM_QNX'      => '6.92',
9799             'ExtUtils::MM_UWIN'     => '6.92',
9800             'ExtUtils::MM_Unix'     => '6.92',
9801             'ExtUtils::MM_VMS'      => '6.92',
9802             'ExtUtils::MM_VOS'      => '6.92',
9803             'ExtUtils::MM_Win32'    => '6.92',
9804             'ExtUtils::MM_Win95'    => '6.92',
9805             'ExtUtils::MY'          => '6.92',
9806             'ExtUtils::MakeMaker'   => '6.92',
9807             'ExtUtils::MakeMaker::Config'=> '6.92',
9808             'ExtUtils::Mkbootstrap' => '6.92',
9809             'ExtUtils::Mksymlists'  => '6.92',
9810             'ExtUtils::Packlist'    => '1.48',
9811             'ExtUtils::ParseXS'     => '3.24',
9812             'ExtUtils::ParseXS::Constants'=> '3.24',
9813             'ExtUtils::ParseXS::CountLines'=> '3.24',
9814             'ExtUtils::ParseXS::Eval'=> '3.24',
9815             'ExtUtils::ParseXS::Utilities'=> '3.24',
9816             'ExtUtils::Typemaps'    => '3.24',
9817             'ExtUtils::Typemaps::Cmd'=> '3.24',
9818             'ExtUtils::Typemaps::InputMap'=> '3.24',
9819             'ExtUtils::Typemaps::OutputMap'=> '3.24',
9820             'ExtUtils::Typemaps::Type'=> '3.24',
9821             'ExtUtils::testlib'     => '6.92',
9822             'File::Find'            => '1.27',
9823             'Filter::Simple'        => '0.91',
9824             'HTTP::Tiny'            => '0.043',
9825             'Hash::Util::FieldHash' => '1.15',
9826             'IO'                    => '1.31',
9827             'IO::Socket::IP'        => '0.29',
9828             'Locale::Codes'         => '3.30',
9829             'Locale::Codes::Constants'=> '3.30',
9830             'Locale::Codes::Country'=> '3.30',
9831             'Locale::Codes::Country_Codes'=> '3.30',
9832             'Locale::Codes::Country_Retired'=> '3.30',
9833             'Locale::Codes::Currency'=> '3.30',
9834             'Locale::Codes::Currency_Codes'=> '3.30',
9835             'Locale::Codes::Currency_Retired'=> '3.30',
9836             'Locale::Codes::LangExt'=> '3.30',
9837             'Locale::Codes::LangExt_Codes'=> '3.30',
9838             'Locale::Codes::LangExt_Retired'=> '3.30',
9839             'Locale::Codes::LangFam'=> '3.30',
9840             'Locale::Codes::LangFam_Codes'=> '3.30',
9841             'Locale::Codes::LangFam_Retired'=> '3.30',
9842             'Locale::Codes::LangVar'=> '3.30',
9843             'Locale::Codes::LangVar_Codes'=> '3.30',
9844             'Locale::Codes::LangVar_Retired'=> '3.30',
9845             'Locale::Codes::Language'=> '3.30',
9846             'Locale::Codes::Language_Codes'=> '3.30',
9847             'Locale::Codes::Language_Retired'=> '3.30',
9848             'Locale::Codes::Script' => '3.30',
9849             'Locale::Codes::Script_Codes'=> '3.30',
9850             'Locale::Codes::Script_Retired'=> '3.30',
9851             'Locale::Country'       => '3.30',
9852             'Locale::Currency'      => '3.30',
9853             'Locale::Language'      => '3.30',
9854             'Locale::Script'        => '3.30',
9855             'Module::CoreList'      => '3.09',
9856             'Module::CoreList::TieHashDelta'=> '3.09',
9857             'Module::CoreList::Utils'=> '3.09',
9858             'Module::Load'          => '0.32',
9859             'POSIX'                 => '1.38_03',
9860             'Parse::CPAN::Meta'     => '1.4414',
9861             'Pod::Perldoc'          => '3.23',
9862             'Pod::Perldoc::BaseTo'  => '3.23',
9863             'Pod::Perldoc::GetOptsOO'=> '3.23',
9864             'Pod::Perldoc::ToANSI'  => '3.23',
9865             'Pod::Perldoc::ToChecker'=> '3.23',
9866             'Pod::Perldoc::ToMan'   => '3.23',
9867             'Pod::Perldoc::ToNroff' => '3.23',
9868             'Pod::Perldoc::ToPod'   => '3.23',
9869             'Pod::Perldoc::ToRtf'   => '3.23',
9870             'Pod::Perldoc::ToTerm'  => '3.23',
9871             'Pod::Perldoc::ToText'  => '3.23',
9872             'Pod::Perldoc::ToTk'    => '3.23',
9873             'Pod::Perldoc::ToXml'   => '3.23',
9874             'Thread::Queue'         => '3.05',
9875             'XS::APItest'           => '0.60',
9876             'XS::Typemap'           => '0.13',
9877             'autouse'               => '1.08',
9878             'base'                  => '2.22',
9879             'charnames'             => '1.40',
9880             'feature'               => '1.36',
9881             'mro'                   => '1.16',
9882             'threads'               => '1.93',
9883             'warnings'              => '1.23',
9884             'warnings::register'    => '1.03',
9885         },
9886         removed => {
9887         }
9888     },
9889     5.019011 => {
9890         delta_from => 5.01901,
9891         changed => {
9892             'CPAN'                  => '2.05',
9893             'CPAN::Distribution'    => '2.02',
9894             'CPAN::FirstTime'       => '5.5306',
9895             'CPAN::Shell'           => '5.5004',
9896             'Carp'                  => '1.3301',
9897             'Carp::Heavy'           => '1.3301',
9898             'Config'                => '5.019011',
9899             'ExtUtils::Command::MM' => '6.94',
9900             'ExtUtils::Install'     => '1.67',
9901             'ExtUtils::Liblist'     => '6.94',
9902             'ExtUtils::Liblist::Kid'=> '6.94',
9903             'ExtUtils::MM'          => '6.94',
9904             'ExtUtils::MM_AIX'      => '6.94',
9905             'ExtUtils::MM_Any'      => '6.94',
9906             'ExtUtils::MM_BeOS'     => '6.94',
9907             'ExtUtils::MM_Cygwin'   => '6.94',
9908             'ExtUtils::MM_DOS'      => '6.94',
9909             'ExtUtils::MM_Darwin'   => '6.94',
9910             'ExtUtils::MM_MacOS'    => '6.94',
9911             'ExtUtils::MM_NW5'      => '6.94',
9912             'ExtUtils::MM_OS2'      => '6.94',
9913             'ExtUtils::MM_QNX'      => '6.94',
9914             'ExtUtils::MM_UWIN'     => '6.94',
9915             'ExtUtils::MM_Unix'     => '6.94',
9916             'ExtUtils::MM_VMS'      => '6.94',
9917             'ExtUtils::MM_VOS'      => '6.94',
9918             'ExtUtils::MM_Win32'    => '6.94',
9919             'ExtUtils::MM_Win95'    => '6.94',
9920             'ExtUtils::MY'          => '6.94',
9921             'ExtUtils::MakeMaker'   => '6.94',
9922             'ExtUtils::MakeMaker::Config'=> '6.94',
9923             'ExtUtils::Mkbootstrap' => '6.94',
9924             'ExtUtils::Mksymlists'  => '6.94',
9925             'ExtUtils::testlib'     => '6.94',
9926             'Module::CoreList'      => '3.10',
9927             'Module::CoreList::TieHashDelta'=> '3.10',
9928             'Module::CoreList::Utils'=> '3.10',
9929             'PerlIO'                => '1.09',
9930             'Storable'              => '2.49',
9931             'Win32'                 => '0.49',
9932             'experimental'          => '0.007',
9933         },
9934         removed => {
9935         }
9936     },
9937     5.020000 => {
9938         delta_from => 5.019011,
9939         changed => {
9940             'Config'                => '5.02',
9941             'Devel::PPPort'         => '3.21',
9942             'Encode'                => '2.60',
9943             'Errno'                 => '1.20_03',
9944             'ExtUtils::Command::MM' => '6.98',
9945             'ExtUtils::Liblist'     => '6.98',
9946             'ExtUtils::Liblist::Kid'=> '6.98',
9947             'ExtUtils::MM'          => '6.98',
9948             'ExtUtils::MM_AIX'      => '6.98',
9949             'ExtUtils::MM_Any'      => '6.98',
9950             'ExtUtils::MM_BeOS'     => '6.98',
9951             'ExtUtils::MM_Cygwin'   => '6.98',
9952             'ExtUtils::MM_DOS'      => '6.98',
9953             'ExtUtils::MM_Darwin'   => '6.98',
9954             'ExtUtils::MM_MacOS'    => '6.98',
9955             'ExtUtils::MM_NW5'      => '6.98',
9956             'ExtUtils::MM_OS2'      => '6.98',
9957             'ExtUtils::MM_QNX'      => '6.98',
9958             'ExtUtils::MM_UWIN'     => '6.98',
9959             'ExtUtils::MM_Unix'     => '6.98',
9960             'ExtUtils::MM_VMS'      => '6.98',
9961             'ExtUtils::MM_VOS'      => '6.98',
9962             'ExtUtils::MM_Win32'    => '6.98',
9963             'ExtUtils::MM_Win95'    => '6.98',
9964             'ExtUtils::MY'          => '6.98',
9965             'ExtUtils::MakeMaker'   => '6.98',
9966             'ExtUtils::MakeMaker::Config'=> '6.98',
9967             'ExtUtils::Miniperl'    => '1.01',
9968             'ExtUtils::Mkbootstrap' => '6.98',
9969             'ExtUtils::Mksymlists'  => '6.98',
9970             'ExtUtils::testlib'     => '6.98',
9971             'Pod::Functions::Functions'=> '1.08',
9972         },
9973         removed => {
9974         }
9975     },
9976     5.021000 => {
9977         delta_from => 5.020000,
9978         changed => {
9979             'Module::CoreList'      => '5.021001',
9980             'Module::CoreList::TieHashDelta'=> '5.021001',
9981             'Module::CoreList::Utils'=> '5.021001',
9982             'feature'               => '1.37',
9983         },
9984         removed => {
9985             'CGI'                   => 1,
9986             'CGI::Apache'           => 1,
9987             'CGI::Carp'             => 1,
9988             'CGI::Cookie'           => 1,
9989             'CGI::Fast'             => 1,
9990             'CGI::Pretty'           => 1,
9991             'CGI::Push'             => 1,
9992             'CGI::Switch'           => 1,
9993             'CGI::Util'             => 1,
9994             'Module::Build'         => 1,
9995             'Module::Build::Base'   => 1,
9996             'Module::Build::Compat' => 1,
9997             'Module::Build::Config' => 1,
9998             'Module::Build::ConfigData'=> 1,
9999             'Module::Build::Cookbook'=> 1,
10000             'Module::Build::Dumper' => 1,
10001             'Module::Build::ModuleInfo'=> 1,
10002             'Module::Build::Notes'  => 1,
10003             'Module::Build::PPMMaker'=> 1,
10004             'Module::Build::Platform::Default'=> 1,
10005             'Module::Build::Platform::MacOS'=> 1,
10006             'Module::Build::Platform::Unix'=> 1,
10007             'Module::Build::Platform::VMS'=> 1,
10008             'Module::Build::Platform::VOS'=> 1,
10009             'Module::Build::Platform::Windows'=> 1,
10010             'Module::Build::Platform::aix'=> 1,
10011             'Module::Build::Platform::cygwin'=> 1,
10012             'Module::Build::Platform::darwin'=> 1,
10013             'Module::Build::Platform::os2'=> 1,
10014             'Module::Build::PodParser'=> 1,
10015             'Module::Build::Version'=> 1,
10016             'Module::Build::YAML'   => 1,
10017             'Package::Constants'    => 1,
10018             'inc::latest'           => 1,
10019         }
10020     },
10021     5.021001 => {
10022         delta_from => 5.021000,
10023         changed => {
10024             'App::Prove'            => '3.32',
10025             'App::Prove::State'     => '3.32',
10026             'App::Prove::State::Result'=> '3.32',
10027             'App::Prove::State::Result::Test'=> '3.32',
10028             'Archive::Tar'          => '2.00',
10029             'Archive::Tar::Constant'=> '2.00',
10030             'Archive::Tar::File'    => '2.00',
10031             'B'                     => '1.49',
10032             'B::Deparse'            => '1.27',
10033             'Benchmark'             => '1.19',
10034             'CPAN::Meta'            => '2.141520',
10035             'CPAN::Meta::Converter' => '2.141520',
10036             'CPAN::Meta::Feature'   => '2.141520',
10037             'CPAN::Meta::History'   => '2.141520',
10038             'CPAN::Meta::Prereqs'   => '2.141520',
10039             'CPAN::Meta::Spec'      => '2.141520',
10040             'CPAN::Meta::Validator' => '2.141520',
10041             'Carp'                  => '1.34',
10042             'Carp::Heavy'           => '1.34',
10043             'Config'                => '5.021001',
10044             'Cwd'                   => '3.48',
10045             'Data::Dumper'          => '2.152',
10046             'Devel::PPPort'         => '3.24',
10047             'Devel::Peek'           => '1.17',
10048             'Digest::SHA'           => '5.92',
10049             'DynaLoader'            => '1.26',
10050             'Encode'                => '2.62',
10051             'Errno'                 => '1.20_04',
10052             'Exporter'              => '5.71',
10053             'Exporter::Heavy'       => '5.71',
10054             'ExtUtils::Install'     => '1.68',
10055             'ExtUtils::Miniperl'    => '1.02',
10056             'ExtUtils::ParseXS'     => '3.25',
10057             'ExtUtils::ParseXS::Constants'=> '3.25',
10058             'ExtUtils::ParseXS::CountLines'=> '3.25',
10059             'ExtUtils::ParseXS::Eval'=> '3.25',
10060             'ExtUtils::ParseXS::Utilities'=> '3.25',
10061             'ExtUtils::Typemaps'    => '3.25',
10062             'ExtUtils::Typemaps::Cmd'=> '3.25',
10063             'ExtUtils::Typemaps::InputMap'=> '3.25',
10064             'ExtUtils::Typemaps::OutputMap'=> '3.25',
10065             'ExtUtils::Typemaps::Type'=> '3.25',
10066             'Fatal'                 => '2.25',
10067             'File::Spec'            => '3.48',
10068             'File::Spec::Cygwin'    => '3.48',
10069             'File::Spec::Epoc'      => '3.48',
10070             'File::Spec::Functions' => '3.48',
10071             'File::Spec::Mac'       => '3.48',
10072             'File::Spec::OS2'       => '3.48',
10073             'File::Spec::Unix'      => '3.48',
10074             'File::Spec::VMS'       => '3.48',
10075             'File::Spec::Win32'     => '3.48',
10076             'Hash::Util'            => '0.17',
10077             'IO'                    => '1.32',
10078             'List::Util'            => '1.39',
10079             'List::Util::XS'        => '1.39',
10080             'Locale::Codes'         => '3.31',
10081             'Locale::Codes::Constants'=> '3.31',
10082             'Locale::Codes::Country'=> '3.31',
10083             'Locale::Codes::Country_Codes'=> '3.31',
10084             'Locale::Codes::Country_Retired'=> '3.31',
10085             'Locale::Codes::Currency'=> '3.31',
10086             'Locale::Codes::Currency_Codes'=> '3.31',
10087             'Locale::Codes::Currency_Retired'=> '3.31',
10088             'Locale::Codes::LangExt'=> '3.31',
10089             'Locale::Codes::LangExt_Codes'=> '3.31',
10090             'Locale::Codes::LangExt_Retired'=> '3.31',
10091             'Locale::Codes::LangFam'=> '3.31',
10092             'Locale::Codes::LangFam_Codes'=> '3.31',
10093             'Locale::Codes::LangFam_Retired'=> '3.31',
10094             'Locale::Codes::LangVar'=> '3.31',
10095             'Locale::Codes::LangVar_Codes'=> '3.31',
10096             'Locale::Codes::LangVar_Retired'=> '3.31',
10097             'Locale::Codes::Language'=> '3.31',
10098             'Locale::Codes::Language_Codes'=> '3.31',
10099             'Locale::Codes::Language_Retired'=> '3.31',
10100             'Locale::Codes::Script' => '3.31',
10101             'Locale::Codes::Script_Codes'=> '3.31',
10102             'Locale::Codes::Script_Retired'=> '3.31',
10103             'Locale::Country'       => '3.31',
10104             'Locale::Currency'      => '3.31',
10105             'Locale::Language'      => '3.31',
10106             'Locale::Script'        => '3.31',
10107             'Math::BigFloat'        => '1.9994',
10108             'Math::BigInt'          => '1.9995',
10109             'Math::BigInt::Calc'    => '1.9994',
10110             'Math::BigInt::CalcEmu' => '1.9994',
10111             'Math::BigRat'          => '0.2608',
10112             'Module::CoreList'      => '5.021001_01',
10113             'Module::CoreList::TieHashDelta'=> '5.021001_01',
10114             'Module::CoreList::Utils'=> '5.021001_01',
10115             'Module::Metadata'      => '1.000024',
10116             'NDBM_File'             => '1.13',
10117             'Net::Config'           => '1.14',
10118             'Net::SMTP'             => '2.34',
10119             'Net::Time'             => '2.11',
10120             'OS2::Process'          => '1.10',
10121             'POSIX'                 => '1.40',
10122             'PerlIO::encoding'      => '0.19',
10123             'PerlIO::mmap'          => '0.013',
10124             'PerlIO::scalar'        => '0.19',
10125             'PerlIO::via'           => '0.15',
10126             'Pod::Html'             => '1.22',
10127             'Scalar::Util'          => '1.39',
10128             'SelfLoader'            => '1.22',
10129             'Socket'                => '2.014',
10130             'Storable'              => '2.51',
10131             'TAP::Base'             => '3.32',
10132             'TAP::Formatter::Base'  => '3.32',
10133             'TAP::Formatter::Color' => '3.32',
10134             'TAP::Formatter::Console'=> '3.32',
10135             'TAP::Formatter::Console::ParallelSession'=> '3.32',
10136             'TAP::Formatter::Console::Session'=> '3.32',
10137             'TAP::Formatter::File'  => '3.32',
10138             'TAP::Formatter::File::Session'=> '3.32',
10139             'TAP::Formatter::Session'=> '3.32',
10140             'TAP::Harness'          => '3.32',
10141             'TAP::Harness::Env'     => '3.32',
10142             'TAP::Object'           => '3.32',
10143             'TAP::Parser'           => '3.32',
10144             'TAP::Parser::Aggregator'=> '3.32',
10145             'TAP::Parser::Grammar'  => '3.32',
10146             'TAP::Parser::Iterator' => '3.32',
10147             'TAP::Parser::Iterator::Array'=> '3.32',
10148             'TAP::Parser::Iterator::Process'=> '3.32',
10149             'TAP::Parser::Iterator::Stream'=> '3.32',
10150             'TAP::Parser::IteratorFactory'=> '3.32',
10151             'TAP::Parser::Multiplexer'=> '3.32',
10152             'TAP::Parser::Result'   => '3.32',
10153             'TAP::Parser::Result::Bailout'=> '3.32',
10154             'TAP::Parser::Result::Comment'=> '3.32',
10155             'TAP::Parser::Result::Plan'=> '3.32',
10156             'TAP::Parser::Result::Pragma'=> '3.32',
10157             'TAP::Parser::Result::Test'=> '3.32',
10158             'TAP::Parser::Result::Unknown'=> '3.32',
10159             'TAP::Parser::Result::Version'=> '3.32',
10160             'TAP::Parser::Result::YAML'=> '3.32',
10161             'TAP::Parser::ResultFactory'=> '3.32',
10162             'TAP::Parser::Scheduler'=> '3.32',
10163             'TAP::Parser::Scheduler::Job'=> '3.32',
10164             'TAP::Parser::Scheduler::Spinner'=> '3.32',
10165             'TAP::Parser::Source'   => '3.32',
10166             'TAP::Parser::SourceHandler'=> '3.32',
10167             'TAP::Parser::SourceHandler::Executable'=> '3.32',
10168             'TAP::Parser::SourceHandler::File'=> '3.32',
10169             'TAP::Parser::SourceHandler::Handle'=> '3.32',
10170             'TAP::Parser::SourceHandler::Perl'=> '3.32',
10171             'TAP::Parser::SourceHandler::RawTAP'=> '3.32',
10172             'TAP::Parser::YAMLish::Reader'=> '3.32',
10173             'TAP::Parser::YAMLish::Writer'=> '3.32',
10174             'Term::ANSIColor'       => '4.03',
10175             'Test::Builder'         => '1.001003',
10176             'Test::Builder::Module' => '1.001003',
10177             'Test::Builder::Tester' => '1.23_003',
10178             'Test::Harness'         => '3.32',
10179             'Test::More'            => '1.001003',
10180             'Test::Simple'          => '1.001003',
10181             'Tie::File'             => '1.01',
10182             'Unicode'               => '7.0.0',
10183             'Unicode::Collate'      => '1.07',
10184             'Unicode::Normalize'    => '1.18',
10185             'Unicode::UCD'          => '0.58',
10186             'XS::APItest'           => '0.61',
10187             '_charnames'            => '1.41',
10188             'autodie'               => '2.25',
10189             'autodie::Scope::Guard' => '2.25',
10190             'autodie::Scope::GuardStack'=> '2.25',
10191             'autodie::ScopeUtil'    => '2.25',
10192             'autodie::exception'    => '2.25',
10193             'autodie::exception::system'=> '2.25',
10194             'autodie::hints'        => '2.25',
10195             'autodie::skip'         => '2.25',
10196             'charnames'             => '1.41',
10197             'locale'                => '1.04',
10198             'threads'               => '1.94',
10199             'utf8'                  => '1.14',
10200             'warnings'              => '1.24',
10201         },
10202         removed => {
10203         }
10204     },
10205     5.021002 => {
10206         delta_from => 5.021001,
10207         changed => {
10208             'B'                     => '1.50',
10209             'Config'                => '5.021002',
10210             'Cwd'                   => '3.49',
10211             'Devel::Peek'           => '1.18',
10212             'ExtUtils::Manifest'    => '1.64',
10213             'File::Copy'            => '2.30',
10214             'File::Spec'            => '3.49',
10215             'File::Spec::Cygwin'    => '3.49',
10216             'File::Spec::Epoc'      => '3.49',
10217             'File::Spec::Functions' => '3.49',
10218             'File::Spec::Mac'       => '3.49',
10219             'File::Spec::OS2'       => '3.49',
10220             'File::Spec::Unix'      => '3.49',
10221             'File::Spec::VMS'       => '3.49',
10222             'File::Spec::Win32'     => '3.49',
10223             'Filter::Simple'        => '0.92',
10224             'Hash::Util'            => '0.18',
10225             'IO'                    => '1.33',
10226             'IO::Socket::IP'        => '0.31',
10227             'IPC::Open3'            => '1.17',
10228             'Math::BigFloat'        => '1.9996',
10229             'Math::BigInt'          => '1.9996',
10230             'Math::BigInt::Calc'    => '1.9996',
10231             'Math::BigInt::CalcEmu' => '1.9996',
10232             'Module::CoreList'      => '5.021002',
10233             'Module::CoreList::TieHashDelta'=> '5.021002',
10234             'Module::CoreList::Utils'=> '5.021002',
10235             'POSIX'                 => '1.41',
10236             'Pod::Usage'            => '1.64',
10237             'XS::APItest'           => '0.62',
10238             'arybase'               => '0.08',
10239             'experimental'          => '0.008',
10240             'threads'               => '1.95',
10241             'warnings'              => '1.26',
10242         },
10243         removed => {
10244         }
10245     },
10246     5.021003 => {
10247         delta_from => 5.021002,
10248         changed => {
10249             'B::Debug'              => '1.21',
10250             'CPAN::Meta'            => '2.142060',
10251             'CPAN::Meta::Converter' => '2.142060',
10252             'CPAN::Meta::Feature'   => '2.142060',
10253             'CPAN::Meta::History'   => '2.142060',
10254             'CPAN::Meta::Merge'     => '2.142060',
10255             'CPAN::Meta::Prereqs'   => '2.142060',
10256             'CPAN::Meta::Requirements'=> '2.126',
10257             'CPAN::Meta::Spec'      => '2.142060',
10258             'CPAN::Meta::Validator' => '2.142060',
10259             'Config'                => '5.021003',
10260             'Config::Perl::V'       => '0.22',
10261             'ExtUtils::CBuilder'    => '0.280217',
10262             'ExtUtils::CBuilder::Base'=> '0.280217',
10263             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10264             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10265             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10266             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10267             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10268             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10269             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10270             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10271             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10272             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10273             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10274             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10275             'ExtUtils::Manifest'    => '1.65',
10276             'HTTP::Tiny'            => '0.047',
10277             'IPC::Open3'            => '1.18',
10278             'Module::CoreList'      => '5.021003',
10279             'Module::CoreList::TieHashDelta'=> '5.021003',
10280             'Module::CoreList::Utils'=> '5.021003',
10281             'Opcode'                => '1.28',
10282             'POSIX'                 => '1.42',
10283             'Safe'                  => '2.38',
10284             'Socket'                => '2.015',
10285             'Sys::Hostname'         => '1.19',
10286             'UNIVERSAL'             => '1.12',
10287             'XS::APItest'           => '0.63',
10288             'perlfaq'               => '5.0150045',
10289         },
10290         removed => {
10291         }
10292     },
10293     5.020001 => {
10294         delta_from => 5.020000,
10295         changed => {
10296             'Config'                => '5.020001',
10297             'Config::Perl::V'       => '0.22',
10298             'Cwd'                   => '3.48',
10299             'Exporter'              => '5.71',
10300             'Exporter::Heavy'       => '5.71',
10301             'ExtUtils::CBuilder'    => '0.280217',
10302             'ExtUtils::CBuilder::Base'=> '0.280217',
10303             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10304             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10305             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10306             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10307             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10308             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10309             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10310             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10311             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10312             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10313             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10314             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10315             'File::Copy'            => '2.30',
10316             'File::Spec'            => '3.48',
10317             'File::Spec::Cygwin'    => '3.48',
10318             'File::Spec::Epoc'      => '3.48',
10319             'File::Spec::Functions' => '3.48',
10320             'File::Spec::Mac'       => '3.48',
10321             'File::Spec::OS2'       => '3.48',
10322             'File::Spec::Unix'      => '3.48',
10323             'File::Spec::VMS'       => '3.48',
10324             'File::Spec::Win32'     => '3.48',
10325             'Module::CoreList'      => '5.020001',
10326             'Module::CoreList::TieHashDelta'=> '5.020001',
10327             'Module::CoreList::Utils'=> '5.020001',
10328             'PerlIO::via'           => '0.15',
10329             'Unicode::UCD'          => '0.58',
10330             'XS::APItest'           => '0.60_01',
10331             'utf8'                  => '1.13_01',
10332             'version'               => '0.9909',
10333             'version::regex'        => '0.9909',
10334             'version::vpp'          => '0.9909',
10335         },
10336         removed => {
10337         }
10338     },
10339     5.021004 => {
10340         delta_from => 5.021003,
10341         changed => {
10342             'App::Prove'            => '3.33',
10343             'App::Prove::State'     => '3.33',
10344             'App::Prove::State::Result'=> '3.33',
10345             'App::Prove::State::Result::Test'=> '3.33',
10346             'Archive::Tar'          => '2.02',
10347             'Archive::Tar::Constant'=> '2.02',
10348             'Archive::Tar::File'    => '2.02',
10349             'Attribute::Handlers'   => '0.97',
10350             'B'                     => '1.51',
10351             'B::Concise'            => '0.993',
10352             'B::Deparse'            => '1.28',
10353             'B::Op_private'         => '5.021004',
10354             'CPAN::Meta::Requirements'=> '2.128',
10355             'Config'                => '5.021004',
10356             'Cwd'                   => '3.50',
10357             'Data::Dumper'          => '2.154',
10358             'ExtUtils::CBuilder'    => '0.280219',
10359             'ExtUtils::CBuilder::Base'=> '0.280219',
10360             'ExtUtils::CBuilder::Platform::Unix'=> '0.280219',
10361             'ExtUtils::CBuilder::Platform::VMS'=> '0.280219',
10362             'ExtUtils::CBuilder::Platform::Windows'=> '0.280219',
10363             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219',
10364             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219',
10365             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219',
10366             'ExtUtils::CBuilder::Platform::aix'=> '0.280219',
10367             'ExtUtils::CBuilder::Platform::android'=> '0.280219',
10368             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219',
10369             'ExtUtils::CBuilder::Platform::darwin'=> '0.280219',
10370             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219',
10371             'ExtUtils::CBuilder::Platform::os2'=> '0.280219',
10372             'ExtUtils::Install'     => '2.04',
10373             'ExtUtils::Installed'   => '2.04',
10374             'ExtUtils::Liblist::Kid'=> '6.98_01',
10375             'ExtUtils::Manifest'    => '1.68',
10376             'ExtUtils::Packlist'    => '2.04',
10377             'File::Find'            => '1.28',
10378             'File::Spec'            => '3.50',
10379             'File::Spec::Cygwin'    => '3.50',
10380             'File::Spec::Epoc'      => '3.50',
10381             'File::Spec::Functions' => '3.50',
10382             'File::Spec::Mac'       => '3.50',
10383             'File::Spec::OS2'       => '3.50',
10384             'File::Spec::Unix'      => '3.50',
10385             'File::Spec::VMS'       => '3.50',
10386             'File::Spec::Win32'     => '3.50',
10387             'Getopt::Std'           => '1.11',
10388             'HTTP::Tiny'            => '0.049',
10389             'IO'                    => '1.34',
10390             'IO::Socket::IP'        => '0.32',
10391             'List::Util'            => '1.41',
10392             'List::Util::XS'        => '1.41',
10393             'Locale::Codes'         => '3.32',
10394             'Locale::Codes::Constants'=> '3.32',
10395             'Locale::Codes::Country'=> '3.32',
10396             'Locale::Codes::Country_Codes'=> '3.32',
10397             'Locale::Codes::Country_Retired'=> '3.32',
10398             'Locale::Codes::Currency'=> '3.32',
10399             'Locale::Codes::Currency_Codes'=> '3.32',
10400             'Locale::Codes::Currency_Retired'=> '3.32',
10401             'Locale::Codes::LangExt'=> '3.32',
10402             'Locale::Codes::LangExt_Codes'=> '3.32',
10403             'Locale::Codes::LangExt_Retired'=> '3.32',
10404             'Locale::Codes::LangFam'=> '3.32',
10405             'Locale::Codes::LangFam_Codes'=> '3.32',
10406             'Locale::Codes::LangFam_Retired'=> '3.32',
10407             'Locale::Codes::LangVar'=> '3.32',
10408             'Locale::Codes::LangVar_Codes'=> '3.32',
10409             'Locale::Codes::LangVar_Retired'=> '3.32',
10410             'Locale::Codes::Language'=> '3.32',
10411             'Locale::Codes::Language_Codes'=> '3.32',
10412             'Locale::Codes::Language_Retired'=> '3.32',
10413             'Locale::Codes::Script' => '3.32',
10414             'Locale::Codes::Script_Codes'=> '3.32',
10415             'Locale::Codes::Script_Retired'=> '3.32',
10416             'Locale::Country'       => '3.32',
10417             'Locale::Currency'      => '3.32',
10418             'Locale::Language'      => '3.32',
10419             'Locale::Script'        => '3.32',
10420             'Math::BigFloat'        => '1.9997',
10421             'Math::BigInt'          => '1.9997',
10422             'Math::BigInt::Calc'    => '1.9997',
10423             'Math::BigInt::CalcEmu' => '1.9997',
10424             'Module::CoreList'      => '5.20140920',
10425             'Module::CoreList::TieHashDelta'=> '5.20140920',
10426             'Module::CoreList::Utils'=> '5.20140920',
10427             'POSIX'                 => '1.43',
10428             'Pod::Perldoc'          => '3.24',
10429             'Pod::Perldoc::BaseTo'  => '3.24',
10430             'Pod::Perldoc::GetOptsOO'=> '3.24',
10431             'Pod::Perldoc::ToANSI'  => '3.24',
10432             'Pod::Perldoc::ToChecker'=> '3.24',
10433             'Pod::Perldoc::ToMan'   => '3.24',
10434             'Pod::Perldoc::ToNroff' => '3.24',
10435             'Pod::Perldoc::ToPod'   => '3.24',
10436             'Pod::Perldoc::ToRtf'   => '3.24',
10437             'Pod::Perldoc::ToTerm'  => '3.24',
10438             'Pod::Perldoc::ToText'  => '3.24',
10439             'Pod::Perldoc::ToTk'    => '3.24',
10440             'Pod::Perldoc::ToXml'   => '3.24',
10441             'Scalar::Util'          => '1.41',
10442             'Sub::Util'             => '1.41',
10443             'TAP::Base'             => '3.33',
10444             'TAP::Formatter::Base'  => '3.33',
10445             'TAP::Formatter::Color' => '3.33',
10446             'TAP::Formatter::Console'=> '3.33',
10447             'TAP::Formatter::Console::ParallelSession'=> '3.33',
10448             'TAP::Formatter::Console::Session'=> '3.33',
10449             'TAP::Formatter::File'  => '3.33',
10450             'TAP::Formatter::File::Session'=> '3.33',
10451             'TAP::Formatter::Session'=> '3.33',
10452             'TAP::Harness'          => '3.33',
10453             'TAP::Harness::Env'     => '3.33',
10454             'TAP::Object'           => '3.33',
10455             'TAP::Parser'           => '3.33',
10456             'TAP::Parser::Aggregator'=> '3.33',
10457             'TAP::Parser::Grammar'  => '3.33',
10458             'TAP::Parser::Iterator' => '3.33',
10459             'TAP::Parser::Iterator::Array'=> '3.33',
10460             'TAP::Parser::Iterator::Process'=> '3.33',
10461             'TAP::Parser::Iterator::Stream'=> '3.33',
10462             'TAP::Parser::IteratorFactory'=> '3.33',
10463             'TAP::Parser::Multiplexer'=> '3.33',
10464             'TAP::Parser::Result'   => '3.33',
10465             'TAP::Parser::Result::Bailout'=> '3.33',
10466             'TAP::Parser::Result::Comment'=> '3.33',
10467             'TAP::Parser::Result::Plan'=> '3.33',
10468             'TAP::Parser::Result::Pragma'=> '3.33',
10469             'TAP::Parser::Result::Test'=> '3.33',
10470             'TAP::Parser::Result::Unknown'=> '3.33',
10471             'TAP::Parser::Result::Version'=> '3.33',
10472             'TAP::Parser::Result::YAML'=> '3.33',
10473             'TAP::Parser::ResultFactory'=> '3.33',
10474             'TAP::Parser::Scheduler'=> '3.33',
10475             'TAP::Parser::Scheduler::Job'=> '3.33',
10476             'TAP::Parser::Scheduler::Spinner'=> '3.33',
10477             'TAP::Parser::Source'   => '3.33',
10478             'TAP::Parser::SourceHandler'=> '3.33',
10479             'TAP::Parser::SourceHandler::Executable'=> '3.33',
10480             'TAP::Parser::SourceHandler::File'=> '3.33',
10481             'TAP::Parser::SourceHandler::Handle'=> '3.33',
10482             'TAP::Parser::SourceHandler::Perl'=> '3.33',
10483             'TAP::Parser::SourceHandler::RawTAP'=> '3.33',
10484             'TAP::Parser::YAMLish::Reader'=> '3.33',
10485             'TAP::Parser::YAMLish::Writer'=> '3.33',
10486             'Term::ReadLine'        => '1.15',
10487             'Test::Builder'         => '1.001006',
10488             'Test::Builder::Module' => '1.001006',
10489             'Test::Builder::Tester' => '1.24',
10490             'Test::Builder::Tester::Color'=> '1.24',
10491             'Test::Harness'         => '3.33',
10492             'Test::More'            => '1.001006',
10493             'Test::Simple'          => '1.001006',
10494             'Time::Piece'           => '1.29',
10495             'Time::Seconds'         => '1.29',
10496             'XS::APItest'           => '0.64',
10497             '_charnames'            => '1.42',
10498             'attributes'            => '0.23',
10499             'bigint'                => '0.37',
10500             'bignum'                => '0.38',
10501             'bigrat'                => '0.37',
10502             'constant'              => '1.32',
10503             'experimental'          => '0.010',
10504             'overload'              => '1.23',
10505             'threads'               => '1.96',
10506             'version'               => '0.9909',
10507             'version::regex'        => '0.9909',
10508             'version::vpp'          => '0.9909',
10509         },
10510         removed => {
10511         }
10512     },
10513     5.021005 => {
10514         delta_from => 5.021004,
10515         changed => {
10516             'B'                     => '1.52',
10517             'B::Concise'            => '0.994',
10518             'B::Debug'              => '1.22',
10519             'B::Deparse'            => '1.29',
10520             'B::Op_private'         => '5.021005',
10521             'CPAN::Meta'            => '2.142690',
10522             'CPAN::Meta::Converter' => '2.142690',
10523             'CPAN::Meta::Feature'   => '2.142690',
10524             'CPAN::Meta::History'   => '2.142690',
10525             'CPAN::Meta::Merge'     => '2.142690',
10526             'CPAN::Meta::Prereqs'   => '2.142690',
10527             'CPAN::Meta::Spec'      => '2.142690',
10528             'CPAN::Meta::Validator' => '2.142690',
10529             'Compress::Raw::Bzip2'  => '2.066',
10530             'Compress::Raw::Zlib'   => '2.066',
10531             'Compress::Zlib'        => '2.066',
10532             'Config'                => '5.021005',
10533             'Cwd'                   => '3.51',
10534             'DynaLoader'            => '1.27',
10535             'Errno'                 => '1.21',
10536             'ExtUtils::CBuilder'    => '0.280220',
10537             'ExtUtils::CBuilder::Base'=> '0.280220',
10538             'ExtUtils::CBuilder::Platform::Unix'=> '0.280220',
10539             'ExtUtils::CBuilder::Platform::VMS'=> '0.280220',
10540             'ExtUtils::CBuilder::Platform::Windows'=> '0.280220',
10541             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220',
10542             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220',
10543             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220',
10544             'ExtUtils::CBuilder::Platform::aix'=> '0.280220',
10545             'ExtUtils::CBuilder::Platform::android'=> '0.280220',
10546             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220',
10547             'ExtUtils::CBuilder::Platform::darwin'=> '0.280220',
10548             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220',
10549             'ExtUtils::CBuilder::Platform::os2'=> '0.280220',
10550             'ExtUtils::Miniperl'    => '1.03',
10551             'Fcntl'                 => '1.13',
10552             'File::Find'            => '1.29',
10553             'File::Spec'            => '3.51',
10554             'File::Spec::Cygwin'    => '3.51',
10555             'File::Spec::Epoc'      => '3.51',
10556             'File::Spec::Functions' => '3.51',
10557             'File::Spec::Mac'       => '3.51',
10558             'File::Spec::OS2'       => '3.51',
10559             'File::Spec::Unix'      => '3.51',
10560             'File::Spec::VMS'       => '3.51',
10561             'File::Spec::Win32'     => '3.51',
10562             'HTTP::Tiny'            => '0.050',
10563             'IO::Compress::Adapter::Bzip2'=> '2.066',
10564             'IO::Compress::Adapter::Deflate'=> '2.066',
10565             'IO::Compress::Adapter::Identity'=> '2.066',
10566             'IO::Compress::Base'    => '2.066',
10567             'IO::Compress::Base::Common'=> '2.066',
10568             'IO::Compress::Bzip2'   => '2.066',
10569             'IO::Compress::Deflate' => '2.066',
10570             'IO::Compress::Gzip'    => '2.066',
10571             'IO::Compress::Gzip::Constants'=> '2.066',
10572             'IO::Compress::RawDeflate'=> '2.066',
10573             'IO::Compress::Zip'     => '2.066',
10574             'IO::Compress::Zip::Constants'=> '2.066',
10575             'IO::Compress::Zlib::Constants'=> '2.066',
10576             'IO::Compress::Zlib::Extra'=> '2.066',
10577             'IO::Uncompress::Adapter::Bunzip2'=> '2.066',
10578             'IO::Uncompress::Adapter::Identity'=> '2.066',
10579             'IO::Uncompress::Adapter::Inflate'=> '2.066',
10580             'IO::Uncompress::AnyInflate'=> '2.066',
10581             'IO::Uncompress::AnyUncompress'=> '2.066',
10582             'IO::Uncompress::Base'  => '2.066',
10583             'IO::Uncompress::Bunzip2'=> '2.066',
10584             'IO::Uncompress::Gunzip'=> '2.066',
10585             'IO::Uncompress::Inflate'=> '2.066',
10586             'IO::Uncompress::RawInflate'=> '2.066',
10587             'IO::Uncompress::Unzip' => '2.066',
10588             'JSON::PP'              => '2.27300',
10589             'Module::CoreList'      => '5.20141020',
10590             'Module::CoreList::TieHashDelta'=> '5.20141020',
10591             'Module::CoreList::Utils'=> '5.20141020',
10592             'Net::Cmd'              => '3.02',
10593             'Net::Config'           => '3.02',
10594             'Net::Domain'           => '3.02',
10595             'Net::FTP'              => '3.02',
10596             'Net::FTP::A'           => '3.02',
10597             'Net::FTP::E'           => '3.02',
10598             'Net::FTP::I'           => '3.02',
10599             'Net::FTP::L'           => '3.02',
10600             'Net::FTP::dataconn'    => '3.02',
10601             'Net::NNTP'             => '3.02',
10602             'Net::Netrc'            => '3.02',
10603             'Net::POP3'             => '3.02',
10604             'Net::SMTP'             => '3.02',
10605             'Net::Time'             => '3.02',
10606             'Opcode'                => '1.29',
10607             'POSIX'                 => '1.45',
10608             'Socket'                => '2.016',
10609             'Test::Builder'         => '1.001008',
10610             'Test::Builder::Module' => '1.001008',
10611             'Test::More'            => '1.001008',
10612             'Test::Simple'          => '1.001008',
10613             'XS::APItest'           => '0.65',
10614             'XSLoader'              => '0.18',
10615             'attributes'            => '0.24',
10616             'experimental'          => '0.012',
10617             'feature'               => '1.38',
10618             'perlfaq'               => '5.0150046',
10619             're'                    => '0.27',
10620             'threads::shared'       => '1.47',
10621             'warnings'              => '1.28',
10622             'warnings::register'    => '1.04',
10623         },
10624         removed => {
10625         }
10626     },
10627     5.021006 => {
10628         delta_from => 5.021005,
10629         changed => {
10630             'App::Prove'            => '3.34',
10631             'App::Prove::State'     => '3.34',
10632             'App::Prove::State::Result'=> '3.34',
10633             'App::Prove::State::Result::Test'=> '3.34',
10634             'B'                     => '1.53',
10635             'B::Concise'            => '0.995',
10636             'B::Deparse'            => '1.30',
10637             'B::Op_private'         => '5.021006',
10638             'CPAN::Meta'            => '2.143240',
10639             'CPAN::Meta::Converter' => '2.143240',
10640             'CPAN::Meta::Feature'   => '2.143240',
10641             'CPAN::Meta::History'   => '2.143240',
10642             'CPAN::Meta::Merge'     => '2.143240',
10643             'CPAN::Meta::Prereqs'   => '2.143240',
10644             'CPAN::Meta::Requirements'=> '2.130',
10645             'CPAN::Meta::Spec'      => '2.143240',
10646             'CPAN::Meta::Validator' => '2.143240',
10647             'Config'                => '5.021006',
10648             'Devel::Peek'           => '1.19',
10649             'Digest::SHA'           => '5.93',
10650             'DynaLoader'            => '1.28',
10651             'Encode'                => '2.64',
10652             'Exporter'              => '5.72',
10653             'Exporter::Heavy'       => '5.72',
10654             'ExtUtils::Command::MM' => '7.02',
10655             'ExtUtils::Liblist'     => '7.02',
10656             'ExtUtils::Liblist::Kid'=> '7.02',
10657             'ExtUtils::MM'          => '7.02',
10658             'ExtUtils::MM_AIX'      => '7.02',
10659             'ExtUtils::MM_Any'      => '7.02',
10660             'ExtUtils::MM_BeOS'     => '7.02',
10661             'ExtUtils::MM_Cygwin'   => '7.02',
10662             'ExtUtils::MM_DOS'      => '7.02',
10663             'ExtUtils::MM_Darwin'   => '7.02',
10664             'ExtUtils::MM_MacOS'    => '7.02',
10665             'ExtUtils::MM_NW5'      => '7.02',
10666             'ExtUtils::MM_OS2'      => '7.02',
10667             'ExtUtils::MM_QNX'      => '7.02',
10668             'ExtUtils::MM_UWIN'     => '7.02',
10669             'ExtUtils::MM_Unix'     => '7.02',
10670             'ExtUtils::MM_VMS'      => '7.02',
10671             'ExtUtils::MM_VOS'      => '7.02',
10672             'ExtUtils::MM_Win32'    => '7.02',
10673             'ExtUtils::MM_Win95'    => '7.02',
10674             'ExtUtils::MY'          => '7.02',
10675             'ExtUtils::MakeMaker'   => '7.02',
10676             'ExtUtils::MakeMaker::Config'=> '7.02',
10677             'ExtUtils::MakeMaker::Locale'=> '7.02',
10678             'ExtUtils::MakeMaker::version'=> '7.02',
10679             'ExtUtils::MakeMaker::version::regex'=> '7.02',
10680             'ExtUtils::MakeMaker::version::vpp'=> '7.02',
10681             'ExtUtils::Manifest'    => '1.69',
10682             'ExtUtils::Mkbootstrap' => '7.02',
10683             'ExtUtils::Mksymlists'  => '7.02',
10684             'ExtUtils::ParseXS'     => '3.26',
10685             'ExtUtils::ParseXS::Constants'=> '3.26',
10686             'ExtUtils::ParseXS::CountLines'=> '3.26',
10687             'ExtUtils::ParseXS::Eval'=> '3.26',
10688             'ExtUtils::ParseXS::Utilities'=> '3.26',
10689             'ExtUtils::testlib'     => '7.02',
10690             'File::Spec::VMS'       => '3.52',
10691             'HTTP::Tiny'            => '0.051',
10692             'I18N::Langinfo'        => '0.12',
10693             'IO::Socket'            => '1.38',
10694             'Module::CoreList'      => '5.20141120',
10695             'Module::CoreList::TieHashDelta'=> '5.20141120',
10696             'Module::CoreList::Utils'=> '5.20141120',
10697             'POSIX'                 => '1.46',
10698             'PerlIO::encoding'      => '0.20',
10699             'PerlIO::scalar'        => '0.20',
10700             'TAP::Base'             => '3.34',
10701             'TAP::Formatter::Base'  => '3.34',
10702             'TAP::Formatter::Color' => '3.34',
10703             'TAP::Formatter::Console'=> '3.34',
10704             'TAP::Formatter::Console::ParallelSession'=> '3.34',
10705             'TAP::Formatter::Console::Session'=> '3.34',
10706             'TAP::Formatter::File'  => '3.34',
10707             'TAP::Formatter::File::Session'=> '3.34',
10708             'TAP::Formatter::Session'=> '3.34',
10709             'TAP::Harness'          => '3.34',
10710             'TAP::Harness::Env'     => '3.34',
10711             'TAP::Object'           => '3.34',
10712             'TAP::Parser'           => '3.34',
10713             'TAP::Parser::Aggregator'=> '3.34',
10714             'TAP::Parser::Grammar'  => '3.34',
10715             'TAP::Parser::Iterator' => '3.34',
10716             'TAP::Parser::Iterator::Array'=> '3.34',
10717             'TAP::Parser::Iterator::Process'=> '3.34',
10718             'TAP::Parser::Iterator::Stream'=> '3.34',
10719             'TAP::Parser::IteratorFactory'=> '3.34',
10720             'TAP::Parser::Multiplexer'=> '3.34',
10721             'TAP::Parser::Result'   => '3.34',
10722             'TAP::Parser::Result::Bailout'=> '3.34',
10723             'TAP::Parser::Result::Comment'=> '3.34',
10724             'TAP::Parser::Result::Plan'=> '3.34',
10725             'TAP::Parser::Result::Pragma'=> '3.34',
10726             'TAP::Parser::Result::Test'=> '3.34',
10727             'TAP::Parser::Result::Unknown'=> '3.34',
10728             'TAP::Parser::Result::Version'=> '3.34',
10729             'TAP::Parser::Result::YAML'=> '3.34',
10730             'TAP::Parser::ResultFactory'=> '3.34',
10731             'TAP::Parser::Scheduler'=> '3.34',
10732             'TAP::Parser::Scheduler::Job'=> '3.34',
10733             'TAP::Parser::Scheduler::Spinner'=> '3.34',
10734             'TAP::Parser::Source'   => '3.34',
10735             'TAP::Parser::SourceHandler'=> '3.34',
10736             'TAP::Parser::SourceHandler::Executable'=> '3.34',
10737             'TAP::Parser::SourceHandler::File'=> '3.34',
10738             'TAP::Parser::SourceHandler::Handle'=> '3.34',
10739             'TAP::Parser::SourceHandler::Perl'=> '3.34',
10740             'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
10741             'TAP::Parser::YAMLish::Reader'=> '3.34',
10742             'TAP::Parser::YAMLish::Writer'=> '3.34',
10743             'Test::Builder'         => '1.301001_075',
10744             'Test::Builder::Module' => '1.301001_075',
10745             'Test::Builder::Tester' => '1.301001_075',
10746             'Test::Builder::Tester::Color'=> '1.301001_075',
10747             'Test::Harness'         => '3.34',
10748             'Test::More'            => '1.301001_075',
10749             'Test::More::DeepCheck' => undef,
10750             'Test::More::DeepCheck::Strict'=> undef,
10751             'Test::More::DeepCheck::Tolerant'=> undef,
10752             'Test::More::Tools'     => undef,
10753             'Test::MostlyLike'      => undef,
10754             'Test::Simple'          => '1.301001_075',
10755             'Test::Stream'          => '1.301001_075',
10756             'Test::Stream::ArrayBase'=> undef,
10757             'Test::Stream::ArrayBase::Meta'=> undef,
10758             'Test::Stream::Carp'    => undef,
10759             'Test::Stream::Context' => undef,
10760             'Test::Stream::Event'   => undef,
10761             'Test::Stream::Event::Bail'=> undef,
10762             'Test::Stream::Event::Child'=> undef,
10763             'Test::Stream::Event::Diag'=> undef,
10764             'Test::Stream::Event::Finish'=> undef,
10765             'Test::Stream::Event::Note'=> undef,
10766             'Test::Stream::Event::Ok'=> undef,
10767             'Test::Stream::Event::Plan'=> undef,
10768             'Test::Stream::Event::Subtest'=> undef,
10769             'Test::Stream::ExitMagic'=> undef,
10770             'Test::Stream::ExitMagic::Context'=> undef,
10771             'Test::Stream::Exporter'=> undef,
10772             'Test::Stream::Exporter::Meta'=> undef,
10773             'Test::Stream::IOSets'  => undef,
10774             'Test::Stream::Meta'    => undef,
10775             'Test::Stream::PackageUtil'=> undef,
10776             'Test::Stream::Tester'  => undef,
10777             'Test::Stream::Tester::Checks'=> undef,
10778             'Test::Stream::Tester::Checks::Event'=> undef,
10779             'Test::Stream::Tester::Events'=> undef,
10780             'Test::Stream::Tester::Events::Event'=> undef,
10781             'Test::Stream::Tester::Grab'=> undef,
10782             'Test::Stream::Threads' => undef,
10783             'Test::Stream::Toolset' => undef,
10784             'Test::Stream::Util'    => undef,
10785             'Test::Tester'          => '1.301001_075',
10786             'Test::Tester::Capture' => undef,
10787             'Test::use::ok'         => '1.301001_075',
10788             'Unicode::UCD'          => '0.59',
10789             'XS::APItest'           => '0.68',
10790             'XSLoader'              => '0.19',
10791             'experimental'          => '0.013',
10792             'locale'                => '1.05',
10793             'ok'                    => '1.301001_075',
10794             'overload'              => '1.24',
10795             're'                    => '0.28',
10796             'warnings'              => '1.29',
10797         },
10798         removed => {
10799         }
10800     },
10801     5.021007 => {
10802         delta_from => 5.021006,
10803         changed => {
10804             'Archive::Tar'          => '2.04',
10805             'Archive::Tar::Constant'=> '2.04',
10806             'Archive::Tar::File'    => '2.04',
10807             'B'                     => '1.54',
10808             'B::Concise'            => '0.996',
10809             'B::Deparse'            => '1.31',
10810             'B::Op_private'         => '5.021007',
10811             'B::Showlex'            => '1.05',
10812             'Compress::Raw::Bzip2'  => '2.067',
10813             'Compress::Raw::Zlib'   => '2.067',
10814             'Compress::Zlib'        => '2.067',
10815             'Config'                => '5.021007',
10816             'Cwd'                   => '3.54',
10817             'DB_File'               => '1.834',
10818             'Data::Dumper'          => '2.155',
10819             'Devel::PPPort'         => '3.25',
10820             'Devel::Peek'           => '1.20',
10821             'DynaLoader'            => '1.29',
10822             'Encode'                => '2.67',
10823             'Errno'                 => '1.22',
10824             'ExtUtils::CBuilder'    => '0.280221',
10825             'ExtUtils::CBuilder::Base'=> '0.280221',
10826             'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
10827             'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
10828             'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
10829             'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
10830             'ExtUtils::CBuilder::Platform::android'=> '0.280221',
10831             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
10832             'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
10833             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
10834             'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
10835             'ExtUtils::Command::MM' => '7.04',
10836             'ExtUtils::Liblist'     => '7.04',
10837             'ExtUtils::Liblist::Kid'=> '7.04',
10838             'ExtUtils::MM'          => '7.04',
10839             'ExtUtils::MM_AIX'      => '7.04',
10840             'ExtUtils::MM_Any'      => '7.04',
10841             'ExtUtils::MM_BeOS'     => '7.04',
10842             'ExtUtils::MM_Cygwin'   => '7.04',
10843             'ExtUtils::MM_DOS'      => '7.04',
10844             'ExtUtils::MM_Darwin'   => '7.04',
10845             'ExtUtils::MM_MacOS'    => '7.04',
10846             'ExtUtils::MM_NW5'      => '7.04',
10847             'ExtUtils::MM_OS2'      => '7.04',
10848             'ExtUtils::MM_QNX'      => '7.04',
10849             'ExtUtils::MM_UWIN'     => '7.04',
10850             'ExtUtils::MM_Unix'     => '7.04',
10851             'ExtUtils::MM_VMS'      => '7.04',
10852             'ExtUtils::MM_VOS'      => '7.04',
10853             'ExtUtils::MM_Win32'    => '7.04',
10854             'ExtUtils::MM_Win95'    => '7.04',
10855             'ExtUtils::MY'          => '7.04',
10856             'ExtUtils::MakeMaker'   => '7.04',
10857             'ExtUtils::MakeMaker::Config'=> '7.04',
10858             'ExtUtils::MakeMaker::Locale'=> '7.04',
10859             'ExtUtils::MakeMaker::version'=> '7.04',
10860             'ExtUtils::MakeMaker::version::regex'=> '7.04',
10861             'ExtUtils::MakeMaker::version::vpp'=> '7.04',
10862             'ExtUtils::Mkbootstrap' => '7.04',
10863             'ExtUtils::Mksymlists'  => '7.04',
10864             'ExtUtils::ParseXS'     => '3.27',
10865             'ExtUtils::ParseXS::Constants'=> '3.27',
10866             'ExtUtils::ParseXS::CountLines'=> '3.27',
10867             'ExtUtils::ParseXS::Eval'=> '3.27',
10868             'ExtUtils::ParseXS::Utilities'=> '3.27',
10869             'ExtUtils::testlib'     => '7.04',
10870             'File::Spec'            => '3.53',
10871             'File::Spec::Cygwin'    => '3.54',
10872             'File::Spec::Epoc'      => '3.54',
10873             'File::Spec::Functions' => '3.54',
10874             'File::Spec::Mac'       => '3.54',
10875             'File::Spec::OS2'       => '3.54',
10876             'File::Spec::Unix'      => '3.54',
10877             'File::Spec::VMS'       => '3.54',
10878             'File::Spec::Win32'     => '3.54',
10879             'Filter::Util::Call'    => '1.51',
10880             'HTTP::Tiny'            => '0.053',
10881             'IO'                    => '1.35',
10882             'IO::Compress::Adapter::Bzip2'=> '2.067',
10883             'IO::Compress::Adapter::Deflate'=> '2.067',
10884             'IO::Compress::Adapter::Identity'=> '2.067',
10885             'IO::Compress::Base'    => '2.067',
10886             'IO::Compress::Base::Common'=> '2.067',
10887             'IO::Compress::Bzip2'   => '2.067',
10888             'IO::Compress::Deflate' => '2.067',
10889             'IO::Compress::Gzip'    => '2.067',
10890             'IO::Compress::Gzip::Constants'=> '2.067',
10891             'IO::Compress::RawDeflate'=> '2.067',
10892             'IO::Compress::Zip'     => '2.067',
10893             'IO::Compress::Zip::Constants'=> '2.067',
10894             'IO::Compress::Zlib::Constants'=> '2.067',
10895             'IO::Compress::Zlib::Extra'=> '2.067',
10896             'IO::Socket::IP'        => '0.34',
10897             'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
10898             'IO::Uncompress::Adapter::Identity'=> '2.067',
10899             'IO::Uncompress::Adapter::Inflate'=> '2.067',
10900             'IO::Uncompress::AnyInflate'=> '2.067',
10901             'IO::Uncompress::AnyUncompress'=> '2.067',
10902             'IO::Uncompress::Base'  => '2.067',
10903             'IO::Uncompress::Bunzip2'=> '2.067',
10904             'IO::Uncompress::Gunzip'=> '2.067',
10905             'IO::Uncompress::Inflate'=> '2.067',
10906             'IO::Uncompress::RawInflate'=> '2.067',
10907             'IO::Uncompress::Unzip' => '2.067',
10908             'Locale::Codes'         => '3.33',
10909             'Locale::Codes::Constants'=> '3.33',
10910             'Locale::Codes::Country'=> '3.33',
10911             'Locale::Codes::Country_Codes'=> '3.33',
10912             'Locale::Codes::Country_Retired'=> '3.33',
10913             'Locale::Codes::Currency'=> '3.33',
10914             'Locale::Codes::Currency_Codes'=> '3.33',
10915             'Locale::Codes::Currency_Retired'=> '3.33',
10916             'Locale::Codes::LangExt'=> '3.33',
10917             'Locale::Codes::LangExt_Codes'=> '3.33',
10918             'Locale::Codes::LangExt_Retired'=> '3.33',
10919             'Locale::Codes::LangFam'=> '3.33',
10920             'Locale::Codes::LangFam_Codes'=> '3.33',
10921             'Locale::Codes::LangFam_Retired'=> '3.33',
10922             'Locale::Codes::LangVar'=> '3.33',
10923             'Locale::Codes::LangVar_Codes'=> '3.33',
10924             'Locale::Codes::LangVar_Retired'=> '3.33',
10925             'Locale::Codes::Language'=> '3.33',
10926             'Locale::Codes::Language_Codes'=> '3.33',
10927             'Locale::Codes::Language_Retired'=> '3.33',
10928             'Locale::Codes::Script' => '3.33',
10929             'Locale::Codes::Script_Codes'=> '3.33',
10930             'Locale::Codes::Script_Retired'=> '3.33',
10931             'Locale::Country'       => '3.33',
10932             'Locale::Currency'      => '3.33',
10933             'Locale::Language'      => '3.33',
10934             'Locale::Maketext'      => '1.26',
10935             'Locale::Script'        => '3.33',
10936             'Module::CoreList'      => '5.20141220',
10937             'Module::CoreList::TieHashDelta'=> '5.20141220',
10938             'Module::CoreList::Utils'=> '5.20141220',
10939             'NDBM_File'             => '1.14',
10940             'Net::Cmd'              => '3.04',
10941             'Net::Config'           => '3.04',
10942             'Net::Domain'           => '3.04',
10943             'Net::FTP'              => '3.04',
10944             'Net::FTP::A'           => '3.04',
10945             'Net::FTP::E'           => '3.04',
10946             'Net::FTP::I'           => '3.04',
10947             'Net::FTP::L'           => '3.04',
10948             'Net::FTP::dataconn'    => '3.04',
10949             'Net::NNTP'             => '3.04',
10950             'Net::Netrc'            => '3.04',
10951             'Net::POP3'             => '3.04',
10952             'Net::SMTP'             => '3.04',
10953             'Net::Time'             => '3.04',
10954             'Opcode'                => '1.30',
10955             'POSIX'                 => '1.48',
10956             'PerlIO::scalar'        => '0.21',
10957             'Pod::Escapes'          => '1.07',
10958             'SDBM_File'             => '1.12',
10959             'Storable'              => '2.52',
10960             'Sys::Hostname'         => '1.20',
10961             'Test::Builder'         => '1.301001_090',
10962             'Test::Builder::Module' => '1.301001_090',
10963             'Test::Builder::Tester' => '1.301001_090',
10964             'Test::Builder::Tester::Color'=> '1.301001_090',
10965             'Test::CanFork'         => undef,
10966             'Test::CanThread'       => undef,
10967             'Test::More'            => '1.301001_090',
10968             'Test::Simple'          => '1.301001_090',
10969             'Test::Stream'          => '1.301001_090',
10970             'Test::Stream::API'     => undef,
10971             'Test::Stream::ForceExit'=> undef,
10972             'Test::Stream::Subtest' => undef,
10973             'Test::Tester'          => '1.301001_090',
10974             'Test::use::ok'         => '1.301001_090',
10975             'Unicode::Collate'      => '1.09',
10976             'Unicode::Collate::CJK::Big5'=> '1.09',
10977             'Unicode::Collate::CJK::GB2312'=> '1.09',
10978             'Unicode::Collate::CJK::JISX0208'=> '1.09',
10979             'Unicode::Collate::CJK::Korean'=> '1.09',
10980             'Unicode::Collate::CJK::Pinyin'=> '1.09',
10981             'Unicode::Collate::CJK::Stroke'=> '1.09',
10982             'Unicode::Collate::CJK::Zhuyin'=> '1.09',
10983             'Unicode::Collate::Locale'=> '1.09',
10984             'XS::APItest'           => '0.69',
10985             'XSLoader'              => '0.20',
10986             '_charnames'            => '1.43',
10987             'arybase'               => '0.09',
10988             'charnames'             => '1.43',
10989             'feature'               => '1.39',
10990             'mro'                   => '1.17',
10991             'ok'                    => '1.301001_090',
10992             'strict'                => '1.09',
10993             'threads'               => '1.96_001',
10994         },
10995         removed => {
10996         }
10997     },
10998     5.021008 => {
10999         delta_from => 5.021007,
11000         changed => {
11001             'App::Prove'            => '3.35',
11002             'App::Prove::State'     => '3.35',
11003             'App::Prove::State::Result'=> '3.35',
11004             'App::Prove::State::Result::Test'=> '3.35',
11005             'B'                     => '1.55',
11006             'B::Deparse'            => '1.32',
11007             'B::Op_private'         => '5.021008',
11008             'CPAN::Meta::Requirements'=> '2.131',
11009             'Compress::Raw::Bzip2'  => '2.068',
11010             'Compress::Raw::Zlib'   => '2.068',
11011             'Compress::Zlib'        => '2.068',
11012             'Config'                => '5.021008',
11013             'DB_File'               => '1.835',
11014             'Data::Dumper'          => '2.156',
11015             'Devel::PPPort'         => '3.28',
11016             'Devel::Peek'           => '1.21',
11017             'Digest::MD5'           => '2.54',
11018             'Digest::SHA'           => '5.95',
11019             'DynaLoader'            => '1.30',
11020             'ExtUtils::Command'     => '1.20',
11021             'ExtUtils::Manifest'    => '1.70',
11022             'Fatal'                 => '2.26',
11023             'File::Glob'            => '1.24',
11024             'Filter::Util::Call'    => '1.54',
11025             'Getopt::Long'          => '2.43',
11026             'IO::Compress::Adapter::Bzip2'=> '2.068',
11027             'IO::Compress::Adapter::Deflate'=> '2.068',
11028             'IO::Compress::Adapter::Identity'=> '2.068',
11029             'IO::Compress::Base'    => '2.068',
11030             'IO::Compress::Base::Common'=> '2.068',
11031             'IO::Compress::Bzip2'   => '2.068',
11032             'IO::Compress::Deflate' => '2.068',
11033             'IO::Compress::Gzip'    => '2.068',
11034             'IO::Compress::Gzip::Constants'=> '2.068',
11035             'IO::Compress::RawDeflate'=> '2.068',
11036             'IO::Compress::Zip'     => '2.068',
11037             'IO::Compress::Zip::Constants'=> '2.068',
11038             'IO::Compress::Zlib::Constants'=> '2.068',
11039             'IO::Compress::Zlib::Extra'=> '2.068',
11040             'IO::Socket::IP'        => '0.36',
11041             'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
11042             'IO::Uncompress::Adapter::Identity'=> '2.068',
11043             'IO::Uncompress::Adapter::Inflate'=> '2.068',
11044             'IO::Uncompress::AnyInflate'=> '2.068',
11045             'IO::Uncompress::AnyUncompress'=> '2.068',
11046             'IO::Uncompress::Base'  => '2.068',
11047             'IO::Uncompress::Bunzip2'=> '2.068',
11048             'IO::Uncompress::Gunzip'=> '2.068',
11049             'IO::Uncompress::Inflate'=> '2.068',
11050             'IO::Uncompress::RawInflate'=> '2.068',
11051             'IO::Uncompress::Unzip' => '2.068',
11052             'MIME::Base64'          => '3.15',
11053             'Module::CoreList'      => '5.20150220',
11054             'Module::CoreList::TieHashDelta'=> '5.20150220',
11055             'Module::CoreList::Utils'=> '5.20150220',
11056             'Module::Load::Conditional'=> '0.64',
11057             'Module::Metadata'      => '1.000026',
11058             'Net::Cmd'              => '3.05',
11059             'Net::Config'           => '3.05',
11060             'Net::Domain'           => '3.05',
11061             'Net::FTP'              => '3.05',
11062             'Net::FTP::A'           => '3.05',
11063             'Net::FTP::E'           => '3.05',
11064             'Net::FTP::I'           => '3.05',
11065             'Net::FTP::L'           => '3.05',
11066             'Net::FTP::dataconn'    => '3.05',
11067             'Net::NNTP'             => '3.05',
11068             'Net::Netrc'            => '3.05',
11069             'Net::POP3'             => '3.05',
11070             'Net::SMTP'             => '3.05',
11071             'Net::Time'             => '3.05',
11072             'Opcode'                => '1.31',
11073             'POSIX'                 => '1.49',
11074             'PerlIO::encoding'      => '0.21',
11075             'Pod::Simple'           => '3.29',
11076             'Pod::Simple::BlackBox' => '3.29',
11077             'Pod::Simple::Checker'  => '3.29',
11078             'Pod::Simple::Debug'    => '3.29',
11079             'Pod::Simple::DumpAsText'=> '3.29',
11080             'Pod::Simple::DumpAsXML'=> '3.29',
11081             'Pod::Simple::HTML'     => '3.29',
11082             'Pod::Simple::HTMLBatch'=> '3.29',
11083             'Pod::Simple::LinkSection'=> '3.29',
11084             'Pod::Simple::Methody'  => '3.29',
11085             'Pod::Simple::Progress' => '3.29',
11086             'Pod::Simple::PullParser'=> '3.29',
11087             'Pod::Simple::PullParserEndToken'=> '3.29',
11088             'Pod::Simple::PullParserStartToken'=> '3.29',
11089             'Pod::Simple::PullParserTextToken'=> '3.29',
11090             'Pod::Simple::PullParserToken'=> '3.29',
11091             'Pod::Simple::RTF'      => '3.29',
11092             'Pod::Simple::Search'   => '3.29',
11093             'Pod::Simple::SimpleTree'=> '3.29',
11094             'Pod::Simple::Text'     => '3.29',
11095             'Pod::Simple::TextContent'=> '3.29',
11096             'Pod::Simple::TiedOutFH'=> '3.29',
11097             'Pod::Simple::Transcode'=> '3.29',
11098             'Pod::Simple::TranscodeDumb'=> '3.29',
11099             'Pod::Simple::TranscodeSmart'=> '3.29',
11100             'Pod::Simple::XHTML'    => '3.29',
11101             'Pod::Simple::XMLOutStream'=> '3.29',
11102             'SDBM_File'             => '1.13',
11103             'Safe'                  => '2.39',
11104             'TAP::Base'             => '3.35',
11105             'TAP::Formatter::Base'  => '3.35',
11106             'TAP::Formatter::Color' => '3.35',
11107             'TAP::Formatter::Console'=> '3.35',
11108             'TAP::Formatter::Console::ParallelSession'=> '3.35',
11109             'TAP::Formatter::Console::Session'=> '3.35',
11110             'TAP::Formatter::File'  => '3.35',
11111             'TAP::Formatter::File::Session'=> '3.35',
11112             'TAP::Formatter::Session'=> '3.35',
11113             'TAP::Harness'          => '3.35',
11114             'TAP::Harness::Env'     => '3.35',
11115             'TAP::Object'           => '3.35',
11116             'TAP::Parser'           => '3.35',
11117             'TAP::Parser::Aggregator'=> '3.35',
11118             'TAP::Parser::Grammar'  => '3.35',
11119             'TAP::Parser::Iterator' => '3.35',
11120             'TAP::Parser::Iterator::Array'=> '3.35',
11121             'TAP::Parser::Iterator::Process'=> '3.35',
11122             'TAP::Parser::Iterator::Stream'=> '3.35',
11123             'TAP::Parser::IteratorFactory'=> '3.35',
11124             'TAP::Parser::Multiplexer'=> '3.35',
11125             'TAP::Parser::Result'   => '3.35',
11126             'TAP::Parser::Result::Bailout'=> '3.35',
11127             'TAP::Parser::Result::Comment'=> '3.35',
11128             'TAP::Parser::Result::Plan'=> '3.35',
11129             'TAP::Parser::Result::Pragma'=> '3.35',
11130             'TAP::Parser::Result::Test'=> '3.35',
11131             'TAP::Parser::Result::Unknown'=> '3.35',
11132             'TAP::Parser::Result::Version'=> '3.35',
11133             'TAP::Parser::Result::YAML'=> '3.35',
11134             'TAP::Parser::ResultFactory'=> '3.35',
11135             'TAP::Parser::Scheduler'=> '3.35',
11136             'TAP::Parser::Scheduler::Job'=> '3.35',
11137             'TAP::Parser::Scheduler::Spinner'=> '3.35',
11138             'TAP::Parser::Source'   => '3.35',
11139             'TAP::Parser::SourceHandler'=> '3.35',
11140             'TAP::Parser::SourceHandler::Executable'=> '3.35',
11141             'TAP::Parser::SourceHandler::File'=> '3.35',
11142             'TAP::Parser::SourceHandler::Handle'=> '3.35',
11143             'TAP::Parser::SourceHandler::Perl'=> '3.35',
11144             'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
11145             'TAP::Parser::YAMLish::Reader'=> '3.35',
11146             'TAP::Parser::YAMLish::Writer'=> '3.35',
11147             'Test::Builder'         => '1.301001_097',
11148             'Test::Builder::Module' => '1.301001_097',
11149             'Test::Builder::Tester' => '1.301001_097',
11150             'Test::Builder::Tester::Color'=> '1.301001_097',
11151             'Test::Harness'         => '3.35',
11152             'Test::More'            => '1.301001_097',
11153             'Test::Simple'          => '1.301001_097',
11154             'Test::Stream'          => '1.301001_097',
11155             'Test::Stream::Block'   => undef,
11156             'Test::Tester'          => '1.301001_097',
11157             'Test::Tester::CaptureRunner'=> undef,
11158             'Test::Tester::Delegate'=> undef,
11159             'Test::use::ok'         => '1.301001_097',
11160             'Unicode::Collate'      => '1.10',
11161             'Unicode::Collate::CJK::Big5'=> '1.10',
11162             'Unicode::Collate::CJK::GB2312'=> '1.10',
11163             'Unicode::Collate::CJK::JISX0208'=> '1.10',
11164             'Unicode::Collate::CJK::Korean'=> '1.10',
11165             'Unicode::Collate::CJK::Pinyin'=> '1.10',
11166             'Unicode::Collate::CJK::Stroke'=> '1.10',
11167             'Unicode::Collate::CJK::Zhuyin'=> '1.10',
11168             'Unicode::Collate::Locale'=> '1.10',
11169             'VMS::DCLsym'           => '1.06',
11170             'XS::APItest'           => '0.70',
11171             'arybase'               => '0.10',
11172             'attributes'            => '0.25',
11173             'autodie'               => '2.26',
11174             'autodie::Scope::Guard' => '2.26',
11175             'autodie::Scope::GuardStack'=> '2.26',
11176             'autodie::ScopeUtil'    => '2.26',
11177             'autodie::exception'    => '2.26',
11178             'autodie::exception::system'=> '2.26',
11179             'autodie::hints'        => '2.26',
11180             'autodie::skip'         => '2.26',
11181             'ok'                    => '1.301001_097',
11182             're'                    => '0.30',
11183             'warnings'              => '1.30',
11184         },
11185         removed => {
11186         }
11187     },
11188     5.020002 => {
11189         delta_from => 5.020001,
11190         changed => {
11191             'CPAN::Author'          => '5.5002',
11192             'CPAN::CacheMgr'        => '5.5002',
11193             'CPAN::FTP'             => '5.5006',
11194             'CPAN::HTTP::Client'    => '1.9601',
11195             'CPAN::HandleConfig'    => '5.5005',
11196             'CPAN::Index'           => '1.9601',
11197             'CPAN::LWP::UserAgent'  => '1.9601',
11198             'CPAN::Mirrors'         => '1.9601',
11199             'Config'                => '5.020002',
11200             'Cwd'                   => '3.48_01',
11201             'Data::Dumper'          => '2.151_01',
11202             'Errno'                 => '1.20_05',
11203             'File::Spec'            => '3.48_01',
11204             'File::Spec::Cygwin'    => '3.48_01',
11205             'File::Spec::Epoc'      => '3.48_01',
11206             'File::Spec::Functions' => '3.48_01',
11207             'File::Spec::Mac'       => '3.48_01',
11208             'File::Spec::OS2'       => '3.48_01',
11209             'File::Spec::Unix'      => '3.48_01',
11210             'File::Spec::VMS'       => '3.48_01',
11211             'File::Spec::Win32'     => '3.48_01',
11212             'IO::Socket'            => '1.38',
11213             'Module::CoreList'      => '5.20150214',
11214             'Module::CoreList::TieHashDelta'=> '5.20150214',
11215             'Module::CoreList::Utils'=> '5.20150214',
11216             'PerlIO::scalar'        => '0.18_01',
11217             'Pod::PlainText'        => '2.07',
11218             'Storable'              => '2.49_01',
11219             'VMS::DCLsym'           => '1.05_01',
11220             'VMS::Stdio'            => '2.41',
11221             'attributes'            => '0.23',
11222             'feature'               => '1.36_01',
11223         },
11224         removed => {
11225         }
11226     },
11227     5.021009 => {
11228         delta_from => 5.021008,
11229         changed => {
11230             'B'                     => '1.56',
11231             'B::Debug'              => '1.23',
11232             'B::Deparse'            => '1.33',
11233             'B::Op_private'         => '5.021009',
11234             'Benchmark'             => '1.20',
11235             'CPAN::Author'          => '5.5002',
11236             'CPAN::CacheMgr'        => '5.5002',
11237             'CPAN::FTP'             => '5.5006',
11238             'CPAN::HTTP::Client'    => '1.9601',
11239             'CPAN::HandleConfig'    => '5.5005',
11240             'CPAN::Index'           => '1.9601',
11241             'CPAN::LWP::UserAgent'  => '1.9601',
11242             'CPAN::Meta::Requirements'=> '2.132',
11243             'CPAN::Mirrors'         => '1.9601',
11244             'Carp'                  => '1.35',
11245             'Carp::Heavy'           => '1.35',
11246             'Config'                => '5.021009',
11247             'Config::Perl::V'       => '0.23',
11248             'Data::Dumper'          => '2.157',
11249             'Devel::Peek'           => '1.22',
11250             'DynaLoader'            => '1.31',
11251             'Encode'                => '2.70',
11252             'Encode::MIME::Header'  => '2.16',
11253             'Errno'                 => '1.23',
11254             'ExtUtils::Miniperl'    => '1.04',
11255             'HTTP::Tiny'            => '0.054',
11256             'Module::CoreList'      => '5.20150220',
11257             'Module::CoreList::TieHashDelta'=> '5.20150220',
11258             'Module::CoreList::Utils'=> '5.20150220',
11259             'Opcode'                => '1.32',
11260             'POSIX'                 => '1.51',
11261             'Perl::OSType'          => '1.008',
11262             'PerlIO::scalar'        => '0.22',
11263             'Pod::Find'             => '1.63',
11264             'Pod::InputObjects'     => '1.63',
11265             'Pod::ParseUtils'       => '1.63',
11266             'Pod::Parser'           => '1.63',
11267             'Pod::Perldoc'          => '3.25',
11268             'Pod::Perldoc::BaseTo'  => '3.25',
11269             'Pod::Perldoc::GetOptsOO'=> '3.25',
11270             'Pod::Perldoc::ToANSI'  => '3.25',
11271             'Pod::Perldoc::ToChecker'=> '3.25',
11272             'Pod::Perldoc::ToMan'   => '3.25',
11273             'Pod::Perldoc::ToNroff' => '3.25',
11274             'Pod::Perldoc::ToPod'   => '3.25',
11275             'Pod::Perldoc::ToRtf'   => '3.25',
11276             'Pod::Perldoc::ToTerm'  => '3.25',
11277             'Pod::Perldoc::ToText'  => '3.25',
11278             'Pod::Perldoc::ToTk'    => '3.25',
11279             'Pod::Perldoc::ToXml'   => '3.25',
11280             'Pod::PlainText'        => '2.07',
11281             'Pod::Select'           => '1.63',
11282             'Socket'                => '2.018',
11283             'Storable'              => '2.53',
11284             'Test::Builder'         => '1.301001_098',
11285             'Test::Builder::Module' => '1.301001_098',
11286             'Test::Builder::Tester' => '1.301001_098',
11287             'Test::Builder::Tester::Color'=> '1.301001_098',
11288             'Test::More'            => '1.301001_098',
11289             'Test::Simple'          => '1.301001_098',
11290             'Test::Stream'          => '1.301001_098',
11291             'Test::Tester'          => '1.301001_098',
11292             'Test::use::ok'         => '1.301001_098',
11293             'Unicode::Collate'      => '1.11',
11294             'Unicode::Collate::CJK::Big5'=> '1.11',
11295             'Unicode::Collate::CJK::GB2312'=> '1.11',
11296             'Unicode::Collate::CJK::JISX0208'=> '1.11',
11297             'Unicode::Collate::CJK::Korean'=> '1.11',
11298             'Unicode::Collate::CJK::Pinyin'=> '1.11',
11299             'Unicode::Collate::CJK::Stroke'=> '1.11',
11300             'Unicode::Collate::CJK::Zhuyin'=> '1.11',
11301             'Unicode::Collate::Locale'=> '1.11',
11302             'Unicode::UCD'          => '0.61',
11303             'VMS::Stdio'            => '2.41',
11304             'Win32'                 => '0.51',
11305             'Win32API::File'        => '0.1202',
11306             'attributes'            => '0.26',
11307             'bigint'                => '0.39',
11308             'bignum'                => '0.39',
11309             'bigrat'                => '0.39',
11310             'constant'              => '1.33',
11311             'encoding'              => '2.13',
11312             'feature'               => '1.40',
11313             'ok'                    => '1.301001_098',
11314             'overload'              => '1.25',
11315             'perlfaq'               => '5.021009',
11316             're'                    => '0.31',
11317             'threads::shared'       => '1.48',
11318             'warnings'              => '1.31',
11319         },
11320         removed => {
11321         }
11322     },
11323     5.021010 => {
11324         delta_from => 5.021009,
11325         changed => {
11326             'App::Cpan'             => '1.63',
11327             'B'                     => '1.57',
11328             'B::Deparse'            => '1.34',
11329             'B::Op_private'         => '5.021010',
11330             'Benchmark'             => '1.2',
11331             'CPAN'                  => '2.10',
11332             'CPAN::Distribution'    => '2.04',
11333             'CPAN::FirstTime'       => '5.5307',
11334             'CPAN::HTTP::Credentials'=> '1.9601',
11335             'CPAN::HandleConfig'    => '5.5006',
11336             'CPAN::Meta'            => '2.150001',
11337             'CPAN::Meta::Converter' => '2.150001',
11338             'CPAN::Meta::Feature'   => '2.150001',
11339             'CPAN::Meta::History'   => '2.150001',
11340             'CPAN::Meta::Merge'     => '2.150001',
11341             'CPAN::Meta::Prereqs'   => '2.150001',
11342             'CPAN::Meta::Spec'      => '2.150001',
11343             'CPAN::Meta::Validator' => '2.150001',
11344             'CPAN::Module'          => '5.5002',
11345             'CPAN::Plugin'          => '0.95',
11346             'CPAN::Plugin::Specfile'=> '0.01',
11347             'CPAN::Shell'           => '5.5005',
11348             'Carp'                  => '1.36',
11349             'Carp::Heavy'           => '1.36',
11350             'Config'                => '5.02101',
11351             'Cwd'                   => '3.55',
11352             'DB'                    => '1.08',
11353             'Data::Dumper'          => '2.158',
11354             'Devel::PPPort'         => '3.31',
11355             'DynaLoader'            => '1.32',
11356             'Encode'                => '2.72',
11357             'Encode::Alias'         => '2.19',
11358             'File::Spec'            => '3.55',
11359             'File::Spec::Cygwin'    => '3.55',
11360             'File::Spec::Epoc'      => '3.55',
11361             'File::Spec::Functions' => '3.55',
11362             'File::Spec::Mac'       => '3.55',
11363             'File::Spec::OS2'       => '3.55',
11364             'File::Spec::Unix'      => '3.55',
11365             'File::Spec::VMS'       => '3.55',
11366             'File::Spec::Win32'     => '3.55',
11367             'Getopt::Long'          => '2.45',
11368             'Locale::Codes'         => '3.34',
11369             'Locale::Codes::Constants'=> '3.34',
11370             'Locale::Codes::Country'=> '3.34',
11371             'Locale::Codes::Country_Codes'=> '3.34',
11372             'Locale::Codes::Country_Retired'=> '3.34',
11373             'Locale::Codes::Currency'=> '3.34',
11374             'Locale::Codes::Currency_Codes'=> '3.34',
11375             'Locale::Codes::Currency_Retired'=> '3.34',
11376             'Locale::Codes::LangExt'=> '3.34',
11377             'Locale::Codes::LangExt_Codes'=> '3.34',
11378             'Locale::Codes::LangExt_Retired'=> '3.34',
11379             'Locale::Codes::LangFam'=> '3.34',
11380             'Locale::Codes::LangFam_Codes'=> '3.34',
11381             'Locale::Codes::LangFam_Retired'=> '3.34',
11382             'Locale::Codes::LangVar'=> '3.34',
11383             'Locale::Codes::LangVar_Codes'=> '3.34',
11384             'Locale::Codes::LangVar_Retired'=> '3.34',
11385             'Locale::Codes::Language'=> '3.34',
11386             'Locale::Codes::Language_Codes'=> '3.34',
11387             'Locale::Codes::Language_Retired'=> '3.34',
11388             'Locale::Codes::Script' => '3.34',
11389             'Locale::Codes::Script_Codes'=> '3.34',
11390             'Locale::Codes::Script_Retired'=> '3.34',
11391             'Locale::Country'       => '3.34',
11392             'Locale::Currency'      => '3.34',
11393             'Locale::Language'      => '3.34',
11394             'Locale::Script'        => '3.34',
11395             'Module::CoreList'      => '5.20150320',
11396             'Module::CoreList::TieHashDelta'=> '5.20150320',
11397             'Module::CoreList::Utils'=> '5.20150320',
11398             'POSIX'                 => '1.52',
11399             'Pod::Functions'        => '1.09',
11400             'Pod::Functions::Functions'=> '1.09',
11401             'Term::Complete'        => '1.403',
11402             'Test::Builder'         => '1.001014',
11403             'Test::Builder::IO::Scalar'=> '2.113',
11404             'Test::Builder::Module' => '1.001014',
11405             'Test::Builder::Tester' => '1.28',
11406             'Test::Builder::Tester::Color'=> '1.290001',
11407             'Test::More'            => '1.001014',
11408             'Test::Simple'          => '1.001014',
11409             'Test::Tester'          => '0.114',
11410             'Test::use::ok'         => '0.16',
11411             'Text::Balanced'        => '2.03',
11412             'Text::ParseWords'      => '3.30',
11413             'Unicode::Collate'      => '1.12',
11414             'Unicode::Collate::CJK::Big5'=> '1.12',
11415             'Unicode::Collate::CJK::GB2312'=> '1.12',
11416             'Unicode::Collate::CJK::JISX0208'=> '1.12',
11417             'Unicode::Collate::CJK::Korean'=> '1.12',
11418             'Unicode::Collate::CJK::Pinyin'=> '1.12',
11419             'Unicode::Collate::CJK::Stroke'=> '1.12',
11420             'Unicode::Collate::CJK::Zhuyin'=> '1.12',
11421             'Unicode::Collate::Locale'=> '1.12',
11422             'XS::APItest'           => '0.71',
11423             'encoding'              => '2.14',
11424             'locale'                => '1.06',
11425             'meta_notation'         => undef,
11426             'ok'                    => '0.16',
11427             'parent'                => '0.232',
11428             're'                    => '0.32',
11429             'sigtrap'               => '1.08',
11430             'threads'               => '2.01',
11431             'utf8'                  => '1.15',
11432         },
11433         removed => {
11434             'Test::CanFork'         => 1,
11435             'Test::CanThread'       => 1,
11436             'Test::More::DeepCheck' => 1,
11437             'Test::More::DeepCheck::Strict'=> 1,
11438             'Test::More::DeepCheck::Tolerant'=> 1,
11439             'Test::More::Tools'     => 1,
11440             'Test::MostlyLike'      => 1,
11441             'Test::Stream'          => 1,
11442             'Test::Stream::API'     => 1,
11443             'Test::Stream::ArrayBase'=> 1,
11444             'Test::Stream::ArrayBase::Meta'=> 1,
11445             'Test::Stream::Block'   => 1,
11446             'Test::Stream::Carp'    => 1,
11447             'Test::Stream::Context' => 1,
11448             'Test::Stream::Event'   => 1,
11449             'Test::Stream::Event::Bail'=> 1,
11450             'Test::Stream::Event::Child'=> 1,
11451             'Test::Stream::Event::Diag'=> 1,
11452             'Test::Stream::Event::Finish'=> 1,
11453             'Test::Stream::Event::Note'=> 1,
11454             'Test::Stream::Event::Ok'=> 1,
11455             'Test::Stream::Event::Plan'=> 1,
11456             'Test::Stream::Event::Subtest'=> 1,
11457             'Test::Stream::ExitMagic'=> 1,
11458             'Test::Stream::ExitMagic::Context'=> 1,
11459             'Test::Stream::Exporter'=> 1,
11460             'Test::Stream::Exporter::Meta'=> 1,
11461             'Test::Stream::ForceExit'=> 1,
11462             'Test::Stream::IOSets'  => 1,
11463             'Test::Stream::Meta'    => 1,
11464             'Test::Stream::PackageUtil'=> 1,
11465             'Test::Stream::Subtest' => 1,
11466             'Test::Stream::Tester'  => 1,
11467             'Test::Stream::Tester::Checks'=> 1,
11468             'Test::Stream::Tester::Checks::Event'=> 1,
11469             'Test::Stream::Tester::Events'=> 1,
11470             'Test::Stream::Tester::Events::Event'=> 1,
11471             'Test::Stream::Tester::Grab'=> 1,
11472             'Test::Stream::Threads' => 1,
11473             'Test::Stream::Toolset' => 1,
11474             'Test::Stream::Util'    => 1,
11475         }
11476     },
11477     5.021011 => {
11478         delta_from => 5.021010,
11479         changed => {
11480             'B'                     => '1.58',
11481             'B::Deparse'            => '1.35',
11482             'B::Op_private'         => '5.021011',
11483             'CPAN'                  => '2.11',
11484             'Config'                => '5.021011',
11485             'Config::Perl::V'       => '0.24',
11486             'Cwd'                   => '3.56',
11487             'ExtUtils::Miniperl'    => '1.05',
11488             'ExtUtils::ParseXS'     => '3.28',
11489             'ExtUtils::ParseXS::Constants'=> '3.28',
11490             'ExtUtils::ParseXS::CountLines'=> '3.28',
11491             'ExtUtils::ParseXS::Eval'=> '3.28',
11492             'ExtUtils::ParseXS::Utilities'=> '3.28',
11493             'ExtUtils::Typemaps'    => '3.28',
11494             'ExtUtils::Typemaps::Cmd'=> '3.28',
11495             'ExtUtils::Typemaps::InputMap'=> '3.28',
11496             'ExtUtils::Typemaps::OutputMap'=> '3.28',
11497             'ExtUtils::Typemaps::Type'=> '3.28',
11498             'File::Spec'            => '3.56',
11499             'File::Spec::Cygwin'    => '3.56',
11500             'File::Spec::Epoc'      => '3.56',
11501             'File::Spec::Functions' => '3.56',
11502             'File::Spec::Mac'       => '3.56',
11503             'File::Spec::OS2'       => '3.56',
11504             'File::Spec::Unix'      => '3.56',
11505             'File::Spec::VMS'       => '3.56',
11506             'File::Spec::Win32'     => '3.56',
11507             'IO::Socket::IP'        => '0.37',
11508             'Module::CoreList'      => '5.20150420',
11509             'Module::CoreList::TieHashDelta'=> '5.20150420',
11510             'Module::CoreList::Utils'=> '5.20150420',
11511             'PerlIO::mmap'          => '0.014',
11512             'XS::APItest'           => '0.72',
11513             'attributes'            => '0.27',
11514             'if'                    => '0.0604',
11515             'utf8'                  => '1.16',
11516             'warnings'              => '1.32',
11517         },
11518         removed => {
11519         }
11520     },
11521     5.022000 => {
11522         delta_from => 5.021011,
11523         changed => {
11524             'B::Op_private'         => '5.022000',
11525             'Config'                => '5.022',
11526             'ExtUtils::Command::MM' => '7.04_01',
11527             'ExtUtils::Liblist'     => '7.04_01',
11528             'ExtUtils::Liblist::Kid'=> '7.04_01',
11529             'ExtUtils::MM'          => '7.04_01',
11530             'ExtUtils::MM_AIX'      => '7.04_01',
11531             'ExtUtils::MM_Any'      => '7.04_01',
11532             'ExtUtils::MM_BeOS'     => '7.04_01',
11533             'ExtUtils::MM_Cygwin'   => '7.04_01',
11534             'ExtUtils::MM_DOS'      => '7.04_01',
11535             'ExtUtils::MM_Darwin'   => '7.04_01',
11536             'ExtUtils::MM_MacOS'    => '7.04_01',
11537             'ExtUtils::MM_NW5'      => '7.04_01',
11538             'ExtUtils::MM_OS2'      => '7.04_01',
11539             'ExtUtils::MM_QNX'      => '7.04_01',
11540             'ExtUtils::MM_UWIN'     => '7.04_01',
11541             'ExtUtils::MM_Unix'     => '7.04_01',
11542             'ExtUtils::MM_VMS'      => '7.04_01',
11543             'ExtUtils::MM_VOS'      => '7.04_01',
11544             'ExtUtils::MM_Win32'    => '7.04_01',
11545             'ExtUtils::MM_Win95'    => '7.04_01',
11546             'ExtUtils::MY'          => '7.04_01',
11547             'ExtUtils::MakeMaker'   => '7.04_01',
11548             'ExtUtils::MakeMaker::Config'=> '7.04_01',
11549             'ExtUtils::MakeMaker::Locale'=> '7.04_01',
11550             'ExtUtils::MakeMaker::version'=> '7.04_01',
11551             'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
11552             'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
11553             'ExtUtils::Mkbootstrap' => '7.04_01',
11554             'ExtUtils::Mksymlists'  => '7.04_01',
11555             'ExtUtils::testlib'     => '7.04_01',
11556             'Module::CoreList'      => '5.20150520',
11557             'Module::CoreList::TieHashDelta'=> '5.20150520',
11558             'Module::CoreList::Utils'=> '5.20150520',
11559             'POSIX'                 => '1.53',
11560             'PerlIO::via::QuotedPrint'=> '0.08',
11561             'overload'              => '1.26',
11562             'utf8'                  => '1.17',
11563         },
11564         removed => {
11565         }
11566     },
11567     5.023000 => {
11568         delta_from => 5.022000,
11569         changed => {
11570             'B::Op_private'         => '5.023000',
11571             'CPAN::Meta'            => '2.150005',
11572             'CPAN::Meta::Converter' => '2.150005',
11573             'CPAN::Meta::Feature'   => '2.150005',
11574             'CPAN::Meta::History'   => '2.150005',
11575             'CPAN::Meta::Merge'     => '2.150005',
11576             'CPAN::Meta::Prereqs'   => '2.150005',
11577             'CPAN::Meta::Requirements'=> '2.133',
11578             'CPAN::Meta::Spec'      => '2.150005',
11579             'CPAN::Meta::Validator' => '2.150005',
11580             'CPAN::Meta::YAML'      => '0.016',
11581             'Config'                => '5.023',
11582             'Encode'                => '2.73',
11583             'ExtUtils::CBuilder'    => '0.280223',
11584             'ExtUtils::CBuilder::Base'=> '0.280223',
11585             'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
11586             'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
11587             'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
11588             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
11589             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
11590             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
11591             'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
11592             'ExtUtils::CBuilder::Platform::android'=> '0.280223',
11593             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
11594             'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
11595             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
11596             'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
11597             'Fatal'                 => '2.27',
11598             'Getopt::Long'          => '2.46',
11599             'HTTP::Tiny'            => '0.056',
11600             'List::Util'            => '1.42_01',
11601             'List::Util::XS'        => '1.42_01',
11602             'Locale::Codes'         => '3.35',
11603             'Locale::Codes::Constants'=> '3.35',
11604             'Locale::Codes::Country'=> '3.35',
11605             'Locale::Codes::Country_Codes'=> '3.35',
11606             'Locale::Codes::Country_Retired'=> '3.35',
11607             'Locale::Codes::Currency'=> '3.35',
11608             'Locale::Codes::Currency_Codes'=> '3.35',
11609             'Locale::Codes::Currency_Retired'=> '3.35',
11610             'Locale::Codes::LangExt'=> '3.35',
11611             'Locale::Codes::LangExt_Codes'=> '3.35',
11612             'Locale::Codes::LangExt_Retired'=> '3.35',
11613             'Locale::Codes::LangFam'=> '3.35',
11614             'Locale::Codes::LangFam_Codes'=> '3.35',
11615             'Locale::Codes::LangFam_Retired'=> '3.35',
11616             'Locale::Codes::LangVar'=> '3.35',
11617             'Locale::Codes::LangVar_Codes'=> '3.35',
11618             'Locale::Codes::LangVar_Retired'=> '3.35',
11619             'Locale::Codes::Language'=> '3.35',
11620             'Locale::Codes::Language_Codes'=> '3.35',
11621             'Locale::Codes::Language_Retired'=> '3.35',
11622             'Locale::Codes::Script' => '3.35',
11623             'Locale::Codes::Script_Codes'=> '3.35',
11624             'Locale::Codes::Script_Retired'=> '3.35',
11625             'Locale::Country'       => '3.35',
11626             'Locale::Currency'      => '3.35',
11627             'Locale::Language'      => '3.35',
11628             'Locale::Script'        => '3.35',
11629             'Math::BigFloat'        => '1.999701',
11630             'Math::BigInt'          => '1.999701',
11631             'Math::BigInt::Calc'    => '1.999701',
11632             'Math::BigInt::CalcEmu' => '1.999701',
11633             'Math::BigRat'          => '0.260801',
11634             'Module::CoreList'      => '5.20150620',
11635             'Module::CoreList::TieHashDelta'=> '5.20150620',
11636             'Module::CoreList::Utils'=> '5.20150620',
11637             'Module::Metadata'      => '1.000027',
11638             'Net::Cmd'              => '3.06',
11639             'Net::Config'           => '3.06',
11640             'Net::Domain'           => '3.06',
11641             'Net::FTP'              => '3.06',
11642             'Net::FTP::A'           => '3.06',
11643             'Net::FTP::E'           => '3.06',
11644             'Net::FTP::I'           => '3.06',
11645             'Net::FTP::L'           => '3.06',
11646             'Net::FTP::dataconn'    => '3.06',
11647             'Net::NNTP'             => '3.06',
11648             'Net::Netrc'            => '3.06',
11649             'Net::POP3'             => '3.06',
11650             'Net::SMTP'             => '3.06',
11651             'Net::Time'             => '3.06',
11652             'POSIX'                 => '1.54',
11653             'Parse::CPAN::Meta'     => '1.4417',
11654             'Pod::Simple'           => '3.30',
11655             'Pod::Simple::BlackBox' => '3.30',
11656             'Pod::Simple::Checker'  => '3.30',
11657             'Pod::Simple::Debug'    => '3.30',
11658             'Pod::Simple::DumpAsText'=> '3.30',
11659             'Pod::Simple::DumpAsXML'=> '3.30',
11660             'Pod::Simple::HTML'     => '3.30',
11661             'Pod::Simple::HTMLBatch'=> '3.30',
11662             'Pod::Simple::LinkSection'=> '3.30',
11663             'Pod::Simple::Methody'  => '3.30',
11664             'Pod::Simple::Progress' => '3.30',
11665             'Pod::Simple::PullParser'=> '3.30',
11666             'Pod::Simple::PullParserEndToken'=> '3.30',
11667             'Pod::Simple::PullParserStartToken'=> '3.30',
11668             'Pod::Simple::PullParserTextToken'=> '3.30',
11669             'Pod::Simple::PullParserToken'=> '3.30',
11670             'Pod::Simple::RTF'      => '3.30',
11671             'Pod::Simple::Search'   => '3.30',
11672             'Pod::Simple::SimpleTree'=> '3.30',
11673             'Pod::Simple::Text'     => '3.30',
11674             'Pod::Simple::TextContent'=> '3.30',
11675             'Pod::Simple::TiedOutFH'=> '3.30',
11676             'Pod::Simple::Transcode'=> '3.30',
11677             'Pod::Simple::TranscodeDumb'=> '3.30',
11678             'Pod::Simple::TranscodeSmart'=> '3.30',
11679             'Pod::Simple::XHTML'    => '3.30',
11680             'Pod::Simple::XMLOutStream'=> '3.30',
11681             'Pod::Usage'            => '1.67',
11682             'Scalar::Util'          => '1.42_01',
11683             'Socket'                => '2.019',
11684             'Sub::Util'             => '1.42_01',
11685             'Time::Piece'           => '1.30',
11686             'Time::Seconds'         => '1.30',
11687             'UNIVERSAL'             => '1.13',
11688             'Unicode'               => '8.0.0',
11689             'XS::APItest'           => '0.73',
11690             'autodie'               => '2.27',
11691             'autodie::Scope::Guard' => '2.27',
11692             'autodie::Scope::GuardStack'=> '2.27',
11693             'autodie::Util'         => '2.27',
11694             'autodie::exception'    => '2.27',
11695             'autodie::exception::system'=> '2.27',
11696             'autodie::hints'        => '2.27',
11697             'autodie::skip'         => '2.27',
11698             'encoding'              => '2.15',
11699             'feature'               => '1.41',
11700             'parent'                => '0.234',
11701             'threads'               => '2.02',
11702         },
11703         removed => {
11704         }
11705     },
11706     5.023001 => {
11707         delta_from => 5.023000,
11708         changed => {
11709             'B::Op_private'         => '5.023001',
11710             'Config'                => '5.023001',
11711             'DynaLoader'            => '1.33',
11712             'Encode'                => '2.75',
11713             'Encode::MIME::Header'  => '2.17',
11714             'Encode::Unicode'       => '2.13',
11715             'Fatal'                 => '2.29',
11716             'File::Path'            => '2.11',
11717             'Getopt::Long'          => '2.47',
11718             'I18N::Langinfo'        => '0.13',
11719             'IPC::Open3'            => '1.19',
11720             'Module::CoreList'      => '5.20150720',
11721             'Module::CoreList::TieHashDelta'=> '5.20150720',
11722             'Module::CoreList::Utils'=> '5.20150720',
11723             'Net::Cmd'              => '3.07',
11724             'Net::Config'           => '3.07',
11725             'Net::Domain'           => '3.07',
11726             'Net::FTP'              => '3.07',
11727             'Net::FTP::A'           => '3.07',
11728             'Net::FTP::E'           => '3.07',
11729             'Net::FTP::I'           => '3.07',
11730             'Net::FTP::L'           => '3.07',
11731             'Net::FTP::dataconn'    => '3.07',
11732             'Net::NNTP'             => '3.07',
11733             'Net::Netrc'            => '3.07',
11734             'Net::POP3'             => '3.07',
11735             'Net::SMTP'             => '3.07',
11736             'Net::Time'             => '3.07',
11737             'Opcode'                => '1.33',
11738             'POSIX'                 => '1.55',
11739             'PerlIO::scalar'        => '0.23',
11740             'Socket'                => '2.020',
11741             'Storable'              => '2.54',
11742             'Unicode::Collate'      => '1.14',
11743             'Unicode::Collate::CJK::Big5'=> '1.14',
11744             'Unicode::Collate::CJK::GB2312'=> '1.14',
11745             'Unicode::Collate::CJK::JISX0208'=> '1.14',
11746             'Unicode::Collate::CJK::Korean'=> '1.14',
11747             'Unicode::Collate::CJK::Pinyin'=> '1.14',
11748             'Unicode::Collate::CJK::Stroke'=> '1.14',
11749             'Unicode::Collate::CJK::Zhuyin'=> '1.14',
11750             'Unicode::Collate::Locale'=> '1.14',
11751             'Unicode::Normalize'    => '1.19',
11752             'XS::APItest'           => '0.74',
11753             'XS::Typemap'           => '0.14',
11754             'autodie'               => '2.29',
11755             'autodie::Scope::Guard' => '2.29',
11756             'autodie::Scope::GuardStack'=> '2.29',
11757             'autodie::Util'         => '2.29',
11758             'autodie::exception'    => '2.29',
11759             'autodie::exception::system'=> '2.29',
11760             'autodie::hints'        => '2.29',
11761             'autodie::skip'         => '2.29',
11762             'encoding'              => '2.16',
11763             'feature'               => '1.42',
11764             'warnings'              => '1.33',
11765         },
11766         removed => {
11767             'autodie::ScopeUtil'    => 1,
11768         }
11769     },
11770     5.023002 => {
11771         delta_from => 5.023001,
11772         changed => {
11773             'Attribute::Handlers'   => '0.99',
11774             'B::Op_private'         => '5.023002',
11775             'CPAN::Meta::YAML'      => '0.017',
11776             'Config'                => '5.023002',
11777             'Cwd'                   => '3.57',
11778             'Encode'                => '2.76',
11779             'ExtUtils::ParseXS'     => '3.29',
11780             'ExtUtils::ParseXS::Constants'=> '3.29',
11781             'ExtUtils::ParseXS::CountLines'=> '3.29',
11782             'ExtUtils::ParseXS::Eval'=> '3.29',
11783             'ExtUtils::ParseXS::Utilities'=> '3.29',
11784             'ExtUtils::Typemaps'    => '3.29',
11785             'File::Find'            => '1.30',
11786             'File::Spec'            => '3.57',
11787             'File::Spec::Cygwin'    => '3.57',
11788             'File::Spec::Epoc'      => '3.57',
11789             'File::Spec::Functions' => '3.57',
11790             'File::Spec::Mac'       => '3.57',
11791             'File::Spec::OS2'       => '3.57',
11792             'File::Spec::Unix'      => '3.57',
11793             'File::Spec::VMS'       => '3.57',
11794             'File::Spec::Win32'     => '3.57',
11795             'Filter::Util::Call'    => '1.55',
11796             'Hash::Util'            => '0.19',
11797             'Module::CoreList'      => '5.20150820',
11798             'Module::CoreList::TieHashDelta'=> '5.20150820',
11799             'Module::CoreList::Utils'=> '5.20150820',
11800             'POSIX'                 => '1.56',
11801             'Term::Cap'             => '1.17',
11802             'Unicode::UCD'          => '0.62',
11803             'perlfaq'               => '5.021010',
11804         },
11805         removed => {
11806         }
11807     },
11808     5.020003 => {
11809         delta_from => 5.020002,
11810         changed => {
11811             'Config'                => '5.020003',
11812             'Errno'                 => '1.20_06',
11813             'Module::CoreList'      => '5.20150912',
11814             'Module::CoreList::TieHashDelta'=> '5.20150912',
11815             'Module::CoreList::Utils'=> '5.20150912',
11816         },
11817         removed => {
11818         }
11819     },
11820     5.023003 => {
11821         delta_from => 5.023002,
11822         changed => {
11823             'Amiga::ARexx'          => '0.02',
11824             'Amiga::Exec'           => '0.01',
11825             'B'                     => '1.59',
11826             'B::Op_private'         => '5.023003',
11827             'Carp'                  => '1.37',
11828             'Carp::Heavy'           => '1.37',
11829             'Compress::Raw::Zlib'   => '2.068_01',
11830             'Config'                => '5.023003',
11831             'Cwd'                   => '3.58',
11832             'DynaLoader'            => '1.34',
11833             'Encode'                => '2.77',
11834             'Encode::Unicode'       => '2.14',
11835             'English'               => '1.10',
11836             'Errno'                 => '1.24',
11837             'ExtUtils::Command'     => '7.10',
11838             'ExtUtils::Command::MM' => '7.10',
11839             'ExtUtils::Liblist'     => '7.10',
11840             'ExtUtils::Liblist::Kid'=> '7.10',
11841             'ExtUtils::MM'          => '7.10',
11842             'ExtUtils::MM_AIX'      => '7.10',
11843             'ExtUtils::MM_Any'      => '7.10',
11844             'ExtUtils::MM_BeOS'     => '7.10',
11845             'ExtUtils::MM_Cygwin'   => '7.10',
11846             'ExtUtils::MM_DOS'      => '7.10',
11847             'ExtUtils::MM_Darwin'   => '7.10',
11848             'ExtUtils::MM_MacOS'    => '7.10',
11849             'ExtUtils::MM_NW5'      => '7.10',
11850             'ExtUtils::MM_OS2'      => '7.10',
11851             'ExtUtils::MM_QNX'      => '7.10',
11852             'ExtUtils::MM_UWIN'     => '7.10',
11853             'ExtUtils::MM_Unix'     => '7.10',
11854             'ExtUtils::MM_VMS'      => '7.10',
11855             'ExtUtils::MM_VOS'      => '7.10',
11856             'ExtUtils::MM_Win32'    => '7.10',
11857             'ExtUtils::MM_Win95'    => '7.10',
11858             'ExtUtils::MY'          => '7.10',
11859             'ExtUtils::MakeMaker'   => '7.10',
11860             'ExtUtils::MakeMaker::Config'=> '7.10',
11861             'ExtUtils::MakeMaker::Locale'=> '7.10',
11862             'ExtUtils::MakeMaker::version'=> '7.10',
11863             'ExtUtils::MakeMaker::version::regex'=> '7.10',
11864             'ExtUtils::MakeMaker::version::vpp'=> '7.10',
11865             'ExtUtils::Mkbootstrap' => '7.10',
11866             'ExtUtils::Mksymlists'  => '7.10',
11867             'ExtUtils::ParseXS'     => '3.30',
11868             'ExtUtils::ParseXS::Constants'=> '3.30',
11869             'ExtUtils::ParseXS::CountLines'=> '3.30',
11870             'ExtUtils::ParseXS::Eval'=> '3.30',
11871             'ExtUtils::ParseXS::Utilities'=> '3.30',
11872             'ExtUtils::Typemaps'    => '3.30',
11873             'ExtUtils::Typemaps::Cmd'=> '3.30',
11874             'ExtUtils::Typemaps::InputMap'=> '3.30',
11875             'ExtUtils::Typemaps::OutputMap'=> '3.30',
11876             'ExtUtils::Typemaps::Type'=> '3.30',
11877             'ExtUtils::testlib'     => '7.10',
11878             'File::Find'            => '1.31',
11879             'File::Glob'            => '1.25',
11880             'File::Spec'            => '3.58',
11881             'File::Spec::AmigaOS'   => '3.58',
11882             'File::Spec::Cygwin'    => '3.58',
11883             'File::Spec::Epoc'      => '3.58',
11884             'File::Spec::Functions' => '3.58',
11885             'File::Spec::Mac'       => '3.58',
11886             'File::Spec::OS2'       => '3.58',
11887             'File::Spec::Unix'      => '3.58',
11888             'File::Spec::VMS'       => '3.58',
11889             'File::Spec::Win32'     => '3.58',
11890             'Hash::Util::FieldHash' => '1.17',
11891             'Locale::Codes'         => '3.36',
11892             'Locale::Codes::Constants'=> '3.36',
11893             'Locale::Codes::Country'=> '3.36',
11894             'Locale::Codes::Country_Codes'=> '3.36',
11895             'Locale::Codes::Country_Retired'=> '3.36',
11896             'Locale::Codes::Currency'=> '3.36',
11897             'Locale::Codes::Currency_Codes'=> '3.36',
11898             'Locale::Codes::Currency_Retired'=> '3.36',
11899             'Locale::Codes::LangExt'=> '3.36',
11900             'Locale::Codes::LangExt_Codes'=> '3.36',
11901             'Locale::Codes::LangExt_Retired'=> '3.36',
11902             'Locale::Codes::LangFam'=> '3.36',
11903             'Locale::Codes::LangFam_Codes'=> '3.36',
11904             'Locale::Codes::LangFam_Retired'=> '3.36',
11905             'Locale::Codes::LangVar'=> '3.36',
11906             'Locale::Codes::LangVar_Codes'=> '3.36',
11907             'Locale::Codes::LangVar_Retired'=> '3.36',
11908             'Locale::Codes::Language'=> '3.36',
11909             'Locale::Codes::Language_Codes'=> '3.36',
11910             'Locale::Codes::Language_Retired'=> '3.36',
11911             'Locale::Codes::Script' => '3.36',
11912             'Locale::Codes::Script_Codes'=> '3.36',
11913             'Locale::Codes::Script_Retired'=> '3.36',
11914             'Locale::Country'       => '3.36',
11915             'Locale::Currency'      => '3.36',
11916             'Locale::Language'      => '3.36',
11917             'Locale::Script'        => '3.36',
11918             'Math::BigFloat::Trace' => '0.40',
11919             'Math::BigInt::Trace'   => '0.40',
11920             'Module::CoreList'      => '5.20150920',
11921             'Module::CoreList::TieHashDelta'=> '5.20150920',
11922             'Module::CoreList::Utils'=> '5.20150920',
11923             'OS2::DLL'              => '1.06',
11924             'OS2::ExtAttr'          => '0.04',
11925             'OS2::Process'          => '1.11',
11926             'OS2::REXX'             => '1.05',
11927             'POSIX'                 => '1.57',
11928             'Pod::Perldoc'          => '3.25_01',
11929             'Socket'                => '2.020_01',
11930             'Test'                  => '1.27',
11931             'Thread::Queue'         => '3.06',
11932             'Time::HiRes'           => '1.9727_02',
11933             'Unicode::UCD'          => '0.63',
11934             'Win32'                 => '0.52',
11935             'XS::APItest'           => '0.75',
11936             'bigint'                => '0.40',
11937             'bignum'                => '0.40',
11938             'bigrat'                => '0.40',
11939             'encoding'              => '2.17',
11940             'experimental'          => '0.014',
11941             'if'                    => '0.0605',
11942             'locale'                => '1.07',
11943             'mro'                   => '1.18',
11944             'threads'               => '2.03',
11945         },
11946         removed => {
11947         }
11948     },
11949     5.023004 => {
11950         delta_from => 5.023003,
11951         changed => {
11952             'B'                     => '1.60',
11953             'B::Op_private'         => '5.023004',
11954             'Compress::Raw::Bzip2'  => '2.069',
11955             'Compress::Raw::Zlib'   => '2.069',
11956             'Compress::Zlib'        => '2.069',
11957             'Config'                => '5.023004',
11958             'Devel::PPPort'         => '3.32',
11959             'DynaLoader'            => '1.35',
11960             'Encode'                => '2.78',
11961             'ExtUtils::CBuilder'    => '0.280224',
11962             'ExtUtils::CBuilder::Base'=> '0.280224',
11963             'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
11964             'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
11965             'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
11966             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
11967             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
11968             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
11969             'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
11970             'ExtUtils::CBuilder::Platform::android'=> '0.280224',
11971             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
11972             'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
11973             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
11974             'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
11975             'File::Path'            => '2.12',
11976             'IO'                    => '1.36',
11977             'IO::Compress::Adapter::Bzip2'=> '2.069',
11978             'IO::Compress::Adapter::Deflate'=> '2.069',
11979             'IO::Compress::Adapter::Identity'=> '2.069',
11980             'IO::Compress::Base'    => '2.069',
11981             'IO::Compress::Base::Common'=> '2.069',
11982             'IO::Compress::Bzip2'   => '2.069',
11983             'IO::Compress::Deflate' => '2.069',
11984             'IO::Compress::Gzip'    => '2.069',
11985             'IO::Compress::Gzip::Constants'=> '2.069',
11986             'IO::Compress::RawDeflate'=> '2.069',
11987             'IO::Compress::Zip'     => '2.069',
11988             'IO::Compress::Zip::Constants'=> '2.069',
11989             'IO::Compress::Zlib::Constants'=> '2.069',
11990             'IO::Compress::Zlib::Extra'=> '2.069',
11991             'IO::Poll'              => '0.10',
11992             'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
11993             'IO::Uncompress::Adapter::Identity'=> '2.069',
11994             'IO::Uncompress::Adapter::Inflate'=> '2.069',
11995             'IO::Uncompress::AnyInflate'=> '2.069',
11996             'IO::Uncompress::AnyUncompress'=> '2.069',
11997             'IO::Uncompress::Base'  => '2.069',
11998             'IO::Uncompress::Bunzip2'=> '2.069',
11999             'IO::Uncompress::Gunzip'=> '2.069',
12000             'IO::Uncompress::Inflate'=> '2.069',
12001             'IO::Uncompress::RawInflate'=> '2.069',
12002             'IO::Uncompress::Unzip' => '2.069',
12003             'Math::BigFloat'        => '1.999704',
12004             'Math::BigFloat::Trace' => '0.41',
12005             'Math::BigInt'          => '1.999704',
12006             'Math::BigInt::Calc'    => '1.999704',
12007             'Math::BigInt::CalcEmu' => '1.999704',
12008             'Math::BigInt::FastCalc'=> '0.34',
12009             'Math::BigInt::Trace'   => '0.41',
12010             'Module::CoreList'      => '5.20151020',
12011             'Module::CoreList::TieHashDelta'=> '5.20151020',
12012             'Module::CoreList::Utils'=> '5.20151020',
12013             'Module::Metadata'      => '1.000029',
12014             'POSIX'                 => '1.58',
12015             'Perl::OSType'          => '1.009',
12016             'PerlIO::encoding'      => '0.22',
12017             'Socket'                => '2.020_02',
12018             'Unicode::Normalize'    => '1.21',
12019             'XS::APItest'           => '0.76',
12020             'bigint'                => '0.41',
12021             'bignum'                => '0.41',
12022             'bigrat'                => '0.41',
12023             'experimental'          => '0.016',
12024             'if'                    => '0.0606',
12025             'warnings'              => '1.35',
12026         },
12027         removed => {
12028         }
12029     },
12030     5.023005 => {
12031         delta_from => 5.023004,
12032         changed => {
12033             'B'                     => '1.61',
12034             'B::Op_private'         => '5.023005',
12035             'Carp'                  => '1.38',
12036             'Carp::Heavy'           => '1.38',
12037             'Config'                => '5.023005',
12038             'Config::Perl::V'       => '0.25',
12039             'Cwd'                   => '3.59',
12040             'Devel::Peek'           => '1.23',
12041             'Dumpvalue'             => '1.18',
12042             'DynaLoader'            => '1.36',
12043             'File::Find'            => '1.32',
12044             'File::Spec'            => '3.59',
12045             'File::Spec::AmigaOS'   => '3.59',
12046             'File::Spec::Cygwin'    => '3.59',
12047             'File::Spec::Epoc'      => '3.59',
12048             'File::Spec::Functions' => '3.59',
12049             'File::Spec::Mac'       => '3.59',
12050             'File::Spec::OS2'       => '3.59',
12051             'File::Spec::Unix'      => '3.59',
12052             'File::Spec::VMS'       => '3.59',
12053             'File::Spec::Win32'     => '3.59',
12054             'Getopt::Long'          => '2.48',
12055             'Hash::Util::FieldHash' => '1.18',
12056             'IPC::Open3'            => '1.20',
12057             'Math::BigFloat'        => '1.999710',
12058             'Math::BigInt'          => '1.999710',
12059             'Math::BigInt::Calc'    => '1.999710',
12060             'Math::BigInt::CalcEmu' => '1.999710',
12061             'Math::BigInt::FastCalc'=> '0.37',
12062             'Module::CoreList'      => '5.20151120',
12063             'Module::CoreList::TieHashDelta'=> '5.20151120',
12064             'Module::CoreList::Utils'=> '5.20151120',
12065             'Module::Metadata'      => '1.000030',
12066             'POSIX'                 => '1.59',
12067             'PerlIO::encoding'      => '0.23',
12068             'PerlIO::mmap'          => '0.015',
12069             'PerlIO::scalar'        => '0.24',
12070             'PerlIO::via'           => '0.16',
12071             'Pod::Simple'           => '3.32',
12072             'Pod::Simple::BlackBox' => '3.32',
12073             'Pod::Simple::Checker'  => '3.32',
12074             'Pod::Simple::Debug'    => '3.32',
12075             'Pod::Simple::DumpAsText'=> '3.32',
12076             'Pod::Simple::DumpAsXML'=> '3.32',
12077             'Pod::Simple::HTML'     => '3.32',
12078             'Pod::Simple::HTMLBatch'=> '3.32',
12079             'Pod::Simple::LinkSection'=> '3.32',
12080             'Pod::Simple::Methody'  => '3.32',
12081             'Pod::Simple::Progress' => '3.32',
12082             'Pod::Simple::PullParser'=> '3.32',
12083             'Pod::Simple::PullParserEndToken'=> '3.32',
12084             'Pod::Simple::PullParserStartToken'=> '3.32',
12085             'Pod::Simple::PullParserTextToken'=> '3.32',
12086             'Pod::Simple::PullParserToken'=> '3.32',
12087             'Pod::Simple::RTF'      => '3.32',
12088             'Pod::Simple::Search'   => '3.32',
12089             'Pod::Simple::SimpleTree'=> '3.32',
12090             'Pod::Simple::Text'     => '3.32',
12091             'Pod::Simple::TextContent'=> '3.32',
12092             'Pod::Simple::TiedOutFH'=> '3.32',
12093             'Pod::Simple::Transcode'=> '3.32',
12094             'Pod::Simple::TranscodeDumb'=> '3.32',
12095             'Pod::Simple::TranscodeSmart'=> '3.32',
12096             'Pod::Simple::XHTML'    => '3.32',
12097             'Pod::Simple::XMLOutStream'=> '3.32',
12098             'Thread::Queue'         => '3.07',
12099             'Tie::Scalar'           => '1.04',
12100             'Time::HiRes'           => '1.9728',
12101             'Time::Piece'           => '1.31',
12102             'Time::Seconds'         => '1.31',
12103             'Unicode::Normalize'    => '1.23',
12104             'XSLoader'              => '0.21',
12105             'arybase'               => '0.11',
12106             'base'                  => '2.22_01',
12107             'fields'                => '2.22_01',
12108             'threads'               => '2.04',
12109             'threads::shared'       => '1.49',
12110         },
12111         removed => {
12112             'ExtUtils::MakeMaker::version::vpp'=> 1,
12113             'version::vpp'          => 1,
12114         }
12115     },
12116     5.022001 => {
12117         delta_from => 5.022,
12118         changed => {
12119             'B::Op_private'         => '5.022001',
12120             'Config'                => '5.022001',
12121             'Module::CoreList'      => '5.20151213',
12122             'Module::CoreList::TieHashDelta'=> '5.20151213',
12123             'Module::CoreList::Utils'=> '5.20151213',
12124             'POSIX'                 => '1.53_01',
12125             'PerlIO::scalar'        => '0.23',
12126             'Storable'              => '2.53_01',
12127             'Win32'                 => '0.52',
12128             'warnings'              => '1.34',
12129         },
12130         removed => {
12131         }
12132     },
12133     5.023006 => {
12134         delta_from => 5.023005,
12135         changed => {
12136             'B::Deparse'            => '1.36',
12137             'B::Op_private'         => '5.023006',
12138             'Benchmark'             => '1.21',
12139             'CPAN::Meta::Requirements'=> '2.140',
12140             'CPAN::Meta::YAML'      => '0.018',
12141             'Config'                => '5.023006',
12142             'Cwd'                   => '3.60',
12143             'Data::Dumper'          => '2.159',
12144             'DynaLoader'            => '1.37',
12145             'File::Spec'            => '3.60',
12146             'File::Spec::AmigaOS'   => '3.60',
12147             'File::Spec::Cygwin'    => '3.60',
12148             'File::Spec::Epoc'      => '3.60',
12149             'File::Spec::Functions' => '3.60',
12150             'File::Spec::Mac'       => '3.60',
12151             'File::Spec::OS2'       => '3.60',
12152             'File::Spec::Unix'      => '3.60',
12153             'File::Spec::VMS'       => '3.60',
12154             'File::Spec::Win32'     => '3.60',
12155             'Hash::Util::FieldHash' => '1.19',
12156             'Locale::Codes'         => '3.37',
12157             'Locale::Codes::Constants'=> '3.37',
12158             'Locale::Codes::Country'=> '3.37',
12159             'Locale::Codes::Country_Codes'=> '3.37',
12160             'Locale::Codes::Country_Retired'=> '3.37',
12161             'Locale::Codes::Currency'=> '3.37',
12162             'Locale::Codes::Currency_Codes'=> '3.37',
12163             'Locale::Codes::Currency_Retired'=> '3.37',
12164             'Locale::Codes::LangExt'=> '3.37',
12165             'Locale::Codes::LangExt_Codes'=> '3.37',
12166             'Locale::Codes::LangExt_Retired'=> '3.37',
12167             'Locale::Codes::LangFam'=> '3.37',
12168             'Locale::Codes::LangFam_Codes'=> '3.37',
12169             'Locale::Codes::LangFam_Retired'=> '3.37',
12170             'Locale::Codes::LangVar'=> '3.37',
12171             'Locale::Codes::LangVar_Codes'=> '3.37',
12172             'Locale::Codes::LangVar_Retired'=> '3.37',
12173             'Locale::Codes::Language'=> '3.37',
12174             'Locale::Codes::Language_Codes'=> '3.37',
12175             'Locale::Codes::Language_Retired'=> '3.37',
12176             'Locale::Codes::Script' => '3.37',
12177             'Locale::Codes::Script_Codes'=> '3.37',
12178             'Locale::Codes::Script_Retired'=> '3.37',
12179             'Locale::Country'       => '3.37',
12180             'Locale::Currency'      => '3.37',
12181             'Locale::Language'      => '3.37',
12182             'Locale::Script'        => '3.37',
12183             'Math::BigInt::FastCalc'=> '0.38',
12184             'Module::CoreList'      => '5.20151220',
12185             'Module::CoreList::TieHashDelta'=> '5.20151220',
12186             'Module::CoreList::Utils'=> '5.20151220',
12187             'Module::Metadata'      => '1.000031',
12188             'Opcode'                => '1.34',
12189             'PerlIO::mmap'          => '0.016',
12190             'Pod::Perldoc'          => '3.25_02',
12191             'SDBM_File'             => '1.14',
12192             'Term::ANSIColor'       => '4.04',
12193             'Test'                  => '1.28',
12194             'Unicode::Normalize'    => '1.24',
12195             'XS::APItest'           => '0.77',
12196             'base'                  => '2.23',
12197             'encoding::warnings'    => '0.12',
12198             'fields'                => '2.23',
12199             'locale'                => '1.08',
12200             'strict'                => '1.10',
12201             'threads'               => '2.05',
12202             'threads::shared'       => '1.50',
12203             'utf8'                  => '1.18',
12204         },
12205         removed => {
12206         }
12207     },
12208     5.023007 => {
12209         delta_from => 5.023006,
12210         changed => {
12211             'App::Prove'            => '3.36',
12212             'App::Prove::State'     => '3.36',
12213             'App::Prove::State::Result'=> '3.36',
12214             'App::Prove::State::Result::Test'=> '3.36',
12215             'B'                     => '1.62',
12216             'B::Deparse'            => '1.37',
12217             'B::Op_private'         => '5.023007',
12218             'Benchmark'             => '1.22',
12219             'Config'                => '5.023007',
12220             'Cwd'                   => '3.62',
12221             'Data::Dumper'          => '2.160',
12222             'ExtUtils::ParseXS'     => '3.31',
12223             'ExtUtils::ParseXS::Constants'=> '3.31',
12224             'ExtUtils::ParseXS::CountLines'=> '3.31',
12225             'ExtUtils::ParseXS::Eval'=> '3.31',
12226             'ExtUtils::ParseXS::Utilities'=> '3.31',
12227             'ExtUtils::Typemaps'    => '3.31',
12228             'ExtUtils::Typemaps::Cmd'=> '3.31',
12229             'ExtUtils::Typemaps::InputMap'=> '3.31',
12230             'ExtUtils::Typemaps::OutputMap'=> '3.31',
12231             'ExtUtils::Typemaps::Type'=> '3.31',
12232             'File::Find'            => '1.33',
12233             'File::Spec'            => '3.62',
12234             'File::Spec::AmigaOS'   => '3.62',
12235             'File::Spec::Cygwin'    => '3.62',
12236             'File::Spec::Epoc'      => '3.62',
12237             'File::Spec::Functions' => '3.62',
12238             'File::Spec::Mac'       => '3.62',
12239             'File::Spec::OS2'       => '3.62',
12240             'File::Spec::Unix'      => '3.62',
12241             'File::Spec::VMS'       => '3.62',
12242             'File::Spec::Win32'     => '3.62',
12243             'Math::BigFloat'        => '1.999715',
12244             'Math::BigFloat::Trace' => '0.42',
12245             'Math::BigInt'          => '1.999715',
12246             'Math::BigInt::Calc'    => '1.999715',
12247             'Math::BigInt::CalcEmu' => '1.999715',
12248             'Math::BigInt::FastCalc'=> '0.40',
12249             'Math::BigInt::Trace'   => '0.42',
12250             'Math::BigRat'          => '0.260802',
12251             'Module::CoreList'      => '5.20160120',
12252             'Module::CoreList::TieHashDelta'=> '5.20160120',
12253             'Module::CoreList::Utils'=> '5.20160120',
12254             'Net::Cmd'              => '3.08',
12255             'Net::Config'           => '3.08',
12256             'Net::Domain'           => '3.08',
12257             'Net::FTP'              => '3.08',
12258             'Net::FTP::A'           => '3.08',
12259             'Net::FTP::E'           => '3.08',
12260             'Net::FTP::I'           => '3.08',
12261             'Net::FTP::L'           => '3.08',
12262             'Net::FTP::dataconn'    => '3.08',
12263             'Net::NNTP'             => '3.08',
12264             'Net::Netrc'            => '3.08',
12265             'Net::POP3'             => '3.08',
12266             'Net::SMTP'             => '3.08',
12267             'Net::Time'             => '3.08',
12268             'Pod::Man'              => '4.04',
12269             'Pod::ParseLink'        => '4.04',
12270             'Pod::Text'             => '4.04',
12271             'Pod::Text::Color'      => '4.04',
12272             'Pod::Text::Overstrike' => '4.04',
12273             'Pod::Text::Termcap'    => '4.04',
12274             'Pod::Usage'            => '1.68',
12275             'TAP::Base'             => '3.36',
12276             'TAP::Formatter::Base'  => '3.36',
12277             'TAP::Formatter::Color' => '3.36',
12278             'TAP::Formatter::Console'=> '3.36',
12279             'TAP::Formatter::Console::ParallelSession'=> '3.36',
12280             'TAP::Formatter::Console::Session'=> '3.36',
12281             'TAP::Formatter::File'  => '3.36',
12282             'TAP::Formatter::File::Session'=> '3.36',
12283             'TAP::Formatter::Session'=> '3.36',
12284             'TAP::Harness'          => '3.36',
12285             'TAP::Harness::Env'     => '3.36',
12286             'TAP::Object'           => '3.36',
12287             'TAP::Parser'           => '3.36',
12288             'TAP::Parser::Aggregator'=> '3.36',
12289             'TAP::Parser::Grammar'  => '3.36',
12290             'TAP::Parser::Iterator' => '3.36',
12291             'TAP::Parser::Iterator::Array'=> '3.36',
12292             'TAP::Parser::Iterator::Process'=> '3.36',
12293             'TAP::Parser::Iterator::Stream'=> '3.36',
12294             'TAP::Parser::IteratorFactory'=> '3.36',
12295             'TAP::Parser::Multiplexer'=> '3.36',
12296             'TAP::Parser::Result'   => '3.36',
12297             'TAP::Parser::Result::Bailout'=> '3.36',
12298             'TAP::Parser::Result::Comment'=> '3.36',
12299             'TAP::Parser::Result::Plan'=> '3.36',
12300             'TAP::Parser::Result::Pragma'=> '3.36',
12301             'TAP::Parser::Result::Test'=> '3.36',
12302             'TAP::Parser::Result::Unknown'=> '3.36',
12303             'TAP::Parser::Result::Version'=> '3.36',
12304             'TAP::Parser::Result::YAML'=> '3.36',
12305             'TAP::Parser::ResultFactory'=> '3.36',
12306             'TAP::Parser::Scheduler'=> '3.36',
12307             'TAP::Parser::Scheduler::Job'=> '3.36',
12308             'TAP::Parser::Scheduler::Spinner'=> '3.36',
12309             'TAP::Parser::Source'   => '3.36',
12310             'TAP::Parser::SourceHandler'=> '3.36',
12311             'TAP::Parser::SourceHandler::Executable'=> '3.36',
12312             'TAP::Parser::SourceHandler::File'=> '3.36',
12313             'TAP::Parser::SourceHandler::Handle'=> '3.36',
12314             'TAP::Parser::SourceHandler::Perl'=> '3.36',
12315             'TAP::Parser::SourceHandler::RawTAP'=> '3.36',
12316             'TAP::Parser::YAMLish::Reader'=> '3.36',
12317             'TAP::Parser::YAMLish::Writer'=> '3.36',
12318             'Test::Harness'         => '3.36',
12319             'Unicode::Normalize'    => '1.25',
12320             'Unicode::UCD'          => '0.64',
12321             'XS::APItest'           => '0.78',
12322             'bigint'                => '0.42',
12323             'bignum'                => '0.42',
12324             'bigrat'                => '0.42',
12325             'utf8'                  => '1.19',
12326         },
12327         removed => {
12328         }
12329     },
12330     5.023008 => {
12331         delta_from => 5.023007,
12332         changed => {
12333             'B::Op_private'         => '5.023008',
12334             'Config'                => '5.023008',
12335             'Cwd'                   => '3.63',
12336             'DynaLoader'            => '1.38',
12337             'Encode'                => '2.80',
12338             'Encode::Alias'         => '2.20',
12339             'Encode::MIME::Header'  => '2.19',
12340             'Encode::Unicode'       => '2.15',
12341             'ExtUtils::CBuilder'    => '0.280225',
12342             'ExtUtils::CBuilder::Base'=> '0.280225',
12343             'ExtUtils::CBuilder::Platform::Unix'=> '0.280225',
12344             'ExtUtils::CBuilder::Platform::VMS'=> '0.280225',
12345             'ExtUtils::CBuilder::Platform::Windows'=> '0.280225',
12346             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225',
12347             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225',
12348             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225',
12349             'ExtUtils::CBuilder::Platform::aix'=> '0.280225',
12350             'ExtUtils::CBuilder::Platform::android'=> '0.280225',
12351             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225',
12352             'ExtUtils::CBuilder::Platform::darwin'=> '0.280225',
12353             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225',
12354             'ExtUtils::CBuilder::Platform::os2'=> '0.280225',
12355             'ExtUtils::Command::MM' => '7.10_01',
12356             'ExtUtils::Liblist'     => '7.10_01',
12357             'ExtUtils::Liblist::Kid'=> '7.10_01',
12358             'ExtUtils::MM'          => '7.10_01',
12359             'ExtUtils::MM_AIX'      => '7.10_01',
12360             'ExtUtils::MM_Any'      => '7.10_01',
12361             'ExtUtils::MM_BeOS'     => '7.10_01',
12362             'ExtUtils::MM_Cygwin'   => '7.10_01',
12363             'ExtUtils::MM_DOS'      => '7.10_01',
12364             'ExtUtils::MM_Darwin'   => '7.10_01',
12365             'ExtUtils::MM_MacOS'    => '7.10_01',
12366             'ExtUtils::MM_NW5'      => '7.10_01',
12367             'ExtUtils::MM_OS2'      => '7.10_01',
12368             'ExtUtils::MM_QNX'      => '7.10_01',
12369             'ExtUtils::MM_UWIN'     => '7.10_01',
12370             'ExtUtils::MM_Unix'     => '7.10_01',
12371             'ExtUtils::MM_VMS'      => '7.10_01',
12372             'ExtUtils::MM_VOS'      => '7.10_01',
12373             'ExtUtils::MM_Win32'    => '7.10_01',
12374             'ExtUtils::MM_Win95'    => '7.10_01',
12375             'ExtUtils::MY'          => '7.10_01',
12376             'ExtUtils::MakeMaker'   => '7.10_01',
12377             'ExtUtils::MakeMaker::Config'=> '7.10_01',
12378             'ExtUtils::MakeMaker::version'=> '7.10_01',
12379             'ExtUtils::MakeMaker::version::regex'=> '7.10_01',
12380             'ExtUtils::Mkbootstrap' => '7.10_01',
12381             'ExtUtils::Mksymlists'  => '7.10_01',
12382             'ExtUtils::testlib'     => '7.10_01',
12383             'File::Spec'            => '3.63',
12384             'File::Spec::AmigaOS'   => '3.63',
12385             'File::Spec::Cygwin'    => '3.63',
12386             'File::Spec::Epoc'      => '3.63',
12387             'File::Spec::Functions' => '3.63',
12388             'File::Spec::Mac'       => '3.63',
12389             'File::Spec::OS2'       => '3.63',
12390             'File::Spec::Unix'      => '3.63',
12391             'File::Spec::VMS'       => '3.63',
12392             'File::Spec::Win32'     => '3.63',
12393             'IPC::Msg'              => '2.05',
12394             'IPC::Semaphore'        => '2.05',
12395             'IPC::SharedMem'        => '2.05',
12396             'IPC::SysV'             => '2.05',
12397             'Module::CoreList'      => '5.20160121',
12398             'Module::CoreList::TieHashDelta'=> '5.20160121',
12399             'Module::CoreList::Utils'=> '5.20160121',
12400             'ODBM_File'             => '1.13',
12401             'POSIX'                 => '1.63',
12402             'PerlIO::encoding'      => '0.24',
12403             'Pod::Man'              => '4.06',
12404             'Pod::ParseLink'        => '4.06',
12405             'Pod::Text'             => '4.06',
12406             'Pod::Text::Color'      => '4.06',
12407             'Pod::Text::Overstrike' => '4.06',
12408             'Pod::Text::Termcap'    => '4.06',
12409             'Storable'              => '2.55',
12410             'Time::HiRes'           => '1.9730',
12411             'XS::APItest'           => '0.79',
12412         },
12413         removed => {
12414         }
12415     },
12416     5.023009 => {
12417         delta_from => 5.023008,
12418         changed => {
12419             'Amiga::ARexx'          => '0.04',
12420             'Amiga::Exec'           => '0.02',
12421             'B::Op_private'         => '5.023009',
12422             'Carp'                  => '1.40',
12423             'Carp::Heavy'           => '1.40',
12424             'Config'                => '5.023009',
12425             'Errno'                 => '1.25',
12426             'ExtUtils::Embed'       => '1.33',
12427             'File::Find'            => '1.34',
12428             'File::Glob'            => '1.26',
12429             'File::Spec::AmigaOS'   => ';.64',
12430             'IPC::Msg'              => '2.06_01',
12431             'IPC::Semaphore'        => '2.06_01',
12432             'IPC::SharedMem'        => '2.06_01',
12433             'IPC::SysV'             => '2.06_01',
12434             'List::Util'            => '1.42_02',
12435             'List::Util::XS'        => '1.42_02',
12436             'Module::CoreList'      => '5.20160320',
12437             'Module::CoreList::TieHashDelta'=> '5.20160320',
12438             'Module::CoreList::Utils'=> '5.20160320',
12439             'POSIX'                 => '1.64',
12440             'Pod::Functions'        => '1.10',
12441             'Pod::Functions::Functions'=> '1.10',
12442             'Scalar::Util'          => '1.42_02',
12443             'SelfLoader'            => '1.23',
12444             'Socket'                => '2.020_03',
12445             'Storable'              => '2.56',
12446             'Sub::Util'             => '1.42_02',
12447             'Thread::Queue'         => '3.08',
12448             'Tie::File'             => '1.02',
12449             'Time::HiRes'           => '1.9732',
12450             'Win32API::File'        => '0.1203',
12451             'XS::APItest'           => '0.80',
12452             'autouse'               => '1.11',
12453             'bytes'                 => '1.05',
12454             'strict'                => '1.11',
12455             'threads'               => '2.06',
12456             'version'               => '0.9916',
12457             'version::regex'        => '0.9916',
12458             'warnings'              => '1.36',
12459         },
12460         removed => {
12461             'Win32API::File::ExtUtils::Myconst2perl'=> 1,
12462         }
12463     },
12464     5.022002 => {
12465         delta_from => 5.022001,
12466         changed => {
12467             'B::Op_private'         => '5.022002',
12468             'Config'                => '5.022002',
12469             'Cwd'                   => '3.56_01',
12470             'File::Spec'            => '3.56_01',
12471             'File::Spec::Cygwin'    => '3.56_01',
12472             'File::Spec::Epoc'      => '3.56_01',
12473             'File::Spec::Functions' => '3.56_01',
12474             'File::Spec::Mac'       => '3.56_01',
12475             'File::Spec::OS2'       => '3.56_01',
12476             'File::Spec::Unix'      => '3.56_01',
12477             'File::Spec::VMS'       => '3.56_01',
12478             'File::Spec::Win32'     => '3.56_01',
12479             'Module::CoreList'      => '5.20160429',
12480             'Module::CoreList::TieHashDelta'=> '5.20160429',
12481             'Module::CoreList::Utils'=> '5.20160429',
12482             'XS::APItest'           => '0.72_01',
12483         },
12484         removed => {
12485         }
12486     },
12487     5.024000 => {
12488         delta_from => 5.023009,
12489         changed => {
12490             'B::Op_private'         => '5.024000',
12491             'Config'                => '5.024',
12492             'File::Copy'            => '2.31',
12493             'File::Path'            => '2.12_01',
12494             'File::Spec::AmigaOS'   => '3.64',
12495             'IO::Handle'            => '1.36',
12496             'Module::CoreList'      => '5.20160506',
12497             'Module::CoreList::TieHashDelta'=> '5.20160506',
12498             'Module::CoreList::Utils'=> '5.20160506',
12499             'ODBM_File'             => '1.14',
12500             'POSIX'                 => '1.65',
12501             'Pod::Man'              => '4.07',
12502             'Pod::ParseLink'        => '4.07',
12503             'Pod::Text'             => '4.07',
12504             'Pod::Text::Color'      => '4.07',
12505             'Pod::Text::Overstrike' => '4.07',
12506             'Pod::Text::Termcap'    => '4.07',
12507             'Thread::Queue'         => '3.09',
12508             'Time::HiRes'           => '1.9733',
12509             'threads'               => '2.07',
12510             'threads::shared'       => '1.51',
12511             'locale'                => '1.09',
12512         },
12513         removed => {
12514         }
12515     },
12516     5.025000 => {
12517         delta_from => 5.024,
12518         changed => {
12519             'B::Op_private'         => '5.025000',
12520             'Config'                => '5.025',
12521             'Module::CoreList'      => '5.20160507',
12522             'Module::CoreList::TieHashDelta'=> '5.20160507',
12523             'Module::CoreList::Utils'=> '5.20160507',
12524             'feature'               => '1.43',
12525         },
12526         removed => {
12527         }
12528     },
12529     5.025001 => {
12530         delta_from => 5.025,
12531         changed => {
12532             'Archive::Tar'          => '2.08',
12533             'Archive::Tar::Constant'=> '2.08',
12534             'Archive::Tar::File'    => '2.08',
12535             'B::Op_private'         => '5.025001',
12536             'Carp'                  => '1.41',
12537             'Carp::Heavy'           => '1.41',
12538             'Config'                => '5.025001',
12539             'Config::Perl::V'       => '0.26',
12540             'DB_File'               => '1.838',
12541             'Digest::MD5'           => '2.55',
12542             'IPC::Cmd'              => '0.94',
12543             'IPC::Msg'              => '2.07',
12544             'IPC::Semaphore'        => '2.07',
12545             'IPC::SharedMem'        => '2.07',
12546             'IPC::SysV'             => '2.07',
12547             'List::Util'            => '1.45_01',
12548             'List::Util::XS'        => '1.45_01',
12549             'Locale::Codes'         => '3.38',
12550             'Locale::Codes::Constants'=> '3.38',
12551             'Locale::Codes::Country'=> '3.38',
12552             'Locale::Codes::Country_Codes'=> '3.38',
12553             'Locale::Codes::Country_Retired'=> '3.38',
12554             'Locale::Codes::Currency'=> '3.38',
12555             'Locale::Codes::Currency_Codes'=> '3.38',
12556             'Locale::Codes::Currency_Retired'=> '3.38',
12557             'Locale::Codes::LangExt'=> '3.38',
12558             'Locale::Codes::LangExt_Codes'=> '3.38',
12559             'Locale::Codes::LangExt_Retired'=> '3.38',
12560             'Locale::Codes::LangFam'=> '3.38',
12561             'Locale::Codes::LangFam_Codes'=> '3.38',
12562             'Locale::Codes::LangFam_Retired'=> '3.38',
12563             'Locale::Codes::LangVar'=> '3.38',
12564             'Locale::Codes::LangVar_Codes'=> '3.38',
12565             'Locale::Codes::LangVar_Retired'=> '3.38',
12566             'Locale::Codes::Language'=> '3.38',
12567             'Locale::Codes::Language_Codes'=> '3.38',
12568             'Locale::Codes::Language_Retired'=> '3.38',
12569             'Locale::Codes::Script' => '3.38',
12570             'Locale::Codes::Script_Codes'=> '3.38',
12571             'Locale::Codes::Script_Retired'=> '3.38',
12572             'Locale::Country'       => '3.38',
12573             'Locale::Currency'      => '3.38',
12574             'Locale::Language'      => '3.38',
12575             'Locale::Maketext'      => '1.27',
12576             'Locale::Script'        => '3.38',
12577             'Module::CoreList'      => '5.20160520',
12578             'Module::CoreList::TieHashDelta'=> '5.20160520',
12579             'Module::CoreList::Utils'=> '5.20160520',
12580             'Module::Metadata'      => '1.000032',
12581             'POSIX'                 => '1.69',
12582             'Scalar::Util'          => '1.45_01',
12583             'Sub::Util'             => '1.45_01',
12584             'Sys::Syslog'           => '0.34',
12585             'Term::ANSIColor'       => '4.05',
12586             'Test2'                 => '1.302015',
12587             'Test2::API'            => '1.302015',
12588             'Test2::API::Breakage'  => '1.302015',
12589             'Test2::API::Context'   => '1.302015',
12590             'Test2::API::Instance'  => '1.302015',
12591             'Test2::API::Stack'     => '1.302015',
12592             'Test2::Event'          => '1.302015',
12593             'Test2::Event::Bail'    => '1.302015',
12594             'Test2::Event::Diag'    => '1.302015',
12595             'Test2::Event::Exception'=> '1.302015',
12596             'Test2::Event::Note'    => '1.302015',
12597             'Test2::Event::Ok'      => '1.302015',
12598             'Test2::Event::Plan'    => '1.302015',
12599             'Test2::Event::Skip'    => '1.302015',
12600             'Test2::Event::Subtest' => '1.302015',
12601             'Test2::Event::Waiting' => '1.302015',
12602             'Test2::Formatter'      => '1.302015',
12603             'Test2::Formatter::TAP' => '1.302015',
12604             'Test2::Hub'            => '1.302015',
12605             'Test2::Hub::Interceptor'=> '1.302015',
12606             'Test2::Hub::Interceptor::Terminator'=> '1.302015',
12607             'Test2::Hub::Subtest'   => '1.302015',
12608             'Test2::IPC'            => '1.302015',
12609             'Test2::IPC::Driver'    => '1.302015',
12610             'Test2::IPC::Driver::Files'=> '1.302015',
12611             'Test2::Util'           => '1.302015',
12612             'Test2::Util::ExternalMeta'=> '1.302015',
12613             'Test2::Util::HashBase' => '1.302015',
12614             'Test2::Util::Trace'    => '1.302015',
12615             'Test::Builder'         => '1.302015',
12616             'Test::Builder::Formatter'=> '1.302015',
12617             'Test::Builder::Module' => '1.302015',
12618             'Test::Builder::Tester' => '1.302015',
12619             'Test::Builder::Tester::Color'=> '1.302015',
12620             'Test::Builder::TodoDiag'=> '1.302015',
12621             'Test::More'            => '1.302015',
12622             'Test::Simple'          => '1.302015',
12623             'Test::Tester'          => '1.302015',
12624             'Test::Tester::Capture' => '1.302015',
12625             'Test::Tester::CaptureRunner'=> '1.302015',
12626             'Test::Tester::Delegate'=> '1.302015',
12627             'Test::use::ok'         => '1.302015',
12628             'XS::APItest'           => '0.81',
12629             '_charnames'            => '1.44',
12630             'charnames'             => '1.44',
12631             'ok'                    => '1.302015',
12632             'perlfaq'               => '5.021011',
12633             're'                    => '0.33',
12634             'threads'               => '2.08',
12635             'threads::shared'       => '1.52',
12636         },
12637         removed => {
12638         }
12639     },
12640     5.025002 => {
12641         delta_from => 5.025001,
12642         changed => {
12643             'App::Cpan'             => '1.64',
12644             'B::Op_private'         => '5.025002',
12645             'CPAN'                  => '2.14',
12646             'CPAN::Distribution'    => '2.12',
12647             'CPAN::FTP'             => '5.5007',
12648             'CPAN::FirstTime'       => '5.5309',
12649             'CPAN::HandleConfig'    => '5.5007',
12650             'CPAN::Index'           => '2.12',
12651             'CPAN::Mirrors'         => '2.12',
12652             'CPAN::Plugin'          => '0.96',
12653             'CPAN::Shell'           => '5.5006',
12654             'Config'                => '5.025002',
12655             'Cwd'                   => '3.64',
12656             'Devel::Peek'           => '1.24',
12657             'DynaLoader'            => '1.39',
12658             'ExtUtils::Command'     => '7.18',
12659             'ExtUtils::Command::MM' => '7.18',
12660             'ExtUtils::Liblist'     => '7.18',
12661             'ExtUtils::Liblist::Kid'=> '7.18',
12662             'ExtUtils::MM'          => '7.18',
12663             'ExtUtils::MM_AIX'      => '7.18',
12664             'ExtUtils::MM_Any'      => '7.18',
12665             'ExtUtils::MM_BeOS'     => '7.18',
12666             'ExtUtils::MM_Cygwin'   => '7.18',
12667             'ExtUtils::MM_DOS'      => '7.18',
12668             'ExtUtils::MM_Darwin'   => '7.18',
12669             'ExtUtils::MM_MacOS'    => '7.18',
12670             'ExtUtils::MM_NW5'      => '7.18',
12671             'ExtUtils::MM_OS2'      => '7.18',
12672             'ExtUtils::MM_QNX'      => '7.18',
12673             'ExtUtils::MM_UWIN'     => '7.18',
12674             'ExtUtils::MM_Unix'     => '7.18',
12675             'ExtUtils::MM_VMS'      => '7.18',
12676             'ExtUtils::MM_VOS'      => '7.18',
12677             'ExtUtils::MM_Win32'    => '7.18',
12678             'ExtUtils::MM_Win95'    => '7.18',
12679             'ExtUtils::MY'          => '7.18',
12680             'ExtUtils::MakeMaker'   => '7.18',
12681             'ExtUtils::MakeMaker::Config'=> '7.18',
12682             'ExtUtils::MakeMaker::Locale'=> '7.18',
12683             'ExtUtils::MakeMaker::version'=> '7.18',
12684             'ExtUtils::MakeMaker::version::regex'=> '7.18',
12685             'ExtUtils::Miniperl'    => '1.06',
12686             'ExtUtils::Mkbootstrap' => '7.18',
12687             'ExtUtils::Mksymlists'  => '7.18',
12688             'ExtUtils::ParseXS'     => '3.32',
12689             'ExtUtils::ParseXS::Constants'=> '3.32',
12690             'ExtUtils::ParseXS::CountLines'=> '3.32',
12691             'ExtUtils::ParseXS::Eval'=> '3.32',
12692             'ExtUtils::ParseXS::Utilities'=> '3.32',
12693             'ExtUtils::Typemaps'    => '3.32',
12694             'ExtUtils::Typemaps::Cmd'=> '3.32',
12695             'ExtUtils::Typemaps::InputMap'=> '3.32',
12696             'ExtUtils::Typemaps::OutputMap'=> '3.32',
12697             'ExtUtils::Typemaps::Type'=> '3.32',
12698             'ExtUtils::testlib'     => '7.18',
12699             'File::Copy'            => '2.32',
12700             'File::Glob'            => '1.27',
12701             'File::Spec'            => '3.64',
12702             'File::Spec::Cygwin'    => '3.64',
12703             'File::Spec::Epoc'      => '3.64',
12704             'File::Spec::Functions' => '3.64',
12705             'File::Spec::Mac'       => '3.64',
12706             'File::Spec::OS2'       => '3.64',
12707             'File::Spec::Unix'      => '3.64',
12708             'File::Spec::VMS'       => '3.64',
12709             'File::Spec::Win32'     => '3.64',
12710             'FileHandle'            => '2.03',
12711             'Getopt::Long'          => '2.49',
12712             'HTTP::Tiny'            => '0.058',
12713             'JSON::PP'              => '2.27400',
12714             'Locale::Codes'         => '3.39',
12715             'Locale::Codes::Constants'=> '3.39',
12716             'Locale::Codes::Country'=> '3.39',
12717             'Locale::Codes::Country_Codes'=> '3.39',
12718             'Locale::Codes::Country_Retired'=> '3.39',
12719             'Locale::Codes::Currency'=> '3.39',
12720             'Locale::Codes::Currency_Codes'=> '3.39',
12721             'Locale::Codes::Currency_Retired'=> '3.39',
12722             'Locale::Codes::LangExt'=> '3.39',
12723             'Locale::Codes::LangExt_Codes'=> '3.39',
12724             'Locale::Codes::LangExt_Retired'=> '3.39',
12725             'Locale::Codes::LangFam'=> '3.39',
12726             'Locale::Codes::LangFam_Codes'=> '3.39',
12727             'Locale::Codes::LangFam_Retired'=> '3.39',
12728             'Locale::Codes::LangVar'=> '3.39',
12729             'Locale::Codes::LangVar_Codes'=> '3.39',
12730             'Locale::Codes::LangVar_Retired'=> '3.39',
12731             'Locale::Codes::Language'=> '3.39',
12732             'Locale::Codes::Language_Codes'=> '3.39',
12733             'Locale::Codes::Language_Retired'=> '3.39',
12734             'Locale::Codes::Script' => '3.39',
12735             'Locale::Codes::Script_Codes'=> '3.39',
12736             'Locale::Codes::Script_Retired'=> '3.39',
12737             'Locale::Country'       => '3.39',
12738             'Locale::Currency'      => '3.39',
12739             'Locale::Language'      => '3.39',
12740             'Locale::Script'        => '3.39',
12741             'Module::CoreList'      => '5.20160620',
12742             'Module::CoreList::TieHashDelta'=> '5.20160620',
12743             'Module::CoreList::Utils'=> '5.20160620',
12744             'Opcode'                => '1.35',
12745             'POSIX'                 => '1.70',
12746             'Pod::Checker'          => '1.73',
12747             'Pod::Functions'        => '1.11',
12748             'Pod::Functions::Functions'=> '1.11',
12749             'Pod::Usage'            => '1.69',
12750             'Test2'                 => '1.302026',
12751             'Test2::API'            => '1.302026',
12752             'Test2::API::Breakage'  => '1.302026',
12753             'Test2::API::Context'   => '1.302026',
12754             'Test2::API::Instance'  => '1.302026',
12755             'Test2::API::Stack'     => '1.302026',
12756             'Test2::Event'          => '1.302026',
12757             'Test2::Event::Bail'    => '1.302026',
12758             'Test2::Event::Diag'    => '1.302026',
12759             'Test2::Event::Exception'=> '1.302026',
12760             'Test2::Event::Generic' => '1.302026',
12761             'Test2::Event::Note'    => '1.302026',
12762             'Test2::Event::Ok'      => '1.302026',
12763             'Test2::Event::Plan'    => '1.302026',
12764             'Test2::Event::Skip'    => '1.302026',
12765             'Test2::Event::Subtest' => '1.302026',
12766             'Test2::Event::Waiting' => '1.302026',
12767             'Test2::Formatter'      => '1.302026',
12768             'Test2::Formatter::TAP' => '1.302026',
12769             'Test2::Hub'            => '1.302026',
12770             'Test2::Hub::Interceptor'=> '1.302026',
12771             'Test2::Hub::Interceptor::Terminator'=> '1.302026',
12772             'Test2::Hub::Subtest'   => '1.302026',
12773             'Test2::IPC'            => '1.302026',
12774             'Test2::IPC::Driver'    => '1.302026',
12775             'Test2::IPC::Driver::Files'=> '1.302026',
12776             'Test2::Util'           => '1.302026',
12777             'Test2::Util::ExternalMeta'=> '1.302026',
12778             'Test2::Util::HashBase' => '1.302026',
12779             'Test2::Util::Trace'    => '1.302026',
12780             'Test::Builder'         => '1.302026',
12781             'Test::Builder::Formatter'=> '1.302026',
12782             'Test::Builder::Module' => '1.302026',
12783             'Test::Builder::Tester' => '1.302026',
12784             'Test::Builder::Tester::Color'=> '1.302026',
12785             'Test::Builder::TodoDiag'=> '1.302026',
12786             'Test::More'            => '1.302026',
12787             'Test::Simple'          => '1.302026',
12788             'Test::Tester'          => '1.302026',
12789             'Test::Tester::Capture' => '1.302026',
12790             'Test::Tester::CaptureRunner'=> '1.302026',
12791             'Test::Tester::Delegate'=> '1.302026',
12792             'Test::use::ok'         => '1.302026',
12793             'Thread::Queue'         => '3.11',
12794             'Time::HiRes'           => '1.9734',
12795             'Unicode::UCD'          => '0.65',
12796             'VMS::DCLsym'           => '1.07',
12797             'XS::APItest'           => '0.82',
12798             'diagnostics'           => '1.35',
12799             'feature'               => '1.44',
12800             'ok'                    => '1.302026',
12801             'threads'               => '2.09',
12802         },
12803         removed => {
12804         }
12805     },
12806     5.025003 => {
12807         delta_from => 5.025002,
12808         changed => {
12809             'B::Op_private'         => '5.025003',
12810             'Config'                => '5.025003',
12811             'Data::Dumper'          => '2.161',
12812             'Devel::PPPort'         => '3.35',
12813             'Encode'                => '2.84',
12814             'Encode::MIME::Header'  => '2.23',
12815             'Encode::MIME::Header::ISO_2022_JP'=> '1.07',
12816             'ExtUtils::ParseXS'     => '3.33',
12817             'ExtUtils::ParseXS::Constants'=> '3.33',
12818             'ExtUtils::ParseXS::CountLines'=> '3.33',
12819             'ExtUtils::ParseXS::Eval'=> '3.33',
12820             'ExtUtils::ParseXS::Utilities'=> '3.33',
12821             'ExtUtils::Typemaps'    => '3.33',
12822             'ExtUtils::Typemaps::Cmd'=> '3.33',
12823             'ExtUtils::Typemaps::InputMap'=> '3.33',
12824             'ExtUtils::Typemaps::OutputMap'=> '3.33',
12825             'ExtUtils::Typemaps::Type'=> '3.33',
12826             'Hash::Util'            => '0.20',
12827             'Math::BigFloat'        => '1.999726',
12828             'Math::BigFloat::Trace' => '0.43',
12829             'Math::BigInt'          => '1.999726',
12830             'Math::BigInt::Calc'    => '1.999726',
12831             'Math::BigInt::CalcEmu' => '1.999726',
12832             'Math::BigInt::FastCalc'=> '0.42',
12833             'Math::BigInt::Trace'   => '0.43',
12834             'Math::BigRat'          => '0.260804',
12835             'Module::CoreList'      => '5.20160720',
12836             'Module::CoreList::TieHashDelta'=> '5.20160720',
12837             'Module::CoreList::Utils'=> '5.20160720',
12838             'Net::Cmd'              => '3.09',
12839             'Net::Config'           => '3.09',
12840             'Net::Domain'           => '3.09',
12841             'Net::FTP'              => '3.09',
12842             'Net::FTP::A'           => '3.09',
12843             'Net::FTP::E'           => '3.09',
12844             'Net::FTP::I'           => '3.09',
12845             'Net::FTP::L'           => '3.09',
12846             'Net::FTP::dataconn'    => '3.09',
12847             'Net::NNTP'             => '3.09',
12848             'Net::Netrc'            => '3.09',
12849             'Net::POP3'             => '3.09',
12850             'Net::SMTP'             => '3.09',
12851             'Net::Time'             => '3.09',
12852             'Parse::CPAN::Meta'     => '1.4422',
12853             'Perl::OSType'          => '1.010',
12854             'Test2'                 => '1.302045',
12855             'Test2::API'            => '1.302045',
12856             'Test2::API::Breakage'  => '1.302045',
12857             'Test2::API::Context'   => '1.302045',
12858             'Test2::API::Instance'  => '1.302045',
12859             'Test2::API::Stack'     => '1.302045',
12860             'Test2::Event'          => '1.302045',
12861             'Test2::Event::Bail'    => '1.302045',
12862             'Test2::Event::Diag'    => '1.302045',
12863             'Test2::Event::Exception'=> '1.302045',
12864             'Test2::Event::Generic' => '1.302045',
12865             'Test2::Event::Info'    => '1.302045',
12866             'Test2::Event::Note'    => '1.302045',
12867             'Test2::Event::Ok'      => '1.302045',
12868             'Test2::Event::Plan'    => '1.302045',
12869             'Test2::Event::Skip'    => '1.302045',
12870             'Test2::Event::Subtest' => '1.302045',
12871             'Test2::Event::Waiting' => '1.302045',
12872             'Test2::Formatter'      => '1.302045',
12873             'Test2::Formatter::TAP' => '1.302045',
12874             'Test2::Hub'            => '1.302045',
12875             'Test2::Hub::Interceptor'=> '1.302045',
12876             'Test2::Hub::Interceptor::Terminator'=> '1.302045',
12877             'Test2::Hub::Subtest'   => '1.302045',
12878             'Test2::IPC'            => '1.302045',
12879             'Test2::IPC::Driver'    => '1.302045',
12880             'Test2::IPC::Driver::Files'=> '1.302045',
12881             'Test2::Util'           => '1.302045',
12882             'Test2::Util::ExternalMeta'=> '1.302045',
12883             'Test2::Util::HashBase' => '1.302045',
12884             'Test2::Util::Trace'    => '1.302045',
12885             'Test::Builder'         => '1.302045',
12886             'Test::Builder::Formatter'=> '1.302045',
12887             'Test::Builder::Module' => '1.302045',
12888             'Test::Builder::Tester' => '1.302045',
12889             'Test::Builder::Tester::Color'=> '1.302045',
12890             'Test::Builder::TodoDiag'=> '1.302045',
12891             'Test::More'            => '1.302045',
12892             'Test::Simple'          => '1.302045',
12893             'Test::Tester'          => '1.302045',
12894             'Test::Tester::Capture' => '1.302045',
12895             'Test::Tester::CaptureRunner'=> '1.302045',
12896             'Test::Tester::Delegate'=> '1.302045',
12897             'Test::use::ok'         => '1.302045',
12898             'Time::HiRes'           => '1.9739',
12899             'Unicode'               => '9.0.0',
12900             'Unicode::UCD'          => '0.66',
12901             'XSLoader'              => '0.22',
12902             'bigint'                => '0.43',
12903             'bignum'                => '0.43',
12904             'bigrat'                => '0.43',
12905             'encoding'              => '2.17_01',
12906             'encoding::warnings'    => '0.13',
12907             'feature'               => '1.45',
12908             'ok'                    => '1.302045',
12909             'version'               => '0.9917',
12910             'version::regex'        => '0.9917',
12911             'warnings'              => '1.37',
12912         },
12913         removed => {
12914         }
12915     },
12916     5.025004 => {
12917         delta_from => 5.025003,
12918         changed => {
12919             'App::Cpan'             => '1.64_01',
12920             'App::Prove'            => '3.36_01',
12921             'App::Prove::State'     => '3.36_01',
12922             'App::Prove::State::Result'=> '3.36_01',
12923             'App::Prove::State::Result::Test'=> '3.36_01',
12924             'Archive::Tar'          => '2.10',
12925             'Archive::Tar::Constant'=> '2.10',
12926             'Archive::Tar::File'    => '2.10',
12927             'B'                     => '1.63',
12928             'B::Concise'            => '0.998',
12929             'B::Deparse'            => '1.38',
12930             'B::Op_private'         => '5.025004',
12931             'CPAN'                  => '2.14_01',
12932             'CPAN::Meta'            => '2.150010',
12933             'CPAN::Meta::Converter' => '2.150010',
12934             'CPAN::Meta::Feature'   => '2.150010',
12935             'CPAN::Meta::History'   => '2.150010',
12936             'CPAN::Meta::Merge'     => '2.150010',
12937             'CPAN::Meta::Prereqs'   => '2.150010',
12938             'CPAN::Meta::Spec'      => '2.150010',
12939             'CPAN::Meta::Validator' => '2.150010',
12940             'Carp'                  => '1.42',
12941             'Carp::Heavy'           => '1.42',
12942             'Compress::Zlib'        => '2.069_01',
12943             'Config'                => '5.025004',
12944             'Config::Perl::V'       => '0.27',
12945             'Cwd'                   => '3.65',
12946             'Digest'                => '1.17_01',
12947             'Digest::SHA'           => '5.96',
12948             'Encode'                => '2.86',
12949             'Errno'                 => '1.26',
12950             'ExtUtils::Command'     => '7.24',
12951             'ExtUtils::Command::MM' => '7.24',
12952             'ExtUtils::Liblist'     => '7.24',
12953             'ExtUtils::Liblist::Kid'=> '7.24',
12954             'ExtUtils::MM'          => '7.24',
12955             'ExtUtils::MM_AIX'      => '7.24',
12956             'ExtUtils::MM_Any'      => '7.24',
12957             'ExtUtils::MM_BeOS'     => '7.24',
12958             'ExtUtils::MM_Cygwin'   => '7.24',
12959             'ExtUtils::MM_DOS'      => '7.24',
12960             'ExtUtils::MM_Darwin'   => '7.24',
12961             'ExtUtils::MM_MacOS'    => '7.24',
12962             'ExtUtils::MM_NW5'      => '7.24',
12963             'ExtUtils::MM_OS2'      => '7.24',
12964             'ExtUtils::MM_QNX'      => '7.24',
12965             'ExtUtils::MM_UWIN'     => '7.24',
12966             'ExtUtils::MM_Unix'     => '7.24',
12967             'ExtUtils::MM_VMS'      => '7.24',
12968             'ExtUtils::MM_VOS'      => '7.24',
12969             'ExtUtils::MM_Win32'    => '7.24',
12970             'ExtUtils::MM_Win95'    => '7.24',
12971             'ExtUtils::MY'          => '7.24',
12972             'ExtUtils::MakeMaker'   => '7.24',
12973             'ExtUtils::MakeMaker::Config'=> '7.24',
12974             'ExtUtils::MakeMaker::Locale'=> '7.24',
12975             'ExtUtils::MakeMaker::version'=> '7.24',
12976             'ExtUtils::MakeMaker::version::regex'=> '7.24',
12977             'ExtUtils::Mkbootstrap' => '7.24',
12978             'ExtUtils::Mksymlists'  => '7.24',
12979             'ExtUtils::testlib'     => '7.24',
12980             'File::Fetch'           => '0.52',
12981             'File::Spec'            => '3.65',
12982             'File::Spec::AmigaOS'   => '3.65',
12983             'File::Spec::Cygwin'    => '3.65',
12984             'File::Spec::Epoc'      => '3.65',
12985             'File::Spec::Functions' => '3.65',
12986             'File::Spec::Mac'       => '3.65',
12987             'File::Spec::OS2'       => '3.65',
12988             'File::Spec::Unix'      => '3.65',
12989             'File::Spec::VMS'       => '3.65',
12990             'File::Spec::Win32'     => '3.65',
12991             'HTTP::Tiny'            => '0.064',
12992             'Hash::Util'            => '0.21',
12993             'I18N::LangTags'        => '0.41',
12994             'I18N::LangTags::Detect'=> '1.06',
12995             'IO'                    => '1.37',
12996             'IO::Compress::Adapter::Bzip2'=> '2.069_01',
12997             'IO::Compress::Adapter::Deflate'=> '2.069_01',
12998             'IO::Compress::Adapter::Identity'=> '2.069_01',
12999             'IO::Compress::Base'    => '2.069_01',
13000             'IO::Compress::Base::Common'=> '2.069_01',
13001             'IO::Compress::Bzip2'   => '2.069_01',
13002             'IO::Compress::Deflate' => '2.069_01',
13003             'IO::Compress::Gzip'    => '2.069_01',
13004             'IO::Compress::Gzip::Constants'=> '2.069_01',
13005             'IO::Compress::RawDeflate'=> '2.069_01',
13006             'IO::Compress::Zip'     => '2.069_01',
13007             'IO::Compress::Zip::Constants'=> '2.069_01',
13008             'IO::Compress::Zlib::Constants'=> '2.069_01',
13009             'IO::Compress::Zlib::Extra'=> '2.069_01',
13010             'IO::Socket::IP'        => '0.38',
13011             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_01',
13012             'IO::Uncompress::Adapter::Identity'=> '2.069_01',
13013             'IO::Uncompress::Adapter::Inflate'=> '2.069_01',
13014             'IO::Uncompress::AnyInflate'=> '2.069_01',
13015             'IO::Uncompress::AnyUncompress'=> '2.069_01',
13016             'IO::Uncompress::Base'  => '2.069_01',
13017             'IO::Uncompress::Bunzip2'=> '2.069_01',
13018             'IO::Uncompress::Gunzip'=> '2.069_01',
13019             'IO::Uncompress::Inflate'=> '2.069_01',
13020             'IO::Uncompress::RawInflate'=> '2.069_01',
13021             'IO::Uncompress::Unzip' => '2.069_01',
13022             'IPC::Cmd'              => '0.96',
13023             'JSON::PP'              => '2.27400_01',
13024             'Locale::Maketext'      => '1.28',
13025             'Locale::Maketext::Simple'=> '0.21_01',
13026             'Math::BigFloat::Trace' => '0.43_01',
13027             'Math::BigInt::Trace'   => '0.43_01',
13028             'Memoize'               => '1.03_01',
13029             'Module::CoreList'      => '5.20160820',
13030             'Module::CoreList::TieHashDelta'=> '5.20160820',
13031             'Module::CoreList::Utils'=> '5.20160820',
13032             'Module::Load::Conditional'=> '0.68',
13033             'Module::Metadata'      => '1.000033',
13034             'NEXT'                  => '0.67',
13035             'Net::Cmd'              => '3.10',
13036             'Net::Config'           => '3.10',
13037             'Net::Domain'           => '3.10',
13038             'Net::FTP'              => '3.10',
13039             'Net::FTP::A'           => '3.10',
13040             'Net::FTP::E'           => '3.10',
13041             'Net::FTP::I'           => '3.10',
13042             'Net::FTP::L'           => '3.10',
13043             'Net::FTP::dataconn'    => '3.10',
13044             'Net::NNTP'             => '3.10',
13045             'Net::Netrc'            => '3.10',
13046             'Net::POP3'             => '3.10',
13047             'Net::Ping'             => '2.44',
13048             'Net::SMTP'             => '3.10',
13049             'Net::Time'             => '3.10',
13050             'Opcode'                => '1.37',
13051             'POSIX'                 => '1.71',
13052             'Parse::CPAN::Meta'     => '2.150010',
13053             'Pod::Html'             => '1.2201',
13054             'Pod::Perldoc'          => '3.27',
13055             'Pod::Perldoc::BaseTo'  => '3.27',
13056             'Pod::Perldoc::GetOptsOO'=> '3.27',
13057             'Pod::Perldoc::ToANSI'  => '3.27',
13058             'Pod::Perldoc::ToChecker'=> '3.27',
13059             'Pod::Perldoc::ToMan'   => '3.27',
13060             'Pod::Perldoc::ToNroff' => '3.27',
13061             'Pod::Perldoc::ToPod'   => '3.27',
13062             'Pod::Perldoc::ToRtf'   => '3.27',
13063             'Pod::Perldoc::ToTerm'  => '3.27',
13064             'Pod::Perldoc::ToText'  => '3.27',
13065             'Pod::Perldoc::ToTk'    => '3.27',
13066             'Pod::Perldoc::ToXml'   => '3.27',
13067             'Storable'              => '2.57',
13068             'Sys::Syslog'           => '0.34_01',
13069             'TAP::Base'             => '3.36_01',
13070             'TAP::Formatter::Base'  => '3.36_01',
13071             'TAP::Formatter::Color' => '3.36_01',
13072             'TAP::Formatter::Console'=> '3.36_01',
13073             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13074             'TAP::Formatter::Console::Session'=> '3.36_01',
13075             'TAP::Formatter::File'  => '3.36_01',
13076             'TAP::Formatter::File::Session'=> '3.36_01',
13077             'TAP::Formatter::Session'=> '3.36_01',
13078             'TAP::Harness'          => '3.36_01',
13079             'TAP::Harness::Env'     => '3.36_01',
13080             'TAP::Object'           => '3.36_01',
13081             'TAP::Parser'           => '3.36_01',
13082             'TAP::Parser::Aggregator'=> '3.36_01',
13083             'TAP::Parser::Grammar'  => '3.36_01',
13084             'TAP::Parser::Iterator' => '3.36_01',
13085             'TAP::Parser::Iterator::Array'=> '3.36_01',
13086             'TAP::Parser::Iterator::Process'=> '3.36_01',
13087             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13088             'TAP::Parser::IteratorFactory'=> '3.36_01',
13089             'TAP::Parser::Multiplexer'=> '3.36_01',
13090             'TAP::Parser::Result'   => '3.36_01',
13091             'TAP::Parser::Result::Bailout'=> '3.36_01',
13092             'TAP::Parser::Result::Comment'=> '3.36_01',
13093             'TAP::Parser::Result::Plan'=> '3.36_01',
13094             'TAP::Parser::Result::Pragma'=> '3.36_01',
13095             'TAP::Parser::Result::Test'=> '3.36_01',
13096             'TAP::Parser::Result::Unknown'=> '3.36_01',
13097             'TAP::Parser::Result::Version'=> '3.36_01',
13098             'TAP::Parser::Result::YAML'=> '3.36_01',
13099             'TAP::Parser::ResultFactory'=> '3.36_01',
13100             'TAP::Parser::Scheduler'=> '3.36_01',
13101             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13102             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13103             'TAP::Parser::Source'   => '3.36_01',
13104             'TAP::Parser::SourceHandler'=> '3.36_01',
13105             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13106             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13107             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13108             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13109             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13110             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13111             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13112             'Test'                  => '1.29',
13113             'Test2'                 => '1.302052',
13114             'Test2::API'            => '1.302052',
13115             'Test2::API::Breakage'  => '1.302052',
13116             'Test2::API::Context'   => '1.302052',
13117             'Test2::API::Instance'  => '1.302052',
13118             'Test2::API::Stack'     => '1.302052',
13119             'Test2::Event'          => '1.302052',
13120             'Test2::Event::Bail'    => '1.302052',
13121             'Test2::Event::Diag'    => '1.302052',
13122             'Test2::Event::Exception'=> '1.302052',
13123             'Test2::Event::Generic' => '1.302052',
13124             'Test2::Event::Info'    => '1.302052',
13125             'Test2::Event::Note'    => '1.302052',
13126             'Test2::Event::Ok'      => '1.302052',
13127             'Test2::Event::Plan'    => '1.302052',
13128             'Test2::Event::Skip'    => '1.302052',
13129             'Test2::Event::Subtest' => '1.302052',
13130             'Test2::Event::Waiting' => '1.302052',
13131             'Test2::Formatter'      => '1.302052',
13132             'Test2::Formatter::TAP' => '1.302052',
13133             'Test2::Hub'            => '1.302052',
13134             'Test2::Hub::Interceptor'=> '1.302052',
13135             'Test2::Hub::Interceptor::Terminator'=> '1.302052',
13136             'Test2::Hub::Subtest'   => '1.302052',
13137             'Test2::IPC'            => '1.302052',
13138             'Test2::IPC::Driver'    => '1.302052',
13139             'Test2::IPC::Driver::Files'=> '1.302052',
13140             'Test2::Util'           => '1.302052',
13141             'Test2::Util::ExternalMeta'=> '1.302052',
13142             'Test2::Util::HashBase' => '1.302052',
13143             'Test2::Util::Trace'    => '1.302052',
13144             'Test::Builder'         => '1.302052',
13145             'Test::Builder::Formatter'=> '1.302052',
13146             'Test::Builder::Module' => '1.302052',
13147             'Test::Builder::Tester' => '1.302052',
13148             'Test::Builder::Tester::Color'=> '1.302052',
13149             'Test::Builder::TodoDiag'=> '1.302052',
13150             'Test::Harness'         => '3.36_01',
13151             'Test::More'            => '1.302052',
13152             'Test::Simple'          => '1.302052',
13153             'Test::Tester'          => '1.302052',
13154             'Test::Tester::Capture' => '1.302052',
13155             'Test::Tester::CaptureRunner'=> '1.302052',
13156             'Test::Tester::Delegate'=> '1.302052',
13157             'Test::use::ok'         => '1.302052',
13158             'Tie::Hash::NamedCapture'=> '0.10',
13159             'Time::Local'           => '1.24',
13160             'XS::APItest'           => '0.83',
13161             'arybase'               => '0.12',
13162             'base'                  => '2.24',
13163             'bigint'                => '0.43_01',
13164             'bignum'                => '0.43_01',
13165             'bigrat'                => '0.43_01',
13166             'encoding'              => '2.18',
13167             'ok'                    => '1.302052',
13168         },
13169         removed => {
13170         }
13171     },
13172     5.025005 => {
13173         delta_from => 5.025004,
13174         changed => {
13175             'B::Op_private'         => '5.025005',
13176             'Config'                => '5.025005',
13177             'Filter::Simple'        => '0.93',
13178             'Locale::Codes'         => '3.40',
13179             'Locale::Codes::Constants'=> '3.40',
13180             'Locale::Codes::Country'=> '3.40',
13181             'Locale::Codes::Country_Codes'=> '3.40',
13182             'Locale::Codes::Country_Retired'=> '3.40',
13183             'Locale::Codes::Currency'=> '3.40',
13184             'Locale::Codes::Currency_Codes'=> '3.40',
13185             'Locale::Codes::Currency_Retired'=> '3.40',
13186             'Locale::Codes::LangExt'=> '3.40',
13187             'Locale::Codes::LangExt_Codes'=> '3.40',
13188             'Locale::Codes::LangExt_Retired'=> '3.40',
13189             'Locale::Codes::LangFam'=> '3.40',
13190             'Locale::Codes::LangFam_Codes'=> '3.40',
13191             'Locale::Codes::LangFam_Retired'=> '3.40',
13192             'Locale::Codes::LangVar'=> '3.40',
13193             'Locale::Codes::LangVar_Codes'=> '3.40',
13194             'Locale::Codes::LangVar_Retired'=> '3.40',
13195             'Locale::Codes::Language'=> '3.40',
13196             'Locale::Codes::Language_Codes'=> '3.40',
13197             'Locale::Codes::Language_Retired'=> '3.40',
13198             'Locale::Codes::Script' => '3.40',
13199             'Locale::Codes::Script_Codes'=> '3.40',
13200             'Locale::Codes::Script_Retired'=> '3.40',
13201             'Locale::Country'       => '3.40',
13202             'Locale::Currency'      => '3.40',
13203             'Locale::Language'      => '3.40',
13204             'Locale::Script'        => '3.40',
13205             'Module::CoreList'      => '5.20160920',
13206             'Module::CoreList::TieHashDelta'=> '5.20160920',
13207             'Module::CoreList::Utils'=> '5.20160920',
13208             'POSIX'                 => '1.72',
13209             'Sys::Syslog'           => '0.35',
13210             'Test2'                 => '1.302056',
13211             'Test2::API'            => '1.302056',
13212             'Test2::API::Breakage'  => '1.302056',
13213             'Test2::API::Context'   => '1.302056',
13214             'Test2::API::Instance'  => '1.302056',
13215             'Test2::API::Stack'     => '1.302056',
13216             'Test2::Event'          => '1.302056',
13217             'Test2::Event::Bail'    => '1.302056',
13218             'Test2::Event::Diag'    => '1.302056',
13219             'Test2::Event::Exception'=> '1.302056',
13220             'Test2::Event::Generic' => '1.302056',
13221             'Test2::Event::Info'    => '1.302056',
13222             'Test2::Event::Note'    => '1.302056',
13223             'Test2::Event::Ok'      => '1.302056',
13224             'Test2::Event::Plan'    => '1.302056',
13225             'Test2::Event::Skip'    => '1.302056',
13226             'Test2::Event::Subtest' => '1.302056',
13227             'Test2::Event::Waiting' => '1.302056',
13228             'Test2::Formatter'      => '1.302056',
13229             'Test2::Formatter::TAP' => '1.302056',
13230             'Test2::Hub'            => '1.302056',
13231             'Test2::Hub::Interceptor'=> '1.302056',
13232             'Test2::Hub::Interceptor::Terminator'=> '1.302056',
13233             'Test2::Hub::Subtest'   => '1.302056',
13234             'Test2::IPC'            => '1.302056',
13235             'Test2::IPC::Driver'    => '1.302056',
13236             'Test2::IPC::Driver::Files'=> '1.302056',
13237             'Test2::Util'           => '1.302056',
13238             'Test2::Util::ExternalMeta'=> '1.302056',
13239             'Test2::Util::HashBase' => '1.302056',
13240             'Test2::Util::Trace'    => '1.302056',
13241             'Test::Builder'         => '1.302056',
13242             'Test::Builder::Formatter'=> '1.302056',
13243             'Test::Builder::Module' => '1.302056',
13244             'Test::Builder::Tester' => '1.302056',
13245             'Test::Builder::Tester::Color'=> '1.302056',
13246             'Test::Builder::TodoDiag'=> '1.302056',
13247             'Test::More'            => '1.302056',
13248             'Test::Simple'          => '1.302056',
13249             'Test::Tester'          => '1.302056',
13250             'Test::Tester::Capture' => '1.302056',
13251             'Test::Tester::CaptureRunner'=> '1.302056',
13252             'Test::Tester::Delegate'=> '1.302056',
13253             'Test::use::ok'         => '1.302056',
13254             'Thread::Semaphore'     => '2.13',
13255             'XS::APItest'           => '0.84',
13256             'XSLoader'              => '0.24',
13257             'ok'                    => '1.302056',
13258         },
13259         removed => {
13260         }
13261     },
13262     5.025006 => {
13263         delta_from => 5.025005,
13264         changed => {
13265             'Archive::Tar'          => '2.14',
13266             'Archive::Tar::Constant'=> '2.14',
13267             'Archive::Tar::File'    => '2.14',
13268             'B'                     => '1.64',
13269             'B::Concise'            => '0.999',
13270             'B::Deparse'            => '1.39',
13271             'B::Op_private'         => '5.025006',
13272             'Config'                => '5.025006',
13273             'Data::Dumper'          => '2.162',
13274             'Devel::Peek'           => '1.25',
13275             'HTTP::Tiny'            => '0.070',
13276             'List::Util'            => '1.46',
13277             'List::Util::XS'        => '1.46',
13278             'Module::CoreList'      => '5.20161020',
13279             'Module::CoreList::TieHashDelta'=> '5.20161020',
13280             'Module::CoreList::Utils'=> '5.20161020',
13281             'Net::Ping'             => '2.51',
13282             'OS2::DLL'              => '1.07',
13283             'Opcode'                => '1.38',
13284             'POSIX'                 => '1.73',
13285             'PerlIO::encoding'      => '0.25',
13286             'Pod::Man'              => '4.08',
13287             'Pod::ParseLink'        => '4.08',
13288             'Pod::Text'             => '4.08',
13289             'Pod::Text::Color'      => '4.08',
13290             'Pod::Text::Overstrike' => '4.08',
13291             'Pod::Text::Termcap'    => '4.08',
13292             'Scalar::Util'          => '1.46',
13293             'Storable'              => '2.58',
13294             'Sub::Util'             => '1.46',
13295             'Test2'                 => '1.302059',
13296             'Test2::API'            => '1.302059',
13297             'Test2::API::Breakage'  => '1.302059',
13298             'Test2::API::Context'   => '1.302059',
13299             'Test2::API::Instance'  => '1.302059',
13300             'Test2::API::Stack'     => '1.302059',
13301             'Test2::Event'          => '1.302059',
13302             'Test2::Event::Bail'    => '1.302059',
13303             'Test2::Event::Diag'    => '1.302059',
13304             'Test2::Event::Exception'=> '1.302059',
13305             'Test2::Event::Generic' => '1.302059',
13306             'Test2::Event::Info'    => '1.302059',
13307             'Test2::Event::Note'    => '1.302059',
13308             'Test2::Event::Ok'      => '1.302059',
13309             'Test2::Event::Plan'    => '1.302059',
13310             'Test2::Event::Skip'    => '1.302059',
13311             'Test2::Event::Subtest' => '1.302059',
13312             'Test2::Event::Waiting' => '1.302059',
13313             'Test2::Formatter'      => '1.302059',
13314             'Test2::Formatter::TAP' => '1.302059',
13315             'Test2::Hub'            => '1.302059',
13316             'Test2::Hub::Interceptor'=> '1.302059',
13317             'Test2::Hub::Interceptor::Terminator'=> '1.302059',
13318             'Test2::Hub::Subtest'   => '1.302059',
13319             'Test2::IPC'            => '1.302059',
13320             'Test2::IPC::Driver'    => '1.302059',
13321             'Test2::IPC::Driver::Files'=> '1.302059',
13322             'Test2::Util'           => '1.302059',
13323             'Test2::Util::ExternalMeta'=> '1.302059',
13324             'Test2::Util::HashBase' => '1.302059',
13325             'Test2::Util::Trace'    => '1.302059',
13326             'Test::Builder'         => '1.302059',
13327             'Test::Builder::Formatter'=> '1.302059',
13328             'Test::Builder::Module' => '1.302059',
13329             'Test::Builder::Tester' => '1.302059',
13330             'Test::Builder::Tester::Color'=> '1.302059',
13331             'Test::Builder::TodoDiag'=> '1.302059',
13332             'Test::More'            => '1.302059',
13333             'Test::Simple'          => '1.302059',
13334             'Test::Tester'          => '1.302059',
13335             'Test::Tester::Capture' => '1.302059',
13336             'Test::Tester::CaptureRunner'=> '1.302059',
13337             'Test::Tester::Delegate'=> '1.302059',
13338             'Test::use::ok'         => '1.302059',
13339             'Time::HiRes'           => '1.9740_01',
13340             'VMS::Stdio'            => '2.42',
13341             'XS::APItest'           => '0.86',
13342             'attributes'            => '0.28',
13343             'mro'                   => '1.19',
13344             'ok'                    => '1.302059',
13345             'overload'              => '1.27',
13346             'parent'                => '0.236',
13347         },
13348         removed => {
13349         }
13350     },
13351     5.025007 => {
13352         delta_from => 5.025006,
13353         changed => {
13354             'Archive::Tar'          => '2.18',
13355             'Archive::Tar::Constant'=> '2.18',
13356             'Archive::Tar::File'    => '2.18',
13357             'B'                     => '1.65',
13358             'B::Op_private'         => '5.025007',
13359             'Config'                => '5.025007',
13360             'Cwd'                   => '3.66',
13361             'Data::Dumper'          => '2.165',
13362             'Devel::Peek'           => '1.26',
13363             'DynaLoader'            => '1.40',
13364             'Errno'                 => '1.27',
13365             'ExtUtils::ParseXS::Utilities'=> '3.34',
13366             'File::Spec'            => '3.66',
13367             'File::Spec::AmigaOS'   => '3.66',
13368             'File::Spec::Cygwin'    => '3.66',
13369             'File::Spec::Epoc'      => '3.66',
13370             'File::Spec::Functions' => '3.66',
13371             'File::Spec::Mac'       => '3.66',
13372             'File::Spec::OS2'       => '3.66',
13373             'File::Spec::Unix'      => '3.66',
13374             'File::Spec::VMS'       => '3.66',
13375             'File::Spec::Win32'     => '3.66',
13376             'Hash::Util'            => '0.22',
13377             'JSON::PP'              => '2.27400_02',
13378             'List::Util'            => '1.46_02',
13379             'List::Util::XS'        => '1.46_02',
13380             'Math::BigFloat'        => '1.999727',
13381             'Math::BigInt'          => '1.999727',
13382             'Math::BigInt::Calc'    => '1.999727',
13383             'Math::BigInt::CalcEmu' => '1.999727',
13384             'Math::Complex'         => '1.5901',
13385             'Module::CoreList'      => '5.20161120',
13386             'Module::CoreList::TieHashDelta'=> '5.20161120',
13387             'Module::CoreList::Utils'=> '5.20161120',
13388             'Net::Ping'             => '2.55',
13389             'Opcode'                => '1.39',
13390             'POSIX'                 => '1.75',
13391             'Pod::Man'              => '4.09',
13392             'Pod::ParseLink'        => '4.09',
13393             'Pod::Text'             => '4.09',
13394             'Pod::Text::Color'      => '4.09',
13395             'Pod::Text::Overstrike' => '4.09',
13396             'Pod::Text::Termcap'    => '4.09',
13397             'Scalar::Util'          => '1.46_02',
13398             'Storable'              => '2.59',
13399             'Sub::Util'             => '1.46_02',
13400             'Term::ANSIColor'       => '4.06',
13401             'Test2'                 => '1.302062',
13402             'Test2::API'            => '1.302062',
13403             'Test2::API::Breakage'  => '1.302062',
13404             'Test2::API::Context'   => '1.302062',
13405             'Test2::API::Instance'  => '1.302062',
13406             'Test2::API::Stack'     => '1.302062',
13407             'Test2::Event'          => '1.302062',
13408             'Test2::Event::Bail'    => '1.302062',
13409             'Test2::Event::Diag'    => '1.302062',
13410             'Test2::Event::Exception'=> '1.302062',
13411             'Test2::Event::Generic' => '1.302062',
13412             'Test2::Event::Info'    => '1.302062',
13413             'Test2::Event::Note'    => '1.302062',
13414             'Test2::Event::Ok'      => '1.302062',
13415             'Test2::Event::Plan'    => '1.302062',
13416             'Test2::Event::Skip'    => '1.302062',
13417             'Test2::Event::Subtest' => '1.302062',
13418             'Test2::Event::Waiting' => '1.302062',
13419             'Test2::Formatter'      => '1.302062',
13420             'Test2::Formatter::TAP' => '1.302062',
13421             'Test2::Hub'            => '1.302062',
13422             'Test2::Hub::Interceptor'=> '1.302062',
13423             'Test2::Hub::Interceptor::Terminator'=> '1.302062',
13424             'Test2::Hub::Subtest'   => '1.302062',
13425             'Test2::IPC'            => '1.302062',
13426             'Test2::IPC::Driver'    => '1.302062',
13427             'Test2::IPC::Driver::Files'=> '1.302062',
13428             'Test2::Util'           => '1.302062',
13429             'Test2::Util::ExternalMeta'=> '1.302062',
13430             'Test2::Util::HashBase' => '1.302062',
13431             'Test2::Util::Trace'    => '1.302062',
13432             'Test::Builder'         => '1.302062',
13433             'Test::Builder::Formatter'=> '1.302062',
13434             'Test::Builder::Module' => '1.302062',
13435             'Test::Builder::Tester' => '1.302062',
13436             'Test::Builder::Tester::Color'=> '1.302062',
13437             'Test::Builder::TodoDiag'=> '1.302062',
13438             'Test::More'            => '1.302062',
13439             'Test::Simple'          => '1.302062',
13440             'Test::Tester'          => '1.302062',
13441             'Test::Tester::Capture' => '1.302062',
13442             'Test::Tester::CaptureRunner'=> '1.302062',
13443             'Test::Tester::Delegate'=> '1.302062',
13444             'Test::use::ok'         => '1.302062',
13445             'Time::HiRes'           => '1.9740_03',
13446             'Unicode::Collate'      => '1.18',
13447             'Unicode::Collate::CJK::Big5'=> '1.18',
13448             'Unicode::Collate::CJK::GB2312'=> '1.18',
13449             'Unicode::Collate::CJK::JISX0208'=> '1.18',
13450             'Unicode::Collate::CJK::Korean'=> '1.18',
13451             'Unicode::Collate::CJK::Pinyin'=> '1.18',
13452             'Unicode::Collate::CJK::Stroke'=> '1.18',
13453             'Unicode::Collate::CJK::Zhuyin'=> '1.18',
13454             'Unicode::Collate::Locale'=> '1.18',
13455             'Unicode::UCD'          => '0.67',
13456             'XS::APItest'           => '0.87',
13457             'XS::Typemap'           => '0.15',
13458             'mro'                   => '1.20',
13459             'ok'                    => '1.302062',
13460             'threads'               => '2.10',
13461         },
13462         removed => {
13463         }
13464     },
13465     5.025008 => {
13466         delta_from => 5.025007,
13467         changed => {
13468             'Archive::Tar'          => '2.24',
13469             'Archive::Tar::Constant'=> '2.24',
13470             'Archive::Tar::File'    => '2.24',
13471             'B::Debug'              => '1.24',
13472             'B::Op_private'         => '5.025008',
13473             'Config'                => '5.025008',
13474             'Data::Dumper'          => '2.166',
13475             'Encode'                => '2.88',
13476             'Encode::Alias'         => '2.21',
13477             'Encode::CN::HZ'        => '2.08',
13478             'Encode::MIME::Header'  => '2.24',
13479             'Encode::MIME::Name'    => '1.02',
13480             'Encode::Unicode'       => '2.1501',
13481             'IO'                    => '1.38',
13482             'Locale::Codes'         => '3.42',
13483             'Locale::Codes::Constants'=> '3.42',
13484             'Locale::Codes::Country'=> '3.42',
13485             'Locale::Codes::Country_Codes'=> '3.42',
13486             'Locale::Codes::Country_Retired'=> '3.42',
13487             'Locale::Codes::Currency'=> '3.42',
13488             'Locale::Codes::Currency_Codes'=> '3.42',
13489             'Locale::Codes::Currency_Retired'=> '3.42',
13490             'Locale::Codes::LangExt'=> '3.42',
13491             'Locale::Codes::LangExt_Codes'=> '3.42',
13492             'Locale::Codes::LangExt_Retired'=> '3.42',
13493             'Locale::Codes::LangFam'=> '3.42',
13494             'Locale::Codes::LangFam_Codes'=> '3.42',
13495             'Locale::Codes::LangFam_Retired'=> '3.42',
13496             'Locale::Codes::LangVar'=> '3.42',
13497             'Locale::Codes::LangVar_Codes'=> '3.42',
13498             'Locale::Codes::LangVar_Retired'=> '3.42',
13499             'Locale::Codes::Language'=> '3.42',
13500             'Locale::Codes::Language_Codes'=> '3.42',
13501             'Locale::Codes::Language_Retired'=> '3.42',
13502             'Locale::Codes::Script' => '3.42',
13503             'Locale::Codes::Script_Codes'=> '3.42',
13504             'Locale::Codes::Script_Retired'=> '3.42',
13505             'Locale::Country'       => '3.42',
13506             'Locale::Currency'      => '3.42',
13507             'Locale::Language'      => '3.42',
13508             'Locale::Script'        => '3.42',
13509             'Math::BigFloat'        => '1.999806',
13510             'Math::BigFloat::Trace' => '0.47',
13511             'Math::BigInt'          => '1.999806',
13512             'Math::BigInt::Calc'    => '1.999806',
13513             'Math::BigInt::CalcEmu' => '1.999806',
13514             'Math::BigInt::FastCalc'=> '0.5005',
13515             'Math::BigInt::Lib'     => '1.999806',
13516             'Math::BigInt::Trace'   => '0.47',
13517             'Math::BigRat'          => '0.2611',
13518             'Module::CoreList'      => '5.20161220',
13519             'Module::CoreList::TieHashDelta'=> '5.20161220',
13520             'Module::CoreList::Utils'=> '5.20161220',
13521             'POSIX'                 => '1.76',
13522             'PerlIO::scalar'        => '0.25',
13523             'Pod::Simple'           => '3.35',
13524             'Pod::Simple::BlackBox' => '3.35',
13525             'Pod::Simple::Checker'  => '3.35',
13526             'Pod::Simple::Debug'    => '3.35',
13527             'Pod::Simple::DumpAsText'=> '3.35',
13528             'Pod::Simple::DumpAsXML'=> '3.35',
13529             'Pod::Simple::HTML'     => '3.35',
13530             'Pod::Simple::HTMLBatch'=> '3.35',
13531             'Pod::Simple::LinkSection'=> '3.35',
13532             'Pod::Simple::Methody'  => '3.35',
13533             'Pod::Simple::Progress' => '3.35',
13534             'Pod::Simple::PullParser'=> '3.35',
13535             'Pod::Simple::PullParserEndToken'=> '3.35',
13536             'Pod::Simple::PullParserStartToken'=> '3.35',
13537             'Pod::Simple::PullParserTextToken'=> '3.35',
13538             'Pod::Simple::PullParserToken'=> '3.35',
13539             'Pod::Simple::RTF'      => '3.35',
13540             'Pod::Simple::Search'   => '3.35',
13541             'Pod::Simple::SimpleTree'=> '3.35',
13542             'Pod::Simple::Text'     => '3.35',
13543             'Pod::Simple::TextContent'=> '3.35',
13544             'Pod::Simple::TiedOutFH'=> '3.35',
13545             'Pod::Simple::Transcode'=> '3.35',
13546             'Pod::Simple::TranscodeDumb'=> '3.35',
13547             'Pod::Simple::TranscodeSmart'=> '3.35',
13548             'Pod::Simple::XHTML'    => '3.35',
13549             'Pod::Simple::XMLOutStream'=> '3.35',
13550             'Test2'                 => '1.302073',
13551             'Test2::API'            => '1.302073',
13552             'Test2::API::Breakage'  => '1.302073',
13553             'Test2::API::Context'   => '1.302073',
13554             'Test2::API::Instance'  => '1.302073',
13555             'Test2::API::Stack'     => '1.302073',
13556             'Test2::Event'          => '1.302073',
13557             'Test2::Event::Bail'    => '1.302073',
13558             'Test2::Event::Diag'    => '1.302073',
13559             'Test2::Event::Encoding'=> '1.302073',
13560             'Test2::Event::Exception'=> '1.302073',
13561             'Test2::Event::Generic' => '1.302073',
13562             'Test2::Event::Info'    => '1.302073',
13563             'Test2::Event::Note'    => '1.302073',
13564             'Test2::Event::Ok'      => '1.302073',
13565             'Test2::Event::Plan'    => '1.302073',
13566             'Test2::Event::Skip'    => '1.302073',
13567             'Test2::Event::Subtest' => '1.302073',
13568             'Test2::Event::TAP::Version'=> '1.302073',
13569             'Test2::Event::Waiting' => '1.302073',
13570             'Test2::Formatter'      => '1.302073',
13571             'Test2::Formatter::TAP' => '1.302073',
13572             'Test2::Hub'            => '1.302073',
13573             'Test2::Hub::Interceptor'=> '1.302073',
13574             'Test2::Hub::Interceptor::Terminator'=> '1.302073',
13575             'Test2::Hub::Subtest'   => '1.302073',
13576             'Test2::IPC'            => '1.302073',
13577             'Test2::IPC::Driver'    => '1.302073',
13578             'Test2::IPC::Driver::Files'=> '1.302073',
13579             'Test2::Tools::Tiny'    => '1.302073',
13580             'Test2::Util'           => '1.302073',
13581             'Test2::Util::ExternalMeta'=> '1.302073',
13582             'Test2::Util::HashBase' => '0.002',
13583             'Test2::Util::Trace'    => '1.302073',
13584             'Test::Builder'         => '1.302073',
13585             'Test::Builder::Formatter'=> '1.302073',
13586             'Test::Builder::Module' => '1.302073',
13587             'Test::Builder::Tester' => '1.302073',
13588             'Test::Builder::Tester::Color'=> '1.302073',
13589             'Test::Builder::TodoDiag'=> '1.302073',
13590             'Test::More'            => '1.302073',
13591             'Test::Simple'          => '1.302073',
13592             'Test::Tester'          => '1.302073',
13593             'Test::Tester::Capture' => '1.302073',
13594             'Test::Tester::CaptureRunner'=> '1.302073',
13595             'Test::Tester::Delegate'=> '1.302073',
13596             'Test::use::ok'         => '1.302073',
13597             'Time::HiRes'           => '1.9741',
13598             'Time::Local'           => '1.25',
13599             'Unicode::Collate'      => '1.19',
13600             'Unicode::Collate::CJK::Big5'=> '1.19',
13601             'Unicode::Collate::CJK::GB2312'=> '1.19',
13602             'Unicode::Collate::CJK::JISX0208'=> '1.19',
13603             'Unicode::Collate::CJK::Korean'=> '1.19',
13604             'Unicode::Collate::CJK::Pinyin'=> '1.19',
13605             'Unicode::Collate::CJK::Stroke'=> '1.19',
13606             'Unicode::Collate::CJK::Zhuyin'=> '1.19',
13607             'Unicode::Collate::Locale'=> '1.19',
13608             'bigint'                => '0.47',
13609             'bignum'                => '0.47',
13610             'bigrat'                => '0.47',
13611             'encoding'              => '2.19',
13612             'ok'                    => '1.302073',
13613         },
13614         removed => {
13615         }
13616     },
13617     5.022003 => {
13618         delta_from => 5.022002,
13619         changed => {
13620             'App::Cpan'             => '1.63_01',
13621             'App::Prove'            => '3.35_01',
13622             'App::Prove::State'     => '3.35_01',
13623             'App::Prove::State::Result'=> '3.35_01',
13624             'App::Prove::State::Result::Test'=> '3.35_01',
13625             'Archive::Tar'          => '2.04_01',
13626             'Archive::Tar::Constant'=> '2.04_01',
13627             'Archive::Tar::File'    => '2.04_01',
13628             'B::Op_private'         => '5.022003',
13629             'CPAN'                  => '2.11_01',
13630             'Compress::Zlib'        => '2.068_001',
13631             'Config'                => '5.022003',
13632             'Cwd'                   => '3.56_02',
13633             'Digest'                => '1.17_01',
13634             'Digest::SHA'           => '5.95_01',
13635             'Encode'                => '2.72_01',
13636             'ExtUtils::Command'     => '1.20_01',
13637             'ExtUtils::Command::MM' => '7.04_02',
13638             'ExtUtils::Liblist'     => '7.04_02',
13639             'ExtUtils::Liblist::Kid'=> '7.04_02',
13640             'ExtUtils::MM'          => '7.04_02',
13641             'ExtUtils::MM_AIX'      => '7.04_02',
13642             'ExtUtils::MM_Any'      => '7.04_02',
13643             'ExtUtils::MM_BeOS'     => '7.04_02',
13644             'ExtUtils::MM_Cygwin'   => '7.04_02',
13645             'ExtUtils::MM_DOS'      => '7.04_02',
13646             'ExtUtils::MM_Darwin'   => '7.04_02',
13647             'ExtUtils::MM_MacOS'    => '7.04_02',
13648             'ExtUtils::MM_NW5'      => '7.04_02',
13649             'ExtUtils::MM_OS2'      => '7.04_02',
13650             'ExtUtils::MM_QNX'      => '7.04_02',
13651             'ExtUtils::MM_UWIN'     => '7.04_02',
13652             'ExtUtils::MM_Unix'     => '7.04_02',
13653             'ExtUtils::MM_VMS'      => '7.04_02',
13654             'ExtUtils::MM_VOS'      => '7.04_02',
13655             'ExtUtils::MM_Win32'    => '7.04_02',
13656             'ExtUtils::MM_Win95'    => '7.04_02',
13657             'ExtUtils::MY'          => '7.04_02',
13658             'ExtUtils::MakeMaker'   => '7.04_02',
13659             'ExtUtils::MakeMaker::Config'=> '7.04_02',
13660             'ExtUtils::Mkbootstrap' => '7.04_02',
13661             'ExtUtils::Mksymlists'  => '7.04_02',
13662             'ExtUtils::testlib'     => '7.04_02',
13663             'File::Fetch'           => '0.48_01',
13664             'File::Spec'            => '3.56_02',
13665             'File::Spec::Cygwin'    => '3.56_02',
13666             'File::Spec::Epoc'      => '3.56_02',
13667             'File::Spec::Functions' => '3.56_02',
13668             'File::Spec::Mac'       => '3.56_02',
13669             'File::Spec::OS2'       => '3.56_02',
13670             'File::Spec::Unix'      => '3.56_02',
13671             'File::Spec::VMS'       => '3.56_02',
13672             'File::Spec::Win32'     => '3.56_02',
13673             'HTTP::Tiny'            => '0.054_01',
13674             'I18N::LangTags::Detect'=> '1.05_01',
13675             'IO'                    => '1.35_01',
13676             'IO::Compress::Adapter::Bzip2'=> '2.068_001',
13677             'IO::Compress::Adapter::Deflate'=> '2.068_001',
13678             'IO::Compress::Adapter::Identity'=> '2.068_001',
13679             'IO::Compress::Base'    => '2.068_001',
13680             'IO::Compress::Base::Common'=> '2.068_001',
13681             'IO::Compress::Bzip2'   => '2.068_001',
13682             'IO::Compress::Deflate' => '2.068_001',
13683             'IO::Compress::Gzip'    => '2.068_001',
13684             'IO::Compress::Gzip::Constants'=> '2.068_001',
13685             'IO::Compress::RawDeflate'=> '2.068_001',
13686             'IO::Compress::Zip'     => '2.068_001',
13687             'IO::Compress::Zip::Constants'=> '2.068_001',
13688             'IO::Compress::Zlib::Constants'=> '2.068_001',
13689             'IO::Compress::Zlib::Extra'=> '2.068_001',
13690             'IO::Uncompress::Adapter::Bunzip2'=> '2.068_001',
13691             'IO::Uncompress::Adapter::Identity'=> '2.068_001',
13692             'IO::Uncompress::Adapter::Inflate'=> '2.068_001',
13693             'IO::Uncompress::AnyInflate'=> '2.068_001',
13694             'IO::Uncompress::AnyUncompress'=> '2.068_001',
13695             'IO::Uncompress::Base'  => '2.068_001',
13696             'IO::Uncompress::Bunzip2'=> '2.068_001',
13697             'IO::Uncompress::Gunzip'=> '2.068_001',
13698             'IO::Uncompress::Inflate'=> '2.068_001',
13699             'IO::Uncompress::RawInflate'=> '2.068_001',
13700             'IO::Uncompress::Unzip' => '2.068_001',
13701             'IPC::Cmd'              => '0.92_01',
13702             'JSON::PP'              => '2.27300_01',
13703             'Locale::Maketext'      => '1.26_01',
13704             'Locale::Maketext::Simple'=> '0.21_01',
13705             'Memoize'               => '1.03_01',
13706             'Module::CoreList'      => '5.20170114_22',
13707             'Module::CoreList::TieHashDelta'=> '5.20170114_22',
13708             'Module::CoreList::Utils'=> '5.20170114_22',
13709             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13710             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13711             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13712             'Net::Cmd'              => '3.05_01',
13713             'Net::Config'           => '3.05_01',
13714             'Net::Domain'           => '3.05_01',
13715             'Net::FTP'              => '3.05_01',
13716             'Net::FTP::A'           => '3.05_01',
13717             'Net::FTP::E'           => '3.05_01',
13718             'Net::FTP::I'           => '3.05_01',
13719             'Net::FTP::L'           => '3.05_01',
13720             'Net::FTP::dataconn'    => '3.05_01',
13721             'Net::NNTP'             => '3.05_01',
13722             'Net::Netrc'            => '3.05_01',
13723             'Net::POP3'             => '3.05_01',
13724             'Net::Ping'             => '2.43_01',
13725             'Net::SMTP'             => '3.05_01',
13726             'Net::Time'             => '3.05_01',
13727             'Parse::CPAN::Meta'     => '1.4414_001',
13728             'Pod::Html'             => '1.2201',
13729             'Pod::Perldoc'          => '3.25_01',
13730             'Storable'              => '2.53_02',
13731             'Sys::Syslog'           => '0.33_01',
13732             'TAP::Base'             => '3.35_01',
13733             'TAP::Formatter::Base'  => '3.35_01',
13734             'TAP::Formatter::Color' => '3.35_01',
13735             'TAP::Formatter::Console'=> '3.35_01',
13736             'TAP::Formatter::Console::ParallelSession'=> '3.35_01',
13737             'TAP::Formatter::Console::Session'=> '3.35_01',
13738             'TAP::Formatter::File'  => '3.35_01',
13739             'TAP::Formatter::File::Session'=> '3.35_01',
13740             'TAP::Formatter::Session'=> '3.35_01',
13741             'TAP::Harness'          => '3.35_01',
13742             'TAP::Harness::Env'     => '3.35_01',
13743             'TAP::Object'           => '3.35_01',
13744             'TAP::Parser'           => '3.35_01',
13745             'TAP::Parser::Aggregator'=> '3.35_01',
13746             'TAP::Parser::Grammar'  => '3.35_01',
13747             'TAP::Parser::Iterator' => '3.35_01',
13748             'TAP::Parser::Iterator::Array'=> '3.35_01',
13749             'TAP::Parser::Iterator::Process'=> '3.35_01',
13750             'TAP::Parser::Iterator::Stream'=> '3.35_01',
13751             'TAP::Parser::IteratorFactory'=> '3.35_01',
13752             'TAP::Parser::Multiplexer'=> '3.35_01',
13753             'TAP::Parser::Result'   => '3.35_01',
13754             'TAP::Parser::Result::Bailout'=> '3.35_01',
13755             'TAP::Parser::Result::Comment'=> '3.35_01',
13756             'TAP::Parser::Result::Plan'=> '3.35_01',
13757             'TAP::Parser::Result::Pragma'=> '3.35_01',
13758             'TAP::Parser::Result::Test'=> '3.35_01',
13759             'TAP::Parser::Result::Unknown'=> '3.35_01',
13760             'TAP::Parser::Result::Version'=> '3.35_01',
13761             'TAP::Parser::Result::YAML'=> '3.35_01',
13762             'TAP::Parser::ResultFactory'=> '3.35_01',
13763             'TAP::Parser::Scheduler'=> '3.35_01',
13764             'TAP::Parser::Scheduler::Job'=> '3.35_01',
13765             'TAP::Parser::Scheduler::Spinner'=> '3.35_01',
13766             'TAP::Parser::Source'   => '3.35_01',
13767             'TAP::Parser::SourceHandler'=> '3.35_01',
13768             'TAP::Parser::SourceHandler::Executable'=> '3.35_01',
13769             'TAP::Parser::SourceHandler::File'=> '3.35_01',
13770             'TAP::Parser::SourceHandler::Handle'=> '3.35_01',
13771             'TAP::Parser::SourceHandler::Perl'=> '3.35_01',
13772             'TAP::Parser::SourceHandler::RawTAP'=> '3.35_01',
13773             'TAP::Parser::YAMLish::Reader'=> '3.35_01',
13774             'TAP::Parser::YAMLish::Writer'=> '3.35_01',
13775             'Test'                  => '1.26_01',
13776             'Test::Harness'         => '3.35_01',
13777             'XSLoader'              => '0.20_01',
13778             'bigint'                => '0.39_01',
13779             'bignum'                => '0.39_01',
13780             'bigrat'                => '0.39_01',
13781         },
13782         removed => {
13783         }
13784     },
13785     5.024001 => {
13786         delta_from => 5.024000,
13787         changed => {
13788             'App::Cpan'             => '1.63_01',
13789             'App::Prove'            => '3.36_01',
13790             'App::Prove::State'     => '3.36_01',
13791             'App::Prove::State::Result'=> '3.36_01',
13792             'App::Prove::State::Result::Test'=> '3.36_01',
13793             'Archive::Tar'          => '2.04_01',
13794             'Archive::Tar::Constant'=> '2.04_01',
13795             'Archive::Tar::File'    => '2.04_01',
13796             'B::Op_private'         => '5.024001',
13797             'CPAN'                  => '2.11_01',
13798             'Compress::Zlib'        => '2.069_001',
13799             'Config'                => '5.024001',
13800             'Cwd'                   => '3.63_01',
13801             'Digest'                => '1.17_01',
13802             'Digest::SHA'           => '5.95_01',
13803             'Encode'                => '2.80_01',
13804             'ExtUtils::Command'     => '7.10_02',
13805             'ExtUtils::Command::MM' => '7.10_02',
13806             'ExtUtils::Liblist'     => '7.10_02',
13807             'ExtUtils::Liblist::Kid'=> '7.10_02',
13808             'ExtUtils::MM'          => '7.10_02',
13809             'ExtUtils::MM_AIX'      => '7.10_02',
13810             'ExtUtils::MM_Any'      => '7.10_02',
13811             'ExtUtils::MM_BeOS'     => '7.10_02',
13812             'ExtUtils::MM_Cygwin'   => '7.10_02',
13813             'ExtUtils::MM_DOS'      => '7.10_02',
13814             'ExtUtils::MM_Darwin'   => '7.10_02',
13815             'ExtUtils::MM_MacOS'    => '7.10_02',
13816             'ExtUtils::MM_NW5'      => '7.10_02',
13817             'ExtUtils::MM_OS2'      => '7.10_02',
13818             'ExtUtils::MM_QNX'      => '7.10_02',
13819             'ExtUtils::MM_UWIN'     => '7.10_02',
13820             'ExtUtils::MM_Unix'     => '7.10_02',
13821             'ExtUtils::MM_VMS'      => '7.10_02',
13822             'ExtUtils::MM_VOS'      => '7.10_02',
13823             'ExtUtils::MM_Win32'    => '7.10_02',
13824             'ExtUtils::MM_Win95'    => '7.10_02',
13825             'ExtUtils::MY'          => '7.10_02',
13826             'ExtUtils::MakeMaker'   => '7.10_02',
13827             'ExtUtils::MakeMaker::Config'=> '7.10_02',
13828             'ExtUtils::Mkbootstrap' => '7.10_02',
13829             'ExtUtils::Mksymlists'  => '7.10_02',
13830             'ExtUtils::testlib'     => '7.10_02',
13831             'File::Fetch'           => '0.48_01',
13832             'File::Spec'            => '3.63_01',
13833             'File::Spec::Cygwin'    => '3.63_01',
13834             'File::Spec::Epoc'      => '3.63_01',
13835             'File::Spec::Functions' => '3.63_01',
13836             'File::Spec::Mac'       => '3.63_01',
13837             'File::Spec::OS2'       => '3.63_01',
13838             'File::Spec::Unix'      => '3.63_01',
13839             'File::Spec::VMS'       => '3.63_01',
13840             'File::Spec::Win32'     => '3.63_01',
13841             'HTTP::Tiny'            => '0.056_001',
13842             'I18N::LangTags::Detect'=> '1.05_01',
13843             'IO'                    => '1.36_01',
13844             'IO::Compress::Adapter::Bzip2'=> '2.069_001',
13845             'IO::Compress::Adapter::Deflate'=> '2.069_001',
13846             'IO::Compress::Adapter::Identity'=> '2.069_001',
13847             'IO::Compress::Base'    => '2.069_001',
13848             'IO::Compress::Base::Common'=> '2.069_001',
13849             'IO::Compress::Bzip2'   => '2.069_001',
13850             'IO::Compress::Deflate' => '2.069_001',
13851             'IO::Compress::Gzip'    => '2.069_001',
13852             'IO::Compress::Gzip::Constants'=> '2.069_001',
13853             'IO::Compress::RawDeflate'=> '2.069_001',
13854             'IO::Compress::Zip'     => '2.069_001',
13855             'IO::Compress::Zip::Constants'=> '2.069_001',
13856             'IO::Compress::Zlib::Constants'=> '2.069_001',
13857             'IO::Compress::Zlib::Extra'=> '2.069_001',
13858             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_001',
13859             'IO::Uncompress::Adapter::Identity'=> '2.069_001',
13860             'IO::Uncompress::Adapter::Inflate'=> '2.069_001',
13861             'IO::Uncompress::AnyInflate'=> '2.069_001',
13862             'IO::Uncompress::AnyUncompress'=> '2.069_001',
13863             'IO::Uncompress::Base'  => '2.069_001',
13864             'IO::Uncompress::Bunzip2'=> '2.069_001',
13865             'IO::Uncompress::Gunzip'=> '2.069_001',
13866             'IO::Uncompress::Inflate'=> '2.069_001',
13867             'IO::Uncompress::RawInflate'=> '2.069_001',
13868             'IO::Uncompress::Unzip' => '2.069_001',
13869             'IPC::Cmd'              => '0.92_01',
13870             'JSON::PP'              => '2.27300_01',
13871             'Locale::Maketext'      => '1.26_01',
13872             'Locale::Maketext::Simple'=> '0.21_01',
13873             'Math::BigFloat::Trace' => '0.42_01',
13874             'Math::BigInt::Trace'   => '0.42_01',
13875             'Memoize'               => '1.03_01',
13876             'Module::CoreList'      => '5.20170114_24',
13877             'Module::CoreList::TieHashDelta'=> '5.20170114_24',
13878             'Module::CoreList::Utils'=> '5.20170114_24',
13879             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13880             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13881             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13882             'Net::Cmd'              => '3.08_01',
13883             'Net::Config'           => '3.08_01',
13884             'Net::Domain'           => '3.08_01',
13885             'Net::FTP'              => '3.08_01',
13886             'Net::FTP::A'           => '3.08_01',
13887             'Net::FTP::E'           => '3.08_01',
13888             'Net::FTP::I'           => '3.08_01',
13889             'Net::FTP::L'           => '3.08_01',
13890             'Net::FTP::dataconn'    => '3.08_01',
13891             'Net::NNTP'             => '3.08_01',
13892             'Net::Netrc'            => '3.08_01',
13893             'Net::POP3'             => '3.08_01',
13894             'Net::Ping'             => '2.43_01',
13895             'Net::SMTP'             => '3.08_01',
13896             'Net::Time'             => '3.08_01',
13897             'Parse::CPAN::Meta'     => '1.4417_001',
13898             'Pod::Html'             => '1.2201',
13899             'Pod::Perldoc'          => '3.25_03',
13900             'Storable'              => '2.56_01',
13901             'Sys::Syslog'           => '0.33_01',
13902             'TAP::Base'             => '3.36_01',
13903             'TAP::Formatter::Base'  => '3.36_01',
13904             'TAP::Formatter::Color' => '3.36_01',
13905             'TAP::Formatter::Console'=> '3.36_01',
13906             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13907             'TAP::Formatter::Console::Session'=> '3.36_01',
13908             'TAP::Formatter::File'  => '3.36_01',
13909             'TAP::Formatter::File::Session'=> '3.36_01',
13910             'TAP::Formatter::Session'=> '3.36_01',
13911             'TAP::Harness'          => '3.36_01',
13912             'TAP::Harness::Env'     => '3.36_01',
13913             'TAP::Object'           => '3.36_01',
13914             'TAP::Parser'           => '3.36_01',
13915             'TAP::Parser::Aggregator'=> '3.36_01',
13916             'TAP::Parser::Grammar'  => '3.36_01',
13917             'TAP::Parser::Iterator' => '3.36_01',
13918             'TAP::Parser::Iterator::Array'=> '3.36_01',
13919             'TAP::Parser::Iterator::Process'=> '3.36_01',
13920             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13921             'TAP::Parser::IteratorFactory'=> '3.36_01',
13922             'TAP::Parser::Multiplexer'=> '3.36_01',
13923             'TAP::Parser::Result'   => '3.36_01',
13924             'TAP::Parser::Result::Bailout'=> '3.36_01',
13925             'TAP::Parser::Result::Comment'=> '3.36_01',
13926             'TAP::Parser::Result::Plan'=> '3.36_01',
13927             'TAP::Parser::Result::Pragma'=> '3.36_01',
13928             'TAP::Parser::Result::Test'=> '3.36_01',
13929             'TAP::Parser::Result::Unknown'=> '3.36_01',
13930             'TAP::Parser::Result::Version'=> '3.36_01',
13931             'TAP::Parser::Result::YAML'=> '3.36_01',
13932             'TAP::Parser::ResultFactory'=> '3.36_01',
13933             'TAP::Parser::Scheduler'=> '3.36_01',
13934             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13935             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13936             'TAP::Parser::Source'   => '3.36_01',
13937             'TAP::Parser::SourceHandler'=> '3.36_01',
13938             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13939             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13940             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13941             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13942             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13943             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13944             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13945             'Test'                  => '1.28_01',
13946             'Test::Harness'         => '3.36_01',
13947             'XSLoader'              => '0.22',
13948             'bigint'                => '0.42_01',
13949             'bignum'                => '0.42_01',
13950             'bigrat'                => '0.42_01',
13951         },
13952         removed => {
13953         }
13954     },
13955     5.025009 => {
13956         delta_from => 5.025008,
13957         changed => {
13958             'App::Cpan'             => '1.66',
13959             'B::Deparse'            => '1.40',
13960             'B::Op_private'         => '5.025009',
13961             'B::Terse'              => '1.07',
13962             'B::Xref'               => '1.06',
13963             'CPAN'                  => '2.16',
13964             'CPAN::Bundle'          => '5.5002',
13965             'CPAN::Distribution'    => '2.16',
13966             'CPAN::Exception::RecursiveDependency'=> '5.5001',
13967             'CPAN::FTP'             => '5.5008',
13968             'CPAN::FirstTime'       => '5.5310',
13969             'CPAN::HandleConfig'    => '5.5008',
13970             'CPAN::Module'          => '5.5003',
13971             'Compress::Raw::Bzip2'  => '2.070',
13972             'Compress::Raw::Zlib'   => '2.070',
13973             'Config'                => '5.025009',
13974             'DB_File'               => '1.840',
13975             'Data::Dumper'          => '2.167',
13976             'Devel::SelfStubber'    => '1.06',
13977             'DynaLoader'            => '1.41',
13978             'Errno'                 => '1.28',
13979             'ExtUtils::Embed'       => '1.34',
13980             'File::Glob'            => '1.28',
13981             'I18N::LangTags'        => '0.42',
13982             'Module::CoreList'      => '5.20170120',
13983             'Module::CoreList::TieHashDelta'=> '5.20170120',
13984             'Module::CoreList::Utils'=> '5.20170120',
13985             'OS2::Process'          => '1.12',
13986             'PerlIO::scalar'        => '0.26',
13987             'Pod::Html'             => '1.2202',
13988             'Storable'              => '2.61',
13989             'Symbol'                => '1.08',
13990             'Term::ReadLine'        => '1.16',
13991             'Test'                  => '1.30',
13992             'Unicode::UCD'          => '0.68',
13993             'VMS::DCLsym'           => '1.08',
13994             'XS::APItest'           => '0.88',
13995             'XSLoader'              => '0.26',
13996             'attributes'            => '0.29',
13997             'diagnostics'           => '1.36',
13998             'feature'               => '1.46',
13999             'lib'                   => '0.64',
14000             'overload'              => '1.28',
14001             're'                    => '0.34',
14002             'threads'               => '2.12',
14003             'threads::shared'       => '1.54',
14004         },
14005         removed => {
14006         }
14007     },
14008     5.025010 => {
14009         delta_from => 5.025009,
14010         changed => {
14011             'B'                     => '1.68',
14012             'B::Op_private'         => '5.025010',
14013             'CPAN'                  => '2.17',
14014             'CPAN::Distribution'    => '2.17',
14015             'Config'                => '5.02501',
14016             'Getopt::Std'           => '1.12',
14017             'Module::CoreList'      => '5.20170220',
14018             'Module::CoreList::TieHashDelta'=> '5.20170220',
14019             'Module::CoreList::Utils'=> '5.20170220',
14020             'PerlIO'                => '1.10',
14021             'Storable'              => '2.62',
14022             'Thread::Queue'         => '3.12',
14023             'feature'               => '1.47',
14024             'open'                  => '1.11',
14025             'threads'               => '2.13',
14026         },
14027         removed => {
14028         }
14029     },
14030     5.025011 => {
14031         delta_from => 5.025010,
14032         changed => {
14033             'App::Prove'            => '3.38',
14034             'App::Prove::State'     => '3.38',
14035             'App::Prove::State::Result'=> '3.38',
14036             'App::Prove::State::Result::Test'=> '3.38',
14037             'B::Op_private'         => '5.025011',
14038             'Compress::Raw::Bzip2'  => '2.074',
14039             'Compress::Raw::Zlib'   => '2.074',
14040             'Compress::Zlib'        => '2.074',
14041             'Config'                => '5.025011',
14042             'Config::Perl::V'       => '0.28',
14043             'Cwd'                   => '3.67',
14044             'ExtUtils::ParseXS'     => '3.34',
14045             'ExtUtils::ParseXS::Constants'=> '3.34',
14046             'ExtUtils::ParseXS::CountLines'=> '3.34',
14047             'ExtUtils::ParseXS::Eval'=> '3.34',
14048             'ExtUtils::Typemaps'    => '3.34',
14049             'ExtUtils::Typemaps::Cmd'=> '3.34',
14050             'ExtUtils::Typemaps::InputMap'=> '3.34',
14051             'ExtUtils::Typemaps::OutputMap'=> '3.34',
14052             'ExtUtils::Typemaps::Type'=> '3.34',
14053             'File::Spec'            => '3.67',
14054             'File::Spec::AmigaOS'   => '3.67',
14055             'File::Spec::Cygwin'    => '3.67',
14056             'File::Spec::Epoc'      => '3.67',
14057             'File::Spec::Functions' => '3.67',
14058             'File::Spec::Mac'       => '3.67',
14059             'File::Spec::OS2'       => '3.67',
14060             'File::Spec::Unix'      => '3.67',
14061             'File::Spec::VMS'       => '3.67',
14062             'File::Spec::Win32'     => '3.67',
14063             'IO::Compress::Adapter::Bzip2'=> '2.074',
14064             'IO::Compress::Adapter::Deflate'=> '2.074',
14065             'IO::Compress::Adapter::Identity'=> '2.074',
14066             'IO::Compress::Base'    => '2.074',
14067             'IO::Compress::Base::Common'=> '2.074',
14068             'IO::Compress::Bzip2'   => '2.074',
14069             'IO::Compress::Deflate' => '2.074',
14070             'IO::Compress::Gzip'    => '2.074',
14071             'IO::Compress::Gzip::Constants'=> '2.074',
14072             'IO::Compress::RawDeflate'=> '2.074',
14073             'IO::Compress::Zip'     => '2.074',
14074             'IO::Compress::Zip::Constants'=> '2.074',
14075             'IO::Compress::Zlib::Constants'=> '2.074',
14076             'IO::Compress::Zlib::Extra'=> '2.074',
14077             'IO::Uncompress::Adapter::Bunzip2'=> '2.074',
14078             'IO::Uncompress::Adapter::Identity'=> '2.074',
14079             'IO::Uncompress::Adapter::Inflate'=> '2.074',
14080             'IO::Uncompress::AnyInflate'=> '2.074',
14081             'IO::Uncompress::AnyUncompress'=> '2.074',
14082             'IO::Uncompress::Base'  => '2.074',
14083             'IO::Uncompress::Bunzip2'=> '2.074',
14084             'IO::Uncompress::Gunzip'=> '2.074',
14085             'IO::Uncompress::Inflate'=> '2.074',
14086             'IO::Uncompress::RawInflate'=> '2.074',
14087             'IO::Uncompress::Unzip' => '2.074',
14088             'Module::CoreList'      => '5.20170320',
14089             'Module::CoreList::TieHashDelta'=> '5.20170230',
14090             'Module::CoreList::Utils'=> '5.20170320',
14091             'Pod::Perldoc'          => '3.28',
14092             'Pod::Perldoc::BaseTo'  => '3.28',
14093             'Pod::Perldoc::GetOptsOO'=> '3.28',
14094             'Pod::Perldoc::ToANSI'  => '3.28',
14095             'Pod::Perldoc::ToChecker'=> '3.28',
14096             'Pod::Perldoc::ToMan'   => '3.28',
14097             'Pod::Perldoc::ToNroff' => '3.28',
14098             'Pod::Perldoc::ToPod'   => '3.28',
14099             'Pod::Perldoc::ToRtf'   => '3.28',
14100             'Pod::Perldoc::ToTerm'  => '3.28',
14101             'Pod::Perldoc::ToText'  => '3.28',
14102             'Pod::Perldoc::ToTk'    => '3.28',
14103             'Pod::Perldoc::ToXml'   => '3.28',
14104             'TAP::Base'             => '3.38',
14105             'TAP::Formatter::Base'  => '3.38',
14106             'TAP::Formatter::Color' => '3.38',
14107             'TAP::Formatter::Console'=> '3.38',
14108             'TAP::Formatter::Console::ParallelSession'=> '3.38',
14109             'TAP::Formatter::Console::Session'=> '3.38',
14110             'TAP::Formatter::File'  => '3.38',
14111             'TAP::Formatter::File::Session'=> '3.38',
14112             'TAP::Formatter::Session'=> '3.38',
14113             'TAP::Harness'          => '3.38',
14114             'TAP::Harness::Env'     => '3.38',
14115             'TAP::Object'           => '3.38',
14116             'TAP::Parser'           => '3.38',
14117             'TAP::Parser::Aggregator'=> '3.38',
14118             'TAP::Parser::Grammar'  => '3.38',
14119             'TAP::Parser::Iterator' => '3.38',
14120             'TAP::Parser::Iterator::Array'=> '3.38',
14121             'TAP::Parser::Iterator::Process'=> '3.38',
14122             'TAP::Parser::Iterator::Stream'=> '3.38',
14123             'TAP::Parser::IteratorFactory'=> '3.38',
14124             'TAP::Parser::Multiplexer'=> '3.38',
14125             'TAP::Parser::Result'   => '3.38',
14126             'TAP::Parser::Result::Bailout'=> '3.38',
14127             'TAP::Parser::Result::Comment'=> '3.38',
14128             'TAP::Parser::Result::Plan'=> '3.38',
14129             'TAP::Parser::Result::Pragma'=> '3.38',
14130             'TAP::Parser::Result::Test'=> '3.38',
14131             'TAP::Parser::Result::Unknown'=> '3.38',
14132             'TAP::Parser::Result::Version'=> '3.38',
14133             'TAP::Parser::Result::YAML'=> '3.38',
14134             'TAP::Parser::ResultFactory'=> '3.38',
14135             'TAP::Parser::Scheduler'=> '3.38',
14136             'TAP::Parser::Scheduler::Job'=> '3.38',
14137             'TAP::Parser::Scheduler::Spinner'=> '3.38',
14138             'TAP::Parser::Source'   => '3.38',
14139             'TAP::Parser::SourceHandler'=> '3.38',
14140             'TAP::Parser::SourceHandler::Executable'=> '3.38',
14141             'TAP::Parser::SourceHandler::File'=> '3.38',
14142             'TAP::Parser::SourceHandler::Handle'=> '3.38',
14143             'TAP::Parser::SourceHandler::Perl'=> '3.38',
14144             'TAP::Parser::SourceHandler::RawTAP'=> '3.38',
14145             'TAP::Parser::YAMLish::Reader'=> '3.38',
14146             'TAP::Parser::YAMLish::Writer'=> '3.38',
14147             'Test::Harness'         => '3.38',
14148             'VMS::Stdio'            => '2.41',
14149             'threads'               => '2.15',
14150             'threads::shared'       => '1.55',
14151         },
14152         removed => {
14153         }
14154     },
14155     5.025012 => {
14156         delta_from => 5.025011,
14157         changed => {
14158             'B::Op_private'         => '5.025012',
14159             'CPAN'                  => '2.18',
14160             'CPAN::Bundle'          => '5.5003',
14161             'CPAN::Distribution'    => '2.18',
14162             'Config'                => '5.025012',
14163             'DynaLoader'            => '1.42',
14164             'Module::CoreList'      => '5.20170420',
14165             'Module::CoreList::TieHashDelta'=> '5.20170420',
14166             'Module::CoreList::Utils'=> '5.20170420',
14167             'Safe'                  => '2.40',
14168             'XSLoader'              => '0.27',
14169             'base'                  => '2.25',
14170             'threads::shared'       => '1.56',
14171         },
14172         removed => {
14173         }
14174     },
14175     5.026000 => {
14176         delta_from => 5.025012,
14177         changed => {
14178             'B::Op_private'         => '5.026000',
14179             'Config'                => '5.026',
14180             'Module::CoreList'      => '5.20170530',
14181             'Module::CoreList::TieHashDelta'=> '5.20170530',
14182             'Module::CoreList::Utils'=> '5.20170530',
14183         },
14184         removed => {
14185         }
14186     },
14187     5.027000 => {
14188         delta_from => 5.026000,
14189         changed => {
14190             'Attribute::Handlers'   => '1.00',
14191             'B::Concise'            => '1.000',
14192             'B::Deparse'            => '1.41',
14193             'B::Op_private'         => '5.027000',
14194             'Config'                => '5.027',
14195             'Module::CoreList'      => '5.20170531',
14196             'Module::CoreList::TieHashDelta'=> '5.20170531',
14197             'Module::CoreList::Utils'=> '5.20170531',
14198             'O'                     => '1.02',
14199             'attributes'            => '0.3',
14200             'feature'               => '1.48',
14201         },
14202         removed => {
14203         }
14204     },
14205     5.027001 => {
14206         delta_from => 5.027,
14207         changed => {
14208             'App::Prove'            => '3.39',
14209             'App::Prove::State'     => '3.39',
14210             'App::Prove::State::Result'=> '3.39',
14211             'App::Prove::State::Result::Test'=> '3.39',
14212             'Archive::Tar'          => '2.26',
14213             'Archive::Tar::Constant'=> '2.26',
14214             'Archive::Tar::File'    => '2.26',
14215             'B::Op_private'         => '5.027001',
14216             'B::Terse'              => '1.08',
14217             'Config'                => '5.027001',
14218             'Devel::PPPort'         => '3.36',
14219             'DirHandle'             => '1.05',
14220             'ExtUtils::Command'     => '7.30',
14221             'ExtUtils::Command::MM' => '7.30',
14222             'ExtUtils::Install'     => '2.14',
14223             'ExtUtils::Installed'   => '2.14',
14224             'ExtUtils::Liblist'     => '7.30',
14225             'ExtUtils::Liblist::Kid'=> '7.30',
14226             'ExtUtils::MM'          => '7.30',
14227             'ExtUtils::MM_AIX'      => '7.30',
14228             'ExtUtils::MM_Any'      => '7.30',
14229             'ExtUtils::MM_BeOS'     => '7.30',
14230             'ExtUtils::MM_Cygwin'   => '7.30',
14231             'ExtUtils::MM_DOS'      => '7.30',
14232             'ExtUtils::MM_Darwin'   => '7.30',
14233             'ExtUtils::MM_MacOS'    => '7.30',
14234             'ExtUtils::MM_NW5'      => '7.30',
14235             'ExtUtils::MM_OS2'      => '7.30',
14236             'ExtUtils::MM_QNX'      => '7.30',
14237             'ExtUtils::MM_UWIN'     => '7.30',
14238             'ExtUtils::MM_Unix'     => '7.30',
14239             'ExtUtils::MM_VMS'      => '7.30',
14240             'ExtUtils::MM_VOS'      => '7.30',
14241             'ExtUtils::MM_Win32'    => '7.30',
14242             'ExtUtils::MM_Win95'    => '7.30',
14243             'ExtUtils::MY'          => '7.30',
14244             'ExtUtils::MakeMaker'   => '7.30',
14245             'ExtUtils::MakeMaker::Config'=> '7.30',
14246             'ExtUtils::MakeMaker::Locale'=> '7.30',
14247             'ExtUtils::MakeMaker::version'=> '7.30',
14248             'ExtUtils::MakeMaker::version::regex'=> '7.30',
14249             'ExtUtils::Mkbootstrap' => '7.30',
14250             'ExtUtils::Mksymlists'  => '7.30',
14251             'ExtUtils::Packlist'    => '2.14',
14252             'ExtUtils::testlib'     => '7.30',
14253             'File::Path'            => '2.14',
14254             'Filter::Util::Call'    => '1.57',
14255             'GDBM_File'             => '1.16',
14256             'Getopt::Long'          => '2.5',
14257             'IO::Socket::IP'        => '0.39',
14258             'IPC::Cmd'              => '0.98',
14259             'JSON::PP'              => '2.94',
14260             'JSON::PP::Boolean'     => '2.94',
14261             'Locale::Codes'         => '3.52',
14262             'Locale::Codes::Constants'=> '3.52',
14263             'Locale::Codes::Country'=> '3.52',
14264             'Locale::Codes::Country_Codes'=> '3.52',
14265             'Locale::Codes::Country_Retired'=> '3.52',
14266             'Locale::Codes::Currency'=> '3.52',
14267             'Locale::Codes::Currency_Codes'=> '3.52',
14268             'Locale::Codes::Currency_Retired'=> '3.52',
14269             'Locale::Codes::LangExt'=> '3.52',
14270             'Locale::Codes::LangExt_Codes'=> '3.52',
14271             'Locale::Codes::LangExt_Retired'=> '3.52',
14272             'Locale::Codes::LangFam'=> '3.52',
14273             'Locale::Codes::LangFam_Codes'=> '3.52',
14274             'Locale::Codes::LangFam_Retired'=> '3.52',
14275             'Locale::Codes::LangVar'=> '3.52',
14276             'Locale::Codes::LangVar_Codes'=> '3.52',
14277             'Locale::Codes::LangVar_Retired'=> '3.52',
14278             'Locale::Codes::Language'=> '3.52',
14279             'Locale::Codes::Language_Codes'=> '3.52',
14280             'Locale::Codes::Language_Retired'=> '3.52',
14281             'Locale::Codes::Script' => '3.52',
14282             'Locale::Codes::Script_Codes'=> '3.52',
14283             'Locale::Codes::Script_Retired'=> '3.52',
14284             'Locale::Country'       => '3.52',
14285             'Locale::Currency'      => '3.52',
14286             'Locale::Language'      => '3.52',
14287             'Locale::Script'        => '3.52',
14288             'Module::CoreList'      => '5.20170621',
14289             'Module::CoreList::TieHashDelta'=> '5.20170621',
14290             'Module::CoreList::Utils'=> '5.20170621',
14291             'PerlIO::scalar'        => '0.27',
14292             'PerlIO::via'           => '0.17',
14293             'Storable'              => '2.63',
14294             'TAP::Base'             => '3.39',
14295             'TAP::Formatter::Base'  => '3.39',
14296             'TAP::Formatter::Color' => '3.39',
14297             'TAP::Formatter::Console'=> '3.39',
14298             'TAP::Formatter::Console::ParallelSession'=> '3.39',
14299             'TAP::Formatter::Console::Session'=> '3.39',
14300             'TAP::Formatter::File'  => '3.39',
14301             'TAP::Formatter::File::Session'=> '3.39',
14302             'TAP::Formatter::Session'=> '3.39',
14303             'TAP::Harness'          => '3.39',
14304             'TAP::Harness::Env'     => '3.39',
14305             'TAP::Object'           => '3.39',
14306             'TAP::Parser'           => '3.39',
14307             'TAP::Parser::Aggregator'=> '3.39',
14308             'TAP::Parser::Grammar'  => '3.39',
14309             'TAP::Parser::Iterator' => '3.39',
14310             'TAP::Parser::Iterator::Array'=> '3.39',
14311             'TAP::Parser::Iterator::Process'=> '3.39',
14312             'TAP::Parser::Iterator::Stream'=> '3.39',
14313             'TAP::Parser::IteratorFactory'=> '3.39',
14314             'TAP::Parser::Multiplexer'=> '3.39',
14315             'TAP::Parser::Result'   => '3.39',
14316             'TAP::Parser::Result::Bailout'=> '3.39',
14317             'TAP::Parser::Result::Comment'=> '3.39',
14318             'TAP::Parser::Result::Plan'=> '3.39',
14319             'TAP::Parser::Result::Pragma'=> '3.39',
14320             'TAP::Parser::Result::Test'=> '3.39',
14321             'TAP::Parser::Result::Unknown'=> '3.39',
14322             'TAP::Parser::Result::Version'=> '3.39',
14323             'TAP::Parser::Result::YAML'=> '3.39',
14324             'TAP::Parser::ResultFactory'=> '3.39',
14325             'TAP::Parser::Scheduler'=> '3.39',
14326             'TAP::Parser::Scheduler::Job'=> '3.39',
14327             'TAP::Parser::Scheduler::Spinner'=> '3.39',
14328             'TAP::Parser::Source'   => '3.39',
14329             'TAP::Parser::SourceHandler'=> '3.39',
14330             'TAP::Parser::SourceHandler::Executable'=> '3.39',
14331             'TAP::Parser::SourceHandler::File'=> '3.39',
14332             'TAP::Parser::SourceHandler::Handle'=> '3.39',
14333             'TAP::Parser::SourceHandler::Perl'=> '3.39',
14334             'TAP::Parser::SourceHandler::RawTAP'=> '3.39',
14335             'TAP::Parser::YAMLish::Reader'=> '3.39',
14336             'TAP::Parser::YAMLish::Writer'=> '3.39',
14337             'Test::Harness'         => '3.39',
14338             'XS::APItest'           => '0.89',
14339             '_charnames'            => '1.45',
14340             'charnames'             => '1.45',
14341             'if'                    => '0.0607',
14342             'mro'                   => '1.21',
14343             'threads'               => '2.16',
14344             'threads::shared'       => '1.57',
14345             'version'               => '0.9918',
14346             'version::regex'        => '0.9918',
14347         },
14348         removed => {
14349         }
14350     },
14351     5.022004 => {
14352         delta_from => 5.022003,
14353         changed => {
14354             'B::Op_private'         => '5.022004',
14355             'Config'                => '5.022004',
14356             'Module::CoreList'      => '5.20170715_22',
14357             'Module::CoreList::TieHashDelta'=> '5.20170715_22',
14358             'Module::CoreList::Utils'=> '5.20170715_22',
14359             'base'                  => '2.22_01',
14360         },
14361         removed => {
14362         }
14363     },
14364     5.024002 => {
14365         delta_from => 5.024001,
14366         changed => {
14367             'B::Op_private'         => '5.024002',
14368             'Config'                => '5.024002',
14369             'Module::CoreList'      => '5.20170715_24',
14370             'Module::CoreList::TieHashDelta'=> '5.20170715_24',
14371             'Module::CoreList::Utils'=> '5.20170715_24',
14372             'base'                  => '2.23_01',
14373         },
14374         removed => {
14375         }
14376     },
14377     5.027002 => {
14378         delta_from => 5.027001,
14379         changed => {
14380             'B::Op_private'         => '5.027002',
14381             'Carp'                  => '1.43',
14382             'Carp::Heavy'           => '1.43',
14383             'Config'                => '5.027002',
14384             'Cwd'                   => '3.68',
14385             'Encode'                => '2.92',
14386             'Encode::Alias'         => '2.23',
14387             'Encode::CN::HZ'        => '2.09',
14388             'Encode::Encoding'      => '2.08',
14389             'Encode::GSM0338'       => '2.07',
14390             'Encode::Guess'         => '2.07',
14391             'Encode::JP::JIS7'      => '2.07',
14392             'Encode::KR::2022_KR'   => '2.04',
14393             'Encode::MIME::Header'  => '2.27',
14394             'Encode::MIME::Header::ISO_2022_JP'=> '1.09',
14395             'Encode::Unicode'       => '2.16',
14396             'Encode::Unicode::UTF7' => '2.10',
14397             'ExtUtils::CBuilder'    => '0.280228',
14398             'ExtUtils::CBuilder::Base'=> '0.280228',
14399             'ExtUtils::CBuilder::Platform::Unix'=> '0.280228',
14400             'ExtUtils::CBuilder::Platform::VMS'=> '0.280228',
14401             'ExtUtils::CBuilder::Platform::Windows'=> '0.280228',
14402             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228',
14403             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228',
14404             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228',
14405             'ExtUtils::CBuilder::Platform::aix'=> '0.280228',
14406             'ExtUtils::CBuilder::Platform::android'=> '0.280228',
14407             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228',
14408             'ExtUtils::CBuilder::Platform::darwin'=> '0.280228',
14409             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228',
14410             'ExtUtils::CBuilder::Platform::os2'=> '0.280228',
14411             'File::Glob'            => '1.29',
14412             'File::Spec'            => '3.68',
14413             'File::Spec::AmigaOS'   => '3.68',
14414             'File::Spec::Cygwin'    => '3.68',
14415             'File::Spec::Epoc'      => '3.68',
14416             'File::Spec::Functions' => '3.68',
14417             'File::Spec::Mac'       => '3.68',
14418             'File::Spec::OS2'       => '3.68',
14419             'File::Spec::Unix'      => '3.68',
14420             'File::Spec::VMS'       => '3.68',
14421             'File::Spec::Win32'     => '3.68',
14422             'List::Util'            => '1.48',
14423             'List::Util::XS'        => '1.48',
14424             'Math::BigRat'          => '0.2613',
14425             'Module::CoreList'      => '5.20170720',
14426             'Module::CoreList::TieHashDelta'=> '5.20170720',
14427             'Module::CoreList::Utils'=> '5.20170720',
14428             'Opcode'                => '1.40',
14429             'POSIX'                 => '1.77',
14430             'PerlIO::scalar'        => '0.29',
14431             'Scalar::Util'          => '1.48',
14432             'Sub::Util'             => '1.48',
14433             'Time::HiRes'           => '1.9743',
14434             'Time::Piece'           => '1.3201',
14435             'Time::Seconds'         => '1.3201',
14436             'Unicode'               => '10.0.0',
14437             'XS::APItest'           => '0.90',
14438             'arybase'               => '0.13',
14439             'encoding'              => '2.20',
14440             'feature'               => '1.49',
14441             're'                    => '0.35',
14442         },
14443         removed => {
14444         }
14445     },
14446     5.027003 => {
14447         delta_from => 5.027002,
14448         changed => {
14449             'B'                     => '1.69',
14450             'B::Concise'            => '1.001',
14451             'B::Debug'              => '1.25',
14452             'B::Deparse'            => '1.42',
14453             'B::Op_private'         => '5.027003',
14454             'Config'                => '5.027003',
14455             'Data::Dumper'          => '2.167_02',
14456             'Devel::Peek'           => '1.27',
14457             'ExtUtils::Constant'    => '0.24',
14458             'ExtUtils::Constant::Base'=> '0.06',
14459             'ExtUtils::Constant::ProxySubs'=> '0.09',
14460             'ExtUtils::Constant::Utils'=> '0.04',
14461             'ExtUtils::ParseXS'     => '3.35',
14462             'ExtUtils::ParseXS::Constants'=> '3.35',
14463             'ExtUtils::ParseXS::CountLines'=> '3.35',
14464             'ExtUtils::ParseXS::Eval'=> '3.35',
14465             'ExtUtils::ParseXS::Utilities'=> '3.35',
14466             'ExtUtils::Typemaps'    => '3.35',
14467             'ExtUtils::Typemaps::Cmd'=> '3.35',
14468             'ExtUtils::Typemaps::InputMap'=> '3.35',
14469             'ExtUtils::Typemaps::OutputMap'=> '3.35',
14470             'ExtUtils::Typemaps::Type'=> '3.35',
14471             'Filter::Simple'        => '0.94',
14472             'Module::CoreList'      => '5.20170821',
14473             'Module::CoreList::TieHashDelta'=> '5.20170821',
14474             'Module::CoreList::Utils'=> '5.20170821',
14475             'SelfLoader'            => '1.24',
14476             'Storable'              => '2.64',
14477             'XS::APItest'           => '0.91',
14478             'base'                  => '2.26',
14479             'threads'               => '2.17',
14480             'utf8'                  => '1.20',
14481         },
14482         removed => {
14483         }
14484     },
14485     5.027004 => {
14486         delta_from => 5.027003,
14487         changed => {
14488             'B::Op_private'         => '5.027004',
14489             'Config'                => '5.027004',
14490             'File::Glob'            => '1.30',
14491             'I18N::Langinfo'        => '0.14',
14492             'Module::CoreList'      => '5.20170920',
14493             'Module::CoreList::TieHashDelta'=> '5.20170920',
14494             'Module::CoreList::Utils'=> '5.20170920',
14495             'Term::ReadLine'        => '1.17',
14496             'VMS::Stdio'            => '2.42',
14497             'XS::APItest'           => '0.92',
14498             'attributes'            => '0.31',
14499             'sort'                  => '2.03',
14500             'threads'               => '2.18',
14501         },
14502         removed => {
14503         }
14504     },
14505     5.024003 => {
14506         delta_from => 5.024002,
14507         changed => {
14508             'B::Op_private'         => '5.024003',
14509             'Config'                => '5.024003',
14510             'Module::CoreList'      => '5.20170922_24',
14511             'Module::CoreList::TieHashDelta'=> '5.20170922_24',
14512             'Module::CoreList::Utils'=> '5.20170922_24',
14513             'POSIX'                 => '1.65_01',
14514             'Time::HiRes'           => '1.9741',
14515         },
14516         removed => {
14517         }
14518     },
14519     5.026001 => {
14520         delta_from => 5.026000,
14521         changed => {
14522             'B::Op_private'         => '5.026001',
14523             'Config'                => '5.026001',
14524             'Module::CoreList'      => '5.20170922_26',
14525             'Module::CoreList::TieHashDelta'=> '5.20170922_26',
14526             'Module::CoreList::Utils'=> '5.20170922_26',
14527             '_charnames'            => '1.45',
14528             'base'                  => '2.26',
14529             'charnames'             => '1.45',
14530         },
14531         removed => {
14532         }
14533     },
14534     5.027005 => {
14535         delta_from => 5.027004,
14536         changed => {
14537             'B'                     => '1.70',
14538             'B::Concise'            => '1.002',
14539             'B::Deparse'            => '1.43',
14540             'B::Op_private'         => '5.027005',
14541             'B::Xref'               => '1.07',
14542             'Config'                => '5.027005',
14543             'Config::Perl::V'       => '0.29',
14544             'Digest::SHA'           => '5.98',
14545             'Encode'                => '2.93',
14546             'Encode::CN::HZ'        => '2.10',
14547             'Encode::JP::JIS7'      => '2.08',
14548             'Encode::MIME::Header'  => '2.28',
14549             'Encode::MIME::Name'    => '1.03',
14550             'File::Fetch'           => '0.54',
14551             'File::Path'            => '2.15',
14552             'List::Util'            => '1.49',
14553             'List::Util::XS'        => '1.49',
14554             'Locale::Codes'         => '3.54',
14555             'Locale::Codes::Constants'=> '3.54',
14556             'Locale::Codes::Country'=> '3.54',
14557             'Locale::Codes::Country_Codes'=> '3.54',
14558             'Locale::Codes::Country_Retired'=> '3.54',
14559             'Locale::Codes::Currency'=> '3.54',
14560             'Locale::Codes::Currency_Codes'=> '3.54',
14561             'Locale::Codes::Currency_Retired'=> '3.54',
14562             'Locale::Codes::LangExt'=> '3.54',
14563             'Locale::Codes::LangExt_Codes'=> '3.54',
14564             'Locale::Codes::LangExt_Retired'=> '3.54',
14565             'Locale::Codes::LangFam'=> '3.54',
14566             'Locale::Codes::LangFam_Codes'=> '3.54',
14567             'Locale::Codes::LangFam_Retired'=> '3.54',
14568             'Locale::Codes::LangVar'=> '3.54',
14569             'Locale::Codes::LangVar_Codes'=> '3.54',
14570             'Locale::Codes::LangVar_Retired'=> '3.54',
14571             'Locale::Codes::Language'=> '3.54',
14572             'Locale::Codes::Language_Codes'=> '3.54',
14573             'Locale::Codes::Language_Retired'=> '3.54',
14574             'Locale::Codes::Script' => '3.54',
14575             'Locale::Codes::Script_Codes'=> '3.54',
14576             'Locale::Codes::Script_Retired'=> '3.54',
14577             'Locale::Country'       => '3.54',
14578             'Locale::Currency'      => '3.54',
14579             'Locale::Language'      => '3.54',
14580             'Locale::Script'        => '3.54',
14581             'Math::BigFloat'        => '1.999811',
14582             'Math::BigInt'          => '1.999811',
14583             'Math::BigInt::Calc'    => '1.999811',
14584             'Math::BigInt::CalcEmu' => '1.999811',
14585             'Math::BigInt::FastCalc'=> '0.5006',
14586             'Math::BigInt::Lib'     => '1.999811',
14587             'Module::CoreList'      => '5.20171020',
14588             'Module::CoreList::TieHashDelta'=> '5.20171020',
14589             'Module::CoreList::Utils'=> '5.20171020',
14590             'NEXT'                  => '0.67_01',
14591             'POSIX'                 => '1.78',
14592             'Pod::Perldoc'          => '3.2801',
14593             'Scalar::Util'          => '1.49',
14594             'Sub::Util'             => '1.49',
14595             'Sys::Hostname'         => '1.21',
14596             'Test2'                 => '1.302103',
14597             'Test2::API'            => '1.302103',
14598             'Test2::API::Breakage'  => '1.302103',
14599             'Test2::API::Context'   => '1.302103',
14600             'Test2::API::Instance'  => '1.302103',
14601             'Test2::API::Stack'     => '1.302103',
14602             'Test2::Event'          => '1.302103',
14603             'Test2::Event::Bail'    => '1.302103',
14604             'Test2::Event::Diag'    => '1.302103',
14605             'Test2::Event::Encoding'=> '1.302103',
14606             'Test2::Event::Exception'=> '1.302103',
14607             'Test2::Event::Fail'    => '1.302103',
14608             'Test2::Event::Generic' => '1.302103',
14609             'Test2::Event::Note'    => '1.302103',
14610             'Test2::Event::Ok'      => '1.302103',
14611             'Test2::Event::Pass'    => '1.302103',
14612             'Test2::Event::Plan'    => '1.302103',
14613             'Test2::Event::Skip'    => '1.302103',
14614             'Test2::Event::Subtest' => '1.302103',
14615             'Test2::Event::TAP::Version'=> '1.302103',
14616             'Test2::Event::Waiting' => '1.302103',
14617             'Test2::EventFacet'     => '1.302103',
14618             'Test2::EventFacet::About'=> '1.302103',
14619             'Test2::EventFacet::Amnesty'=> '1.302103',
14620             'Test2::EventFacet::Assert'=> '1.302103',
14621             'Test2::EventFacet::Control'=> '1.302103',
14622             'Test2::EventFacet::Error'=> '1.302103',
14623             'Test2::EventFacet::Info'=> '1.302103',
14624             'Test2::EventFacet::Meta'=> '1.302103',
14625             'Test2::EventFacet::Parent'=> '1.302103',
14626             'Test2::EventFacet::Plan'=> '1.302103',
14627             'Test2::EventFacet::Trace'=> '1.302103',
14628             'Test2::Formatter'      => '1.302103',
14629             'Test2::Formatter::TAP' => '1.302103',
14630             'Test2::Hub'            => '1.302103',
14631             'Test2::Hub::Interceptor'=> '1.302103',
14632             'Test2::Hub::Interceptor::Terminator'=> '1.302103',
14633             'Test2::Hub::Subtest'   => '1.302103',
14634             'Test2::IPC'            => '1.302103',
14635             'Test2::IPC::Driver'    => '1.302103',
14636             'Test2::IPC::Driver::Files'=> '1.302103',
14637             'Test2::Tools::Tiny'    => '1.302103',
14638             'Test2::Util'           => '1.302103',
14639             'Test2::Util::ExternalMeta'=> '1.302103',
14640             'Test2::Util::Facets2Legacy'=> '1.302103',
14641             'Test2::Util::HashBase' => '0.005',
14642             'Test2::Util::Trace'    => '1.302103',
14643             'Test::Builder'         => '1.302103',
14644             'Test::Builder::Formatter'=> '1.302103',
14645             'Test::Builder::IO::Scalar'=> '2.114',
14646             'Test::Builder::Module' => '1.302103',
14647             'Test::Builder::Tester' => '1.302103',
14648             'Test::Builder::Tester::Color'=> '1.302103',
14649             'Test::Builder::TodoDiag'=> '1.302103',
14650             'Test::More'            => '1.302103',
14651             'Test::Simple'          => '1.302103',
14652             'Test::Tester'          => '1.302103',
14653             'Test::Tester::Capture' => '1.302103',
14654             'Test::Tester::CaptureRunner'=> '1.302103',
14655             'Test::Tester::Delegate'=> '1.302103',
14656             'Test::use::ok'         => '1.302103',
14657             'Time::HiRes'           => '1.9746',
14658             'Time::Piece'           => '1.3202',
14659             'Time::Seconds'         => '1.3202',
14660             'arybase'               => '0.14',
14661             'encoding'              => '2.21',
14662             'ok'                    => '1.302103',
14663         },
14664         removed => {
14665             'Test2::Event::Info'    => 1,
14666         }
14667     },
14668     5.027006 => {
14669         delta_from => 5.027005,
14670         changed => {
14671             'Attribute::Handlers'   => '1.01',
14672             'B'                     => '1.72',
14673             'B::Concise'            => '1.003',
14674             'B::Deparse'            => '1.45',
14675             'B::Op_private'         => '5.027006',
14676             'Carp'                  => '1.44',
14677             'Carp::Heavy'           => '1.44',
14678             'Compress::Raw::Zlib'   => '2.075',
14679             'Config'                => '5.027006',
14680             'Config::Extensions'    => '0.02',
14681             'Cwd'                   => '3.70',
14682             'DynaLoader'            => '1.44',
14683             'ExtUtils::CBuilder'    => '0.280229',
14684             'ExtUtils::CBuilder::Platform::Unix'=> '0.280229',
14685             'ExtUtils::CBuilder::Platform::VMS'=> '0.280229',
14686             'ExtUtils::CBuilder::Platform::Windows'=> '0.280229',
14687             'ExtUtils::CBuilder::Platform::aix'=> '0.280229',
14688             'ExtUtils::CBuilder::Platform::android'=> '0.280229',
14689             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280229',
14690             'ExtUtils::CBuilder::Platform::darwin'=> '0.280229',
14691             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280229',
14692             'ExtUtils::CBuilder::Platform::os2'=> '0.280229',
14693             'ExtUtils::Embed'       => '1.35',
14694             'ExtUtils::Miniperl'    => '1.07',
14695             'ExtUtils::ParseXS'     => '3.36',
14696             'ExtUtils::ParseXS::Constants'=> '3.36',
14697             'ExtUtils::ParseXS::CountLines'=> '3.36',
14698             'ExtUtils::ParseXS::Eval'=> '3.36',
14699             'ExtUtils::ParseXS::Utilities'=> '3.36',
14700             'ExtUtils::Typemaps'    => '3.36',
14701             'ExtUtils::Typemaps::Cmd'=> '3.36',
14702             'ExtUtils::Typemaps::InputMap'=> '3.36',
14703             'ExtUtils::Typemaps::OutputMap'=> '3.36',
14704             'ExtUtils::Typemaps::Type'=> '3.36',
14705             'ExtUtils::XSSymSet'    => '1.4',
14706             'File::Copy'            => '2.33',
14707             'File::Spec'            => '3.69',
14708             'File::Spec::AmigaOS'   => '3.69',
14709             'File::Spec::Cygwin'    => '3.69',
14710             'File::Spec::Epoc'      => '3.69',
14711             'File::Spec::Functions' => '3.69',
14712             'File::Spec::Mac'       => '3.69',
14713             'File::Spec::OS2'       => '3.69',
14714             'File::Spec::Unix'      => '3.69',
14715             'File::Spec::VMS'       => '3.69',
14716             'File::Spec::Win32'     => '3.69',
14717             'File::stat'            => '1.08',
14718             'FileCache'             => '1.10',
14719             'Filter::Simple'        => '0.95',
14720             'Hash::Util::FieldHash' => '1.20',
14721             'I18N::LangTags'        => '0.43',
14722             'I18N::LangTags::Detect'=> '1.07',
14723             'I18N::LangTags::List'  => '0.40',
14724             'I18N::Langinfo'        => '0.15',
14725             'IO::Handle'            => '1.37',
14726             'IO::Select'            => '1.23',
14727             'Locale::Maketext'      => '1.29',
14728             'Module::CoreList'      => '5.20171120',
14729             'Module::CoreList::TieHashDelta'=> '5.20171120',
14730             'Module::CoreList::Utils'=> '5.20171120',
14731             'Net::Cmd'              => '3.11',
14732             'Net::Config'           => '3.11',
14733             'Net::Domain'           => '3.11',
14734             'Net::FTP'              => '3.11',
14735             'Net::FTP::A'           => '3.11',
14736             'Net::FTP::E'           => '3.11',
14737             'Net::FTP::I'           => '3.11',
14738             'Net::FTP::L'           => '3.11',
14739             'Net::FTP::dataconn'    => '3.11',
14740             'Net::NNTP'             => '3.11',
14741             'Net::Netrc'            => '3.11',
14742             'Net::POP3'             => '3.11',
14743             'Net::Ping'             => '2.62',
14744             'Net::SMTP'             => '3.11',
14745             'Net::Time'             => '3.11',
14746             'Net::hostent'          => '1.02',
14747             'Net::netent'           => '1.01',
14748             'Net::protoent'         => '1.01',
14749             'Net::servent'          => '1.02',
14750             'O'                     => '1.03',
14751             'ODBM_File'             => '1.15',
14752             'Opcode'                => '1.41',
14753             'POSIX'                 => '1.80',
14754             'Pod::Html'             => '1.2203',
14755             'SelfLoader'            => '1.25',
14756             'Socket'                => '2.020_04',
14757             'Storable'              => '2.65',
14758             'Test'                  => '1.31',
14759             'Test2'                 => '1.302111',
14760             'Test2::API'            => '1.302111',
14761             'Test2::API::Breakage'  => '1.302111',
14762             'Test2::API::Context'   => '1.302111',
14763             'Test2::API::Instance'  => '1.302111',
14764             'Test2::API::Stack'     => '1.302111',
14765             'Test2::Event'          => '1.302111',
14766             'Test2::Event::Bail'    => '1.302111',
14767             'Test2::Event::Diag'    => '1.302111',
14768             'Test2::Event::Encoding'=> '1.302111',
14769             'Test2::Event::Exception'=> '1.302111',
14770             'Test2::Event::Fail'    => '1.302111',
14771             'Test2::Event::Generic' => '1.302111',
14772             'Test2::Event::Note'    => '1.302111',
14773             'Test2::Event::Ok'      => '1.302111',
14774             'Test2::Event::Pass'    => '1.302111',
14775             'Test2::Event::Plan'    => '1.302111',
14776             'Test2::Event::Skip'    => '1.302111',
14777             'Test2::Event::Subtest' => '1.302111',
14778             'Test2::Event::TAP::Version'=> '1.302111',
14779             'Test2::Event::Waiting' => '1.302111',
14780             'Test2::EventFacet'     => '1.302111',
14781             'Test2::EventFacet::About'=> '1.302111',
14782             'Test2::EventFacet::Amnesty'=> '1.302111',
14783             'Test2::EventFacet::Assert'=> '1.302111',
14784             'Test2::EventFacet::Control'=> '1.302111',
14785             'Test2::EventFacet::Error'=> '1.302111',
14786             'Test2::EventFacet::Info'=> '1.302111',
14787             'Test2::EventFacet::Meta'=> '1.302111',
14788             'Test2::EventFacet::Parent'=> '1.302111',
14789             'Test2::EventFacet::Plan'=> '1.302111',
14790             'Test2::EventFacet::Trace'=> '1.302111',
14791             'Test2::Formatter'      => '1.302111',
14792             'Test2::Formatter::TAP' => '1.302111',
14793             'Test2::Hub'            => '1.302111',
14794             'Test2::Hub::Interceptor'=> '1.302111',
14795             'Test2::Hub::Interceptor::Terminator'=> '1.302111',
14796             'Test2::Hub::Subtest'   => '1.302111',
14797             'Test2::IPC'            => '1.302111',
14798             'Test2::IPC::Driver'    => '1.302111',
14799             'Test2::IPC::Driver::Files'=> '1.302111',
14800             'Test2::Tools::Tiny'    => '1.302111',
14801             'Test2::Util'           => '1.302111',
14802             'Test2::Util::ExternalMeta'=> '1.302111',
14803             'Test2::Util::Facets2Legacy'=> '1.302111',
14804             'Test2::Util::HashBase' => '1.302111',
14805             'Test2::Util::Trace'    => '1.302111',
14806             'Test::Builder'         => '1.302111',
14807             'Test::Builder::Formatter'=> '1.302111',
14808             'Test::Builder::Module' => '1.302111',
14809             'Test::Builder::Tester' => '1.302111',
14810             'Test::Builder::Tester::Color'=> '1.302111',
14811             'Test::Builder::TodoDiag'=> '1.302111',
14812             'Test::More'            => '1.302111',
14813             'Test::Simple'          => '1.302111',
14814             'Test::Tester'          => '1.302111',
14815             'Test::Tester::Capture' => '1.302111',
14816             'Test::Tester::CaptureRunner'=> '1.302111',
14817             'Test::Tester::Delegate'=> '1.302111',
14818             'Test::use::ok'         => '1.302111',
14819             'Tie::Array'            => '1.07',
14820             'Tie::StdHandle'        => '4.5',
14821             'Time::HiRes'           => '1.9747',
14822             'Time::gmtime'          => '1.04',
14823             'Time::localtime'       => '1.03',
14824             'Unicode::Collate'      => '1.23',
14825             'Unicode::Collate::CJK::Big5'=> '1.23',
14826             'Unicode::Collate::CJK::GB2312'=> '1.23',
14827             'Unicode::Collate::CJK::JISX0208'=> '1.23',
14828             'Unicode::Collate::CJK::Korean'=> '1.23',
14829             'Unicode::Collate::CJK::Pinyin'=> '1.23',
14830             'Unicode::Collate::CJK::Stroke'=> '1.23',
14831             'Unicode::Collate::CJK::Zhuyin'=> '1.23',
14832             'Unicode::Collate::Locale'=> '1.23',
14833             'Unicode::Normalize'    => '1.26',
14834             'User::grent'           => '1.02',
14835             'User::pwent'           => '1.01',
14836             'VMS::DCLsym'           => '1.09',
14837             'VMS::Stdio'            => '2.44',
14838             'XS::APItest'           => '0.93',
14839             'XS::Typemap'           => '0.16',
14840             'XSLoader'              => '0.28',
14841             'attributes'            => '0.32',
14842             'base'                  => '2.27',
14843             'blib'                  => '1.07',
14844             'experimental'          => '0.017',
14845             'fields'                => '2.24',
14846             'ok'                    => '1.302111',
14847             're'                    => '0.36',
14848             'sort'                  => '2.04',
14849             'threads'               => '2.19',
14850             'warnings'              => '1.38',
14851         },
14852         removed => {
14853         }
14854     },
14855     5.027007 => {
14856         delta_from => 5.027006,
14857         changed => {
14858             'App::Cpan'             => '1.67',
14859             'B'                     => '1.73',
14860             'B::Debug'              => '1.26',
14861             'B::Deparse'            => '1.46',
14862             'B::Op_private'         => '5.027007',
14863             'CPAN'                  => '2.20',
14864             'CPAN::Distribution'    => '2.19',
14865             'CPAN::FTP'             => '5.5011',
14866             'CPAN::FirstTime'       => '5.5311',
14867             'CPAN::Shell'           => '5.5007',
14868             'Carp'                  => '1.45',
14869             'Carp::Heavy'           => '1.45',
14870             'Compress::Raw::Zlib'   => '2.076',
14871             'Config'                => '5.027007',
14872             'Cwd'                   => '3.71',
14873             'Data::Dumper'          => '2.169',
14874             'Devel::PPPort'         => '3.37',
14875             'Digest::SHA'           => '6.00',
14876             'DynaLoader'            => '1.45',
14877             'ExtUtils::CBuilder'    => '0.280230',
14878             'ExtUtils::CBuilder::Base'=> '0.280230',
14879             'ExtUtils::CBuilder::Platform::Unix'=> '0.280230',
14880             'ExtUtils::CBuilder::Platform::VMS'=> '0.280230',
14881             'ExtUtils::CBuilder::Platform::Windows'=> '0.280230',
14882             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280230',
14883             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280230',
14884             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280230',
14885             'ExtUtils::CBuilder::Platform::aix'=> '0.280230',
14886             'ExtUtils::CBuilder::Platform::android'=> '0.280230',
14887             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280230',
14888             'ExtUtils::CBuilder::Platform::darwin'=> '0.280230',
14889             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280230',
14890             'ExtUtils::CBuilder::Platform::os2'=> '0.280230',
14891             'ExtUtils::Typemaps'    => '3.37',
14892             'File::Fetch'           => '0.56',
14893             'File::Spec'            => '3.71',
14894             'File::Spec::AmigaOS'   => '3.71',
14895             'File::Spec::Cygwin'    => '3.71',
14896             'File::Spec::Epoc'      => '3.71',
14897             'File::Spec::Functions' => '3.71',
14898             'File::Spec::Mac'       => '3.71',
14899             'File::Spec::OS2'       => '3.71',
14900             'File::Spec::Unix'      => '3.71',
14901             'File::Spec::VMS'       => '3.71',
14902             'File::Spec::Win32'     => '3.71',
14903             'Filter::Util::Call'    => '1.58',
14904             'GDBM_File'             => '1.17',
14905             'JSON::PP'              => '2.97000',
14906             'JSON::PP::Boolean'     => '2.97000',
14907             'Locale::Codes'         => '3.55',
14908             'Locale::Codes::Constants'=> '3.55',
14909             'Locale::Codes::Country'=> '3.55',
14910             'Locale::Codes::Country_Codes'=> '3.55',
14911             'Locale::Codes::Country_Retired'=> '3.55',
14912             'Locale::Codes::Currency'=> '3.55',
14913             'Locale::Codes::Currency_Codes'=> '3.55',
14914             'Locale::Codes::Currency_Retired'=> '3.55',
14915             'Locale::Codes::LangExt'=> '3.55',
14916             'Locale::Codes::LangExt_Codes'=> '3.55',
14917             'Locale::Codes::LangExt_Retired'=> '3.55',
14918             'Locale::Codes::LangFam'=> '3.55',
14919             'Locale::Codes::LangFam_Codes'=> '3.55',
14920             'Locale::Codes::LangFam_Retired'=> '3.55',
14921             'Locale::Codes::LangVar'=> '3.55',
14922             'Locale::Codes::LangVar_Codes'=> '3.55',
14923             'Locale::Codes::LangVar_Retired'=> '3.55',
14924             'Locale::Codes::Language'=> '3.55',
14925             'Locale::Codes::Language_Codes'=> '3.55',
14926             'Locale::Codes::Language_Retired'=> '3.55',
14927             'Locale::Codes::Script' => '3.55',
14928             'Locale::Codes::Script_Codes'=> '3.55',
14929             'Locale::Codes::Script_Retired'=> '3.55',
14930             'Locale::Country'       => '3.55',
14931             'Locale::Currency'      => '3.55',
14932             'Locale::Language'      => '3.55',
14933             'Locale::Script'        => '3.55',
14934             'Module::CoreList'      => '5.20171220',
14935             'Module::CoreList::TieHashDelta'=> '5.20171220',
14936             'Module::CoreList::Utils'=> '5.20171220',
14937             'Opcode'                => '1.42',
14938             'POSIX'                 => '1.81',
14939             'Pod::Functions'        => '1.12',
14940             'Pod::Functions::Functions'=> '1.12',
14941             'Pod::Html'             => '1.23',
14942             'Sys::Hostname'         => '1.22',
14943             'Test2'                 => '1.302120',
14944             'Test2::API'            => '1.302120',
14945             'Test2::API::Breakage'  => '1.302120',
14946             'Test2::API::Context'   => '1.302120',
14947             'Test2::API::Instance'  => '1.302120',
14948             'Test2::API::Stack'     => '1.302120',
14949             'Test2::Event'          => '1.302120',
14950             'Test2::Event::Bail'    => '1.302120',
14951             'Test2::Event::Diag'    => '1.302120',
14952             'Test2::Event::Encoding'=> '1.302120',
14953             'Test2::Event::Exception'=> '1.302120',
14954             'Test2::Event::Fail'    => '1.302120',
14955             'Test2::Event::Generic' => '1.302120',
14956             'Test2::Event::Note'    => '1.302120',
14957             'Test2::Event::Ok'      => '1.302120',
14958             'Test2::Event::Pass'    => '1.302120',
14959             'Test2::Event::Plan'    => '1.302120',
14960             'Test2::Event::Skip'    => '1.302120',
14961             'Test2::Event::Subtest' => '1.302120',
14962             'Test2::Event::TAP::Version'=> '1.302120',
14963             'Test2::Event::Waiting' => '1.302120',
14964             'Test2::EventFacet'     => '1.302120',
14965             'Test2::EventFacet::About'=> '1.302120',
14966             'Test2::EventFacet::Amnesty'=> '1.302120',
14967             'Test2::EventFacet::Assert'=> '1.302120',
14968             'Test2::EventFacet::Control'=> '1.302120',
14969             'Test2::EventFacet::Error'=> '1.302120',
14970             'Test2::EventFacet::Info'=> '1.302120',
14971             'Test2::EventFacet::Meta'=> '1.302120',
14972             'Test2::EventFacet::Parent'=> '1.302120',
14973             'Test2::EventFacet::Plan'=> '1.302120',
14974             'Test2::EventFacet::Trace'=> '1.302120',
14975             'Test2::Formatter'      => '1.302120',
14976             'Test2::Formatter::TAP' => '1.302120',
14977             'Test2::Hub'            => '1.302120',
14978             'Test2::Hub::Interceptor'=> '1.302120',
14979             'Test2::Hub::Interceptor::Terminator'=> '1.302120',
14980             'Test2::Hub::Subtest'   => '1.302120',
14981             'Test2::IPC'            => '1.302120',
14982             'Test2::IPC::Driver'    => '1.302120',
14983             'Test2::IPC::Driver::Files'=> '1.302120',
14984             'Test2::Tools::Tiny'    => '1.302120',
14985             'Test2::Util'           => '1.302120',
14986             'Test2::Util::ExternalMeta'=> '1.302120',
14987             'Test2::Util::Facets2Legacy'=> '1.302120',
14988             'Test2::Util::HashBase' => '1.302120',
14989             'Test2::Util::Trace'    => '1.302120',
14990             'Test::Builder'         => '1.302120',
14991             'Test::Builder::Formatter'=> '1.302120',
14992             'Test::Builder::Module' => '1.302120',
14993             'Test::Builder::Tester' => '1.302120',
14994             'Test::Builder::Tester::Color'=> '1.302120',
14995             'Test::Builder::TodoDiag'=> '1.302120',
14996             'Test::More'            => '1.302120',
14997             'Test::Simple'          => '1.302120',
14998             'Test::Tester'          => '1.302120',
14999             'Test::Tester::Capture' => '1.302120',
15000             'Test::Tester::CaptureRunner'=> '1.302120',
15001             'Test::Tester::Delegate'=> '1.302120',
15002             'Test::use::ok'         => '1.302120',
15003             'Time::HiRes'           => '1.9748',
15004             'Time::Piece'           => '1.3203',
15005             'Time::Seconds'         => '1.3203',
15006             'Unicode::Collate'      => '1.25',
15007             'Unicode::Collate::CJK::Big5'=> '1.25',
15008             'Unicode::Collate::CJK::GB2312'=> '1.25',
15009             'Unicode::Collate::CJK::JISX0208'=> '1.25',
15010             'Unicode::Collate::CJK::Korean'=> '1.25',
15011             'Unicode::Collate::CJK::Pinyin'=> '1.25',
15012             'Unicode::Collate::CJK::Stroke'=> '1.25',
15013             'Unicode::Collate::CJK::Zhuyin'=> '1.25',
15014             'Unicode::Collate::Locale'=> '1.25',
15015             'Unicode::UCD'          => '0.69',
15016             'XS::APItest'           => '0.94',
15017             'XSLoader'              => '0.29',
15018             'arybase'               => '0.15',
15019             'autodie::exception'    => '2.29001',
15020             'autodie::hints'        => '2.29001',
15021             'experimental'          => '0.019',
15022             'feature'               => '1.50',
15023             'ok'                    => '1.302120',
15024             'overload'              => '1.29',
15025             'threads'               => '2.21',
15026             'threads::shared'       => '1.58',
15027             'warnings'              => '1.39',
15028         },
15029         removed => {
15030         }
15031     },
15032     5.027008 => {
15033         delta_from => 5.027007,
15034         changed => {
15035             'B'                     => '1.74',
15036             'B::Deparse'            => '1.47',
15037             'B::Op_private'         => '5.027008',
15038             'Config'                => '5.027008',
15039             'Cwd'                   => '3.72',
15040             'Data::Dumper'          => '2.170',
15041             'Devel::PPPort'         => '3.38',
15042             'Digest::SHA'           => '6.01',
15043             'Encode'                => '2.94',
15044             'Encode::Alias'         => '2.24',
15045             'ExtUtils::Miniperl'    => '1.08',
15046             'File::Spec'            => '3.72',
15047             'File::Spec::AmigaOS'   => '3.72',
15048             'File::Spec::Cygwin'    => '3.72',
15049             'File::Spec::Epoc'      => '3.72',
15050             'File::Spec::Functions' => '3.72',
15051             'File::Spec::Mac'       => '3.72',
15052             'File::Spec::OS2'       => '3.72',
15053             'File::Spec::Unix'      => '3.72',
15054             'File::Spec::VMS'       => '3.72',
15055             'File::Spec::Win32'     => '3.72',
15056             'JSON::PP'              => '2.97001',
15057             'JSON::PP::Boolean'     => '2.97001',
15058             'Module::CoreList'      => '5.20180120',
15059             'Module::CoreList::TieHashDelta'=> '5.20180120',
15060             'Module::CoreList::Utils'=> '5.20180120',
15061             'Opcode'                => '1.43',
15062             'Pod::Functions'        => '1.13',
15063             'Pod::Functions::Functions'=> '1.13',
15064             'Pod::Html'             => '1.24',
15065             'Pod::Man'              => '4.10',
15066             'Pod::ParseLink'        => '4.10',
15067             'Pod::Text'             => '4.10',
15068             'Pod::Text::Color'      => '4.10',
15069             'Pod::Text::Overstrike' => '4.10',
15070             'Pod::Text::Termcap'    => '4.10',
15071             'Socket'                => '2.027',
15072             'Time::HiRes'           => '1.9752',
15073             'Unicode::UCD'          => '0.70',
15074             'XS::APItest'           => '0.95',
15075             'XSLoader'              => '0.30',
15076             'autodie::exception'    => '2.29002',
15077             'feature'               => '1.51',
15078             'overload'              => '1.30',
15079             'utf8'                  => '1.21',
15080             'warnings'              => '1.40',
15081         },
15082         removed => {
15083         }
15084     },
15085     5.027009 => {
15086         delta_from => 5.027008,
15087         changed => {
15088             'B::Op_private'         => '5.027009',
15089             'Carp'                  => '1.46',
15090             'Carp::Heavy'           => '1.46',
15091             'Config'                => '5.027009',
15092             'Cwd'                   => '3.74',
15093             'Devel::PPPort'         => '3.39',
15094             'Encode'                => '2.96',
15095             'Encode::Unicode'       => '2.17',
15096             'Errno'                 => '1.29',
15097             'ExtUtils::Command'     => '7.32',
15098             'ExtUtils::Command::MM' => '7.32',
15099             'ExtUtils::Liblist'     => '7.32',
15100             'ExtUtils::Liblist::Kid'=> '7.32',
15101             'ExtUtils::MM'          => '7.32',
15102             'ExtUtils::MM_AIX'      => '7.32',
15103             'ExtUtils::MM_Any'      => '7.32',
15104             'ExtUtils::MM_BeOS'     => '7.32',
15105             'ExtUtils::MM_Cygwin'   => '7.32',
15106             'ExtUtils::MM_DOS'      => '7.32',
15107             'ExtUtils::MM_Darwin'   => '7.32',
15108             'ExtUtils::MM_MacOS'    => '7.32',
15109             'ExtUtils::MM_NW5'      => '7.32',
15110             'ExtUtils::MM_OS2'      => '7.32',
15111             'ExtUtils::MM_QNX'      => '7.32',
15112             'ExtUtils::MM_UWIN'     => '7.32',
15113             'ExtUtils::MM_Unix'     => '7.32',
15114             'ExtUtils::MM_VMS'      => '7.32',
15115             'ExtUtils::MM_VOS'      => '7.32',
15116             'ExtUtils::MM_Win32'    => '7.32',
15117             'ExtUtils::MM_Win95'    => '7.32',
15118             'ExtUtils::MY'          => '7.32',
15119             'ExtUtils::MakeMaker'   => '7.32',
15120             'ExtUtils::MakeMaker::Config'=> '7.32',
15121             'ExtUtils::MakeMaker::Locale'=> '7.32',
15122             'ExtUtils::MakeMaker::version'=> '7.32',
15123             'ExtUtils::MakeMaker::version::regex'=> '7.32',
15124             'ExtUtils::Mkbootstrap' => '7.32',
15125             'ExtUtils::Mksymlists'  => '7.32',
15126             'ExtUtils::ParseXS'     => '3.38',
15127             'ExtUtils::ParseXS::Constants'=> '3.38',
15128             'ExtUtils::ParseXS::CountLines'=> '3.38',
15129             'ExtUtils::ParseXS::Eval'=> '3.38',
15130             'ExtUtils::ParseXS::Utilities'=> '3.38',
15131             'ExtUtils::Typemaps'    => '3.38',
15132             'ExtUtils::Typemaps::Cmd'=> '3.38',
15133             'ExtUtils::Typemaps::InputMap'=> '3.38',
15134             'ExtUtils::Typemaps::OutputMap'=> '3.38',
15135             'ExtUtils::Typemaps::Type'=> '3.38',
15136             'ExtUtils::testlib'     => '7.32',
15137             'File::Spec'            => '3.74',
15138             'File::Spec::AmigaOS'   => '3.74',
15139             'File::Spec::Cygwin'    => '3.74',
15140             'File::Spec::Epoc'      => '3.74',
15141             'File::Spec::Functions' => '3.74',
15142             'File::Spec::Mac'       => '3.74',
15143             'File::Spec::OS2'       => '3.74',
15144             'File::Spec::Unix'      => '3.74',
15145             'File::Spec::VMS'       => '3.74',
15146             'File::Spec::Win32'     => '3.74',
15147             'IPC::Cmd'              => '1.00',
15148             'Math::BigFloat::Trace' => '0.49',
15149             'Math::BigInt::Trace'   => '0.49',
15150             'Module::CoreList'      => '5.20180220',
15151             'Module::CoreList::Utils'=> '5.20180220',
15152             'POSIX'                 => '1.82',
15153             'PerlIO::encoding'      => '0.26',
15154             'Storable'              => '3.06',
15155             'Storable::Limit'       => undef,
15156             'Test2'                 => '1.302122',
15157             'Test2::API'            => '1.302122',
15158             'Test2::API::Breakage'  => '1.302122',
15159             'Test2::API::Context'   => '1.302122',
15160             'Test2::API::Instance'  => '1.302122',
15161             'Test2::API::Stack'     => '1.302122',
15162             'Test2::Event'          => '1.302122',
15163             'Test2::Event::Bail'    => '1.302122',
15164             'Test2::Event::Diag'    => '1.302122',
15165             'Test2::Event::Encoding'=> '1.302122',
15166             'Test2::Event::Exception'=> '1.302122',
15167             'Test2::Event::Fail'    => '1.302122',
15168             'Test2::Event::Generic' => '1.302122',
15169             'Test2::Event::Note'    => '1.302122',
15170             'Test2::Event::Ok'      => '1.302122',
15171             'Test2::Event::Pass'    => '1.302122',
15172             'Test2::Event::Plan'    => '1.302122',
15173             'Test2::Event::Skip'    => '1.302122',
15174             'Test2::Event::Subtest' => '1.302122',
15175             'Test2::Event::TAP::Version'=> '1.302122',
15176             'Test2::Event::Waiting' => '1.302122',
15177             'Test2::EventFacet'     => '1.302122',
15178             'Test2::EventFacet::About'=> '1.302122',
15179             'Test2::EventFacet::Amnesty'=> '1.302122',
15180             'Test2::EventFacet::Assert'=> '1.302122',
15181             'Test2::EventFacet::Control'=> '1.302122',
15182             'Test2::EventFacet::Error'=> '1.302122',
15183             'Test2::EventFacet::Info'=> '1.302122',
15184             'Test2::EventFacet::Meta'=> '1.302122',
15185             'Test2::EventFacet::Parent'=> '1.302122',
15186             'Test2::EventFacet::Plan'=> '1.302122',
15187             'Test2::EventFacet::Render'=> '1.302122',
15188             'Test2::EventFacet::Trace'=> '1.302122',
15189             'Test2::Formatter'      => '1.302122',
15190             'Test2::Formatter::TAP' => '1.302122',
15191             'Test2::Hub'            => '1.302122',
15192             'Test2::Hub::Interceptor'=> '1.302122',
15193             'Test2::Hub::Interceptor::Terminator'=> '1.302122',
15194             'Test2::Hub::Subtest'   => '1.302122',
15195             'Test2::IPC'            => '1.302122',
15196             'Test2::IPC::Driver'    => '1.302122',
15197             'Test2::IPC::Driver::Files'=> '1.302122',
15198             'Test2::Tools::Tiny'    => '1.302122',
15199             'Test2::Util'           => '1.302122',
15200             'Test2::Util::ExternalMeta'=> '1.302122',
15201             'Test2::Util::Facets2Legacy'=> '1.302122',
15202             'Test2::Util::HashBase' => '1.302122',
15203             'Test2::Util::Trace'    => '1.302122',
15204             'Test::Builder'         => '1.302122',
15205             'Test::Builder::Formatter'=> '1.302122',
15206             'Test::Builder::Module' => '1.302122',
15207             'Test::Builder::Tester' => '1.302122',
15208             'Test::Builder::Tester::Color'=> '1.302122',
15209             'Test::Builder::TodoDiag'=> '1.302122',
15210             'Test::More'            => '1.302122',
15211             'Test::Simple'          => '1.302122',
15212             'Test::Tester'          => '1.302122',
15213             'Test::Tester::Capture' => '1.302122',
15214             'Test::Tester::CaptureRunner'=> '1.302122',
15215             'Test::Tester::Delegate'=> '1.302122',
15216             'Test::use::ok'         => '1.302122',
15217             'Time::HiRes'           => '1.9753',
15218             'XS::APItest'           => '0.96',
15219             'bigint'                => '0.49',
15220             'bignum'                => '0.49',
15221             'bigrat'                => '0.49',
15222             'encoding'              => '2.22',
15223             'if'                    => '0.0608',
15224             'mro'                   => '1.22',
15225             'ok'                    => '1.302122',
15226             'threads'               => '2.22',
15227             'warnings'              => '1.41',
15228         },
15229         removed => {
15230             'Module::CoreList::TieHashDelta'=> 1,
15231         }
15232     },
15233     5.027010 => {
15234         delta_from => 5.027009,
15235         changed => {
15236             'App::Prove'            => '3.42',
15237             'App::Prove::State'     => '3.42',
15238             'App::Prove::State::Result'=> '3.42',
15239             'App::Prove::State::Result::Test'=> '3.42',
15240             'B::Deparse'            => '1.48',
15241             'B::Op_private'         => '5.027010',
15242             'Carp'                  => '1.49',
15243             'Carp::Heavy'           => '1.49',
15244             'Config'                => '5.02701',
15245             'Encode'                => '2.97',
15246             'ExtUtils::Command'     => '7.34',
15247             'ExtUtils::Command::MM' => '7.34',
15248             'ExtUtils::Liblist'     => '7.34',
15249             'ExtUtils::Liblist::Kid'=> '7.34',
15250             'ExtUtils::MM'          => '7.34',
15251             'ExtUtils::MM_AIX'      => '7.34',
15252             'ExtUtils::MM_Any'      => '7.34',
15253             'ExtUtils::MM_BeOS'     => '7.34',
15254             'ExtUtils::MM_Cygwin'   => '7.34',
15255             'ExtUtils::MM_DOS'      => '7.34',
15256             'ExtUtils::MM_Darwin'   => '7.34',
15257             'ExtUtils::MM_MacOS'    => '7.34',
15258             'ExtUtils::MM_NW5'      => '7.34',
15259             'ExtUtils::MM_OS2'      => '7.34',
15260             'ExtUtils::MM_QNX'      => '7.34',
15261             'ExtUtils::MM_UWIN'     => '7.34',
15262             'ExtUtils::MM_Unix'     => '7.34',
15263             'ExtUtils::MM_VMS'      => '7.34',
15264             'ExtUtils::MM_VOS'      => '7.34',
15265             'ExtUtils::MM_Win32'    => '7.34',
15266             'ExtUtils::MM_Win95'    => '7.34',
15267             'ExtUtils::MY'          => '7.34',
15268             'ExtUtils::MakeMaker'   => '7.34',
15269             'ExtUtils::MakeMaker::Config'=> '7.34',
15270             'ExtUtils::MakeMaker::Locale'=> '7.34',
15271             'ExtUtils::MakeMaker::version'=> '7.34',
15272             'ExtUtils::MakeMaker::version::regex'=> '7.34',
15273             'ExtUtils::Mkbootstrap' => '7.34',
15274             'ExtUtils::Mksymlists'  => '7.34',
15275             'ExtUtils::ParseXS'     => '3.39',
15276             'ExtUtils::ParseXS::Constants'=> '3.39',
15277             'ExtUtils::ParseXS::CountLines'=> '3.39',
15278             'ExtUtils::ParseXS::Eval'=> '3.39',
15279             'ExtUtils::ParseXS::Utilities'=> '3.39',
15280             'ExtUtils::testlib'     => '7.34',
15281             'File::Glob'            => '1.31',
15282             'I18N::Langinfo'        => '0.16',
15283             'List::Util'            => '1.50',
15284             'List::Util::XS'        => '1.50',
15285             'Locale::Codes'         => '3.56',
15286             'Locale::Codes::Constants'=> '3.56',
15287             'Locale::Codes::Country'=> '3.56',
15288             'Locale::Codes::Country_Codes'=> '3.56',
15289             'Locale::Codes::Country_Retired'=> '3.56',
15290             'Locale::Codes::Currency'=> '3.56',
15291             'Locale::Codes::Currency_Codes'=> '3.56',
15292             'Locale::Codes::Currency_Retired'=> '3.56',
15293             'Locale::Codes::LangExt'=> '3.56',
15294             'Locale::Codes::LangExt_Codes'=> '3.56',
15295             'Locale::Codes::LangExt_Retired'=> '3.56',
15296             'Locale::Codes::LangFam'=> '3.56',
15297             'Locale::Codes::LangFam_Codes'=> '3.56',
15298             'Locale::Codes::LangFam_Retired'=> '3.56',
15299             'Locale::Codes::LangVar'=> '3.56',
15300             'Locale::Codes::LangVar_Codes'=> '3.56',
15301             'Locale::Codes::LangVar_Retired'=> '3.56',
15302             'Locale::Codes::Language'=> '3.56',
15303             'Locale::Codes::Language_Codes'=> '3.56',
15304             'Locale::Codes::Language_Retired'=> '3.56',
15305             'Locale::Codes::Script' => '3.56',
15306             'Locale::Codes::Script_Codes'=> '3.56',
15307             'Locale::Codes::Script_Retired'=> '3.56',
15308             'Locale::Country'       => '3.56',
15309             'Locale::Currency'      => '3.56',
15310             'Locale::Language'      => '3.56',
15311             'Locale::Script'        => '3.56',
15312             'Module::CoreList'      => '5.20180221',
15313             'Module::CoreList::Utils'=> '5.20180221',
15314             'POSIX'                 => '1.83',
15315             'Scalar::Util'          => '1.50',
15316             'Sub::Util'             => '1.50',
15317             'TAP::Base'             => '3.42',
15318             'TAP::Formatter::Base'  => '3.42',
15319             'TAP::Formatter::Color' => '3.42',
15320             'TAP::Formatter::Console'=> '3.42',
15321             'TAP::Formatter::Console::ParallelSession'=> '3.42',
15322             'TAP::Formatter::Console::Session'=> '3.42',
15323             'TAP::Formatter::File'  => '3.42',
15324             'TAP::Formatter::File::Session'=> '3.42',
15325             'TAP::Formatter::Session'=> '3.42',
15326             'TAP::Harness'          => '3.42',
15327             'TAP::Harness::Env'     => '3.42',
15328             'TAP::Object'           => '3.42',
15329             'TAP::Parser'           => '3.42',
15330             'TAP::Parser::Aggregator'=> '3.42',
15331             'TAP::Parser::Grammar'  => '3.42',
15332             'TAP::Parser::Iterator' => '3.42',
15333             'TAP::Parser::Iterator::Array'=> '3.42',
15334             'TAP::Parser::Iterator::Process'=> '3.42',
15335             'TAP::Parser::Iterator::Stream'=> '3.42',
15336             'TAP::Parser::IteratorFactory'=> '3.42',
15337             'TAP::Parser::Multiplexer'=> '3.42',
15338             'TAP::Parser::Result'   => '3.42',
15339             'TAP::Parser::Result::Bailout'=> '3.42',
15340             'TAP::Parser::Result::Comment'=> '3.42',
15341             'TAP::Parser::Result::Plan'=> '3.42',
15342             'TAP::Parser::Result::Pragma'=> '3.42',
15343             'TAP::Parser::Result::Test'=> '3.42',
15344             'TAP::Parser::Result::Unknown'=> '3.42',
15345             'TAP::Parser::Result::Version'=> '3.42',
15346             'TAP::Parser::Result::YAML'=> '3.42',
15347             'TAP::Parser::ResultFactory'=> '3.42',
15348             'TAP::Parser::Scheduler'=> '3.42',
15349             'TAP::Parser::Scheduler::Job'=> '3.42',
15350             'TAP::Parser::Scheduler::Spinner'=> '3.42',
15351             'TAP::Parser::Source'   => '3.42',
15352             'TAP::Parser::SourceHandler'=> '3.42',
15353             'TAP::Parser::SourceHandler::Executable'=> '3.42',
15354             'TAP::Parser::SourceHandler::File'=> '3.42',
15355             'TAP::Parser::SourceHandler::Handle'=> '3.42',
15356             'TAP::Parser::SourceHandler::Perl'=> '3.42',
15357             'TAP::Parser::SourceHandler::RawTAP'=> '3.42',
15358             'TAP::Parser::YAMLish::Reader'=> '3.42',
15359             'TAP::Parser::YAMLish::Writer'=> '3.42',
15360             'Test2'                 => '1.302133',
15361             'Test2::API'            => '1.302133',
15362             'Test2::API::Breakage'  => '1.302133',
15363             'Test2::API::Context'   => '1.302133',
15364             'Test2::API::Instance'  => '1.302133',
15365             'Test2::API::Stack'     => '1.302133',
15366             'Test2::Event'          => '1.302133',
15367             'Test2::Event::Bail'    => '1.302133',
15368             'Test2::Event::Diag'    => '1.302133',
15369             'Test2::Event::Encoding'=> '1.302133',
15370             'Test2::Event::Exception'=> '1.302133',
15371             'Test2::Event::Fail'    => '1.302133',
15372             'Test2::Event::Generic' => '1.302133',
15373             'Test2::Event::Note'    => '1.302133',
15374             'Test2::Event::Ok'      => '1.302133',
15375             'Test2::Event::Pass'    => '1.302133',
15376             'Test2::Event::Plan'    => '1.302133',
15377             'Test2::Event::Skip'    => '1.302133',
15378             'Test2::Event::Subtest' => '1.302133',
15379             'Test2::Event::TAP::Version'=> '1.302133',
15380             'Test2::Event::V2'      => '1.302133',
15381             'Test2::Event::Waiting' => '1.302133',
15382             'Test2::EventFacet'     => '1.302133',
15383             'Test2::EventFacet::About'=> '1.302133',
15384             'Test2::EventFacet::Amnesty'=> '1.302133',
15385             'Test2::EventFacet::Assert'=> '1.302133',
15386             'Test2::EventFacet::Control'=> '1.302133',
15387             'Test2::EventFacet::Error'=> '1.302133',
15388             'Test2::EventFacet::Hub'=> '1.302133',
15389             'Test2::EventFacet::Info'=> '1.302133',
15390             'Test2::EventFacet::Meta'=> '1.302133',
15391             'Test2::EventFacet::Parent'=> '1.302133',
15392             'Test2::EventFacet::Plan'=> '1.302133',
15393             'Test2::EventFacet::Render'=> '1.302133',
15394             'Test2::EventFacet::Trace'=> '1.302133',
15395             'Test2::Formatter'      => '1.302133',
15396             'Test2::Formatter::TAP' => '1.302133',
15397             'Test2::Hub'            => '1.302133',
15398             'Test2::Hub::Interceptor'=> '1.302133',
15399             'Test2::Hub::Interceptor::Terminator'=> '1.302133',
15400             'Test2::Hub::Subtest'   => '1.302133',
15401             'Test2::IPC'            => '1.302133',
15402             'Test2::IPC::Driver'    => '1.302133',
15403             'Test2::IPC::Driver::Files'=> '1.302133',
15404             'Test2::Tools::Tiny'    => '1.302133',
15405             'Test2::Util'           => '1.302133',
15406             'Test2::Util::ExternalMeta'=> '1.302133',
15407             'Test2::Util::Facets2Legacy'=> '1.302133',
15408             'Test2::Util::HashBase' => '1.302133',
15409             'Test2::Util::Trace'    => '1.302133',
15410             'Test::Builder'         => '1.302133',
15411             'Test::Builder::Formatter'=> '1.302133',
15412             'Test::Builder::Module' => '1.302133',
15413             'Test::Builder::Tester' => '1.302133',
15414             'Test::Builder::Tester::Color'=> '1.302133',
15415             'Test::Builder::TodoDiag'=> '1.302133',
15416             'Test::Harness'         => '3.42',
15417             'Test::More'            => '1.302133',
15418             'Test::Simple'          => '1.302133',
15419             'Test::Tester'          => '1.302133',
15420             'Test::Tester::Capture' => '1.302133',
15421             'Test::Tester::CaptureRunner'=> '1.302133',
15422             'Test::Tester::Delegate'=> '1.302133',
15423             'Test::use::ok'         => '1.302133',
15424             'Time::HiRes'           => '1.9757',
15425             'Time::Piece'           => '1.3204',
15426             'Time::Seconds'         => '1.3204',
15427             'attributes'            => '0.33',
15428             'ok'                    => '1.302133',
15429             'warnings'              => '1.42',
15430         },
15431         removed => {
15432         }
15433     },
15434     5.024004 => {
15435         delta_from => 5.024003,
15436         changed => {
15437             'B::Op_private'         => '5.024004',
15438             'Config'                => '5.024004',
15439             'Module::CoreList'      => '5.20180414_24',
15440             'Module::CoreList::TieHashDelta'=> '5.20180414_24',
15441             'Module::CoreList::Utils'=> '5.20180414_24',
15442         },
15443         removed => {
15444         }
15445     },
15446     5.026002 => {
15447         delta_from => 5.026001,
15448         changed => {
15449             'B::Op_private'         => '5.026002',
15450             'Config'                => '5.026002',
15451             'Module::CoreList'      => '5.20180414_26',
15452             'Module::CoreList::TieHashDelta'=> '5.20180414_26',
15453             'Module::CoreList::Utils'=> '5.20180414_26',
15454             'PerlIO::via'           => '0.17',
15455             'Term::ReadLine'        => '1.17',
15456             'Unicode::UCD'          => '0.69',
15457         },
15458         removed => {
15459         }
15460     },
15461     5.027011 => {
15462         delta_from => 5.027010,
15463         changed => {
15464             'B::Op_private'         => '5.027011',
15465             'Carp'                  => '1.50',
15466             'Carp::Heavy'           => '1.50',
15467             'Config'                => '5.027011',
15468             'Devel::PPPort'         => '3.40',
15469             'Exporter'              => '5.73',
15470             'Exporter::Heavy'       => '5.73',
15471             'ExtUtils::Constant'    => '0.25',
15472             'I18N::Langinfo'        => '0.17',
15473             'IO'                    => '1.39',
15474             'IO::Dir'               => '1.39',
15475             'IO::File'              => '1.39',
15476             'IO::Handle'            => '1.39',
15477             'IO::Pipe'              => '1.39',
15478             'IO::Poll'              => '1.39',
15479             'IO::Seekable'          => '1.39',
15480             'IO::Select'            => '1.39',
15481             'IO::Socket'            => '1.39',
15482             'IO::Socket::INET'      => '1.39',
15483             'IO::Socket::UNIX'      => '1.39',
15484             'Module::CoreList'      => '5.20180420',
15485             'Module::CoreList::Utils'=> '5.20180420',
15486             'POSIX'                 => '1.84',
15487             'Time::HiRes'           => '1.9759',
15488             'XS::APItest'           => '0.97',
15489             'bytes'                 => '1.06',
15490             'subs'                  => '1.03',
15491             'vars'                  => '1.04',
15492             'version'               => '0.9923',
15493             'version::regex'        => '0.9923',
15494         },
15495         removed => {
15496         }
15497     },
15498     5.028000 => {
15499         delta_from => 5.027011,
15500         changed => {
15501             'Archive::Tar'          => '2.30',
15502             'Archive::Tar::Constant'=> '2.30',
15503             'Archive::Tar::File'    => '2.30',
15504             'B::Op_private'         => '5.028000',
15505             'Config'                => '5.028',
15506             'Module::CoreList'      => '5.20180622',
15507             'Module::CoreList::Utils'=> '5.20180622',
15508             'Storable'              => '3.08',
15509             'XS::APItest'           => '0.98',
15510             'feature'               => '1.52',
15511         },
15512         removed => {
15513         }
15514     },
15515     5.029000 => {
15516         delta_from => 5.028,
15517         changed => {
15518             'B::Op_private'         => '5.029000',
15519             'Config'                => '5.029',
15520             'Module::CoreList'      => '5.20180626',
15521             'Module::CoreList::Utils'=> '5.20180626',
15522             'Unicode::UCD'          => '0.71',
15523             'XS::APItest'           => '0.99',
15524             'feature'               => '1.53',
15525         },
15526         removed => {
15527         }
15528     },
15529     5.029001 => {
15530         delta_from => 5.029000,
15531         changed => {
15532             'B::Op_private'         => '5.029001',
15533             'Compress::Raw::Bzip2'  => '2.081',
15534             'Compress::Raw::Zlib'   => '2.081',
15535             'Compress::Zlib'        => '2.081',
15536             'Config'                => '5.029001',
15537             'Config::Perl::V'       => '0.30',
15538             'DB_File'               => '1.842',
15539             'Devel::PPPort'         => '3.42',
15540             'Digest::SHA'           => '6.02',
15541             'ExtUtils::Manifest'    => '1.71',
15542             'File::GlobMapper'      => '1.001',
15543             'File::Temp'            => '0.2308',
15544             'IO::Compress::Adapter::Bzip2'=> '2.081',
15545             'IO::Compress::Adapter::Deflate'=> '2.081',
15546             'IO::Compress::Adapter::Identity'=> '2.081',
15547             'IO::Compress::Base'    => '2.081',
15548             'IO::Compress::Base::Common'=> '2.081',
15549             'IO::Compress::Bzip2'   => '2.081',
15550             'IO::Compress::Deflate' => '2.081',
15551             'IO::Compress::Gzip'    => '2.081',
15552             'IO::Compress::Gzip::Constants'=> '2.081',
15553             'IO::Compress::RawDeflate'=> '2.081',
15554             'IO::Compress::Zip'     => '2.081',
15555             'IO::Compress::Zip::Constants'=> '2.081',
15556             'IO::Compress::Zlib::Constants'=> '2.081',
15557             'IO::Compress::Zlib::Extra'=> '2.081',
15558             'IO::Uncompress::Adapter::Bunzip2'=> '2.081',
15559             'IO::Uncompress::Adapter::Identity'=> '2.081',
15560             'IO::Uncompress::Adapter::Inflate'=> '2.081',
15561             'IO::Uncompress::AnyInflate'=> '2.081',
15562             'IO::Uncompress::AnyUncompress'=> '2.081',
15563             'IO::Uncompress::Base'  => '2.081',
15564             'IO::Uncompress::Bunzip2'=> '2.081',
15565             'IO::Uncompress::Gunzip'=> '2.081',
15566             'IO::Uncompress::Inflate'=> '2.081',
15567             'IO::Uncompress::RawInflate'=> '2.081',
15568             'IO::Uncompress::Unzip' => '2.081',
15569             'IPC::Cmd'              => '1.02',
15570             'Locale::Codes'         => '3.57',
15571             'Locale::Codes::Constants'=> '3.57',
15572             'Locale::Codes::Country'=> '3.57',
15573             'Locale::Codes::Country_Codes'=> '3.57',
15574             'Locale::Codes::Country_Retired'=> '3.57',
15575             'Locale::Codes::Currency'=> '3.57',
15576             'Locale::Codes::Currency_Codes'=> '3.57',
15577             'Locale::Codes::Currency_Retired'=> '3.57',
15578             'Locale::Codes::LangExt'=> '3.57',
15579             'Locale::Codes::LangExt_Codes'=> '3.57',
15580             'Locale::Codes::LangExt_Retired'=> '3.57',
15581             'Locale::Codes::LangFam'=> '3.57',
15582             'Locale::Codes::LangFam_Codes'=> '3.57',
15583             'Locale::Codes::LangFam_Retired'=> '3.57',
15584             'Locale::Codes::LangVar'=> '3.57',
15585             'Locale::Codes::LangVar_Codes'=> '3.57',
15586             'Locale::Codes::LangVar_Retired'=> '3.57',
15587             'Locale::Codes::Language'=> '3.57',
15588             'Locale::Codes::Language_Codes'=> '3.57',
15589             'Locale::Codes::Language_Retired'=> '3.57',
15590             'Locale::Codes::Script' => '3.57',
15591             'Locale::Codes::Script_Codes'=> '3.57',
15592             'Locale::Codes::Script_Retired'=> '3.57',
15593             'Locale::Country'       => '3.57',
15594             'Locale::Currency'      => '3.57',
15595             'Locale::Language'      => '3.57',
15596             'Locale::Script'        => '3.57',
15597             'Math::BigFloat'        => '1.999813',
15598             'Math::BigFloat::Trace' => '0.50',
15599             'Math::BigInt'          => '1.999813',
15600             'Math::BigInt::Calc'    => '1.999813',
15601             'Math::BigInt::CalcEmu' => '1.999813',
15602             'Math::BigInt::FastCalc'=> '0.5007',
15603             'Math::BigInt::Lib'     => '1.999813',
15604             'Math::BigInt::Trace'   => '0.50',
15605             'Math::BigRat'          => '0.2614',
15606             'Module::CoreList'      => '5.20180720',
15607             'Module::CoreList::Utils'=> '5.20180720',
15608             'Pod::Man'              => '4.11',
15609             'Pod::ParseLink'        => '4.11',
15610             'Pod::Text'             => '4.11',
15611             'Pod::Text::Color'      => '4.11',
15612             'Pod::Text::Overstrike' => '4.11',
15613             'Pod::Text::Termcap'    => '4.11',
15614             'Storable'              => '3.11',
15615             'Test2'                 => '1.302138',
15616             'Test2::API'            => '1.302138',
15617             'Test2::API::Breakage'  => '1.302138',
15618             'Test2::API::Context'   => '1.302138',
15619             'Test2::API::Instance'  => '1.302138',
15620             'Test2::API::Stack'     => '1.302138',
15621             'Test2::Event'          => '1.302138',
15622             'Test2::Event::Bail'    => '1.302138',
15623             'Test2::Event::Diag'    => '1.302138',
15624             'Test2::Event::Encoding'=> '1.302138',
15625             'Test2::Event::Exception'=> '1.302138',
15626             'Test2::Event::Fail'    => '1.302138',
15627             'Test2::Event::Generic' => '1.302138',
15628             'Test2::Event::Note'    => '1.302138',
15629             'Test2::Event::Ok'      => '1.302138',
15630             'Test2::Event::Pass'    => '1.302138',
15631             'Test2::Event::Plan'    => '1.302138',
15632             'Test2::Event::Skip'    => '1.302138',
15633             'Test2::Event::Subtest' => '1.302138',
15634             'Test2::Event::TAP::Version'=> '1.302138',
15635             'Test2::Event::V2'      => '1.302138',
15636             'Test2::Event::Waiting' => '1.302138',
15637             'Test2::EventFacet'     => '1.302138',
15638             'Test2::EventFacet::About'=> '1.302138',
15639             'Test2::EventFacet::Amnesty'=> '1.302138',
15640             'Test2::EventFacet::Assert'=> '1.302138',
15641             'Test2::EventFacet::Control'=> '1.302138',
15642             'Test2::EventFacet::Error'=> '1.302138',
15643             'Test2::EventFacet::Hub'=> '1.302138',
15644             'Test2::EventFacet::Info'=> '1.302138',
15645             'Test2::EventFacet::Meta'=> '1.302138',
15646             'Test2::EventFacet::Parent'=> '1.302138',
15647             'Test2::EventFacet::Plan'=> '1.302138',
15648             'Test2::EventFacet::Render'=> '1.302138',
15649             'Test2::EventFacet::Trace'=> '1.302138',
15650             'Test2::Formatter'      => '1.302138',
15651             'Test2::Formatter::TAP' => '1.302138',
15652             'Test2::Hub'            => '1.302138',
15653             'Test2::Hub::Interceptor'=> '1.302138',
15654             'Test2::Hub::Interceptor::Terminator'=> '1.302138',
15655             'Test2::Hub::Subtest'   => '1.302138',
15656             'Test2::IPC'            => '1.302138',
15657             'Test2::IPC::Driver'    => '1.302138',
15658             'Test2::IPC::Driver::Files'=> '1.302138',
15659             'Test2::Tools::Tiny'    => '1.302138',
15660             'Test2::Util'           => '1.302138',
15661             'Test2::Util::ExternalMeta'=> '1.302138',
15662             'Test2::Util::Facets2Legacy'=> '1.302138',
15663             'Test2::Util::HashBase' => '1.302138',
15664             'Test2::Util::Trace'    => '1.302138',
15665             'Test::Builder'         => '1.302138',
15666             'Test::Builder::Formatter'=> '1.302138',
15667             'Test::Builder::Module' => '1.302138',
15668             'Test::Builder::Tester' => '1.302138',
15669             'Test::Builder::Tester::Color'=> '1.302138',
15670             'Test::Builder::TodoDiag'=> '1.302138',
15671             'Test::More'            => '1.302138',
15672             'Test::Simple'          => '1.302138',
15673             'Test::Tester'          => '1.302138',
15674             'Test::Tester::Capture' => '1.302138',
15675             'Test::Tester::CaptureRunner'=> '1.302138',
15676             'Test::Tester::Delegate'=> '1.302138',
15677             'Test::use::ok'         => '1.302138',
15678             'Thread::Queue'         => '3.13',
15679             'Time::Local'           => '1.28',
15680             'bigint'                => '0.50',
15681             'bignum'                => '0.50',
15682             'bigrat'                => '0.50',
15683             'experimental'          => '0.020',
15684             'ok'                    => '1.302138',
15685             'parent'                => '0.237',
15686             'perlfaq'               => '5.20180605',
15687             'version'               => '0.9924',
15688             'version::regex'        => '0.9924',
15689         },
15690         removed => {
15691         }
15692     },
15693     5.029002 => {
15694         delta_from => 5.029001,
15695         changed => {
15696             'B::Op_private'         => '5.029002',
15697             'Config'                => '5.029002',
15698             'Config::Extensions'    => '0.03',
15699             'Cwd'                   => '3.75',
15700             'Data::Dumper'          => '2.171',
15701             'Filter::Util::Call'    => '1.59',
15702             'HTTP::Tiny'            => '0.076',
15703             'Module::CoreList'      => '5.20180820',
15704             'Module::CoreList::Utils'=> '5.20180820',
15705             'PerlIO::scalar'        => '0.30',
15706             'Storable'              => '3.12',
15707             'Test2'                 => '1.302140',
15708             'Test2::API'            => '1.302140',
15709             'Test2::API::Breakage'  => '1.302140',
15710             'Test2::API::Context'   => '1.302140',
15711             'Test2::API::Instance'  => '1.302140',
15712             'Test2::API::Stack'     => '1.302140',
15713             'Test2::Event'          => '1.302140',
15714             'Test2::Event::Bail'    => '1.302140',
15715             'Test2::Event::Diag'    => '1.302140',
15716             'Test2::Event::Encoding'=> '1.302140',
15717             'Test2::Event::Exception'=> '1.302140',
15718             'Test2::Event::Fail'    => '1.302140',
15719             'Test2::Event::Generic' => '1.302140',
15720             'Test2::Event::Note'    => '1.302140',
15721             'Test2::Event::Ok'      => '1.302140',
15722             'Test2::Event::Pass'    => '1.302140',
15723             'Test2::Event::Plan'    => '1.302140',
15724             'Test2::Event::Skip'    => '1.302140',
15725             'Test2::Event::Subtest' => '1.302140',
15726             'Test2::Event::TAP::Version'=> '1.302140',
15727             'Test2::Event::V2'      => '1.302140',
15728             'Test2::Event::Waiting' => '1.302140',
15729             'Test2::EventFacet'     => '1.302140',
15730             'Test2::EventFacet::About'=> '1.302140',
15731             'Test2::EventFacet::Amnesty'=> '1.302140',
15732             'Test2::EventFacet::Assert'=> '1.302140',
15733             'Test2::EventFacet::Control'=> '1.302140',
15734             'Test2::EventFacet::Error'=> '1.302140',
15735             'Test2::EventFacet::Hub'=> '1.302140',
15736             'Test2::EventFacet::Info'=> '1.302140',
15737             'Test2::EventFacet::Meta'=> '1.302140',
15738             'Test2::EventFacet::Parent'=> '1.302140',
15739             'Test2::EventFacet::Plan'=> '1.302140',
15740             'Test2::EventFacet::Render'=> '1.302140',
15741             'Test2::EventFacet::Trace'=> '1.302140',
15742             'Test2::Formatter'      => '1.302140',
15743             'Test2::Formatter::TAP' => '1.302140',
15744             'Test2::Hub'            => '1.302140',
15745             'Test2::Hub::Interceptor'=> '1.302140',
15746             'Test2::Hub::Interceptor::Terminator'=> '1.302140',
15747             'Test2::Hub::Subtest'   => '1.302140',
15748             'Test2::IPC'            => '1.302140',
15749             'Test2::IPC::Driver'    => '1.302140',
15750             'Test2::IPC::Driver::Files'=> '1.302140',
15751             'Test2::Tools::Tiny'    => '1.302140',
15752             'Test2::Util'           => '1.302140',
15753             'Test2::Util::ExternalMeta'=> '1.302140',
15754             'Test2::Util::Facets2Legacy'=> '1.302140',
15755             'Test2::Util::HashBase' => '1.302140',
15756             'Test2::Util::Trace'    => '1.302140',
15757             'Test::Builder'         => '1.302140',
15758             'Test::Builder::Formatter'=> '1.302140',
15759             'Test::Builder::Module' => '1.302140',
15760             'Test::Builder::Tester' => '1.302140',
15761             'Test::Builder::Tester::Color'=> '1.302140',
15762             'Test::Builder::TodoDiag'=> '1.302140',
15763             'Test::More'            => '1.302140',
15764             'Test::Simple'          => '1.302140',
15765             'Test::Tester'          => '1.302140',
15766             'Test::Tester::Capture' => '1.302140',
15767             'Test::Tester::CaptureRunner'=> '1.302140',
15768             'Test::Tester::Delegate'=> '1.302140',
15769             'Test::use::ok'         => '1.302140',
15770             'Time::HiRes'           => '1.9760',
15771             'Time::Piece'           => '1.33',
15772             'Time::Seconds'         => '1.33',
15773             'Unicode'               => '11.0.0',
15774             'ok'                    => '1.302140',
15775             'warnings'              => '1.43',
15776         },
15777         removed => {
15778         }
15779     },
15780     5.029003 => {
15781         delta_from => 5.029002,
15782         changed => {
15783             'Archive::Tar'          => '2.32',
15784             'Archive::Tar::Constant'=> '2.32',
15785             'Archive::Tar::File'    => '2.32',
15786             'B::Op_private'         => '5.029003',
15787             'Config'                => '5.029003',
15788             'Data::Dumper'          => '2.172',
15789             'Devel::PPPort'         => '3.43',
15790             'File::Path'            => '2.16',
15791             'File::Spec'            => '3.75',
15792             'File::Spec::AmigaOS'   => '3.75',
15793             'File::Spec::Cygwin'    => '3.75',
15794             'File::Spec::Epoc'      => '3.75',
15795             'File::Spec::Functions' => '3.75',
15796             'File::Spec::Mac'       => '3.75',
15797             'File::Spec::OS2'       => '3.75',
15798             'File::Spec::Unix'      => '3.75',
15799             'File::Spec::VMS'       => '3.75',
15800             'File::Spec::Win32'     => '3.75',
15801             'Module::CoreList'      => '5.20180920',
15802             'Module::CoreList::Utils'=> '5.20180920',
15803             'POSIX'                 => '1.85',
15804             'Storable'              => '3.13',
15805             'User::grent'           => '1.03',
15806             'perlfaq'               => '5.20180915',
15807         },
15808         removed => {
15809             'Locale::Codes'         => 1,
15810             'Locale::Codes::Constants'=> 1,
15811             'Locale::Codes::Country'=> 1,
15812             'Locale::Codes::Country_Codes'=> 1,
15813             'Locale::Codes::Country_Retired'=> 1,
15814             'Locale::Codes::Currency'=> 1,
15815             'Locale::Codes::Currency_Codes'=> 1,
15816             'Locale::Codes::Currency_Retired'=> 1,
15817             'Locale::Codes::LangExt'=> 1,
15818             'Locale::Codes::LangExt_Codes'=> 1,
15819             'Locale::Codes::LangExt_Retired'=> 1,
15820             'Locale::Codes::LangFam'=> 1,
15821             'Locale::Codes::LangFam_Codes'=> 1,
15822             'Locale::Codes::LangFam_Retired'=> 1,
15823             'Locale::Codes::LangVar'=> 1,
15824             'Locale::Codes::LangVar_Codes'=> 1,
15825             'Locale::Codes::LangVar_Retired'=> 1,
15826             'Locale::Codes::Language'=> 1,
15827             'Locale::Codes::Language_Codes'=> 1,
15828             'Locale::Codes::Language_Retired'=> 1,
15829             'Locale::Codes::Script' => 1,
15830             'Locale::Codes::Script_Codes'=> 1,
15831             'Locale::Codes::Script_Retired'=> 1,
15832             'Locale::Country'       => 1,
15833             'Locale::Currency'      => 1,
15834             'Locale::Language'      => 1,
15835             'Locale::Script'        => 1,
15836         }
15837     },
15838     5.029004 => {
15839         delta_from => 5.029003,
15840         changed => {
15841             'App::Cpan'             => '1.671',
15842             'B'                     => '1.75',
15843             'B::Concise'            => '1.004',
15844             'B::Deparse'            => '1.49',
15845             'B::Op_private'         => '5.029004',
15846             'B::Terse'              => '1.09',
15847             'CPAN'                  => '2.21',
15848             'CPAN::Distribution'    => '2.21',
15849             'CPAN::Mirrors'         => '2.21',
15850             'CPAN::Plugin'          => '0.97',
15851             'CPAN::Shell'           => '5.5008',
15852             'Config'                => '5.029004',
15853             'Devel::Peek'           => '1.28',
15854             'File::Copy'            => '2.34',
15855             'File::Glob'            => '1.32',
15856             'Math::BigFloat::Trace' => '0.51',
15857             'Math::BigInt::Trace'   => '0.51',
15858             'Module::CoreList'      => '5.20181020',
15859             'Module::CoreList::Utils'=> '5.20181020',
15860             'Unicode::UCD'          => '0.72',
15861             'bigint'                => '0.51',
15862             'bignum'                => '0.51',
15863             'bigrat'                => '0.51',
15864             'bytes'                 => '1.07',
15865             'feature'               => '1.54',
15866             'sigtrap'               => '1.09',
15867             'vars'                  => '1.05',
15868         },
15869         removed => {
15870             'B::Debug'              => 1,
15871             'arybase'               => 1,
15872         }
15873     },
15874     5.029005 => {
15875         delta_from => 5.029004,
15876         changed => {
15877             'B::Op_private'         => '5.029005',
15878             'Config'                => '5.029005',
15879             'Cwd'                   => '3.76',
15880             'Data::Dumper'          => '2.173',
15881             'Errno'                 => '1.30',
15882             'File::Spec'            => '3.76',
15883             'File::Spec::AmigaOS'   => '3.76',
15884             'File::Spec::Cygwin'    => '3.76',
15885             'File::Spec::Epoc'      => '3.76',
15886             'File::Spec::Functions' => '3.76',
15887             'File::Spec::Mac'       => '3.76',
15888             'File::Spec::OS2'       => '3.76',
15889             'File::Spec::Unix'      => '3.76',
15890             'File::Spec::VMS'       => '3.76',
15891             'File::Spec::Win32'     => '3.76',
15892             'GDBM_File'             => '1.18',
15893             'Module::CoreList'      => '5.20181120',
15894             'Module::CoreList::Utils'=> '5.20181120',
15895             'NDBM_File'             => '1.15',
15896             'ODBM_File'             => '1.16',
15897             'SDBM_File'             => '1.15',
15898             're'                    => '0.37',
15899         },
15900         removed => {
15901         }
15902     },
15903     5.026003 => {
15904         delta_from => 5.026002,
15905         changed => {
15906             'Archive::Tar'          => '2.24_01',
15907             'B::Op_private'         => '5.026003',
15908             'Config'                => '5.026003',
15909             'Module::CoreList'      => '5.20181129_26',
15910             'Module::CoreList::TieHashDelta'=> '5.20181129_26',
15911             'Module::CoreList::Utils'=> '5.20181129_26',
15912         },
15913         removed => {
15914         }
15915     },
15916     5.028001 => {
15917         delta_from => 5.028,
15918         changed => {
15919             'B::Op_private'         => '5.028001',
15920             'Config'                => '5.028001',
15921             'Module::CoreList'      => '5.20181129_28',
15922             'Module::CoreList::Utils'=> '5.20181129_28',
15923         },
15924         removed => {
15925         }
15926     },
15927     5.029006 => {
15928         delta_from => 5.029005,
15929         changed => {
15930             'B::Op_private'         => '5.029006',
15931             'Config'                => '5.029006',
15932             'Config::Perl::V'       => '0.32',
15933             'ExtUtils::ParseXS'     => '3.40',
15934             'ExtUtils::ParseXS::Constants'=> '3.40',
15935             'ExtUtils::ParseXS::CountLines'=> '3.40',
15936             'ExtUtils::ParseXS::Eval'=> '3.40',
15937             'ExtUtils::ParseXS::Utilities'=> '3.40',
15938             'File::Find'            => '1.35',
15939             'Module::CoreList'      => '5.20181218',
15940             'Module::CoreList::Utils'=> '5.20181218',
15941             'POSIX'                 => '1.86',
15942             'Storable'              => '3.14',
15943             'Test2'                 => '1.302141',
15944             'Test2::API'            => '1.302141',
15945             'Test2::API::Breakage'  => '1.302141',
15946             'Test2::API::Context'   => '1.302141',
15947             'Test2::API::Instance'  => '1.302141',
15948             'Test2::API::Stack'     => '1.302141',
15949             'Test2::Event'          => '1.302141',
15950             'Test2::Event::Bail'    => '1.302141',
15951             'Test2::Event::Diag'    => '1.302141',
15952             'Test2::Event::Encoding'=> '1.302141',
15953             'Test2::Event::Exception'=> '1.302141',
15954             'Test2::Event::Fail'    => '1.302141',
15955             'Test2::Event::Generic' => '1.302141',
15956             'Test2::Event::Note'    => '1.302141',
15957             'Test2::Event::Ok'      => '1.302141',
15958             'Test2::Event::Pass'    => '1.302141',
15959             'Test2::Event::Plan'    => '1.302141',
15960             'Test2::Event::Skip'    => '1.302141',
15961             'Test2::Event::Subtest' => '1.302141',
15962             'Test2::Event::TAP::Version'=> '1.302141',
15963             'Test2::Event::V2'      => '1.302141',
15964             'Test2::Event::Waiting' => '1.302141',
15965             'Test2::EventFacet'     => '1.302141',
15966             'Test2::EventFacet::About'=> '1.302141',
15967             'Test2::EventFacet::Amnesty'=> '1.302141',
15968             'Test2::EventFacet::Assert'=> '1.302141',
15969             'Test2::EventFacet::Control'=> '1.302141',
15970             'Test2::EventFacet::Error'=> '1.302141',
15971             'Test2::EventFacet::Hub'=> '1.302141',
15972             'Test2::EventFacet::Info'=> '1.302141',
15973             'Test2::EventFacet::Meta'=> '1.302141',
15974             'Test2::EventFacet::Parent'=> '1.302141',
15975             'Test2::EventFacet::Plan'=> '1.302141',
15976             'Test2::EventFacet::Render'=> '1.302141',
15977             'Test2::EventFacet::Trace'=> '1.302141',
15978             'Test2::Formatter'      => '1.302141',
15979             'Test2::Formatter::TAP' => '1.302141',
15980             'Test2::Hub'            => '1.302141',
15981             'Test2::Hub::Interceptor'=> '1.302141',
15982             'Test2::Hub::Interceptor::Terminator'=> '1.302141',
15983             'Test2::Hub::Subtest'   => '1.302141',
15984             'Test2::IPC'            => '1.302141',
15985             'Test2::IPC::Driver'    => '1.302141',
15986             'Test2::IPC::Driver::Files'=> '1.302141',
15987             'Test2::Tools::Tiny'    => '1.302141',
15988             'Test2::Util'           => '1.302141',
15989             'Test2::Util::ExternalMeta'=> '1.302141',
15990             'Test2::Util::Facets2Legacy'=> '1.302141',
15991             'Test2::Util::HashBase' => '1.302141',
15992             'Test2::Util::Trace'    => '1.302141',
15993             'Test::Builder'         => '1.302141',
15994             'Test::Builder::Formatter'=> '1.302141',
15995             'Test::Builder::Module' => '1.302141',
15996             'Test::Builder::Tester' => '1.302141',
15997             'Test::Builder::Tester::Color'=> '1.302141',
15998             'Test::Builder::TodoDiag'=> '1.302141',
15999             'Test::More'            => '1.302141',
16000             'Test::Simple'          => '1.302141',
16001             'Test::Tester'          => '1.302141',
16002             'Test::Tester::Capture' => '1.302141',
16003             'Test::Tester::CaptureRunner'=> '1.302141',
16004             'Test::Tester::Delegate'=> '1.302141',
16005             'Test::use::ok'         => '1.302141',
16006             'ok'                    => '1.302141',
16007             'threads::shared'       => '1.59',
16008         },
16009         removed => {
16010             'Storable::Limit'       => 1,
16011         }
16012     },
16013     5.029007 => {
16014         delta_from => 5.029006,
16015         changed => {
16016             'App::Cpan'             => '1.672',
16017             'B::Op_private'         => '5.029007',
16018             'CPAN'                  => '2.22',
16019             'CPAN::Distribution'    => '2.22',
16020             'CPAN::Plugin::Specfile'=> '0.02',
16021             'Compress::Raw::Bzip2'  => '2.084',
16022             'Compress::Raw::Zlib'   => '2.084',
16023             'Compress::Zlib'        => '2.084',
16024             'Config'                => '5.029007',
16025             'Cwd'                   => '3.77',
16026             'DB_File'               => '1.843',
16027             'File::Find'            => '1.36',
16028             'File::Spec'            => '3.77',
16029             'File::Spec::AmigaOS'   => '3.77',
16030             'File::Spec::Cygwin'    => '3.77',
16031             'File::Spec::Epoc'      => '3.77',
16032             'File::Spec::Functions' => '3.77',
16033             'File::Spec::Mac'       => '3.77',
16034             'File::Spec::OS2'       => '3.77',
16035             'File::Spec::Unix'      => '3.77',
16036             'File::Spec::VMS'       => '3.77',
16037             'File::Spec::Win32'     => '3.77',
16038             'File::Temp'            => '0.2309',
16039             'IO::Compress::Adapter::Bzip2'=> '2.084',
16040             'IO::Compress::Adapter::Deflate'=> '2.084',
16041             'IO::Compress::Adapter::Identity'=> '2.084',
16042             'IO::Compress::Base'    => '2.084',
16043             'IO::Compress::Base::Common'=> '2.084',
16044             'IO::Compress::Bzip2'   => '2.084',
16045             'IO::Compress::Deflate' => '2.084',
16046             'IO::Compress::Gzip'    => '2.084',
16047             'IO::Compress::Gzip::Constants'=> '2.084',
16048             'IO::Compress::RawDeflate'=> '2.084',
16049             'IO::Compress::Zip'     => '2.084',
16050             'IO::Compress::Zip::Constants'=> '2.084',
16051             'IO::Compress::Zlib::Constants'=> '2.084',
16052             'IO::Compress::Zlib::Extra'=> '2.084',
16053             'IO::Uncompress::Adapter::Bunzip2'=> '2.084',
16054             'IO::Uncompress::Adapter::Identity'=> '2.084',
16055             'IO::Uncompress::Adapter::Inflate'=> '2.084',
16056             'IO::Uncompress::AnyInflate'=> '2.084',
16057             'IO::Uncompress::AnyUncompress'=> '2.084',
16058             'IO::Uncompress::Base'  => '2.084',
16059             'IO::Uncompress::Bunzip2'=> '2.084',
16060             'IO::Uncompress::Gunzip'=> '2.084',
16061             'IO::Uncompress::Inflate'=> '2.084',
16062             'IO::Uncompress::RawInflate'=> '2.084',
16063             'IO::Uncompress::Unzip' => '2.084',
16064             'Math::BigFloat'        => '1.999816',
16065             'Math::BigInt'          => '1.999816',
16066             'Math::BigInt::Calc'    => '1.999816',
16067             'Math::BigInt::FastCalc'=> '0.5008',
16068             'Math::BigInt::Lib'     => '1.999816',
16069             'Module::CoreList'      => '5.20190120',
16070             'Module::CoreList::Utils'=> '5.20190120',
16071             'Test2'                 => '1.302160',
16072             'Test2::API'            => '1.302160',
16073             'Test2::API::Breakage'  => '1.302160',
16074             'Test2::API::Context'   => '1.302160',
16075             'Test2::API::Instance'  => '1.302160',
16076             'Test2::API::Stack'     => '1.302160',
16077             'Test2::Event'          => '1.302160',
16078             'Test2::Event::Bail'    => '1.302160',
16079             'Test2::Event::Diag'    => '1.302160',
16080             'Test2::Event::Encoding'=> '1.302160',
16081             'Test2::Event::Exception'=> '1.302160',
16082             'Test2::Event::Fail'    => '1.302160',
16083             'Test2::Event::Generic' => '1.302160',
16084             'Test2::Event::Note'    => '1.302160',
16085             'Test2::Event::Ok'      => '1.302160',
16086             'Test2::Event::Pass'    => '1.302160',
16087             'Test2::Event::Plan'    => '1.302160',
16088             'Test2::Event::Skip'    => '1.302160',
16089             'Test2::Event::Subtest' => '1.302160',
16090             'Test2::Event::TAP::Version'=> '1.302160',
16091             'Test2::Event::V2'      => '1.302160',
16092             'Test2::Event::Waiting' => '1.302160',
16093             'Test2::EventFacet'     => '1.302160',
16094             'Test2::EventFacet::About'=> '1.302160',
16095             'Test2::EventFacet::Amnesty'=> '1.302160',
16096             'Test2::EventFacet::Assert'=> '1.302160',
16097             'Test2::EventFacet::Control'=> '1.302160',
16098             'Test2::EventFacet::Error'=> '1.302160',
16099             'Test2::EventFacet::Hub'=> '1.302160',
16100             'Test2::EventFacet::Info'=> '1.302160',
16101             'Test2::EventFacet::Info::Table'=> undef,
16102             'Test2::EventFacet::Meta'=> '1.302160',
16103             'Test2::EventFacet::Parent'=> '1.302160',
16104             'Test2::EventFacet::Plan'=> '1.302160',
16105             'Test2::EventFacet::Render'=> '1.302160',
16106             'Test2::EventFacet::Trace'=> '1.302160',
16107             'Test2::Formatter'      => '1.302160',
16108             'Test2::Formatter::TAP' => '1.302160',
16109             'Test2::Hub'            => '1.302160',
16110             'Test2::Hub::Interceptor'=> '1.302160',
16111             'Test2::Hub::Interceptor::Terminator'=> '1.302160',
16112             'Test2::Hub::Subtest'   => '1.302160',
16113             'Test2::IPC'            => '1.302160',
16114             'Test2::IPC::Driver'    => '1.302160',
16115             'Test2::IPC::Driver::Files'=> '1.302160',
16116             'Test2::Tools::Tiny'    => '1.302160',
16117             'Test2::Util'           => '1.302160',
16118             'Test2::Util::ExternalMeta'=> '1.302160',
16119             'Test2::Util::Facets2Legacy'=> '1.302160',
16120             'Test2::Util::HashBase' => '1.302160',
16121             'Test2::Util::Trace'    => '1.302160',
16122             'Test::Builder'         => '1.302160',
16123             'Test::Builder::Formatter'=> '1.302160',
16124             'Test::Builder::Module' => '1.302160',
16125             'Test::Builder::Tester' => '1.302160',
16126             'Test::Builder::Tester::Color'=> '1.302160',
16127             'Test::Builder::TodoDiag'=> '1.302160',
16128             'Test::More'            => '1.302160',
16129             'Test::Simple'          => '1.302160',
16130             'Test::Tester'          => '1.302160',
16131             'Test::Tester::Capture' => '1.302160',
16132             'Test::Tester::CaptureRunner'=> '1.302160',
16133             'Test::Tester::Delegate'=> '1.302160',
16134             'Test::use::ok'         => '1.302160',
16135             'Unicode::Collate'      => '1.27',
16136             'Unicode::Collate::CJK::Big5'=> '1.27',
16137             'Unicode::Collate::CJK::GB2312'=> '1.27',
16138             'Unicode::Collate::CJK::JISX0208'=> '1.27',
16139             'Unicode::Collate::CJK::Korean'=> '1.27',
16140             'Unicode::Collate::CJK::Pinyin'=> '1.27',
16141             'Unicode::Collate::CJK::Stroke'=> '1.27',
16142             'Unicode::Collate::CJK::Zhuyin'=> '1.27',
16143             'Unicode::Collate::Locale'=> '1.27',
16144             'lib'                   => '0.65',
16145             'ok'                    => '1.302160',
16146         },
16147         removed => {
16148             'Math::BigInt::CalcEmu' => 1,
16149         }
16150     },
16151     5.029008 => {
16152         delta_from => 5.029007,
16153         changed => {
16154             'B'                     => '1.76',
16155             'B::Op_private'         => '5.029008',
16156             'Config'                => '5.029008',
16157             'Devel::PPPort'         => '3.44',
16158             'Encode'                => '3.00',
16159             'Encode::Unicode'       => '2.18',
16160             'ExtUtils::Miniperl'    => '1.09',
16161             'IO'                    => '1.40',
16162             'IO::Dir'               => '1.40',
16163             'IO::File'              => '1.40',
16164             'IO::Handle'            => '1.40',
16165             'IO::Pipe'              => '1.40',
16166             'IO::Poll'              => '1.40',
16167             'IO::Seekable'          => '1.40',
16168             'IO::Select'            => '1.40',
16169             'IO::Socket'            => '1.40',
16170             'IO::Socket::INET'      => '1.40',
16171             'IO::Socket::UNIX'      => '1.40',
16172             'JSON::PP'              => '4.00',
16173             'JSON::PP::Boolean'     => '4.00',
16174             'Module::CoreList'      => '5.20190220',
16175             'Module::CoreList::Utils'=> '5.20190220',
16176             'Module::Load'          => '0.34',
16177             'Net::Ping'             => '2.71',
16178             'POSIX'                 => '1.87',
16179             'Test2'                 => '1.302162',
16180             'Test2::API'            => '1.302162',
16181             'Test2::API::Breakage'  => '1.302162',
16182             'Test2::API::Context'   => '1.302162',
16183             'Test2::API::Instance'  => '1.302162',
16184             'Test2::API::Stack'     => '1.302162',
16185             'Test2::Event'          => '1.302162',
16186             'Test2::Event::Bail'    => '1.302162',
16187             'Test2::Event::Diag'    => '1.302162',
16188             'Test2::Event::Encoding'=> '1.302162',
16189             'Test2::Event::Exception'=> '1.302162',
16190             'Test2::Event::Fail'    => '1.302162',
16191             'Test2::Event::Generic' => '1.302162',
16192             'Test2::Event::Note'    => '1.302162',
16193             'Test2::Event::Ok'      => '1.302162',
16194             'Test2::Event::Pass'    => '1.302162',
16195             'Test2::Event::Plan'    => '1.302162',
16196             'Test2::Event::Skip'    => '1.302162',
16197             'Test2::Event::Subtest' => '1.302162',
16198             'Test2::Event::TAP::Version'=> '1.302162',
16199             'Test2::Event::V2'      => '1.302162',
16200             'Test2::Event::Waiting' => '1.302162',
16201             'Test2::EventFacet'     => '1.302162',
16202             'Test2::EventFacet::About'=> '1.302162',
16203             'Test2::EventFacet::Amnesty'=> '1.302162',
16204             'Test2::EventFacet::Assert'=> '1.302162',
16205             'Test2::EventFacet::Control'=> '1.302162',
16206             'Test2::EventFacet::Error'=> '1.302162',
16207             'Test2::EventFacet::Hub'=> '1.302162',
16208             'Test2::EventFacet::Info'=> '1.302162',
16209             'Test2::EventFacet::Meta'=> '1.302162',
16210             'Test2::EventFacet::Parent'=> '1.302162',
16211             'Test2::EventFacet::Plan'=> '1.302162',
16212             'Test2::EventFacet::Render'=> '1.302162',
16213             'Test2::EventFacet::Trace'=> '1.302162',
16214             'Test2::Formatter'      => '1.302162',
16215             'Test2::Formatter::TAP' => '1.302162',
16216             'Test2::Hub'            => '1.302162',
16217             'Test2::Hub::Interceptor'=> '1.302162',
16218             'Test2::Hub::Interceptor::Terminator'=> '1.302162',
16219             'Test2::Hub::Subtest'   => '1.302162',
16220             'Test2::IPC'            => '1.302162',
16221             'Test2::IPC::Driver'    => '1.302162',
16222             'Test2::IPC::Driver::Files'=> '1.302162',
16223             'Test2::Tools::Tiny'    => '1.302162',
16224             'Test2::Util'           => '1.302162',
16225             'Test2::Util::ExternalMeta'=> '1.302162',
16226             'Test2::Util::Facets2Legacy'=> '1.302162',
16227             'Test2::Util::HashBase' => '1.302162',
16228             'Test2::Util::Trace'    => '1.302162',
16229             'Test::Builder'         => '1.302162',
16230             'Test::Builder::Formatter'=> '1.302162',
16231             'Test::Builder::Module' => '1.302162',
16232             'Test::Builder::Tester' => '1.302162',
16233             'Test::Builder::Tester::Color'=> '1.302162',
16234             'Test::Builder::TodoDiag'=> '1.302162',
16235             'Test::More'            => '1.302162',
16236             'Test::Simple'          => '1.302162',
16237             'Test::Tester'          => '1.302162',
16238             'Test::Tester::Capture' => '1.302162',
16239             'Test::Tester::CaptureRunner'=> '1.302162',
16240             'Test::Tester::Delegate'=> '1.302162',
16241             'Test::use::ok'         => '1.302162',
16242             'XS::APItest'           => '1.00',
16243             'deprecate'             => '0.04',
16244             'ok'                    => '1.302162',
16245             'perlfaq'               => '5.20190126',
16246         },
16247         removed => {
16248         }
16249     },
16250     5.029009 => {
16251         delta_from => 5.029008,
16252         changed => {
16253             'B::Op_private'         => '5.029009',
16254             'Config'                => '5.029009',
16255             'Devel::PPPort'         => '3.45',
16256             'Encode'                => '3.01',
16257             'ExtUtils::Manifest'    => '1.72',
16258             'JSON::PP'              => '4.02',
16259             'JSON::PP::Boolean'     => '4.02',
16260             'Module::CoreList'      => '5.20190320',
16261             'Module::CoreList::Utils'=> '5.20190320',
16262             'PerlIO::encoding'      => '0.27',
16263             'Unicode'               => '12.0.0',
16264             'threads::shared'       => '1.60',
16265             'utf8'                  => '1.22',
16266             'warnings'              => '1.44',
16267         },
16268         removed => {
16269         }
16270     },
16271     5.028002 => {
16272         delta_from => 5.028001,
16273         changed => {
16274             'B::Op_private'         => '5.028002',
16275             'Config'                => '5.028002',
16276             'Module::CoreList'      => '5.20190419',
16277             'Module::CoreList::Utils'=> '5.20190419',
16278             'PerlIO::scalar'        => '0.30',
16279             'Storable'              => '3.08_01',
16280         },
16281         removed => {
16282         }
16283     },
16284     5.029010 => {
16285         delta_from => 5.029009,
16286         changed => {
16287             'B::Op_private'         => '5.029010',
16288             'Config'                => '5.02901',
16289             'Cwd'                   => '3.78',
16290             'Data::Dumper'          => '2.174',
16291             'ExtUtils::CBuilder'    => '0.280231',
16292             'ExtUtils::CBuilder::Base'=> '0.280231',
16293             'ExtUtils::CBuilder::Platform::Unix'=> '0.280231',
16294             'ExtUtils::CBuilder::Platform::VMS'=> '0.280231',
16295             'ExtUtils::CBuilder::Platform::Windows'=> '0.280231',
16296             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280231',
16297             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280231',
16298             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280231',
16299             'ExtUtils::CBuilder::Platform::aix'=> '0.280231',
16300             'ExtUtils::CBuilder::Platform::android'=> '0.280231',
16301             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280231',
16302             'ExtUtils::CBuilder::Platform::darwin'=> '0.280231',
16303             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280231',
16304             'ExtUtils::CBuilder::Platform::os2'=> '0.280231',
16305             'File::Spec'            => '3.78',
16306             'File::Spec::AmigaOS'   => '3.78',
16307             'File::Spec::Cygwin'    => '3.78',
16308             'File::Spec::Epoc'      => '3.78',
16309             'File::Spec::Functions' => '3.78',
16310             'File::Spec::Mac'       => '3.78',
16311             'File::Spec::OS2'       => '3.78',
16312             'File::Spec::Unix'      => '3.78',
16313             'File::Spec::VMS'       => '3.78',
16314             'File::Spec::Win32'     => '3.78',
16315             'I18N::Langinfo'        => '0.18',
16316             'Module::CoreList'      => '5.20190420',
16317             'Module::CoreList::Utils'=> '5.20190420',
16318             'Module::Metadata'      => '1.000036',
16319             'POSIX'                 => '1.88',
16320             'Storable'              => '3.15',
16321             'Unicode'               => '12.1.0',
16322         },
16323         removed => {
16324         }
16325     },
16326     5.030000 => {
16327         delta_from => 5.02901,
16328         changed => {
16329             'B::Op_private'         => '5.030000',
16330             'Config'                => '5.03',
16331             'Devel::PPPort'         => '3.52',
16332             'Module::CoreList'      => '5.20190522',
16333             'Module::CoreList::Utils'=> '5.20190522',
16334             'XS::Typemap'           => '0.17',
16335         },
16336         removed => {
16337         }
16338     },
16339     5.031000 => {
16340         delta_from => 5.03,
16341         changed => {
16342             'B::Op_private'         => '5.031000',
16343             'Config'                => '5.031',
16344             'Module::CoreList'      => '5.20190524',
16345             'Module::CoreList::Utils'=> '5.20190524',
16346             'Pod::Simple'           => '3.36',
16347             'Pod::Simple::BlackBox' => '3.36',
16348             'Pod::Simple::Checker'  => '3.36',
16349             'Pod::Simple::Debug'    => '3.36',
16350             'Pod::Simple::DumpAsText'=> '3.36',
16351             'Pod::Simple::DumpAsXML'=> '3.36',
16352             'Pod::Simple::HTML'     => '3.36',
16353             'Pod::Simple::HTMLBatch'=> '3.36',
16354             'Pod::Simple::JustPod'  => undef,
16355             'Pod::Simple::LinkSection'=> '3.36',
16356             'Pod::Simple::Methody'  => '3.36',
16357             'Pod::Simple::Progress' => '3.36',
16358             'Pod::Simple::PullParser'=> '3.36',
16359             'Pod::Simple::PullParserEndToken'=> '3.36',
16360             'Pod::Simple::PullParserStartToken'=> '3.36',
16361             'Pod::Simple::PullParserTextToken'=> '3.36',
16362             'Pod::Simple::PullParserToken'=> '3.36',
16363             'Pod::Simple::RTF'      => '3.36',
16364             'Pod::Simple::Search'   => '3.36',
16365             'Pod::Simple::SimpleTree'=> '3.36',
16366             'Pod::Simple::Text'     => '3.36',
16367             'Pod::Simple::TextContent'=> '3.36',
16368             'Pod::Simple::TiedOutFH'=> '3.36',
16369             'Pod::Simple::Transcode'=> '3.36',
16370             'Pod::Simple::TranscodeDumb'=> '3.36',
16371             'Pod::Simple::TranscodeSmart'=> '3.36',
16372             'Pod::Simple::XHTML'    => '3.36',
16373             'Pod::Simple::XMLOutStream'=> '3.36',
16374             'Socket'                => '2.029',
16375             'feature'               => '1.55',
16376         },
16377         removed => {
16378         }
16379     },
16380     5.031001 => {
16381         delta_from => 5.031000,
16382         changed => {
16383             'App::Cpan'             => '1.675',
16384             'B::Op_private'         => '5.031001',
16385             'CPAN'                  => '2.27',
16386             'CPAN::Bundle'          => '5.5005',
16387             'CPAN::Distribution'    => '2.27',
16388             'CPAN::FTP'             => '5.5012',
16389             'CPAN::FirstTime'       => '5.5314',
16390             'CPAN::HandleConfig'    => '5.5011',
16391             'CPAN::Mirrors'         => '2.27',
16392             'CPAN::Queue'           => '5.5003',
16393             'CPAN::Shell'           => '5.5009',
16394             'CPAN::Tarzip'          => '5.5013',
16395             'Class::Struct'         => '0.66',
16396             'Compress::Raw::Bzip2'  => '2.086',
16397             'Compress::Raw::Zlib'   => '2.086',
16398             'Compress::Zlib'        => '2.086',
16399             'Config'                => '5.031001',
16400             'DB_File'               => '1.852',
16401             'Devel::PPPort'         => '3.53',
16402             'ExtUtils::CBuilder'    => '0.280232',
16403             'ExtUtils::Command'     => '7.36',
16404             'ExtUtils::Command::MM' => '7.36',
16405             'ExtUtils::Liblist'     => '7.36',
16406             'ExtUtils::Liblist::Kid'=> '7.36',
16407             'ExtUtils::MM'          => '7.36',
16408             'ExtUtils::MM_AIX'      => '7.36',
16409             'ExtUtils::MM_Any'      => '7.36',
16410             'ExtUtils::MM_BeOS'     => '7.36',
16411             'ExtUtils::MM_Cygwin'   => '7.36',
16412             'ExtUtils::MM_DOS'      => '7.36',
16413             'ExtUtils::MM_Darwin'   => '7.36',
16414             'ExtUtils::MM_MacOS'    => '7.36',
16415             'ExtUtils::MM_NW5'      => '7.36',
16416             'ExtUtils::MM_OS2'      => '7.36',
16417             'ExtUtils::MM_QNX'      => '7.36',
16418             'ExtUtils::MM_UWIN'     => '7.36',
16419             'ExtUtils::MM_Unix'     => '7.36',
16420             'ExtUtils::MM_VMS'      => '7.36',
16421             'ExtUtils::MM_VOS'      => '7.36',
16422             'ExtUtils::MM_Win32'    => '7.36',
16423             'ExtUtils::MM_Win95'    => '7.36',
16424             'ExtUtils::MY'          => '7.36',
16425             'ExtUtils::MakeMaker'   => '7.36',
16426             'ExtUtils::MakeMaker::Config'=> '7.36',
16427             'ExtUtils::MakeMaker::Locale'=> '7.36',
16428             'ExtUtils::MakeMaker::version'=> '7.36',
16429             'ExtUtils::MakeMaker::version::regex'=> '7.36',
16430             'ExtUtils::Mkbootstrap' => '7.36',
16431             'ExtUtils::Mksymlists'  => '7.36',
16432             'ExtUtils::testlib'     => '7.36',
16433             'File::Spec::Win32'     => '3.79',
16434             'I18N::LangTags'        => '0.44',
16435             'IO'                    => '1.41',
16436             'IO::Compress::Adapter::Bzip2'=> '2.086',
16437             'IO::Compress::Adapter::Deflate'=> '2.086',
16438             'IO::Compress::Adapter::Identity'=> '2.086',
16439             'IO::Compress::Base'    => '2.086',
16440             'IO::Compress::Base::Common'=> '2.086',
16441             'IO::Compress::Bzip2'   => '2.086',
16442             'IO::Compress::Deflate' => '2.086',
16443             'IO::Compress::Gzip'    => '2.086',
16444             'IO::Compress::Gzip::Constants'=> '2.086',
16445             'IO::Compress::RawDeflate'=> '2.086',
16446             'IO::Compress::Zip'     => '2.086',
16447             'IO::Compress::Zip::Constants'=> '2.086',
16448             'IO::Compress::Zlib::Constants'=> '2.086',
16449             'IO::Compress::Zlib::Extra'=> '2.086',
16450             'IO::Dir'               => '1.41',
16451             'IO::File'              => '1.41',
16452             'IO::Handle'            => '1.41',
16453             'IO::Pipe'              => '1.41',
16454             'IO::Poll'              => '1.41',
16455             'IO::Seekable'          => '1.41',
16456             'IO::Select'            => '1.41',
16457             'IO::Socket'            => '1.41',
16458             'IO::Socket::INET'      => '1.41',
16459             'IO::Socket::UNIX'      => '1.41',
16460             'IO::Uncompress::Adapter::Bunzip2'=> '2.086',
16461             'IO::Uncompress::Adapter::Identity'=> '2.086',
16462             'IO::Uncompress::Adapter::Inflate'=> '2.086',
16463             'IO::Uncompress::AnyInflate'=> '2.086',
16464             'IO::Uncompress::AnyUncompress'=> '2.086',
16465             'IO::Uncompress::Base'  => '2.086',
16466             'IO::Uncompress::Bunzip2'=> '2.086',
16467             'IO::Uncompress::Gunzip'=> '2.086',
16468             'IO::Uncompress::Inflate'=> '2.086',
16469             'IO::Uncompress::RawInflate'=> '2.086',
16470             'IO::Uncompress::Unzip' => '2.086',
16471             'Module::CoreList'      => '5.20190620',
16472             'Module::CoreList::Utils'=> '5.20190620',
16473             'POSIX'                 => '1.89',
16474             'Pod::Man'              => '4.12',
16475             'Pod::ParseLink'        => '4.12',
16476             'Pod::Simple'           => '3.38',
16477             'Pod::Simple::BlackBox' => '3.38',
16478             'Pod::Simple::Checker'  => '3.38',
16479             'Pod::Simple::Debug'    => '3.38',
16480             'Pod::Simple::DumpAsText'=> '3.38',
16481             'Pod::Simple::DumpAsXML'=> '3.38',
16482             'Pod::Simple::HTML'     => '3.38',
16483             'Pod::Simple::HTMLBatch'=> '3.38',
16484             'Pod::Simple::LinkSection'=> '3.38',
16485             'Pod::Simple::Methody'  => '3.38',
16486             'Pod::Simple::Progress' => '3.38',
16487             'Pod::Simple::PullParser'=> '3.38',
16488             'Pod::Simple::PullParserEndToken'=> '3.38',
16489             'Pod::Simple::PullParserStartToken'=> '3.38',
16490             'Pod::Simple::PullParserTextToken'=> '3.38',
16491             'Pod::Simple::PullParserToken'=> '3.38',
16492             'Pod::Simple::RTF'      => '3.38',
16493             'Pod::Simple::Search'   => '3.38',
16494             'Pod::Simple::SimpleTree'=> '3.38',
16495             'Pod::Simple::Text'     => '3.38',
16496             'Pod::Simple::TextContent'=> '3.38',
16497             'Pod::Simple::TiedOutFH'=> '3.38',
16498             'Pod::Simple::Transcode'=> '3.38',
16499             'Pod::Simple::TranscodeDumb'=> '3.38',
16500             'Pod::Simple::TranscodeSmart'=> '3.38',
16501             'Pod::Simple::XHTML'    => '3.38',
16502             'Pod::Simple::XMLOutStream'=> '3.38',
16503             'Pod::Text'             => '4.12',
16504             'Pod::Text::Color'      => '4.12',
16505             'Pod::Text::Overstrike' => '4.12',
16506             'Pod::Text::Termcap'    => '4.12',
16507             'SelfLoader'            => '1.26',
16508             'Storable'              => '3.16',
16509             'Sys::Hostname'         => '1.23',
16510             'Test2'                 => '1.302164',
16511             'Test2::API'            => '1.302164',
16512             'Test2::API::Breakage'  => '1.302164',
16513             'Test2::API::Context'   => '1.302164',
16514             'Test2::API::Instance'  => '1.302164',
16515             'Test2::API::Stack'     => '1.302164',
16516             'Test2::Event'          => '1.302164',
16517             'Test2::Event::Bail'    => '1.302164',
16518             'Test2::Event::Diag'    => '1.302164',
16519             'Test2::Event::Encoding'=> '1.302164',
16520             'Test2::Event::Exception'=> '1.302164',
16521             'Test2::Event::Fail'    => '1.302164',
16522             'Test2::Event::Generic' => '1.302164',
16523             'Test2::Event::Note'    => '1.302164',
16524             'Test2::Event::Ok'      => '1.302164',
16525             'Test2::Event::Pass'    => '1.302164',
16526             'Test2::Event::Plan'    => '1.302164',
16527             'Test2::Event::Skip'    => '1.302164',
16528             'Test2::Event::Subtest' => '1.302164',
16529             'Test2::Event::TAP::Version'=> '1.302164',
16530             'Test2::Event::V2'      => '1.302164',
16531             'Test2::Event::Waiting' => '1.302164',
16532             'Test2::EventFacet'     => '1.302164',
16533             'Test2::EventFacet::About'=> '1.302164',
16534             'Test2::EventFacet::Amnesty'=> '1.302164',
16535             'Test2::EventFacet::Assert'=> '1.302164',
16536             'Test2::EventFacet::Control'=> '1.302164',
16537             'Test2::EventFacet::Error'=> '1.302164',
16538             'Test2::EventFacet::Hub'=> '1.302164',
16539             'Test2::EventFacet::Info'=> '1.302164',
16540             'Test2::EventFacet::Info::Table'=> '1.302164',
16541             'Test2::EventFacet::Meta'=> '1.302164',
16542             'Test2::EventFacet::Parent'=> '1.302164',
16543             'Test2::EventFacet::Plan'=> '1.302164',
16544             'Test2::EventFacet::Render'=> '1.302164',
16545             'Test2::EventFacet::Trace'=> '1.302164',
16546             'Test2::Formatter'      => '1.302164',
16547             'Test2::Formatter::TAP' => '1.302164',
16548             'Test2::Hub'            => '1.302164',
16549             'Test2::Hub::Interceptor'=> '1.302164',
16550             'Test2::Hub::Interceptor::Terminator'=> '1.302164',
16551             'Test2::Hub::Subtest'   => '1.302164',
16552             'Test2::IPC'            => '1.302164',
16553             'Test2::IPC::Driver'    => '1.302164',
16554             'Test2::IPC::Driver::Files'=> '1.302164',
16555             'Test2::Tools::Tiny'    => '1.302164',
16556             'Test2::Util'           => '1.302164',
16557             'Test2::Util::ExternalMeta'=> '1.302164',
16558             'Test2::Util::Facets2Legacy'=> '1.302164',
16559             'Test2::Util::HashBase' => '1.302164',
16560             'Test2::Util::Trace'    => '1.302164',
16561             'Test::Builder'         => '1.302164',
16562             'Test::Builder::Formatter'=> '1.302164',
16563             'Test::Builder::Module' => '1.302164',
16564             'Test::Builder::Tester' => '1.302164',
16565             'Test::Builder::Tester::Color'=> '1.302164',
16566             'Test::Builder::TodoDiag'=> '1.302164',
16567             'Test::More'            => '1.302164',
16568             'Test::Simple'          => '1.302164',
16569             'Test::Tester'          => '1.302164',
16570             'Test::Tester::Capture' => '1.302164',
16571             'Test::Tester::CaptureRunner'=> '1.302164',
16572             'Test::Tester::Delegate'=> '1.302164',
16573             'Test::use::ok'         => '1.302164',
16574             'Tie::File'             => '1.03',
16575             'Tie::Hash::NamedCapture'=> '0.11',
16576             'Time::HiRes'           => '1.9761',
16577             'Unicode::Normalize'    => '1.27',
16578             'Unicode::UCD'          => '0.73',
16579             'XS::APItest'           => '1.01',
16580             'ok'                    => '1.302164',
16581             'overload'              => '1.31',
16582             'warnings'              => '1.45',
16583         },
16584         removed => {
16585             'Pod::Find'             => 1,
16586             'Pod::InputObjects'     => 1,
16587             'Pod::ParseUtils'       => 1,
16588             'Pod::Parser'           => 1,
16589             'Pod::PlainText'        => 1,
16590             'Pod::Select'           => 1,
16591         }
16592     },
16593     5.031002 => {
16594         delta_from => 5.031001,
16595         changed => {
16596             'B::Op_private'         => '5.031002',
16597             'Config'                => '5.031002',
16598             'Devel::PPPort'         => '3.54',
16599             'Exporter'              => '5.74',
16600             'Exporter::Heavy'       => '5.74',
16601             'IPC::Cmd'              => '1.04',
16602             'JSON::PP'              => '4.04',
16603             'JSON::PP::Boolean'     => '4.04',
16604             'Module::CoreList'      => '5.20190720',
16605             'Module::CoreList::Utils'=> '5.20190720',
16606             'Opcode'                => '1.44',
16607             'PerlIO::encoding'      => '0.28',
16608             'Pod::Simple'           => '3.39',
16609             'Pod::Simple::BlackBox' => '3.39',
16610             'Pod::Simple::Checker'  => '3.39',
16611             'Pod::Simple::Debug'    => '3.39',
16612             'Pod::Simple::DumpAsText'=> '3.39',
16613             'Pod::Simple::DumpAsXML'=> '3.39',
16614             'Pod::Simple::HTML'     => '3.39',
16615             'Pod::Simple::HTMLBatch'=> '3.39',
16616             'Pod::Simple::LinkSection'=> '3.39',
16617             'Pod::Simple::Methody'  => '3.39',
16618             'Pod::Simple::Progress' => '3.39',
16619             'Pod::Simple::PullParser'=> '3.39',
16620             'Pod::Simple::PullParserEndToken'=> '3.39',
16621             'Pod::Simple::PullParserStartToken'=> '3.39',
16622             'Pod::Simple::PullParserTextToken'=> '3.39',
16623             'Pod::Simple::PullParserToken'=> '3.39',
16624             'Pod::Simple::RTF'      => '3.39',
16625             'Pod::Simple::Search'   => '3.39',
16626             'Pod::Simple::SimpleTree'=> '3.39',
16627             'Pod::Simple::Text'     => '3.39',
16628             'Pod::Simple::TextContent'=> '3.39',
16629             'Pod::Simple::TiedOutFH'=> '3.39',
16630             'Pod::Simple::Transcode'=> '3.39',
16631             'Pod::Simple::TranscodeDumb'=> '3.39',
16632             'Pod::Simple::TranscodeSmart'=> '3.39',
16633             'Pod::Simple::XHTML'    => '3.39',
16634             'Pod::Simple::XMLOutStream'=> '3.39',
16635             'threads::shared'       => '1.61',
16636         },
16637         removed => {
16638         }
16639     },
16640     5.031003 => {
16641         delta_from => 5.031002,
16642         changed => {
16643             'B::Op_private'         => '5.031003',
16644             'Compress::Raw::Bzip2'  => '2.087',
16645             'Compress::Raw::Zlib'   => '2.087',
16646             'Compress::Zlib'        => '2.087',
16647             'Config'                => '5.031003',
16648             'Devel::PPPort'         => '3.55',
16649             'File::Find'            => '1.37',
16650             'Getopt::Long'          => '2.51',
16651             'I18N::LangTags::Detect'=> '1.08',
16652             'IO::Compress::Adapter::Bzip2'=> '2.087',
16653             'IO::Compress::Adapter::Deflate'=> '2.087',
16654             'IO::Compress::Adapter::Identity'=> '2.087',
16655             'IO::Compress::Base'    => '2.087',
16656             'IO::Compress::Base::Common'=> '2.087',
16657             'IO::Compress::Bzip2'   => '2.087',
16658             'IO::Compress::Deflate' => '2.087',
16659             'IO::Compress::Gzip'    => '2.087',
16660             'IO::Compress::Gzip::Constants'=> '2.087',
16661             'IO::Compress::RawDeflate'=> '2.087',
16662             'IO::Compress::Zip'     => '2.087',
16663             'IO::Compress::Zip::Constants'=> '2.087',
16664             'IO::Compress::Zlib::Constants'=> '2.087',
16665             'IO::Compress::Zlib::Extra'=> '2.087',
16666             'IO::Uncompress::Adapter::Bunzip2'=> '2.087',
16667             'IO::Uncompress::Adapter::Identity'=> '2.087',
16668             'IO::Uncompress::Adapter::Inflate'=> '2.087',
16669             'IO::Uncompress::AnyInflate'=> '2.087',
16670             'IO::Uncompress::AnyUncompress'=> '2.087',
16671             'IO::Uncompress::Base'  => '2.087',
16672             'IO::Uncompress::Bunzip2'=> '2.087',
16673             'IO::Uncompress::Gunzip'=> '2.087',
16674             'IO::Uncompress::Inflate'=> '2.087',
16675             'IO::Uncompress::RawInflate'=> '2.087',
16676             'IO::Uncompress::Unzip' => '2.087',
16677             'Module::CoreList'      => '5.20190820',
16678             'Module::CoreList::Utils'=> '5.20190820',
16679             'PerlIO::via'           => '0.18',
16680             'Storable'              => '3.17',
16681             'Test2'                 => '1.302166',
16682             'Test2::API'            => '1.302166',
16683             'Test2::API::Breakage'  => '1.302166',
16684             'Test2::API::Context'   => '1.302166',
16685             'Test2::API::Instance'  => '1.302166',
16686             'Test2::API::Stack'     => '1.302166',
16687             'Test2::Event'          => '1.302166',
16688             'Test2::Event::Bail'    => '1.302166',
16689             'Test2::Event::Diag'    => '1.302166',
16690             'Test2::Event::Encoding'=> '1.302166',
16691             'Test2::Event::Exception'=> '1.302166',
16692             'Test2::Event::Fail'    => '1.302166',
16693             'Test2::Event::Generic' => '1.302166',
16694             'Test2::Event::Note'    => '1.302166',
16695             'Test2::Event::Ok'      => '1.302166',
16696             'Test2::Event::Pass'    => '1.302166',
16697             'Test2::Event::Plan'    => '1.302166',
16698             'Test2::Event::Skip'    => '1.302166',
16699             'Test2::Event::Subtest' => '1.302166',
16700             'Test2::Event::TAP::Version'=> '1.302166',
16701             'Test2::Event::V2'      => '1.302166',
16702             'Test2::Event::Waiting' => '1.302166',
16703             'Test2::EventFacet'     => '1.302166',
16704             'Test2::EventFacet::About'=> '1.302166',
16705             'Test2::EventFacet::Amnesty'=> '1.302166',
16706             'Test2::EventFacet::Assert'=> '1.302166',
16707             'Test2::EventFacet::Control'=> '1.302166',
16708             'Test2::EventFacet::Error'=> '1.302166',
16709             'Test2::EventFacet::Hub'=> '1.302166',
16710             'Test2::EventFacet::Info'=> '1.302166',
16711             'Test2::EventFacet::Info::Table'=> '1.302166',
16712             'Test2::EventFacet::Meta'=> '1.302166',
16713             'Test2::EventFacet::Parent'=> '1.302166',
16714             'Test2::EventFacet::Plan'=> '1.302166',
16715             'Test2::EventFacet::Render'=> '1.302166',
16716             'Test2::EventFacet::Trace'=> '1.302166',
16717             'Test2::Formatter'      => '1.302166',
16718             'Test2::Formatter::TAP' => '1.302166',
16719             'Test2::Hub'            => '1.302166',
16720             'Test2::Hub::Interceptor'=> '1.302166',
16721             'Test2::Hub::Interceptor::Terminator'=> '1.302166',
16722             'Test2::Hub::Subtest'   => '1.302166',
16723             'Test2::IPC'            => '1.302166',
16724             'Test2::IPC::Driver'    => '1.302166',
16725             'Test2::IPC::Driver::Files'=> '1.302166',
16726             'Test2::Tools::Tiny'    => '1.302166',
16727             'Test2::Util'           => '1.302166',
16728             'Test2::Util::ExternalMeta'=> '1.302166',
16729             'Test2::Util::Facets2Legacy'=> '1.302166',
16730             'Test2::Util::HashBase' => '1.302166',
16731             'Test2::Util::Trace'    => '1.302166',
16732             'Test::Builder'         => '1.302166',
16733             'Test::Builder::Formatter'=> '1.302166',
16734             'Test::Builder::Module' => '1.302166',
16735             'Test::Builder::Tester' => '1.302166',
16736             'Test::Builder::Tester::Color'=> '1.302166',
16737             'Test::Builder::TodoDiag'=> '1.302166',
16738             'Test::More'            => '1.302166',
16739             'Test::Simple'          => '1.302166',
16740             'Test::Tester'          => '1.302166',
16741             'Test::Tester::Capture' => '1.302166',
16742             'Test::Tester::CaptureRunner'=> '1.302166',
16743             'Test::Tester::Delegate'=> '1.302166',
16744             'Test::use::ok'         => '1.302166',
16745             'Thread'                => '3.05',
16746             'Time::HiRes'           => '1.9762',
16747             'Win32'                 => '0.53',
16748             'XS::APItest'           => '1.02',
16749             'ok'                    => '1.302166',
16750         },
16751         removed => {
16752         }
16753     },
16754     5.031004 => {
16755         delta_from => 5.031003,
16756         changed => {
16757             'B::Op_private'         => '5.031004',
16758             'Config'                => '5.031004',
16759             'ExtUtils::Command'     => '7.38',
16760             'ExtUtils::Command::MM' => '7.38',
16761             'ExtUtils::Liblist'     => '7.38',
16762             'ExtUtils::Liblist::Kid'=> '7.38',
16763             'ExtUtils::MM'          => '7.38',
16764             'ExtUtils::MM_AIX'      => '7.38',
16765             'ExtUtils::MM_Any'      => '7.38',
16766             'ExtUtils::MM_BeOS'     => '7.38',
16767             'ExtUtils::MM_Cygwin'   => '7.38',
16768             'ExtUtils::MM_DOS'      => '7.38',
16769             'ExtUtils::MM_Darwin'   => '7.38',
16770             'ExtUtils::MM_MacOS'    => '7.38',
16771             'ExtUtils::MM_NW5'      => '7.38',
16772             'ExtUtils::MM_OS2'      => '7.38',
16773             'ExtUtils::MM_QNX'      => '7.38',
16774             'ExtUtils::MM_UWIN'     => '7.38',
16775             'ExtUtils::MM_Unix'     => '7.38',
16776             'ExtUtils::MM_VMS'      => '7.38',
16777             'ExtUtils::MM_VOS'      => '7.38',
16778             'ExtUtils::MM_Win32'    => '7.38',
16779             'ExtUtils::MM_Win95'    => '7.38',
16780             'ExtUtils::MY'          => '7.38',
16781             'ExtUtils::MakeMaker'   => '7.38',
16782             'ExtUtils::MakeMaker::Config'=> '7.38',
16783             'ExtUtils::MakeMaker::Locale'=> '7.38',
16784             'ExtUtils::MakeMaker::version'=> '7.38',
16785             'ExtUtils::MakeMaker::version::regex'=> '7.38',
16786             'ExtUtils::Mkbootstrap' => '7.38',
16787             'ExtUtils::Mksymlists'  => '7.38',
16788             'ExtUtils::testlib'     => '7.38',
16789             'I18N::Langinfo'        => '0.19',
16790             'List::Util'            => '1.52',
16791             'List::Util::XS'        => '1.52',
16792             'Module::CoreList'      => '5.20190920',
16793             'Module::CoreList::Utils'=> '5.20190920',
16794             'Module::Metadata'      => '1.000037',
16795             'Scalar::Util'          => '1.52',
16796             'Sub::Util'             => '1.52',
16797             'Test2'                 => '1.302168',
16798             'Test2::API'            => '1.302168',
16799             'Test2::API::Breakage'  => '1.302168',
16800             'Test2::API::Context'   => '1.302168',
16801             'Test2::API::Instance'  => '1.302168',
16802             'Test2::API::Stack'     => '1.302168',
16803             'Test2::Event'          => '1.302168',
16804             'Test2::Event::Bail'    => '1.302168',
16805             'Test2::Event::Diag'    => '1.302168',
16806             'Test2::Event::Encoding'=> '1.302168',
16807             'Test2::Event::Exception'=> '1.302168',
16808             'Test2::Event::Fail'    => '1.302168',
16809             'Test2::Event::Generic' => '1.302168',
16810             'Test2::Event::Note'    => '1.302168',
16811             'Test2::Event::Ok'      => '1.302168',
16812             'Test2::Event::Pass'    => '1.302168',
16813             'Test2::Event::Plan'    => '1.302168',
16814             'Test2::Event::Skip'    => '1.302168',
16815             'Test2::Event::Subtest' => '1.302168',
16816             'Test2::Event::TAP::Version'=> '1.302168',
16817             'Test2::Event::V2'      => '1.302168',
16818             'Test2::Event::Waiting' => '1.302168',
16819             'Test2::EventFacet'     => '1.302168',
16820             'Test2::EventFacet::About'=> '1.302168',
16821             'Test2::EventFacet::Amnesty'=> '1.302168',
16822             'Test2::EventFacet::Assert'=> '1.302168',
16823             'Test2::EventFacet::Control'=> '1.302168',
16824             'Test2::EventFacet::Error'=> '1.302168',
16825             'Test2::EventFacet::Hub'=> '1.302168',
16826             'Test2::EventFacet::Info'=> '1.302168',
16827             'Test2::EventFacet::Info::Table'=> '1.302168',
16828             'Test2::EventFacet::Meta'=> '1.302168',
16829             'Test2::EventFacet::Parent'=> '1.302168',
16830             'Test2::EventFacet::Plan'=> '1.302168',
16831             'Test2::EventFacet::Render'=> '1.302168',
16832             'Test2::EventFacet::Trace'=> '1.302168',
16833             'Test2::Formatter'      => '1.302168',
16834             'Test2::Formatter::TAP' => '1.302168',
16835             'Test2::Hub'            => '1.302168',
16836             'Test2::Hub::Interceptor'=> '1.302168',
16837             'Test2::Hub::Interceptor::Terminator'=> '1.302168',
16838             'Test2::Hub::Subtest'   => '1.302168',
16839             'Test2::IPC'            => '1.302168',
16840             'Test2::IPC::Driver'    => '1.302168',
16841             'Test2::IPC::Driver::Files'=> '1.302168',
16842             'Test2::Tools::Tiny'    => '1.302168',
16843             'Test2::Util'           => '1.302168',
16844             'Test2::Util::ExternalMeta'=> '1.302168',
16845             'Test2::Util::Facets2Legacy'=> '1.302168',
16846             'Test2::Util::HashBase' => '1.302168',
16847             'Test2::Util::Trace'    => '1.302168',
16848             'Test::Builder'         => '1.302168',
16849             'Test::Builder::Formatter'=> '1.302168',
16850             'Test::Builder::Module' => '1.302168',
16851             'Test::Builder::Tester' => '1.302168',
16852             'Test::Builder::Tester::Color'=> '1.302168',
16853             'Test::Builder::TodoDiag'=> '1.302168',
16854             'Test::More'            => '1.302168',
16855             'Test::Simple'          => '1.302168',
16856             'Test::Tester'          => '1.302168',
16857             'Test::Tester::Capture' => '1.302168',
16858             'Test::Tester::CaptureRunner'=> '1.302168',
16859             'Test::Tester::Delegate'=> '1.302168',
16860             'Test::use::ok'         => '1.302168',
16861             'Time::HiRes'           => '1.9763',
16862             'XS::APItest'           => '1.03',
16863             'ok'                    => '1.302168',
16864             're'                    => '0.38',
16865         },
16866         removed => {
16867         }
16868     },
16869     5.031005 => {
16870         delta_from => 5.031004,
16871         changed => {
16872             'B'                     => '1.77',
16873             'B::Deparse'            => '1.50',
16874             'B::Op_private'         => '5.031005',
16875             'Config'                => '5.031005',
16876             'Devel::PPPort'         => '3.54',
16877             'Digest::MD5'           => '2.55_01',
16878             'Dumpvalue'             => '1.21',
16879             'ExtUtils::CBuilder'    => '0.280233',
16880             'Math::BigFloat'        => '1.999817_01',
16881             'Math::BigInt'          => '1.999817_01',
16882             'Math::BigInt::Calc'    => '1.999817_01',
16883             'Math::BigInt::FastCalc'=> '0.5009',
16884             'Math::BigInt::Lib'     => '1.999817_01',
16885             'Module::CoreList'      => '5.20191020',
16886             'Module::CoreList::Utils'=> '5.20191020',
16887             'Safe'                  => '2.41',
16888             'Time::HiRes'           => '1.9764',
16889             'XS::APItest'           => '1.04',
16890             'threads'               => '2.23',
16891         },
16892         removed => {
16893         }
16894     },
16895     5.030001 => {
16896         delta_from => 5.030000,
16897         changed => {
16898             'B::Op_private'         => '5.030001',
16899             'Config'                => '5.030001',
16900             'Module::CoreList'      => '5.20191110',
16901             'Module::CoreList::Utils'=> '5.20191110',
16902         },
16903         removed => {
16904         }
16905     },
16906     5.031006 => {
16907         delta_from => 5.031005,
16908         changed => {
16909             'B::Deparse'            => '1.51',
16910             'B::Op_private'         => '5.031006',
16911             'Compress::Raw::Bzip2'  => '2.090',
16912             'Compress::Raw::Zlib'   => '2.090',
16913             'Compress::Zlib'        => '2.090',
16914             'Config'                => '5.031006',
16915             'Devel::PPPort'         => '3.55',
16916             'DynaLoader'            => '1.46',
16917             'IO::Compress::Adapter::Bzip2'=> '2.090',
16918             'IO::Compress::Adapter::Deflate'=> '2.090',
16919             'IO::Compress::Adapter::Identity'=> '2.090',
16920             'IO::Compress::Base'    => '2.090',
16921             'IO::Compress::Base::Common'=> '2.090',
16922             'IO::Compress::Bzip2'   => '2.090',
16923             'IO::Compress::Deflate' => '2.090',
16924             'IO::Compress::Gzip'    => '2.090',
16925             'IO::Compress::Gzip::Constants'=> '2.090',
16926             'IO::Compress::RawDeflate'=> '2.090',
16927             'IO::Compress::Zip'     => '2.090',
16928             'IO::Compress::Zip::Constants'=> '2.090',
16929             'IO::Compress::Zlib::Constants'=> '2.090',
16930             'IO::Compress::Zlib::Extra'=> '2.090',
16931             'IO::Uncompress::Adapter::Bunzip2'=> '2.090',
16932             'IO::Uncompress::Adapter::Identity'=> '2.090',
16933             'IO::Uncompress::Adapter::Inflate'=> '2.090',
16934             'IO::Uncompress::AnyInflate'=> '2.090',
16935             'IO::Uncompress::AnyUncompress'=> '2.090',
16936             'IO::Uncompress::Base'  => '2.090',
16937             'IO::Uncompress::Bunzip2'=> '2.090',
16938             'IO::Uncompress::Gunzip'=> '2.090',
16939             'IO::Uncompress::Inflate'=> '2.090',
16940             'IO::Uncompress::RawInflate'=> '2.090',
16941             'IO::Uncompress::Unzip' => '2.090',
16942             'List::Util'            => '1.53',
16943             'List::Util::XS'        => '1.53',
16944             'Math::BigFloat'        => '1.999818',
16945             'Math::BigInt'          => '1.999818',
16946             'Math::BigInt::Calc'    => '1.999818',
16947             'Math::BigInt::Lib'     => '1.999818',
16948             'Module::CoreList'      => '5.20191120',
16949             'Module::CoreList::Utils'=> '5.20191120',
16950             'Module::Load::Conditional'=> '0.70',
16951             'POSIX'                 => '1.90',
16952             'Pod::Simple'           => '3.40',
16953             'Pod::Simple::BlackBox' => '3.40',
16954             'Pod::Simple::Checker'  => '3.40',
16955             'Pod::Simple::Debug'    => '3.40',
16956             'Pod::Simple::DumpAsText'=> '3.40',
16957             'Pod::Simple::DumpAsXML'=> '3.40',
16958             'Pod::Simple::HTML'     => '3.40',
16959             'Pod::Simple::HTMLBatch'=> '3.40',
16960             'Pod::Simple::LinkSection'=> '3.40',
16961             'Pod::Simple::Methody'  => '3.40',
16962             'Pod::Simple::Progress' => '3.40',
16963             'Pod::Simple::PullParser'=> '3.40',
16964             'Pod::Simple::PullParserEndToken'=> '3.40',
16965             'Pod::Simple::PullParserStartToken'=> '3.40',
16966             'Pod::Simple::PullParserTextToken'=> '3.40',
16967             'Pod::Simple::PullParserToken'=> '3.40',
16968             'Pod::Simple::RTF'      => '3.40',
16969             'Pod::Simple::Search'   => '3.40',
16970             'Pod::Simple::SimpleTree'=> '3.40',
16971             'Pod::Simple::Text'     => '3.40',
16972             'Pod::Simple::TextContent'=> '3.40',
16973             'Pod::Simple::TiedOutFH'=> '3.40',
16974             'Pod::Simple::Transcode'=> '3.40',
16975             'Pod::Simple::TranscodeDumb'=> '3.40',
16976             'Pod::Simple::TranscodeSmart'=> '3.40',
16977             'Pod::Simple::XHTML'    => '3.40',
16978             'Pod::Simple::XMLOutStream'=> '3.40',
16979             'Scalar::Util'          => '1.53',
16980             'Sub::Util'             => '1.53',
16981             'Sys::Syslog'           => '0.36',
16982             'Test2'                 => '1.302169',
16983             'Test2::API'            => '1.302169',
16984             'Test2::API::Breakage'  => '1.302169',
16985             'Test2::API::Context'   => '1.302169',
16986             'Test2::API::Instance'  => '1.302169',
16987             'Test2::API::Stack'     => '1.302169',
16988             'Test2::Event'          => '1.302169',
16989             'Test2::Event::Bail'    => '1.302169',
16990             'Test2::Event::Diag'    => '1.302169',
16991             'Test2::Event::Encoding'=> '1.302169',
16992             'Test2::Event::Exception'=> '1.302169',
16993             'Test2::Event::Fail'    => '1.302169',
16994             'Test2::Event::Generic' => '1.302169',
16995             'Test2::Event::Note'    => '1.302169',
16996             'Test2::Event::Ok'      => '1.302169',
16997             'Test2::Event::Pass'    => '1.302169',
16998             'Test2::Event::Plan'    => '1.302169',
16999             'Test2::Event::Skip'    => '1.302169',
17000             'Test2::Event::Subtest' => '1.302169',
17001             'Test2::Event::TAP::Version'=> '1.302169',
17002             'Test2::Event::V2'      => '1.302169',
17003             'Test2::Event::Waiting' => '1.302169',
17004             'Test2::EventFacet'     => '1.302169',
17005             'Test2::EventFacet::About'=> '1.302169',
17006             'Test2::EventFacet::Amnesty'=> '1.302169',
17007             'Test2::EventFacet::Assert'=> '1.302169',
17008             'Test2::EventFacet::Control'=> '1.302169',
17009             'Test2::EventFacet::Error'=> '1.302169',
17010             'Test2::EventFacet::Hub'=> '1.302169',
17011             'Test2::EventFacet::Info'=> '1.302169',
17012             'Test2::EventFacet::Info::Table'=> '1.302169',
17013             'Test2::EventFacet::Meta'=> '1.302169',
17014             'Test2::EventFacet::Parent'=> '1.302169',
17015             'Test2::EventFacet::Plan'=> '1.302169',
17016             'Test2::EventFacet::Render'=> '1.302169',
17017             'Test2::EventFacet::Trace'=> '1.302169',
17018             'Test2::Formatter'      => '1.302169',
17019             'Test2::Formatter::TAP' => '1.302169',
17020             'Test2::Hub'            => '1.302169',
17021             'Test2::Hub::Interceptor'=> '1.302169',
17022             'Test2::Hub::Interceptor::Terminator'=> '1.302169',
17023             'Test2::Hub::Subtest'   => '1.302169',
17024             'Test2::IPC'            => '1.302169',
17025             'Test2::IPC::Driver'    => '1.302169',
17026             'Test2::IPC::Driver::Files'=> '1.302169',
17027             'Test2::Tools::Tiny'    => '1.302169',
17028             'Test2::Util'           => '1.302169',
17029             'Test2::Util::ExternalMeta'=> '1.302169',
17030             'Test2::Util::Facets2Legacy'=> '1.302169',
17031             'Test2::Util::HashBase' => '1.302169',
17032             'Test2::Util::Trace'    => '1.302169',
17033             'Test::Builder'         => '1.302169',
17034             'Test::Builder::Formatter'=> '1.302169',
17035             'Test::Builder::Module' => '1.302169',
17036             'Test::Builder::Tester' => '1.302169',
17037             'Test::Builder::Tester::Color'=> '1.302169',
17038             'Test::Builder::TodoDiag'=> '1.302169',
17039             'Test::More'            => '1.302169',
17040             'Test::Simple'          => '1.302169',
17041             'Test::Tester'          => '1.302169',
17042             'Test::Tester::Capture' => '1.302169',
17043             'Test::Tester::CaptureRunner'=> '1.302169',
17044             'Test::Tester::Delegate'=> '1.302169',
17045             'Test::use::ok'         => '1.302169',
17046             'Tie::StdHandle'        => '4.6',
17047             'Unicode::UCD'          => '0.74',
17048             'Win32API::File'        => '0.1203_01',
17049             'feature'               => '1.56',
17050             'mro'                   => '1.23',
17051             'ok'                    => '1.302169',
17052             'perlfaq'               => '5.20191102',
17053         },
17054         removed => {
17055         }
17056     },
17057     5.031007 => {
17058         delta_from => 5.031006,
17059         changed => {
17060             'B'                     => '1.78',
17061             'B::Deparse'            => '1.52',
17062             'B::Op_private'         => '5.031007',
17063             'Compress::Raw::Bzip2'  => '2.093',
17064             'Compress::Raw::Zlib'   => '2.093',
17065             'Compress::Zlib'        => '2.093',
17066             'Config'                => '5.031007',
17067             'Devel::PPPort'         => '3.56',
17068             'English'               => '1.11',
17069             'ExtUtils::Command'     => '7.42',
17070             'ExtUtils::Command::MM' => '7.42',
17071             'ExtUtils::Liblist'     => '7.42',
17072             'ExtUtils::Liblist::Kid'=> '7.42',
17073             'ExtUtils::MM'          => '7.42',
17074             'ExtUtils::MM_AIX'      => '7.42',
17075             'ExtUtils::MM_Any'      => '7.42',
17076             'ExtUtils::MM_BeOS'     => '7.42',
17077             'ExtUtils::MM_Cygwin'   => '7.42',
17078             'ExtUtils::MM_DOS'      => '7.42',
17079             'ExtUtils::MM_Darwin'   => '7.42',
17080             'ExtUtils::MM_MacOS'    => '7.42',
17081             'ExtUtils::MM_NW5'      => '7.42',
17082             'ExtUtils::MM_OS2'      => '7.42',
17083             'ExtUtils::MM_QNX'      => '7.42',
17084             'ExtUtils::MM_UWIN'     => '7.42',
17085             'ExtUtils::MM_Unix'     => '7.42',
17086             'ExtUtils::MM_VMS'      => '7.42',
17087             'ExtUtils::MM_VOS'      => '7.42',
17088             'ExtUtils::MM_Win32'    => '7.42',
17089             'ExtUtils::MM_Win95'    => '7.42',
17090             'ExtUtils::MY'          => '7.42',
17091             'ExtUtils::MakeMaker'   => '7.42',
17092             'ExtUtils::MakeMaker::Config'=> '7.42',
17093             'ExtUtils::MakeMaker::Locale'=> '7.42',
17094             'ExtUtils::MakeMaker::version'=> '7.42',
17095             'ExtUtils::MakeMaker::version::regex'=> '7.42',
17096             'ExtUtils::Mkbootstrap' => '7.42',
17097             'ExtUtils::Mksymlists'  => '7.42',
17098             'ExtUtils::testlib'     => '7.42',
17099             'File::stat'            => '1.09',
17100             'Filter::Simple'        => '0.96',
17101             'IO::Compress::Adapter::Bzip2'=> '2.093',
17102             'IO::Compress::Adapter::Deflate'=> '2.093',
17103             'IO::Compress::Adapter::Identity'=> '2.093',
17104             'IO::Compress::Base'    => '2.093',
17105             'IO::Compress::Base::Common'=> '2.093',
17106             'IO::Compress::Bzip2'   => '2.093',
17107             'IO::Compress::Deflate' => '2.093',
17108             'IO::Compress::Gzip'    => '2.093',
17109             'IO::Compress::Gzip::Constants'=> '2.093',
17110             'IO::Compress::RawDeflate'=> '2.093',
17111             'IO::Compress::Zip'     => '2.093',
17112             'IO::Compress::Zip::Constants'=> '2.093',
17113             'IO::Compress::Zlib::Constants'=> '2.093',
17114             'IO::Compress::Zlib::Extra'=> '2.093',
17115             'IO::Uncompress::Adapter::Bunzip2'=> '2.093',
17116             'IO::Uncompress::Adapter::Identity'=> '2.093',
17117             'IO::Uncompress::Adapter::Inflate'=> '2.093',
17118             'IO::Uncompress::AnyInflate'=> '2.093',
17119             'IO::Uncompress::AnyUncompress'=> '2.093',
17120             'IO::Uncompress::Base'  => '2.093',
17121             'IO::Uncompress::Bunzip2'=> '2.093',
17122             'IO::Uncompress::Gunzip'=> '2.093',
17123             'IO::Uncompress::Inflate'=> '2.093',
17124             'IO::Uncompress::RawInflate'=> '2.093',
17125             'IO::Uncompress::Unzip' => '2.093',
17126             'Module::CoreList'      => '5.20191220',
17127             'Module::CoreList::Utils'=> '5.20191220',
17128             'Net::Ping'             => '2.72',
17129             'Opcode'                => '1.45',
17130             'Storable'              => '3.18',
17131             'Test2'                 => '1.302170',
17132             'Test2::API'            => '1.302170',
17133             'Test2::API::Breakage'  => '1.302170',
17134             'Test2::API::Context'   => '1.302170',
17135             'Test2::API::Instance'  => '1.302170',
17136             'Test2::API::Stack'     => '1.302170',
17137             'Test2::Event'          => '1.302170',
17138             'Test2::Event::Bail'    => '1.302170',
17139             'Test2::Event::Diag'    => '1.302170',
17140             'Test2::Event::Encoding'=> '1.302170',
17141             'Test2::Event::Exception'=> '1.302170',
17142             'Test2::Event::Fail'    => '1.302170',
17143             'Test2::Event::Generic' => '1.302170',
17144             'Test2::Event::Note'    => '1.302170',
17145             'Test2::Event::Ok'      => '1.302170',
17146             'Test2::Event::Pass'    => '1.302170',
17147             'Test2::Event::Plan'    => '1.302170',
17148             'Test2::Event::Skip'    => '1.302170',
17149             'Test2::Event::Subtest' => '1.302170',
17150             'Test2::Event::TAP::Version'=> '1.302170',
17151             'Test2::Event::V2'      => '1.302170',
17152             'Test2::Event::Waiting' => '1.302170',
17153             'Test2::EventFacet'     => '1.302170',
17154             'Test2::EventFacet::About'=> '1.302170',
17155             'Test2::EventFacet::Amnesty'=> '1.302170',
17156             'Test2::EventFacet::Assert'=> '1.302170',
17157             'Test2::EventFacet::Control'=> '1.302170',
17158             'Test2::EventFacet::Error'=> '1.302170',
17159             'Test2::EventFacet::Hub'=> '1.302170',
17160             'Test2::EventFacet::Info'=> '1.302170',
17161             'Test2::EventFacet::Info::Table'=> '1.302170',
17162             'Test2::EventFacet::Meta'=> '1.302170',
17163             'Test2::EventFacet::Parent'=> '1.302170',
17164             'Test2::EventFacet::Plan'=> '1.302170',
17165             'Test2::EventFacet::Render'=> '1.302170',
17166             'Test2::EventFacet::Trace'=> '1.302170',
17167             'Test2::Formatter'      => '1.302170',
17168             'Test2::Formatter::TAP' => '1.302170',
17169             'Test2::Hub'            => '1.302170',
17170             'Test2::Hub::Interceptor'=> '1.302170',
17171             'Test2::Hub::Interceptor::Terminator'=> '1.302170',
17172             'Test2::Hub::Subtest'   => '1.302170',
17173             'Test2::IPC'            => '1.302170',
17174             'Test2::IPC::Driver'    => '1.302170',
17175             'Test2::IPC::Driver::Files'=> '1.302170',
17176             'Test2::Tools::Tiny'    => '1.302170',
17177             'Test2::Util'           => '1.302170',
17178             'Test2::Util::ExternalMeta'=> '1.302170',
17179             'Test2::Util::Facets2Legacy'=> '1.302170',
17180             'Test2::Util::HashBase' => '1.302170',
17181             'Test2::Util::Trace'    => '1.302170',
17182             'Test::Builder'         => '1.302170',
17183             'Test::Builder::Formatter'=> '1.302170',
17184             'Test::Builder::Module' => '1.302170',
17185             'Test::Builder::Tester' => '1.302170',
17186             'Test::Builder::Tester::Color'=> '1.302170',
17187             'Test::Builder::TodoDiag'=> '1.302170',
17188             'Test::More'            => '1.302170',
17189             'Test::Simple'          => '1.302170',
17190             'Test::Tester'          => '1.302170',
17191             'Test::Tester::Capture' => '1.302170',
17192             'Test::Tester::CaptureRunner'=> '1.302170',
17193             'Test::Tester::Delegate'=> '1.302170',
17194             'Test::use::ok'         => '1.302170',
17195             'Tie::Hash::NamedCapture'=> '0.13',
17196             'VMS::Stdio'            => '2.45',
17197             'XS::APItest'           => '1.05',
17198             'feature'               => '1.57',
17199             'ok'                    => '1.302170',
17200             'warnings'              => '1.46',
17201         },
17202         removed => {
17203         }
17204     },
17205     5.031008 => {
17206         delta_from => 5.031007,
17207         changed => {
17208             'B::Op_private'         => '5.031008',
17209             'Config'                => '5.031008',
17210             'DB_File'               => '1.853',
17211             'Encode'                => '3.02',
17212             'ExtUtils::Command'     => '7.44',
17213             'ExtUtils::Command::MM' => '7.44',
17214             'ExtUtils::Liblist'     => '7.44',
17215             'ExtUtils::Liblist::Kid'=> '7.44',
17216             'ExtUtils::MM'          => '7.44',
17217             'ExtUtils::MM_AIX'      => '7.44',
17218             'ExtUtils::MM_Any'      => '7.44',
17219             'ExtUtils::MM_BeOS'     => '7.44',
17220             'ExtUtils::MM_Cygwin'   => '7.44',
17221             'ExtUtils::MM_DOS'      => '7.44',
17222             'ExtUtils::MM_Darwin'   => '7.44',
17223             'ExtUtils::MM_MacOS'    => '7.44',
17224             'ExtUtils::MM_NW5'      => '7.44',
17225             'ExtUtils::MM_OS2'      => '7.44',
17226             'ExtUtils::MM_QNX'      => '7.44',
17227             'ExtUtils::MM_UWIN'     => '7.44',
17228             'ExtUtils::MM_Unix'     => '7.44',
17229             'ExtUtils::MM_VMS'      => '7.44',
17230             'ExtUtils::MM_VOS'      => '7.44',
17231             'ExtUtils::MM_Win32'    => '7.44',
17232             'ExtUtils::MM_Win95'    => '7.44',
17233             'ExtUtils::MY'          => '7.44',
17234             'ExtUtils::MakeMaker'   => '7.44',
17235             'ExtUtils::MakeMaker::Config'=> '7.44',
17236             'ExtUtils::MakeMaker::Locale'=> '7.44',
17237             'ExtUtils::MakeMaker::version'=> '7.44',
17238             'ExtUtils::MakeMaker::version::regex'=> '7.44',
17239             'ExtUtils::Mkbootstrap' => '7.44',
17240             'ExtUtils::Mksymlists'  => '7.44',
17241             'ExtUtils::testlib'     => '7.44',
17242             'Fatal'                 => '2.32',
17243             'Hash::Util'            => '0.23',
17244             'IO'                    => '1.42',
17245             'IO::Handle'            => '1.42',
17246             'IO::Socket'            => '1.42',
17247             'Module::CoreList'      => '5.20200120',
17248             'Module::CoreList::Utils'=> '5.20200120',
17249             'POSIX'                 => '1.91',
17250             'Pod::Man'              => '4.14',
17251             'Pod::ParseLink'        => '4.14',
17252             'Pod::Text'             => '4.14',
17253             'Pod::Text::Color'      => '4.14',
17254             'Pod::Text::Overstrike' => '4.14',
17255             'Pod::Text::Termcap'    => '4.14',
17256             'Term::ANSIColor'       => '5.01',
17257             'Test2'                 => '1.302171',
17258             'Test2::API'            => '1.302171',
17259             'Test2::API::Breakage'  => '1.302171',
17260             'Test2::API::Context'   => '1.302171',
17261             'Test2::API::Instance'  => '1.302171',
17262             'Test2::API::Stack'     => '1.302171',
17263             'Test2::Event'          => '1.302171',
17264             'Test2::Event::Bail'    => '1.302171',
17265             'Test2::Event::Diag'    => '1.302171',
17266             'Test2::Event::Encoding'=> '1.302171',
17267             'Test2::Event::Exception'=> '1.302171',
17268             'Test2::Event::Fail'    => '1.302171',
17269             'Test2::Event::Generic' => '1.302171',
17270             'Test2::Event::Note'    => '1.302171',
17271             'Test2::Event::Ok'      => '1.302171',
17272             'Test2::Event::Pass'    => '1.302171',
17273             'Test2::Event::Plan'    => '1.302171',
17274             'Test2::Event::Skip'    => '1.302171',
17275             'Test2::Event::Subtest' => '1.302171',
17276             'Test2::Event::TAP::Version'=> '1.302171',
17277             'Test2::Event::V2'      => '1.302171',
17278             'Test2::Event::Waiting' => '1.302171',
17279             'Test2::EventFacet'     => '1.302171',
17280             'Test2::EventFacet::About'=> '1.302171',
17281             'Test2::EventFacet::Amnesty'=> '1.302171',
17282             'Test2::EventFacet::Assert'=> '1.302171',
17283             'Test2::EventFacet::Control'=> '1.302171',
17284             'Test2::EventFacet::Error'=> '1.302171',
17285             'Test2::EventFacet::Hub'=> '1.302171',
17286             'Test2::EventFacet::Info'=> '1.302171',
17287             'Test2::EventFacet::Info::Table'=> '1.302171',
17288             'Test2::EventFacet::Meta'=> '1.302171',
17289             'Test2::EventFacet::Parent'=> '1.302171',
17290             'Test2::EventFacet::Plan'=> '1.302171',
17291             'Test2::EventFacet::Render'=> '1.302171',
17292             'Test2::EventFacet::Trace'=> '1.302171',
17293             'Test2::Formatter'      => '1.302171',
17294             'Test2::Formatter::TAP' => '1.302171',
17295             'Test2::Hub'            => '1.302171',
17296             'Test2::Hub::Interceptor'=> '1.302171',
17297             'Test2::Hub::Interceptor::Terminator'=> '1.302171',
17298             'Test2::Hub::Subtest'   => '1.302171',
17299             'Test2::IPC'            => '1.302171',
17300             'Test2::IPC::Driver'    => '1.302171',
17301             'Test2::IPC::Driver::Files'=> '1.302171',
17302             'Test2::Tools::Tiny'    => '1.302171',
17303             'Test2::Util'           => '1.302171',
17304             'Test2::Util::ExternalMeta'=> '1.302171',
17305             'Test2::Util::Facets2Legacy'=> '1.302171',
17306             'Test2::Util::HashBase' => '1.302171',
17307             'Test2::Util::Trace'    => '1.302171',
17308             'Test::Builder'         => '1.302171',
17309             'Test::Builder::Formatter'=> '1.302171',
17310             'Test::Builder::Module' => '1.302171',
17311             'Test::Builder::Tester' => '1.302171',
17312             'Test::Builder::Tester::Color'=> '1.302171',
17313             'Test::Builder::TodoDiag'=> '1.302171',
17314             'Test::More'            => '1.302171',
17315             'Test::Simple'          => '1.302171',
17316             'Test::Tester'          => '1.302171',
17317             'Test::Tester::Capture' => '1.302171',
17318             'Test::Tester::CaptureRunner'=> '1.302171',
17319             'Test::Tester::Delegate'=> '1.302171',
17320             'Test::use::ok'         => '1.302171',
17321             'XS::APItest'           => '1.06',
17322             'autodie'               => '2.32',
17323             'autodie::Scope::Guard' => '2.32',
17324             'autodie::Scope::GuardStack'=> '2.32',
17325             'autodie::Util'         => '2.32',
17326             'autodie::exception'    => '2.32',
17327             'autodie::exception::system'=> '2.32',
17328             'autodie::hints'        => '2.32',
17329             'autodie::skip'         => '2.32',
17330             'ok'                    => '1.302171',
17331         },
17332         removed => {
17333         }
17334     },
17335     5.031009 => {
17336         delta_from => 5.031008,
17337         changed => {
17338             'Archive::Tar'          => '2.36',
17339             'Archive::Tar::Constant'=> '2.36',
17340             'Archive::Tar::File'    => '2.36',
17341             'B'                     => '1.80',
17342             'B::Op_private'         => '5.031009',
17343             'Config'                => '5.031009',
17344             'Devel::PPPort'         => '3.57',
17345             'Encode'                => '3.03',
17346             'ExtUtils::CBuilder'    => '0.280234',
17347             'ExtUtils::CBuilder::Base'=> '0.280234',
17348             'ExtUtils::CBuilder::Platform::Unix'=> '0.280234',
17349             'ExtUtils::CBuilder::Platform::VMS'=> '0.280234',
17350             'ExtUtils::CBuilder::Platform::Windows'=> '0.280234',
17351             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280234',
17352             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280234',
17353             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280234',
17354             'ExtUtils::CBuilder::Platform::aix'=> '0.280234',
17355             'ExtUtils::CBuilder::Platform::android'=> '0.280234',
17356             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280234',
17357             'ExtUtils::CBuilder::Platform::darwin'=> '0.280234',
17358             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280234',
17359             'ExtUtils::CBuilder::Platform::os2'=> '0.280234',
17360             'IO'                    => '1.43',
17361             'IO::Select'            => '1.42',
17362             'IO::Socket'            => '1.43',
17363             'Module::CoreList'      => '5.20200220',
17364             'Module::CoreList::Utils'=> '5.20200220',
17365             'POSIX'                 => '1.92',
17366             'Pod::Html'             => '1.25',
17367             'Storable'              => '3.19',
17368             'Tie::File'             => '1.06',
17369             'Unicode'               => '13.0.0',
17370             'XS::APItest'           => '1.07',
17371             '_charnames'            => '1.46',
17372             'charnames'             => '1.46',
17373             'diagnostics'           => '1.37',
17374             'feature'               => '1.58',
17375             'parent'                => '0.238',
17376             'perlfaq'               => '5.20200125',
17377             'threads'               => '2.24',
17378         },
17379         removed => {
17380         }
17381     },
17382     5.030002 => {
17383         delta_from => 5.030001,
17384         changed => {
17385             'B::Op_private'         => '5.030002',
17386             'Compress::Raw::Bzip2'  => '2.089',
17387             'Config'                => '5.030002',
17388             'Module::CoreList'      => '5.20200314',
17389             'Module::CoreList::Utils'=> '5.20200314',
17390         },
17391         removed => {
17392         }
17393     },
17394     5.031010 => {
17395         delta_from => 5.031009,
17396         changed => {
17397             'B::Op_private'         => '5.031010',
17398             'Config'                => '5.03101',
17399         },
17400         removed => {
17401         }
17402     },
17403     5.031011 => {
17404         delta_from => 5.031010,
17405         changed => {
17406             'B::Deparse'            => '1.53',
17407             'B::Op_private'         => '5.031011',
17408             'Config'                => '5.031011',
17409             'DynaLoader'            => '1.47',
17410             'Encode'                => '3.04',
17411             'IPC::Open2'            => '1.05',
17412             'IPC::Open3'            => '1.21',
17413             'Module::CoreList'      => '5.20200428',
17414             'Module::CoreList::Utils'=> '5.20200428',
17415             'Opcode'                => '1.47',
17416             'POSIX'                 => '1.93',
17417             'PerlIO'                => '1.11',
17418             'Storable'              => '3.20',
17419             'Test2'                 => '1.302175',
17420             'Test2::API'            => '1.302175',
17421             'Test2::API::Breakage'  => '1.302175',
17422             'Test2::API::Context'   => '1.302175',
17423             'Test2::API::Instance'  => '1.302175',
17424             'Test2::API::Stack'     => '1.302175',
17425             'Test2::Event'          => '1.302175',
17426             'Test2::Event::Bail'    => '1.302175',
17427             'Test2::Event::Diag'    => '1.302175',
17428             'Test2::Event::Encoding'=> '1.302175',
17429             'Test2::Event::Exception'=> '1.302175',
17430             'Test2::Event::Fail'    => '1.302175',
17431             'Test2::Event::Generic' => '1.302175',
17432             'Test2::Event::Note'    => '1.302175',
17433             'Test2::Event::Ok'      => '1.302175',
17434             'Test2::Event::Pass'    => '1.302175',
17435             'Test2::Event::Plan'    => '1.302175',
17436             'Test2::Event::Skip'    => '1.302175',
17437             'Test2::Event::Subtest' => '1.302175',
17438             'Test2::Event::TAP::Version'=> '1.302175',
17439             'Test2::Event::V2'      => '1.302175',
17440             'Test2::Event::Waiting' => '1.302175',
17441             'Test2::EventFacet'     => '1.302175',
17442             'Test2::EventFacet::About'=> '1.302175',
17443             'Test2::EventFacet::Amnesty'=> '1.302175',
17444             'Test2::EventFacet::Assert'=> '1.302175',
17445             'Test2::EventFacet::Control'=> '1.302175',
17446             'Test2::EventFacet::Error'=> '1.302175',
17447             'Test2::EventFacet::Hub'=> '1.302175',
17448             'Test2::EventFacet::Info'=> '1.302175',
17449             'Test2::EventFacet::Info::Table'=> '1.302175',
17450             'Test2::EventFacet::Meta'=> '1.302175',
17451             'Test2::EventFacet::Parent'=> '1.302175',
17452             'Test2::EventFacet::Plan'=> '1.302175',
17453             'Test2::EventFacet::Render'=> '1.302175',
17454             'Test2::EventFacet::Trace'=> '1.302175',
17455             'Test2::Formatter'      => '1.302175',
17456             'Test2::Formatter::TAP' => '1.302175',
17457             'Test2::Hub'            => '1.302175',
17458             'Test2::Hub::Interceptor'=> '1.302175',
17459             'Test2::Hub::Interceptor::Terminator'=> '1.302175',
17460             'Test2::Hub::Subtest'   => '1.302175',
17461             'Test2::IPC'            => '1.302175',
17462             'Test2::IPC::Driver'    => '1.302175',
17463             'Test2::IPC::Driver::Files'=> '1.302175',
17464             'Test2::Tools::Tiny'    => '1.302175',
17465             'Test2::Util'           => '1.302175',
17466             'Test2::Util::ExternalMeta'=> '1.302175',
17467             'Test2::Util::Facets2Legacy'=> '1.302175',
17468             'Test2::Util::HashBase' => '1.302175',
17469             'Test2::Util::Trace'    => '1.302175',
17470             'Test::Builder'         => '1.302175',
17471             'Test::Builder::Formatter'=> '1.302175',
17472             'Test::Builder::Module' => '1.302175',
17473             'Test::Builder::Tester' => '1.302175',
17474             'Test::Builder::Tester::Color'=> '1.302175',
17475             'Test::Builder::TodoDiag'=> '1.302175',
17476             'Test::More'            => '1.302175',
17477             'Test::Simple'          => '1.302175',
17478             'Test::Tester'          => '1.302175',
17479             'Test::Tester::Capture' => '1.302175',
17480             'Test::Tester::CaptureRunner'=> '1.302175',
17481             'Test::Tester::Delegate'=> '1.302175',
17482             'Test::use::ok'         => '1.302175',
17483             'Time::Piece'           => '1.3401',
17484             'Time::Seconds'         => '1.3401',
17485             'Unicode::UCD'          => '0.75',
17486             'XS::APItest'           => '1.09',
17487             '_charnames'            => '1.47',
17488             'charnames'             => '1.47',
17489             'ok'                    => '1.302175',
17490             'open'                  => '1.12',
17491             're'                    => '0.39',
17492             'warnings'              => '1.47',
17493         },
17494         removed => {
17495         }
17496     },
17497     5.028003 => {
17498         delta_from => 5.028002,
17499         changed => {
17500             'B::Op_private'         => '5.028003',
17501             'Config'                => '5.028003',
17502             'Module::CoreList'      => '5.20200601_28',
17503             'Module::CoreList::Utils'=> '5.20200601_28',
17504         },
17505         removed => {
17506         }
17507     },
17508     5.030003 => {
17509         delta_from => 5.030002,
17510         changed => {
17511             'B::Op_private'         => '5.030003',
17512             'Config'                => '5.030003',
17513             'Module::CoreList'      => '5.20200601_30',
17514             'Module::CoreList::Utils'=> '5.20200601_30',
17515         },
17516         removed => {
17517         }
17518     },
17519     5.032000 => {
17520         delta_from => 5.031011,
17521         changed => {
17522             'B::Deparse'            => '1.54',
17523             'B::Op_private'         => '5.032000',
17524             'Benchmark'             => '1.23',
17525             'Config'                => '5.032',
17526             'Encode'                => '3.06',
17527             'Encode::Guess'         => '2.08',
17528             'File::Glob'            => '1.33',
17529             'List::Util'            => '1.55',
17530             'List::Util::XS'        => '1.55',
17531             'Module::CoreList'      => '5.20200620',
17532             'Module::CoreList::Utils'=> '5.20200620',
17533             'POSIX'                 => '1.94',
17534             'Scalar::Util'          => '1.55',
17535             'Storable'              => '3.21',
17536             'Sub::Util'             => '1.55',
17537             'Thread::Queue'         => '3.14',
17538             'Tie::Scalar'           => '1.05',
17539             '_charnames'            => '1.48',
17540             'charnames'             => '1.48',
17541             'encoding'              => '3.00',
17542             'perlfaq'               => '5.20200523',
17543             're'                    => '0.40',
17544             'threads'               => '2.25',
17545         },
17546         removed => {
17547         }
17548     },
17549     5.033000 => {
17550         delta_from => 5.032000,
17551         changed => {
17552             'B::Op_private'         => '5.033000',
17553             'Config'                => '5.033',
17554             'Module::CoreList'      => '5.20200717',
17555             'Module::CoreList::Utils'=> '5.20200717',
17556             'feature'               => '1.59',
17557         },
17558         removed => {
17559         }
17560     },
17561     5.033001 => {
17562         delta_from => 5.033,
17563         changed => {
17564             'B'                     => '1.81',
17565             'B::Deparse'            => '1.55',
17566             'B::Op_private'         => '5.033001',
17567             'Config'                => '5.033001',
17568             'Data::Dumper'          => '2.175',
17569             'Devel::PPPort'         => '3.60',
17570             'Devel::Peek'           => '1.29',
17571             'DynaLoader'            => '1.48',
17572             'Errno'                 => '1.31',
17573             'Exporter'              => '5.75',
17574             'Exporter::Heavy'       => '5.75',
17575             'ExtUtils::Miniperl'    => '1.10',
17576             'ExtUtils::PL2Bat'      => '0.002',
17577             'ExtUtils::ParseXS'     => '3.41',
17578             'ExtUtils::ParseXS::Constants'=> '3.41',
17579             'ExtUtils::ParseXS::CountLines'=> '3.41',
17580             'ExtUtils::ParseXS::Eval'=> '3.41',
17581             'ExtUtils::ParseXS::Utilities'=> '3.41',
17582             'Fcntl'                 => '1.14',
17583             'File::Path'            => '2.17',
17584             'Hash::Util'            => '0.24',
17585             'Hash::Util::FieldHash' => '1.21',
17586             'IO'                    => '1.44',
17587             'IO::Socket'            => '1.44',
17588             'IO::Socket::UNIX'      => '1.42',
17589             'IPC::Msg'              => '2.08',
17590             'IPC::Semaphore'        => '2.08',
17591             'IPC::SharedMem'        => '2.08',
17592             'IPC::SysV'             => '2.08',
17593             'JSON::PP'              => '4.05',
17594             'JSON::PP::Boolean'     => '4.05',
17595             'Math::Complex'         => '1.5902',
17596             'Module::CoreList'      => '5.20200820',
17597             'Module::CoreList::Utils'=> '5.20200820',
17598             'Net::Ping'             => '2.73_01',
17599             'POSIX'                 => '1.95',
17600             'PerlIO::mmap'          => '0.017',
17601             'Pod::Usage'            => '1.70',
17602             'Safe'                  => '2.42',
17603             'Socket'                => '2.030',
17604             'Storable'              => '3.22',
17605             'Time::HiRes'           => '1.9765',
17606             'Unicode::Normalize'    => '1.28',
17607             'XS::APItest'           => '1.11',
17608             'XS::Typemap'           => '0.18',
17609             'feature'               => '1.60',
17610             'mro'                   => '1.24',
17611             'strict'                => '1.12',
17612             'threads'               => '2.26',
17613             'threads::shared'       => '1.62',
17614             'warnings'              => '1.48',
17615         },
17616         removed => {
17617             'Moped::Msg'            => 1,
17618         }
17619     },
17620     5.033002 => {
17621         delta_from => 5.033001,
17622         changed => {
17623             'Archive::Tar'          => '2.38',
17624             'Archive::Tar::Constant'=> '2.38',
17625             'Archive::Tar::File'    => '2.38',
17626             'B::Op_private'         => '5.033002',
17627             'Compress::Raw::Bzip2'  => '2.096',
17628             'Compress::Raw::Zlib'   => '2.096',
17629             'Compress::Zlib'        => '2.096',
17630             'Config'                => '5.033002',
17631             'DB_File'               => '1.854',
17632             'Env'                   => '1.05',
17633             'Errno'                 => '1.32',
17634             'ExtUtils::Install'     => '2.18',
17635             'ExtUtils::Installed'   => '2.18',
17636             'ExtUtils::Packlist'    => '2.18',
17637             'Filter::Util::Call'    => '1.60',
17638             'IO::Compress::Adapter::Bzip2'=> '2.096',
17639             'IO::Compress::Adapter::Deflate'=> '2.096',
17640             'IO::Compress::Adapter::Identity'=> '2.096',
17641             'IO::Compress::Base'    => '2.096',
17642             'IO::Compress::Base::Common'=> '2.096',
17643             'IO::Compress::Bzip2'   => '2.096',
17644             'IO::Compress::Deflate' => '2.096',
17645             'IO::Compress::Gzip'    => '2.096',
17646             'IO::Compress::Gzip::Constants'=> '2.096',
17647             'IO::Compress::RawDeflate'=> '2.096',
17648             'IO::Compress::Zip'     => '2.096',
17649             'IO::Compress::Zip::Constants'=> '2.096',
17650             'IO::Compress::Zlib::Constants'=> '2.096',
17651             'IO::Compress::Zlib::Extra'=> '2.096',
17652             'IO::Socket::IP'        => '0.41',
17653             'IO::Uncompress::Adapter::Bunzip2'=> '2.096',
17654             'IO::Uncompress::Adapter::Identity'=> '2.096',
17655             'IO::Uncompress::Adapter::Inflate'=> '2.096',
17656             'IO::Uncompress::AnyInflate'=> '2.096',
17657             'IO::Uncompress::AnyUncompress'=> '2.096',
17658             'IO::Uncompress::Base'  => '2.096',
17659             'IO::Uncompress::Bunzip2'=> '2.096',
17660             'IO::Uncompress::Gunzip'=> '2.096',
17661             'IO::Uncompress::Inflate'=> '2.096',
17662             'IO::Uncompress::RawInflate'=> '2.096',
17663             'IO::Uncompress::Unzip' => '2.096',
17664             'IO::Zlib'              => '1.11',
17665             'Module::CoreList'      => '5.20200920',
17666             'Module::CoreList::Utils'=> '5.20200920',
17667             'Module::Load::Conditional'=> '0.74',
17668             'Opcode'                => '1.48',
17669             'PerlIO::scalar'        => '0.31',
17670             'Safe'                  => '2.43',
17671             'Test2'                 => '1.302181',
17672             'Test2::API'            => '1.302181',
17673             'Test2::API::Breakage'  => '1.302181',
17674             'Test2::API::Context'   => '1.302181',
17675             'Test2::API::Instance'  => '1.302181',
17676             'Test2::API::InterceptResult'=> '1.302181',
17677             'Test2::API::InterceptResult::Event'=> '1.302181',
17678             'Test2::API::InterceptResult::Facet'=> '1.302181',
17679             'Test2::API::InterceptResult::Hub'=> '1.302181',
17680             'Test2::API::InterceptResult::Squasher'=> '1.302181',
17681             'Test2::API::Stack'     => '1.302181',
17682             'Test2::Event'          => '1.302181',
17683             'Test2::Event::Bail'    => '1.302181',
17684             'Test2::Event::Diag'    => '1.302181',
17685             'Test2::Event::Encoding'=> '1.302181',
17686             'Test2::Event::Exception'=> '1.302181',
17687             'Test2::Event::Fail'    => '1.302181',
17688             'Test2::Event::Generic' => '1.302181',
17689             'Test2::Event::Note'    => '1.302181',
17690             'Test2::Event::Ok'      => '1.302181',
17691             'Test2::Event::Pass'    => '1.302181',
17692             'Test2::Event::Plan'    => '1.302181',
17693             'Test2::Event::Skip'    => '1.302181',
17694             'Test2::Event::Subtest' => '1.302181',
17695             'Test2::Event::TAP::Version'=> '1.302181',
17696             'Test2::Event::V2'      => '1.302181',
17697             'Test2::Event::Waiting' => '1.302181',
17698             'Test2::EventFacet'     => '1.302181',
17699             'Test2::EventFacet::About'=> '1.302181',
17700             'Test2::EventFacet::Amnesty'=> '1.302181',
17701             'Test2::EventFacet::Assert'=> '1.302181',
17702             'Test2::EventFacet::Control'=> '1.302181',
17703             'Test2::EventFacet::Error'=> '1.302181',
17704             'Test2::EventFacet::Hub'=> '1.302181',
17705             'Test2::EventFacet::Info'=> '1.302181',
17706             'Test2::EventFacet::Info::Table'=> '1.302181',
17707             'Test2::EventFacet::Meta'=> '1.302181',
17708             'Test2::EventFacet::Parent'=> '1.302181',
17709             'Test2::EventFacet::Plan'=> '1.302181',
17710             'Test2::EventFacet::Render'=> '1.302181',
17711             'Test2::EventFacet::Trace'=> '1.302181',
17712             'Test2::Formatter'      => '1.302181',
17713             'Test2::Formatter::TAP' => '1.302181',
17714             'Test2::Hub'            => '1.302181',
17715             'Test2::Hub::Interceptor'=> '1.302181',
17716             'Test2::Hub::Interceptor::Terminator'=> '1.302181',
17717             'Test2::Hub::Subtest'   => '1.302181',
17718             'Test2::IPC'            => '1.302181',
17719             'Test2::IPC::Driver'    => '1.302181',
17720             'Test2::IPC::Driver::Files'=> '1.302181',
17721             'Test2::Tools::Tiny'    => '1.302181',
17722             'Test2::Util'           => '1.302181',
17723             'Test2::Util::ExternalMeta'=> '1.302181',
17724             'Test2::Util::Facets2Legacy'=> '1.302181',
17725             'Test2::Util::HashBase' => '1.302181',
17726             'Test2::Util::Trace'    => '1.302181',
17727             'Test::Builder'         => '1.302181',
17728             'Test::Builder::Formatter'=> '1.302181',
17729             'Test::Builder::Module' => '1.302181',
17730             'Test::Builder::Tester' => '1.302181',
17731             'Test::Builder::Tester::Color'=> '1.302181',
17732             'Test::Builder::TodoDiag'=> '1.302181',
17733             'Test::More'            => '1.302181',
17734             'Test::Simple'          => '1.302181',
17735             'Test::Tester'          => '1.302181',
17736             'Test::Tester::Capture' => '1.302181',
17737             'Test::Tester::CaptureRunner'=> '1.302181',
17738             'Test::Tester::Delegate'=> '1.302181',
17739             'Test::use::ok'         => '1.302181',
17740             'ok'                    => '1.302181',
17741             'overload'              => '1.32',
17742         },
17743         removed => {
17744         }
17745     },
17746     5.033003 => {
17747         delta_from => 5.033002,
17748         changed => {
17749             'Amiga::ARexx'          => '0.05',
17750             'App::Cpan'             => '1.676',
17751             'B::Op_private'         => '5.033003',
17752             'CPAN'                  => '2.28',
17753             'CPAN::FTP'             => '5.5013',
17754             'CPAN::FirstTime'       => '5.5315',
17755             'Config'                => '5.033003',
17756             'DB_File'               => '1.855',
17757             'Data::Dumper'          => '2.176',
17758             'Devel::PPPort'         => '3.62',
17759             'Devel::Peek'           => '1.30',
17760             'Digest'                => '1.19',
17761             'Digest::MD5'           => '2.58',
17762             'Digest::base'          => '1.19',
17763             'Digest::file'          => '1.19',
17764             'Encode'                => '3.07',
17765             'Encode::GSM0338'       => '2.08',
17766             'Errno'                 => '1.33',
17767             'Exporter'              => '5.76',
17768             'Exporter::Heavy'       => '5.76',
17769             'ExtUtils::Command'     => '7.48',
17770             'ExtUtils::Command::MM' => '7.48',
17771             'ExtUtils::Liblist'     => '7.48',
17772             'ExtUtils::Liblist::Kid'=> '7.48',
17773             'ExtUtils::MM'          => '7.48',
17774             'ExtUtils::MM_AIX'      => '7.48',
17775             'ExtUtils::MM_Any'      => '7.48',
17776             'ExtUtils::MM_BeOS'     => '7.48',
17777             'ExtUtils::MM_Cygwin'   => '7.48',
17778             'ExtUtils::MM_DOS'      => '7.48',
17779             'ExtUtils::MM_Darwin'   => '7.48',
17780             'ExtUtils::MM_MacOS'    => '7.48',
17781             'ExtUtils::MM_NW5'      => '7.48',
17782             'ExtUtils::MM_OS2'      => '7.48',
17783             'ExtUtils::MM_OS390'    => '7.48',
17784             'ExtUtils::MM_QNX'      => '7.48',
17785             'ExtUtils::MM_UWIN'     => '7.48',
17786             'ExtUtils::MM_Unix'     => '7.48',
17787             'ExtUtils::MM_VMS'      => '7.48',
17788             'ExtUtils::MM_VOS'      => '7.48',
17789             'ExtUtils::MM_Win32'    => '7.48',
17790             'ExtUtils::MM_Win95'    => '7.48',
17791             'ExtUtils::MY'          => '7.48',
17792             'ExtUtils::MakeMaker'   => '7.48',
17793             'ExtUtils::MakeMaker::Config'=> '7.48',
17794             'ExtUtils::MakeMaker::Locale'=> '7.48',
17795             'ExtUtils::MakeMaker::version'=> '7.48',
17796             'ExtUtils::MakeMaker::version::regex'=> '7.48',
17797             'ExtUtils::Mkbootstrap' => '7.48',
17798             'ExtUtils::Mksymlists'  => '7.48',
17799             'ExtUtils::PL2Bat'      => '0.003',
17800             'ExtUtils::testlib'     => '7.48',
17801             'File::Temp'            => '0.2311',
17802             'FindBin'               => '1.52',
17803             'Getopt::Long'          => '2.52',
17804             'Getopt::Std'           => '1.13',
17805             'I18N::LangTags'        => '0.45',
17806             'MIME::Base64'          => '3.16',
17807             'MIME::QuotedPrint'     => '3.16',
17808             'Module::CoreList'      => '5.20201020',
17809             'Module::CoreList::Utils'=> '5.20201020',
17810             'Module::Load'          => '0.36',
17811             'Pod::Checker'          => '1.74',
17812             'Pod::Simple'           => '3.41',
17813             'Pod::Simple::BlackBox' => '3.41',
17814             'Pod::Simple::Checker'  => '3.41',
17815             'Pod::Simple::Debug'    => '3.41',
17816             'Pod::Simple::DumpAsText'=> '3.41',
17817             'Pod::Simple::DumpAsXML'=> '3.41',
17818             'Pod::Simple::HTML'     => '3.41',
17819             'Pod::Simple::HTMLBatch'=> '3.41',
17820             'Pod::Simple::LinkSection'=> '3.41',
17821             'Pod::Simple::Methody'  => '3.41',
17822             'Pod::Simple::Progress' => '3.41',
17823             'Pod::Simple::PullParser'=> '3.41',
17824             'Pod::Simple::PullParserEndToken'=> '3.41',
17825             'Pod::Simple::PullParserStartToken'=> '3.41',
17826             'Pod::Simple::PullParserTextToken'=> '3.41',
17827             'Pod::Simple::PullParserToken'=> '3.41',
17828             'Pod::Simple::RTF'      => '3.41',
17829             'Pod::Simple::Search'   => '3.41',
17830             'Pod::Simple::SimpleTree'=> '3.41',
17831             'Pod::Simple::Text'     => '3.41',
17832             'Pod::Simple::TextContent'=> '3.41',
17833             'Pod::Simple::TiedOutFH'=> '3.41',
17834             'Pod::Simple::Transcode'=> '3.41',
17835             'Pod::Simple::TranscodeDumb'=> '3.41',
17836             'Pod::Simple::TranscodeSmart'=> '3.41',
17837             'Pod::Simple::XHTML'    => '3.41',
17838             'Pod::Simple::XMLOutStream'=> '3.41',
17839             'Pod::Usage'            => '2.01',
17840             'Storable'              => '3.23',
17841             'Symbol'                => '1.09',
17842             'Test2'                 => '1.302182',
17843             'Test2::API'            => '1.302182',
17844             'Test2::API::Breakage'  => '1.302182',
17845             'Test2::API::Context'   => '1.302182',
17846             'Test2::API::Instance'  => '1.302182',
17847             'Test2::API::InterceptResult'=> '1.302182',
17848             'Test2::API::InterceptResult::Event'=> '1.302182',
17849             'Test2::API::InterceptResult::Facet'=> '1.302182',
17850             'Test2::API::InterceptResult::Hub'=> '1.302182',
17851             'Test2::API::InterceptResult::Squasher'=> '1.302182',
17852             'Test2::API::Stack'     => '1.302182',
17853             'Test2::Event'          => '1.302182',
17854             'Test2::Event::Bail'    => '1.302182',
17855             'Test2::Event::Diag'    => '1.302182',
17856             'Test2::Event::Encoding'=> '1.302182',
17857             'Test2::Event::Exception'=> '1.302182',
17858             'Test2::Event::Fail'    => '1.302182',
17859             'Test2::Event::Generic' => '1.302182',
17860             'Test2::Event::Note'    => '1.302182',
17861             'Test2::Event::Ok'      => '1.302182',
17862             'Test2::Event::Pass'    => '1.302182',
17863             'Test2::Event::Plan'    => '1.302182',
17864             'Test2::Event::Skip'    => '1.302182',
17865             'Test2::Event::Subtest' => '1.302182',
17866             'Test2::Event::TAP::Version'=> '1.302182',
17867             'Test2::Event::V2'      => '1.302182',
17868             'Test2::Event::Waiting' => '1.302182',
17869             'Test2::EventFacet'     => '1.302182',
17870             'Test2::EventFacet::About'=> '1.302182',
17871             'Test2::EventFacet::Amnesty'=> '1.302182',
17872             'Test2::EventFacet::Assert'=> '1.302182',
17873             'Test2::EventFacet::Control'=> '1.302182',
17874             'Test2::EventFacet::Error'=> '1.302182',
17875             'Test2::EventFacet::Hub'=> '1.302182',
17876             'Test2::EventFacet::Info'=> '1.302182',
17877             'Test2::EventFacet::Info::Table'=> '1.302182',
17878             'Test2::EventFacet::Meta'=> '1.302182',
17879             'Test2::EventFacet::Parent'=> '1.302182',
17880             'Test2::EventFacet::Plan'=> '1.302182',
17881             'Test2::EventFacet::Render'=> '1.302182',
17882             'Test2::EventFacet::Trace'=> '1.302182',
17883             'Test2::Formatter'      => '1.302182',
17884             'Test2::Formatter::TAP' => '1.302182',
17885             'Test2::Hub'            => '1.302182',
17886             'Test2::Hub::Interceptor'=> '1.302182',
17887             'Test2::Hub::Interceptor::Terminator'=> '1.302182',
17888             'Test2::Hub::Subtest'   => '1.302182',
17889             'Test2::IPC'            => '1.302182',
17890             'Test2::IPC::Driver'    => '1.302182',
17891             'Test2::IPC::Driver::Files'=> '1.302182',
17892             'Test2::Tools::Tiny'    => '1.302182',
17893             'Test2::Util'           => '1.302182',
17894             'Test2::Util::ExternalMeta'=> '1.302182',
17895             'Test2::Util::Facets2Legacy'=> '1.302182',
17896             'Test2::Util::HashBase' => '1.302182',
17897             'Test2::Util::Trace'    => '1.302182',
17898             'Test::Builder'         => '1.302182',
17899             'Test::Builder::Formatter'=> '1.302182',
17900             'Test::Builder::Module' => '1.302182',
17901             'Test::Builder::Tester' => '1.302182',
17902             'Test::Builder::Tester::Color'=> '1.302182',
17903             'Test::Builder::TodoDiag'=> '1.302182',
17904             'Test::More'            => '1.302182',
17905             'Test::Simple'          => '1.302182',
17906             'Test::Tester'          => '1.302182',
17907             'Test::Tester::Capture' => '1.302182',
17908             'Test::Tester::CaptureRunner'=> '1.302182',
17909             'Test::Tester::Delegate'=> '1.302182',
17910             'Test::use::ok'         => '1.302182',
17911             'Tie::RefHash'          => '1.40',
17912             'Time::Local'           => '1.30',
17913             'Unicode::Collate'      => '1.29',
17914             'Unicode::Collate::CJK::Big5'=> '1.29',
17915             'Unicode::Collate::CJK::GB2312'=> '1.29',
17916             'Unicode::Collate::CJK::JISX0208'=> '1.29',
17917             'Unicode::Collate::CJK::Korean'=> '1.29',
17918             'Unicode::Collate::CJK::Pinyin'=> '1.29',
17919             'Unicode::Collate::CJK::Stroke'=> '1.29',
17920             'Unicode::Collate::CJK::Zhuyin'=> '1.29',
17921             'Unicode::Collate::Locale'=> '1.29',
17922             'Win32'                 => '0.54',
17923             'XS::APItest'           => '1.12',
17924             'bytes'                 => '1.08',
17925             'experimental'          => '0.022',
17926             'feature'               => '1.61',
17927             'if'                    => '0.0609',
17928             'locale'                => '1.10',
17929             'mro'                   => '1.25',
17930             'ok'                    => '1.302182',
17931             'overload'              => '1.33',
17932             're'                    => '0.41',
17933             'subs'                  => '1.04',
17934             'utf8'                  => '1.24',
17935             'version'               => '0.9928',
17936             'version::regex'        => '0.9928',
17937         },
17938         removed => {
17939         }
17940     },
17941     5.033004 => {
17942         delta_from => 5.033003,
17943         changed => {
17944             'B'                     => '1.82',
17945             'B::Op_private'         => '5.033004',
17946             'Config'                => '5.033004',
17947             'Cwd'                   => '3.79',
17948             'ExtUtils::CBuilder'    => '0.280235',
17949             'ExtUtils::CBuilder::Base'=> '0.280235',
17950             'ExtUtils::CBuilder::Platform::Unix'=> '0.280235',
17951             'ExtUtils::CBuilder::Platform::VMS'=> '0.280235',
17952             'ExtUtils::CBuilder::Platform::Windows'=> '0.280235',
17953             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280235',
17954             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280235',
17955             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280235',
17956             'ExtUtils::CBuilder::Platform::aix'=> '0.280235',
17957             'ExtUtils::CBuilder::Platform::android'=> '0.280235',
17958             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280235',
17959             'ExtUtils::CBuilder::Platform::darwin'=> '0.280235',
17960             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280235',
17961             'ExtUtils::CBuilder::Platform::os2'=> '0.280235',
17962             'ExtUtils::Command'     => '7.56',
17963             'ExtUtils::Command::MM' => '7.56',
17964             'ExtUtils::Liblist'     => '7.56',
17965             'ExtUtils::Liblist::Kid'=> '7.56',
17966             'ExtUtils::MM'          => '7.56',
17967             'ExtUtils::MM_AIX'      => '7.56',
17968             'ExtUtils::MM_Any'      => '7.56',
17969             'ExtUtils::MM_BeOS'     => '7.56',
17970             'ExtUtils::MM_Cygwin'   => '7.56',
17971             'ExtUtils::MM_DOS'      => '7.56',
17972             'ExtUtils::MM_Darwin'   => '7.56',
17973             'ExtUtils::MM_MacOS'    => '7.56',
17974             'ExtUtils::MM_NW5'      => '7.56',
17975             'ExtUtils::MM_OS2'      => '7.56',
17976             'ExtUtils::MM_OS390'    => '7.56',
17977             'ExtUtils::MM_QNX'      => '7.56',
17978             'ExtUtils::MM_UWIN'     => '7.56',
17979             'ExtUtils::MM_Unix'     => '7.56',
17980             'ExtUtils::MM_VMS'      => '7.56',
17981             'ExtUtils::MM_VOS'      => '7.56',
17982             'ExtUtils::MM_Win32'    => '7.56',
17983             'ExtUtils::MM_Win95'    => '7.56',
17984             'ExtUtils::MY'          => '7.56',
17985             'ExtUtils::MakeMaker'   => '7.56',
17986             'ExtUtils::MakeMaker::Config'=> '7.56',
17987             'ExtUtils::MakeMaker::Locale'=> '7.56',
17988             'ExtUtils::MakeMaker::version'=> '7.56',
17989             'ExtUtils::MakeMaker::version::regex'=> '7.56',
17990             'ExtUtils::Mkbootstrap' => '7.56',
17991             'ExtUtils::Mksymlists'  => '7.56',
17992             'ExtUtils::testlib'     => '7.56',
17993             'File::Fetch'           => '1.00',
17994             'File::Path'            => '2.18',
17995             'File::Spec'            => '3.79',
17996             'File::Spec::AmigaOS'   => '3.79',
17997             'File::Spec::Cygwin'    => '3.79',
17998             'File::Spec::Epoc'      => '3.79',
17999             'File::Spec::Functions' => '3.79',
18000             'File::Spec::Mac'       => '3.79',
18001             'File::Spec::OS2'       => '3.79',
18002             'File::Spec::Unix'      => '3.79',
18003             'File::Spec::VMS'       => '3.79',
18004             'IPC::Msg'              => '2.09',
18005             'IPC::Semaphore'        => '2.09',
18006             'IPC::SharedMem'        => '2.09',
18007             'IPC::SysV'             => '2.09',
18008             'Module::CoreList'      => '5.20201120',
18009             'Module::CoreList::Utils'=> '5.20201120',
18010             'Net::Ping'             => '2.74',
18011             'Pod::Html'             => '1.26',
18012             'Pod::Simple'           => '3.42',
18013             'Pod::Simple::BlackBox' => '3.42',
18014             'Pod::Simple::Checker'  => '3.42',
18015             'Pod::Simple::Debug'    => '3.42',
18016             'Pod::Simple::DumpAsText'=> '3.42',
18017             'Pod::Simple::DumpAsXML'=> '3.42',
18018             'Pod::Simple::HTML'     => '3.42',
18019             'Pod::Simple::HTMLBatch'=> '3.42',
18020             'Pod::Simple::LinkSection'=> '3.42',
18021             'Pod::Simple::Methody'  => '3.42',
18022             'Pod::Simple::Progress' => '3.42',
18023             'Pod::Simple::PullParser'=> '3.42',
18024             'Pod::Simple::PullParserEndToken'=> '3.42',
18025             'Pod::Simple::PullParserStartToken'=> '3.42',
18026             'Pod::Simple::PullParserTextToken'=> '3.42',
18027             'Pod::Simple::PullParserToken'=> '3.42',
18028             'Pod::Simple::RTF'      => '3.42',
18029             'Pod::Simple::Search'   => '3.42',
18030             'Pod::Simple::SimpleTree'=> '3.42',
18031             'Pod::Simple::Text'     => '3.42',
18032             'Pod::Simple::TextContent'=> '3.42',
18033             'Pod::Simple::TiedOutFH'=> '3.42',
18034             'Pod::Simple::Transcode'=> '3.42',
18035             'Pod::Simple::TranscodeDumb'=> '3.42',
18036             'Pod::Simple::TranscodeSmart'=> '3.42',
18037             'Pod::Simple::XHTML'    => '3.42',
18038             'Pod::Simple::XMLOutStream'=> '3.42',
18039             'Test2'                 => '1.302183',
18040             'Test2::API'            => '1.302183',
18041             'Test2::API::Breakage'  => '1.302183',
18042             'Test2::API::Context'   => '1.302183',
18043             'Test2::API::Instance'  => '1.302183',
18044             'Test2::API::InterceptResult'=> '1.302183',
18045             'Test2::API::InterceptResult::Event'=> '1.302183',
18046             'Test2::API::InterceptResult::Facet'=> '1.302183',
18047             'Test2::API::InterceptResult::Hub'=> '1.302183',
18048             'Test2::API::InterceptResult::Squasher'=> '1.302183',
18049             'Test2::API::Stack'     => '1.302183',
18050             'Test2::Event'          => '1.302183',
18051             'Test2::Event::Bail'    => '1.302183',
18052             'Test2::Event::Diag'    => '1.302183',
18053             'Test2::Event::Encoding'=> '1.302183',
18054             'Test2::Event::Exception'=> '1.302183',
18055             'Test2::Event::Fail'    => '1.302183',
18056             'Test2::Event::Generic' => '1.302183',
18057             'Test2::Event::Note'    => '1.302183',
18058             'Test2::Event::Ok'      => '1.302183',
18059             'Test2::Event::Pass'    => '1.302183',
18060             'Test2::Event::Plan'    => '1.302183',
18061             'Test2::Event::Skip'    => '1.302183',
18062             'Test2::Event::Subtest' => '1.302183',
18063             'Test2::Event::TAP::Version'=> '1.302183',
18064             'Test2::Event::V2'      => '1.302183',
18065             'Test2::Event::Waiting' => '1.302183',
18066             'Test2::EventFacet'     => '1.302183',
18067             'Test2::EventFacet::About'=> '1.302183',
18068             'Test2::EventFacet::Amnesty'=> '1.302183',
18069             'Test2::EventFacet::Assert'=> '1.302183',
18070             'Test2::EventFacet::Control'=> '1.302183',
18071             'Test2::EventFacet::Error'=> '1.302183',
18072             'Test2::EventFacet::Hub'=> '1.302183',
18073             'Test2::EventFacet::Info'=> '1.302183',
18074             'Test2::EventFacet::Info::Table'=> '1.302183',
18075             'Test2::EventFacet::Meta'=> '1.302183',
18076             'Test2::EventFacet::Parent'=> '1.302183',
18077             'Test2::EventFacet::Plan'=> '1.302183',
18078             'Test2::EventFacet::Render'=> '1.302183',
18079             'Test2::EventFacet::Trace'=> '1.302183',
18080             'Test2::Formatter'      => '1.302183',
18081             'Test2::Formatter::TAP' => '1.302183',
18082             'Test2::Hub'            => '1.302183',
18083             'Test2::Hub::Interceptor'=> '1.302183',
18084             'Test2::Hub::Interceptor::Terminator'=> '1.302183',
18085             'Test2::Hub::Subtest'   => '1.302183',
18086             'Test2::IPC'            => '1.302183',
18087             'Test2::IPC::Driver'    => '1.302183',
18088             'Test2::IPC::Driver::Files'=> '1.302183',
18089             'Test2::Tools::Tiny'    => '1.302183',
18090             'Test2::Util'           => '1.302183',
18091             'Test2::Util::ExternalMeta'=> '1.302183',
18092             'Test2::Util::Facets2Legacy'=> '1.302183',
18093             'Test2::Util::HashBase' => '1.302183',
18094             'Test2::Util::Trace'    => '1.302183',
18095             'Test::Builder'         => '1.302183',
18096             'Test::Builder::Formatter'=> '1.302183',
18097             'Test::Builder::Module' => '1.302183',
18098             'Test::Builder::Tester' => '1.302183',
18099             'Test::Builder::Tester::Color'=> '1.302183',
18100             'Test::Builder::TodoDiag'=> '1.302183',
18101             'Test::More'            => '1.302183',
18102             'Test::Simple'          => '1.302183',
18103             'Test::Tester'          => '1.302183',
18104             'Test::Tester::Capture' => '1.302183',
18105             'Test::Tester::CaptureRunner'=> '1.302183',
18106             'Test::Tester::Delegate'=> '1.302183',
18107             'Test::use::ok'         => '1.302183',
18108             'XS::APItest'           => '1.13',
18109             'ok'                    => '1.302183',
18110             'perlfaq'               => '5.20201107',
18111         },
18112         removed => {
18113         }
18114     },
18115     5.033005 => {
18116         delta_from => 5.033004,
18117         changed => {
18118             'App::Prove'            => '3.43',
18119             'App::Prove::State'     => '3.43',
18120             'App::Prove::State::Result'=> '3.43',
18121             'App::Prove::State::Result::Test'=> '3.43',
18122             'B::Op_private'         => '5.033005',
18123             'Carp'                  => '1.51',
18124             'Carp::Heavy'           => '1.51',
18125             'Config'                => '5.033005',
18126             'Config::Perl::V'       => '0.33',
18127             'Cwd'                   => '3.80',
18128             'DynaLoader'            => '1.49',
18129             'Encode'                => '3.08',
18130             'Encode::GSM0338'       => '2.09',
18131             'ExtUtils::Install'     => '2.20',
18132             'ExtUtils::Installed'   => '2.20',
18133             'ExtUtils::Packlist'    => '2.20',
18134             'ExtUtils::ParseXS'     => '3.42',
18135             'ExtUtils::ParseXS::Constants'=> '3.42',
18136             'ExtUtils::ParseXS::CountLines'=> '3.42',
18137             'ExtUtils::ParseXS::Eval'=> '3.42',
18138             'ExtUtils::ParseXS::Utilities'=> '3.42',
18139             'File::Copy'            => '2.35',
18140             'File::Find'            => '1.38',
18141             'File::Spec'            => '3.80',
18142             'File::Spec::AmigaOS'   => '3.80',
18143             'File::Spec::Cygwin'    => '3.80',
18144             'File::Spec::Epoc'      => '3.80',
18145             'File::Spec::Functions' => '3.80',
18146             'File::Spec::Mac'       => '3.80',
18147             'File::Spec::OS2'       => '3.80',
18148             'File::Spec::Unix'      => '3.80',
18149             'File::Spec::VMS'       => '3.80',
18150             'File::Spec::Win32'     => '3.80',
18151             'Module::CoreList'      => '5.20201220',
18152             'Module::CoreList::Utils'=> '5.20201220',
18153             'Net::Cmd'              => '3.12',
18154             'Net::Config'           => '3.12',
18155             'Net::Domain'           => '3.12',
18156             'Net::FTP'              => '3.12',
18157             'Net::FTP::A'           => '3.12',
18158             'Net::FTP::E'           => '3.12',
18159             'Net::FTP::I'           => '3.12',
18160             'Net::FTP::L'           => '3.12',
18161             'Net::FTP::dataconn'    => '3.12',
18162             'Net::NNTP'             => '3.12',
18163             'Net::Netrc'            => '3.12',
18164             'Net::POP3'             => '3.12',
18165             'Net::SMTP'             => '3.12',
18166             'Net::Time'             => '3.12',
18167             'ODBM_File'             => '1.17',
18168             'Opcode'                => '1.49',
18169             'POSIX'                 => '1.96',
18170             'PerlIO::via::QuotedPrint'=> '0.09',
18171             'TAP::Base'             => '3.43',
18172             'TAP::Formatter::Base'  => '3.43',
18173             'TAP::Formatter::Color' => '3.43',
18174             'TAP::Formatter::Console'=> '3.43',
18175             'TAP::Formatter::Console::ParallelSession'=> '3.43',
18176             'TAP::Formatter::Console::Session'=> '3.43',
18177             'TAP::Formatter::File'  => '3.43',
18178             'TAP::Formatter::File::Session'=> '3.43',
18179             'TAP::Formatter::Session'=> '3.43',
18180             'TAP::Harness'          => '3.43',
18181             'TAP::Harness::Env'     => '3.43',
18182             'TAP::Object'           => '3.43',
18183             'TAP::Parser'           => '3.43',
18184             'TAP::Parser::Aggregator'=> '3.43',
18185             'TAP::Parser::Grammar'  => '3.43',
18186             'TAP::Parser::Iterator' => '3.43',
18187             'TAP::Parser::Iterator::Array'=> '3.43',
18188             'TAP::Parser::Iterator::Process'=> '3.43',
18189             'TAP::Parser::Iterator::Stream'=> '3.43',
18190             'TAP::Parser::IteratorFactory'=> '3.43',
18191             'TAP::Parser::Multiplexer'=> '3.43',
18192             'TAP::Parser::Result'   => '3.43',
18193             'TAP::Parser::Result::Bailout'=> '3.43',
18194             'TAP::Parser::Result::Comment'=> '3.43',
18195             'TAP::Parser::Result::Plan'=> '3.43',
18196             'TAP::Parser::Result::Pragma'=> '3.43',
18197             'TAP::Parser::Result::Test'=> '3.43',
18198             'TAP::Parser::Result::Unknown'=> '3.43',
18199             'TAP::Parser::Result::Version'=> '3.43',
18200             'TAP::Parser::Result::YAML'=> '3.43',
18201             'TAP::Parser::ResultFactory'=> '3.43',
18202             'TAP::Parser::Scheduler'=> '3.43',
18203             'TAP::Parser::Scheduler::Job'=> '3.43',
18204             'TAP::Parser::Scheduler::Spinner'=> '3.43',
18205             'TAP::Parser::Source'   => '3.43',
18206             'TAP::Parser::SourceHandler'=> '3.43',
18207             'TAP::Parser::SourceHandler::Executable'=> '3.43',
18208             'TAP::Parser::SourceHandler::File'=> '3.43',
18209             'TAP::Parser::SourceHandler::Handle'=> '3.43',
18210             'TAP::Parser::SourceHandler::Perl'=> '3.43',
18211             'TAP::Parser::SourceHandler::RawTAP'=> '3.43',
18212             'TAP::Parser::YAMLish::Reader'=> '3.43',
18213             'TAP::Parser::YAMLish::Writer'=> '3.43',
18214             'Test::Harness'         => '3.43',
18215             'Text::Balanced'        => '2.04',
18216             'Time::HiRes'           => '1.9766',
18217             'XS::APItest'           => '1.14',
18218             'warnings'              => '1.49',
18219         },
18220         removed => {
18221         }
18222     },
18223     5.033006 => {
18224         delta_from => 5.033005,
18225         changed => {
18226             'B::Op_private'         => '5.033006',
18227             'Carp'                  => '1.52',
18228             'Carp::Heavy'           => '1.52',
18229             'Compress::Raw::Bzip2'  => '2.100',
18230             'Compress::Raw::Zlib'   => '2.100',
18231             'Compress::Zlib'        => '2.100',
18232             'Config'                => '5.033006',
18233             'DynaLoader'            => '1.50',
18234             'ExtUtils::Command'     => '7.58',
18235             'ExtUtils::Command::MM' => '7.58',
18236             'ExtUtils::Liblist'     => '7.58',
18237             'ExtUtils::Liblist::Kid'=> '7.58',
18238             'ExtUtils::MM'          => '7.58',
18239             'ExtUtils::MM_AIX'      => '7.58',
18240             'ExtUtils::MM_Any'      => '7.58',
18241             'ExtUtils::MM_BeOS'     => '7.58',
18242             'ExtUtils::MM_Cygwin'   => '7.58',
18243             'ExtUtils::MM_DOS'      => '7.58',
18244             'ExtUtils::MM_Darwin'   => '7.58',
18245             'ExtUtils::MM_MacOS'    => '7.58',
18246             'ExtUtils::MM_NW5'      => '7.58',
18247             'ExtUtils::MM_OS2'      => '7.58',
18248             'ExtUtils::MM_OS390'    => '7.58',
18249             'ExtUtils::MM_QNX'      => '7.58',
18250             'ExtUtils::MM_UWIN'     => '7.58',
18251             'ExtUtils::MM_Unix'     => '7.58',
18252             'ExtUtils::MM_VMS'      => '7.58',
18253             'ExtUtils::MM_VOS'      => '7.58',
18254             'ExtUtils::MM_Win32'    => '7.58',
18255             'ExtUtils::MM_Win95'    => '7.58',
18256             'ExtUtils::MY'          => '7.58',
18257             'ExtUtils::MakeMaker'   => '7.58',
18258             'ExtUtils::MakeMaker::Config'=> '7.58',
18259             'ExtUtils::MakeMaker::Locale'=> '7.58',
18260             'ExtUtils::MakeMaker::version'=> '7.58',
18261             'ExtUtils::MakeMaker::version::regex'=> '7.58',
18262             'ExtUtils::Manifest'    => '1.73',
18263             'ExtUtils::Mkbootstrap' => '7.58',
18264             'ExtUtils::Mksymlists'  => '7.58',
18265             'ExtUtils::testlib'     => '7.58',
18266             'GDBM_File'             => '1.19',
18267             'IO'                    => '1.45',
18268             'IO::Compress::Adapter::Bzip2'=> '2.100',
18269             'IO::Compress::Adapter::Deflate'=> '2.100',
18270             'IO::Compress::Adapter::Identity'=> '2.100',
18271             'IO::Compress::Base'    => '2.100',
18272             'IO::Compress::Base::Common'=> '2.100',
18273             'IO::Compress::Bzip2'   => '2.100',
18274             'IO::Compress::Deflate' => '2.100',
18275             'IO::Compress::Gzip'    => '2.100',
18276             'IO::Compress::Gzip::Constants'=> '2.100',
18277             'IO::Compress::RawDeflate'=> '2.100',
18278             'IO::Compress::Zip'     => '2.100',
18279             'IO::Compress::Zip::Constants'=> '2.100',
18280             'IO::Compress::Zlib::Constants'=> '2.100',
18281             'IO::Compress::Zlib::Extra'=> '2.100',
18282             'IO::Dir'               => '1.45',
18283             'IO::File'              => '1.45',
18284             'IO::Handle'            => '1.45',
18285             'IO::Pipe'              => '1.45',
18286             'IO::Poll'              => '1.45',
18287             'IO::Seekable'          => '1.45',
18288             'IO::Select'            => '1.45',
18289             'IO::Socket'            => '1.45',
18290             'IO::Socket::INET'      => '1.45',
18291             'IO::Socket::UNIX'      => '1.45',
18292             'IO::Uncompress::Adapter::Bunzip2'=> '2.100',
18293             'IO::Uncompress::Adapter::Identity'=> '2.100',
18294             'IO::Uncompress::Adapter::Inflate'=> '2.100',
18295             'IO::Uncompress::AnyInflate'=> '2.100',
18296             'IO::Uncompress::AnyUncompress'=> '2.100',
18297             'IO::Uncompress::Base'  => '2.100',
18298             'IO::Uncompress::Bunzip2'=> '2.100',
18299             'IO::Uncompress::Gunzip'=> '2.100',
18300             'IO::Uncompress::Inflate'=> '2.100',
18301             'IO::Uncompress::RawInflate'=> '2.100',
18302             'IO::Uncompress::Unzip' => '2.100',
18303             'Module::CoreList'      => '5.20210120',
18304             'Module::CoreList::Utils'=> '5.20210120',
18305             'Net::Cmd'              => '3.13',
18306             'Net::Config'           => '3.13',
18307             'Net::Domain'           => '3.13',
18308             'Net::FTP'              => '3.13',
18309             'Net::FTP::A'           => '3.13',
18310             'Net::FTP::E'           => '3.13',
18311             'Net::FTP::I'           => '3.13',
18312             'Net::FTP::L'           => '3.13',
18313             'Net::FTP::dataconn'    => '3.13',
18314             'Net::NNTP'             => '3.13',
18315             'Net::Netrc'            => '3.13',
18316             'Net::POP3'             => '3.13',
18317             'Net::SMTP'             => '3.13',
18318             'Net::Time'             => '3.13',
18319             'POSIX'                 => '1.97',
18320             'Socket'                => '2.031',
18321             'XS::APItest'           => '1.15',
18322             'feature'               => '1.62',
18323             'warnings'              => '1.50',
18324         },
18325         removed => {
18326         }
18327     },
18328     5.032001 => {
18329         delta_from => 5.032000,
18330         changed => {
18331             'B::Op_private'         => '5.032001',
18332             'Config'                => '5.032001',
18333             'Data::Dumper'          => '2.174_01',
18334             'DynaLoader'            => '1.47_01',
18335             'ExtUtils::Liblist::Kid'=> '7.44_01',
18336             'Module::CoreList'      => '5.20210123',
18337             'Module::CoreList::Utils'=> '5.20210123',
18338             'Opcode'                => '1.48',
18339             'Safe'                  => '2.41_01',
18340             'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
18341         },
18342         removed => {
18343         }
18344     },
18345     5.033007 => {
18346         delta_from => 5.033006,
18347         changed => {
18348             'B::Deparse'            => '1.56',
18349             'B::Op_private'         => '5.033007',
18350             'Config'                => '5.033007',
18351             'ExtUtils::CBuilder'    => '0.280236',
18352             'ExtUtils::CBuilder::Base'=> '0.280236',
18353             'ExtUtils::CBuilder::Platform::Unix'=> '0.280236',
18354             'ExtUtils::CBuilder::Platform::VMS'=> '0.280236',
18355             'ExtUtils::CBuilder::Platform::Windows'=> '0.280236',
18356             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280236',
18357             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280236',
18358             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280236',
18359             'ExtUtils::CBuilder::Platform::aix'=> '0.280236',
18360             'ExtUtils::CBuilder::Platform::android'=> '0.280236',
18361             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280236',
18362             'ExtUtils::CBuilder::Platform::darwin'=> '0.280236',
18363             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280236',
18364             'ExtUtils::CBuilder::Platform::os2'=> '0.280236',
18365             'ExtUtils::Command'     => '7.60',
18366             'ExtUtils::Command::MM' => '7.60',
18367             'ExtUtils::Liblist'     => '7.60',
18368             'ExtUtils::Liblist::Kid'=> '7.60',
18369             'ExtUtils::MM'          => '7.60',
18370             'ExtUtils::MM_AIX'      => '7.60',
18371             'ExtUtils::MM_Any'      => '7.60',
18372             'ExtUtils::MM_BeOS'     => '7.60',
18373             'ExtUtils::MM_Cygwin'   => '7.60',
18374             'ExtUtils::MM_DOS'      => '7.60',
18375             'ExtUtils::MM_Darwin'   => '7.60',
18376             'ExtUtils::MM_MacOS'    => '7.60',
18377             'ExtUtils::MM_NW5'      => '7.60',
18378             'ExtUtils::MM_OS2'      => '7.60',
18379             'ExtUtils::MM_OS390'    => '7.60',
18380             'ExtUtils::MM_QNX'      => '7.60',
18381             'ExtUtils::MM_UWIN'     => '7.60',
18382             'ExtUtils::MM_Unix'     => '7.60',
18383             'ExtUtils::MM_VMS'      => '7.60',
18384             'ExtUtils::MM_VOS'      => '7.60',
18385             'ExtUtils::MM_Win32'    => '7.60',
18386             'ExtUtils::MM_Win95'    => '7.60',
18387             'ExtUtils::MY'          => '7.60',
18388             'ExtUtils::MakeMaker'   => '7.60',
18389             'ExtUtils::MakeMaker::Config'=> '7.60',
18390             'ExtUtils::MakeMaker::Locale'=> '7.60',
18391             'ExtUtils::MakeMaker::version'=> '7.60',
18392             'ExtUtils::MakeMaker::version::regex'=> '7.60',
18393             'ExtUtils::Mkbootstrap' => '7.60',
18394             'ExtUtils::Mksymlists'  => '7.60',
18395             'ExtUtils::PL2Bat'      => '0.004',
18396             'ExtUtils::testlib'     => '7.60',
18397             'Fatal'                 => '2.34',
18398             'File::Find'            => '1.39',
18399             'Hash::Util'            => '0.25',
18400             'IO'                    => '1.46',
18401             'IO::Dir'               => '1.46',
18402             'IO::File'              => '1.46',
18403             'IO::Handle'            => '1.46',
18404             'IO::Pipe'              => '1.46',
18405             'IO::Poll'              => '1.46',
18406             'IO::Seekable'          => '1.46',
18407             'IO::Select'            => '1.46',
18408             'IO::Socket'            => '1.46',
18409             'IO::Socket::INET'      => '1.46',
18410             'IO::Socket::UNIX'      => '1.46',
18411             'JSON::PP'              => '4.06',
18412             'JSON::PP::Boolean'     => '4.06',
18413             'Module::CoreList'      => '5.20210220',
18414             'Module::CoreList::Utils'=> '5.20210220',
18415             'Opcode'                => '1.50',
18416             'PerlIO::encoding'      => '0.30',
18417             'Time::HiRes'           => '1.9767',
18418             'autodie'               => '2.34',
18419             'autodie::Scope::Guard' => '2.34',
18420             'autodie::Scope::GuardStack'=> '2.34',
18421             'autodie::Util'         => '2.34',
18422             'autodie::exception'    => '2.34',
18423             'autodie::exception::system'=> '2.34',
18424             'autodie::hints'        => '2.34',
18425             'autodie::skip'         => '2.34',
18426             'feature'               => '1.63',
18427             'mro'                   => '1.25_001',
18428             'warnings'              => '1.51',
18429         },
18430         removed => {
18431         }
18432     },
18433     5.033008 => {
18434         delta_from => 5.033007,
18435         changed => {
18436             'B::Op_private'         => '5.033008',
18437             'Compress::Raw::Bzip2'  => '2.101',
18438             'Compress::Raw::Zlib'   => '2.101',
18439             'Compress::Zlib'        => '2.102',
18440             'Config'                => '5.033008',
18441             'Data::Dumper'          => '2.177',
18442             'IO::Compress::Adapter::Bzip2'=> '2.102',
18443             'IO::Compress::Adapter::Deflate'=> '2.102',
18444             'IO::Compress::Adapter::Identity'=> '2.102',
18445             'IO::Compress::Base'    => '2.102',
18446             'IO::Compress::Base::Common'=> '2.102',
18447             'IO::Compress::Bzip2'   => '2.102',
18448             'IO::Compress::Deflate' => '2.102',
18449             'IO::Compress::Gzip'    => '2.102',
18450             'IO::Compress::Gzip::Constants'=> '2.102',
18451             'IO::Compress::RawDeflate'=> '2.102',
18452             'IO::Compress::Zip'     => '2.102',
18453             'IO::Compress::Zip::Constants'=> '2.102',
18454             'IO::Compress::Zlib::Constants'=> '2.102',
18455             'IO::Compress::Zlib::Extra'=> '2.102',
18456             'IO::Uncompress::Adapter::Bunzip2'=> '2.102',
18457             'IO::Uncompress::Adapter::Identity'=> '2.102',
18458             'IO::Uncompress::Adapter::Inflate'=> '2.102',
18459             'IO::Uncompress::AnyInflate'=> '2.102',
18460             'IO::Uncompress::AnyUncompress'=> '2.102',
18461             'IO::Uncompress::Base'  => '2.102',
18462             'IO::Uncompress::Bunzip2'=> '2.102',
18463             'IO::Uncompress::Gunzip'=> '2.102',
18464             'IO::Uncompress::Inflate'=> '2.102',
18465             'IO::Uncompress::RawInflate'=> '2.102',
18466             'IO::Uncompress::Unzip' => '2.102',
18467             'Module::CoreList'      => '5.20210320',
18468             'Module::CoreList::Utils'=> '5.20210320',
18469             'Pod::Html'             => '1.27',
18470             'Win32'                 => '0.57',
18471         },
18472         removed => {
18473         }
18474     },
18475     5.033009 => {
18476         delta_from => 5.033008,
18477         changed => {
18478             'B::Op_private'         => '5.033009',
18479             'Config'                => '5.033009',
18480             'Data::Dumper'          => '2.178',
18481             'ExtUtils::Command'     => '7.62',
18482             'ExtUtils::Command::MM' => '7.62',
18483             'ExtUtils::Liblist'     => '7.62',
18484             'ExtUtils::Liblist::Kid'=> '7.62',
18485             'ExtUtils::MM'          => '7.62',
18486             'ExtUtils::MM_AIX'      => '7.62',
18487             'ExtUtils::MM_Any'      => '7.62',
18488             'ExtUtils::MM_BeOS'     => '7.62',
18489             'ExtUtils::MM_Cygwin'   => '7.62',
18490             'ExtUtils::MM_DOS'      => '7.62',
18491             'ExtUtils::MM_Darwin'   => '7.62',
18492             'ExtUtils::MM_MacOS'    => '7.62',
18493             'ExtUtils::MM_NW5'      => '7.62',
18494             'ExtUtils::MM_OS2'      => '7.62',
18495             'ExtUtils::MM_OS390'    => '7.62',
18496             'ExtUtils::MM_QNX'      => '7.62',
18497             'ExtUtils::MM_UWIN'     => '7.62',
18498             'ExtUtils::MM_Unix'     => '7.62',
18499             'ExtUtils::MM_VMS'      => '7.62',
18500             'ExtUtils::MM_VOS'      => '7.62',
18501             'ExtUtils::MM_Win32'    => '7.62',
18502             'ExtUtils::MM_Win95'    => '7.62',
18503             'ExtUtils::MY'          => '7.62',
18504             'ExtUtils::MakeMaker'   => '7.62',
18505             'ExtUtils::MakeMaker::Config'=> '7.62',
18506             'ExtUtils::MakeMaker::Locale'=> '7.62',
18507             'ExtUtils::MakeMaker::version'=> '7.62',
18508             'ExtUtils::MakeMaker::version::regex'=> '7.62',
18509             'ExtUtils::Mkbootstrap' => '7.62',
18510             'ExtUtils::Mksymlists'  => '7.62',
18511             'ExtUtils::ParseXS'     => '3.43',
18512             'ExtUtils::ParseXS::Constants'=> '3.43',
18513             'ExtUtils::ParseXS::CountLines'=> '3.43',
18514             'ExtUtils::ParseXS::Eval'=> '3.43',
18515             'ExtUtils::ParseXS::Utilities'=> '3.43',
18516             'ExtUtils::Typemaps'    => '3.43',
18517             'ExtUtils::Typemaps::Cmd'=> '3.43',
18518             'ExtUtils::Typemaps::InputMap'=> '3.43',
18519             'ExtUtils::Typemaps::OutputMap'=> '3.43',
18520             'ExtUtils::Typemaps::Type'=> '3.43',
18521             'ExtUtils::testlib'     => '7.62',
18522             'Module::CoreList'      => '5.20210420',
18523             'Module::CoreList::Utils'=> '5.20210420',
18524             'NEXT'                  => '0.68',
18525             'XS::APItest'           => '1.16',
18526             'feature'               => '1.64',
18527             'perlfaq'               => '5.20210411',
18528         },
18529         removed => {
18530         }
18531     },
18532     5.034000 => {
18533         delta_from => 5.033009,
18534         changed => {
18535             'B::Op_private'         => '5.034000',
18536             'Config'                => '5.034',
18537             'Data::Dumper'          => '2.179',
18538             'Module::CoreList'      => '5.20210520',
18539             'Module::CoreList::Utils'=> '5.20210520',
18540             'experimental'          => '0.024',
18541         },
18542         removed => {
18543         }
18544     },
18545     5.035000 => {
18546         delta_from => 5.034,
18547         changed => {
18548             'B::Op_private'         => '5.035000',
18549             'Config'                => '5.035',
18550             'Module::CoreList'      => '5.20210521',
18551             'Module::CoreList::Utils'=> '5.20210521',
18552             'feature'               => '1.65',
18553         },
18554         removed => {
18555         }
18556     },
18557     5.035001 => {
18558         delta_from => 5.035000,
18559         changed => {
18560             'B::Deparse'            => '1.57',
18561             'B::Op_private'         => '5.035001',
18562             'Config'                => '5.035001',
18563             'Cwd'                   => '3.81',
18564             'Data::Dumper'          => '2.181',
18565             'File::Copy'            => '2.36',
18566             'File::Glob'            => '1.35',
18567             'File::Spec'            => '3.81',
18568             'File::Spec::AmigaOS'   => '3.81',
18569             'File::Spec::Cygwin'    => '3.81',
18570             'File::Spec::Epoc'      => '3.81',
18571             'File::Spec::Functions' => '3.81',
18572             'File::Spec::Mac'       => '3.81',
18573             'File::Spec::OS2'       => '3.81',
18574             'File::Spec::Unix'      => '3.81',
18575             'File::Spec::VMS'       => '3.81',
18576             'File::Spec::Win32'     => '3.81',
18577             'File::stat'            => '1.10',
18578             'IO'                    => '1.47',
18579             'IO::Dir'               => '1.47',
18580             'IO::File'              => '1.47',
18581             'IO::Handle'            => '1.47',
18582             'IO::Pipe'              => '1.47',
18583             'IO::Poll'              => '1.47',
18584             'IO::Seekable'          => '1.47',
18585             'IO::Select'            => '1.47',
18586             'IO::Socket'            => '1.47',
18587             'IO::Socket::INET'      => '1.47',
18588             'IO::Socket::UNIX'      => '1.47',
18589             'List::Util'            => '1.56',
18590             'List::Util::XS'        => '1.56',
18591             'Module::CoreList'      => '5.20210620',
18592             'Module::CoreList::Utils'=> '5.20210620',
18593             'Opcode'                => '1.51',
18594             'POSIX'                 => '1.98',
18595             'Scalar::Util'          => '1.56',
18596             'Socket'                => '2.032',
18597             'Sub::Util'             => '1.56',
18598             'Test2'                 => '1.302185',
18599             'Test2::API'            => '1.302185',
18600             'Test2::API::Breakage'  => '1.302185',
18601             'Test2::API::Context'   => '1.302185',
18602             'Test2::API::Instance'  => '1.302185',
18603             'Test2::API::InterceptResult'=> '1.302185',
18604             'Test2::API::InterceptResult::Event'=> '1.302185',
18605             'Test2::API::InterceptResult::Facet'=> '1.302185',
18606             'Test2::API::InterceptResult::Hub'=> '1.302185',
18607             'Test2::API::InterceptResult::Squasher'=> '1.302185',
18608             'Test2::API::Stack'     => '1.302185',
18609             'Test2::Event'          => '1.302185',
18610             'Test2::Event::Bail'    => '1.302185',
18611             'Test2::Event::Diag'    => '1.302185',
18612             'Test2::Event::Encoding'=> '1.302185',
18613             'Test2::Event::Exception'=> '1.302185',
18614             'Test2::Event::Fail'    => '1.302185',
18615             'Test2::Event::Generic' => '1.302185',
18616             'Test2::Event::Note'    => '1.302185',
18617             'Test2::Event::Ok'      => '1.302185',
18618             'Test2::Event::Pass'    => '1.302185',
18619             'Test2::Event::Plan'    => '1.302185',
18620             'Test2::Event::Skip'    => '1.302185',
18621             'Test2::Event::Subtest' => '1.302185',
18622             'Test2::Event::TAP::Version'=> '1.302185',
18623             'Test2::Event::V2'      => '1.302185',
18624             'Test2::Event::Waiting' => '1.302185',
18625             'Test2::EventFacet'     => '1.302185',
18626             'Test2::EventFacet::About'=> '1.302185',
18627             'Test2::EventFacet::Amnesty'=> '1.302185',
18628             'Test2::EventFacet::Assert'=> '1.302185',
18629             'Test2::EventFacet::Control'=> '1.302185',
18630             'Test2::EventFacet::Error'=> '1.302185',
18631             'Test2::EventFacet::Hub'=> '1.302185',
18632             'Test2::EventFacet::Info'=> '1.302185',
18633             'Test2::EventFacet::Info::Table'=> '1.302185',
18634             'Test2::EventFacet::Meta'=> '1.302185',
18635             'Test2::EventFacet::Parent'=> '1.302185',
18636             'Test2::EventFacet::Plan'=> '1.302185',
18637             'Test2::EventFacet::Render'=> '1.302185',
18638             'Test2::EventFacet::Trace'=> '1.302185',
18639             'Test2::Formatter'      => '1.302185',
18640             'Test2::Formatter::TAP' => '1.302185',
18641             'Test2::Hub'            => '1.302185',
18642             'Test2::Hub::Interceptor'=> '1.302185',
18643             'Test2::Hub::Interceptor::Terminator'=> '1.302185',
18644             'Test2::Hub::Subtest'   => '1.302185',
18645             'Test2::IPC'            => '1.302185',
18646             'Test2::IPC::Driver'    => '1.302185',
18647             'Test2::IPC::Driver::Files'=> '1.302185',
18648             'Test2::Tools::Tiny'    => '1.302185',
18649             'Test2::Util'           => '1.302185',
18650             'Test2::Util::ExternalMeta'=> '1.302185',
18651             'Test2::Util::Facets2Legacy'=> '1.302185',
18652             'Test2::Util::HashBase' => '1.302185',
18653             'Test2::Util::Trace'    => '1.302185',
18654             'Test::Builder'         => '1.302185',
18655             'Test::Builder::Formatter'=> '1.302185',
18656             'Test::Builder::Module' => '1.302185',
18657             'Test::Builder::Tester' => '1.302185',
18658             'Test::Builder::Tester::Color'=> '1.302185',
18659             'Test::Builder::TodoDiag'=> '1.302185',
18660             'Test::More'            => '1.302185',
18661             'Test::Simple'          => '1.302185',
18662             'Test::Tester'          => '1.302185',
18663             'Test::Tester::Capture' => '1.302185',
18664             'Test::Tester::CaptureRunner'=> '1.302185',
18665             'Test::Tester::Delegate'=> '1.302185',
18666             'Test::use::ok'         => '1.302185',
18667             'Unicode::Collate'      => '1.30',
18668             'Unicode::Collate::CJK::Big5'=> '1.30',
18669             'Unicode::Collate::CJK::GB2312'=> '1.30',
18670             'Unicode::Collate::CJK::JISX0208'=> '1.30',
18671             'Unicode::Collate::CJK::Korean'=> '1.30',
18672             'Unicode::Collate::CJK::Pinyin'=> '1.30',
18673             'Unicode::Collate::CJK::Stroke'=> '1.30',
18674             'Unicode::Collate::CJK::Zhuyin'=> '1.30',
18675             'Unicode::Collate::Locale'=> '1.30',
18676             'Unicode::UCD'          => '0.76',
18677             'XS::APItest'           => '1.17',
18678             'feature'               => '1.66',
18679             'ok'                    => '1.302185',
18680             'open'                  => '1.13',
18681             'perlfaq'               => '5.20210520',
18682             'version'               => '0.9929',
18683             'version::regex'        => '0.9929',
18684         },
18685         removed => {
18686         }
18687     },
18688     5.035002 => {
18689         delta_from => 5.035001,
18690         changed => {
18691             'Amiga::ARexx'          => '0.06',
18692             'Amiga::Exec'           => '0.03',
18693             'B::Concise'            => '1.005',
18694             'B::Op_private'         => '5.035002',
18695             'Config'                => '5.035002',
18696             'Cwd'                   => '3.82',
18697             'DB_File'               => '1.856',
18698             'Data::Dumper'          => '2.183',
18699             'Devel::PPPort'         => '3.63',
18700             'Devel::Peek'           => '1.31',
18701             'DynaLoader'            => '1.51',
18702             'Encode'                => '3.10',
18703             'Encode::JP'            => '2.05',
18704             'Errno'                 => '1.34',
18705             'ExtUtils::Miniperl'    => '1.11',
18706             'Fcntl'                 => '1.15',
18707             'File::Find'            => '1.39_01',
18708             'File::Glob'            => '1.36',
18709             'File::stat'            => '1.11',
18710             'GDBM_File'             => '1.20',
18711             'Hash::Util'            => '0.26',
18712             'Hash::Util::FieldHash' => '1.22',
18713             'I18N::Langinfo'        => '0.20',
18714             'IPC::Open2'            => '1.06',
18715             'IPC::Open3'            => '1.22',
18716             'Math::BigFloat'        => '1.999823',
18717             'Math::BigFloat::Trace' => '0.53',
18718             'Math::BigInt'          => '1.999823',
18719             'Math::BigInt::Calc'    => '1.999823',
18720             'Math::BigInt::FastCalc'=> '0.5010',
18721             'Math::BigInt::Lib'     => '1.999823',
18722             'Math::BigInt::Trace'   => '0.53',
18723             'Math::BigRat'          => '0.2617',
18724             'Module::CoreList'      => '5.20210723',
18725             'Module::CoreList::Utils'=> '5.20210723',
18726             'Opcode'                => '1.52',
18727             'PerlIO'                => '1.12',
18728             'Pod::Functions'        => '1.14',
18729             'Pod::Functions::Functions'=> '1.14',
18730             'Pod::Html'             => '1.31',
18731             'Pod::Html::Util'       => '1.31',
18732             'Pod::Simple'           => '3.43',
18733             'Pod::Simple::BlackBox' => '3.43',
18734             'Pod::Simple::Checker'  => '3.43',
18735             'Pod::Simple::Debug'    => '3.43',
18736             'Pod::Simple::DumpAsText'=> '3.43',
18737             'Pod::Simple::DumpAsXML'=> '3.43',
18738             'Pod::Simple::HTML'     => '3.43',
18739             'Pod::Simple::HTMLBatch'=> '3.43',
18740             'Pod::Simple::LinkSection'=> '3.43',
18741             'Pod::Simple::Methody'  => '3.43',
18742             'Pod::Simple::Progress' => '3.43',
18743             'Pod::Simple::PullParser'=> '3.43',
18744             'Pod::Simple::PullParserEndToken'=> '3.43',
18745             'Pod::Simple::PullParserStartToken'=> '3.43',
18746             'Pod::Simple::PullParserTextToken'=> '3.43',
18747             'Pod::Simple::PullParserToken'=> '3.43',
18748             'Pod::Simple::RTF'      => '3.43',
18749             'Pod::Simple::Search'   => '3.43',
18750             'Pod::Simple::SimpleTree'=> '3.43',
18751             'Pod::Simple::Text'     => '3.43',
18752             'Pod::Simple::TextContent'=> '3.43',
18753             'Pod::Simple::TiedOutFH'=> '3.43',
18754             'Pod::Simple::Transcode'=> '3.43',
18755             'Pod::Simple::TranscodeDumb'=> '3.43',
18756             'Pod::Simple::TranscodeSmart'=> '3.43',
18757             'Pod::Simple::XHTML'    => '3.43',
18758             'Pod::Simple::XMLOutStream'=> '3.43',
18759             'Sys::Hostname'         => '1.24',
18760             'Text::Tabs'            => '2021.0717',
18761             'Text::Wrap'            => '2021.0717',
18762             'Time::HiRes'           => '1.9768',
18763             'Unicode::UCD'          => '0.77',
18764             'VMS::Filespec'         => '1.13',
18765             'VMS::Stdio'            => '2.46',
18766             'XSLoader'              => '0.31',
18767             'bigint'                => '0.53',
18768             'bignum'                => '0.53',
18769             'bigrat'                => '0.53',
18770             'if'                    => '0.0610',
18771             'threads'               => '2.27',
18772             'warnings'              => '1.52',
18773         },
18774         removed => {
18775         }
18776     },
18777     5.035003 => {
18778         delta_from => 5.035002,
18779         changed => {
18780             'Archive::Tar'          => '2.40',
18781             'Archive::Tar::Constant'=> '2.40',
18782             'Archive::Tar::File'    => '2.40',
18783             'B::Op_private'         => '5.035003',
18784             'Config'                => '5.035003',
18785             'Encode'                => '3.12',
18786             'Encode::GSM0338'       => '2.10',
18787             'Encode::Unicode'       => '2.19',
18788             'Module::CoreList'      => '5.20210820',
18789             'Module::CoreList::Utils'=> '5.20210820',
18790             'Net::hostent'          => '1.03',
18791             'Opcode'                => '1.53',
18792             'POSIX'                 => '1.99',
18793             'Pod::Html'             => '1.32',
18794             'Pod::Html::Util'       => '1.32',
18795             'Storable'              => '3.24',
18796             'Text::Tabs'            => '2021.0804',
18797             'Text::Wrap'            => '2021.0804',
18798             'Time::HiRes'           => '1.9769',
18799             'Unicode::Normalize'    => '1.30',
18800             'XS::APItest'           => '1.18',
18801             'diagnostics'           => '1.38',
18802             'feature'               => '1.67',
18803             'sort'                  => '2.05',
18804             'threads::shared'       => '1.63',
18805             'warnings'              => '1.53',
18806         },
18807         removed => {
18808         }
18809     },
18810     5.035004 => {
18811         delta_from => 5.035003,
18812         changed => {
18813             'B'                     => '1.83',
18814             'B::Deparse'            => '1.58',
18815             'B::Op_private'         => '5.035004',
18816             'Config'                => '5.035004',
18817             'Devel::Peek'           => '1.32',
18818             'Exporter'              => '5.77',
18819             'Exporter::Heavy'       => '5.77',
18820             'ExtUtils::ParseXS'     => '3.44',
18821             'ExtUtils::ParseXS::Constants'=> '3.44',
18822             'ExtUtils::ParseXS::CountLines'=> '3.44',
18823             'ExtUtils::ParseXS::Eval'=> '3.44',
18824             'ExtUtils::ParseXS::Utilities'=> '3.44',
18825             'ExtUtils::Typemaps'    => '3.44',
18826             'ExtUtils::Typemaps::Cmd'=> '3.44',
18827             'ExtUtils::Typemaps::InputMap'=> '3.44',
18828             'ExtUtils::Typemaps::OutputMap'=> '3.44',
18829             'ExtUtils::Typemaps::Type'=> '3.44',
18830             'Hash::Util::FieldHash' => '1.23',
18831             'IO'                    => '1.48',
18832             'IO::Dir'               => '1.48',
18833             'IO::File'              => '1.48',
18834             'IO::Handle'            => '1.48',
18835             'IO::Pipe'              => '1.48',
18836             'IO::Poll'              => '1.48',
18837             'IO::Seekable'          => '1.48',
18838             'IO::Select'            => '1.48',
18839             'IO::Socket'            => '1.48',
18840             'IO::Socket::INET'      => '1.48',
18841             'IO::Socket::UNIX'      => '1.48',
18842             'List::Util'            => '1.56_001',
18843             'List::Util::XS'        => '1.56_001',
18844             'Module::CoreList'      => '5.20210920',
18845             'Module::CoreList::Utils'=> '5.20210920',
18846             'Opcode'                => '1.54',
18847             'Pod::Html'             => '1.33',
18848             'Pod::Html::Util'       => '1.33',
18849             'Scalar::Util'          => '1.56_001',
18850             'Storable'              => '3.25',
18851             'Sub::Util'             => '1.56_001',
18852             'Text::Tabs'            => '2021.0814',
18853             'Text::Wrap'            => '2021.0814',
18854             'UNIVERSAL'             => '1.14',
18855             'Unicode'               => '14.0.0',
18856             'Unicode::Collate'      => '1.31',
18857             'Unicode::Collate::CJK::Big5'=> '1.31',
18858             'Unicode::Collate::CJK::GB2312'=> '1.31',
18859             'Unicode::Collate::CJK::JISX0208'=> '1.31',
18860             'Unicode::Collate::CJK::Korean'=> '1.31',
18861             'Unicode::Collate::CJK::Pinyin'=> '1.31',
18862             'Unicode::Collate::CJK::Stroke'=> '1.31',
18863             'Unicode::Collate::CJK::Zhuyin'=> '1.31',
18864             'Unicode::Collate::Locale'=> '1.31',
18865             'Unicode::UCD'          => '0.78',
18866             'XS::APItest'           => '1.19',
18867             'XS::Typemap'           => '0.19',
18868             'attributes'            => '0.34',
18869             'feature'               => '1.68',
18870             'mro'                   => '1.26',
18871             'threads::shared'       => '1.64',
18872             'warnings'              => '1.54',
18873         },
18874         removed => {
18875         }
18876     },
18877     5.035005 => {
18878         delta_from => 5.035004,
18879         changed => {
18880             'B::Concise'            => '1.006',
18881             'B::Deparse'            => '1.59',
18882             'B::Op_private'         => '5.035005',
18883             'Config'                => '5.035005',
18884             'Digest'                => '1.20',
18885             'Digest::base'          => '1.20',
18886             'Digest::file'          => '1.20',
18887             'DynaLoader'            => '1.52',
18888             'Encode'                => '3.16',
18889             'Errno'                 => '1.35',
18890             'File::Copy'            => '2.37',
18891             'File::Spec::Unix'      => '3.82',
18892             'FindBin'               => '1.53',
18893             'GDBM_File'             => '1.21',
18894             'HTTP::Tiny'            => '0.078',
18895             'I18N::Langinfo'        => '0.21',
18896             'IO::Dir'               => '1.49',
18897             'IO::Pipe'              => '1.49',
18898             'IO::Poll'              => '1.49',
18899             'IO::Select'            => '1.49',
18900             'IO::Socket'            => '1.49',
18901             'IO::Socket::INET'      => '1.49',
18902             'IO::Socket::UNIX'      => '1.49',
18903             'List::Util'            => '1.60',
18904             'List::Util::XS'        => '1.60',
18905             'Math::BigRat::Trace'   => '0.63',
18906             'Module::CoreList'      => '5.20211020',
18907             'Module::CoreList::Utils'=> '5.20211020',
18908             'POSIX'                 => '2.01',
18909             'Scalar::Util'          => '1.60',
18910             'Sub::Util'             => '1.60',
18911             'Test2'                 => '1.302188',
18912             'Test2::API'            => '1.302188',
18913             'Test2::API::Breakage'  => '1.302188',
18914             'Test2::API::Context'   => '1.302188',
18915             'Test2::API::Instance'  => '1.302188',
18916             'Test2::API::InterceptResult'=> '1.302188',
18917             'Test2::API::InterceptResult::Event'=> '1.302188',
18918             'Test2::API::InterceptResult::Facet'=> '1.302188',
18919             'Test2::API::InterceptResult::Hub'=> '1.302188',
18920             'Test2::API::InterceptResult::Squasher'=> '1.302188',
18921             'Test2::API::Stack'     => '1.302188',
18922             'Test2::Event'          => '1.302188',
18923             'Test2::Event::Bail'    => '1.302188',
18924             'Test2::Event::Diag'    => '1.302188',
18925             'Test2::Event::Encoding'=> '1.302188',
18926             'Test2::Event::Exception'=> '1.302188',
18927             'Test2::Event::Fail'    => '1.302188',
18928             'Test2::Event::Generic' => '1.302188',
18929             'Test2::Event::Note'    => '1.302188',
18930             'Test2::Event::Ok'      => '1.302188',
18931             'Test2::Event::Pass'    => '1.302188',
18932             'Test2::Event::Plan'    => '1.302188',
18933             'Test2::Event::Skip'    => '1.302188',
18934             'Test2::Event::Subtest' => '1.302188',
18935             'Test2::Event::TAP::Version'=> '1.302188',
18936             'Test2::Event::V2'      => '1.302188',
18937             'Test2::Event::Waiting' => '1.302188',
18938             'Test2::EventFacet'     => '1.302188',
18939             'Test2::EventFacet::About'=> '1.302188',
18940             'Test2::EventFacet::Amnesty'=> '1.302188',
18941             'Test2::EventFacet::Assert'=> '1.302188',
18942             'Test2::EventFacet::Control'=> '1.302188',
18943             'Test2::EventFacet::Error'=> '1.302188',
18944             'Test2::EventFacet::Hub'=> '1.302188',
18945             'Test2::EventFacet::Info'=> '1.302188',
18946             'Test2::EventFacet::Info::Table'=> '1.302188',
18947             'Test2::EventFacet::Meta'=> '1.302188',
18948             'Test2::EventFacet::Parent'=> '1.302188',
18949             'Test2::EventFacet::Plan'=> '1.302188',
18950             'Test2::EventFacet::Render'=> '1.302188',
18951             'Test2::EventFacet::Trace'=> '1.302188',
18952             'Test2::Formatter'      => '1.302188',
18953             'Test2::Formatter::TAP' => '1.302188',
18954             'Test2::Hub'            => '1.302188',
18955             'Test2::Hub::Interceptor'=> '1.302188',
18956             'Test2::Hub::Interceptor::Terminator'=> '1.302188',
18957             'Test2::Hub::Subtest'   => '1.302188',
18958             'Test2::IPC'            => '1.302188',
18959             'Test2::IPC::Driver'    => '1.302188',
18960             'Test2::IPC::Driver::Files'=> '1.302188',
18961             'Test2::Tools::Tiny'    => '1.302188',
18962             'Test2::Util'           => '1.302188',
18963             'Test2::Util::ExternalMeta'=> '1.302188',
18964             'Test2::Util::Facets2Legacy'=> '1.302188',
18965             'Test2::Util::HashBase' => '1.302188',
18966             'Test2::Util::Trace'    => '1.302188',
18967             'Test::Builder'         => '1.302188',
18968             'Test::Builder::Formatter'=> '1.302188',
18969             'Test::Builder::Module' => '1.302188',
18970             'Test::Builder::Tester' => '1.302188',
18971             'Test::Builder::Tester::Color'=> '1.302188',
18972             'Test::Builder::TodoDiag'=> '1.302188',
18973             'Test::More'            => '1.302188',
18974             'Test::Simple'          => '1.302188',
18975             'Test::Tester'          => '1.302188',
18976             'Test::Tester::Capture' => '1.302188',
18977             'Test::Tester::CaptureRunner'=> '1.302188',
18978             'Test::Tester::Delegate'=> '1.302188',
18979             'Test::use::ok'         => '1.302188',
18980             'Tie::Handle'           => '4.3',
18981             'Tie::Hash'             => '1.06',
18982             'Tie::Scalar'           => '1.06',
18983             'XS::APItest'           => '1.20',
18984             'experimental'          => '0.025',
18985             'ok'                    => '1.302188',
18986             'warnings'              => '1.55',
18987         },
18988         removed => {
18989         }
18990     },
18991     5.035006 => {
18992         delta_from => 5.035005,
18993         changed => {
18994             'B::Op_private'         => '5.035006',
18995             'Config'                => '5.035006',
18996             'File::Glob'            => '1.37',
18997             'File::stat'            => '1.12',
18998             'GDBM_File'             => '1.22',
18999             'HTTP::Tiny'            => '0.080',
19000             'Math::BigFloat'        => '1.999827',
19001             'Math::BigFloat::Trace' => '0.63',
19002             'Math::BigInt'          => '1.999827',
19003             'Math::BigInt::Calc'    => '1.999827',
19004             'Math::BigInt::FastCalc'=> '0.5012',
19005             'Math::BigInt::Lib'     => '1.999827',
19006             'Math::BigInt::Trace'   => '0.63',
19007             'Math::BigRat'          => '0.2620',
19008             'Module::CoreList'      => '5.20211120',
19009             'Module::CoreList::Utils'=> '5.20211120',
19010             'POSIX'                 => '2.02',
19011             'bigint'                => '0.63',
19012             'bignum'                => '0.63',
19013             'bigrat'                => '0.63',
19014             'diagnostics'           => '1.39',
19015             'feature'               => '1.69',
19016             'warnings'              => '1.56',
19017         },
19018         removed => {
19019         }
19020     },
19021     5.035007 => {
19022         delta_from => 5.035006,
19023         changed => {
19024             'B::Deparse'            => '1.60',
19025             'B::Op_private'         => '5.035007',
19026             'CPAN'                  => '2.29',
19027             'CPAN::Distribution'    => '2.29',
19028             'CPAN::FTP'             => '5.5014',
19029             'CPAN::FirstTime'       => '5.5316',
19030             'CPAN::HandleConfig'    => '5.5012',
19031             'CPAN::Index'           => '2.29',
19032             'Config'                => '5.035007',
19033             'Cwd'                   => '3.83',
19034             'ExtUtils::Command'     => '7.64',
19035             'ExtUtils::Command::MM' => '7.64',
19036             'ExtUtils::Liblist'     => '7.64',
19037             'ExtUtils::Liblist::Kid'=> '7.64',
19038             'ExtUtils::MM'          => '7.64',
19039             'ExtUtils::MM_AIX'      => '7.64',
19040             'ExtUtils::MM_Any'      => '7.64',
19041             'ExtUtils::MM_BeOS'     => '7.64',
19042             'ExtUtils::MM_Cygwin'   => '7.64',
19043             'ExtUtils::MM_DOS'      => '7.64',
19044             'ExtUtils::MM_Darwin'   => '7.64',
19045             'ExtUtils::MM_MacOS'    => '7.64',
19046             'ExtUtils::MM_NW5'      => '7.64',
19047             'ExtUtils::MM_OS2'      => '7.64',
19048             'ExtUtils::MM_OS390'    => '7.64',
19049             'ExtUtils::MM_QNX'      => '7.64',
19050             'ExtUtils::MM_UWIN'     => '7.64',
19051             'ExtUtils::MM_Unix'     => '7.64',
19052             'ExtUtils::MM_VMS'      => '7.64',
19053             'ExtUtils::MM_VOS'      => '7.64',
19054             'ExtUtils::MM_Win32'    => '7.64',
19055             'ExtUtils::MM_Win95'    => '7.64',
19056             'ExtUtils::MY'          => '7.64',
19057             'ExtUtils::MakeMaker'   => '7.64',
19058             'ExtUtils::MakeMaker::Config'=> '7.64',
19059             'ExtUtils::MakeMaker::Locale'=> '7.64',
19060             'ExtUtils::MakeMaker::version'=> '7.64',
19061             'ExtUtils::MakeMaker::version::regex'=> '7.64',
19062             'ExtUtils::Mkbootstrap' => '7.64',
19063             'ExtUtils::Mksymlists'  => '7.64',
19064             'ExtUtils::testlib'     => '7.64',
19065             'File::Compare'         => '1.1007',
19066             'File::Copy'            => '2.38',
19067             'File::Spec'            => '3.83',
19068             'File::Spec::AmigaOS'   => '3.83',
19069             'File::Spec::Cygwin'    => '3.83',
19070             'File::Spec::Epoc'      => '3.83',
19071             'File::Spec::Functions' => '3.83',
19072             'File::Spec::Mac'       => '3.83',
19073             'File::Spec::OS2'       => '3.83',
19074             'File::Spec::Unix'      => '3.83',
19075             'File::Spec::VMS'       => '3.83',
19076             'File::Spec::Win32'     => '3.83',
19077             'Hash::Util'            => '0.27',
19078             'Hash::Util::FieldHash' => '1.24',
19079             'IO'                    => '1.49',
19080             'JSON::PP'              => '4.07',
19081             'JSON::PP::Boolean'     => '4.07',
19082             'Math::BigFloat'        => '1.999828',
19083             'Math::BigInt'          => '1.999828',
19084             'Math::BigInt::Calc'    => '1.999828',
19085             'Math::BigInt::Lib'     => '1.999828',
19086             'Module::CoreList'      => '5.20211220',
19087             'Module::CoreList::Utils'=> '5.20211220',
19088             'Opcode'                => '1.55',
19089             'builtin'               => '0.001',
19090             'overload'              => '1.34',
19091         },
19092         removed => {
19093         }
19094     },
19095     5.035008 => {
19096         delta_from => 5.035007,
19097         changed => {
19098             'B::Deparse'            => '1.61',
19099             'B::Op_private'         => '5.035008',
19100             'Config'                => '5.035008',
19101             'Data::Dumper'          => '2.184',
19102             'Errno'                 => '1.36',
19103             'File::Fetch'           => '1.04',
19104             'File::Find'            => '1.40',
19105             'Hash::Util::FieldHash' => '1.25',
19106             'Locale::Maketext'      => '1.30',
19107             'Math::BigFloat'        => '1.999829',
19108             'Math::BigFloat::Trace' => '0.64',
19109             'Math::BigInt'          => '1.999829',
19110             'Math::BigInt::Calc'    => '1.999829',
19111             'Math::BigInt::Lib'     => '1.999829',
19112             'Math::BigInt::Trace'   => '0.64',
19113             'Math::BigRat::Trace'   => '0.64',
19114             'Module::CoreList'      => '5.20220120',
19115             'Module::CoreList::Utils'=> '5.20220120',
19116             'NEXT'                  => '0.69',
19117             'POSIX'                 => '2.03',
19118             'Win32'                 => '0.58',
19119             '_charnames'            => '1.49',
19120             'bigint'                => '0.64',
19121             'bignum'                => '0.64',
19122             'bigrat'                => '0.64',
19123             'charnames'             => '1.49',
19124         },
19125         removed => {
19126         }
19127     },
19128     5.035009 => {
19129         delta_from => 5.035008,
19130         changed => {
19131             'App::Cpan'             => '1.678',
19132             'B::Deparse'            => '1.62',
19133             'B::Op_private'         => '5.035009',
19134             'CPAN'                  => '2.33',
19135             'CPAN::Distribution'    => '2.33',
19136             'CPAN::FTP'             => '5.5016',
19137             'CPAN::FirstTime'       => '5.5317',
19138             'Config'                => '5.035009',
19139             'Devel::PPPort'         => '3.64',
19140             'File::Copy'            => '2.39',
19141             'Hash::Util'            => '0.28',
19142             'Hash::Util::FieldHash' => '1.26',
19143             'List::Util'            => '1.61',
19144             'List::Util::XS'        => '1.61',
19145             'Module::CoreList'      => '5.20220220',
19146             'Module::CoreList::Utils'=> '5.20220220',
19147             'Opcode'                => '1.56',
19148             'Scalar::Util'          => '1.61',
19149             'Sub::Util'             => '1.61',
19150             'Tie::SubstrHash'       => '1.01',
19151             'XS::APItest'           => '1.21',
19152             '_charnames'            => '1.50',
19153             'builtin'               => '0.002',
19154             'charnames'             => '1.50',
19155             'experimental'          => '0.027',
19156             'feature'               => '1.70',
19157             'overload'              => '1.35',
19158             're'                    => '0.42',
19159             'sigtrap'               => '1.10',
19160             'warnings'              => '1.57',
19161         },
19162         removed => {
19163         }
19164     },
19165     5.034001 => {
19166         delta_from => 5.034000,
19167         changed => {
19168             'B::Deparse'            => '1.57',
19169             'B::Op_private'         => '5.034001',
19170             'Config'                => '5.034001',
19171             'Encode'                => '3.08_01',
19172             'GDBM_File'             => '1.19_01',
19173             'Module::CoreList'      => '5.20220313',
19174             'Module::CoreList::Utils'=> '5.20220313',
19175         },
19176         removed => {
19177         }
19178     },
19179     5.035010 => {
19180         delta_from => 5.035009,
19181         changed => {
19182             'Attribute::Handlers'   => '1.02',
19183             'B::Deparse'            => '1.63',
19184             'B::Op_private'         => '5.035010',
19185             'Config'                => '5.03501',
19186             'Cwd'                   => '3.84',
19187             'DB_File'               => '1.857',
19188             'Devel::PPPort'         => '3.68',
19189             'ExtUtils::ParseXS'     => '3.45',
19190             'ExtUtils::ParseXS::Constants'=> '3.45',
19191             'ExtUtils::ParseXS::CountLines'=> '3.45',
19192             'ExtUtils::ParseXS::Eval'=> '3.45',
19193             'ExtUtils::ParseXS::Utilities'=> '3.45',
19194             'ExtUtils::Typemaps'    => '3.45',
19195             'ExtUtils::Typemaps::Cmd'=> '3.45',
19196             'ExtUtils::Typemaps::InputMap'=> '3.45',
19197             'ExtUtils::Typemaps::OutputMap'=> '3.45',
19198             'ExtUtils::Typemaps::Type'=> '3.45',
19199             'File::Spec'            => '3.84',
19200             'File::Spec::AmigaOS'   => '3.84',
19201             'File::Spec::Cygwin'    => '3.84',
19202             'File::Spec::Epoc'      => '3.84',
19203             'File::Spec::Functions' => '3.84',
19204             'File::Spec::Mac'       => '3.84',
19205             'File::Spec::OS2'       => '3.84',
19206             'File::Spec::Unix'      => '3.84',
19207             'File::Spec::VMS'       => '3.84',
19208             'File::Spec::Win32'     => '3.84',
19209             'GDBM_File'             => '1.23',
19210             'List::Util'            => '1.62',
19211             'List::Util::XS'        => '1.62',
19212             'Module::CoreList'      => '5.20220320',
19213             'Module::CoreList::Utils'=> '5.20220320',
19214             'Opcode'                => '1.57',
19215             'Scalar::Util'          => '1.62',
19216             'Sub::Util'             => '1.62',
19217             'Test2'                 => '1.302190',
19218             'Test2::API'            => '1.302190',
19219             'Test2::API::Breakage'  => '1.302190',
19220             'Test2::API::Context'   => '1.302190',
19221             'Test2::API::Instance'  => '1.302190',
19222             'Test2::API::InterceptResult'=> '1.302190',
19223             'Test2::API::InterceptResult::Event'=> '1.302190',
19224             'Test2::API::InterceptResult::Facet'=> '1.302190',
19225             'Test2::API::InterceptResult::Hub'=> '1.302190',
19226             'Test2::API::InterceptResult::Squasher'=> '1.302190',
19227             'Test2::API::Stack'     => '1.302190',
19228             'Test2::Event'          => '1.302190',
19229             'Test2::Event::Bail'    => '1.302190',
19230             'Test2::Event::Diag'    => '1.302190',
19231             'Test2::Event::Encoding'=> '1.302190',
19232             'Test2::Event::Exception'=> '1.302190',
19233             'Test2::Event::Fail'    => '1.302190',
19234             'Test2::Event::Generic' => '1.302190',
19235             'Test2::Event::Note'    => '1.302190',
19236             'Test2::Event::Ok'      => '1.302190',
19237             'Test2::Event::Pass'    => '1.302190',
19238             'Test2::Event::Plan'    => '1.302190',
19239             'Test2::Event::Skip'    => '1.302190',
19240             'Test2::Event::Subtest' => '1.302190',
19241             'Test2::Event::TAP::Version'=> '1.302190',
19242             'Test2::Event::V2'      => '1.302190',
19243             'Test2::Event::Waiting' => '1.302190',
19244             'Test2::EventFacet'     => '1.302190',
19245             'Test2::EventFacet::About'=> '1.302190',
19246             'Test2::EventFacet::Amnesty'=> '1.302190',
19247             'Test2::EventFacet::Assert'=> '1.302190',
19248             'Test2::EventFacet::Control'=> '1.302190',
19249             'Test2::EventFacet::Error'=> '1.302190',
19250             'Test2::EventFacet::Hub'=> '1.302190',
19251             'Test2::EventFacet::Info'=> '1.302190',
19252             'Test2::EventFacet::Info::Table'=> '1.302190',
19253             'Test2::EventFacet::Meta'=> '1.302190',
19254             'Test2::EventFacet::Parent'=> '1.302190',
19255             'Test2::EventFacet::Plan'=> '1.302190',
19256             'Test2::EventFacet::Render'=> '1.302190',
19257             'Test2::EventFacet::Trace'=> '1.302190',
19258             'Test2::Formatter'      => '1.302190',
19259             'Test2::Formatter::TAP' => '1.302190',
19260             'Test2::Hub'            => '1.302190',
19261             'Test2::Hub::Interceptor'=> '1.302190',
19262             'Test2::Hub::Interceptor::Terminator'=> '1.302190',
19263             'Test2::Hub::Subtest'   => '1.302190',
19264             'Test2::IPC'            => '1.302190',
19265             'Test2::IPC::Driver'    => '1.302190',
19266             'Test2::IPC::Driver::Files'=> '1.302190',
19267             'Test2::Tools::Tiny'    => '1.302190',
19268             'Test2::Util'           => '1.302190',
19269             'Test2::Util::ExternalMeta'=> '1.302190',
19270             'Test2::Util::Facets2Legacy'=> '1.302190',
19271             'Test2::Util::HashBase' => '1.302190',
19272             'Test2::Util::Trace'    => '1.302190',
19273             'Test::Builder'         => '1.302190',
19274             'Test::Builder::Formatter'=> '1.302190',
19275             'Test::Builder::Module' => '1.302190',
19276             'Test::Builder::Tester' => '1.302190',
19277             'Test::Builder::Tester::Color'=> '1.302190',
19278             'Test::Builder::TodoDiag'=> '1.302190',
19279             'Test::More'            => '1.302190',
19280             'Test::Simple'          => '1.302190',
19281             'Test::Tester'          => '1.302190',
19282             'Test::Tester::Capture' => '1.302190',
19283             'Test::Tester::CaptureRunner'=> '1.302190',
19284             'Test::Tester::Delegate'=> '1.302190',
19285             'Test::use::ok'         => '1.302190',
19286             'XS::APItest'           => '1.22',
19287             'builtin'               => '0.004',
19288             'experimental'          => '0.028',
19289             'feature'               => '1.71',
19290             'ok'                    => '1.302190',
19291             'warnings'              => '1.58',
19292         },
19293         removed => {
19294         }
19295     },
19296     5.035011 => {
19297         delta_from => 5.03501,
19298         changed => {
19299             'App::Prove'            => '3.44',
19300             'App::Prove::State'     => '3.44',
19301             'App::Prove::State::Result'=> '3.44',
19302             'App::Prove::State::Result::Test'=> '3.44',
19303             'B::Deparse'            => '1.64',
19304             'B::Op_private'         => '5.035011',
19305             'Compress::Raw::Bzip2'  => '2.103',
19306             'Compress::Raw::Zlib'   => '2.103',
19307             'Compress::Zlib'        => '2.106',
19308             'Config'                => '5.035011',
19309             'Encode'                => '3.17',
19310             'Encode::Unicode'       => '2.20',
19311             'ExtUtils::Constant::Base'=> '0.07',
19312             'IO'                    => '1.49_01',
19313             'IO::Compress::Adapter::Bzip2'=> '2.106',
19314             'IO::Compress::Adapter::Deflate'=> '2.106',
19315             'IO::Compress::Adapter::Identity'=> '2.106',
19316             'IO::Compress::Base'    => '2.106',
19317             'IO::Compress::Base::Common'=> '2.106',
19318             'IO::Compress::Bzip2'   => '2.106',
19319             'IO::Compress::Deflate' => '2.106',
19320             'IO::Compress::Gzip'    => '2.106',
19321             'IO::Compress::Gzip::Constants'=> '2.106',
19322             'IO::Compress::RawDeflate'=> '2.106',
19323             'IO::Compress::Zip'     => '2.106',
19324             'IO::Compress::Zip::Constants'=> '2.106',
19325             'IO::Compress::Zlib::Constants'=> '2.106',
19326             'IO::Compress::Zlib::Extra'=> '2.106',
19327             'IO::Uncompress::Adapter::Bunzip2'=> '2.106',
19328             'IO::Uncompress::Adapter::Identity'=> '2.106',
19329             'IO::Uncompress::Adapter::Inflate'=> '2.106',
19330             'IO::Uncompress::AnyInflate'=> '2.106',
19331             'IO::Uncompress::AnyUncompress'=> '2.106',
19332             'IO::Uncompress::Base'  => '2.106',
19333             'IO::Uncompress::Bunzip2'=> '2.106',
19334             'IO::Uncompress::Gunzip'=> '2.106',
19335             'IO::Uncompress::Inflate'=> '2.106',
19336             'IO::Uncompress::RawInflate'=> '2.106',
19337             'IO::Uncompress::Unzip' => '2.106',
19338             'Locale::Maketext'      => '1.31',
19339             'Math::BigFloat'        => '1.999830',
19340             'Math::BigFloat::Trace' => '0.65',
19341             'Math::BigInt'          => '1.999830',
19342             'Math::BigInt::Calc'    => '1.999830',
19343             'Math::BigInt::Lib'     => '1.999830',
19344             'Math::BigInt::Trace'   => '0.65',
19345             'Math::BigRat'          => '0.2621',
19346             'Math::BigRat::Trace'   => '0.65',
19347             'Module::CoreList'      => '5.20220420',
19348             'Module::CoreList::Utils'=> '5.20220420',
19349             'Net::Cmd'              => '3.14',
19350             'Net::Config'           => '3.14',
19351             'Net::Domain'           => '3.14',
19352             'Net::FTP'              => '3.14',
19353             'Net::FTP::A'           => '3.14',
19354             'Net::FTP::E'           => '3.14',
19355             'Net::FTP::I'           => '3.14',
19356             'Net::FTP::L'           => '3.14',
19357             'Net::FTP::dataconn'    => '3.14',
19358             'Net::NNTP'             => '3.14',
19359             'Net::Netrc'            => '3.14',
19360             'Net::POP3'             => '3.14',
19361             'Net::SMTP'             => '3.14',
19362             'Net::Time'             => '3.14',
19363             'Socket'                => '2.033',
19364             'Storable'              => '3.26',
19365             'TAP::Base'             => '3.44',
19366             'TAP::Formatter::Base'  => '3.44',
19367             'TAP::Formatter::Color' => '3.44',
19368             'TAP::Formatter::Console'=> '3.44',
19369             'TAP::Formatter::Console::ParallelSession'=> '3.44',
19370             'TAP::Formatter::Console::Session'=> '3.44',
19371             'TAP::Formatter::File'  => '3.44',
19372             'TAP::Formatter::File::Session'=> '3.44',
19373             'TAP::Formatter::Session'=> '3.44',
19374             'TAP::Harness'          => '3.44',
19375             'TAP::Harness::Env'     => '3.44',
19376             'TAP::Object'           => '3.44',
19377             'TAP::Parser'           => '3.44',
19378             'TAP::Parser::Aggregator'=> '3.44',
19379             'TAP::Parser::Grammar'  => '3.44',
19380             'TAP::Parser::Iterator' => '3.44',
19381             'TAP::Parser::Iterator::Array'=> '3.44',
19382             'TAP::Parser::Iterator::Process'=> '3.44',
19383             'TAP::Parser::Iterator::Stream'=> '3.44',
19384             'TAP::Parser::IteratorFactory'=> '3.44',
19385             'TAP::Parser::Multiplexer'=> '3.44',
19386             'TAP::Parser::Result'   => '3.44',
19387             'TAP::Parser::Result::Bailout'=> '3.44',
19388             'TAP::Parser::Result::Comment'=> '3.44',
19389             'TAP::Parser::Result::Plan'=> '3.44',
19390             'TAP::Parser::Result::Pragma'=> '3.44',
19391             'TAP::Parser::Result::Test'=> '3.44',
19392             'TAP::Parser::Result::Unknown'=> '3.44',
19393             'TAP::Parser::Result::Version'=> '3.44',
19394             'TAP::Parser::Result::YAML'=> '3.44',
19395             'TAP::Parser::ResultFactory'=> '3.44',
19396             'TAP::Parser::Scheduler'=> '3.44',
19397             'TAP::Parser::Scheduler::Job'=> '3.44',
19398             'TAP::Parser::Scheduler::Spinner'=> '3.44',
19399             'TAP::Parser::Source'   => '3.44',
19400             'TAP::Parser::SourceHandler'=> '3.44',
19401             'TAP::Parser::SourceHandler::Executable'=> '3.44',
19402             'TAP::Parser::SourceHandler::File'=> '3.44',
19403             'TAP::Parser::SourceHandler::Handle'=> '3.44',
19404             'TAP::Parser::SourceHandler::Perl'=> '3.44',
19405             'TAP::Parser::SourceHandler::RawTAP'=> '3.44',
19406             'TAP::Parser::YAMLish::Reader'=> '3.44',
19407             'TAP::Parser::YAMLish::Writer'=> '3.44',
19408             'Test::Harness'         => '3.44',
19409             'Text::ParseWords'      => '3.31',
19410             'Time::HiRes'           => '1.9770',
19411             'Unicode::Normalize'    => '1.31',
19412             'bigfloat'              => '0.65',
19413             'bigint'                => '0.65',
19414             'bignum'                => '0.65',
19415             'bigrat'                => '0.65',
19416             'builtin'               => '0.005',
19417             're'                    => '0.43',
19418         },
19419         removed => {
19420         }
19421     },
19422     5.036000 => {
19423         delta_from => 5.035011,
19424         changed => {
19425             'Amiga::Exec'           => '0.04',
19426             'B::Op_private'         => '5.036000',
19427             'Compress::Raw::Zlib'   => '2.105',
19428             'Config'                => '5.036',
19429             'IO'                    => '1.50',
19430             'Module::CoreList'      => '5.20220520',
19431             'Module::CoreList::Utils'=> '5.20220520',
19432             'Win32'                 => '0.59',
19433             'builtin'               => '0.006',
19434             'feature'               => '1.72',
19435         },
19436         removed => {
19437         }
19438     },
19439     5.037000 => {
19440         delta_from => 5.036000,
19441         changed => {
19442             'feature'               => '1.73',
19443             'Module::CoreList'      => '5.20220527',
19444             'Module::CoreList::Utils'=> '5.20220527',
19445         },
19446         removed => {
19447         }
19448     },
19449     5.037001 => {
19450         delta_from => 5.037000,
19451         changed => {
19452             'B'                     => '1.84',
19453             'B::Op_private'         => '5.037001',
19454             'Carp'                  => '1.53',
19455             'Carp::Heavy'           => '1.53',
19456             'Config'                => '5.037001',
19457             'Cwd'                   => '3.85',
19458             'Data::Dumper'          => '2.185',
19459             'ExtUtils::CBuilder'    => '0.280237',
19460             'ExtUtils::CBuilder::Base'=> '0.280237',
19461             'ExtUtils::CBuilder::Platform::Unix'=> '0.280237',
19462             'ExtUtils::CBuilder::Platform::VMS'=> '0.280237',
19463             'ExtUtils::CBuilder::Platform::Windows'=> '0.280237',
19464             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280237',
19465             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280237',
19466             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280237',
19467             'ExtUtils::CBuilder::Platform::aix'=> '0.280237',
19468             'ExtUtils::CBuilder::Platform::android'=> '0.280237',
19469             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280237',
19470             'ExtUtils::CBuilder::Platform::darwin'=> '0.280237',
19471             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280237',
19472             'ExtUtils::CBuilder::Platform::os2'=> '0.280237',
19473             'ExtUtils::Miniperl'    => '1.12',
19474             'File::Spec'            => '3.85',
19475             'File::Spec::AmigaOS'   => '3.85',
19476             'File::Spec::Cygwin'    => '3.85',
19477             'File::Spec::Epoc'      => '3.85',
19478             'File::Spec::Functions' => '3.85',
19479             'File::Spec::Mac'       => '3.85',
19480             'File::Spec::OS2'       => '3.85',
19481             'File::Spec::Unix'      => '3.85',
19482             'File::Spec::VMS'       => '3.85',
19483             'File::Spec::Win32'     => '3.85',
19484             'FileHandle'            => '2.04',
19485             'GDBM_File'             => '1.24',
19486             'IO::Handle'            => '1.49',
19487             'IO::Pipe'              => '1.50',
19488             'IO::Socket::INET'      => '1.50',
19489             'IO::Socket::UNIX'      => '1.50',
19490             'Module::CoreList'      => '5.20220620',
19491             'Module::CoreList::Utils'=> '5.20220620',
19492             'ODBM_File'             => '1.18',
19493             'OS2::REXX'             => '1.06',
19494             'Opcode'                => '1.58',
19495             'POSIX'                 => '2.04',
19496             'SDBM_File'             => '1.16',
19497             'Unicode::Normalize'    => '1.32',
19498             'XS::APItest'           => '1.23',
19499             'builtin'               => '0.007',
19500             'encoding::warnings'    => '0.14',
19501             'feature'               => '1.74',
19502             'threads'               => '2.28',
19503         },
19504         removed => {
19505         }
19506     },
19507     5.037002 => {
19508         delta_from => 5.037001,
19509         changed => {
19510             'B'                     => '1.85',
19511             'B::Concise'            => '1.007',
19512             'B::Deparse'            => '1.65',
19513             'B::Op_private'         => '5.037002',
19514             'CPAN'                  => '2.34',
19515             'CPAN::Distribution'    => '2.34',
19516             'Compress::Raw::Bzip2'  => '2.201',
19517             'Compress::Raw::Zlib'   => '2.202',
19518             'Compress::Zlib'        => '2.201',
19519             'Config'                => '5.037002',
19520             'Cwd'                   => '3.86',
19521             'DB_File'               => '1.858',
19522             'Data::Dumper'          => '2.186',
19523             'Encode'                => '3.18',
19524             'Encode::MIME::Header'  => '2.29',
19525             'File::Glob'            => '1.38',
19526             'File::Spec'            => '3.86',
19527             'File::Spec::AmigaOS'   => '3.86',
19528             'File::Spec::Cygwin'    => '3.86',
19529             'File::Spec::Epoc'      => '3.86',
19530             'File::Spec::Functions' => '3.86',
19531             'File::Spec::Mac'       => '3.86',
19532             'File::Spec::OS2'       => '3.86',
19533             'File::Spec::Unix'      => '3.86',
19534             'File::Spec::VMS'       => '3.86',
19535             'File::Spec::Win32'     => '3.86',
19536             'Filter::Util::Call'    => '1.61',
19537             'Hash::Util'            => '0.29',
19538             'I18N::LangTags::List'  => '0.41',
19539             'IO::Compress::Adapter::Bzip2'=> '2.201',
19540             'IO::Compress::Adapter::Deflate'=> '2.201',
19541             'IO::Compress::Adapter::Identity'=> '2.201',
19542             'IO::Compress::Base'    => '2.201',
19543             'IO::Compress::Base::Common'=> '2.201',
19544             'IO::Compress::Bzip2'   => '2.201',
19545             'IO::Compress::Deflate' => '2.201',
19546             'IO::Compress::Gzip'    => '2.201',
19547             'IO::Compress::Gzip::Constants'=> '2.201',
19548             'IO::Compress::RawDeflate'=> '2.201',
19549             'IO::Compress::Zip'     => '2.201',
19550             'IO::Compress::Zip::Constants'=> '2.201',
19551             'IO::Compress::Zlib::Constants'=> '2.201',
19552             'IO::Compress::Zlib::Extra'=> '2.201',
19553             'IO::Uncompress::Adapter::Bunzip2'=> '2.201',
19554             'IO::Uncompress::Adapter::Identity'=> '2.201',
19555             'IO::Uncompress::Adapter::Inflate'=> '2.201',
19556             'IO::Uncompress::AnyInflate'=> '2.201',
19557             'IO::Uncompress::AnyUncompress'=> '2.201',
19558             'IO::Uncompress::Base'  => '2.201',
19559             'IO::Uncompress::Bunzip2'=> '2.201',
19560             'IO::Uncompress::Gunzip'=> '2.201',
19561             'IO::Uncompress::Inflate'=> '2.201',
19562             'IO::Uncompress::RawInflate'=> '2.201',
19563             'IO::Uncompress::Unzip' => '2.201',
19564             'JSON::PP'              => '4.10',
19565             'JSON::PP::Boolean'     => '4.10',
19566             'Math::BigFloat'        => '1.999837',
19567             'Math::BigFloat::Trace' => '0.66',
19568             'Math::BigInt'          => '1.999837',
19569             'Math::BigInt::Calc'    => '1.999837',
19570             'Math::BigInt::FastCalc'=> '0.5013',
19571             'Math::BigInt::Lib'     => '1.999837',
19572             'Math::BigInt::Trace'   => '0.66',
19573             'Math::BigRat'          => '0.2624',
19574             'Math::BigRat::Trace'   => '0.66',
19575             'Module::CoreList'      => '5.20220720',
19576             'Module::CoreList::Utils'=> '5.20220720',
19577             'Opcode'                => '1.59',
19578             'PerlIO::via::QuotedPrint'=> '0.10',
19579             'Pod::Checker'          => '1.75',
19580             'Pod::Usage'            => '2.03',
19581             'Socket'                => '2.035',
19582             'Storable'              => '3.27',
19583             'Test2'                 => '1.302191',
19584             'Test2::API'            => '1.302191',
19585             'Test2::API::Breakage'  => '1.302191',
19586             'Test2::API::Context'   => '1.302191',
19587             'Test2::API::Instance'  => '1.302191',
19588             'Test2::API::InterceptResult'=> '1.302191',
19589             'Test2::API::InterceptResult::Event'=> '1.302191',
19590             'Test2::API::InterceptResult::Facet'=> '1.302191',
19591             'Test2::API::InterceptResult::Hub'=> '1.302191',
19592             'Test2::API::InterceptResult::Squasher'=> '1.302191',
19593             'Test2::API::Stack'     => '1.302191',
19594             'Test2::Event'          => '1.302191',
19595             'Test2::Event::Bail'    => '1.302191',
19596             'Test2::Event::Diag'    => '1.302191',
19597             'Test2::Event::Encoding'=> '1.302191',
19598             'Test2::Event::Exception'=> '1.302191',
19599             'Test2::Event::Fail'    => '1.302191',
19600             'Test2::Event::Generic' => '1.302191',
19601             'Test2::Event::Note'    => '1.302191',
19602             'Test2::Event::Ok'      => '1.302191',
19603             'Test2::Event::Pass'    => '1.302191',
19604             'Test2::Event::Plan'    => '1.302191',
19605             'Test2::Event::Skip'    => '1.302191',
19606             'Test2::Event::Subtest' => '1.302191',
19607             'Test2::Event::TAP::Version'=> '1.302191',
19608             'Test2::Event::V2'      => '1.302191',
19609             'Test2::Event::Waiting' => '1.302191',
19610             'Test2::EventFacet'     => '1.302191',
19611             'Test2::EventFacet::About'=> '1.302191',
19612             'Test2::EventFacet::Amnesty'=> '1.302191',
19613             'Test2::EventFacet::Assert'=> '1.302191',
19614             'Test2::EventFacet::Control'=> '1.302191',
19615             'Test2::EventFacet::Error'=> '1.302191',
19616             'Test2::EventFacet::Hub'=> '1.302191',
19617             'Test2::EventFacet::Info'=> '1.302191',
19618             'Test2::EventFacet::Info::Table'=> '1.302191',
19619             'Test2::EventFacet::Meta'=> '1.302191',
19620             'Test2::EventFacet::Parent'=> '1.302191',
19621             'Test2::EventFacet::Plan'=> '1.302191',
19622             'Test2::EventFacet::Render'=> '1.302191',
19623             'Test2::EventFacet::Trace'=> '1.302191',
19624             'Test2::Formatter'      => '1.302191',
19625             'Test2::Formatter::TAP' => '1.302191',
19626             'Test2::Hub'            => '1.302191',
19627             'Test2::Hub::Interceptor'=> '1.302191',
19628             'Test2::Hub::Interceptor::Terminator'=> '1.302191',
19629             'Test2::Hub::Subtest'   => '1.302191',
19630             'Test2::IPC'            => '1.302191',
19631             'Test2::IPC::Driver'    => '1.302191',
19632             'Test2::IPC::Driver::Files'=> '1.302191',
19633             'Test2::Tools::Tiny'    => '1.302191',
19634             'Test2::Util'           => '1.302191',
19635             'Test2::Util::ExternalMeta'=> '1.302191',
19636             'Test2::Util::Facets2Legacy'=> '1.302191',
19637             'Test2::Util::HashBase' => '1.302191',
19638             'Test2::Util::Trace'    => '1.302191',
19639             'Test::Builder'         => '1.302191',
19640             'Test::Builder::Formatter'=> '1.302191',
19641             'Test::Builder::Module' => '1.302191',
19642             'Test::Builder::Tester' => '1.302191',
19643             'Test::Builder::Tester::Color'=> '1.302191',
19644             'Test::Builder::TodoDiag'=> '1.302191',
19645             'Test::More'            => '1.302191',
19646             'Test::Simple'          => '1.302191',
19647             'Test::Tester'          => '1.302191',
19648             'Test::Tester::Capture' => '1.302191',
19649             'Test::Tester::CaptureRunner'=> '1.302191',
19650             'Test::Tester::Delegate'=> '1.302191',
19651             'Test::use::ok'         => '1.302191',
19652             'Text::Balanced'        => '2.06',
19653             'XS::APItest'           => '1.24',
19654             'bigfloat'              => '0.66',
19655             'bigint'                => '0.66',
19656             'bignum'                => '0.66',
19657             'bigrat'                => '0.66',
19658             'builtin'               => '0.008',
19659             'feature'               => '1.75',
19660             'ok'                    => '1.302191',
19661             'threads::shared'       => '1.65',
19662         },
19663         removed => {
19664         }
19665     },
19666     5.037003 => {
19667         delta_from => 5.037002,
19668         changed => {
19669             'B'                     => '1.86',
19670             'B::Deparse'            => '1.68',
19671             'B::Op_private'         => '5.037003',
19672             'Config'                => '5.037003',
19673             'Digest::SHA'           => '6.03',
19674             'DynaLoader'            => '1.53',
19675             'Encode'                => '3.19',
19676             'Encode::Alias'         => '2.25',
19677             'ExtUtils::PL2Bat'      => '0.005',
19678             'File::Find'            => '1.41',
19679             'Filter::Util::Call'    => '1.64',
19680             'HTTP::Tiny'            => '0.082',
19681             'JSON::PP'              => '4.11',
19682             'JSON::PP::Boolean'     => '4.11',
19683             'List::Util'            => '1.63',
19684             'List::Util::XS'        => '1.63',
19685             'Memoize'               => '1.10',
19686             'Memoize::AnyDBM_File'  => '1.10',
19687             'Memoize::Expire'       => '1.10',
19688             'Memoize::NDBM_File'    => '1.10',
19689             'Memoize::SDBM_File'    => '1.10',
19690             'Memoize::Storable'     => '1.10',
19691             'Module::CoreList'      => '5.20220820',
19692             'Module::CoreList::Utils'=> '5.20220820',
19693             'NDBM_File'             => '1.16',
19694             'Opcode'                => '1.60',
19695             'Scalar::Util'          => '1.63',
19696             'Socket'                => '2.036',
19697             'Sub::Util'             => '1.63',
19698             'XS::APItest'           => '1.25',
19699             'attributes'            => '0.35',
19700             'threads'               => '2.29',
19701         },
19702         removed => {
19703             'Memoize::ExpireFile'   => 1,
19704             'Memoize::ExpireTest'   => 1,
19705         }
19706     },
19707     5.037004 => {
19708         delta_from => 5.037003,
19709         changed => {
19710             'B::Deparse'            => '1.69',
19711             'B::Op_private'         => '5.037004',
19712             'Carp'                  => '1.54',
19713             'Carp::Heavy'           => '1.54',
19714             'Class::Struct'         => '0.67',
19715             'Config'                => '5.037004',
19716             'Config::Perl::V'       => '0.34',
19717             'Errno'                 => '1.37',
19718             'ExtUtils::ParseXS'     => '3.46',
19719             'ExtUtils::ParseXS::Constants'=> '3.46',
19720             'ExtUtils::ParseXS::CountLines'=> '3.46',
19721             'ExtUtils::ParseXS::Eval'=> '3.46',
19722             'ExtUtils::ParseXS::Utilities'=> '3.46',
19723             'ExtUtils::Typemaps'    => '3.46',
19724             'ExtUtils::Typemaps::Cmd'=> '3.46',
19725             'ExtUtils::Typemaps::InputMap'=> '3.46',
19726             'ExtUtils::Typemaps::OutputMap'=> '3.46',
19727             'ExtUtils::Typemaps::Type'=> '3.46',
19728             'File::Basename'        => '2.86',
19729             'File::Copy'            => '2.40',
19730             'File::Spec'            => '3.87',
19731             'File::stat'            => '1.13',
19732             'FileHandle'            => '2.05',
19733             'Hash::Util'            => '0.30',
19734             'I18N::Langinfo'        => '0.22',
19735             'IO'                    => '1.51',
19736             'IO::Dir'               => '1.51',
19737             'IO::File'              => '1.51',
19738             'IO::Handle'            => '1.51',
19739             'IO::Pipe'              => '1.51',
19740             'IO::Poll'              => '1.51',
19741             'IO::Seekable'          => '1.51',
19742             'IO::Select'            => '1.51',
19743             'IO::Socket'            => '1.51',
19744             'IO::Socket::INET'      => '1.51',
19745             'IO::Socket::UNIX'      => '1.51',
19746             'Locale::Maketext'      => '1.32',
19747             'Module::CoreList'      => '5.20220920',
19748             'Module::CoreList::Utils'=> '5.20220920',
19749             'Net::protoent'         => '1.02',
19750             'Net::servent'          => '1.03',
19751             'Opcode'                => '1.61',
19752             'POSIX'                 => '2.06',
19753             'Safe'                  => '2.44',
19754             'Sys::Hostname'         => '1.25',
19755             'Time::HiRes'           => '1.9771',
19756             'User::grent'           => '1.04',
19757             'User::pwent'           => '1.02',
19758             'XS::APItest'           => '1.26',
19759             'XSLoader'              => '0.32',
19760             'feature'               => '1.76',
19761         },
19762         removed => {
19763         }
19764     },
19765     5.037005 => {
19766         delta_from => 5.037004,
19767         changed => {
19768             'B::Op_private'         => '5.037005',
19769             'Config'                => '5.037005',
19770         },
19771         removed => {
19772         }
19773     },
19774 );
19775
19776 sub is_core
19777 {
19778     shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0];
19779     my $module = shift;
19780     my $module_version = @_ > 0 ? shift : undef;
19781     my $perl_version   = @_ > 0 ? shift : $];
19782
19783     my $first_release = first_release($module);
19784
19785     return 0 if !defined($first_release) || $first_release > $perl_version;
19786
19787     my $final_release = removed_from($module);
19788
19789     return 0 if defined($final_release) && $perl_version >= $final_release;
19790
19791     # If a minimum version of the module was specified:
19792     # Step through all perl releases ($prn)
19793     # so we can find what version of the module
19794     # was included in the specified version of perl.
19795     # On the way if we pass the required module version, we can
19796     # short-circuit and return true
19797     if (defined($module_version)) {
19798         my $module_version_object = eval { version->parse($module_version) };
19799         if (!defined($module_version_object)) {
19800             (my $err = $@) =~ s/^Invalid version format\b/Invalid version '$module_version' specified/;
19801             die $err;
19802         }
19803         # The Perl releases aren't a linear sequence, but a tree. We need to build the path
19804         # of releases from 5 to the specified release, and follow the module's version(s)
19805         # along that path.
19806         my @releases = ($perl_version);
19807         my $rel = $perl_version;
19808         while (defined($rel)) {
19809             # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
19810             my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
19811             $rel = $this_delta->{delta_from};
19812             unshift(@releases, $rel) if defined($rel);
19813         }
19814         RELEASE:
19815         foreach my $prn (@releases) {
19816             next RELEASE if $prn < $first_release;
19817             last RELEASE if $prn > $perl_version;
19818             next unless defined(my $next_module_version
19819                                    = $delta{$prn}->{changed}->{$module});
19820             return 1 if eval { version->parse($next_module_version) >= $module_version_object };
19821         }
19822         return 0;
19823     }
19824
19825     return 1 if !defined($final_release);
19826
19827     return $perl_version <= $final_release;
19828 }
19829
19830 %version = _undelta(\%delta);
19831
19832 %deprecated = (
19833     5.011    => {
19834         changed => { map { $_ => 1 } qw/
19835             Class::ISA
19836             Pod::Plainer
19837             Shell
19838             Switch
19839         /},
19840     },
19841     5.011001 => { delta_from => 5.011 },
19842     5.011002 => { delta_from => 5.011001 },
19843     5.011003 => { delta_from => 5.011002 },
19844     5.011004 => { delta_from => 5.011003 },
19845     5.011005 => { delta_from => 5.011004 },
19846
19847     5.012    => { delta_from => 5.011005 },
19848     5.012001 => { delta_from => 5.012 },
19849     5.012002 => { delta_from => 5.012001 },
19850     5.012003 => { delta_from => 5.012002 },
19851     5.012004 => { delta_from => 5.012003 },
19852     5.012005 => { delta_from => 5.012004 },
19853
19854     5.013    => { delta_from => 5.012005 },
19855     5.013001 => {
19856         delta_from => 5.013,
19857         removed => { map { $_ => 1 } qw/
19858             Class::ISA
19859             Pod::Plainer
19860             Switch
19861         /},
19862     },
19863     5.013002 => { delta_from => 5.013001 },
19864     5.013003 => { delta_from => 5.013002 },
19865     5.013004 => { delta_from => 5.013003 },
19866     5.013005 => { delta_from => 5.013004 },
19867     5.013006 => { delta_from => 5.013005 },
19868     5.013007 => { delta_from => 5.013006 },
19869     5.013008 => { delta_from => 5.013007 },
19870     5.013009 => { delta_from => 5.013008 },
19871     5.01301  => { delta_from => 5.013009 },
19872     5.013011 => { delta_from => 5.01301  },
19873
19874     5.014    => { delta_from => 5.013011 },
19875     5.014001 => { delta_from => 5.014    },
19876     5.014002 => { delta_from => 5.014001 },
19877     5.014003 => { delta_from => 5.014002 },
19878     5.014004 => { delta_from => 5.014003 },
19879
19880     5.015    => {
19881         delta_from => 5.014004,
19882         removed => { Shell => 1 },
19883     },
19884     5.015001 => { delta_from => 5.015    },
19885     5.015002 => { delta_from => 5.015001 },
19886     5.015003 => { delta_from => 5.015002 },
19887     5.015004 => { delta_from => 5.015003 },
19888     5.015005 => { delta_from => 5.015004 },
19889     5.015006 => { delta_from => 5.015005 },
19890     5.015007 => { delta_from => 5.015006 },
19891     5.015008 => { delta_from => 5.015007 },
19892     5.015009 => { delta_from => 5.015008 },
19893
19894     5.016    => { delta_from => 5.015009 },
19895     5.016001 => { delta_from => 5.016    },
19896     5.016002 => { delta_from => 5.016001 },
19897     5.016003 => { delta_from => 5.016002 },
19898
19899     5.017    => { delta_from => 5.016003 },
19900     5.017001 => { delta_from => 5.017    },
19901     5.017002 => { delta_from => 5.017001 },
19902     5.017003 => { delta_from => 5.017002 },
19903     5.017004 => { delta_from => 5.017003 },
19904     5.017005 => { delta_from => 5.017004 },
19905     5.017006 => { delta_from => 5.017005 },
19906     5.017007 => { delta_from => 5.017006 },
19907     5.017008 => {
19908         delta_from => 5.017007,
19909         changed => { 'Pod::LaTeX' => 1 },
19910     },
19911     5.017009 => {
19912         delta_from => 5.017008,
19913         changed => { map { $_ => 1 } qw/
19914             Archive::Extract
19915             B::Lint
19916             B::Lint::Debug
19917             CPANPLUS
19918             CPANPLUS::Backend
19919             CPANPLUS::Backend::RV
19920             CPANPLUS::Config
19921             CPANPLUS::Config::HomeEnv
19922             CPANPLUS::Configure
19923             CPANPLUS::Configure::Setup
19924             CPANPLUS::Dist
19925             CPANPLUS::Dist::Autobundle
19926             CPANPLUS::Dist::Base
19927             CPANPLUS::Dist::Build
19928             CPANPLUS::Dist::Build::Constants
19929             CPANPLUS::Dist::MM
19930             CPANPLUS::Dist::Sample
19931             CPANPLUS::Error
19932             CPANPLUS::Internals
19933             CPANPLUS::Internals::Constants
19934             CPANPLUS::Internals::Constants::Report
19935             CPANPLUS::Internals::Extract
19936             CPANPLUS::Internals::Fetch
19937             CPANPLUS::Internals::Report
19938             CPANPLUS::Internals::Search
19939             CPANPLUS::Internals::Source
19940             CPANPLUS::Internals::Source::Memory
19941             CPANPLUS::Internals::Source::SQLite
19942             CPANPLUS::Internals::Source::SQLite::Tie
19943             CPANPLUS::Internals::Utils
19944             CPANPLUS::Internals::Utils::Autoflush
19945             CPANPLUS::Module
19946             CPANPLUS::Module::Author
19947             CPANPLUS::Module::Author::Fake
19948             CPANPLUS::Module::Checksums
19949             CPANPLUS::Module::Fake
19950             CPANPLUS::Module::Signature
19951             CPANPLUS::Selfupdate
19952             CPANPLUS::Shell
19953             CPANPLUS::Shell::Classic
19954             CPANPLUS::Shell::Default
19955             CPANPLUS::Shell::Default::Plugins::CustomSource
19956             CPANPLUS::Shell::Default::Plugins::Remote
19957             CPANPLUS::Shell::Default::Plugins::Source
19958             Devel::InnerPackage
19959             File::CheckTree
19960             Log::Message
19961             Log::Message::Config
19962             Log::Message::Handlers
19963             Log::Message::Item
19964             Log::Message::Simple
19965             Module::Pluggable
19966             Module::Pluggable::Object
19967             Object::Accessor
19968             Term::UI
19969             Term::UI::History
19970             Text::Soundex
19971         /},
19972     },
19973     5.01701  => { delta_from => 5.017009 },
19974     5.017011 => { delta_from => 5.01701  },
19975
19976     5.018    => { delta_from => 5.017011 },
19977     5.018001 => {
19978         delta_from => 5.018,
19979         changed => {
19980         },
19981         removed => {
19982         }
19983     },
19984     5.018002 => {
19985         delta_from => 5.018001,
19986         changed => {
19987         },
19988         removed => {
19989         }
19990     },
19991     5.018003 => {
19992         delta_from => 5.018,
19993         changed => {
19994         },
19995         removed => {
19996         }
19997     },
19998     5.018004 => {
19999         delta_from => 5.018,
20000         changed => {
20001         },
20002         removed => {
20003         }
20004     },
20005
20006     5.019    => {
20007         delta_from => 5.018,
20008         changed => { 'Module::Build' => 1 },
20009         removed => { map { $_ => 1 } qw/
20010             Archive::Extract
20011             B::Lint
20012             B::Lint::Debug
20013             CPANPLUS
20014             CPANPLUS::Backend
20015             CPANPLUS::Backend::RV
20016             CPANPLUS::Config
20017             CPANPLUS::Config::HomeEnv
20018             CPANPLUS::Configure
20019             CPANPLUS::Configure::Setup
20020             CPANPLUS::Dist
20021             CPANPLUS::Dist::Autobundle
20022             CPANPLUS::Dist::Base
20023             CPANPLUS::Dist::Build
20024             CPANPLUS::Dist::Build::Constants
20025             CPANPLUS::Dist::MM
20026             CPANPLUS::Dist::Sample
20027             CPANPLUS::Error
20028             CPANPLUS::Internals
20029             CPANPLUS::Internals::Constants
20030             CPANPLUS::Internals::Constants::Report
20031             CPANPLUS::Internals::Extract
20032             CPANPLUS::Internals::Fetch
20033             CPANPLUS::Internals::Report
20034             CPANPLUS::Internals::Search
20035             CPANPLUS::Internals::Source
20036             CPANPLUS::Internals::Source::Memory
20037             CPANPLUS::Internals::Source::SQLite
20038             CPANPLUS::Internals::Source::SQLite::Tie
20039             CPANPLUS::Internals::Utils
20040             CPANPLUS::Internals::Utils::Autoflush
20041             CPANPLUS::Module
20042             CPANPLUS::Module::Author
20043             CPANPLUS::Module::Author::Fake
20044             CPANPLUS::Module::Checksums
20045             CPANPLUS::Module::Fake
20046             CPANPLUS::Module::Signature
20047             CPANPLUS::Selfupdate
20048             CPANPLUS::Shell
20049             CPANPLUS::Shell::Classic
20050             CPANPLUS::Shell::Default
20051             CPANPLUS::Shell::Default::Plugins::CustomSource
20052             CPANPLUS::Shell::Default::Plugins::Remote
20053             CPANPLUS::Shell::Default::Plugins::Source
20054             Devel::InnerPackage
20055             File::CheckTree
20056             Log::Message
20057             Log::Message::Config
20058             Log::Message::Handlers
20059             Log::Message::Item
20060             Log::Message::Simple
20061             Module::Pluggable
20062             Module::Pluggable::Object
20063             Object::Accessor
20064             Pod::LaTeX
20065             Term::UI
20066             Term::UI::History
20067             Text::Soundex
20068         /}
20069     },
20070     5.019001 => {
20071         delta_from => 5.019,
20072         changed => {
20073         },
20074         removed => {
20075         }
20076     },
20077     5.019002 => {
20078         delta_from => 5.019001,
20079         changed => {
20080         },
20081         removed => {
20082         }
20083     },
20084     5.019003 => {
20085         delta_from => 5.019002,
20086         changed => {
20087         },
20088         removed => {
20089         }
20090     },
20091     5.019004 => {
20092         delta_from => 5.019003,
20093         changed => {
20094             'Module::Build::Base'   => '1',
20095             'Module::Build::Compat' => '1',
20096             'Module::Build::Config' => '1',
20097             'Module::Build::ConfigData'=> '1',
20098             'Module::Build::Cookbook'=> '1',
20099             'Module::Build::Dumper' => '1',
20100             'Module::Build::ModuleInfo'=> '1',
20101             'Module::Build::Notes'  => '1',
20102             'Module::Build::PPMMaker'=> '1',
20103             'Module::Build::Platform::Default'=> '1',
20104             'Module::Build::Platform::MacOS'=> '1',
20105             'Module::Build::Platform::Unix'=> '1',
20106             'Module::Build::Platform::VMS'=> '1',
20107             'Module::Build::Platform::VOS'=> '1',
20108             'Module::Build::Platform::Windows'=> '1',
20109             'Module::Build::Platform::aix'=> '1',
20110             'Module::Build::Platform::cygwin'=> '1',
20111             'Module::Build::Platform::darwin'=> '1',
20112             'Module::Build::Platform::os2'=> '1',
20113             'Module::Build::PodParser'=> '1',
20114             'Module::Build::Version'=> '1',
20115             'Module::Build::YAML'   => '1',
20116             'inc::latest'           => '1',
20117         },
20118         removed => {
20119         }
20120     },
20121     5.019005 => {
20122         delta_from => 5.019004,
20123         changed => {
20124         },
20125         removed => {
20126         }
20127     },
20128     5.019006 => {
20129         delta_from => 5.019005,
20130         changed => {
20131             'Package::Constants'    => '1',
20132         },
20133         removed => {
20134         }
20135     },
20136     5.019007 => {
20137         delta_from => 5.019006,
20138         changed => {
20139             'CGI'                   => '1',
20140             'CGI::Apache'           => '1',
20141             'CGI::Carp'             => '1',
20142             'CGI::Cookie'           => '1',
20143             'CGI::Fast'             => '1',
20144             'CGI::Pretty'           => '1',
20145             'CGI::Push'             => '1',
20146             'CGI::Switch'           => '1',
20147             'CGI::Util'             => '1',
20148         },
20149         removed => {
20150         }
20151     },
20152     5.019008 => {
20153         delta_from => 5.019007,
20154         changed => {
20155         },
20156         removed => {
20157         }
20158     },
20159     5.019009 => {
20160         delta_from => 5.019008,
20161         changed => {
20162         },
20163         removed => {
20164         }
20165     },
20166     5.01901 => {
20167         delta_from => 5.019009,
20168         changed => {
20169         },
20170         removed => {
20171         }
20172     },
20173     5.019011 => {
20174         delta_from => 5.019010,
20175         changed => {
20176         },
20177         removed => {
20178         }
20179     },
20180     5.020000 => {
20181         delta_from => 5.019011,
20182         changed => {
20183         },
20184         removed => {
20185         }
20186     },
20187     5.021000 => {
20188         delta_from => 5.020000,
20189         changed => {
20190         },
20191         removed => {
20192             'CGI'                   => 1,
20193             'CGI::Apache'           => 1,
20194             'CGI::Carp'             => 1,
20195             'CGI::Cookie'           => 1,
20196             'CGI::Fast'             => 1,
20197             'CGI::Pretty'           => 1,
20198             'CGI::Push'             => 1,
20199             'CGI::Switch'           => 1,
20200             'CGI::Util'             => 1,
20201             'Module::Build'         => 1,
20202             'Module::Build::Base'   => 1,
20203             'Module::Build::Compat' => 1,
20204             'Module::Build::Config' => 1,
20205             'Module::Build::ConfigData'=> 1,
20206             'Module::Build::Cookbook'=> 1,
20207             'Module::Build::Dumper' => 1,
20208             'Module::Build::ModuleInfo'=> 1,
20209             'Module::Build::Notes'  => 1,
20210             'Module::Build::PPMMaker'=> 1,
20211             'Module::Build::Platform::Default'=> 1,
20212             'Module::Build::Platform::MacOS'=> 1,
20213             'Module::Build::Platform::Unix'=> 1,
20214             'Module::Build::Platform::VMS'=> 1,
20215             'Module::Build::Platform::VOS'=> 1,
20216             'Module::Build::Platform::Windows'=> 1,
20217             'Module::Build::Platform::aix'=> 1,
20218             'Module::Build::Platform::cygwin'=> 1,
20219             'Module::Build::Platform::darwin'=> 1,
20220             'Module::Build::Platform::os2'=> 1,
20221             'Module::Build::PodParser'=> 1,
20222             'Module::Build::Version'=> 1,
20223             'Module::Build::YAML'   => 1,
20224             'Package::Constants'    => 1,
20225             'inc::latest'           => 1,
20226         }
20227     },
20228     5.021001 => {
20229         delta_from => 5.021000,
20230         changed => {
20231         },
20232         removed => {
20233         }
20234     },
20235     5.021002 => {
20236         delta_from => 5.021001,
20237         changed => {
20238         },
20239         removed => {
20240         }
20241     },
20242     5.021003 => {
20243         delta_from => 5.021002,
20244         changed => {
20245         },
20246         removed => {
20247         }
20248     },
20249     5.020001 => {
20250         delta_from => 5.020000,
20251         changed => {
20252         },
20253         removed => {
20254         }
20255     },
20256     5.021004 => {
20257         delta_from => 5.021003,
20258         changed => {
20259         },
20260         removed => {
20261         }
20262     },
20263     5.021005 => {
20264         delta_from => 5.021004,
20265         changed => {
20266         },
20267         removed => {
20268         }
20269     },
20270     5.021006 => {
20271         delta_from => 5.021005,
20272         changed => {
20273         },
20274         removed => {
20275         }
20276     },
20277     5.021007 => {
20278         delta_from => 5.021006,
20279         changed => {
20280         },
20281         removed => {
20282         }
20283     },
20284     5.021008 => {
20285         delta_from => 5.021007,
20286         changed => {
20287         },
20288         removed => {
20289         }
20290     },
20291     5.020002 => {
20292         delta_from => 5.020001,
20293         changed => {
20294         },
20295         removed => {
20296         }
20297     },
20298     5.021009 => {
20299         delta_from => 5.021008,
20300         changed => {
20301         },
20302         removed => {
20303         }
20304     },
20305     5.021010 => {
20306         delta_from => 5.021009,
20307         changed => {
20308         },
20309         removed => {
20310         }
20311     },
20312     5.021011 => {
20313         delta_from => 5.02101,
20314         changed => {
20315         },
20316         removed => {
20317         }
20318     },
20319     5.022000 => {
20320         delta_from => 5.021011,
20321         changed => {
20322         },
20323         removed => {
20324         }
20325     },
20326     5.023000 => {
20327         delta_from => 5.022000,
20328         changed => {
20329         },
20330         removed => {
20331         }
20332     },
20333     5.023001 => {
20334         delta_from => 5.023000,
20335         changed => {
20336         },
20337         removed => {
20338         }
20339     },
20340     5.023002 => {
20341         delta_from => 5.023001,
20342         changed => {
20343         },
20344         removed => {
20345         }
20346     },
20347     5.020003 => {
20348         delta_from => 5.020002,
20349         changed => {
20350         },
20351         removed => {
20352         }
20353     },
20354     5.023003 => {
20355         delta_from => 5.023002,
20356         changed => {
20357         },
20358         removed => {
20359         }
20360     },
20361     5.023004 => {
20362         delta_from => 5.023003,
20363         changed => {
20364         },
20365         removed => {
20366         }
20367     },
20368     5.023005 => {
20369         delta_from => 5.023004,
20370         changed => {
20371         },
20372         removed => {
20373         }
20374     },
20375     5.022001 => {
20376         delta_from => 5.022,
20377         changed => {
20378         },
20379         removed => {
20380         }
20381     },
20382     5.023006 => {
20383         delta_from => 5.023005,
20384         changed => {
20385         },
20386         removed => {
20387         }
20388     },
20389     5.023007 => {
20390         delta_from => 5.023006,
20391         changed => {
20392         },
20393         removed => {
20394         }
20395     },
20396     5.023008 => {
20397         delta_from => 5.023007,
20398         changed => {
20399         },
20400         removed => {
20401         }
20402     },
20403     5.023009 => {
20404         delta_from => 5.023008,
20405         changed => {
20406         },
20407         removed => {
20408         }
20409     },
20410     5.022002 => {
20411         delta_from => 5.022001,
20412         changed => {
20413         },
20414         removed => {
20415         }
20416     },
20417     5.024000 => {
20418         delta_from => 5.023009,
20419         changed => {
20420         },
20421         removed => {
20422         }
20423     },
20424     5.025000 => {
20425         delta_from => 5.024,
20426         changed => {
20427         },
20428         removed => {
20429         }
20430     },
20431     5.025001 => {
20432         delta_from => 5.025,
20433         changed => {
20434         },
20435         removed => {
20436         }
20437     },
20438     5.025002 => {
20439         delta_from => 5.025001,
20440         changed => {
20441         },
20442         removed => {
20443         }
20444     },
20445     5.025003 => {
20446         delta_from => 5.025002,
20447         changed => {
20448         },
20449         removed => {
20450         }
20451     },
20452     5.025004 => {
20453         delta_from => 5.025003,
20454         changed => {
20455         },
20456         removed => {
20457         }
20458     },
20459     5.025005 => {
20460         delta_from => 5.025004,
20461         changed => {
20462         },
20463         removed => {
20464         }
20465     },
20466     5.025006 => {
20467         delta_from => 5.025005,
20468         changed => {
20469         },
20470         removed => {
20471         }
20472     },
20473     5.025007 => {
20474         delta_from => 5.025006,
20475         changed => {
20476         },
20477         removed => {
20478         }
20479     },
20480     5.025008 => {
20481         delta_from => 5.025007,
20482         changed => {
20483         },
20484         removed => {
20485         }
20486     },
20487     5.022003 => {
20488         delta_from => 5.022002,
20489         changed => {
20490         },
20491         removed => {
20492         }
20493     },
20494     5.024001 => {
20495         delta_from => 5.024000,
20496         changed => {
20497         },
20498         removed => {
20499         }
20500     },
20501     5.025009 => {
20502         delta_from => 5.025008,
20503         changed => {
20504         },
20505         removed => {
20506         }
20507     },
20508     5.025010 => {
20509         delta_from => 5.025009,
20510         changed => {
20511         },
20512         removed => {
20513         }
20514     },
20515     5.025011 => {
20516         delta_from => 5.025010,
20517         changed => {
20518         },
20519         removed => {
20520         }
20521     },
20522     5.025012 => {
20523         delta_from => 5.025011,
20524         changed => {
20525         },
20526         removed => {
20527         }
20528     },
20529     5.026000 => {
20530         delta_from => 5.025012,
20531         changed => {
20532         },
20533         removed => {
20534         }
20535     },
20536     5.027000 => {
20537         delta_from => 5.026,
20538         changed => {
20539         },
20540         removed => {
20541         }
20542     },
20543     5.027001 => {
20544         delta_from => 5.027,
20545         changed => {
20546         },
20547         removed => {
20548         }
20549     },
20550     5.022004 => {
20551         delta_from => 5.022003,
20552         changed => {
20553         },
20554         removed => {
20555         }
20556     },
20557     5.024002 => {
20558         delta_from => 5.024001,
20559         changed => {
20560         },
20561         removed => {
20562         }
20563     },
20564     5.027002 => {
20565         delta_from => 5.027001,
20566         changed => {
20567         },
20568         removed => {
20569         }
20570     },
20571     5.027003 => {
20572         delta_from => 5.027002,
20573         changed => {
20574             'B::Debug'              => '1',
20575         },
20576         removed => {
20577         }
20578     },
20579     5.027004 => {
20580         delta_from => 5.027003,
20581         changed => {
20582         },
20583         removed => {
20584         }
20585     },
20586     5.024003 => {
20587         delta_from => 5.024002,
20588         changed => {
20589         },
20590         removed => {
20591         }
20592     },
20593     5.026001 => {
20594         delta_from => 5.026000,
20595         changed => {
20596         },
20597         removed => {
20598         }
20599     },
20600     5.027005 => {
20601         delta_from => 5.027004,
20602         changed => {
20603         },
20604         removed => {
20605         }
20606     },
20607     5.027006 => {
20608         delta_from => 5.027005,
20609         changed => {
20610         },
20611         removed => {
20612         }
20613     },
20614     5.027007 => {
20615         delta_from => 5.027006,
20616         changed => {
20617         },
20618         removed => {
20619         }
20620     },
20621     5.027008 => {
20622         delta_from => 5.027007,
20623         changed => {
20624         },
20625         removed => {
20626         }
20627     },
20628     5.027009 => {
20629         delta_from => 5.027008,
20630         changed => {
20631         },
20632         removed => {
20633         }
20634     },
20635     5.027010 => {
20636         delta_from => 5.027009,
20637         changed => {
20638         },
20639         removed => {
20640         }
20641     },
20642     5.024004 => {
20643         delta_from => 5.024003,
20644         changed => {
20645         },
20646         removed => {
20647         }
20648     },
20649     5.026002 => {
20650         delta_from => 5.026001,
20651         changed => {
20652         },
20653         removed => {
20654         }
20655     },
20656     5.027011 => {
20657         delta_from => 5.02701,
20658         changed => {
20659         },
20660         removed => {
20661         }
20662     },
20663     5.028000 => {
20664         delta_from => 5.027011,
20665         changed => {
20666         },
20667         removed => {
20668         }
20669     },
20670     5.029000 => {
20671         delta_from => 5.028,
20672         changed => {
20673         },
20674         removed => {
20675         }
20676     },
20677     5.029001 => {
20678         delta_from => 5.029,
20679         changed => {
20680         },
20681         removed => {
20682         }
20683     },
20684     5.029002 => {
20685         delta_from => 5.029001,
20686         changed => {
20687         },
20688         removed => {
20689         }
20690     },
20691     5.029003 => {
20692         delta_from => 5.029002,
20693         changed => {
20694         },
20695         removed => {
20696         }
20697     },
20698     5.029004 => {
20699         delta_from => 5.029003,
20700         changed => {
20701         },
20702         removed => {
20703             arybase => '1',
20704         }
20705     },
20706     5.029005 => {
20707         delta_from => 5.027002,
20708         changed => {
20709         },
20710         removed => {
20711         }
20712     },
20713     5.026003 => {
20714         delta_from => 5.026002,
20715         changed => {
20716         },
20717         removed => {
20718         }
20719     },
20720     5.028001 => {
20721         delta_from => 5.028000,
20722         changed => {
20723         },
20724         removed => {
20725         }
20726     },
20727     5.029006 => {
20728         delta_from => 5.029005,
20729         changed => {
20730         },
20731         removed => {
20732         }
20733     },
20734     5.029007 => {
20735         delta_from => 5.029006,
20736         changed => {
20737         },
20738         removed => {
20739         }
20740     },
20741     5.029008 => {
20742         delta_from => 5.029007,
20743         changed => {
20744         },
20745         removed => {
20746         }
20747     },
20748     5.029009 => {
20749         delta_from => 5.029008,
20750         changed => {
20751         },
20752         removed => {
20753         }
20754     },
20755     5.028002 => {
20756         delta_from => 5.028001,
20757         changed => {
20758         },
20759         removed => {
20760         }
20761     },
20762     5.029010 => {
20763         delta_from => 5.029009,
20764         changed => {
20765         },
20766         removed => {
20767         }
20768     },
20769     5.030000 => {
20770         delta_from => 5.02901,
20771         changed => {
20772         },
20773         removed => {
20774         }
20775     },
20776     5.031000 => {
20777         delta_from => 5.030000,
20778         changed => {
20779         },
20780         removed => {
20781         }
20782     },
20783     5.031001 => {
20784         delta_from => 5.031000,
20785         changed => {
20786         },
20787         removed => {
20788         }
20789     },
20790     5.031002 => {
20791         delta_from => 5.031001,
20792         changed => {
20793         },
20794         removed => {
20795         }
20796     },
20797     5.031003 => {
20798         delta_from => 5.031002,
20799         changed => {
20800         },
20801         removed => {
20802         }
20803     },
20804     5.031004 => {
20805         delta_from => 5.031003,
20806         changed => {
20807         },
20808         removed => {
20809         }
20810     },
20811     5.031005 => {
20812         delta_from => 5.031004,
20813         changed => {
20814         },
20815         removed => {
20816         }
20817     },
20818     5.030001 => {
20819         delta_from => 5.030000,
20820         changed => {
20821         },
20822         removed => {
20823         }
20824     },
20825     5.031006 => {
20826         delta_from => 5.031005,
20827         changed => {
20828         },
20829         removed => {
20830         }
20831     },
20832     5.031007 => {
20833         delta_from => 5.031006,
20834         changed => {
20835         },
20836         removed => {
20837         }
20838     },
20839     5.031008 => {
20840         delta_from => 5.031007,
20841         changed => {
20842         },
20843         removed => {
20844         }
20845     },
20846     5.031009 => {
20847         delta_from => 5.031008,
20848         changed => {
20849         },
20850         removed => {
20851         }
20852     },
20853     5.030002 => {
20854         delta_from => 5.030001,
20855         changed => {
20856         },
20857         removed => {
20858         }
20859     },
20860     5.031010 => {
20861         delta_from => 5.031009,
20862         changed => {
20863         },
20864         removed => {
20865         }
20866     },
20867     5.031011 => {
20868         delta_from => 5.03101,
20869         changed => {
20870         },
20871         removed => {
20872         }
20873     },
20874     5.028003 => {
20875         delta_from => 5.028002,
20876         changed => {
20877         },
20878         removed => {
20879         }
20880     },
20881     5.030003 => {
20882         delta_from => 5.030002,
20883         changed => {
20884         },
20885         removed => {
20886         }
20887     },
20888     5.032000 => {
20889         delta_from => 5.031011,
20890         changed => {
20891         },
20892         removed => {
20893         }
20894     },
20895     5.033000 => {
20896         delta_from => 5.032,
20897         changed => {
20898         },
20899         removed => {
20900         }
20901     },
20902     5.033001 => {
20903         delta_from => 5.033000,
20904         changed => {
20905         },
20906         removed => {
20907         }
20908     },
20909     5.033002 => {
20910         delta_from => 5.033001,
20911         changed => {
20912         },
20913         removed => {
20914         }
20915     },
20916     5.033003 => {
20917         delta_from => 5.033002,
20918         changed => {
20919         },
20920         removed => {
20921         }
20922     },
20923     5.033004 => {
20924         delta_from => 5.033003,
20925         changed => {
20926         },
20927         removed => {
20928         }
20929     },
20930     5.033005 => {
20931         delta_from => 5.033004,
20932         changed => {
20933         },
20934         removed => {
20935         }
20936     },
20937     5.033006 => {
20938         delta_from => 5.033005,
20939         changed => {
20940         },
20941         removed => {
20942         }
20943     },
20944     5.032001 => {
20945         delta_from => 5.032,
20946         changed => {
20947         },
20948         removed => {
20949         }
20950     },
20951     5.033007 => {
20952         delta_from => 5.033006,
20953         changed => {
20954         },
20955         removed => {
20956         }
20957     },
20958     5.033008 => {
20959         delta_from => 5.033007,
20960         changed => {
20961         },
20962         removed => {
20963         }
20964     },
20965     5.033009 => {
20966         delta_from => 5.033008,
20967         changed => {
20968         },
20969         removed => {
20970         }
20971     },
20972     5.034000 => {
20973         delta_from => 5.033009,
20974         changed => {
20975         },
20976         removed => {
20977         }
20978     },
20979     5.035000 => {
20980         delta_from => 5.034,
20981         changed => {
20982         },
20983         removed => {
20984         }
20985     },
20986     5.035001 => {
20987         delta_from => 5.035,
20988         changed => {
20989         },
20990         removed => {
20991         }
20992     },
20993     5.035002 => {
20994         delta_from => 5.035001,
20995         changed => {
20996         },
20997         removed => {
20998         }
20999     },
21000     5.035003 => {
21001         delta_from => 5.035002,
21002         changed => {
21003         },
21004         removed => {
21005         }
21006     },
21007     5.035004 => {
21008         delta_from => 5.035003,
21009         changed => {
21010         },
21011         removed => {
21012         }
21013     },
21014     5.035005 => {
21015         delta_from => 5.035004,
21016         changed => {
21017         },
21018         removed => {
21019         }
21020     },
21021     5.035006 => {
21022         delta_from => 5.035005,
21023         changed => {
21024         },
21025         removed => {
21026         }
21027     },
21028     5.035007 => {
21029         delta_from => 5.035006,
21030         changed => {
21031         },
21032         removed => {
21033         }
21034     },
21035     5.035008 => {
21036         delta_from => 5.035007,
21037         changed => {
21038         },
21039         removed => {
21040         }
21041     },
21042     5.035009 => {
21043         delta_from => 5.035008,
21044         changed => {
21045         },
21046         removed => {
21047         }
21048     },
21049     5.034001 => {
21050         delta_from => 5.034000,
21051         changed => {
21052         },
21053         removed => {
21054         }
21055     },
21056     5.035010 => {
21057         delta_from => 5.035009,
21058         changed => {
21059         },
21060         removed => {
21061         }
21062     },
21063     5.035011 => {
21064         delta_from => 5.035010,
21065         changed => {
21066         },
21067         removed => {
21068         }
21069     },
21070     5.036000 => {
21071         delta_from => 5.035011,
21072         changed => {
21073         },
21074         removed => {
21075         }
21076     },
21077     5.037000 => {
21078         delta_from => 5.036000,
21079         changed => {
21080         },
21081         removed => {
21082         }
21083     },
21084     5.037001 => {
21085         delta_from => 5.037000,
21086         changed => {
21087         },
21088         removed => {
21089         }
21090     },
21091     5.037002 => {
21092         delta_from => 5.037001,
21093         changed => {
21094         },
21095         removed => {
21096         }
21097     },
21098     5.037003 => {
21099         delta_from => 5.037002,
21100         changed => {
21101         },
21102         removed => {
21103         }
21104     },
21105     5.037004 => {
21106         delta_from => 5.037003,
21107         changed => {
21108         },
21109         removed => {
21110         }
21111     },
21112     5.037005 => {
21113         delta_from => 5.037004,
21114         changed => {
21115         },
21116         removed => {
21117         }
21118     },
21119 );
21120
21121 %deprecated = _undelta(\%deprecated);
21122
21123 %upstream = (
21124     'App::Cpan'             => 'cpan',
21125     'App::Prove'            => 'cpan',
21126     'App::Prove::State'     => 'cpan',
21127     'App::Prove::State::Result'=> 'cpan',
21128     'App::Prove::State::Result::Test'=> 'cpan',
21129     'Archive::Tar'          => 'cpan',
21130     'Archive::Tar::Constant'=> 'cpan',
21131     'Archive::Tar::File'    => 'cpan',
21132     'AutoLoader'            => 'cpan',
21133     'AutoSplit'             => 'cpan',
21134     'CPAN'                  => 'cpan',
21135     'CPAN::Author'          => 'cpan',
21136     'CPAN::Bundle'          => 'cpan',
21137     'CPAN::CacheMgr'        => 'cpan',
21138     'CPAN::Complete'        => 'cpan',
21139     'CPAN::Debug'           => 'cpan',
21140     'CPAN::DeferredCode'    => 'cpan',
21141     'CPAN::Distribution'    => 'cpan',
21142     'CPAN::Distroprefs'     => 'cpan',
21143     'CPAN::Distrostatus'    => 'cpan',
21144     'CPAN::Exception::RecursiveDependency'=> 'cpan',
21145     'CPAN::Exception::blocked_urllist'=> 'cpan',
21146     'CPAN::Exception::yaml_not_installed'=> 'cpan',
21147     'CPAN::Exception::yaml_process_error'=> 'cpan',
21148     'CPAN::FTP'             => 'cpan',
21149     'CPAN::FTP::netrc'      => 'cpan',
21150     'CPAN::FirstTime'       => 'cpan',
21151     'CPAN::HTTP::Client'    => 'cpan',
21152     'CPAN::HTTP::Credentials'=> 'cpan',
21153     'CPAN::HandleConfig'    => 'cpan',
21154     'CPAN::Index'           => 'cpan',
21155     'CPAN::InfoObj'         => 'cpan',
21156     'CPAN::Kwalify'         => 'cpan',
21157     'CPAN::LWP::UserAgent'  => 'cpan',
21158     'CPAN::Meta'            => 'cpan',
21159     'CPAN::Meta::Converter' => 'cpan',
21160     'CPAN::Meta::Feature'   => 'cpan',
21161     'CPAN::Meta::History'   => 'cpan',
21162     'CPAN::Meta::Merge'     => 'cpan',
21163     'CPAN::Meta::Prereqs'   => 'cpan',
21164     'CPAN::Meta::Requirements'=> 'cpan',
21165     'CPAN::Meta::Spec'      => 'cpan',
21166     'CPAN::Meta::Validator' => 'cpan',
21167     'CPAN::Meta::YAML'      => 'cpan',
21168     'CPAN::Mirrors'         => 'cpan',
21169     'CPAN::Module'          => 'cpan',
21170     'CPAN::Nox'             => 'cpan',
21171     'CPAN::Plugin'          => 'cpan',
21172     'CPAN::Plugin::Specfile'=> 'cpan',
21173     'CPAN::Prompt'          => 'cpan',
21174     'CPAN::Queue'           => 'cpan',
21175     'CPAN::Shell'           => 'cpan',
21176     'CPAN::Tarzip'          => 'cpan',
21177     'CPAN::URL'             => 'cpan',
21178     'CPAN::Version'         => 'cpan',
21179     'Compress::Raw::Bzip2'  => 'cpan',
21180     'Compress::Raw::Zlib'   => 'cpan',
21181     'Compress::Zlib'        => 'cpan',
21182     'Config::Perl::V'       => 'cpan',
21183     'DB_File'               => 'cpan',
21184     'Digest'                => 'cpan',
21185     'Digest::MD5'           => 'cpan',
21186     'Digest::SHA'           => 'cpan',
21187     'Digest::base'          => 'cpan',
21188     'Digest::file'          => 'cpan',
21189     'Encode'                => 'cpan',
21190     'Encode::Alias'         => 'cpan',
21191     'Encode::Byte'          => 'cpan',
21192     'Encode::CJKConstants'  => 'cpan',
21193     'Encode::CN'            => 'cpan',
21194     'Encode::CN::HZ'        => 'cpan',
21195     'Encode::Config'        => 'cpan',
21196     'Encode::EBCDIC'        => 'cpan',
21197     'Encode::Encoder'       => 'cpan',
21198     'Encode::Encoding'      => 'cpan',
21199     'Encode::GSM0338'       => 'cpan',
21200     'Encode::Guess'         => 'cpan',
21201     'Encode::JP'            => 'cpan',
21202     'Encode::JP::H2Z'       => 'cpan',
21203     'Encode::JP::JIS7'      => 'cpan',
21204     'Encode::KR'            => 'cpan',
21205     'Encode::KR::2022_KR'   => 'cpan',
21206     'Encode::MIME::Header'  => 'cpan',
21207     'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
21208     'Encode::MIME::Name'    => 'cpan',
21209     'Encode::Symbol'        => 'cpan',
21210     'Encode::TW'            => 'cpan',
21211     'Encode::Unicode'       => 'cpan',
21212     'Encode::Unicode::UTF7' => 'cpan',
21213     'ExtUtils::Command'     => 'cpan',
21214     'ExtUtils::Command::MM' => 'cpan',
21215     'ExtUtils::Constant'    => 'cpan',
21216     'ExtUtils::Constant::Base'=> 'cpan',
21217     'ExtUtils::Constant::ProxySubs'=> 'cpan',
21218     'ExtUtils::Constant::Utils'=> 'cpan',
21219     'ExtUtils::Constant::XS'=> 'cpan',
21220     'ExtUtils::Install'     => 'cpan',
21221     'ExtUtils::Installed'   => 'cpan',
21222     'ExtUtils::Liblist'     => 'cpan',
21223     'ExtUtils::Liblist::Kid'=> 'cpan',
21224     'ExtUtils::MM'          => 'cpan',
21225     'ExtUtils::MM_AIX'      => 'cpan',
21226     'ExtUtils::MM_Any'      => 'cpan',
21227     'ExtUtils::MM_BeOS'     => 'cpan',
21228     'ExtUtils::MM_Cygwin'   => 'cpan',
21229     'ExtUtils::MM_DOS'      => 'cpan',
21230     'ExtUtils::MM_Darwin'   => 'cpan',
21231     'ExtUtils::MM_MacOS'    => 'cpan',
21232     'ExtUtils::MM_NW5'      => 'cpan',
21233     'ExtUtils::MM_OS2'      => 'cpan',
21234     'ExtUtils::MM_OS390'    => 'cpan',
21235     'ExtUtils::MM_QNX'      => 'cpan',
21236     'ExtUtils::MM_UWIN'     => 'cpan',
21237     'ExtUtils::MM_Unix'     => 'cpan',
21238     'ExtUtils::MM_VMS'      => 'cpan',
21239     'ExtUtils::MM_VOS'      => 'cpan',
21240     'ExtUtils::MM_Win32'    => 'cpan',
21241     'ExtUtils::MM_Win95'    => 'cpan',
21242     'ExtUtils::MY'          => 'cpan',
21243     'ExtUtils::MakeMaker'   => 'cpan',
21244     'ExtUtils::MakeMaker::Config'=> 'cpan',
21245     'ExtUtils::MakeMaker::Locale'=> 'cpan',
21246     'ExtUtils::MakeMaker::version'=> 'cpan',
21247     'ExtUtils::MakeMaker::version::regex'=> 'cpan',
21248     'ExtUtils::Manifest'    => 'cpan',
21249     'ExtUtils::Mkbootstrap' => 'cpan',
21250     'ExtUtils::Mksymlists'  => 'cpan',
21251     'ExtUtils::PL2Bat'      => 'cpan',
21252     'ExtUtils::Packlist'    => 'cpan',
21253     'ExtUtils::testlib'     => 'cpan',
21254     'Fatal'                 => 'cpan',
21255     'File::Fetch'           => 'cpan',
21256     'File::GlobMapper'      => 'cpan',
21257     'File::Path'            => 'cpan',
21258     'File::Temp'            => 'cpan',
21259     'Filter::Util::Call'    => 'cpan',
21260     'Getopt::Long'          => 'cpan',
21261     'HTTP::Tiny'            => 'cpan',
21262     'IO::Compress::Adapter::Bzip2'=> 'cpan',
21263     'IO::Compress::Adapter::Deflate'=> 'cpan',
21264     'IO::Compress::Adapter::Identity'=> 'cpan',
21265     'IO::Compress::Base'    => 'cpan',
21266     'IO::Compress::Base::Common'=> 'cpan',
21267     'IO::Compress::Bzip2'   => 'cpan',
21268     'IO::Compress::Deflate' => 'cpan',
21269     'IO::Compress::Gzip'    => 'cpan',
21270     'IO::Compress::Gzip::Constants'=> 'cpan',
21271     'IO::Compress::RawDeflate'=> 'cpan',
21272     'IO::Compress::Zip'     => 'cpan',
21273     'IO::Compress::Zip::Constants'=> 'cpan',
21274     'IO::Compress::Zlib::Constants'=> 'cpan',
21275     'IO::Compress::Zlib::Extra'=> 'cpan',
21276     'IO::Socket::IP'        => 'cpan',
21277     'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
21278     'IO::Uncompress::Adapter::Identity'=> 'cpan',
21279     'IO::Uncompress::Adapter::Inflate'=> 'cpan',
21280     'IO::Uncompress::AnyInflate'=> 'cpan',
21281     'IO::Uncompress::AnyUncompress'=> 'cpan',
21282     'IO::Uncompress::Base'  => 'cpan',
21283     'IO::Uncompress::Bunzip2'=> 'cpan',
21284     'IO::Uncompress::Gunzip'=> 'cpan',
21285     'IO::Uncompress::Inflate'=> 'cpan',
21286     'IO::Uncompress::RawInflate'=> 'cpan',
21287     'IO::Uncompress::Unzip' => 'cpan',
21288     'IO::Zlib'              => 'cpan',
21289     'IPC::Cmd'              => 'cpan',
21290     'IPC::Msg'              => 'cpan',
21291     'IPC::Semaphore'        => 'cpan',
21292     'IPC::SharedMem'        => 'cpan',
21293     'IPC::SysV'             => 'cpan',
21294     'JSON::PP'              => 'cpan',
21295     'JSON::PP::Boolean'     => 'cpan',
21296     'List::Util'            => 'cpan',
21297     'List::Util::XS'        => 'cpan',
21298     'Locale::Maketext::Simple'=> 'cpan',
21299     'MIME::Base64'          => 'cpan',
21300     'MIME::QuotedPrint'     => 'cpan',
21301     'Math::BigFloat'        => 'cpan',
21302     'Math::BigFloat::Trace' => 'cpan',
21303     'Math::BigInt'          => 'cpan',
21304     'Math::BigInt::Calc'    => 'cpan',
21305     'Math::BigInt::FastCalc'=> 'cpan',
21306     'Math::BigInt::Lib'     => 'cpan',
21307     'Math::BigInt::Trace'   => 'cpan',
21308     'Math::BigRat'          => 'cpan',
21309     'Math::BigRat::Trace'   => 'cpan',
21310     'Math::Complex'         => 'cpan',
21311     'Math::Trig'            => 'cpan',
21312     'Memoize'               => 'cpan',
21313     'Memoize::AnyDBM_File'  => 'cpan',
21314     'Memoize::Expire'       => 'cpan',
21315     'Memoize::NDBM_File'    => 'cpan',
21316     'Memoize::SDBM_File'    => 'cpan',
21317     'Memoize::Storable'     => 'cpan',
21318     'Module::Load'          => 'cpan',
21319     'Module::Load::Conditional'=> 'cpan',
21320     'Module::Loaded'        => 'cpan',
21321     'Module::Metadata'      => 'cpan',
21322     'NEXT'                  => 'cpan',
21323     'Net::Cmd'              => 'cpan',
21324     'Net::Config'           => 'cpan',
21325     'Net::Domain'           => 'cpan',
21326     'Net::FTP'              => 'cpan',
21327     'Net::FTP::A'           => 'cpan',
21328     'Net::FTP::E'           => 'cpan',
21329     'Net::FTP::I'           => 'cpan',
21330     'Net::FTP::L'           => 'cpan',
21331     'Net::FTP::dataconn'    => 'cpan',
21332     'Net::NNTP'             => 'cpan',
21333     'Net::Netrc'            => 'cpan',
21334     'Net::POP3'             => 'cpan',
21335     'Net::SMTP'             => 'cpan',
21336     'Net::Time'             => 'cpan',
21337     'Params::Check'         => 'cpan',
21338     'Parse::CPAN::Meta'     => 'cpan',
21339     'Perl::OSType'          => 'cpan',
21340     'PerlIO::via::QuotedPrint'=> 'cpan',
21341     'Pod::Checker'          => 'cpan',
21342     'Pod::Escapes'          => 'cpan',
21343     'Pod::Man'              => 'cpan',
21344     'Pod::ParseLink'        => 'cpan',
21345     'Pod::Perldoc'          => 'cpan',
21346     'Pod::Perldoc::BaseTo'  => 'cpan',
21347     'Pod::Perldoc::GetOptsOO'=> 'cpan',
21348     'Pod::Perldoc::ToANSI'  => 'cpan',
21349     'Pod::Perldoc::ToChecker'=> 'cpan',
21350     'Pod::Perldoc::ToMan'   => 'cpan',
21351     'Pod::Perldoc::ToNroff' => 'cpan',
21352     'Pod::Perldoc::ToPod'   => 'cpan',
21353     'Pod::Perldoc::ToRtf'   => 'cpan',
21354     'Pod::Perldoc::ToTerm'  => 'cpan',
21355     'Pod::Perldoc::ToText'  => 'cpan',
21356     'Pod::Perldoc::ToTk'    => 'cpan',
21357     'Pod::Perldoc::ToXml'   => 'cpan',
21358     'Pod::Simple'           => 'cpan',
21359     'Pod::Simple::BlackBox' => 'cpan',
21360     'Pod::Simple::Checker'  => 'cpan',
21361     'Pod::Simple::Debug'    => 'cpan',
21362     'Pod::Simple::DumpAsText'=> 'cpan',
21363     'Pod::Simple::DumpAsXML'=> 'cpan',
21364     'Pod::Simple::HTML'     => 'cpan',
21365     'Pod::Simple::HTMLBatch'=> 'cpan',
21366     'Pod::Simple::HTMLLegacy'=> 'cpan',
21367     'Pod::Simple::JustPod'  => 'cpan',
21368     'Pod::Simple::LinkSection'=> 'cpan',
21369     'Pod::Simple::Methody'  => 'cpan',
21370     'Pod::Simple::Progress' => 'cpan',
21371     'Pod::Simple::PullParser'=> 'cpan',
21372     'Pod::Simple::PullParserEndToken'=> 'cpan',
21373     'Pod::Simple::PullParserStartToken'=> 'cpan',
21374     'Pod::Simple::PullParserTextToken'=> 'cpan',
21375     'Pod::Simple::PullParserToken'=> 'cpan',
21376     'Pod::Simple::RTF'      => 'cpan',
21377     'Pod::Simple::Search'   => 'cpan',
21378     'Pod::Simple::SimpleTree'=> 'cpan',
21379     'Pod::Simple::Text'     => 'cpan',
21380     'Pod::Simple::TextContent'=> 'cpan',
21381     'Pod::Simple::TiedOutFH'=> 'cpan',
21382     'Pod::Simple::Transcode'=> 'cpan',
21383     'Pod::Simple::TranscodeDumb'=> 'cpan',
21384     'Pod::Simple::TranscodeSmart'=> 'cpan',
21385     'Pod::Simple::XHTML'    => 'cpan',
21386     'Pod::Simple::XMLOutStream'=> 'cpan',
21387     'Pod::Text'             => 'cpan',
21388     'Pod::Text::Color'      => 'cpan',
21389     'Pod::Text::Overstrike' => 'cpan',
21390     'Pod::Text::Termcap'    => 'cpan',
21391     'Pod::Usage'            => 'cpan',
21392     'Scalar::Util'          => 'cpan',
21393     'Socket'                => 'cpan',
21394     'Sub::Util'             => 'cpan',
21395     'Sys::Syslog'           => 'cpan',
21396     'Sys::Syslog::Win32'    => 'cpan',
21397     'TAP::Base'             => 'cpan',
21398     'TAP::Formatter::Base'  => 'cpan',
21399     'TAP::Formatter::Color' => 'cpan',
21400     'TAP::Formatter::Console'=> 'cpan',
21401     'TAP::Formatter::Console::ParallelSession'=> 'cpan',
21402     'TAP::Formatter::Console::Session'=> 'cpan',
21403     'TAP::Formatter::File'  => 'cpan',
21404     'TAP::Formatter::File::Session'=> 'cpan',
21405     'TAP::Formatter::Session'=> 'cpan',
21406     'TAP::Harness'          => 'cpan',
21407     'TAP::Harness::Env'     => 'cpan',
21408     'TAP::Object'           => 'cpan',
21409     'TAP::Parser'           => 'cpan',
21410     'TAP::Parser::Aggregator'=> 'cpan',
21411     'TAP::Parser::Grammar'  => 'cpan',
21412     'TAP::Parser::Iterator' => 'cpan',
21413     'TAP::Parser::Iterator::Array'=> 'cpan',
21414     'TAP::Parser::Iterator::Process'=> 'cpan',
21415     'TAP::Parser::Iterator::Stream'=> 'cpan',
21416     'TAP::Parser::IteratorFactory'=> 'cpan',
21417     'TAP::Parser::Multiplexer'=> 'cpan',
21418     'TAP::Parser::Result'   => 'cpan',
21419     'TAP::Parser::Result::Bailout'=> 'cpan',
21420     'TAP::Parser::Result::Comment'=> 'cpan',
21421     'TAP::Parser::Result::Plan'=> 'cpan',
21422     'TAP::Parser::Result::Pragma'=> 'cpan',
21423     'TAP::Parser::Result::Test'=> 'cpan',
21424     'TAP::Parser::Result::Unknown'=> 'cpan',
21425     'TAP::Parser::Result::Version'=> 'cpan',
21426     'TAP::Parser::Result::YAML'=> 'cpan',
21427     'TAP::Parser::ResultFactory'=> 'cpan',
21428     'TAP::Parser::Scheduler'=> 'cpan',
21429     'TAP::Parser::Scheduler::Job'=> 'cpan',
21430     'TAP::Parser::Scheduler::Spinner'=> 'cpan',
21431     'TAP::Parser::Source'   => 'cpan',
21432     'TAP::Parser::SourceHandler'=> 'cpan',
21433     'TAP::Parser::SourceHandler::Executable'=> 'cpan',
21434     'TAP::Parser::SourceHandler::File'=> 'cpan',
21435     'TAP::Parser::SourceHandler::Handle'=> 'cpan',
21436     'TAP::Parser::SourceHandler::Perl'=> 'cpan',
21437     'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
21438     'TAP::Parser::YAMLish::Reader'=> 'cpan',
21439     'TAP::Parser::YAMLish::Writer'=> 'cpan',
21440     'Term::ANSIColor'       => 'cpan',
21441     'Term::Cap'             => 'cpan',
21442     'Test2'                 => 'cpan',
21443     'Test2::API'            => 'cpan',
21444     'Test2::API::Breakage'  => 'cpan',
21445     'Test2::API::Context'   => 'cpan',
21446     'Test2::API::Instance'  => 'cpan',
21447     'Test2::API::InterceptResult'=> 'cpan',
21448     'Test2::API::InterceptResult::Event'=> 'cpan',
21449     'Test2::API::InterceptResult::Facet'=> 'cpan',
21450     'Test2::API::InterceptResult::Hub'=> 'cpan',
21451     'Test2::API::InterceptResult::Squasher'=> 'cpan',
21452     'Test2::API::Stack'     => 'cpan',
21453     'Test2::Event'          => 'cpan',
21454     'Test2::Event::Bail'    => 'cpan',
21455     'Test2::Event::Diag'    => 'cpan',
21456     'Test2::Event::Encoding'=> 'cpan',
21457     'Test2::Event::Exception'=> 'cpan',
21458     'Test2::Event::Fail'    => 'cpan',
21459     'Test2::Event::Generic' => 'cpan',
21460     'Test2::Event::Note'    => 'cpan',
21461     'Test2::Event::Ok'      => 'cpan',
21462     'Test2::Event::Pass'    => 'cpan',
21463     'Test2::Event::Plan'    => 'cpan',
21464     'Test2::Event::Skip'    => 'cpan',
21465     'Test2::Event::Subtest' => 'cpan',
21466     'Test2::Event::TAP::Version'=> 'cpan',
21467     'Test2::Event::V2'      => 'cpan',
21468     'Test2::Event::Waiting' => 'cpan',
21469     'Test2::EventFacet'     => 'cpan',
21470     'Test2::EventFacet::About'=> 'cpan',
21471     'Test2::EventFacet::Amnesty'=> 'cpan',
21472     'Test2::EventFacet::Assert'=> 'cpan',
21473     'Test2::EventFacet::Control'=> 'cpan',
21474     'Test2::EventFacet::Error'=> 'cpan',
21475     'Test2::EventFacet::Hub'=> 'cpan',
21476     'Test2::EventFacet::Info'=> 'cpan',
21477     'Test2::EventFacet::Info::Table'=> 'cpan',
21478     'Test2::EventFacet::Meta'=> 'cpan',
21479     'Test2::EventFacet::Parent'=> 'cpan',
21480     'Test2::EventFacet::Plan'=> 'cpan',
21481     'Test2::EventFacet::Render'=> 'cpan',
21482     'Test2::EventFacet::Trace'=> 'cpan',
21483     'Test2::Formatter'      => 'cpan',
21484     'Test2::Formatter::TAP' => 'cpan',
21485     'Test2::Hub'            => 'cpan',
21486     'Test2::Hub::Interceptor'=> 'cpan',
21487     'Test2::Hub::Interceptor::Terminator'=> 'cpan',
21488     'Test2::Hub::Subtest'   => 'cpan',
21489     'Test2::IPC'            => 'cpan',
21490     'Test2::IPC::Driver'    => 'cpan',
21491     'Test2::IPC::Driver::Files'=> 'cpan',
21492     'Test2::Tools::Tiny'    => 'cpan',
21493     'Test2::Util'           => 'cpan',
21494     'Test2::Util::ExternalMeta'=> 'cpan',
21495     'Test2::Util::Facets2Legacy'=> 'cpan',
21496     'Test2::Util::HashBase' => 'cpan',
21497     'Test2::Util::Trace'    => 'cpan',
21498     'Test::Builder'         => 'cpan',
21499     'Test::Builder::Formatter'=> 'cpan',
21500     'Test::Builder::IO::Scalar'=> 'cpan',
21501     'Test::Builder::Module' => 'cpan',
21502     'Test::Builder::Tester' => 'cpan',
21503     'Test::Builder::Tester::Color'=> 'cpan',
21504     'Test::Builder::TodoDiag'=> 'cpan',
21505     'Test::Harness'         => 'cpan',
21506     'Test::More'            => 'cpan',
21507     'Test::Simple'          => 'cpan',
21508     'Test::Tester'          => 'cpan',
21509     'Test::Tester::Capture' => 'cpan',
21510     'Test::Tester::CaptureRunner'=> 'cpan',
21511     'Test::Tester::Delegate'=> 'cpan',
21512     'Test::use::ok'         => 'cpan',
21513     'Text::Balanced'        => 'cpan',
21514     'Text::ParseWords'      => 'cpan',
21515     'Text::Tabs'            => 'cpan',
21516     'Text::Wrap'            => 'cpan',
21517     'Tie::RefHash'          => 'cpan',
21518     'Time::Local'           => 'cpan',
21519     'Time::Piece'           => 'cpan',
21520     'Time::Seconds'         => 'cpan',
21521     'Unicode::Collate'      => 'cpan',
21522     'Unicode::Collate::CJK::Big5'=> 'cpan',
21523     'Unicode::Collate::CJK::GB2312'=> 'cpan',
21524     'Unicode::Collate::CJK::JISX0208'=> 'cpan',
21525     'Unicode::Collate::CJK::Korean'=> 'cpan',
21526     'Unicode::Collate::CJK::Pinyin'=> 'cpan',
21527     'Unicode::Collate::CJK::Stroke'=> 'cpan',
21528     'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
21529     'Unicode::Collate::Locale'=> 'cpan',
21530     'Win32'                 => 'cpan',
21531     'Win32API::File'        => 'cpan',
21532     'autodie'               => 'cpan',
21533     'autodie::Scope::Guard' => 'cpan',
21534     'autodie::Scope::GuardStack'=> 'cpan',
21535     'autodie::Util'         => 'cpan',
21536     'autodie::exception'    => 'cpan',
21537     'autodie::exception::system'=> 'cpan',
21538     'autodie::hints'        => 'cpan',
21539     'autodie::skip'         => 'cpan',
21540     'bigfloat'              => 'cpan',
21541     'bigint'                => 'cpan',
21542     'bignum'                => 'cpan',
21543     'bigrat'                => 'cpan',
21544     'encoding'              => 'cpan',
21545     'experimental'          => 'cpan',
21546     'ok'                    => 'cpan',
21547     'parent'                => 'cpan',
21548     'perlfaq'               => 'cpan',
21549     'version'               => 'cpan',
21550     'version::regex'        => 'cpan',
21551 );
21552
21553 %bug_tracker = (
21554     'App::Cpan'             => undef,
21555     'App::Prove'            => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21556     'App::Prove::State'     => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21557     'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21558     'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21559     'Archive::Tar'          => undef,
21560     'Archive::Tar::Constant'=> undef,
21561     'Archive::Tar::File'    => undef,
21562     'CPAN'                  => undef,
21563     'CPAN::Author'          => undef,
21564     'CPAN::Bundle'          => undef,
21565     'CPAN::CacheMgr'        => undef,
21566     'CPAN::Complete'        => undef,
21567     'CPAN::Debug'           => undef,
21568     'CPAN::DeferredCode'    => undef,
21569     'CPAN::Distribution'    => undef,
21570     'CPAN::Distroprefs'     => undef,
21571     'CPAN::Distrostatus'    => undef,
21572     'CPAN::Exception::RecursiveDependency'=> undef,
21573     'CPAN::Exception::blocked_urllist'=> undef,
21574     'CPAN::Exception::yaml_not_installed'=> undef,
21575     'CPAN::Exception::yaml_process_error'=> undef,
21576     'CPAN::FTP'             => undef,
21577     'CPAN::FTP::netrc'      => undef,
21578     'CPAN::FirstTime'       => undef,
21579     'CPAN::HTTP::Client'    => undef,
21580     'CPAN::HTTP::Credentials'=> undef,
21581     'CPAN::HandleConfig'    => undef,
21582     'CPAN::Index'           => undef,
21583     'CPAN::InfoObj'         => undef,
21584     'CPAN::Kwalify'         => undef,
21585     'CPAN::LWP::UserAgent'  => undef,
21586     'CPAN::Meta'            => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
21587     'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
21588     'CPAN::Meta::Feature'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
21589     'CPAN::Meta::History'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
21590     'CPAN::Meta::Merge'     => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
21591     'CPAN::Meta::Prereqs'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
21592     'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
21593     'CPAN::Meta::Spec'      => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
21594     'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
21595     'CPAN::Meta::YAML'      => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
21596     'CPAN::Mirrors'         => undef,
21597     'CPAN::Module'          => undef,
21598     'CPAN::Nox'             => undef,
21599     'CPAN::Plugin'          => undef,
21600     'CPAN::Plugin::Specfile'=> undef,
21601     'CPAN::Prompt'          => undef,
21602     'CPAN::Queue'           => undef,
21603     'CPAN::Shell'           => undef,
21604     'CPAN::Tarzip'          => undef,
21605     'CPAN::URL'             => undef,
21606     'CPAN::Version'         => undef,
21607     'Compress::Raw::Bzip2'  => 'https://github.com/pmqs/Compress-Raw-Bzip2/issues',
21608     'Compress::Raw::Zlib'   => 'https://github.com/pmqs/Compress-Raw-Zlib/issues',
21609     'Compress::Zlib'        => 'https://github.com/pmqs/IO-Compress/issues',
21610     'Config::Perl::V'       => 'https://github.com/Tux/Config-Perl-V/issues',
21611     'DB_File'               => 'https://github.com/pmqs/DB_File/issues',
21612     'Digest'                => 'https://github.com/Dual-Life/digest/issues',
21613     'Digest::MD5'           => 'https://github.com/Dual-Life/digest-md5/issues',
21614     'Digest::SHA'           => undef,
21615     'Digest::base'          => 'https://github.com/Dual-Life/digest/issues',
21616     'Digest::file'          => 'https://github.com/Dual-Life/digest/issues',
21617     'Encode'                => undef,
21618     'Encode::Alias'         => undef,
21619     'Encode::Byte'          => undef,
21620     'Encode::CJKConstants'  => undef,
21621     'Encode::CN'            => undef,
21622     'Encode::CN::HZ'        => undef,
21623     'Encode::Config'        => undef,
21624     'Encode::EBCDIC'        => undef,
21625     'Encode::Encoder'       => undef,
21626     'Encode::Encoding'      => undef,
21627     'Encode::GSM0338'       => undef,
21628     'Encode::Guess'         => undef,
21629     'Encode::JP'            => undef,
21630     'Encode::JP::H2Z'       => undef,
21631     'Encode::JP::JIS7'      => undef,
21632     'Encode::KR'            => undef,
21633     'Encode::KR::2022_KR'   => undef,
21634     'Encode::MIME::Header'  => undef,
21635     'Encode::MIME::Header::ISO_2022_JP'=> undef,
21636     'Encode::MIME::Name'    => undef,
21637     'Encode::Symbol'        => undef,
21638     'Encode::TW'            => undef,
21639     'Encode::Unicode'       => undef,
21640     'Encode::Unicode::UTF7' => undef,
21641     'ExtUtils::Command'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21642     'ExtUtils::Command::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21643     'ExtUtils::Constant'    => undef,
21644     'ExtUtils::Constant::Base'=> undef,
21645     'ExtUtils::Constant::ProxySubs'=> undef,
21646     'ExtUtils::Constant::Utils'=> undef,
21647     'ExtUtils::Constant::XS'=> undef,
21648     'ExtUtils::Install'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
21649     'ExtUtils::Installed'   => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
21650     'ExtUtils::Liblist'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21651     'ExtUtils::Liblist::Kid'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21652     'ExtUtils::MM'          => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21653     'ExtUtils::MM_AIX'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21654     'ExtUtils::MM_Any'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21655     'ExtUtils::MM_BeOS'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21656     'ExtUtils::MM_Cygwin'   => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21657     'ExtUtils::MM_DOS'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21658     'ExtUtils::MM_Darwin'   => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21659     'ExtUtils::MM_MacOS'    => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21660     'ExtUtils::MM_NW5'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21661     'ExtUtils::MM_OS2'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21662     'ExtUtils::MM_OS390'    => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21663     'ExtUtils::MM_QNX'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21664     'ExtUtils::MM_UWIN'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21665     'ExtUtils::MM_Unix'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21666     'ExtUtils::MM_VMS'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21667     'ExtUtils::MM_VOS'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21668     'ExtUtils::MM_Win32'    => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21669     'ExtUtils::MM_Win95'    => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21670     'ExtUtils::MY'          => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21671     'ExtUtils::MakeMaker'   => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21672     'ExtUtils::MakeMaker::Config'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21673     'ExtUtils::MakeMaker::Locale'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21674     'ExtUtils::MakeMaker::version'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21675     'ExtUtils::MakeMaker::version::regex'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21676     'ExtUtils::Manifest'    => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
21677     'ExtUtils::Mkbootstrap' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21678     'ExtUtils::Mksymlists'  => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21679     'ExtUtils::PL2Bat'      => 'https://github.com/Perl-Toolchain-Gang/extutils-pl2bat/issues',
21680     'ExtUtils::Packlist'    => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
21681     'ExtUtils::testlib'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
21682     'Fatal'                 => 'https://github.com/pjf/autodie/issues',
21683     'File::Fetch'           => undef,
21684     'File::GlobMapper'      => 'https://github.com/pmqs/IO-Compress/issues',
21685     'File::Path'            => undef,
21686     'File::Temp'            => 'https://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
21687     'Filter::Util::Call'    => undef,
21688     'Getopt::Long'          => undef,
21689     'HTTP::Tiny'            => 'https://github.com/chansen/p5-http-tiny/issues',
21690     'IO::Compress::Adapter::Bzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
21691     'IO::Compress::Adapter::Deflate'=> 'https://github.com/pmqs/IO-Compress/issues',
21692     'IO::Compress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
21693     'IO::Compress::Base'    => 'https://github.com/pmqs/IO-Compress/issues',
21694     'IO::Compress::Base::Common'=> 'https://github.com/pmqs/IO-Compress/issues',
21695     'IO::Compress::Bzip2'   => 'https://github.com/pmqs/IO-Compress/issues',
21696     'IO::Compress::Deflate' => 'https://github.com/pmqs/IO-Compress/issues',
21697     'IO::Compress::Gzip'    => 'https://github.com/pmqs/IO-Compress/issues',
21698     'IO::Compress::Gzip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
21699     'IO::Compress::RawDeflate'=> 'https://github.com/pmqs/IO-Compress/issues',
21700     'IO::Compress::Zip'     => 'https://github.com/pmqs/IO-Compress/issues',
21701     'IO::Compress::Zip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
21702     'IO::Compress::Zlib::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
21703     'IO::Compress::Zlib::Extra'=> 'https://github.com/pmqs/IO-Compress/issues',
21704     'IO::Socket::IP'        => undef,
21705     'IO::Uncompress::Adapter::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
21706     'IO::Uncompress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
21707     'IO::Uncompress::Adapter::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
21708     'IO::Uncompress::AnyInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
21709     'IO::Uncompress::AnyUncompress'=> 'https://github.com/pmqs/IO-Compress/issues',
21710     'IO::Uncompress::Base'  => 'https://github.com/pmqs/IO-Compress/issues',
21711     'IO::Uncompress::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
21712     'IO::Uncompress::Gunzip'=> 'https://github.com/pmqs/IO-Compress/issues',
21713     'IO::Uncompress::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
21714     'IO::Uncompress::RawInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
21715     'IO::Uncompress::Unzip' => 'https://github.com/pmqs/IO-Compress/issues',
21716     'IO::Zlib'              => 'https://github.com/tomhughes/IO-Zlib/issues',
21717     'IPC::Cmd'              => undef,
21718     'IPC::Msg'              => undef,
21719     'IPC::Semaphore'        => undef,
21720     'IPC::SharedMem'        => undef,
21721     'IPC::SysV'             => undef,
21722     'JSON::PP'              => 'https://github.com/makamaka/JSON-PP/issues',
21723     'JSON::PP::Boolean'     => 'https://github.com/makamaka/JSON-PP/issues',
21724     'List::Util'            => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
21725     'List::Util::XS'        => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
21726     'Locale::Maketext::Simple'=> undef,
21727     'MIME::Base64'          => 'https://github.com/Dual-Life/mime-base64/issues',
21728     'MIME::QuotedPrint'     => 'https://github.com/Dual-Life/mime-base64/issues',
21729     'Math::BigFloat'        => undef,
21730     'Math::BigFloat::Trace' => undef,
21731     'Math::BigInt'          => undef,
21732     'Math::BigInt::Calc'    => undef,
21733     'Math::BigInt::FastCalc'=> undef,
21734     'Math::BigInt::Lib'     => undef,
21735     'Math::BigInt::Trace'   => undef,
21736     'Math::BigRat'          => undef,
21737     'Math::BigRat::Trace'   => undef,
21738     'Math::Complex'         => undef,
21739     'Math::Trig'            => undef,
21740     'Memoize'               => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
21741     'Memoize::AnyDBM_File'  => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
21742     'Memoize::Expire'       => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
21743     'Memoize::NDBM_File'    => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
21744     'Memoize::SDBM_File'    => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
21745     'Memoize::Storable'     => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
21746     'Module::Load'          => undef,
21747     'Module::Load::Conditional'=> undef,
21748     'Module::Loaded'        => undef,
21749     'Module::Metadata'      => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
21750     'NEXT'                  => undef,
21751     'Net::Cmd'              => undef,
21752     'Net::Config'           => undef,
21753     'Net::Domain'           => undef,
21754     'Net::FTP'              => undef,
21755     'Net::FTP::A'           => undef,
21756     'Net::FTP::E'           => undef,
21757     'Net::FTP::I'           => undef,
21758     'Net::FTP::L'           => undef,
21759     'Net::FTP::dataconn'    => undef,
21760     'Net::NNTP'             => undef,
21761     'Net::Netrc'            => undef,
21762     'Net::POP3'             => undef,
21763     'Net::SMTP'             => undef,
21764     'Net::Time'             => undef,
21765     'Params::Check'         => undef,
21766     'Parse::CPAN::Meta'     => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
21767     'Perl::OSType'          => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
21768     'PerlIO::via::QuotedPrint'=> undef,
21769     'Pod::Checker'          => undef,
21770     'Pod::Escapes'          => undef,
21771     'Pod::Man'              => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
21772     'Pod::ParseLink'        => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
21773     'Pod::Perldoc'          => undef,
21774     'Pod::Perldoc::BaseTo'  => undef,
21775     'Pod::Perldoc::GetOptsOO'=> undef,
21776     'Pod::Perldoc::ToANSI'  => undef,
21777     'Pod::Perldoc::ToChecker'=> undef,
21778     'Pod::Perldoc::ToMan'   => undef,
21779     'Pod::Perldoc::ToNroff' => undef,
21780     'Pod::Perldoc::ToPod'   => undef,
21781     'Pod::Perldoc::ToRtf'   => undef,
21782     'Pod::Perldoc::ToTerm'  => undef,
21783     'Pod::Perldoc::ToText'  => undef,
21784     'Pod::Perldoc::ToTk'    => undef,
21785     'Pod::Perldoc::ToXml'   => undef,
21786     'Pod::Simple'           => 'https://github.com/perl-pod/pod-simple/issues',
21787     'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
21788     'Pod::Simple::Checker'  => 'https://github.com/perl-pod/pod-simple/issues',
21789     'Pod::Simple::Debug'    => 'https://github.com/perl-pod/pod-simple/issues',
21790     'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
21791     'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
21792     'Pod::Simple::HTML'     => 'https://github.com/perl-pod/pod-simple/issues',
21793     'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
21794     'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
21795     'Pod::Simple::JustPod'  => 'https://github.com/perl-pod/pod-simple/issues',
21796     'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
21797     'Pod::Simple::Methody'  => 'https://github.com/perl-pod/pod-simple/issues',
21798     'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
21799     'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
21800     'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
21801     'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
21802     'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
21803     'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
21804     'Pod::Simple::RTF'      => 'https://github.com/perl-pod/pod-simple/issues',
21805     'Pod::Simple::Search'   => 'https://github.com/perl-pod/pod-simple/issues',
21806     'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
21807     'Pod::Simple::Text'     => 'https://github.com/perl-pod/pod-simple/issues',
21808     'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
21809     'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
21810     'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
21811     'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
21812     'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
21813     'Pod::Simple::XHTML'    => 'https://github.com/perl-pod/pod-simple/issues',
21814     'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
21815     'Pod::Text'             => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
21816     'Pod::Text::Color'      => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
21817     'Pod::Text::Overstrike' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
21818     'Pod::Text::Termcap'    => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
21819     'Pod::Usage'            => 'https://github.com/Dual-Life/Pod-Usage/issues',
21820     'Scalar::Util'          => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
21821     'Socket'                => undef,
21822     'Sub::Util'             => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
21823     'Sys::Syslog'           => undef,
21824     'Sys::Syslog::Win32'    => undef,
21825     'TAP::Base'             => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21826     'TAP::Formatter::Base'  => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21827     'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21828     'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21829     'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21830     'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21831     'TAP::Formatter::File'  => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21832     'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21833     'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21834     'TAP::Harness'          => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21835     'TAP::Harness::Env'     => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21836     'TAP::Object'           => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21837     'TAP::Parser'           => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21838     'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21839     'TAP::Parser::Grammar'  => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21840     'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21841     'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21842     'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21843     'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21844     'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21845     'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21846     'TAP::Parser::Result'   => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21847     'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21848     'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21849     'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21850     'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21851     'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21852     'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21853     'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21854     'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21855     'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21856     'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21857     'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21858     'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21859     'TAP::Parser::Source'   => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21860     'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21861     'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21862     'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21863     'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21864     'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21865     'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21866     'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21867     'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21868     'Term::ANSIColor'       => 'https://rt.cpan.org/Dist/Display.html?Name=Term-ANSIColor',
21869     'Term::Cap'             => undef,
21870     'Test2'                 => 'http://github.com/Test-More/test-more/issues',
21871     'Test2::API'            => 'http://github.com/Test-More/test-more/issues',
21872     'Test2::API::Breakage'  => 'http://github.com/Test-More/test-more/issues',
21873     'Test2::API::Context'   => 'http://github.com/Test-More/test-more/issues',
21874     'Test2::API::Instance'  => 'http://github.com/Test-More/test-more/issues',
21875     'Test2::API::InterceptResult'=> 'http://github.com/Test-More/test-more/issues',
21876     'Test2::API::InterceptResult::Event'=> 'http://github.com/Test-More/test-more/issues',
21877     'Test2::API::InterceptResult::Facet'=> 'http://github.com/Test-More/test-more/issues',
21878     'Test2::API::InterceptResult::Hub'=> 'http://github.com/Test-More/test-more/issues',
21879     'Test2::API::InterceptResult::Squasher'=> 'http://github.com/Test-More/test-more/issues',
21880     'Test2::API::Stack'     => 'http://github.com/Test-More/test-more/issues',
21881     'Test2::Event'          => 'http://github.com/Test-More/test-more/issues',
21882     'Test2::Event::Bail'    => 'http://github.com/Test-More/test-more/issues',
21883     'Test2::Event::Diag'    => 'http://github.com/Test-More/test-more/issues',
21884     'Test2::Event::Encoding'=> 'http://github.com/Test-More/test-more/issues',
21885     'Test2::Event::Exception'=> 'http://github.com/Test-More/test-more/issues',
21886     'Test2::Event::Fail'    => 'http://github.com/Test-More/test-more/issues',
21887     'Test2::Event::Generic' => 'http://github.com/Test-More/test-more/issues',
21888     'Test2::Event::Note'    => 'http://github.com/Test-More/test-more/issues',
21889     'Test2::Event::Ok'      => 'http://github.com/Test-More/test-more/issues',
21890     'Test2::Event::Pass'    => 'http://github.com/Test-More/test-more/issues',
21891     'Test2::Event::Plan'    => 'http://github.com/Test-More/test-more/issues',
21892     'Test2::Event::Skip'    => 'http://github.com/Test-More/test-more/issues',
21893     'Test2::Event::Subtest' => 'http://github.com/Test-More/test-more/issues',
21894     'Test2::Event::TAP::Version'=> 'http://github.com/Test-More/test-more/issues',
21895     'Test2::Event::V2'      => 'http://github.com/Test-More/test-more/issues',
21896     'Test2::Event::Waiting' => 'http://github.com/Test-More/test-more/issues',
21897     'Test2::EventFacet'     => 'http://github.com/Test-More/test-more/issues',
21898     'Test2::EventFacet::About'=> 'http://github.com/Test-More/test-more/issues',
21899     'Test2::EventFacet::Amnesty'=> 'http://github.com/Test-More/test-more/issues',
21900     'Test2::EventFacet::Assert'=> 'http://github.com/Test-More/test-more/issues',
21901     'Test2::EventFacet::Control'=> 'http://github.com/Test-More/test-more/issues',
21902     'Test2::EventFacet::Error'=> 'http://github.com/Test-More/test-more/issues',
21903     'Test2::EventFacet::Hub'=> 'http://github.com/Test-More/test-more/issues',
21904     'Test2::EventFacet::Info'=> 'http://github.com/Test-More/test-more/issues',
21905     'Test2::EventFacet::Info::Table'=> 'http://github.com/Test-More/test-more/issues',
21906     'Test2::EventFacet::Meta'=> 'http://github.com/Test-More/test-more/issues',
21907     'Test2::EventFacet::Parent'=> 'http://github.com/Test-More/test-more/issues',
21908     'Test2::EventFacet::Plan'=> 'http://github.com/Test-More/test-more/issues',
21909     'Test2::EventFacet::Render'=> 'http://github.com/Test-More/test-more/issues',
21910     'Test2::EventFacet::Trace'=> 'http://github.com/Test-More/test-more/issues',
21911     'Test2::Formatter'      => 'http://github.com/Test-More/test-more/issues',
21912     'Test2::Formatter::TAP' => 'http://github.com/Test-More/test-more/issues',
21913     'Test2::Hub'            => 'http://github.com/Test-More/test-more/issues',
21914     'Test2::Hub::Interceptor'=> 'http://github.com/Test-More/test-more/issues',
21915     'Test2::Hub::Interceptor::Terminator'=> 'http://github.com/Test-More/test-more/issues',
21916     'Test2::Hub::Subtest'   => 'http://github.com/Test-More/test-more/issues',
21917     'Test2::IPC'            => 'http://github.com/Test-More/test-more/issues',
21918     'Test2::IPC::Driver'    => 'http://github.com/Test-More/test-more/issues',
21919     'Test2::IPC::Driver::Files'=> 'http://github.com/Test-More/test-more/issues',
21920     'Test2::Tools::Tiny'    => 'http://github.com/Test-More/test-more/issues',
21921     'Test2::Util'           => 'http://github.com/Test-More/test-more/issues',
21922     'Test2::Util::ExternalMeta'=> 'http://github.com/Test-More/test-more/issues',
21923     'Test2::Util::Facets2Legacy'=> 'http://github.com/Test-More/test-more/issues',
21924     'Test2::Util::HashBase' => 'http://github.com/Test-More/test-more/issues',
21925     'Test2::Util::Trace'    => 'http://github.com/Test-More/test-more/issues',
21926     'Test::Builder'         => 'http://github.com/Test-More/test-more/issues',
21927     'Test::Builder::Formatter'=> 'http://github.com/Test-More/test-more/issues',
21928     'Test::Builder::IO::Scalar'=> 'http://github.com/Test-More/test-more/issues',
21929     'Test::Builder::Module' => 'http://github.com/Test-More/test-more/issues',
21930     'Test::Builder::Tester' => 'http://github.com/Test-More/test-more/issues',
21931     'Test::Builder::Tester::Color'=> 'http://github.com/Test-More/test-more/issues',
21932     'Test::Builder::TodoDiag'=> 'http://github.com/Test-More/test-more/issues',
21933     'Test::Harness'         => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
21934     'Test::More'            => 'http://github.com/Test-More/test-more/issues',
21935     'Test::Simple'          => 'http://github.com/Test-More/test-more/issues',
21936     'Test::Tester'          => 'http://github.com/Test-More/test-more/issues',
21937     'Test::Tester::Capture' => 'http://github.com/Test-More/test-more/issues',
21938     'Test::Tester::CaptureRunner'=> 'http://github.com/Test-More/test-more/issues',
21939     'Test::Tester::Delegate'=> 'http://github.com/Test-More/test-more/issues',
21940     'Test::use::ok'         => 'http://github.com/Test-More/test-more/issues',
21941     'Text::Balanced'        => undef,
21942     'Text::ParseWords'      => undef,
21943     'Text::Tabs'            => 'https://github.com/ap/Text-Tabs/issues',
21944     'Text::Wrap'            => 'https://github.com/ap/Text-Tabs/issues',
21945     'Tie::RefHash'          => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Tie-RefHash',
21946     'Time::Local'           => 'https://github.com/houseabsolute/Time-Local/issues',
21947     'Time::Piece'           => undef,
21948     'Time::Seconds'         => undef,
21949     'Unicode::Collate'      => undef,
21950     'Unicode::Collate::CJK::Big5'=> undef,
21951     'Unicode::Collate::CJK::GB2312'=> undef,
21952     'Unicode::Collate::CJK::JISX0208'=> undef,
21953     'Unicode::Collate::CJK::Korean'=> undef,
21954     'Unicode::Collate::CJK::Pinyin'=> undef,
21955     'Unicode::Collate::CJK::Stroke'=> undef,
21956     'Unicode::Collate::CJK::Zhuyin'=> undef,
21957     'Unicode::Collate::Locale'=> undef,
21958     'Win32'                 => 'https://github.com/perl-libwin32/win32/issues',
21959     'Win32API::File'        => undef,
21960     'autodie'               => 'https://github.com/pjf/autodie/issues',
21961     'autodie::Scope::Guard' => 'https://github.com/pjf/autodie/issues',
21962     'autodie::Scope::GuardStack'=> 'https://github.com/pjf/autodie/issues',
21963     'autodie::Util'         => 'https://github.com/pjf/autodie/issues',
21964     'autodie::exception'    => 'https://github.com/pjf/autodie/issues',
21965     'autodie::exception::system'=> 'https://github.com/pjf/autodie/issues',
21966     'autodie::hints'        => 'https://github.com/pjf/autodie/issues',
21967     'autodie::skip'         => 'https://github.com/pjf/autodie/issues',
21968     'bigfloat'              => undef,
21969     'bigint'                => undef,
21970     'bignum'                => undef,
21971     'bigrat'                => undef,
21972     'encoding'              => undef,
21973     'experimental'          => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
21974     'ok'                    => 'http://github.com/Test-More/test-more/issues',
21975     'parent'                => undef,
21976     'perlfaq'               => 'https://github.com/perl-doc-cats/perlfaq/issues',
21977     'version'               => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
21978     'version::regex'        => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
21979 );
21980
21981 # Create aliases with trailing zeros for $] use
21982
21983 $released{'5.000'} = $released{5};
21984 $version{'5.000'} = $version{5};
21985
21986 _create_aliases(\%delta);
21987 _create_aliases(\%released);
21988 _create_aliases(\%version);
21989 _create_aliases(\%deprecated);
21990
21991 sub _create_aliases {
21992     my ($hash) = @_;
21993
21994     for my $version (keys %$hash) {
21995         next unless $version >= 5.006;
21996
21997         my $padded = sprintf "%0.6f", $version;
21998
21999         # If the version in string form isn't the same as the numeric version,
22000         # alias it.
22001         if ($padded ne $version && $version == $padded) {
22002             $hash->{$padded} = $hash->{$version};
22003         }
22004     }
22005 }
22006
22007 1;
22008 __END__