This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
new perldelta
[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.20240120';
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     5.037006 => '2022-11-20',
402     5.037007 => '2022-12-20',
403     5.037008 => '2023-01-20',
404     5.037009 => '2023-02-20',
405     5.037010 => '2023-03-20',
406     5.037011 => '2023-04-20',
407     5.036001 => '2023-04-23',
408     5.038000 => '2023-07-02',
409     5.039001 => '2023-07-20',
410     5.039002 => '2023-08-20',
411     5.039003 => '2023-09-20',
412     5.039004 => '2023-10-25',
413     5.039005 => '2023-11-20',
414     5.034002 => '2023-11-25',
415     5.036002 => '2023-11-25',
416     5.038001 => '2023-11-25',
417     5.034003 => '2023-11-29',
418     5.036003 => '2023-11-29',
419     5.038002 => '2023-11-29',
420     5.039006 => '2023-12-30',
421     5.039007 => '2024-01-20',
422     5.039008 => '2024-02-20',
423   );
424
425 for my $version ( sort { $a <=> $b } keys %released ) {
426     my $family = int ($version * 1000) / 1000;
427     push @{ $families{ $family }} , $version;
428 }
429
430 %delta = (
431     5 => {
432         changed => {
433             'AnyDBM_File'           => undef,
434             'AutoLoader'            => undef,
435             'AutoSplit'             => undef,
436             'Benchmark'             => undef,
437             'Carp'                  => undef,
438             'Cwd'                   => undef,
439             'DB_File'               => undef,
440             'DynaLoader'            => undef,
441             'English'               => undef,
442             'Env'                   => undef,
443             'Exporter'              => undef,
444             'ExtUtils::MakeMaker'   => undef,
445             'Fcntl'                 => undef,
446             'File::Basename'        => undef,
447             'File::CheckTree'       => undef,
448             'File::Find'            => undef,
449             'FileHandle'            => undef,
450             'GDBM_File'             => undef,
451             'Getopt::Long'          => undef,
452             'Getopt::Std'           => undef,
453             'I18N::Collate'         => undef,
454             'IPC::Open2'            => undef,
455             'IPC::Open3'            => undef,
456             'Math::BigFloat'        => undef,
457             'Math::BigInt'          => undef,
458             'Math::Complex'         => undef,
459             'NDBM_File'             => undef,
460             'Net::Ping'             => undef,
461             'ODBM_File'             => undef,
462             'POSIX'                 => undef,
463             'SDBM_File'             => undef,
464             'Search::Dict'          => undef,
465             'Shell'                 => undef,
466             'Socket'                => undef,
467             'Sys::Hostname'         => undef,
468             'Sys::Syslog'           => undef,
469             'Term::Cap'             => undef,
470             'Term::Complete'        => undef,
471             'Test::Harness'         => undef,
472             'Text::Abbrev'          => undef,
473             'Text::ParseWords'      => undef,
474             'Text::Soundex'         => undef,
475             'Text::Tabs'            => undef,
476             'TieHash'               => undef,
477             'Time::Local'           => undef,
478             'integer'               => undef,
479             'less'                  => undef,
480             'sigtrap'               => undef,
481             'strict'                => undef,
482             'subs'                  => undef,
483         },
484         removed => {
485         }
486     },
487     5.001 => {
488         delta_from => 5,
489         changed => {
490             'ExtUtils::Liblist'     => undef,
491             'ExtUtils::Manifest'    => undef,
492             'ExtUtils::Mkbootstrap' => undef,
493             'File::Path'            => undef,
494             'SubstrHash'            => undef,
495             'lib'                   => undef,
496         },
497         removed => {
498         }
499     },
500     5.002 => {
501         delta_from => 5.001,
502         changed => {
503             'DB_File'               => '1.01',
504             'Devel::SelfStubber'    => '1.01',
505             'DirHandle'             => undef,
506             'DynaLoader'            => '1.00',
507             'ExtUtils::Install'     => undef,
508             'ExtUtils::MM_OS2'      => undef,
509             'ExtUtils::MM_Unix'     => undef,
510             'ExtUtils::MM_VMS'      => undef,
511             'ExtUtils::MakeMaker'   => '5.21',
512             'ExtUtils::Manifest'    => '1.22',
513             'ExtUtils::Mksymlists'  => '1.00',
514             'Fcntl'                 => '1.00',
515             'File::Copy'            => '1.5',
516             'File::Path'            => '1.01',
517             'FileCache'             => undef,
518             'FileHandle'            => '1.00',
519             'GDBM_File'             => '1.00',
520             'Getopt::Long'          => '2.01',
521             'NDBM_File'             => '1.00',
522             'Net::Ping'             => '1',
523             'ODBM_File'             => '1.00',
524             'POSIX'                 => '1.00',
525             'Pod::Functions'        => undef,
526             'Pod::Text'             => undef,
527             'SDBM_File'             => '1.00',
528             'Safe'                  => '1.00',
529             'SelectSaver'           => undef,
530             'SelfLoader'            => '1.06',
531             'Socket'                => '1.5',
532             'Symbol'                => undef,
533             'Term::ReadLine'        => undef,
534             'Test::Harness'         => '1.07',
535             'Text::Wrap'            => undef,
536             'Tie::Hash'             => undef,
537             'Tie::Scalar'           => undef,
538             'Tie::SubstrHash'       => undef,
539             'diagnostics'           => undef,
540             'overload'              => undef,
541             'vars'                  => undef,
542         },
543         removed => {
544             'SubstrHash'            => 1,
545             'TieHash'               => 1,
546         }
547     },
548     5.00307 => {
549         delta_from => 5.002,
550         changed => {
551             'Config'                => undef,
552             'DB_File'               => '1.03',
553             'ExtUtils::Embed'       => '1.18',
554             'ExtUtils::Install'     => '1.15',
555             'ExtUtils::Liblist'     => '1.20',
556             'ExtUtils::MM_Unix'     => '1.107',
557             'ExtUtils::MakeMaker'   => '5.38',
558             'ExtUtils::Manifest'    => '1.27',
559             'ExtUtils::Mkbootstrap' => '1.13',
560             'ExtUtils::Mksymlists'  => '1.12',
561             'ExtUtils::testlib'     => '1.11',
562             'Fatal'                 => undef,
563             'File::Basename'        => '2.4',
564             'FindBin'               => '1.04',
565             'Getopt::Long'          => '2.04',
566             'IO'                    => undef,
567             'IO::File'              => '1.05',
568             'IO::Handle'            => '1.12',
569             'IO::Pipe'              => '1.07',
570             'IO::Seekable'          => '1.05',
571             'IO::Select'            => '1.09',
572             'IO::Socket'            => '1.13',
573             'Net::Ping'             => '1.01',
574             'OS2::ExtAttr'          => '0.01',
575             'OS2::PrfDB'            => '0.02',
576             'OS2::Process'          => undef,
577             'OS2::REXX'             => undef,
578             'Opcode'                => '1.01',
579             'Safe'                  => '2.06',
580             'Test::Harness'         => '1.13',
581             'Text::Tabs'            => '96.051501',
582             'Text::Wrap'            => '96.041801',
583             'UNIVERSAL'             => undef,
584             'VMS::Filespec'         => undef,
585             'VMS::Stdio'            => '2.0',
586             'ops'                   => undef,
587             'sigtrap'               => '1.01',
588         },
589         removed => {
590         }
591     },
592     5.004 => {
593         delta_from => 5.00307,
594         changed => {
595             'Bundle::CPAN'          => '0.02',
596             'CGI'                   => '2.36',
597             'CGI::Apache'           => '1.01',
598             'CGI::Carp'             => '1.06',
599             'CGI::Fast'             => '1.00a',
600             'CGI::Push'             => '1.00',
601             'CGI::Switch'           => '0.05',
602             'CPAN'                  => '1.2401',
603             'CPAN::FirstTime'       => '1.18',
604             'CPAN::Nox'             => undef,
605             'Class::Struct'         => undef,
606             'Cwd'                   => '2.00',
607             'DB_File'               => '1.14',
608             'DynaLoader'            => '1.02',
609             'ExtUtils::Command'     => '1.00',
610             'ExtUtils::Embed'       => '1.2501',
611             'ExtUtils::Install'     => '1.16',
612             'ExtUtils::Liblist'     => '1.2201',
613             'ExtUtils::MM_Unix'     => '1.114',
614             'ExtUtils::MM_Win32'    => undef,
615             'ExtUtils::MakeMaker'   => '5.4002',
616             'ExtUtils::Manifest'    => '1.33',
617             'ExtUtils::Mksymlists'  => '1.13',
618             'ExtUtils::XSSymSet'    => '1.0',
619             'Fcntl'                 => '1.03',
620             'File::Basename'        => '2.5',
621             'File::Compare'         => '1.1001',
622             'File::Copy'            => '2.02',
623             'File::Path'            => '1.04',
624             'File::stat'            => undef,
625             'FileHandle'            => '2.00',
626             'Getopt::Long'          => '2.10',
627             'IO::File'              => '1.0602',
628             'IO::Handle'            => '1.1504',
629             'IO::Pipe'              => '1.0901',
630             'IO::Seekable'          => '1.06',
631             'IO::Select'            => '1.10',
632             'IO::Socket'            => '1.1602',
633             'IPC::Open2'            => '1.01',
634             'IPC::Open3'            => '1.0101',
635             'Math::Complex'         => '1.01',
636             'Math::Trig'            => '1',
637             'Net::Ping'             => '2.02',
638             'Net::hostent'          => undef,
639             'Net::netent'           => undef,
640             'Net::protoent'         => undef,
641             'Net::servent'          => undef,
642             'Opcode'                => '1.04',
643             'POSIX'                 => '1.02',
644             'Pod::Html'             => undef,
645             'Pod::Text'             => '1.0203',
646             'SelfLoader'            => '1.07',
647             'Socket'                => '1.6',
648             'Symbol'                => '1.02',
649             'Test::Harness'         => '1.1502',
650             'Text::Tabs'            => '96.121201',
651             'Text::Wrap'            => '97.011701',
652             'Tie::RefHash'          => undef,
653             'Time::gmtime'          => '1.01',
654             'Time::localtime'       => '1.01',
655             'Time::tm'              => undef,
656             'User::grent'           => undef,
657             'User::pwent'           => undef,
658             'VMS::DCLsym'           => '1.01',
659             'VMS::Stdio'            => '2.02',
660             'autouse'               => '1.01',
661             'blib'                  => undef,
662             'constant'              => '1.00',
663             'locale'                => undef,
664             'sigtrap'               => '1.02',
665             'vmsish'                => undef,
666         },
667         removed => {
668             'Fatal'                 => 1,
669         }
670     },
671     5.00405 => {
672         delta_from => 5.004,
673         changed => {
674             'AutoLoader'            => '5.56',
675             'AutoSplit'             => '1.0303',
676             'Bundle::CPAN'          => '0.03',
677             'CGI'                   => '2.42',
678             'CGI::Apache'           => '1.1',
679             'CGI::Carp'             => '1.10',
680             'CGI::Cookie'           => '1.06',
681             'CGI::Push'             => '1.01',
682             'CGI::Switch'           => '0.06',
683             'CPAN'                  => '1.40',
684             'CPAN::FirstTime'       => '1.30',
685             'Cwd'                   => '2.01',
686             'DB_File'               => '1.15',
687             'DynaLoader'            => '1.03',
688             'ExtUtils::Command'     => '1.01',
689             'ExtUtils::Embed'       => '1.2505',
690             'ExtUtils::Install'     => '1.28',
691             'ExtUtils::Liblist'     => '1.25',
692             'ExtUtils::MM_Unix'     => '1.118',
693             'ExtUtils::MakeMaker'   => '5.42',
694             'ExtUtils::Mkbootstrap' => '1.14',
695             'ExtUtils::Mksymlists'  => '1.16',
696             'File::Basename'        => '2.6',
697             'File::DosGlob'         => undef,
698             'File::Path'            => '1.0402',
699             'File::Spec'            => '0.6',
700             'File::Spec::Mac'       => '1.0',
701             'File::Spec::OS2'       => undef,
702             'File::Spec::Unix'      => undef,
703             'File::Spec::VMS'       => undef,
704             'File::Spec::Win32'     => undef,
705             'FindBin'               => '1.41',
706             'Getopt::Long'          => '2.19',
707             'IO::File'              => '1.06021',
708             'IO::Socket'            => '1.1603',
709             'IPC::Open3'            => '1.0103',
710             'Math::Complex'         => '1.25',
711             'NDBM_File'             => '1.01',
712             'Pod::Html'             => '1.0101',
713             'Pod::Text'             => '1.0204',
714             'SelfLoader'            => '1.08',
715             'Socket'                => '1.7',
716             'Test'                  => '1.04',
717             'Test::Harness'         => '1.1602',
718             'Text::ParseWords'      => '3.1001',
719             'Text::Wrap'            => '98.112902',
720             'Tie::Handle'           => undef,
721             'attrs'                 => '0.1',
722             'base'                  => undef,
723             'blib'                  => '1.00',
724             're'                    => undef,
725             'strict'                => '1.01',
726         },
727         removed => {
728         }
729     },
730     5.005 => {
731         delta_from => 5.00405,
732         changed => {
733             'AutoLoader'            => undef,
734             'AutoSplit'             => '1.0302',
735             'B'                     => undef,
736             'B::Asmdata'            => undef,
737             'B::Assembler'          => undef,
738             'B::Bblock'             => undef,
739             'B::Bytecode'           => undef,
740             'B::C'                  => undef,
741             'B::CC'                 => undef,
742             'B::Debug'              => undef,
743             'B::Deparse'            => '0.56',
744             'B::Disassembler'       => undef,
745             'B::Lint'               => undef,
746             'B::Showlex'            => undef,
747             'B::Stackobj'           => undef,
748             'B::Terse'              => undef,
749             'B::Xref'               => undef,
750             'CGI::Carp'             => '1.101',
751             'CPAN'                  => '1.3901',
752             'CPAN::FirstTime'       => '1.29',
753             'DB_File'               => '1.60',
754             'Data::Dumper'          => '2.09',
755             'Errno'                 => '1.09',
756             'ExtUtils::Installed'   => '0.02',
757             'ExtUtils::MM_Unix'     => '1.12601',
758             'ExtUtils::MakeMaker'   => '5.4301',
759             'ExtUtils::Mkbootstrap' => '1.13',
760             'ExtUtils::Mksymlists'  => '1.17',
761             'ExtUtils::Packlist'    => '0.03',
762             'Fatal'                 => '1.02',
763             'File::Path'            => '1.0401',
764             'Getopt::Long'          => '2.17',
765             'IO::Handle'            => '1.1505',
766             'IPC::Msg'              => '1.00',
767             'IPC::Open3'            => '1.0102',
768             'IPC::Semaphore'        => '1.00',
769             'IPC::SysV'             => '1.03',
770             'O'                     => undef,
771             'OS2::Process'          => '0.2',
772             'Pod::Html'             => '1.01',
773             'Pod::Text'             => '1.0203',
774             'Text::ParseWords'      => '3.1',
775             'Text::Wrap'            => '97.02',
776             'Thread'                => '1.0',
777             'Thread::Queue'         => undef,
778             'Thread::Semaphore'     => undef,
779             'Thread::Signal'        => undef,
780             'Thread::Specific'      => undef,
781             'Tie::Array'            => '1.00',
782             'VMS::Stdio'            => '2.1',
783             'attrs'                 => '1.0',
784             'fields'                => '0.02',
785             're'                    => '0.02',
786         },
787         removed => {
788             'Bundle::CPAN'          => 1,
789         }
790     },
791     5.00503 => {
792         delta_from => 5.005,
793         changed => {
794             'AutoSplit'             => '1.0303',
795             'CGI'                   => '2.46',
796             'CGI::Carp'             => '1.13',
797             'CGI::Fast'             => '1.01',
798             'CPAN'                  => '1.48',
799             'CPAN::FirstTime'       => '1.36',
800             'CPAN::Nox'             => '1.00',
801             'DB_File'               => '1.65',
802             'Data::Dumper'          => '2.101',
803             'Dumpvalue'             => undef,
804             'Errno'                 => '1.111',
805             'ExtUtils::Install'     => '1.28',
806             'ExtUtils::Liblist'     => '1.25',
807             'ExtUtils::MM_Unix'     => '1.12602',
808             'ExtUtils::MakeMaker'   => '5.4302',
809             'ExtUtils::Manifest'    => '1.33',
810             'ExtUtils::Mkbootstrap' => '1.14',
811             'ExtUtils::Mksymlists'  => '1.17',
812             'ExtUtils::testlib'     => '1.11',
813             'FindBin'               => '1.42',
814             'Getopt::Long'          => '2.19',
815             'Getopt::Std'           => '1.01',
816             'IO::Pipe'              => '1.0902',
817             'IPC::Open3'            => '1.0103',
818             'Math::Complex'         => '1.26',
819             'Test'                  => '1.122',
820             'Text::Wrap'            => '98.112902',
821         },
822         removed => {
823         }
824     },
825     5.00504 => {
826         delta_from => 5.00503,
827         changed => {
828             'CPAN::FirstTime'       => '1.36',
829             'DB_File'               => '1.807',
830             'ExtUtils::Install'     => '1.28',
831             'ExtUtils::Liblist'     => '1.25',
832             'ExtUtils::MM_Unix'     => '1.12602',
833             'ExtUtils::Manifest'    => '1.33',
834             'ExtUtils::Miniperl'    => undef,
835             'ExtUtils::Mkbootstrap' => '1.14',
836             'ExtUtils::Mksymlists'  => '1.17',
837             'ExtUtils::testlib'     => '1.11',
838             'File::Compare'         => '1.1002',
839             'File::Spec'            => '0.8',
840             'File::Spec::Functions' => undef,
841             'File::Spec::Mac'       => undef,
842             'Getopt::Long'          => '2.20',
843             'Pod::Html'             => '1.02',
844         },
845         removed => {
846         }
847     },
848     5.006 => {
849         delta_from => 5.00504,
850         changed => {
851             'AutoLoader'            => '5.57',
852             'AutoSplit'             => '1.0305',
853             'B::Deparse'            => '0.59',
854             'B::Stash'              => undef,
855             'Benchmark'             => '1',
856             'ByteLoader'            => '0.03',
857             'CGI'                   => '2.56',
858             'CGI::Apache'           => undef,
859             'CGI::Carp'             => '1.14',
860             'CGI::Cookie'           => '1.12',
861             'CGI::Fast'             => '1.02',
862             'CGI::Pretty'           => '1.03',
863             'CGI::Switch'           => undef,
864             'CPAN'                  => '1.52',
865             'CPAN::FirstTime'       => '1.38',
866             'Carp::Heavy'           => undef,
867             'Class::Struct'         => '0.58',
868             'Cwd'                   => '2.02',
869             'DB'                    => '1.0',
870             'DB_File'               => '1.72',
871             'Devel::DProf'          => '20000000.00_00',
872             'Devel::Peek'           => '1.00_01',
873             'DynaLoader'            => '1.04',
874             'Exporter'              => '5.562',
875             'Exporter::Heavy'       => undef,
876             'ExtUtils::MM_Cygwin'   => undef,
877             'ExtUtils::MM_Unix'     => '1.12603',
878             'ExtUtils::MakeMaker'   => '5.45',
879             'File::Copy'            => '2.03',
880             'File::Glob'            => '0.991',
881             'File::Path'            => '1.0403',
882             'GDBM_File'             => '1.03',
883             'Getopt::Long'          => '2.23',
884             'Getopt::Std'           => '1.02',
885             'IO'                    => '1.20',
886             'IO::Dir'               => '1.03',
887             'IO::File'              => '1.08',
888             'IO::Handle'            => '1.21',
889             'IO::Pipe'              => '1.121',
890             'IO::Poll'              => '0.01',
891             'IO::Seekable'          => '1.08',
892             'IO::Select'            => '1.14',
893             'IO::Socket'            => '1.26',
894             'IO::Socket::INET'      => '1.25',
895             'IO::Socket::UNIX'      => '1.20',
896             'JNI'                   => '0.01',
897             'JPL::AutoLoader'       => undef,
898             'JPL::Class'            => undef,
899             'JPL::Compile'          => undef,
900             'NDBM_File'             => '1.03',
901             'ODBM_File'             => '1.02',
902             'OS2::DLL'              => undef,
903             'POSIX'                 => '1.03',
904             'Pod::Checker'          => '1.098',
905             'Pod::Find'             => '0.12',
906             'Pod::Html'             => '1.03',
907             'Pod::InputObjects'     => '1.12',
908             'Pod::Man'              => '1.02',
909             'Pod::ParseUtils'       => '0.2',
910             'Pod::Parser'           => '1.12',
911             'Pod::Plainer'          => '0.01',
912             'Pod::Select'           => '1.12',
913             'Pod::Text'             => '2.03',
914             'Pod::Text::Color'      => '0.05',
915             'Pod::Text::Termcap'    => '0.04',
916             'Pod::Usage'            => '1.12',
917             'SDBM_File'             => '1.02',
918             'SelfLoader'            => '1.0901',
919             'Shell'                 => '0.2',
920             'Socket'                => '1.72',
921             'Sys::Hostname'         => '1.1',
922             'Sys::Syslog'           => '0.01',
923             'Term::ANSIColor'       => '1.01',
924             'Test'                  => '1.13',
925             'Test::Harness'         => '1.1604',
926             'Text::ParseWords'      => '3.2',
927             'Text::Soundex'         => '1.0',
928             'Text::Tabs'            => '98.112801',
929             'Tie::Array'            => '1.01',
930             'Tie::Handle'           => '1.0',
931             'VMS::Stdio'            => '2.2',
932             'XSLoader'              => '0.01',
933             'attributes'            => '0.03',
934             'autouse'               => '1.02',
935             'base'                  => '1.01',
936             'bytes'                 => undef,
937             'charnames'             => undef,
938             'constant'              => '1.02',
939             'diagnostics'           => '1.0',
940             'fields'                => '1.01',
941             'filetest'              => undef,
942             'lib'                   => '0.5564',
943             'open'                  => undef,
944             'utf8'                  => undef,
945             'warnings'              => undef,
946             'warnings::register'    => undef,
947         },
948         removed => {
949         }
950     },
951     5.006001 => {
952         delta_from => 5.006,
953         changed => {
954             'AutoLoader'            => '5.58',
955             'B::Assembler'          => '0.02',
956             'B::Concise'            => '0.51',
957             'B::Deparse'            => '0.6',
958             'ByteLoader'            => '0.04',
959             'CGI'                   => '2.752',
960             'CGI::Carp'             => '1.20',
961             'CGI::Cookie'           => '1.18',
962             'CGI::Pretty'           => '1.05',
963             'CGI::Push'             => '1.04',
964             'CGI::Util'             => '1.1',
965             'CPAN'                  => '1.59_54',
966             'CPAN::FirstTime'       => '1.53',
967             'Class::Struct'         => '0.59',
968             'Cwd'                   => '2.04',
969             'DB_File'               => '1.75',
970             'Data::Dumper'          => '2.102',
971             'ExtUtils::Install'     => '1.28',
972             'ExtUtils::Liblist'     => '1.26',
973             'ExtUtils::MM_Unix'     => '1.12603',
974             'ExtUtils::Manifest'    => '1.33',
975             'ExtUtils::Mkbootstrap' => '1.14',
976             'ExtUtils::Mksymlists'  => '1.17',
977             'ExtUtils::testlib'     => '1.11',
978             'File::Path'            => '1.0404',
979             'File::Spec'            => '0.82',
980             'File::Spec::Epoc'      => undef,
981             'File::Spec::Functions' => '1.1',
982             'File::Spec::Mac'       => '1.2',
983             'File::Spec::OS2'       => '1.1',
984             'File::Spec::Unix'      => '1.2',
985             'File::Spec::VMS'       => '1.1',
986             'File::Spec::Win32'     => '1.2',
987             'File::Temp'            => '0.12',
988             'GDBM_File'             => '1.05',
989             'Getopt::Long'          => '2.25',
990             'IO::Poll'              => '0.05',
991             'JNI'                   => '0.1',
992             'Math::BigFloat'        => '0.02',
993             'Math::BigInt'          => '0.01',
994             'Math::Complex'         => '1.31',
995             'NDBM_File'             => '1.04',
996             'ODBM_File'             => '1.03',
997             'OS2::REXX'             => '1.00',
998             'Pod::Checker'          => '1.2',
999             'Pod::Find'             => '0.21',
1000             'Pod::InputObjects'     => '1.13',
1001             'Pod::LaTeX'            => '0.53',
1002             'Pod::Man'              => '1.15',
1003             'Pod::ParseUtils'       => '0.22',
1004             'Pod::Parser'           => '1.13',
1005             'Pod::Select'           => '1.13',
1006             'Pod::Text'             => '2.08',
1007             'Pod::Text::Color'      => '0.06',
1008             'Pod::Text::Overstrike' => '1.01',
1009             'Pod::Text::Termcap'    => '1',
1010             'Pod::Usage'            => '1.14',
1011             'SDBM_File'             => '1.03',
1012             'SelfLoader'            => '1.0902',
1013             'Shell'                 => '0.3',
1014             'Term::ANSIColor'       => '1.03',
1015             'Test'                  => '1.15',
1016             'Text::Wrap'            => '2001.0131',
1017             'Tie::Handle'           => '4.0',
1018             'Tie::RefHash'          => '1.3',
1019         },
1020         removed => {
1021         }
1022     },
1023     5.006002 => {
1024         delta_from => 5.006001,
1025         changed => {
1026             'CPAN::FirstTime'       => '1.53',
1027             'DB_File'               => '1.806',
1028             'Data::Dumper'          => '2.121',
1029             'ExtUtils::Command'     => '1.05',
1030             'ExtUtils::Command::MM' => '0.03',
1031             'ExtUtils::Install'     => '1.32',
1032             'ExtUtils::Installed'   => '0.08',
1033             'ExtUtils::Liblist'     => '1.01',
1034             'ExtUtils::Liblist::Kid'=> '1.3',
1035             'ExtUtils::MM'          => '0.04',
1036             'ExtUtils::MM_Any'      => '0.07',
1037             'ExtUtils::MM_BeOS'     => '1.04',
1038             'ExtUtils::MM_Cygwin'   => '1.06',
1039             'ExtUtils::MM_DOS'      => '0.02',
1040             'ExtUtils::MM_MacOS'    => '1.07',
1041             'ExtUtils::MM_NW5'      => '2.06',
1042             'ExtUtils::MM_OS2'      => '1.04',
1043             'ExtUtils::MM_UWIN'     => '0.02',
1044             'ExtUtils::MM_Unix'     => '1.42',
1045             'ExtUtils::MM_VMS'      => '5.70',
1046             'ExtUtils::MM_Win32'    => '1.09',
1047             'ExtUtils::MM_Win95'    => '0.03',
1048             'ExtUtils::MY'          => '0.01',
1049             'ExtUtils::MakeMaker'   => '6.17',
1050             'ExtUtils::MakeMaker::bytes'=> '0.01',
1051             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1052             'ExtUtils::Manifest'    => '1.42',
1053             'ExtUtils::Mkbootstrap' => '1.15',
1054             'ExtUtils::Mksymlists'  => '1.19',
1055             'ExtUtils::Packlist'    => '0.04',
1056             'ExtUtils::testlib'     => '1.15',
1057             'File::Spec'            => '0.86',
1058             'File::Spec::Cygwin'    => '1.1',
1059             'File::Spec::Epoc'      => '1.1',
1060             'File::Spec::Functions' => '1.3',
1061             'File::Spec::Mac'       => '1.4',
1062             'File::Spec::OS2'       => '1.2',
1063             'File::Spec::Unix'      => '1.5',
1064             'File::Spec::VMS'       => '1.4',
1065             'File::Spec::Win32'     => '1.4',
1066             'File::Temp'            => '0.14',
1067             'Safe'                  => '2.10',
1068             'Test'                  => '1.24',
1069             'Test::Builder'         => '0.17',
1070             'Test::Harness'         => '2.30',
1071             'Test::Harness::Assert' => '0.01',
1072             'Test::Harness::Iterator'=> '0.01',
1073             'Test::Harness::Straps' => '0.15',
1074             'Test::More'            => '0.47',
1075             'Test::Simple'          => '0.47',
1076             'Unicode'               => '3.0.1',
1077             'if'                    => '0.03',
1078             'ops'                   => '1.00',
1079         },
1080         removed => {
1081         }
1082     },
1083     5.007003 => {
1084         delta_from => 5.006001,
1085         changed => {
1086             'AnyDBM_File'           => '1.00',
1087             'Attribute::Handlers'   => '0.76',
1088             'AutoLoader'            => '5.59',
1089             'AutoSplit'             => '1.0307',
1090             'B'                     => '1.00',
1091             'B::Asmdata'            => '1.00',
1092             'B::Assembler'          => '0.04',
1093             'B::Bblock'             => '1.00',
1094             'B::Bytecode'           => '1.00',
1095             'B::C'                  => '1.01',
1096             'B::CC'                 => '1.00',
1097             'B::Concise'            => '0.52',
1098             'B::Debug'              => '1.00',
1099             'B::Deparse'            => '0.63',
1100             'B::Disassembler'       => '1.01',
1101             'B::Lint'               => '1.00',
1102             'B::Showlex'            => '1.00',
1103             'B::Stackobj'           => '1.00',
1104             'B::Stash'              => '1.00',
1105             'B::Terse'              => '1.00',
1106             'B::Xref'               => '1.00',
1107             'Benchmark'             => '1.04',
1108             'CGI'                   => '2.80',
1109             'CGI::Apache'           => '1.00',
1110             'CGI::Carp'             => '1.22',
1111             'CGI::Cookie'           => '1.20',
1112             'CGI::Fast'             => '1.04',
1113             'CGI::Pretty'           => '1.05_00',
1114             'CGI::Switch'           => '1.00',
1115             'CGI::Util'             => '1.3',
1116             'CPAN'                  => '1.59_56',
1117             'CPAN::FirstTime'       => '1.54',
1118             'CPAN::Nox'             => '1.00_01',
1119             'Carp'                  => '1.01',
1120             'Carp::Heavy'           => '1.01',
1121             'Class::ISA'            => '0.32',
1122             'Class::Struct'         => '0.61',
1123             'Cwd'                   => '2.06',
1124             'DB_File'               => '1.804',
1125             'Data::Dumper'          => '2.12',
1126             'Devel::DProf'          => '20000000.00_01',
1127             'Devel::PPPort'         => '2.0002',
1128             'Devel::Peek'           => '1.00_03',
1129             'Devel::SelfStubber'    => '1.03',
1130             'Digest'                => '1.00',
1131             'Digest::MD5'           => '2.16',
1132             'DirHandle'             => '1.00',
1133             'Dumpvalue'             => '1.10',
1134             'Encode'                => '0.40',
1135             'Encode::CN'            => '0.02',
1136             'Encode::CN::HZ'        => undef,
1137             'Encode::Encoding'      => '0.02',
1138             'Encode::Internal'      => '0.30',
1139             'Encode::JP'            => '0.02',
1140             'Encode::JP::Constants' => '1.02',
1141             'Encode::JP::H2Z'       => '0.77',
1142             'Encode::JP::ISO_2022_JP'=> undef,
1143             'Encode::JP::JIS'       => undef,
1144             'Encode::JP::Tr'        => '0.77',
1145             'Encode::KR'            => '0.02',
1146             'Encode::TW'            => '0.02',
1147             'Encode::Tcl'           => '1.01',
1148             'Encode::Tcl::Escape'   => '1.01',
1149             'Encode::Tcl::Extended' => '1.01',
1150             'Encode::Tcl::HanZi'    => '1.01',
1151             'Encode::Tcl::Table'    => '1.01',
1152             'Encode::Unicode'       => '0.30',
1153             'Encode::XS'            => '0.40',
1154             'Encode::iso10646_1'    => '0.30',
1155             'Encode::usc2_le'       => '0.30',
1156             'Encode::utf8'          => '0.30',
1157             'English'               => '1.00',
1158             'Env'                   => '1.00',
1159             'Exporter'              => '5.566',
1160             'Exporter::Heavy'       => '5.562',
1161             'ExtUtils::Command'     => '1.02',
1162             'ExtUtils::Constant'    => '0.11',
1163             'ExtUtils::Embed'       => '1.250601',
1164             'ExtUtils::Install'     => '1.29',
1165             'ExtUtils::Installed'   => '0.04',
1166             'ExtUtils::Liblist'     => '1.2701',
1167             'ExtUtils::MM_BeOS'     => '1.00',
1168             'ExtUtils::MM_Cygwin'   => '1.00',
1169             'ExtUtils::MM_OS2'      => '1.00',
1170             'ExtUtils::MM_Unix'     => '1.12607',
1171             'ExtUtils::MM_VMS'      => '5.56',
1172             'ExtUtils::MM_Win32'    => '1.00_02',
1173             'ExtUtils::MakeMaker'   => '5.48_03',
1174             'ExtUtils::Manifest'    => '1.35',
1175             'ExtUtils::Mkbootstrap' => '1.1401',
1176             'ExtUtils::Mksymlists'  => '1.18',
1177             'ExtUtils::Packlist'    => '0.04',
1178             'ExtUtils::testlib'     => '1.1201',
1179             'Fatal'                 => '1.03',
1180             'Fcntl'                 => '1.04',
1181             'File::Basename'        => '2.71',
1182             'File::CheckTree'       => '4.1',
1183             'File::Compare'         => '1.1003',
1184             'File::Copy'            => '2.05',
1185             'File::DosGlob'         => '1.00',
1186             'File::Find'            => '1.04',
1187             'File::Glob'            => '1.01',
1188             'File::Path'            => '1.05',
1189             'File::Spec'            => '0.83',
1190             'File::Spec::Cygwin'    => '1.0',
1191             'File::Spec::Epoc'      => '1.00',
1192             'File::Spec::Functions' => '1.2',
1193             'File::Spec::Mac'       => '1.3',
1194             'File::Spec::Unix'      => '1.4',
1195             'File::Spec::VMS'       => '1.2',
1196             'File::Spec::Win32'     => '1.3',
1197             'File::Temp'            => '0.13',
1198             'File::stat'            => '1.00',
1199             'FileCache'             => '1.00',
1200             'FileHandle'            => '2.01',
1201             'Filter::Simple'        => '0.77',
1202             'Filter::Util::Call'    => '1.06',
1203             'FindBin'               => '1.43',
1204             'GDBM_File'             => '1.06',
1205             'Getopt::Long'          => '2.28',
1206             'Getopt::Std'           => '1.03',
1207             'I18N::Collate'         => '1.00',
1208             'I18N::LangTags'        => '0.27',
1209             'I18N::LangTags::List'  => '0.25',
1210             'I18N::Langinfo'        => '0.01',
1211             'IO::Dir'               => '1.03_00',
1212             'IO::File'              => '1.09',
1213             'IO::Handle'            => '1.21_00',
1214             'IO::Pipe'              => '1.122',
1215             'IO::Poll'              => '0.06',
1216             'IO::Seekable'          => '1.08_00',
1217             'IO::Select'            => '1.15',
1218             'IO::Socket'            => '1.27',
1219             'IO::Socket::INET'      => '1.26',
1220             'IO::Socket::UNIX'      => '1.20_00',
1221             'IPC::Msg'              => '1.00_00',
1222             'IPC::Open3'            => '1.0104',
1223             'IPC::Semaphore'        => '1.00_00',
1224             'IPC::SysV'             => '1.03_00',
1225             'List::Util'            => '1.06_00',
1226             'Locale::Constants'     => '2.01',
1227             'Locale::Country'       => '2.01',
1228             'Locale::Currency'      => '2.01',
1229             'Locale::Language'      => '2.01',
1230             'Locale::Maketext'      => '1.03',
1231             'Locale::Script'        => '2.01',
1232             'MIME::Base64'          => '2.12',
1233             'MIME::QuotedPrint'     => '2.03',
1234             'Math::BigFloat'        => '1.30',
1235             'Math::BigInt'          => '1.54',
1236             'Math::BigInt::Calc'    => '0.25',
1237             'Math::Complex'         => '1.34',
1238             'Math::Trig'            => '1.01',
1239             'Memoize'               => '0.66',
1240             'Memoize::AnyDBM_File'  => '0.65',
1241             'Memoize::Expire'       => '0.66',
1242             'Memoize::ExpireFile'   => '0.65',
1243             'Memoize::ExpireTest'   => '0.65',
1244             'Memoize::NDBM_File'    => '0.65',
1245             'Memoize::SDBM_File'    => '0.65',
1246             'Memoize::Storable'     => '0.65',
1247             'NEXT'                  => '0.50',
1248             'Net::Cmd'              => '2.21',
1249             'Net::Config'           => '1.10',
1250             'Net::Domain'           => '2.17',
1251             'Net::FTP'              => '2.64',
1252             'Net::FTP::A'           => '1.15',
1253             'Net::FTP::E'           => '0.01',
1254             'Net::FTP::I'           => '1.12',
1255             'Net::FTP::L'           => '0.01',
1256             'Net::FTP::dataconn'    => '0.10',
1257             'Net::NNTP'             => '2.21',
1258             'Net::Netrc'            => '2.12',
1259             'Net::POP3'             => '2.23',
1260             'Net::Ping'             => '2.12',
1261             'Net::SMTP'             => '2.21',
1262             'Net::Time'             => '2.09',
1263             'Net::hostent'          => '1.00',
1264             'Net::netent'           => '1.00',
1265             'Net::protoent'         => '1.00',
1266             'Net::servent'          => '1.00',
1267             'O'                     => '1.00',
1268             'OS2::DLL'              => '1.00',
1269             'OS2::Process'          => '1.0',
1270             'OS2::REXX'             => '1.01',
1271             'Opcode'                => '1.05',
1272             'POSIX'                 => '1.05',
1273             'PerlIO'                => '1.00',
1274             'PerlIO::Scalar'        => '0.01',
1275             'PerlIO::Via'           => '0.01',
1276             'Pod::Checker'          => '1.3',
1277             'Pod::Find'             => '0.22',
1278             'Pod::Functions'        => '1.01',
1279             'Pod::Html'             => '1.04',
1280             'Pod::LaTeX'            => '0.54',
1281             'Pod::Man'              => '1.32',
1282             'Pod::ParseLink'        => '1.05',
1283             'Pod::Text'             => '2.18',
1284             'Pod::Text::Color'      => '1.03',
1285             'Pod::Text::Overstrike' => '1.08',
1286             'Pod::Text::Termcap'    => '1.09',
1287             'Safe'                  => '2.07',
1288             'Scalar::Util'          => '1.06_00',
1289             'Search::Dict'          => '1.02',
1290             'SelectSaver'           => '1.00',
1291             'SelfLoader'            => '1.0903',
1292             'Shell'                 => '0.4',
1293             'Socket'                => '1.75',
1294             'Storable'              => '1.015',
1295             'Switch'                => '2.06',
1296             'Symbol'                => '1.04',
1297             'Sys::Syslog'           => '0.02',
1298             'Term::ANSIColor'       => '1.04',
1299             'Term::Cap'             => '1.07',
1300             'Term::Complete'        => '1.4',
1301             'Term::ReadLine'        => '1.00',
1302             'Test'                  => '1.18',
1303             'Test::Builder'         => '0.11',
1304             'Test::Harness'         => '2.01',
1305             'Test::Harness::Assert' => '0.01',
1306             'Test::Harness::Iterator'=> '0.01',
1307             'Test::Harness::Straps' => '0.08',
1308             'Test::More'            => '0.41',
1309             'Test::Simple'          => '0.41',
1310             'Text::Abbrev'          => '1.00',
1311             'Text::Balanced'        => '1.89',
1312             'Text::ParseWords'      => '3.21',
1313             'Text::Soundex'         => '1.01',
1314             'Text::Wrap'            => '2001.0929',
1315             'Thread'                => '2.00',
1316             'Thread::Queue'         => '1.00',
1317             'Thread::Semaphore'     => '1.00',
1318             'Thread::Signal'        => '1.00',
1319             'Thread::Specific'      => '1.00',
1320             'Tie::Array'            => '1.02',
1321             'Tie::File'             => '0.17',
1322             'Tie::Handle'           => '4.1',
1323             'Tie::Hash'             => '1.00',
1324             'Tie::Memoize'          => '1.0',
1325             'Tie::RefHash'          => '1.3_00',
1326             'Tie::Scalar'           => '1.00',
1327             'Tie::SubstrHash'       => '1.00',
1328             'Time::HiRes'           => '1.20_00',
1329             'Time::Local'           => '1.04',
1330             'Time::gmtime'          => '1.02',
1331             'Time::localtime'       => '1.02',
1332             'Time::tm'              => '1.00',
1333             'UNIVERSAL'             => '1.00',
1334             'Unicode::Collate'      => '0.10',
1335             'Unicode::Normalize'    => '0.14',
1336             'Unicode::UCD'          => '0.2',
1337             'User::grent'           => '1.00',
1338             'User::pwent'           => '1.00',
1339             'VMS::DCLsym'           => '1.02',
1340             'VMS::Filespec'         => '1.1',
1341             'VMS::Stdio'            => '2.3',
1342             'XS::Typemap'           => '0.01',
1343             'attributes'            => '0.04_01',
1344             'attrs'                 => '1.01',
1345             'autouse'               => '1.03',
1346             'base'                  => '1.02',
1347             'blib'                  => '1.01',
1348             'bytes'                 => '1.00',
1349             'charnames'             => '1.01',
1350             'constant'              => '1.04',
1351             'diagnostics'           => '1.1',
1352             'encoding'              => '1.00',
1353             'fields'                => '1.02',
1354             'filetest'              => '1.00',
1355             'if'                    => '0.01',
1356             'integer'               => '1.00',
1357             'less'                  => '0.01',
1358             'locale'                => '1.00',
1359             'open'                  => '1.01',
1360             'ops'                   => '1.00',
1361             'overload'              => '1.00',
1362             're'                    => '0.03',
1363             'sort'                  => '1.00',
1364             'strict'                => '1.02',
1365             'subs'                  => '1.00',
1366             'threads'               => '0.05',
1367             'threads::shared'       => '0.90',
1368             'utf8'                  => '1.00',
1369             'vars'                  => '1.01',
1370             'vmsish'                => '1.00',
1371             'warnings'              => '1.00',
1372             'warnings::register'    => '1.00',
1373         },
1374         removed => {
1375         }
1376     },
1377     5.008 => {
1378         delta_from => 5.007003,
1379         changed => {
1380             'Attribute::Handlers'   => '0.77',
1381             'B'                     => '1.01',
1382             'B::Lint'               => '1.01',
1383             'B::Xref'               => '1.01',
1384             'CGI'                   => '2.81',
1385             'CGI::Carp'             => '1.23',
1386             'CPAN'                  => '1.61',
1387             'CPAN::FirstTime'       => '1.56',
1388             'CPAN::Nox'             => '1.02',
1389             'Digest::MD5'           => '2.20',
1390             'Dumpvalue'             => '1.11',
1391             'Encode'                => '1.75',
1392             'Encode::Alias'         => '1.32',
1393             'Encode::Byte'          => '1.22',
1394             'Encode::CJKConstants'  => '1.00',
1395             'Encode::CN'            => '1.24',
1396             'Encode::CN::HZ'        => '1.04',
1397             'Encode::Config'        => '1.06',
1398             'Encode::EBCDIC'        => '1.21',
1399             'Encode::Encoder'       => '0.05',
1400             'Encode::Encoding'      => '1.30',
1401             'Encode::Guess'         => '1.06',
1402             'Encode::JP'            => '1.25',
1403             'Encode::JP::H2Z'       => '1.02',
1404             'Encode::JP::JIS7'      => '1.08',
1405             'Encode::KR'            => '1.22',
1406             'Encode::KR::2022_KR'   => '1.05',
1407             'Encode::MIME::Header'  => '1.05',
1408             'Encode::Symbol'        => '1.22',
1409             'Encode::TW'            => '1.26',
1410             'Encode::Unicode'       => '1.37',
1411             'Exporter::Heavy'       => '5.566',
1412             'ExtUtils::Command'     => '1.04',
1413             'ExtUtils::Command::MM' => '0.01',
1414             'ExtUtils::Constant'    => '0.12',
1415             'ExtUtils::Installed'   => '0.06',
1416             'ExtUtils::Liblist'     => '1.00',
1417             'ExtUtils::Liblist::Kid'=> '1.29',
1418             'ExtUtils::MM'          => '0.04',
1419             'ExtUtils::MM_Any'      => '0.04',
1420             'ExtUtils::MM_BeOS'     => '1.03',
1421             'ExtUtils::MM_Cygwin'   => '1.04',
1422             'ExtUtils::MM_DOS'      => '0.01',
1423             'ExtUtils::MM_MacOS'    => '1.03',
1424             'ExtUtils::MM_NW5'      => '2.05',
1425             'ExtUtils::MM_OS2'      => '1.03',
1426             'ExtUtils::MM_UWIN'     => '0.01',
1427             'ExtUtils::MM_Unix'     => '1.33',
1428             'ExtUtils::MM_VMS'      => '5.65',
1429             'ExtUtils::MM_Win32'    => '1.05',
1430             'ExtUtils::MM_Win95'    => '0.02',
1431             'ExtUtils::MY'          => '0.01',
1432             'ExtUtils::MakeMaker'   => '6.03',
1433             'ExtUtils::Manifest'    => '1.38',
1434             'ExtUtils::Mkbootstrap' => '1.15',
1435             'ExtUtils::Mksymlists'  => '1.19',
1436             'ExtUtils::testlib'     => '1.15',
1437             'File::CheckTree'       => '4.2',
1438             'FileCache'             => '1.021',
1439             'Filter::Simple'        => '0.78',
1440             'Getopt::Long'          => '2.32',
1441             'Hash::Util'            => '0.04',
1442             'List::Util'            => '1.07_00',
1443             'Locale::Country'       => '2.04',
1444             'Math::BigFloat'        => '1.35',
1445             'Math::BigFloat::Trace' => '0.01',
1446             'Math::BigInt'          => '1.60',
1447             'Math::BigInt::Calc'    => '0.30',
1448             'Math::BigInt::Trace'   => '0.01',
1449             'Math::BigRat'          => '0.07',
1450             'Memoize'               => '1.01',
1451             'Memoize::Expire'       => '1.00',
1452             'Memoize::ExpireFile'   => '1.01',
1453             'Net::FTP'              => '2.65',
1454             'Net::FTP::dataconn'    => '0.11',
1455             'Net::Ping'             => '2.19',
1456             'Net::SMTP'             => '2.24',
1457             'PerlIO'                => '1.01',
1458             'PerlIO::encoding'      => '0.06',
1459             'PerlIO::scalar'        => '0.01',
1460             'PerlIO::via'           => '0.01',
1461             'PerlIO::via::QuotedPrint'=> '0.04',
1462             'Pod::Man'              => '1.33',
1463             'Pod::Text'             => '2.19',
1464             'Scalar::Util'          => '1.07_00',
1465             'Storable'              => '2.04',
1466             'Switch'                => '2.09',
1467             'Sys::Syslog'           => '0.03',
1468             'Test'                  => '1.20',
1469             'Test::Builder'         => '0.15',
1470             'Test::Harness'         => '2.26',
1471             'Test::Harness::Straps' => '0.14',
1472             'Test::More'            => '0.45',
1473             'Test::Simple'          => '0.45',
1474             'Thread::Queue'         => '2.00',
1475             'Thread::Semaphore'     => '2.00',
1476             'Tie::File'             => '0.93',
1477             'Tie::RefHash'          => '1.30',
1478             'Unicode'               => '3.2.0',
1479             'Unicode::Collate'      => '0.12',
1480             'Unicode::Normalize'    => '0.17',
1481             'XS::APItest'           => '0.01',
1482             'attributes'            => '0.05',
1483             'base'                  => '1.03',
1484             'bigint'                => '0.02',
1485             'bignum'                => '0.11',
1486             'bigrat'                => '0.04',
1487             'blib'                  => '1.02',
1488             'encoding'              => '1.35',
1489             'sort'                  => '1.01',
1490             'threads'               => '0.99',
1491         },
1492         removed => {
1493             'Encode::Internal'      => 1,
1494             'Encode::JP::Constants' => 1,
1495             'Encode::JP::ISO_2022_JP'=> 1,
1496             'Encode::JP::JIS'       => 1,
1497             'Encode::JP::Tr'        => 1,
1498             'Encode::Tcl'           => 1,
1499             'Encode::Tcl::Escape'   => 1,
1500             'Encode::Tcl::Extended' => 1,
1501             'Encode::Tcl::HanZi'    => 1,
1502             'Encode::Tcl::Table'    => 1,
1503             'Encode::XS'            => 1,
1504             'Encode::iso10646_1'    => 1,
1505             'Encode::usc2_le'       => 1,
1506             'Encode::utf8'          => 1,
1507             'PerlIO::Scalar'        => 1,
1508             'PerlIO::Via'           => 1,
1509         }
1510     },
1511     5.008001 => {
1512         delta_from => 5.008,
1513         changed => {
1514             'Attribute::Handlers'   => '0.78',
1515             'AutoLoader'            => '5.60',
1516             'AutoSplit'             => '1.04',
1517             'B'                     => '1.02',
1518             'B::Asmdata'            => '1.01',
1519             'B::Assembler'          => '0.06',
1520             'B::Bblock'             => '1.02',
1521             'B::Bytecode'           => '1.01',
1522             'B::C'                  => '1.02',
1523             'B::Concise'            => '0.56',
1524             'B::Debug'              => '1.01',
1525             'B::Deparse'            => '0.64',
1526             'B::Disassembler'       => '1.03',
1527             'B::Lint'               => '1.02',
1528             'B::Terse'              => '1.02',
1529             'Benchmark'             => '1.051',
1530             'ByteLoader'            => '0.05',
1531             'CGI'                   => '3.00',
1532             'CGI::Carp'             => '1.26',
1533             'CGI::Cookie'           => '1.24',
1534             'CGI::Fast'             => '1.041',
1535             'CGI::Pretty'           => '1.07_00',
1536             'CGI::Util'             => '1.31',
1537             'CPAN'                  => '1.76_01',
1538             'CPAN::FirstTime'       => '1.60',
1539             'CPAN::Nox'             => '1.03',
1540             'Class::Struct'         => '0.63',
1541             'Cwd'                   => '2.08',
1542             'DB_File'               => '1.806',
1543             'Data::Dumper'          => '2.121',
1544             'Devel::DProf'          => '20030813.00',
1545             'Devel::PPPort'         => '2.007',
1546             'Devel::Peek'           => '1.01',
1547             'Digest'                => '1.02',
1548             'Digest::MD5'           => '2.27',
1549             'Encode'                => '1.9801',
1550             'Encode::Alias'         => '1.38',
1551             'Encode::Byte'          => '1.23',
1552             'Encode::CJKConstants'  => '1.02',
1553             'Encode::CN::HZ'        => '1.05',
1554             'Encode::Config'        => '1.07',
1555             'Encode::Encoder'       => '0.07',
1556             'Encode::Encoding'      => '1.33',
1557             'Encode::Guess'         => '1.09',
1558             'Encode::JP::JIS7'      => '1.12',
1559             'Encode::KR'            => '1.23',
1560             'Encode::KR::2022_KR'   => '1.06',
1561             'Encode::MIME::Header'  => '1.09',
1562             'Encode::Unicode'       => '1.40',
1563             'Encode::Unicode::UTF7' => '0.02',
1564             'English'               => '1.01',
1565             'Errno'                 => '1.09_00',
1566             'Exporter'              => '5.567',
1567             'Exporter::Heavy'       => '5.567',
1568             'ExtUtils::Command'     => '1.05',
1569             'ExtUtils::Command::MM' => '0.03',
1570             'ExtUtils::Constant'    => '0.14',
1571             'ExtUtils::Install'     => '1.32',
1572             'ExtUtils::Installed'   => '0.08',
1573             'ExtUtils::Liblist'     => '1.01',
1574             'ExtUtils::Liblist::Kid'=> '1.3',
1575             'ExtUtils::MM_Any'      => '0.07',
1576             'ExtUtils::MM_BeOS'     => '1.04',
1577             'ExtUtils::MM_Cygwin'   => '1.06',
1578             'ExtUtils::MM_DOS'      => '0.02',
1579             'ExtUtils::MM_MacOS'    => '1.07',
1580             'ExtUtils::MM_NW5'      => '2.06',
1581             'ExtUtils::MM_OS2'      => '1.04',
1582             'ExtUtils::MM_UWIN'     => '0.02',
1583             'ExtUtils::MM_Unix'     => '1.42',
1584             'ExtUtils::MM_VMS'      => '5.70',
1585             'ExtUtils::MM_Win32'    => '1.09',
1586             'ExtUtils::MM_Win95'    => '0.03',
1587             'ExtUtils::MakeMaker'   => '6.17',
1588             'ExtUtils::MakeMaker::bytes'=> '0.01',
1589             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1590             'ExtUtils::Manifest'    => '1.42',
1591             'Fcntl'                 => '1.05',
1592             'File::Basename'        => '2.72',
1593             'File::Copy'            => '2.06',
1594             'File::Find'            => '1.05',
1595             'File::Glob'            => '1.02',
1596             'File::Path'            => '1.06',
1597             'File::Spec'            => '0.86',
1598             'File::Spec::Cygwin'    => '1.1',
1599             'File::Spec::Epoc'      => '1.1',
1600             'File::Spec::Functions' => '1.3',
1601             'File::Spec::Mac'       => '1.4',
1602             'File::Spec::OS2'       => '1.2',
1603             'File::Spec::Unix'      => '1.5',
1604             'File::Spec::VMS'       => '1.4',
1605             'File::Spec::Win32'     => '1.4',
1606             'File::Temp'            => '0.14',
1607             'FileCache'             => '1.03',
1608             'Filter::Util::Call'    => '1.0601',
1609             'GDBM_File'             => '1.07',
1610             'Getopt::Long'          => '2.34',
1611             'Getopt::Std'           => '1.04',
1612             'Hash::Util'            => '0.05',
1613             'I18N::LangTags'        => '0.28',
1614             'I18N::LangTags::List'  => '0.26',
1615             'I18N::Langinfo'        => '0.02',
1616             'IO'                    => '1.21',
1617             'IO::Dir'               => '1.04',
1618             'IO::File'              => '1.10',
1619             'IO::Handle'            => '1.23',
1620             'IO::Seekable'          => '1.09',
1621             'IO::Select'            => '1.16',
1622             'IO::Socket'            => '1.28',
1623             'IO::Socket::INET'      => '1.27',
1624             'IO::Socket::UNIX'      => '1.21',
1625             'IPC::Msg'              => '1.02',
1626             'IPC::Open3'            => '1.0105',
1627             'IPC::Semaphore'        => '1.02',
1628             'IPC::SysV'             => '1.04',
1629             'JNI'                   => '0.2',
1630             'List::Util'            => '1.13',
1631             'Locale::Country'       => '2.61',
1632             'Locale::Currency'      => '2.21',
1633             'Locale::Language'      => '2.21',
1634             'Locale::Maketext'      => '1.06',
1635             'Locale::Maketext::Guts'=> undef,
1636             'Locale::Maketext::GutsLoader'=> undef,
1637             'Locale::Script'        => '2.21',
1638             'MIME::Base64'          => '2.20',
1639             'MIME::QuotedPrint'     => '2.20',
1640             'Math::BigFloat'        => '1.40',
1641             'Math::BigInt'          => '1.66',
1642             'Math::BigInt::Calc'    => '0.36',
1643             'Math::BigInt::Scalar'  => '0.11',
1644             'Math::BigRat'          => '0.10',
1645             'Math::Trig'            => '1.02',
1646             'NDBM_File'             => '1.05',
1647             'NEXT'                  => '0.60',
1648             'Net::Cmd'              => '2.24',
1649             'Net::Domain'           => '2.18',
1650             'Net::FTP'              => '2.71',
1651             'Net::FTP::A'           => '1.16',
1652             'Net::NNTP'             => '2.22',
1653             'Net::POP3'             => '2.24',
1654             'Net::Ping'             => '2.31',
1655             'Net::SMTP'             => '2.26',
1656             'Net::hostent'          => '1.01',
1657             'Net::servent'          => '1.01',
1658             'ODBM_File'             => '1.04',
1659             'OS2::DLL'              => '1.01',
1660             'OS2::ExtAttr'          => '0.02',
1661             'OS2::PrfDB'            => '0.03',
1662             'OS2::Process'          => '1.01',
1663             'OS2::REXX'             => '1.02',
1664             'POSIX'                 => '1.06',
1665             'PerlIO'                => '1.02',
1666             'PerlIO::encoding'      => '0.07',
1667             'PerlIO::scalar'        => '0.02',
1668             'PerlIO::via'           => '0.02',
1669             'PerlIO::via::QuotedPrint'=> '0.05',
1670             'Pod::Checker'          => '1.41',
1671             'Pod::Find'             => '0.24',
1672             'Pod::Functions'        => '1.02',
1673             'Pod::Html'             => '1.0501',
1674             'Pod::InputObjects'     => '1.14',
1675             'Pod::LaTeX'            => '0.55',
1676             'Pod::Man'              => '1.37',
1677             'Pod::ParseLink'        => '1.06',
1678             'Pod::ParseUtils'       => '0.3',
1679             'Pod::Perldoc'          => '3.10',
1680             'Pod::Perldoc::BaseTo'  => undef,
1681             'Pod::Perldoc::GetOptsOO'=> undef,
1682             'Pod::Perldoc::ToChecker'=> undef,
1683             'Pod::Perldoc::ToMan'   => undef,
1684             'Pod::Perldoc::ToNroff' => undef,
1685             'Pod::Perldoc::ToPod'   => undef,
1686             'Pod::Perldoc::ToRtf'   => undef,
1687             'Pod::Perldoc::ToText'  => undef,
1688             'Pod::Perldoc::ToTk'    => undef,
1689             'Pod::Perldoc::ToXml'   => undef,
1690             'Pod::PlainText'        => '2.01',
1691             'Pod::Text'             => '2.21',
1692             'Pod::Text::Color'      => '1.04',
1693             'Pod::Text::Overstrike' => '1.1',
1694             'Pod::Text::Termcap'    => '1.11',
1695             'Pod::Usage'            => '1.16',
1696             'SDBM_File'             => '1.04',
1697             'Safe'                  => '2.10',
1698             'Scalar::Util'          => '1.13',
1699             'SelfLoader'            => '1.0904',
1700             'Shell'                 => '0.5',
1701             'Socket'                => '1.76',
1702             'Storable'              => '2.08',
1703             'Switch'                => '2.10',
1704             'Symbol'                => '1.05',
1705             'Sys::Hostname'         => '1.11',
1706             'Sys::Syslog'           => '0.04',
1707             'Term::ANSIColor'       => '1.07',
1708             'Term::Cap'             => '1.08',
1709             'Term::Complete'        => '1.401',
1710             'Term::ReadLine'        => '1.01',
1711             'Test'                  => '1.24',
1712             'Test::Builder'         => '0.17',
1713             'Test::Harness'         => '2.30',
1714             'Test::Harness::Straps' => '0.15',
1715             'Test::More'            => '0.47',
1716             'Test::Simple'          => '0.47',
1717             'Text::Abbrev'          => '1.01',
1718             'Text::Balanced'        => '1.95',
1719             'Text::Wrap'            => '2001.09291',
1720             'Thread::Semaphore'     => '2.01',
1721             'Tie::Array'            => '1.03',
1722             'Tie::File'             => '0.97',
1723             'Tie::RefHash'          => '1.31',
1724             'Time::HiRes'           => '1.51',
1725             'Time::Local'           => '1.07',
1726             'UNIVERSAL'             => '1.01',
1727             'Unicode'               => '4.0.0',
1728             'Unicode::Collate'      => '0.28',
1729             'Unicode::Normalize'    => '0.23',
1730             'Unicode::UCD'          => '0.21',
1731             'VMS::Filespec'         => '1.11',
1732             'XS::APItest'           => '0.02',
1733             'XSLoader'              => '0.02',
1734             'attributes'            => '0.06',
1735             'base'                  => '2.03',
1736             'bigint'                => '0.04',
1737             'bignum'                => '0.14',
1738             'bigrat'                => '0.06',
1739             'bytes'                 => '1.01',
1740             'charnames'             => '1.02',
1741             'diagnostics'           => '1.11',
1742             'encoding'              => '1.47',
1743             'fields'                => '2.03',
1744             'filetest'              => '1.01',
1745             'if'                    => '0.03',
1746             'lib'                   => '0.5565',
1747             'open'                  => '1.02',
1748             'overload'              => '1.01',
1749             're'                    => '0.04',
1750             'sort'                  => '1.02',
1751             'strict'                => '1.03',
1752             'threads'               => '1.00',
1753             'threads::shared'       => '0.91',
1754             'utf8'                  => '1.02',
1755             'vmsish'                => '1.01',
1756             'warnings'              => '1.03',
1757         },
1758         removed => {
1759         }
1760     },
1761     5.008002 => {
1762         delta_from => 5.008001,
1763         changed => {
1764             'DB_File'               => '1.807',
1765             'Devel::PPPort'         => '2.009',
1766             'Digest::MD5'           => '2.30',
1767             'I18N::LangTags'        => '0.29',
1768             'I18N::LangTags::List'  => '0.29',
1769             'MIME::Base64'          => '2.21',
1770             'MIME::QuotedPrint'     => '2.21',
1771             'Net::Domain'           => '2.19',
1772             'Net::FTP'              => '2.72',
1773             'Pod::Perldoc'          => '3.11',
1774             'Time::HiRes'           => '1.52',
1775             'Unicode::Collate'      => '0.30',
1776             'Unicode::Normalize'    => '0.25',
1777         },
1778         removed => {
1779         }
1780     },
1781     5.008003 => {
1782         delta_from => 5.008002,
1783         changed => {
1784             'Benchmark'             => '1.052',
1785             'CGI'                   => '3.01',
1786             'CGI::Carp'             => '1.27',
1787             'CGI::Fast'             => '1.05',
1788             'CGI::Pretty'           => '1.08',
1789             'CGI::Util'             => '1.4',
1790             'Cwd'                   => '2.12',
1791             'DB_File'               => '1.808',
1792             'Devel::PPPort'         => '2.011',
1793             'Digest'                => '1.05',
1794             'Digest::MD5'           => '2.33',
1795             'Digest::base'          => '1.00',
1796             'Encode'                => '1.99',
1797             'Exporter'              => '5.57',
1798             'File::CheckTree'       => '4.3',
1799             'File::Copy'            => '2.07',
1800             'File::Find'            => '1.06',
1801             'File::Spec'            => '0.87',
1802             'FindBin'               => '1.44',
1803             'Getopt::Std'           => '1.05',
1804             'Math::BigFloat'        => '1.42',
1805             'Math::BigInt'          => '1.68',
1806             'Math::BigInt::Calc'    => '0.38',
1807             'Math::BigInt::CalcEmu' => '0.02',
1808             'OS2::DLL'              => '1.02',
1809             'POSIX'                 => '1.07',
1810             'PerlIO'                => '1.03',
1811             'PerlIO::via::QuotedPrint'=> '0.06',
1812             'Pod::Html'             => '1.0502',
1813             'Pod::Parser'           => '1.14',
1814             'Pod::Perldoc'          => '3.12',
1815             'Pod::PlainText'        => '2.02',
1816             'Storable'              => '2.09',
1817             'Test::Harness'         => '2.40',
1818             'Test::Harness::Assert' => '0.02',
1819             'Test::Harness::Iterator'=> '0.02',
1820             'Test::Harness::Straps' => '0.19',
1821             'Tie::Hash'             => '1.01',
1822             'Unicode::Collate'      => '0.33',
1823             'Unicode::Normalize'    => '0.28',
1824             'XS::APItest'           => '0.03',
1825             'base'                  => '2.04',
1826             'diagnostics'           => '1.12',
1827             'encoding'              => '1.48',
1828             'threads'               => '1.01',
1829             'threads::shared'       => '0.92',
1830         },
1831         removed => {
1832             'Math::BigInt::Scalar'  => 1,
1833         }
1834     },
1835     5.008004 => {
1836         delta_from => 5.008003,
1837         changed => {
1838             'Attribute::Handlers'   => '0.78_01',
1839             'B::Assembler'          => '0.07',
1840             'B::Concise'            => '0.60',
1841             'B::Deparse'            => '0.66',
1842             'Benchmark'             => '1.06',
1843             'CGI'                   => '3.04',
1844             'Carp'                  => '1.02',
1845             'Cwd'                   => '2.17',
1846             'DBM_Filter'            => '0.01',
1847             'DBM_Filter::compress'  => '0.01',
1848             'DBM_Filter::encode'    => '0.01',
1849             'DBM_Filter::int32'     => '0.01',
1850             'DBM_Filter::null'      => '0.01',
1851             'DBM_Filter::utf8'      => '0.01',
1852             'Digest'                => '1.06',
1853             'DynaLoader'            => '1.05',
1854             'Encode'                => '1.99_01',
1855             'Encode::CN::HZ'        => '1.0501',
1856             'Exporter'              => '5.58',
1857             'Exporter::Heavy'       => '5.57',
1858             'ExtUtils::Liblist::Kid'=> '1.3001',
1859             'ExtUtils::MM_NW5'      => '2.07_02',
1860             'ExtUtils::MM_Win95'    => '0.0301',
1861             'File::Find'            => '1.07',
1862             'IO::Handle'            => '1.24',
1863             'IO::Pipe'              => '1.123',
1864             'IPC::Open3'            => '1.0106',
1865             'Locale::Maketext'      => '1.08',
1866             'MIME::Base64'          => '3.01',
1867             'MIME::QuotedPrint'     => '3.01',
1868             'Math::BigFloat'        => '1.44',
1869             'Math::BigInt'          => '1.70',
1870             'Math::BigInt::Calc'    => '0.40',
1871             'Math::BigInt::CalcEmu' => '0.04',
1872             'Math::BigRat'          => '0.12',
1873             'ODBM_File'             => '1.05',
1874             'POSIX'                 => '1.08',
1875             'Shell'                 => '0.5.2',
1876             'Socket'                => '1.77',
1877             'Storable'              => '2.12',
1878             'Sys::Syslog'           => '0.05',
1879             'Term::ANSIColor'       => '1.08',
1880             'Time::HiRes'           => '1.59',
1881             'Unicode'               => '4.0.1',
1882             'Unicode::UCD'          => '0.22',
1883             'Win32'                 => '0.23',
1884             'base'                  => '2.05',
1885             'bigint'                => '0.05',
1886             'bignum'                => '0.15',
1887             'charnames'             => '1.03',
1888             'open'                  => '1.03',
1889             'threads'               => '1.03',
1890             'utf8'                  => '1.03',
1891         },
1892         removed => {
1893         }
1894     },
1895     5.008005 => {
1896         delta_from => 5.008004,
1897         changed => {
1898             'B::Concise'            => '0.61',
1899             'B::Deparse'            => '0.67',
1900             'CGI'                   => '3.05',
1901             'CGI::Carp'             => '1.28',
1902             'CGI::Util'             => '1.5',
1903             'Carp'                  => '1.03',
1904             'Carp::Heavy'           => '1.03',
1905             'Cwd'                   => '2.19',
1906             'DB_File'               => '1.809',
1907             'Digest'                => '1.08',
1908             'Encode'                => '2.01',
1909             'Encode::Alias'         => '2.00',
1910             'Encode::Byte'          => '2.00',
1911             'Encode::CJKConstants'  => '2.00',
1912             'Encode::CN'            => '2.00',
1913             'Encode::CN::HZ'        => '2.01',
1914             'Encode::Config'        => '2.00',
1915             'Encode::EBCDIC'        => '2.00',
1916             'Encode::Encoder'       => '2.00',
1917             'Encode::Encoding'      => '2.00',
1918             'Encode::Guess'         => '2.00',
1919             'Encode::JP'            => '2.00',
1920             'Encode::JP::H2Z'       => '2.00',
1921             'Encode::JP::JIS7'      => '2.00',
1922             'Encode::KR'            => '2.00',
1923             'Encode::KR::2022_KR'   => '2.00',
1924             'Encode::MIME::Header'  => '2.00',
1925             'Encode::Symbol'        => '2.00',
1926             'Encode::TW'            => '2.00',
1927             'Encode::Unicode'       => '2.00',
1928             'Encode::Unicode::UTF7' => '2.01',
1929             'File::Basename'        => '2.73',
1930             'File::Copy'            => '2.08',
1931             'File::Glob'            => '1.03',
1932             'FileCache'             => '1.04_01',
1933             'I18N::LangTags'        => '0.33',
1934             'I18N::LangTags::Detect'=> '1.03',
1935             'List::Util'            => '1.14',
1936             'Locale::Constants'     => '2.07',
1937             'Locale::Country'       => '2.07',
1938             'Locale::Currency'      => '2.07',
1939             'Locale::Language'      => '2.07',
1940             'Locale::Maketext'      => '1.09',
1941             'Locale::Script'        => '2.07',
1942             'Net::Cmd'              => '2.26',
1943             'Net::FTP'              => '2.75',
1944             'Net::NNTP'             => '2.23',
1945             'Net::POP3'             => '2.28',
1946             'Net::SMTP'             => '2.29',
1947             'Net::Time'             => '2.10',
1948             'Pod::Checker'          => '1.42',
1949             'Pod::Find'             => '0.2401',
1950             'Pod::LaTeX'            => '0.56',
1951             'Pod::ParseUtils'       => '1.2',
1952             'Pod::Perldoc'          => '3.13',
1953             'Safe'                  => '2.11',
1954             'Scalar::Util'          => '1.14',
1955             'Shell'                 => '0.6',
1956             'Storable'              => '2.13',
1957             'Term::Cap'             => '1.09',
1958             'Test'                  => '1.25',
1959             'Test::Harness'         => '2.42',
1960             'Text::ParseWords'      => '3.22',
1961             'Text::Wrap'            => '2001.09292',
1962             'Time::Local'           => '1.10',
1963             'Unicode::Collate'      => '0.40',
1964             'Unicode::Normalize'    => '0.30',
1965             'XS::APItest'           => '0.04',
1966             'autouse'               => '1.04',
1967             'base'                  => '2.06',
1968             'charnames'             => '1.04',
1969             'diagnostics'           => '1.13',
1970             'encoding'              => '2.00',
1971             'threads'               => '1.05',
1972             'utf8'                  => '1.04',
1973         },
1974         removed => {
1975         }
1976     },
1977     5.008006 => {
1978         delta_from => 5.008005,
1979         changed => {
1980             'B'                     => '1.07',
1981             'B::C'                  => '1.04',
1982             'B::Concise'            => '0.64',
1983             'B::Debug'              => '1.02',
1984             'B::Deparse'            => '0.69',
1985             'B::Lint'               => '1.03',
1986             'B::Showlex'            => '1.02',
1987             'Cwd'                   => '3.01',
1988             'DB_File'               => '1.810',
1989             'Data::Dumper'          => '2.121_02',
1990             'Devel::PPPort'         => '3.03',
1991             'Devel::Peek'           => '1.02',
1992             'Encode'                => '2.08',
1993             'Encode::Alias'         => '2.02',
1994             'Encode::Encoding'      => '2.02',
1995             'Encode::JP'            => '2.01',
1996             'Encode::Unicode'       => '2.02',
1997             'Exporter::Heavy'       => '5.58',
1998             'ExtUtils::Constant'    => '0.1401',
1999             'File::Spec'            => '3.01',
2000             'File::Spec::Win32'     => '1.5',
2001             'I18N::LangTags'        => '0.35',
2002             'I18N::LangTags::List'  => '0.35',
2003             'MIME::Base64'          => '3.05',
2004             'MIME::QuotedPrint'     => '3.03',
2005             'Math::BigFloat'        => '1.47',
2006             'Math::BigInt'          => '1.73',
2007             'Math::BigInt::Calc'    => '0.43',
2008             'Math::BigRat'          => '0.13',
2009             'Text::ParseWords'      => '3.23',
2010             'Time::HiRes'           => '1.65',
2011             'XS::APItest'           => '0.05',
2012             'diagnostics'           => '1.14',
2013             'encoding'              => '2.01',
2014             'open'                  => '1.04',
2015             'overload'              => '1.02',
2016         },
2017         removed => {
2018         }
2019     },
2020     5.008007 => {
2021         delta_from => 5.008006,
2022         changed => {
2023             'B'                     => '1.09',
2024             'B::Concise'            => '0.65',
2025             'B::Deparse'            => '0.7',
2026             'B::Disassembler'       => '1.04',
2027             'B::Terse'              => '1.03',
2028             'Benchmark'             => '1.07',
2029             'CGI'                   => '3.10',
2030             'CGI::Carp'             => '1.29',
2031             'CGI::Cookie'           => '1.25',
2032             'Carp'                  => '1.04',
2033             'Carp::Heavy'           => '1.04',
2034             'Class::ISA'            => '0.33',
2035             'Cwd'                   => '3.05',
2036             'DB_File'               => '1.811',
2037             'Data::Dumper'          => '2.121_04',
2038             'Devel::DProf'          => '20050310.00',
2039             'Devel::PPPort'         => '3.06',
2040             'Digest'                => '1.10',
2041             'Digest::file'          => '0.01',
2042             'Encode'                => '2.10',
2043             'Encode::Alias'         => '2.03',
2044             'Errno'                 => '1.09_01',
2045             'ExtUtils::Constant'    => '0.16',
2046             'ExtUtils::Constant::Base'=> '0.01',
2047             'ExtUtils::Constant::Utils'=> '0.01',
2048             'ExtUtils::Constant::XS'=> '0.01',
2049             'File::Find'            => '1.09',
2050             'File::Glob'            => '1.04',
2051             'File::Path'            => '1.07',
2052             'File::Spec'            => '3.05',
2053             'File::Temp'            => '0.16',
2054             'FileCache'             => '1.05',
2055             'IO::File'              => '1.11',
2056             'IO::Socket::INET'      => '1.28',
2057             'Math::BigFloat'        => '1.51',
2058             'Math::BigInt'          => '1.77',
2059             'Math::BigInt::Calc'    => '0.47',
2060             'Math::BigInt::CalcEmu' => '0.05',
2061             'Math::BigRat'          => '0.15',
2062             'Pod::Find'             => '1.3',
2063             'Pod::Html'             => '1.0503',
2064             'Pod::InputObjects'     => '1.3',
2065             'Pod::LaTeX'            => '0.58',
2066             'Pod::ParseUtils'       => '1.3',
2067             'Pod::Parser'           => '1.3',
2068             'Pod::Perldoc'          => '3.14',
2069             'Pod::Select'           => '1.3',
2070             'Pod::Usage'            => '1.3',
2071             'SelectSaver'           => '1.01',
2072             'Symbol'                => '1.06',
2073             'Sys::Syslog'           => '0.06',
2074             'Term::ANSIColor'       => '1.09',
2075             'Term::Complete'        => '1.402',
2076             'Test::Builder'         => '0.22',
2077             'Test::Harness'         => '2.48',
2078             'Test::Harness::Point'  => '0.01',
2079             'Test::Harness::Straps' => '0.23',
2080             'Test::More'            => '0.54',
2081             'Test::Simple'          => '0.54',
2082             'Text::ParseWords'      => '3.24',
2083             'Text::Wrap'            => '2001.09293',
2084             'Tie::RefHash'          => '1.32',
2085             'Time::HiRes'           => '1.66',
2086             'Time::Local'           => '1.11',
2087             'Unicode'               => '4.1.0',
2088             'Unicode::Normalize'    => '0.32',
2089             'Unicode::UCD'          => '0.23',
2090             'Win32'                 => '0.24',
2091             'XS::APItest'           => '0.06',
2092             'base'                  => '2.07',
2093             'bigint'                => '0.07',
2094             'bignum'                => '0.17',
2095             'bigrat'                => '0.08',
2096             'bytes'                 => '1.02',
2097             'constant'              => '1.05',
2098             'overload'              => '1.03',
2099             'threads::shared'       => '0.93',
2100             'utf8'                  => '1.05',
2101         },
2102         removed => {
2103             'JNI'                   => 1,
2104             'JPL::AutoLoader'       => 1,
2105             'JPL::Class'            => 1,
2106             'JPL::Compile'          => 1,
2107         }
2108     },
2109     5.008008 => {
2110         delta_from => 5.008007,
2111         changed => {
2112             'Attribute::Handlers'   => '0.78_02',
2113             'B'                     => '1.09_01',
2114             'B::Bblock'             => '1.02_01',
2115             'B::Bytecode'           => '1.01_01',
2116             'B::C'                  => '1.04_01',
2117             'B::CC'                 => '1.00_01',
2118             'B::Concise'            => '0.66',
2119             'B::Debug'              => '1.02_01',
2120             'B::Deparse'            => '0.71',
2121             'B::Disassembler'       => '1.05',
2122             'B::Terse'              => '1.03_01',
2123             'ByteLoader'            => '0.06',
2124             'CGI'                   => '3.15',
2125             'CGI::Cookie'           => '1.26',
2126             'CPAN'                  => '1.76_02',
2127             'Cwd'                   => '3.12',
2128             'DB'                    => '1.01',
2129             'DB_File'               => '1.814',
2130             'Data::Dumper'          => '2.121_08',
2131             'Devel::DProf'          => '20050603.00',
2132             'Devel::PPPort'         => '3.06_01',
2133             'Devel::Peek'           => '1.03',
2134             'Digest'                => '1.14',
2135             'Digest::MD5'           => '2.36',
2136             'Digest::file'          => '1.00',
2137             'Dumpvalue'             => '1.12',
2138             'Encode'                => '2.12',
2139             'Encode::Alias'         => '2.04',
2140             'Encode::Config'        => '2.01',
2141             'Encode::MIME::Header'  => '2.01',
2142             'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2143             'English'               => '1.02',
2144             'ExtUtils::Command'     => '1.09',
2145             'ExtUtils::Command::MM' => '0.05',
2146             'ExtUtils::Constant'    => '0.17',
2147             'ExtUtils::Embed'       => '1.26',
2148             'ExtUtils::Install'     => '1.33',
2149             'ExtUtils::Liblist::Kid'=> '1.3',
2150             'ExtUtils::MM'          => '0.05',
2151             'ExtUtils::MM_AIX'      => '0.03',
2152             'ExtUtils::MM_Any'      => '0.13',
2153             'ExtUtils::MM_BeOS'     => '1.05',
2154             'ExtUtils::MM_Cygwin'   => '1.08',
2155             'ExtUtils::MM_MacOS'    => '1.08',
2156             'ExtUtils::MM_NW5'      => '2.08',
2157             'ExtUtils::MM_OS2'      => '1.05',
2158             'ExtUtils::MM_QNX'      => '0.02',
2159             'ExtUtils::MM_Unix'     => '1.50',
2160             'ExtUtils::MM_VMS'      => '5.73',
2161             'ExtUtils::MM_VOS'      => '0.02',
2162             'ExtUtils::MM_Win32'    => '1.12',
2163             'ExtUtils::MM_Win95'    => '0.04',
2164             'ExtUtils::MakeMaker'   => '6.30',
2165             'ExtUtils::MakeMaker::Config'=> '0.02',
2166             'ExtUtils::Manifest'    => '1.46',
2167             'File::Basename'        => '2.74',
2168             'File::Copy'            => '2.09',
2169             'File::Find'            => '1.10',
2170             'File::Glob'            => '1.05',
2171             'File::Path'            => '1.08',
2172             'File::Spec'            => '3.12',
2173             'File::Spec::Win32'     => '1.6',
2174             'FileCache'             => '1.06',
2175             'Filter::Simple'        => '0.82',
2176             'FindBin'               => '1.47',
2177             'GDBM_File'             => '1.08',
2178             'Getopt::Long'          => '2.35',
2179             'IO'                    => '1.22',
2180             'IO::Dir'               => '1.05',
2181             'IO::File'              => '1.13',
2182             'IO::Handle'            => '1.25',
2183             'IO::Pipe'              => '1.13',
2184             'IO::Poll'              => '0.07',
2185             'IO::Seekable'          => '1.10',
2186             'IO::Select'            => '1.17',
2187             'IO::Socket'            => '1.29',
2188             'IO::Socket::INET'      => '1.29',
2189             'IO::Socket::UNIX'      => '1.22',
2190             'IPC::Open2'            => '1.02',
2191             'IPC::Open3'            => '1.02',
2192             'List::Util'            => '1.18',
2193             'MIME::Base64'          => '3.07',
2194             'MIME::QuotedPrint'     => '3.07',
2195             'Math::Complex'         => '1.35',
2196             'Math::Trig'            => '1.03',
2197             'NDBM_File'             => '1.06',
2198             'ODBM_File'             => '1.06',
2199             'OS2::PrfDB'            => '0.04',
2200             'OS2::Process'          => '1.02',
2201             'OS2::REXX'             => '1.03',
2202             'Opcode'                => '1.06',
2203             'POSIX'                 => '1.09',
2204             'PerlIO'                => '1.04',
2205             'PerlIO::encoding'      => '0.09',
2206             'PerlIO::scalar'        => '0.04',
2207             'PerlIO::via'           => '0.03',
2208             'Pod::Checker'          => '1.43',
2209             'Pod::Find'             => '1.34',
2210             'Pod::Functions'        => '1.03',
2211             'Pod::Html'             => '1.0504',
2212             'Pod::ParseUtils'       => '1.33',
2213             'Pod::Parser'           => '1.32',
2214             'Pod::Usage'            => '1.33',
2215             'SDBM_File'             => '1.05',
2216             'Safe'                  => '2.12',
2217             'Scalar::Util'          => '1.18',
2218             'Socket'                => '1.78',
2219             'Storable'              => '2.15',
2220             'Switch'                => '2.10_01',
2221             'Sys::Syslog'           => '0.13',
2222             'Term::ANSIColor'       => '1.10',
2223             'Term::ReadLine'        => '1.02',
2224             'Test::Builder'         => '0.32',
2225             'Test::Builder::Module' => '0.02',
2226             'Test::Builder::Tester' => '1.02',
2227             'Test::Builder::Tester::Color'=> undef,
2228             'Test::Harness'         => '2.56',
2229             'Test::Harness::Straps' => '0.26',
2230             'Test::More'            => '0.62',
2231             'Test::Simple'          => '0.62',
2232             'Text::Tabs'            => '2005.0824',
2233             'Text::Wrap'            => '2005.082401',
2234             'Tie::Hash'             => '1.02',
2235             'Time::HiRes'           => '1.86',
2236             'Unicode::Collate'      => '0.52',
2237             'Unicode::UCD'          => '0.24',
2238             'User::grent'           => '1.01',
2239             'Win32'                 => '0.2601',
2240             'XS::APItest'           => '0.08',
2241             'XS::Typemap'           => '0.02',
2242             'XSLoader'              => '0.06',
2243             'attrs'                 => '1.02',
2244             'autouse'               => '1.05',
2245             'blib'                  => '1.03',
2246             'charnames'             => '1.05',
2247             'diagnostics'           => '1.15',
2248             'encoding'              => '2.02',
2249             'if'                    => '0.05',
2250             'open'                  => '1.05',
2251             'ops'                   => '1.01',
2252             'overload'              => '1.04',
2253             're'                    => '0.05',
2254             'threads'               => '1.07',
2255             'threads::shared'       => '0.94',
2256             'utf8'                  => '1.06',
2257             'vmsish'                => '1.02',
2258             'warnings'              => '1.05',
2259             'warnings::register'    => '1.01',
2260         },
2261         removed => {
2262         }
2263     },
2264     5.008009 => {
2265         delta_from => 5.008008,
2266         changed => {
2267             'Attribute::Handlers'   => '0.78_03',
2268             'AutoLoader'            => '5.67',
2269             'AutoSplit'             => '1.06',
2270             'B'                     => '1.19',
2271             'B::Asmdata'            => '1.02',
2272             'B::Assembler'          => '0.08',
2273             'B::C'                  => '1.05',
2274             'B::Concise'            => '0.76',
2275             'B::Debug'              => '1.05',
2276             'B::Deparse'            => '0.87',
2277             'B::Lint'               => '1.11',
2278             'B::Lint::Debug'        => undef,
2279             'B::Terse'              => '1.05',
2280             'Benchmark'             => '1.1',
2281             'CGI'                   => '3.42',
2282             'CGI::Carp'             => '1.30_01',
2283             'CGI::Cookie'           => '1.29',
2284             'CGI::Fast'             => '1.07',
2285             'CGI::Util'             => '1.5_01',
2286             'CPAN'                  => '1.9301',
2287             'CPAN::Debug'           => '5.5',
2288             'CPAN::DeferedCode'     => '5.50',
2289             'CPAN::Distroprefs'     => '6',
2290             'CPAN::FirstTime'       => '5.5_01',
2291             'CPAN::HandleConfig'    => '5.5',
2292             'CPAN::Kwalify'         => '5.50',
2293             'CPAN::Nox'             => '5.50',
2294             'CPAN::Queue'           => '5.5',
2295             'CPAN::Tarzip'          => '5.5',
2296             'CPAN::Version'         => '5.5',
2297             'Carp'                  => '1.10',
2298             'Carp::Heavy'           => '1.10',
2299             'Cwd'                   => '3.29',
2300             'DBM_Filter'            => '0.02',
2301             'DBM_Filter::compress'  => '0.02',
2302             'DBM_Filter::encode'    => '0.02',
2303             'DBM_Filter::int32'     => '0.02',
2304             'DBM_Filter::null'      => '0.02',
2305             'DBM_Filter::utf8'      => '0.02',
2306             'DB_File'               => '1.817',
2307             'Data::Dumper'          => '2.121_17',
2308             'Devel::DProf'          => '20080331.00',
2309             'Devel::InnerPackage'   => '0.3',
2310             'Devel::PPPort'         => '3.14',
2311             'Devel::Peek'           => '1.04',
2312             'Digest'                => '1.15',
2313             'Digest::MD5'           => '2.37',
2314             'DirHandle'             => '1.02',
2315             'DynaLoader'            => '1.09',
2316             'Encode'                => '2.26',
2317             'Encode::Alias'         => '2.10',
2318             'Encode::Byte'          => '2.03',
2319             'Encode::CJKConstants'  => '2.02',
2320             'Encode::CN'            => '2.02',
2321             'Encode::CN::HZ'        => '2.05',
2322             'Encode::Config'        => '2.05',
2323             'Encode::EBCDIC'        => '2.02',
2324             'Encode::Encoder'       => '2.01',
2325             'Encode::Encoding'      => '2.05',
2326             'Encode::GSM0338'       => '2.01',
2327             'Encode::Guess'         => '2.02',
2328             'Encode::JP'            => '2.03',
2329             'Encode::JP::H2Z'       => '2.02',
2330             'Encode::JP::JIS7'      => '2.04',
2331             'Encode::KR'            => '2.02',
2332             'Encode::KR::2022_KR'   => '2.02',
2333             'Encode::MIME::Header'  => '2.05',
2334             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2335             'Encode::MIME::Name'    => '1.01',
2336             'Encode::Symbol'        => '2.02',
2337             'Encode::TW'            => '2.02',
2338             'Encode::Unicode'       => '2.05',
2339             'Encode::Unicode::UTF7' => '2.04',
2340             'English'               => '1.03',
2341             'Errno'                 => '1.10',
2342             'Exporter'              => '5.63',
2343             'Exporter::Heavy'       => '5.63',
2344             'ExtUtils::Command'     => '1.15',
2345             'ExtUtils::Command::MM' => '6.48',
2346             'ExtUtils::Constant'    => '0.21',
2347             'ExtUtils::Constant::Base'=> '0.04',
2348             'ExtUtils::Constant::ProxySubs'=> '0.06',
2349             'ExtUtils::Constant::Utils'=> '0.02',
2350             'ExtUtils::Constant::XS'=> '0.02',
2351             'ExtUtils::Embed'       => '1.28',
2352             'ExtUtils::Install'     => '1.50_01',
2353             'ExtUtils::Installed'   => '1.43',
2354             'ExtUtils::Liblist'     => '6.48',
2355             'ExtUtils::Liblist::Kid'=> '6.48',
2356             'ExtUtils::MM'          => '6.48',
2357             'ExtUtils::MM_AIX'      => '6.48',
2358             'ExtUtils::MM_Any'      => '6.48',
2359             'ExtUtils::MM_BeOS'     => '6.48',
2360             'ExtUtils::MM_Cygwin'   => '6.48',
2361             'ExtUtils::MM_DOS'      => '6.48',
2362             'ExtUtils::MM_Darwin'   => '6.48',
2363             'ExtUtils::MM_MacOS'    => '6.48',
2364             'ExtUtils::MM_NW5'      => '6.48',
2365             'ExtUtils::MM_OS2'      => '6.48',
2366             'ExtUtils::MM_QNX'      => '6.48',
2367             'ExtUtils::MM_UWIN'     => '6.48',
2368             'ExtUtils::MM_Unix'     => '6.48',
2369             'ExtUtils::MM_VMS'      => '6.48',
2370             'ExtUtils::MM_VOS'      => '6.48',
2371             'ExtUtils::MM_Win32'    => '6.48',
2372             'ExtUtils::MM_Win95'    => '6.48',
2373             'ExtUtils::MY'          => '6.48',
2374             'ExtUtils::MakeMaker'   => '6.48',
2375             'ExtUtils::MakeMaker::Config'=> '6.48',
2376             'ExtUtils::MakeMaker::bytes'=> '6.48',
2377             'ExtUtils::MakeMaker::vmsish'=> '6.48',
2378             'ExtUtils::Manifest'    => '1.55',
2379             'ExtUtils::Mkbootstrap' => '6.48',
2380             'ExtUtils::Mksymlists'  => '6.48',
2381             'ExtUtils::Packlist'    => '1.43',
2382             'ExtUtils::ParseXS'     => '2.19',
2383             'ExtUtils::XSSymSet'    => '1.1',
2384             'ExtUtils::testlib'     => '6.48',
2385             'Fatal'                 => '1.06',
2386             'Fcntl'                 => '1.06',
2387             'File::Basename'        => '2.77',
2388             'File::CheckTree'       => '4.4',
2389             'File::Compare'         => '1.1005',
2390             'File::Copy'            => '2.13',
2391             'File::DosGlob'         => '1.01',
2392             'File::Find'            => '1.13',
2393             'File::Glob'            => '1.06',
2394             'File::Path'            => '2.07_02',
2395             'File::Spec'            => '3.29',
2396             'File::Spec::Cygwin'    => '3.29',
2397             'File::Spec::Epoc'      => '3.29',
2398             'File::Spec::Functions' => '3.29',
2399             'File::Spec::Mac'       => '3.29',
2400             'File::Spec::OS2'       => '3.29',
2401             'File::Spec::Unix'      => '3.29',
2402             'File::Spec::VMS'       => '3.29',
2403             'File::Spec::Win32'     => '3.29',
2404             'File::Temp'            => '0.20',
2405             'File::stat'            => '1.01',
2406             'FileCache'             => '1.07',
2407             'Filter::Simple'        => '0.83',
2408             'Filter::Util::Call'    => '1.07',
2409             'FindBin'               => '1.49',
2410             'GDBM_File'             => '1.09',
2411             'Getopt::Long'          => '2.37',
2412             'Getopt::Std'           => '1.06',
2413             'Hash::Util'            => '0.06',
2414             'IO'                    => '1.23',
2415             'IO::Dir'               => '1.06',
2416             'IO::File'              => '1.14',
2417             'IO::Handle'            => '1.27',
2418             'IO::Socket'            => '1.30',
2419             'IO::Socket::INET'      => '1.31',
2420             'IO::Socket::UNIX'      => '1.23',
2421             'IPC::Msg'              => '2.00',
2422             'IPC::Open2'            => '1.03',
2423             'IPC::Open3'            => '1.03',
2424             'IPC::Semaphore'        => '2.00',
2425             'IPC::SharedMem'        => '2.00',
2426             'IPC::SysV'             => '2.00',
2427             'List::Util'            => '1.19',
2428             'Locale::Maketext'      => '1.13',
2429             'Locale::Maketext::Guts'=> '1.13',
2430             'Locale::Maketext::GutsLoader'=> '1.13',
2431             'Math::BigFloat'        => '1.60',
2432             'Math::BigInt'          => '1.89',
2433             'Math::BigInt::Calc'    => '0.52',
2434             'Math::BigRat'          => '0.22',
2435             'Math::Complex'         => '1.54',
2436             'Math::Trig'            => '1.18',
2437             'Module::CoreList'      => '2.17',
2438             'Module::Pluggable'     => '3.8',
2439             'Module::Pluggable::Object'=> '3.6',
2440             'NDBM_File'             => '1.07',
2441             'NEXT'                  => '0.61',
2442             'Net::Cmd'              => '2.29',
2443             'Net::Config'           => '1.11',
2444             'Net::Domain'           => '2.20',
2445             'Net::FTP'              => '2.77',
2446             'Net::FTP::A'           => '1.18',
2447             'Net::NNTP'             => '2.24',
2448             'Net::POP3'             => '2.29',
2449             'Net::Ping'             => '2.35',
2450             'Net::SMTP'             => '2.31',
2451             'O'                     => '1.01',
2452             'ODBM_File'             => '1.07',
2453             'OS2::DLL'              => '1.03',
2454             'OS2::Process'          => '1.03',
2455             'Opcode'                => '1.0601',
2456             'POSIX'                 => '1.15',
2457             'PerlIO'                => '1.05',
2458             'PerlIO::encoding'      => '0.11',
2459             'PerlIO::scalar'        => '0.06',
2460             'PerlIO::via'           => '0.05',
2461             'Pod::Html'             => '1.09',
2462             'Pod::ParseUtils'       => '1.35',
2463             'Pod::Parser'           => '1.35',
2464             'Pod::Select'           => '1.35',
2465             'Pod::Usage'            => '1.35',
2466             'SDBM_File'             => '1.06',
2467             'Safe'                  => '2.16',
2468             'Scalar::Util'          => '1.19',
2469             'SelfLoader'            => '1.17',
2470             'Shell'                 => '0.72',
2471             'Socket'                => '1.81',
2472             'Storable'              => '2.19',
2473             'Switch'                => '2.13',
2474             'Sys::Syslog'           => '0.27',
2475             'Sys::Syslog::win32::Win32'=> undef,
2476             'Term::ANSIColor'       => '1.12',
2477             'Term::Cap'             => '1.12',
2478             'Term::ReadLine'        => '1.03',
2479             'Test::Builder'         => '0.80',
2480             'Test::Builder::Module' => '0.80',
2481             'Test::Builder::Tester' => '1.13',
2482             'Test::Harness'         => '2.64',
2483             'Test::Harness::Results'=> '0.01_01',
2484             'Test::Harness::Straps' => '0.26_01',
2485             'Test::Harness::Util'   => '0.01',
2486             'Test::More'            => '0.80',
2487             'Test::Simple'          => '0.80',
2488             'Text::Balanced'        => '1.98',
2489             'Text::ParseWords'      => '3.27',
2490             'Text::Soundex'         => '3.03',
2491             'Text::Tabs'            => '2007.1117',
2492             'Text::Wrap'            => '2006.1117',
2493             'Thread'                => '2.01',
2494             'Thread::Queue'         => '2.11',
2495             'Thread::Semaphore'     => '2.09',
2496             'Tie::Handle'           => '4.2',
2497             'Tie::Hash'             => '1.03',
2498             'Tie::Memoize'          => '1.1',
2499             'Tie::RefHash'          => '1.38',
2500             'Tie::Scalar'           => '1.01',
2501             'Tie::StdHandle'        => '4.2',
2502             'Time::HiRes'           => '1.9715',
2503             'Time::Local'           => '1.1901',
2504             'Time::gmtime'          => '1.03',
2505             'Unicode'               => '5.1.0',
2506             'Unicode::Normalize'    => '1.02',
2507             'Unicode::UCD'          => '0.25',
2508             'VMS::DCLsym'           => '1.03',
2509             'VMS::Stdio'            => '2.4',
2510             'Win32'                 => '0.38',
2511             'Win32API::File'        => '0.1001_01',
2512             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2513             'Win32CORE'             => '0.02',
2514             'XS::APItest'           => '0.15',
2515             'XS::Typemap'           => '0.03',
2516             'XSLoader'              => '0.10',
2517             'attributes'            => '0.09',
2518             'autouse'               => '1.06',
2519             'base'                  => '2.13',
2520             'bigint'                => '0.23',
2521             'bignum'                => '0.23',
2522             'bigrat'                => '0.23',
2523             'blib'                  => '1.04',
2524             'charnames'             => '1.06',
2525             'constant'              => '1.17',
2526             'diagnostics'           => '1.16',
2527             'encoding'              => '2.6_01',
2528             'fields'                => '2.12',
2529             'filetest'              => '1.02',
2530             'lib'                   => '0.61',
2531             'open'                  => '1.06',
2532             'ops'                   => '1.02',
2533             'overload'              => '1.06',
2534             're'                    => '0.0601',
2535             'sigtrap'               => '1.04',
2536             'threads'               => '1.71',
2537             'threads::shared'       => '1.27',
2538             'utf8'                  => '1.07',
2539             'warnings'              => '1.05_01',
2540         },
2541         removed => {
2542         }
2543     },
2544     5.009 => {
2545         delta_from => 5.008002,
2546         changed => {
2547             'B'                     => '1.03',
2548             'B::C'                  => '1.03',
2549             'B::Concise'            => '0.57',
2550             'B::Deparse'            => '0.65',
2551             'DB_File'               => '1.806',
2552             'Devel::PPPort'         => '2.008',
2553             'English'               => '1.02',
2554             'Fatal'                 => '1.04',
2555             'OS2::DLL'              => '1.02',
2556             'Opcode'                => '1.06',
2557             'Time::HiRes'           => '1.51',
2558             'Unicode::Collate'      => '0.28',
2559             'Unicode::Normalize'    => '0.23',
2560             'XSLoader'              => '0.03',
2561             'assertions'            => '0.01',
2562             'assertions::activate'  => '0.01',
2563             'overload'              => '1.02',
2564             'version'               => '0.29',
2565         },
2566         removed => {
2567         }
2568     },
2569     5.009001 => {
2570         delta_from => 5.008004,
2571         changed => {
2572             'B'                     => '1.05',
2573             'B::Assembler'          => '0.06',
2574             'B::C'                  => '1.04',
2575             'B::Concise'            => '0.59',
2576             'B::Debug'              => '1.02',
2577             'B::Deparse'            => '0.65',
2578             'DB_File'               => '1.808_01',
2579             'Devel::PPPort'         => '2.011_01',
2580             'Digest'                => '1.05',
2581             'DynaLoader'            => '1.04',
2582             'English'               => '1.02',
2583             'Exporter::Heavy'       => '5.567',
2584             'ExtUtils::Command'     => '1.07',
2585             'ExtUtils::Liblist::Kid'=> '1.3',
2586             'ExtUtils::MM_Any'      => '0.0901',
2587             'ExtUtils::MM_Cygwin'   => '1.07',
2588             'ExtUtils::MM_NW5'      => '2.07_01',
2589             'ExtUtils::MM_Unix'     => '1.45_01',
2590             'ExtUtils::MM_VMS'      => '5.71_01',
2591             'ExtUtils::MM_Win32'    => '1.10_01',
2592             'ExtUtils::MM_Win95'    => '0.03',
2593             'ExtUtils::MakeMaker'   => '6.21_02',
2594             'ExtUtils::Manifest'    => '1.43',
2595             'Fatal'                 => '1.04',
2596             'Getopt::Long'          => '2.3401',
2597             'IO::Handle'            => '1.23',
2598             'IO::Pipe'              => '1.122',
2599             'IPC::Open3'            => '1.0105',
2600             'MIME::Base64'          => '3.00_01',
2601             'MIME::QuotedPrint'     => '3.00',
2602             'Memoize'               => '1.01_01',
2603             'ODBM_File'             => '1.04',
2604             'Opcode'                => '1.06',
2605             'POSIX'                 => '1.07',
2606             'Storable'              => '2.11',
2607             'Time::HiRes'           => '1.56',
2608             'Time::Local'           => '1.07_94',
2609             'UNIVERSAL'             => '1.02',
2610             'Unicode'               => '4.0.0',
2611             'Unicode::UCD'          => '0.21',
2612             'XSLoader'              => '0.03',
2613             'assertions'            => '0.01',
2614             'assertions::activate'  => '0.01',
2615             'base'                  => '2.04',
2616             'if'                    => '0.0401',
2617             'open'                  => '1.02',
2618             'overload'              => '1.02',
2619             'threads'               => '1.02',
2620             'utf8'                  => '1.02',
2621             'version'               => '0.36',
2622         },
2623         removed => {
2624         }
2625     },
2626     5.009002 => {
2627         delta_from => 5.008007,
2628         changed => {
2629             'B'                     => '1.07',
2630             'B::Concise'            => '0.64',
2631             'B::Deparse'            => '0.69',
2632             'B::Disassembler'       => '1.03',
2633             'B::Terse'              => '1.02',
2634             'CGI'                   => '3.07',
2635             'Config::Extensions'    => '0.01',
2636             'Devel::DProf'          => '20030813.00',
2637             'DynaLoader'            => '1.07',
2638             'Encode'                => '2.09',
2639             'Encode::Alias'         => '2.02',
2640             'English'               => '1.03',
2641             'Exporter'              => '5.59',
2642             'Exporter::Heavy'       => '5.59',
2643             'ExtUtils::Command'     => '1.07',
2644             'ExtUtils::Command::MM' => '0.03_01',
2645             'ExtUtils::Embed'       => '1.26',
2646             'ExtUtils::Liblist::Kid'=> '1.3',
2647             'ExtUtils::MM_Any'      => '0.10',
2648             'ExtUtils::MM_Cygwin'   => '1.07',
2649             'ExtUtils::MM_MacOS'    => '1.08',
2650             'ExtUtils::MM_NW5'      => '2.07',
2651             'ExtUtils::MM_Unix'     => '1.46_01',
2652             'ExtUtils::MM_VMS'      => '5.71',
2653             'ExtUtils::MM_Win32'    => '1.10',
2654             'ExtUtils::MM_Win95'    => '0.03',
2655             'ExtUtils::MakeMaker'   => '6.25',
2656             'ExtUtils::Manifest'    => '1.44',
2657             'Fatal'                 => '1.04',
2658             'File::Path'            => '1.06',
2659             'FileCache'             => '1.04_01',
2660             'Getopt::Long'          => '2.3401',
2661             'IO::File'              => '1.10',
2662             'IO::Socket::INET'      => '1.27',
2663             'Math::BigFloat'        => '1.49',
2664             'Math::BigInt'          => '1.75',
2665             'Math::BigInt::Calc'    => '0.45',
2666             'Math::BigRat'          => '0.14',
2667             'Memoize'               => '1.01_01',
2668             'Module::CoreList'      => '1.99',
2669             'NEXT'                  => '0.60_01',
2670             'Opcode'                => '1.06',
2671             'Pod::Html'             => '1.0502',
2672             'Scalar::Util'          => '1.14_1',
2673             'Storable'              => '2.14',
2674             'Symbol'                => '1.05',
2675             'Test::Harness'         => '2.46',
2676             'Test::Harness::Straps' => '0.20_01',
2677             'Text::Balanced'        => '1.95_01',
2678             'Text::Wrap'            => '2001.09292',
2679             'UNIVERSAL'             => '1.02',
2680             'Unicode'               => '4.0.1',
2681             'Unicode::Normalize'    => '0.30',
2682             'Unicode::UCD'          => '0.22',
2683             'Win32'                 => '0.23',
2684             'XS::APItest'           => '0.05',
2685             'XSLoader'              => '0.03',
2686             'assertions'            => '0.01',
2687             'assertions::activate'  => '0.01',
2688             'base'                  => '2.06',
2689             'bigint'                => '0.06',
2690             'bignum'                => '0.16',
2691             'bigrat'                => '0.07',
2692             'bytes'                 => '1.01',
2693             'encoding::warnings'    => '0.05',
2694             'if'                    => '0.0401',
2695             're'                    => '0.05',
2696             'threads::shared'       => '0.92',
2697             'utf8'                  => '1.04',
2698             'version'               => '0.42',
2699             'warnings'              => '1.04',
2700         },
2701         removed => {
2702             'Test::Harness::Point'  => 1,
2703         }
2704     },
2705     5.009003 => {
2706         delta_from => 5.008008,
2707         changed => {
2708             'Archive::Tar'          => '1.26_01',
2709             'Archive::Tar::Constant'=> '0.02',
2710             'Archive::Tar::File'    => '0.02',
2711             'AutoSplit'             => '1.04_01',
2712             'B'                     => '1.10',
2713             'B::Bblock'             => '1.02',
2714             'B::Bytecode'           => '1.01',
2715             'B::C'                  => '1.04',
2716             'B::CC'                 => '1.00',
2717             'B::Concise'            => '0.67',
2718             'B::Debug'              => '1.02',
2719             'B::Deparse'            => '0.73',
2720             'B::Lint'               => '1.04',
2721             'B::Terse'              => '1.03',
2722             'CGI'                   => '3.15_01',
2723             'CPAN'                  => '1.83_58',
2724             'CPAN::Debug'           => '4.44',
2725             'CPAN::FirstTime'       => '4.50',
2726             'CPAN::HandleConfig'    => '4.31',
2727             'CPAN::Nox'             => '2.31',
2728             'CPAN::Tarzip'          => '3.36',
2729             'CPAN::Version'         => '2.55',
2730             'Carp'                  => '1.05',
2731             'Carp::Heavy'           => '1.05',
2732             'Compress::Zlib'        => '2.000_07',
2733             'Compress::Zlib::Common'=> '2.000_07',
2734             'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2735             'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2736             'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2737             'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2738             'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2739             'Compress::Zlib::FileConstants'=> '2.000_07',
2740             'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2741             'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2742             'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2743             'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2744             'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2745             'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2746             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2747             'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2748             'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2749             'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2750             'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2751             'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2752             'Compress::Zlib::ParseParameters'=> '2.000_07',
2753             'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2754             'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2755             'Config::Extensions'    => '0.01',
2756             'Cwd'                   => '3.15',
2757             'Devel::PPPort'         => '3.08',
2758             'Digest::SHA'           => '5.32',
2759             'DirHandle'             => '1.01',
2760             'DynaLoader'            => '1.07',
2761             'Encode'                => '2.14',
2762             'Encode::CN::HZ'        => '2.02',
2763             'Encode::MIME::Header'  => '2.02',
2764             'English'               => '1.04',
2765             'Exporter'              => '5.59',
2766             'Exporter::Heavy'       => '5.59',
2767             'ExtUtils::CBuilder'    => '0.15',
2768             'ExtUtils::CBuilder::Base'=> '0.12',
2769             'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2770             'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2771             'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2772             'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2773             'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2774             'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2775             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2776             'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2777             'ExtUtils::Command::MM' => '0.05_01',
2778             'ExtUtils::Constant'    => '0.2',
2779             'ExtUtils::Constant::Base'=> '0.02',
2780             'ExtUtils::Constant::ProxySubs'=> '0.01',
2781             'ExtUtils::Constant::XS'=> '0.02',
2782             'ExtUtils::MM_Any'      => '0.13_01',
2783             'ExtUtils::MM_Unix'     => '1.50_01',
2784             'ExtUtils::MakeMaker'   => '6.30_01',
2785             'ExtUtils::ParseXS'     => '2.15_02',
2786             'Fatal'                 => '1.04',
2787             'File::Compare'         => '1.1005',
2788             'File::Spec'            => '3.15',
2789             'File::Temp'            => '0.16_01',
2790             'IO::File'              => '1.13_01',
2791             'IO::Handle'            => '1.26',
2792             'IO::Socket'            => '1.29_01',
2793             'IO::Socket::INET'      => '1.29_02',
2794             'IO::Socket::UNIX'      => '1.22_01',
2795             'IO::Zlib'              => '1.04_02',
2796             'Locale::Maketext'      => '1.10_01',
2797             'Math::BigInt::FastCalc'=> '0.10',
2798             'Memoize'               => '1.01_01',
2799             'Module::CoreList'      => '2.02',
2800             'Moped::Msg'            => '0.01',
2801             'NEXT'                  => '0.60_01',
2802             'Net::Cmd'              => '2.26_01',
2803             'Net::Domain'           => '2.19_01',
2804             'Net::Ping'             => '2.31_04',
2805             'Opcode'                => '1.08',
2806             'POSIX'                 => '1.10',
2807             'Pod::Escapes'          => '1.04',
2808             'Pod::Man'              => '2.04',
2809             'Pod::Perldoc'          => '3.14_01',
2810             'Pod::Simple'           => '3.04',
2811             'Pod::Simple::BlackBox' => undef,
2812             'Pod::Simple::Checker'  => '2.02',
2813             'Pod::Simple::Debug'    => undef,
2814             'Pod::Simple::DumpAsText'=> '2.02',
2815             'Pod::Simple::DumpAsXML'=> '2.02',
2816             'Pod::Simple::HTML'     => '3.03',
2817             'Pod::Simple::HTMLBatch'=> '3.02',
2818             'Pod::Simple::HTMLLegacy'=> '5.01',
2819             'Pod::Simple::LinkSection'=> undef,
2820             'Pod::Simple::Methody'  => '2.02',
2821             'Pod::Simple::Progress' => '1.01',
2822             'Pod::Simple::PullParser'=> '2.02',
2823             'Pod::Simple::PullParserEndToken'=> undef,
2824             'Pod::Simple::PullParserStartToken'=> undef,
2825             'Pod::Simple::PullParserTextToken'=> undef,
2826             'Pod::Simple::PullParserToken'=> '2.02',
2827             'Pod::Simple::RTF'      => '2.02',
2828             'Pod::Simple::Search'   => '3.04',
2829             'Pod::Simple::SimpleTree'=> '2.02',
2830             'Pod::Simple::Text'     => '2.02',
2831             'Pod::Simple::TextContent'=> '2.02',
2832             'Pod::Simple::TiedOutFH'=> undef,
2833             'Pod::Simple::Transcode'=> undef,
2834             'Pod::Simple::TranscodeDumb'=> '2.02',
2835             'Pod::Simple::TranscodeSmart'=> undef,
2836             'Pod::Simple::XMLOutStream'=> '2.02',
2837             'Pod::Text'             => '3.01',
2838             'Pod::Text::Color'      => '2.01',
2839             'Pod::Text::Overstrike' => '2',
2840             'Pod::Text::Termcap'    => '2.01',
2841             'Pod::Usage'            => '1.33_01',
2842             'SelfLoader'            => '1.0905',
2843             'Storable'              => '2.15_02',
2844             'Test::Builder::Module' => '0.03',
2845             'Text::Balanced'        => '1.95_01',
2846             'Tie::File'             => '0.97_01',
2847             'UNIVERSAL'             => '1.03',
2848             'XS::APItest'           => '0.09',
2849             'assertions'            => '0.02',
2850             'assertions::activate'  => '0.02',
2851             'assertions::compat'    => undef,
2852             'constant'              => '1.07',
2853             'encoding::warnings'    => '0.05',
2854             'feature'               => '1.00',
2855             're'                    => '0.06',
2856             'sort'                  => '2.00',
2857             'version'               => '0.53',
2858         },
2859         removed => {
2860         }
2861     },
2862     5.009004 => {
2863         delta_from => 5.009003,
2864         changed => {
2865             'Archive::Tar'          => '1.30_01',
2866             'AutoLoader'            => '5.61',
2867             'B'                     => '1.11',
2868             'B::Bytecode'           => '1.02',
2869             'B::C'                  => '1.05',
2870             'B::Concise'            => '0.69',
2871             'B::Deparse'            => '0.76',
2872             'B::Lint'               => '1.08',
2873             'Benchmark'             => '1.08',
2874             'CGI'                   => '3.20',
2875             'CGI::Cookie'           => '1.27',
2876             'CGI::Fast'             => '1.07',
2877             'CPAN'                  => '1.87_55',
2878             'CPAN::Debug'           => '5.400561',
2879             'CPAN::FirstTime'       => '5.400742',
2880             'CPAN::HandleConfig'    => '5.400740',
2881             'CPAN::Nox'             => '5.400561',
2882             'CPAN::Tarzip'          => '5.400714',
2883             'CPAN::Version'         => '5.400561',
2884             'Compress::Raw::Zlib'   => '2.000_13',
2885             'Compress::Zlib'        => '2.000_13',
2886             'Cwd'                   => '3.19',
2887             'Devel::PPPort'         => '3.10',
2888             'Digest'                => '1.15',
2889             'Digest::SHA'           => '5.43',
2890             'Encode'                => '2.18_01',
2891             'Encode::Alias'         => '2.06',
2892             'Encode::Byte'          => '2.02',
2893             'Encode::CJKConstants'  => '2.02',
2894             'Encode::CN'            => '2.02',
2895             'Encode::CN::HZ'        => '2.04',
2896             'Encode::Config'        => '2.03',
2897             'Encode::EBCDIC'        => '2.02',
2898             'Encode::Encoder'       => '2.01',
2899             'Encode::Encoding'      => '2.04',
2900             'Encode::Guess'         => '2.02',
2901             'Encode::JP'            => '2.03',
2902             'Encode::JP::H2Z'       => '2.02',
2903             'Encode::JP::JIS7'      => '2.02',
2904             'Encode::KR'            => '2.02',
2905             'Encode::KR::2022_KR'   => '2.02',
2906             'Encode::MIME::Header'  => '2.04',
2907             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2908             'Encode::Symbol'        => '2.02',
2909             'Encode::TW'            => '2.02',
2910             'Encode::Unicode'       => '2.03',
2911             'Encode::Unicode::UTF7' => '2.04',
2912             'ExtUtils::CBuilder'    => '0.18',
2913             'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2914             'ExtUtils::Constant::Base'=> '0.03',
2915             'ExtUtils::Constant::ProxySubs'=> '0.03',
2916             'ExtUtils::Install'     => '1.41',
2917             'ExtUtils::Installed'   => '1.41',
2918             'ExtUtils::MM_Any'      => '0.13_02',
2919             'ExtUtils::MM_NW5'      => '2.08_01',
2920             'ExtUtils::MM_Unix'     => '1.5003',
2921             'ExtUtils::MM_VMS'      => '5.73_03',
2922             'ExtUtils::MM_Win32'    => '1.12_02',
2923             'ExtUtils::MM_Win95'    => '0.04_01',
2924             'ExtUtils::MakeMaker'   => '6.30_02',
2925             'ExtUtils::Manifest'    => '1.46_01',
2926             'ExtUtils::Mkbootstrap' => '1.15_01',
2927             'ExtUtils::Mksymlists'  => '1.19_01',
2928             'ExtUtils::Packlist'    => '1.41',
2929             'File::Basename'        => '2.75',
2930             'File::Find'            => '1.11',
2931             'File::GlobMapper'      => '0.000_02',
2932             'File::Spec'            => '3.19',
2933             'FileCache'             => '1.07',
2934             'Getopt::Long'          => '2.3501',
2935             'Hash::Util'            => '0.07',
2936             'Hash::Util::FieldHash' => '0.01',
2937             'IO'                    => '1.23_01',
2938             'IO::Compress::Adapter::Deflate'=> '2.000_13',
2939             'IO::Compress::Adapter::Identity'=> '2.000_13',
2940             'IO::Compress::Base'    => '2.000_13',
2941             'IO::Compress::Base::Common'=> '2.000_13',
2942             'IO::Compress::Deflate' => '2.000_13',
2943             'IO::Compress::Gzip'    => '2.000_13',
2944             'IO::Compress::Gzip::Constants'=> '2.000_13',
2945             'IO::Compress::RawDeflate'=> '2.000_13',
2946             'IO::Compress::Zip'     => '2.000_13',
2947             'IO::Compress::Zip::Constants'=> '2.000_13',
2948             'IO::Compress::Zlib::Constants'=> '2.000_13',
2949             'IO::Compress::Zlib::Extra'=> '2.000_13',
2950             'IO::Dir'               => '1.06',
2951             'IO::File'              => '1.14',
2952             'IO::Handle'            => '1.27',
2953             'IO::Socket'            => '1.30_01',
2954             'IO::Socket::INET'      => '1.31',
2955             'IO::Socket::UNIX'      => '1.23',
2956             'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2957             'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2958             'IO::Uncompress::AnyInflate'=> '2.000_13',
2959             'IO::Uncompress::AnyUncompress'=> '2.000_13',
2960             'IO::Uncompress::Base'  => '2.000_13',
2961             'IO::Uncompress::Gunzip'=> '2.000_13',
2962             'IO::Uncompress::Inflate'=> '2.000_13',
2963             'IO::Uncompress::RawInflate'=> '2.000_13',
2964             'IO::Uncompress::Unzip' => '2.000_13',
2965             'MIME::Base64'          => '3.07_01',
2966             'Math::Complex'         => '1.36',
2967             'Math::Trig'            => '1.04',
2968             'Module::Build'         => '0.2805',
2969             'Module::Build::Base'   => undef,
2970             'Module::Build::Compat' => '0.03',
2971             'Module::Build::ConfigData'=> undef,
2972             'Module::Build::Cookbook'=> undef,
2973             'Module::Build::ModuleInfo'=> undef,
2974             'Module::Build::Notes'  => undef,
2975             'Module::Build::PPMMaker'=> undef,
2976             'Module::Build::Platform::Amiga'=> undef,
2977             'Module::Build::Platform::Default'=> undef,
2978             'Module::Build::Platform::EBCDIC'=> undef,
2979             'Module::Build::Platform::MPEiX'=> undef,
2980             'Module::Build::Platform::MacOS'=> undef,
2981             'Module::Build::Platform::RiscOS'=> undef,
2982             'Module::Build::Platform::Unix'=> undef,
2983             'Module::Build::Platform::VMS'=> undef,
2984             'Module::Build::Platform::VOS'=> undef,
2985             'Module::Build::Platform::Windows'=> undef,
2986             'Module::Build::Platform::aix'=> undef,
2987             'Module::Build::Platform::cygwin'=> undef,
2988             'Module::Build::Platform::darwin'=> undef,
2989             'Module::Build::Platform::os2'=> undef,
2990             'Module::Build::PodParser'=> undef,
2991             'Module::Build::Version'=> '0',
2992             'Module::Build::YAML'   => '0.50',
2993             'Module::CoreList'      => '2.08',
2994             'Module::Load'          => '0.10',
2995             'Module::Loaded'        => '0.01',
2996             'Package::Constants'    => '0.01',
2997             'Pod::Html'             => '1.07',
2998             'Pod::Man'              => '2.09',
2999             'Pod::Text'             => '3.07',
3000             'Pod::Text::Color'      => '2.03',
3001             'Pod::Text::Termcap'    => '2.03',
3002             'SDBM_File'             => '1.06',
3003             'Shell'                 => '0.7',
3004             'Sys::Syslog'           => '0.17',
3005             'Term::ANSIColor'       => '1.11',
3006             'Test::Builder'         => '0.33',
3007             'Test::Builder::Tester' => '1.04',
3008             'Test::Harness'         => '2.62',
3009             'Test::Harness::Util'   => '0.01',
3010             'Test::More'            => '0.64',
3011             'Test::Simple'          => '0.64',
3012             'Text::Balanced'        => '1.98_01',
3013             'Text::ParseWords'      => '3.25',
3014             'Text::Tabs'            => '2007.071101',
3015             'Text::Wrap'            => '2006.0711',
3016             'Tie::RefHash'          => '1.34_01',
3017             'Time::HiRes'           => '1.87',
3018             'Time::Local'           => '1.13',
3019             'Time::gmtime'          => '1.03',
3020             'UNIVERSAL'             => '1.04',
3021             'Unicode::Normalize'    => '1.01',
3022             'Win32API::File'        => '0.1001',
3023             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
3024             'assertions'            => '0.03',
3025             'assertions::compat'    => '0.02',
3026             'autouse'               => '1.06',
3027             'diagnostics'           => '1.16',
3028             'encoding'              => '2.04',
3029             'encoding::warnings'    => '0.10',
3030             'feature'               => '1.01',
3031             're'                    => '0.0601',
3032             'threads'               => '1.38',
3033             'threads::shared'       => '0.94_01',
3034             'version'               => '0.67',
3035         },
3036         removed => {
3037             'Compress::Zlib::Common'=> 1,
3038             'Compress::Zlib::Compress::Gzip::Constants'=> 1,
3039             'Compress::Zlib::Compress::Zip::Constants'=> 1,
3040             'Compress::Zlib::CompressPlugin::Deflate'=> 1,
3041             'Compress::Zlib::CompressPlugin::Identity'=> 1,
3042             'Compress::Zlib::File::GlobMapper'=> 1,
3043             'Compress::Zlib::FileConstants'=> 1,
3044             'Compress::Zlib::IO::Compress::Base'=> 1,
3045             'Compress::Zlib::IO::Compress::Deflate'=> 1,
3046             'Compress::Zlib::IO::Compress::Gzip'=> 1,
3047             'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
3048             'Compress::Zlib::IO::Compress::Zip'=> 1,
3049             'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
3050             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
3051             'Compress::Zlib::IO::Uncompress::Base'=> 1,
3052             'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
3053             'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
3054             'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
3055             'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
3056             'Compress::Zlib::ParseParameters'=> 1,
3057             'Compress::Zlib::UncompressPlugin::Identity'=> 1,
3058             'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
3059         }
3060     },
3061     5.009005 => {
3062         delta_from => 5.009004,
3063         changed => {
3064             'Archive::Extract'      => '0.22_01',
3065             'Archive::Tar'          => '1.32',
3066             'Attribute::Handlers'   => '0.78_06',
3067             'AutoLoader'            => '5.63',
3068             'AutoSplit'             => '1.05',
3069             'B'                     => '1.16',
3070             'B::Concise'            => '0.72',
3071             'B::Debug'              => '1.05',
3072             'B::Deparse'            => '0.82',
3073             'B::Lint'               => '1.09',
3074             'B::Terse'              => '1.05',
3075             'Benchmark'             => '1.1',
3076             'CGI'                   => '3.29',
3077             'CGI::Cookie'           => '1.28',
3078             'CGI::Util'             => '1.5_01',
3079             'CPAN'                  => '1.9102',
3080             'CPAN::Debug'           => '5.400955',
3081             'CPAN::FirstTime'       => '5.401669',
3082             'CPAN::HandleConfig'    => '5.401744',
3083             'CPAN::Kwalify'         => '5.401418',
3084             'CPAN::Nox'             => '5.400844',
3085             'CPAN::Queue'           => '5.401704',
3086             'CPAN::Tarzip'          => '5.401717',
3087             'CPAN::Version'         => '5.401387',
3088             'CPANPLUS'              => '0.81_01',
3089             'CPANPLUS::Backend'     => undef,
3090             'CPANPLUS::Backend::RV' => undef,
3091             'CPANPLUS::Config'      => undef,
3092             'CPANPLUS::Configure'   => undef,
3093             'CPANPLUS::Configure::Setup'=> undef,
3094             'CPANPLUS::Dist'        => undef,
3095             'CPANPLUS::Dist::Base'  => '0.01',
3096             'CPANPLUS::Dist::Build' => '0.06_01',
3097             'CPANPLUS::Dist::Build::Constants'=> '0.01',
3098             'CPANPLUS::Dist::MM'    => undef,
3099             'CPANPLUS::Dist::Sample'=> undef,
3100             'CPANPLUS::Error'       => undef,
3101             'CPANPLUS::Internals'   => '0.81_01',
3102             'CPANPLUS::Internals::Constants'=> '0.01',
3103             'CPANPLUS::Internals::Constants::Report'=> '0.01',
3104             'CPANPLUS::Internals::Extract'=> undef,
3105             'CPANPLUS::Internals::Fetch'=> undef,
3106             'CPANPLUS::Internals::Report'=> undef,
3107             'CPANPLUS::Internals::Search'=> undef,
3108             'CPANPLUS::Internals::Source'=> undef,
3109             'CPANPLUS::Internals::Utils'=> undef,
3110             'CPANPLUS::Internals::Utils::Autoflush'=> undef,
3111             'CPANPLUS::Module'      => undef,
3112             'CPANPLUS::Module::Author'=> undef,
3113             'CPANPLUS::Module::Author::Fake'=> undef,
3114             'CPANPLUS::Module::Checksums'=> undef,
3115             'CPANPLUS::Module::Fake'=> undef,
3116             'CPANPLUS::Module::Signature'=> undef,
3117             'CPANPLUS::Selfupdate'  => undef,
3118             'CPANPLUS::Shell'       => undef,
3119             'CPANPLUS::Shell::Classic'=> '0.0562',
3120             'CPANPLUS::Shell::Default'=> '0.81_01',
3121             'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
3122             'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
3123             'CPANPLUS::inc'         => undef,
3124             'Carp'                  => '1.07',
3125             'Carp::Heavy'           => '1.07',
3126             'Compress::Raw::Zlib'   => '2.005',
3127             'Compress::Zlib'        => '2.005',
3128             'Cwd'                   => '3.25',
3129             'DBM_Filter'            => '0.02',
3130             'DB_File'               => '1.815',
3131             'Data::Dumper'          => '2.121_13',
3132             'Devel::InnerPackage'   => '0.3',
3133             'Devel::PPPort'         => '3.11_01',
3134             'Digest::MD5'           => '2.36_01',
3135             'Digest::SHA'           => '5.44',
3136             'DynaLoader'            => '1.08',
3137             'Encode'                => '2.23',
3138             'Encode::Alias'         => '2.07',
3139             'Encode::Byte'          => '2.03',
3140             'Encode::Config'        => '2.04',
3141             'Encode::Encoding'      => '2.05',
3142             'Encode::GSM0338'       => '2.00',
3143             'Encode::JP::JIS7'      => '2.03',
3144             'Encode::MIME::Header'  => '2.05',
3145             'Encode::MIME::Name'    => '1.01',
3146             'Encode::Unicode'       => '2.05',
3147             'Errno'                 => '1.10',
3148             'Exporter'              => '5.60',
3149             'Exporter::Heavy'       => '5.60',
3150             'ExtUtils::CBuilder'    => '0.19',
3151             'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3152             'ExtUtils::Command'     => '1.13',
3153             'ExtUtils::Command::MM' => '0.07',
3154             'ExtUtils::Constant::Base'=> '0.04',
3155             'ExtUtils::Install'     => '1.41_01',
3156             'ExtUtils::Liblist'     => '1.03',
3157             'ExtUtils::Liblist::Kid'=> '1.33',
3158             'ExtUtils::MM'          => '0.07',
3159             'ExtUtils::MM_AIX'      => '0.05',
3160             'ExtUtils::MM_Any'      => '0.15',
3161             'ExtUtils::MM_BeOS'     => '1.07',
3162             'ExtUtils::MM_Cygwin'   => '1.1',
3163             'ExtUtils::MM_DOS'      => '0.04',
3164             'ExtUtils::MM_MacOS'    => '1.1',
3165             'ExtUtils::MM_NW5'      => '2.1',
3166             'ExtUtils::MM_OS2'      => '1.07',
3167             'ExtUtils::MM_QNX'      => '0.04',
3168             'ExtUtils::MM_UWIN'     => '0.04',
3169             'ExtUtils::MM_Unix'     => '1.54_01',
3170             'ExtUtils::MM_VMS'      => '5.76',
3171             'ExtUtils::MM_VOS'      => '0.04',
3172             'ExtUtils::MM_Win32'    => '1.15',
3173             'ExtUtils::MM_Win95'    => '0.06',
3174             'ExtUtils::MY'          => '0.03',
3175             'ExtUtils::MakeMaker'   => '6.36',
3176             'ExtUtils::MakeMaker::Config'=> '0.04',
3177             'ExtUtils::MakeMaker::bytes'=> '0.03',
3178             'ExtUtils::MakeMaker::vmsish'=> '0.03',
3179             'ExtUtils::Manifest'    => '1.51_01',
3180             'ExtUtils::Mkbootstrap' => '1.17',
3181             'ExtUtils::Mksymlists'  => '1.21',
3182             'ExtUtils::ParseXS'     => '2.18',
3183             'ExtUtils::XSSymSet'    => '1.1',
3184             'ExtUtils::testlib'     => '1.17',
3185             'Fatal'                 => '1.05',
3186             'Fcntl'                 => '1.06',
3187             'File::Basename'        => '2.76',
3188             'File::Copy'            => '2.10',
3189             'File::Fetch'           => '0.10',
3190             'File::Glob'            => '1.06',
3191             'File::Path'            => '2.01',
3192             'File::Spec'            => '3.25',
3193             'File::Spec::Cygwin'    => '1.1_01',
3194             'File::Spec::VMS'       => '1.4_01',
3195             'File::Temp'            => '0.18',
3196             'Filter::Util::Call'    => '1.0602',
3197             'FindBin'               => '1.49',
3198             'Getopt::Long'          => '2.36',
3199             'Hash::Util::FieldHash' => '1.01',
3200             'IO::Compress::Adapter::Deflate'=> '2.005',
3201             'IO::Compress::Adapter::Identity'=> '2.005',
3202             'IO::Compress::Base'    => '2.005',
3203             'IO::Compress::Base::Common'=> '2.005',
3204             'IO::Compress::Deflate' => '2.005',
3205             'IO::Compress::Gzip'    => '2.005',
3206             'IO::Compress::Gzip::Constants'=> '2.005',
3207             'IO::Compress::RawDeflate'=> '2.005',
3208             'IO::Compress::Zip'     => '2.005',
3209             'IO::Compress::Zip::Constants'=> '2.005',
3210             'IO::Compress::Zlib::Constants'=> '2.005',
3211             'IO::Compress::Zlib::Extra'=> '2.005',
3212             'IO::Uncompress::Adapter::Identity'=> '2.005',
3213             'IO::Uncompress::Adapter::Inflate'=> '2.005',
3214             'IO::Uncompress::AnyInflate'=> '2.005',
3215             'IO::Uncompress::AnyUncompress'=> '2.005',
3216             'IO::Uncompress::Base'  => '2.005',
3217             'IO::Uncompress::Gunzip'=> '2.005',
3218             'IO::Uncompress::Inflate'=> '2.005',
3219             'IO::Uncompress::RawInflate'=> '2.005',
3220             'IO::Uncompress::Unzip' => '2.005',
3221             'IO::Zlib'              => '1.05_01',
3222             'IPC::Cmd'              => '0.36_01',
3223             'List::Util'            => '1.19',
3224             'Locale::Maketext::Simple'=> '0.18',
3225             'Log::Message'          => '0.01',
3226             'Log::Message::Config'  => '0.01',
3227             'Log::Message::Handlers'=> undef,
3228             'Log::Message::Item'    => undef,
3229             'Log::Message::Simple'  => '0.0201',
3230             'Math::BigFloat'        => '1.58',
3231             'Math::BigInt'          => '1.87',
3232             'Math::BigInt::Calc'    => '0.51',
3233             'Math::BigInt::FastCalc'=> '0.15_01',
3234             'Math::BigRat'          => '0.19',
3235             'Math::Complex'         => '1.37',
3236             'Memoize'               => '1.01_02',
3237             'Module::Build'         => '0.2808',
3238             'Module::Build::Config' => undef,
3239             'Module::Build::Version'=> '0.7203',
3240             'Module::CoreList'      => '2.12',
3241             'Module::Load::Conditional'=> '0.16',
3242             'Module::Pluggable'     => '3.6',
3243             'Module::Pluggable::Object'=> '3.6',
3244             'NDBM_File'             => '1.07',
3245             'Net::Cmd'              => '2.28',
3246             'Net::Config'           => '1.11',
3247             'Net::Domain'           => '2.20',
3248             'Net::FTP'              => '2.77',
3249             'Net::FTP::A'           => '1.18',
3250             'Net::NNTP'             => '2.24',
3251             'Net::POP3'             => '2.29',
3252             'Net::SMTP'             => '2.31',
3253             'ODBM_File'             => '1.07',
3254             'OS2::DLL'              => '1.03',
3255             'Object::Accessor'      => '0.32',
3256             'Opcode'                => '1.09',
3257             'POSIX'                 => '1.13',
3258             'Params::Check'         => '0.26',
3259             'PerlIO::encoding'      => '0.10',
3260             'PerlIO::scalar'        => '0.05',
3261             'PerlIO::via'           => '0.04',
3262             'Pod::Html'             => '1.08',
3263             'Pod::Man'              => '2.12',
3264             'Pod::ParseUtils'       => '1.35',
3265             'Pod::Parser'           => '1.35',
3266             'Pod::Select'           => '1.35',
3267             'Pod::Simple'           => '3.05',
3268             'Pod::Text'             => '3.08',
3269             'Pod::Usage'            => '1.35',
3270             'Scalar::Util'          => '1.19',
3271             'SelfLoader'            => '1.11',
3272             'Shell'                 => '0.72_01',
3273             'Socket'                => '1.79',
3274             'Storable'              => '2.16',
3275             'Switch'                => '2.13',
3276             'Sys::Syslog'           => '0.18_01',
3277             'Term::ANSIColor'       => '1.12',
3278             'Term::UI'              => '0.14_01',
3279             'Term::UI::History'     => undef,
3280             'Test::Builder'         => '0.70',
3281             'Test::Builder::Module' => '0.68',
3282             'Test::Builder::Tester' => '1.07',
3283             'Test::Harness'         => '2.64',
3284             'Test::Harness::Results'=> '0.01',
3285             'Test::More'            => '0.70',
3286             'Test::Simple'          => '0.70',
3287             'Text::Balanced'        => '2.0.0',
3288             'Text::Soundex'         => '3.02',
3289             'Text::Tabs'            => '2007.1117',
3290             'Text::Wrap'            => '2006.1117',
3291             'Thread'                => '3.02',
3292             'Tie::File'             => '0.97_02',
3293             'Tie::Hash::NamedCapture'=> '0.06',
3294             'Tie::Memoize'          => '1.1',
3295             'Tie::RefHash'          => '1.37',
3296             'Time::HiRes'           => '1.9707',
3297             'Time::Local'           => '1.17',
3298             'Time::Piece'           => '1.11_02',
3299             'Time::Seconds'         => undef,
3300             'Unicode'               => '5.0.0',
3301             'Unicode::Normalize'    => '1.02',
3302             'Unicode::UCD'          => '0.25',
3303             'VMS::DCLsym'           => '1.03',
3304             'Win32'                 => '0.30',
3305             'Win32API::File'        => '0.1001_01',
3306             'Win32CORE'             => '0.02',
3307             'XS::APItest'           => '0.12',
3308             'XSLoader'              => '0.08',
3309             'attributes'            => '0.08',
3310             'base'                  => '2.12',
3311             'bigint'                => '0.22',
3312             'bignum'                => '0.22',
3313             'bigrat'                => '0.22',
3314             'bytes'                 => '1.03',
3315             'charnames'             => '1.06',
3316             'constant'              => '1.10',
3317             'diagnostics'           => '1.17',
3318             'encoding'              => '2.06',
3319             'encoding::warnings'    => '0.11',
3320             'feature'               => '1.10',
3321             'fields'                => '2.12',
3322             'less'                  => '0.02',
3323             'mro'                   => '1.00',
3324             'overload'              => '1.06',
3325             're'                    => '0.08',
3326             'sigtrap'               => '1.04',
3327             'sort'                  => '2.01',
3328             'strict'                => '1.04',
3329             'threads'               => '1.63',
3330             'threads::shared'       => '1.12',
3331             'utf8'                  => '1.07',
3332             'version'               => '0.7203',
3333             'warnings'              => '1.06',
3334         },
3335         removed => {
3336             'B::Asmdata'            => 1,
3337             'B::Assembler'          => 1,
3338             'B::Bblock'             => 1,
3339             'B::Bytecode'           => 1,
3340             'B::C'                  => 1,
3341             'B::CC'                 => 1,
3342             'B::Disassembler'       => 1,
3343             'B::Stackobj'           => 1,
3344             'B::Stash'              => 1,
3345             'ByteLoader'            => 1,
3346             'Thread::Signal'        => 1,
3347             'Thread::Specific'      => 1,
3348             'assertions'            => 1,
3349             'assertions::activate'  => 1,
3350             'assertions::compat'    => 1,
3351         }
3352     },
3353     5.01 => {
3354         delta_from => 5.009005,
3355         changed => {
3356             'Archive::Extract'      => '0.24',
3357             'Archive::Tar'          => '1.38',
3358             'Attribute::Handlers'   => '0.79',
3359             'B'                     => '1.17',
3360             'B::Concise'            => '0.74',
3361             'B::Deparse'            => '0.83',
3362             'CPAN'                  => '1.9205',
3363             'CPAN::API::HOWTO'      => undef,
3364             'CPAN::Debug'           => '5.402212',
3365             'CPAN::DeferedCode'     => '5.50',
3366             'CPAN::FirstTime'       => '5.402229',
3367             'CPAN::HandleConfig'    => '5.402212',
3368             'CPAN::Nox'             => '5.402411',
3369             'CPAN::Queue'           => '5.402212',
3370             'CPAN::Tarzip'          => '5.402213',
3371             'CPAN::Version'         => '5.5',
3372             'CPANPLUS'              => '0.84',
3373             'CPANPLUS::Dist::Build' => '0.06_02',
3374             'CPANPLUS::Internals'   => '0.84',
3375             'CPANPLUS::Shell::Default'=> '0.84',
3376             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3377             'Carp'                  => '1.08',
3378             'Carp::Heavy'           => '1.08',
3379             'Compress::Raw::Zlib'   => '2.008',
3380             'Compress::Zlib'        => '2.008',
3381             'Cwd'                   => '3.2501',
3382             'DB_File'               => '1.816_1',
3383             'Data::Dumper'          => '2.121_14',
3384             'Devel::PPPort'         => '3.13',
3385             'Digest::SHA'           => '5.45',
3386             'Exporter'              => '5.62',
3387             'Exporter::Heavy'       => '5.62',
3388             'ExtUtils::CBuilder'    => '0.21',
3389             'ExtUtils::CBuilder::Base'=> '0.21',
3390             'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3391             'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3392             'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3393             'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3394             'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3395             'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3396             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3397             'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3398             'ExtUtils::Command::MM' => '6.42',
3399             'ExtUtils::Constant::ProxySubs'=> '0.05',
3400             'ExtUtils::Embed'       => '1.27',
3401             'ExtUtils::Install'     => '1.44',
3402             'ExtUtils::Installed'   => '1.43',
3403             'ExtUtils::Liblist'     => '6.42',
3404             'ExtUtils::Liblist::Kid'=> '6.42',
3405             'ExtUtils::MM'          => '6.42',
3406             'ExtUtils::MM_AIX'      => '6.42',
3407             'ExtUtils::MM_Any'      => '6.42',
3408             'ExtUtils::MM_BeOS'     => '6.42',
3409             'ExtUtils::MM_Cygwin'   => '6.42',
3410             'ExtUtils::MM_DOS'      => '6.42',
3411             'ExtUtils::MM_MacOS'    => '6.42',
3412             'ExtUtils::MM_NW5'      => '6.42',
3413             'ExtUtils::MM_OS2'      => '6.42',
3414             'ExtUtils::MM_QNX'      => '6.42',
3415             'ExtUtils::MM_UWIN'     => '6.42',
3416             'ExtUtils::MM_Unix'     => '6.42',
3417             'ExtUtils::MM_VMS'      => '6.42',
3418             'ExtUtils::MM_VOS'      => '6.42',
3419             'ExtUtils::MM_Win32'    => '6.42',
3420             'ExtUtils::MM_Win95'    => '6.42',
3421             'ExtUtils::MY'          => '6.42',
3422             'ExtUtils::MakeMaker'   => '6.42',
3423             'ExtUtils::MakeMaker::Config'=> '6.42',
3424             'ExtUtils::MakeMaker::bytes'=> '6.42',
3425             'ExtUtils::MakeMaker::vmsish'=> '6.42',
3426             'ExtUtils::Mkbootstrap' => '6.42',
3427             'ExtUtils::Mksymlists'  => '6.42',
3428             'ExtUtils::Packlist'    => '1.43',
3429             'ExtUtils::ParseXS'     => '2.18_02',
3430             'ExtUtils::testlib'     => '6.42',
3431             'File::Copy'            => '2.11',
3432             'File::Fetch'           => '0.14',
3433             'File::Find'            => '1.12',
3434             'File::Path'            => '2.04',
3435             'File::Spec'            => '3.2501',
3436             'File::Spec::Cygwin'    => '3.2501',
3437             'File::Spec::Epoc'      => '3.2501',
3438             'File::Spec::Functions' => '3.2501',
3439             'File::Spec::Mac'       => '3.2501',
3440             'File::Spec::OS2'       => '3.2501',
3441             'File::Spec::Unix'      => '3.2501',
3442             'File::Spec::VMS'       => '3.2501',
3443             'File::Spec::Win32'     => '3.2501',
3444             'Filter::Util::Call'    => '1.07',
3445             'Getopt::Long'          => '2.37',
3446             'Hash::Util::FieldHash' => '1.03',
3447             'IO::Compress::Adapter::Deflate'=> '2.008',
3448             'IO::Compress::Adapter::Identity'=> '2.008',
3449             'IO::Compress::Base'    => '2.008',
3450             'IO::Compress::Base::Common'=> '2.008',
3451             'IO::Compress::Deflate' => '2.008',
3452             'IO::Compress::Gzip'    => '2.008',
3453             'IO::Compress::Gzip::Constants'=> '2.008',
3454             'IO::Compress::RawDeflate'=> '2.008',
3455             'IO::Compress::Zip'     => '2.008',
3456             'IO::Compress::Zip::Constants'=> '2.008',
3457             'IO::Compress::Zlib::Constants'=> '2.008',
3458             'IO::Compress::Zlib::Extra'=> '2.008',
3459             'IO::Uncompress::Adapter::Identity'=> '2.008',
3460             'IO::Uncompress::Adapter::Inflate'=> '2.008',
3461             'IO::Uncompress::AnyInflate'=> '2.008',
3462             'IO::Uncompress::AnyUncompress'=> '2.008',
3463             'IO::Uncompress::Base'  => '2.008',
3464             'IO::Uncompress::Gunzip'=> '2.008',
3465             'IO::Uncompress::Inflate'=> '2.008',
3466             'IO::Uncompress::RawInflate'=> '2.008',
3467             'IO::Uncompress::Unzip' => '2.008',
3468             'IO::Zlib'              => '1.07',
3469             'IPC::Cmd'              => '0.40_1',
3470             'IPC::SysV'             => '1.05',
3471             'Locale::Maketext'      => '1.12',
3472             'Log::Message::Simple'  => '0.04',
3473             'Math::BigFloat'        => '1.59',
3474             'Math::BigInt'          => '1.88',
3475             'Math::BigInt::Calc'    => '0.52',
3476             'Math::BigInt::FastCalc'=> '0.16',
3477             'Math::BigRat'          => '0.21',
3478             'Module::Build'         => '0.2808_01',
3479             'Module::Build::Base'   => '0.2808_01',
3480             'Module::Build::Compat' => '0.2808_01',
3481             'Module::Build::Config' => '0.2808_01',
3482             'Module::Build::Dumper' => undef,
3483             'Module::Build::ModuleInfo'=> '0.2808_01',
3484             'Module::Build::Notes'  => '0.2808_01',
3485             'Module::Build::PPMMaker'=> '0.2808_01',
3486             'Module::Build::Platform::Amiga'=> '0.2808_01',
3487             'Module::Build::Platform::Default'=> '0.2808_01',
3488             'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3489             'Module::Build::Platform::MPEiX'=> '0.2808_01',
3490             'Module::Build::Platform::MacOS'=> '0.2808_01',
3491             'Module::Build::Platform::RiscOS'=> '0.2808_01',
3492             'Module::Build::Platform::Unix'=> '0.2808_01',
3493             'Module::Build::Platform::VMS'=> '0.2808_01',
3494             'Module::Build::Platform::VOS'=> '0.2808_01',
3495             'Module::Build::Platform::Windows'=> '0.2808_01',
3496             'Module::Build::Platform::aix'=> '0.2808_01',
3497             'Module::Build::Platform::cygwin'=> '0.2808_01',
3498             'Module::Build::Platform::darwin'=> '0.2808_01',
3499             'Module::Build::Platform::os2'=> '0.2808_01',
3500             'Module::Build::PodParser'=> '0.2808_01',
3501             'Module::CoreList'      => '2.13',
3502             'Module::Load'          => '0.12',
3503             'Module::Load::Conditional'=> '0.22',
3504             'Net::Cmd'              => '2.29',
3505             'Net::Ping'             => '2.33',
3506             'Opcode'                => '1.11',
3507             'Pod::Checker'          => '1.43_01',
3508             'Pod::Man'              => '2.16',
3509             'Pod::Perldoc'          => '3.14_02',
3510             'Socket'                => '1.80',
3511             'Storable'              => '2.18',
3512             'Sys::Syslog'           => '0.22',
3513             'Sys::Syslog::win32::Win32'=> undef,
3514             'Term::Cap'             => '1.12',
3515             'Term::ReadLine'        => '1.03',
3516             'Term::UI'              => '0.18',
3517             'Test::Builder'         => '0.72',
3518             'Test::Builder::Module' => '0.72',
3519             'Test::Builder::Tester' => '1.09',
3520             'Test::Harness::Straps' => '0.26_01',
3521             'Test::More'            => '0.72',
3522             'Test::Simple'          => '0.72',
3523             'Text::ParseWords'      => '3.26',
3524             'Text::Soundex'         => '3.03',
3525             'Tie::StdHandle'        => undef,
3526             'Time::HiRes'           => '1.9711',
3527             'Time::Local'           => '1.18',
3528             'Time::Piece'           => '1.12',
3529             'VMS::Filespec'         => '1.12',
3530             'Win32'                 => '0.34',
3531             'base'                  => '2.13',
3532             'constant'              => '1.13',
3533             'feature'               => '1.11',
3534             'fields'                => '2.13',
3535             'filetest'              => '1.02',
3536             'open'                  => '1.06',
3537             'threads'               => '1.67',
3538             'threads::shared'       => '1.14',
3539             'version'               => '0.74',
3540         },
3541         removed => {
3542         }
3543     },
3544     5.010001 => {
3545         delta_from => 5.01,
3546         changed => {
3547             'App::Prove'            => '3.17',
3548             'App::Prove::State'     => '3.17',
3549             'App::Prove::State::Result'=> '3.17',
3550             'App::Prove::State::Result::Test'=> '3.17',
3551             'Archive::Extract'      => '0.34',
3552             'Archive::Tar'          => '1.52',
3553             'Attribute::Handlers'   => '0.85',
3554             'AutoLoader'            => '5.68',
3555             'AutoSplit'             => '1.06',
3556             'B'                     => '1.22',
3557             'B::Concise'            => '0.76',
3558             'B::Debug'              => '1.11',
3559             'B::Deparse'            => '0.89',
3560             'B::Lint'               => '1.11',
3561             'B::Lint::Debug'        => undef,
3562             'B::Xref'               => '1.02',
3563             'Benchmark'             => '1.11',
3564             'CGI'                   => '3.43',
3565             'CGI::Carp'             => '1.30_01',
3566             'CGI::Cookie'           => '1.29',
3567             'CPAN'                  => '1.9402',
3568             'CPAN::Author'          => '5.5',
3569             'CPAN::Bundle'          => '5.5',
3570             'CPAN::CacheMgr'        => '5.5',
3571             'CPAN::Complete'        => '5.5',
3572             'CPAN::Debug'           => '5.5',
3573             'CPAN::DeferredCode'    => '5.50',
3574             'CPAN::Distribution'    => '1.93',
3575             'CPAN::Distroprefs'     => '6',
3576             'CPAN::Distrostatus'    => '5.5',
3577             'CPAN::Exception::RecursiveDependency'=> '5.5',
3578             'CPAN::Exception::blocked_urllist'=> '1.0',
3579             'CPAN::Exception::yaml_not_installed'=> '5.5',
3580             'CPAN::FTP'             => '5.5001',
3581             'CPAN::FTP::netrc'      => '1.00',
3582             'CPAN::FirstTime'       => '5.53',
3583             'CPAN::HandleConfig'    => '5.5',
3584             'CPAN::Index'           => '1.93',
3585             'CPAN::InfoObj'         => '5.5',
3586             'CPAN::Kwalify'         => '5.50',
3587             'CPAN::LWP::UserAgent'  => '1.00',
3588             'CPAN::Module'          => '5.5',
3589             'CPAN::Nox'             => '5.50',
3590             'CPAN::Prompt'          => '5.5',
3591             'CPAN::Queue'           => '5.5',
3592             'CPAN::Shell'           => '5.5',
3593             'CPAN::Tarzip'          => '5.501',
3594             'CPAN::URL'             => '5.5',
3595             'CPANPLUS'              => '0.88',
3596             'CPANPLUS::Dist::Autobundle'=> undef,
3597             'CPANPLUS::Dist::Base'  => undef,
3598             'CPANPLUS::Dist::Build' => '0.36',
3599             'CPANPLUS::Dist::Build::Constants'=> '0.36',
3600             'CPANPLUS::Internals'   => '0.88',
3601             'CPANPLUS::Internals::Constants'=> undef,
3602             'CPANPLUS::Internals::Constants::Report'=> undef,
3603             'CPANPLUS::Internals::Source::Memory'=> undef,
3604             'CPANPLUS::Internals::Source::SQLite'=> undef,
3605             'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3606             'CPANPLUS::Shell::Default'=> '0.88',
3607             'Carp'                  => '1.11',
3608             'Carp::Heavy'           => '1.11',
3609             'Compress::Raw::Bzip2'  => '2.020',
3610             'Compress::Raw::Zlib'   => '2.020',
3611             'Compress::Zlib'        => '2.020',
3612             'Cwd'                   => '3.30',
3613             'DB'                    => '1.02',
3614             'DBM_Filter::compress'  => '0.02',
3615             'DBM_Filter::encode'    => '0.02',
3616             'DBM_Filter::int32'     => '0.02',
3617             'DBM_Filter::null'      => '0.02',
3618             'DBM_Filter::utf8'      => '0.02',
3619             'DB_File'               => '1.820',
3620             'Data::Dumper'          => '2.124',
3621             'Devel::DProf'          => '20080331.00',
3622             'Devel::PPPort'         => '3.19',
3623             'Devel::Peek'           => '1.04',
3624             'Digest'                => '1.16',
3625             'Digest::MD5'           => '2.39',
3626             'Digest::SHA'           => '5.47',
3627             'Digest::base'          => '1.16',
3628             'Digest::file'          => '1.16',
3629             'DirHandle'             => '1.03',
3630             'Dumpvalue'             => '1.13',
3631             'DynaLoader'            => '1.10',
3632             'Encode'                => '2.35',
3633             'Encode::Alias'         => '2.12',
3634             'Encode::CN::HZ'        => '2.05',
3635             'Encode::Config'        => '2.05',
3636             'Encode::GSM0338'       => '2.01',
3637             'Encode::Guess'         => '2.03',
3638             'Encode::JP::JIS7'      => '2.04',
3639             'Encode::MIME::Header'  => '2.11',
3640             'Encode::Unicode'       => '2.06',
3641             'Errno'                 => '1.11',
3642             'Exporter'              => '5.63',
3643             'Exporter::Heavy'       => '5.63',
3644             'ExtUtils::CBuilder'    => '0.2602',
3645             'ExtUtils::CBuilder::Base'=> '0.2602',
3646             'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3647             'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3648             'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3649             'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3650             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3651             'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3652             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3653             'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3654             'ExtUtils::Command'     => '1.16',
3655             'ExtUtils::Command::MM' => '6.55_02',
3656             'ExtUtils::Constant'    => '0.22',
3657             'ExtUtils::Constant::ProxySubs'=> '0.06',
3658             'ExtUtils::Constant::Utils'=> '0.02',
3659             'ExtUtils::Constant::XS'=> '0.03',
3660             'ExtUtils::Embed'       => '1.28',
3661             'ExtUtils::Install'     => '1.54',
3662             'ExtUtils::Installed'   => '1.999_001',
3663             'ExtUtils::Liblist'     => '6.55_02',
3664             'ExtUtils::Liblist::Kid'=> '6.5502',
3665             'ExtUtils::MM'          => '6.55_02',
3666             'ExtUtils::MM_AIX'      => '6.55_02',
3667             'ExtUtils::MM_Any'      => '6.55_02',
3668             'ExtUtils::MM_BeOS'     => '6.55_02',
3669             'ExtUtils::MM_Cygwin'   => '6.55_02',
3670             'ExtUtils::MM_DOS'      => '6.5502',
3671             'ExtUtils::MM_Darwin'   => '6.55_02',
3672             'ExtUtils::MM_MacOS'    => '6.5502',
3673             'ExtUtils::MM_NW5'      => '6.55_02',
3674             'ExtUtils::MM_OS2'      => '6.55_02',
3675             'ExtUtils::MM_QNX'      => '6.55_02',
3676             'ExtUtils::MM_UWIN'     => '6.5502',
3677             'ExtUtils::MM_Unix'     => '6.55_02',
3678             'ExtUtils::MM_VMS'      => '6.55_02',
3679             'ExtUtils::MM_VOS'      => '6.55_02',
3680             'ExtUtils::MM_Win32'    => '6.55_02',
3681             'ExtUtils::MM_Win95'    => '6.55_02',
3682             'ExtUtils::MY'          => '6.5502',
3683             'ExtUtils::MakeMaker'   => '6.55_02',
3684             'ExtUtils::MakeMaker::Config'=> '6.55_02',
3685             'ExtUtils::Manifest'    => '1.56',
3686             'ExtUtils::Mkbootstrap' => '6.55_02',
3687             'ExtUtils::Mksymlists'  => '6.55_02',
3688             'ExtUtils::ParseXS'     => '2.2002',
3689             'ExtUtils::testlib'     => '6.5502',
3690             'Fatal'                 => '2.06_01',
3691             'File::Basename'        => '2.77',
3692             'File::CheckTree'       => '4.4',
3693             'File::Compare'         => '1.1006',
3694             'File::Copy'            => '2.14',
3695             'File::DosGlob'         => '1.01',
3696             'File::Fetch'           => '0.20',
3697             'File::Find'            => '1.14',
3698             'File::GlobMapper'      => '1.000',
3699             'File::Path'            => '2.07_03',
3700             'File::Spec'            => '3.30',
3701             'File::Spec::Cygwin'    => '3.30',
3702             'File::Spec::Epoc'      => '3.30',
3703             'File::Spec::Functions' => '3.30',
3704             'File::Spec::Mac'       => '3.30',
3705             'File::Spec::OS2'       => '3.30',
3706             'File::Spec::Unix'      => '3.30',
3707             'File::Spec::VMS'       => '3.30',
3708             'File::Spec::Win32'     => '3.30',
3709             'File::Temp'            => '0.22',
3710             'File::stat'            => '1.01',
3711             'FileCache'             => '1.08',
3712             'FileHandle'            => '2.02',
3713             'Filter::Simple'        => '0.84',
3714             'Filter::Util::Call'    => '1.08',
3715             'FindBin'               => '1.50',
3716             'GDBM_File'             => '1.09',
3717             'Getopt::Long'          => '2.38',
3718             'Getopt::Std'           => '1.06',
3719             'Hash::Util::FieldHash' => '1.04',
3720             'I18N::Collate'         => '1.01',
3721             'IO'                    => '1.25',
3722             'IO::Compress::Adapter::Bzip2'=> '2.020',
3723             'IO::Compress::Adapter::Deflate'=> '2.020',
3724             'IO::Compress::Adapter::Identity'=> '2.020',
3725             'IO::Compress::Base'    => '2.020',
3726             'IO::Compress::Base::Common'=> '2.020',
3727             'IO::Compress::Bzip2'   => '2.020',
3728             'IO::Compress::Deflate' => '2.020',
3729             'IO::Compress::Gzip'    => '2.020',
3730             'IO::Compress::Gzip::Constants'=> '2.020',
3731             'IO::Compress::RawDeflate'=> '2.020',
3732             'IO::Compress::Zip'     => '2.020',
3733             'IO::Compress::Zip::Constants'=> '2.020',
3734             'IO::Compress::Zlib::Constants'=> '2.020',
3735             'IO::Compress::Zlib::Extra'=> '2.020',
3736             'IO::Dir'               => '1.07',
3737             'IO::Handle'            => '1.28',
3738             'IO::Socket'            => '1.31',
3739             'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3740             'IO::Uncompress::Adapter::Identity'=> '2.020',
3741             'IO::Uncompress::Adapter::Inflate'=> '2.020',
3742             'IO::Uncompress::AnyInflate'=> '2.020',
3743             'IO::Uncompress::AnyUncompress'=> '2.020',
3744             'IO::Uncompress::Base'  => '2.020',
3745             'IO::Uncompress::Bunzip2'=> '2.020',
3746             'IO::Uncompress::Gunzip'=> '2.020',
3747             'IO::Uncompress::Inflate'=> '2.020',
3748             'IO::Uncompress::RawInflate'=> '2.020',
3749             'IO::Uncompress::Unzip' => '2.020',
3750             'IO::Zlib'              => '1.09',
3751             'IPC::Cmd'              => '0.46',
3752             'IPC::Msg'              => '2.01',
3753             'IPC::Open2'            => '1.03',
3754             'IPC::Open3'            => '1.04',
3755             'IPC::Semaphore'        => '2.01',
3756             'IPC::SharedMem'        => '2.01',
3757             'IPC::SysV'             => '2.01',
3758             'List::Util'            => '1.21',
3759             'List::Util::PP'        => '1.21',
3760             'List::Util::XS'        => '1.21',
3761             'Locale::Maketext'      => '1.13',
3762             'Locale::Maketext::Guts'=> '1.13',
3763             'Locale::Maketext::GutsLoader'=> '1.13',
3764             'Log::Message'          => '0.02',
3765             'MIME::Base64'          => '3.08',
3766             'MIME::QuotedPrint'     => '3.08',
3767             'Math::BigFloat'        => '1.60',
3768             'Math::BigInt'          => '1.89',
3769             'Math::BigInt::FastCalc'=> '0.19',
3770             'Math::BigRat'          => '0.22',
3771             'Math::Complex'         => '1.56',
3772             'Math::Trig'            => '1.2',
3773             'Memoize'               => '1.01_03',
3774             'Module::Build'         => '0.340201',
3775             'Module::Build::Base'   => '0.340201',
3776             'Module::Build::Compat' => '0.340201',
3777             'Module::Build::Config' => '0.340201',
3778             'Module::Build::Cookbook'=> '0.340201',
3779             'Module::Build::Dumper' => '0.340201',
3780             'Module::Build::ModuleInfo'=> '0.340201',
3781             'Module::Build::Notes'  => '0.340201',
3782             'Module::Build::PPMMaker'=> '0.340201',
3783             'Module::Build::Platform::Amiga'=> '0.340201',
3784             'Module::Build::Platform::Default'=> '0.340201',
3785             'Module::Build::Platform::EBCDIC'=> '0.340201',
3786             'Module::Build::Platform::MPEiX'=> '0.340201',
3787             'Module::Build::Platform::MacOS'=> '0.340201',
3788             'Module::Build::Platform::RiscOS'=> '0.340201',
3789             'Module::Build::Platform::Unix'=> '0.340201',
3790             'Module::Build::Platform::VMS'=> '0.340201',
3791             'Module::Build::Platform::VOS'=> '0.340201',
3792             'Module::Build::Platform::Windows'=> '0.340201',
3793             'Module::Build::Platform::aix'=> '0.340201',
3794             'Module::Build::Platform::cygwin'=> '0.340201',
3795             'Module::Build::Platform::darwin'=> '0.340201',
3796             'Module::Build::Platform::os2'=> '0.340201',
3797             'Module::Build::PodParser'=> '0.340201',
3798             'Module::Build::Version'=> '0.77',
3799             'Module::CoreList'      => '2.18',
3800             'Module::Load'          => '0.16',
3801             'Module::Load::Conditional'=> '0.30',
3802             'Module::Loaded'        => '0.02',
3803             'Module::Pluggable'     => '3.9',
3804             'Module::Pluggable::Object'=> '3.9',
3805             'NDBM_File'             => '1.08',
3806             'NEXT'                  => '0.64',
3807             'Net::Ping'             => '2.36',
3808             'O'                     => '1.01',
3809             'OS2::Process'          => '1.03',
3810             'OS2::REXX'             => '1.04',
3811             'Object::Accessor'      => '0.34',
3812             'POSIX'                 => '1.17',
3813             'Package::Constants'    => '0.02',
3814             'Parse::CPAN::Meta'     => '1.39',
3815             'PerlIO'                => '1.06',
3816             'PerlIO::encoding'      => '0.11',
3817             'PerlIO::scalar'        => '0.07',
3818             'PerlIO::via'           => '0.07',
3819             'Pod::Checker'          => '1.45',
3820             'Pod::Find'             => '1.35',
3821             'Pod::Html'             => '1.09',
3822             'Pod::InputObjects'     => '1.31',
3823             'Pod::Man'              => '2.22',
3824             'Pod::ParseLink'        => '1.09',
3825             'Pod::ParseUtils'       => '1.36',
3826             'Pod::Parser'           => '1.37',
3827             'Pod::Perldoc'          => '3.14_04',
3828             'Pod::PlainText'        => '2.04',
3829             'Pod::Select'           => '1.36',
3830             'Pod::Simple'           => '3.07',
3831             'Pod::Simple::XHTML'    => '3.04',
3832             'Pod::Text'             => '3.13',
3833             'Pod::Text::Color'      => '2.05',
3834             'Pod::Text::Overstrike' => '2.03',
3835             'Pod::Text::Termcap'    => '2.05',
3836             'Pod::Usage'            => '1.36',
3837             'Safe'                  => '2.18',
3838             'Scalar::Util'          => '1.21',
3839             'Scalar::Util::PP'      => '1.21',
3840             'SelectSaver'           => '1.02',
3841             'SelfLoader'            => '1.17',
3842             'Socket'                => '1.82',
3843             'Storable'              => '2.20',
3844             'Switch'                => '2.14',
3845             'Symbol'                => '1.07',
3846             'Sys::Syslog'           => '0.27',
3847             'TAP::Base'             => '3.17',
3848             'TAP::Formatter::Base'  => '3.17',
3849             'TAP::Formatter::Color' => '3.17',
3850             'TAP::Formatter::Console'=> '3.17',
3851             'TAP::Formatter::Console::ParallelSession'=> '3.17',
3852             'TAP::Formatter::Console::Session'=> '3.17',
3853             'TAP::Formatter::File'  => '3.17',
3854             'TAP::Formatter::File::Session'=> '3.17',
3855             'TAP::Formatter::Session'=> '3.17',
3856             'TAP::Harness'          => '3.17',
3857             'TAP::Object'           => '3.17',
3858             'TAP::Parser'           => '3.17',
3859             'TAP::Parser::Aggregator'=> '3.17',
3860             'TAP::Parser::Grammar'  => '3.17',
3861             'TAP::Parser::Iterator' => '3.17',
3862             'TAP::Parser::Iterator::Array'=> '3.17',
3863             'TAP::Parser::Iterator::Process'=> '3.17',
3864             'TAP::Parser::Iterator::Stream'=> '3.17',
3865             'TAP::Parser::IteratorFactory'=> '3.17',
3866             'TAP::Parser::Multiplexer'=> '3.17',
3867             'TAP::Parser::Result'   => '3.17',
3868             'TAP::Parser::Result::Bailout'=> '3.17',
3869             'TAP::Parser::Result::Comment'=> '3.17',
3870             'TAP::Parser::Result::Plan'=> '3.17',
3871             'TAP::Parser::Result::Pragma'=> '3.17',
3872             'TAP::Parser::Result::Test'=> '3.17',
3873             'TAP::Parser::Result::Unknown'=> '3.17',
3874             'TAP::Parser::Result::Version'=> '3.17',
3875             'TAP::Parser::Result::YAML'=> '3.17',
3876             'TAP::Parser::ResultFactory'=> '3.17',
3877             'TAP::Parser::Scheduler'=> '3.17',
3878             'TAP::Parser::Scheduler::Job'=> '3.17',
3879             'TAP::Parser::Scheduler::Spinner'=> '3.17',
3880             'TAP::Parser::Source'   => '3.17',
3881             'TAP::Parser::Source::Perl'=> '3.17',
3882             'TAP::Parser::Utils'    => '3.17',
3883             'TAP::Parser::YAMLish::Reader'=> '3.17',
3884             'TAP::Parser::YAMLish::Writer'=> '3.17',
3885             'Term::ANSIColor'       => '2.00',
3886             'Term::ReadLine'        => '1.04',
3887             'Term::UI'              => '0.20',
3888             'Test'                  => '1.25_02',
3889             'Test::Builder'         => '0.92',
3890             'Test::Builder::Module' => '0.92',
3891             'Test::Builder::Tester' => '1.18',
3892             'Test::Builder::Tester::Color'=> '1.18',
3893             'Test::Harness'         => '3.17',
3894             'Test::More'            => '0.92',
3895             'Test::Simple'          => '0.92',
3896             'Text::ParseWords'      => '3.27',
3897             'Text::Tabs'            => '2009.0305',
3898             'Text::Wrap'            => '2009.0305',
3899             'Thread::Queue'         => '2.11',
3900             'Thread::Semaphore'     => '2.09',
3901             'Tie::Handle'           => '4.2',
3902             'Tie::Hash'             => '1.03',
3903             'Tie::RefHash'          => '1.38',
3904             'Tie::Scalar'           => '1.01',
3905             'Tie::StdHandle'        => '4.2',
3906             'Time::HiRes'           => '1.9719',
3907             'Time::Local'           => '1.1901',
3908             'Time::Piece'           => '1.15',
3909             'UNIVERSAL'             => '1.05',
3910             'Unicode'               => '5.1.0',
3911             'Unicode::Normalize'    => '1.03',
3912             'Unicode::UCD'          => '0.27',
3913             'VMS::Stdio'            => '2.4',
3914             'Win32'                 => '0.39',
3915             'Win32API::File'        => '0.1101',
3916             'XS::APItest'           => '0.15',
3917             'XS::Typemap'           => '0.03',
3918             'XSLoader'              => '0.10',
3919             'attributes'            => '0.09',
3920             'attrs'                 => '1.03',
3921             'autodie'               => '2.06_01',
3922             'autodie::exception'    => '2.06_01',
3923             'autodie::exception::system'=> '2.06_01',
3924             'autodie::hints'        => '2.06_01',
3925             'base'                  => '2.14',
3926             'bigint'                => '0.23',
3927             'bignum'                => '0.23',
3928             'bigrat'                => '0.23',
3929             'blib'                  => '1.04',
3930             'charnames'             => '1.07',
3931             'constant'              => '1.17',
3932             'encoding'              => '2.6_01',
3933             'feature'               => '1.13',
3934             'fields'                => '2.14',
3935             'lib'                   => '0.62',
3936             'mro'                   => '1.01',
3937             'open'                  => '1.07',
3938             'ops'                   => '1.02',
3939             'overload'              => '1.07',
3940             'overload::numbers'     => undef,
3941             'overloading'           => '0.01',
3942             'parent'                => '0.221',
3943             're'                    => '0.09',
3944             'threads'               => '1.72',
3945             'threads::shared'       => '1.29',
3946             'version'               => '0.77',
3947         },
3948         removed => {
3949             'CPAN::API::HOWTO'      => 1,
3950             'CPAN::DeferedCode'     => 1,
3951             'CPANPLUS::inc'         => 1,
3952             'ExtUtils::MakeMaker::bytes'=> 1,
3953             'ExtUtils::MakeMaker::vmsish'=> 1,
3954             'Test::Harness::Assert' => 1,
3955             'Test::Harness::Iterator'=> 1,
3956             'Test::Harness::Point'  => 1,
3957             'Test::Harness::Results'=> 1,
3958             'Test::Harness::Straps' => 1,
3959             'Test::Harness::Util'   => 1,
3960         }
3961     },
3962     5.011 => {
3963         delta_from => 5.010001,
3964         changed => {
3965             'Archive::Tar'          => '1.54',
3966             'Attribute::Handlers'   => '0.87',
3967             'AutoLoader'            => '5.70',
3968             'B::Deparse'            => '0.91',
3969             'B::Lint'               => '1.11_01',
3970             'B::Lint::Debug'        => '0.01',
3971             'CGI'                   => '3.45',
3972             'CGI::Apache'           => '1.01',
3973             'CGI::Carp'             => '3.45',
3974             'CGI::Pretty'           => '3.44',
3975             'CGI::Switch'           => '1.01',
3976             'CGI::Util'             => '3.45',
3977             'CPAN'                  => '1.94_51',
3978             'CPAN::Distribution'    => '1.94',
3979             'CPAN::FTP'             => '5.5002',
3980             'CPAN::Index'           => '1.94',
3981             'CPAN::LWP::UserAgent'  => '1.94',
3982             'CPANPLUS::Dist::Build' => '0.40',
3983             'CPANPLUS::Dist::Build::Constants'=> '0.40',
3984             'Carp'                  => '1.12',
3985             'Carp::Heavy'           => '1.12',
3986             'Class::ISA'            => '0.36',
3987             'Compress::Raw::Bzip2'  => '2.021',
3988             'Compress::Raw::Zlib'   => '2.021',
3989             'Compress::Zlib'        => '2.021',
3990             'Cwd'                   => '3.3002',
3991             'Data::Dumper'          => '2.125',
3992             'Encode'                => '2.37',
3993             'Exporter'              => '5.64',
3994             'Exporter::Heavy'       => '5.64',
3995             'ExtUtils::ParseXS'     => '2.200403',
3996             'File::Basename'        => '2.78',
3997             'File::Copy'            => '2.16',
3998             'File::stat'            => '1.02',
3999             'IO'                    => '1.25_01',
4000             'IO::Compress::Adapter::Bzip2'=> '2.021',
4001             'IO::Compress::Adapter::Deflate'=> '2.021',
4002             'IO::Compress::Adapter::Identity'=> '2.021',
4003             'IO::Compress::Base'    => '2.021',
4004             'IO::Compress::Base::Common'=> '2.021',
4005             'IO::Compress::Bzip2'   => '2.021',
4006             'IO::Compress::Deflate' => '2.021',
4007             'IO::Compress::Gzip'    => '2.021',
4008             'IO::Compress::Gzip::Constants'=> '2.021',
4009             'IO::Compress::RawDeflate'=> '2.021',
4010             'IO::Compress::Zip'     => '2.021',
4011             'IO::Compress::Zip::Constants'=> '2.021',
4012             'IO::Compress::Zlib::Constants'=> '2.021',
4013             'IO::Compress::Zlib::Extra'=> '2.021',
4014             'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
4015             'IO::Uncompress::Adapter::Identity'=> '2.021',
4016             'IO::Uncompress::Adapter::Inflate'=> '2.021',
4017             'IO::Uncompress::AnyInflate'=> '2.021',
4018             'IO::Uncompress::AnyUncompress'=> '2.021',
4019             'IO::Uncompress::Base'  => '2.021',
4020             'IO::Uncompress::Bunzip2'=> '2.021',
4021             'IO::Uncompress::Gunzip'=> '2.021',
4022             'IO::Uncompress::Inflate'=> '2.021',
4023             'IO::Uncompress::RawInflate'=> '2.021',
4024             'IO::Uncompress::Unzip' => '2.021',
4025             'IO::Zlib'              => '1.10',
4026             'IPC::Cmd'              => '0.50',
4027             'IPC::Open3'            => '1.05',
4028             'Locale::Maketext::Simple'=> '0.21',
4029             'Log::Message::Simple'  => '0.06',
4030             'Math::BigInt'          => '1.89_01',
4031             'Math::BigRat'          => '0.24',
4032             'Module::Build'         => '0.35',
4033             'Module::Build::Base'   => '0.35',
4034             'Module::Build::Compat' => '0.35',
4035             'Module::Build::Config' => '0.35',
4036             'Module::Build::Cookbook'=> '0.35',
4037             'Module::Build::Dumper' => '0.35',
4038             'Module::Build::ModuleInfo'=> '0.35',
4039             'Module::Build::Notes'  => '0.35',
4040             'Module::Build::PPMMaker'=> '0.35',
4041             'Module::Build::Platform::Amiga'=> '0.35',
4042             'Module::Build::Platform::Default'=> '0.35',
4043             'Module::Build::Platform::EBCDIC'=> '0.35',
4044             'Module::Build::Platform::MPEiX'=> '0.35',
4045             'Module::Build::Platform::MacOS'=> '0.35',
4046             'Module::Build::Platform::RiscOS'=> '0.35',
4047             'Module::Build::Platform::Unix'=> '0.35',
4048             'Module::Build::Platform::VMS'=> '0.35',
4049             'Module::Build::Platform::VOS'=> '0.35',
4050             'Module::Build::Platform::Windows'=> '0.35',
4051             'Module::Build::Platform::aix'=> '0.35',
4052             'Module::Build::Platform::cygwin'=> '0.35',
4053             'Module::Build::Platform::darwin'=> '0.35',
4054             'Module::Build::Platform::os2'=> '0.35',
4055             'Module::Build::PodParser'=> '0.35',
4056             'Module::CoreList'      => '2.19',
4057             'Module::Loaded'        => '0.06',
4058             'Opcode'                => '1.13',
4059             'PerlIO::via'           => '0.08',
4060             'Pod::Perldoc'          => '3.15_01',
4061             'Pod::Plainer'          => '1.01',
4062             'Safe'                  => '2.19',
4063             'Socket'                => '1.84',
4064             'Switch'                => '2.14_01',
4065             'Term::ANSIColor'       => '2.02',
4066             'Term::ReadLine'        => '1.05',
4067             'Text::Balanced'        => '2.02',
4068             'Text::Soundex'         => '3.03_01',
4069             'Time::Local'           => '1.1901_01',
4070             'Unicode::Collate'      => '0.52_01',
4071             'attributes'            => '0.12',
4072             'constant'              => '1.19',
4073             'deprecate'             => '0.01',
4074             'overload'              => '1.08',
4075             'parent'                => '0.223',
4076             're'                    => '0.10',
4077             'threads'               => '1.74',
4078             'threads::shared'       => '1.31',
4079             'warnings'              => '1.07',
4080         },
4081         removed => {
4082             'attrs'                 => 1,
4083         }
4084     },
4085     5.011001 => {
4086         delta_from => 5.011,
4087         changed => {
4088             'B'                     => '1.23',
4089             'B::Concise'            => '0.77',
4090             'B::Deparse'            => '0.92',
4091             'CGI'                   => '3.48',
4092             'CGI::Pretty'           => '3.46',
4093             'CGI::Util'             => '3.48',
4094             'CPANPLUS'              => '0.89_03',
4095             'CPANPLUS::Internals'   => '0.89_03',
4096             'CPANPLUS::Shell::Default'=> '0.89_03',
4097             'Carp'                  => '1.13',
4098             'Carp::Heavy'           => '1.13',
4099             'ExtUtils::CBuilder'    => '0.260301',
4100             'ExtUtils::CBuilder::Base'=> '0.260301',
4101             'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
4102             'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
4103             'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
4104             'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
4105             'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
4106             'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
4107             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
4108             'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
4109             'ExtUtils::Install'     => '1.55',
4110             'ExtUtils::Manifest'    => '1.57',
4111             'ExtUtils::Packlist'    => '1.44',
4112             'ExtUtils::ParseXS'     => '2.21',
4113             'File::Glob'            => '1.07',
4114             'File::Path'            => '2.08',
4115             'IO'                    => '1.25_02',
4116             'Module::CoreList'      => '2.21',
4117             'OS2::DLL'              => '1.04',
4118             'OS2::Process'          => '1.04',
4119             'Object::Accessor'      => '0.36',
4120             'Opcode'                => '1.15',
4121             'POSIX'                 => '1.18',
4122             'Parse::CPAN::Meta'     => '1.40',
4123             'PerlIO::via'           => '0.09',
4124             'Pod::Simple'           => '3.08',
4125             'Socket'                => '1.85',
4126             'Storable'              => '2.22',
4127             'Switch'                => '2.15',
4128             'Test::Builder'         => '0.94',
4129             'Test::Builder::Module' => '0.94',
4130             'Test::More'            => '0.94',
4131             'Test::Simple'          => '0.94',
4132             'XS::APItest'           => '0.16',
4133             'mro'                   => '1.02',
4134             'overload'              => '1.09',
4135             'threads::shared'       => '1.32',
4136         },
4137         removed => {
4138         }
4139     },
4140     5.011002 => {
4141         delta_from => 5.011001,
4142         changed => {
4143             'B::Concise'            => '0.78',
4144             'B::Deparse'            => '0.93',
4145             'CPANPLUS'              => '0.89_09',
4146             'CPANPLUS::Dist::Build' => '0.44',
4147             'CPANPLUS::Dist::Build::Constants'=> '0.44',
4148             'CPANPLUS::Internals'   => '0.89_09',
4149             'CPANPLUS::Shell::Default'=> '0.89_09',
4150             'Carp'                  => '1.14',
4151             'Carp::Heavy'           => '1.14',
4152             'Compress::Zlib'        => '2.022',
4153             'DBM_Filter'            => '0.03',
4154             'Encode'                => '2.38',
4155             'Encode::Byte'          => '2.04',
4156             'Encode::CN'            => '2.03',
4157             'Encode::JP'            => '2.04',
4158             'Encode::KR'            => '2.03',
4159             'Encode::TW'            => '2.03',
4160             'Encode::Unicode'       => '2.07',
4161             'Env'                   => '1.01',
4162             'Exporter'              => '5.64_01',
4163             'Exporter::Heavy'       => '5.64_01',
4164             'ExtUtils::CBuilder'    => '0.27',
4165             'ExtUtils::CBuilder::Base'=> '0.27',
4166             'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
4167             'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
4168             'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
4169             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
4170             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
4171             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
4172             'ExtUtils::CBuilder::Platform::aix'=> '0.27',
4173             'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
4174             'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
4175             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
4176             'ExtUtils::CBuilder::Platform::os2'=> '0.27',
4177             'File::Fetch'           => '0.22',
4178             'I18N::LangTags::Detect'=> '1.04',
4179             'I18N::Langinfo'        => '0.03',
4180             'IO::Compress::Adapter::Bzip2'=> '2.022',
4181             'IO::Compress::Adapter::Deflate'=> '2.022',
4182             'IO::Compress::Adapter::Identity'=> '2.022',
4183             'IO::Compress::Base'    => '2.022',
4184             'IO::Compress::Base::Common'=> '2.022',
4185             'IO::Compress::Bzip2'   => '2.022',
4186             'IO::Compress::Deflate' => '2.022',
4187             'IO::Compress::Gzip'    => '2.022',
4188             'IO::Compress::Gzip::Constants'=> '2.022',
4189             'IO::Compress::RawDeflate'=> '2.022',
4190             'IO::Compress::Zip'     => '2.022',
4191             'IO::Compress::Zip::Constants'=> '2.022',
4192             'IO::Compress::Zlib::Constants'=> '2.022',
4193             'IO::Compress::Zlib::Extra'=> '2.022',
4194             'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4195             'IO::Uncompress::Adapter::Identity'=> '2.022',
4196             'IO::Uncompress::Adapter::Inflate'=> '2.022',
4197             'IO::Uncompress::AnyInflate'=> '2.022',
4198             'IO::Uncompress::AnyUncompress'=> '2.022',
4199             'IO::Uncompress::Base'  => '2.022',
4200             'IO::Uncompress::Bunzip2'=> '2.022',
4201             'IO::Uncompress::Gunzip'=> '2.022',
4202             'IO::Uncompress::Inflate'=> '2.022',
4203             'IO::Uncompress::RawInflate'=> '2.022',
4204             'IO::Uncompress::Unzip' => '2.022',
4205             'IPC::Cmd'              => '0.54',
4206             'List::Util'            => '1.22',
4207             'List::Util::PP'        => '1.22',
4208             'List::Util::XS'        => '1.22',
4209             'Locale::Maketext'      => '1.14',
4210             'Module::Build'         => '0.35_09',
4211             'Module::Build::Base'   => '0.35_09',
4212             'Module::Build::Compat' => '0.35_09',
4213             'Module::Build::Config' => '0.35_09',
4214             'Module::Build::Cookbook'=> '0.35_09',
4215             'Module::Build::Dumper' => '0.35_09',
4216             'Module::Build::ModuleInfo'=> '0.35_09',
4217             'Module::Build::Notes'  => '0.35_09',
4218             'Module::Build::PPMMaker'=> '0.35_09',
4219             'Module::Build::Platform::Amiga'=> '0.35_09',
4220             'Module::Build::Platform::Default'=> '0.35_09',
4221             'Module::Build::Platform::EBCDIC'=> '0.35_09',
4222             'Module::Build::Platform::MPEiX'=> '0.35_09',
4223             'Module::Build::Platform::MacOS'=> '0.35_09',
4224             'Module::Build::Platform::RiscOS'=> '0.35_09',
4225             'Module::Build::Platform::Unix'=> '0.35_09',
4226             'Module::Build::Platform::VMS'=> '0.35_09',
4227             'Module::Build::Platform::VOS'=> '0.35_09',
4228             'Module::Build::Platform::Windows'=> '0.35_09',
4229             'Module::Build::Platform::aix'=> '0.35_09',
4230             'Module::Build::Platform::cygwin'=> '0.35_09',
4231             'Module::Build::Platform::darwin'=> '0.35_09',
4232             'Module::Build::Platform::os2'=> '0.35_09',
4233             'Module::Build::PodParser'=> '0.35_09',
4234             'Module::Build::YAML'   => '1.40',
4235             'Module::CoreList'      => '2.23',
4236             'Module::Load::Conditional'=> '0.34',
4237             'Pod::Simple'           => '3.10',
4238             'Pod::Simple::XHTML'    => '3.10',
4239             'Scalar::Util'          => '1.22',
4240             'Scalar::Util::PP'      => '1.22',
4241             'Switch'                => '2.16',
4242             'XS::APItest'           => '0.17',
4243             'XS::APItest::KeywordRPN'=> '0.003',
4244             'base'                  => '2.15',
4245             'diagnostics'           => '1.18',
4246             'fields'                => '2.15',
4247             'inc::latest'           => '0.35_09',
4248             'legacy'                => '1.00',
4249             'overload'              => '1.10',
4250         },
4251         removed => {
4252         }
4253     },
4254     5.011003 => {
4255         delta_from => 5.011002,
4256         changed => {
4257             'App::Cpan'             => '1.570001',
4258             'Archive::Extract'      => '0.36',
4259             'CPAN'                  => '1.94_5301',
4260             'CPAN::FTP'             => '5.5004',
4261             'CPAN::FirstTime'       => '5.530001',
4262             'CPAN::Mirrors'         => '1.770001',
4263             'CPANPLUS'              => '0.90',
4264             'CPANPLUS::Internals'   => '0.90',
4265             'CPANPLUS::Shell::Default'=> '0.90',
4266             'Cwd'                   => '3.31',
4267             'Encode'                => '2.39',
4268             'ExtUtils::Command::MM' => '6.56',
4269             'ExtUtils::Liblist'     => '6.56',
4270             'ExtUtils::Liblist::Kid'=> '6.56',
4271             'ExtUtils::MM'          => '6.56',
4272             'ExtUtils::MM_AIX'      => '6.56',
4273             'ExtUtils::MM_Any'      => '6.56',
4274             'ExtUtils::MM_BeOS'     => '6.56',
4275             'ExtUtils::MM_Cygwin'   => '6.56',
4276             'ExtUtils::MM_DOS'      => '6.56',
4277             'ExtUtils::MM_Darwin'   => '6.56',
4278             'ExtUtils::MM_MacOS'    => '6.56',
4279             'ExtUtils::MM_NW5'      => '6.56',
4280             'ExtUtils::MM_OS2'      => '6.56',
4281             'ExtUtils::MM_QNX'      => '6.56',
4282             'ExtUtils::MM_UWIN'     => '6.56',
4283             'ExtUtils::MM_Unix'     => '6.56',
4284             'ExtUtils::MM_VMS'      => '6.56',
4285             'ExtUtils::MM_VOS'      => '6.56',
4286             'ExtUtils::MM_Win32'    => '6.56',
4287             'ExtUtils::MM_Win95'    => '6.56',
4288             'ExtUtils::MY'          => '6.56',
4289             'ExtUtils::MakeMaker'   => '6.56',
4290             'ExtUtils::MakeMaker::Config'=> '6.56',
4291             'ExtUtils::Mkbootstrap' => '6.56',
4292             'ExtUtils::Mksymlists'  => '6.56',
4293             'ExtUtils::testlib'     => '6.56',
4294             'File::Find'            => '1.15',
4295             'File::Path'            => '2.08_01',
4296             'File::Spec'            => '3.31',
4297             'Module::Build'         => '0.36',
4298             'Module::Build::Base'   => '0.36',
4299             'Module::Build::Compat' => '0.36',
4300             'Module::Build::Config' => '0.36',
4301             'Module::Build::Cookbook'=> '0.36',
4302             'Module::Build::Dumper' => '0.36',
4303             'Module::Build::ModuleInfo'=> '0.36',
4304             'Module::Build::Notes'  => '0.36',
4305             'Module::Build::PPMMaker'=> '0.36',
4306             'Module::Build::Platform::Amiga'=> '0.36',
4307             'Module::Build::Platform::Default'=> '0.36',
4308             'Module::Build::Platform::EBCDIC'=> '0.36',
4309             'Module::Build::Platform::MPEiX'=> '0.36',
4310             'Module::Build::Platform::MacOS'=> '0.36',
4311             'Module::Build::Platform::RiscOS'=> '0.36',
4312             'Module::Build::Platform::Unix'=> '0.36',
4313             'Module::Build::Platform::VMS'=> '0.36',
4314             'Module::Build::Platform::VOS'=> '0.36',
4315             'Module::Build::Platform::Windows'=> '0.36',
4316             'Module::Build::Platform::aix'=> '0.36',
4317             'Module::Build::Platform::cygwin'=> '0.36',
4318             'Module::Build::Platform::darwin'=> '0.36',
4319             'Module::Build::Platform::os2'=> '0.36',
4320             'Module::Build::PodParser'=> '0.36',
4321             'Module::CoreList'      => '2.24',
4322             'POSIX'                 => '1.19',
4323             'Pod::Simple'           => '3.13',
4324             'Pod::Simple::BlackBox' => '3.13',
4325             'Pod::Simple::Checker'  => '3.13',
4326             'Pod::Simple::Debug'    => '3.13',
4327             'Pod::Simple::DumpAsText'=> '3.13',
4328             'Pod::Simple::DumpAsXML'=> '3.13',
4329             'Pod::Simple::HTML'     => '3.13',
4330             'Pod::Simple::HTMLBatch'=> '3.13',
4331             'Pod::Simple::LinkSection'=> '3.13',
4332             'Pod::Simple::Methody'  => '3.13',
4333             'Pod::Simple::Progress' => '3.13',
4334             'Pod::Simple::PullParser'=> '3.13',
4335             'Pod::Simple::PullParserEndToken'=> '3.13',
4336             'Pod::Simple::PullParserStartToken'=> '3.13',
4337             'Pod::Simple::PullParserTextToken'=> '3.13',
4338             'Pod::Simple::PullParserToken'=> '3.13',
4339             'Pod::Simple::RTF'      => '3.13',
4340             'Pod::Simple::Search'   => '3.13',
4341             'Pod::Simple::SimpleTree'=> '3.13',
4342             'Pod::Simple::Text'     => '3.13',
4343             'Pod::Simple::TextContent'=> '3.13',
4344             'Pod::Simple::TiedOutFH'=> '3.13',
4345             'Pod::Simple::Transcode'=> '3.13',
4346             'Pod::Simple::TranscodeDumb'=> '3.13',
4347             'Pod::Simple::TranscodeSmart'=> '3.13',
4348             'Pod::Simple::XHTML'    => '3.13',
4349             'Pod::Simple::XMLOutStream'=> '3.13',
4350             'Safe'                  => '2.20',
4351             'Unicode'               => '5.2.0',
4352             'constant'              => '1.20',
4353             'diagnostics'           => '1.19',
4354             'feature'               => '1.14',
4355             'inc::latest'           => '0.36',
4356             'threads'               => '1.75',
4357             'warnings'              => '1.08',
4358         },
4359         removed => {
4360             'legacy'                => 1,
4361         }
4362     },
4363     5.011004 => {
4364         delta_from => 5.011003,
4365         changed => {
4366             'App::Cpan'             => '1.5701',
4367             'Archive::Extract'      => '0.38',
4368             'B::Deparse'            => '0.94',
4369             'CPAN'                  => '1.94_54',
4370             'CPAN::FirstTime'       => '5.53',
4371             'CPAN::Mirrors'         => '1.77',
4372             'Carp'                  => '1.15',
4373             'Carp::Heavy'           => '1.15',
4374             'Compress::Raw::Bzip2'  => '2.024',
4375             'Compress::Raw::Zlib'   => '2.024',
4376             'Compress::Zlib'        => '2.024',
4377             'File::Copy'            => '2.17',
4378             'File::Fetch'           => '0.24',
4379             'GDBM_File'             => '1.10',
4380             'IO::Compress::Adapter::Bzip2'=> '2.024',
4381             'IO::Compress::Adapter::Deflate'=> '2.024',
4382             'IO::Compress::Adapter::Identity'=> '2.024',
4383             'IO::Compress::Base'    => '2.024',
4384             'IO::Compress::Base::Common'=> '2.024',
4385             'IO::Compress::Bzip2'   => '2.024',
4386             'IO::Compress::Deflate' => '2.024',
4387             'IO::Compress::Gzip'    => '2.024',
4388             'IO::Compress::Gzip::Constants'=> '2.024',
4389             'IO::Compress::RawDeflate'=> '2.024',
4390             'IO::Compress::Zip'     => '2.024',
4391             'IO::Compress::Zip::Constants'=> '2.024',
4392             'IO::Compress::Zlib::Constants'=> '2.024',
4393             'IO::Compress::Zlib::Extra'=> '2.024',
4394             'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4395             'IO::Uncompress::Adapter::Identity'=> '2.024',
4396             'IO::Uncompress::Adapter::Inflate'=> '2.024',
4397             'IO::Uncompress::AnyInflate'=> '2.024',
4398             'IO::Uncompress::AnyUncompress'=> '2.024',
4399             'IO::Uncompress::Base'  => '2.024',
4400             'IO::Uncompress::Bunzip2'=> '2.024',
4401             'IO::Uncompress::Gunzip'=> '2.024',
4402             'IO::Uncompress::Inflate'=> '2.024',
4403             'IO::Uncompress::RawInflate'=> '2.024',
4404             'IO::Uncompress::Unzip' => '2.024',
4405             'Module::Build'         => '0.3603',
4406             'Module::Build::Base'   => '0.3603',
4407             'Module::Build::Compat' => '0.3603',
4408             'Module::Build::Config' => '0.3603',
4409             'Module::Build::Cookbook'=> '0.3603',
4410             'Module::Build::Dumper' => '0.3603',
4411             'Module::Build::ModuleInfo'=> '0.3603',
4412             'Module::Build::Notes'  => '0.3603',
4413             'Module::Build::PPMMaker'=> '0.3603',
4414             'Module::Build::Platform::Amiga'=> '0.3603',
4415             'Module::Build::Platform::Default'=> '0.3603',
4416             'Module::Build::Platform::EBCDIC'=> '0.3603',
4417             'Module::Build::Platform::MPEiX'=> '0.3603',
4418             'Module::Build::Platform::MacOS'=> '0.3603',
4419             'Module::Build::Platform::RiscOS'=> '0.3603',
4420             'Module::Build::Platform::Unix'=> '0.3603',
4421             'Module::Build::Platform::VMS'=> '0.3603',
4422             'Module::Build::Platform::VOS'=> '0.3603',
4423             'Module::Build::Platform::Windows'=> '0.3603',
4424             'Module::Build::Platform::aix'=> '0.3603',
4425             'Module::Build::Platform::cygwin'=> '0.3603',
4426             'Module::Build::Platform::darwin'=> '0.3603',
4427             'Module::Build::Platform::os2'=> '0.3603',
4428             'Module::Build::PodParser'=> '0.3603',
4429             'Module::CoreList'      => '2.25',
4430             'PerlIO::encoding'      => '0.12',
4431             'Safe'                  => '2.21',
4432             'UNIVERSAL'             => '1.06',
4433             'feature'               => '1.15',
4434             'inc::latest'           => '0.3603',
4435             'less'                  => '0.03',
4436             're'                    => '0.11',
4437             'version'               => '0.81',
4438             'warnings'              => '1.09',
4439         },
4440         removed => {
4441         }
4442     },
4443     5.011005 => {
4444         delta_from => 5.011004,
4445         changed => {
4446             'B::Debug'              => '1.12',
4447             'CPAN'                  => '1.94_56',
4448             'CPAN::Debug'           => '5.5001',
4449             'CPAN::Distribution'    => '1.9456',
4450             'CPAN::FirstTime'       => '5.5301',
4451             'CPAN::HandleConfig'    => '5.5001',
4452             'CPAN::Shell'           => '5.5001',
4453             'CPAN::Tarzip'          => '5.5011',
4454             'CPANPLUS::Dist::Build' => '0.46',
4455             'CPANPLUS::Dist::Build::Constants'=> '0.46',
4456             'Module::CoreList'      => '2.26',
4457             'Pod::Man'              => '2.23',
4458             'Pod::ParseLink'        => '1.10',
4459             'Pod::Perldoc'          => '3.15_02',
4460             'Pod::Plainer'          => '1.02',
4461             'Pod::Text'             => '3.14',
4462             'Pod::Text::Color'      => '2.06',
4463             'Pod::Text::Overstrike' => '2.04',
4464             'Pod::Text::Termcap'    => '2.06',
4465             'Safe'                  => '2.22',
4466             'Socket'                => '1.86',
4467             'version'               => '0.82',
4468         },
4469         removed => {
4470         }
4471     },
4472     5.012 => {
4473         delta_from => 5.011005,
4474         changed => {
4475             'B::Deparse'            => '0.96',
4476             'CPAN::Distribution'    => '1.9456_01',
4477             'Module::CoreList'      => '2.29',
4478             'Safe'                  => '2.25',
4479             'Socket'                => '1.87',
4480             'Tie::Scalar'           => '1.02',
4481             'Time::Piece'           => '1.15_01',
4482             'bytes'                 => '1.04',
4483             'feature'               => '1.16',
4484             'utf8'                  => '1.08',
4485         },
4486         removed => {
4487         }
4488     },
4489     5.012001 => {
4490         delta_from => 5.012,
4491         changed => {
4492             'B::Deparse'            => '0.97',
4493             'CGI'                   => '3.49',
4494             'CGI::Fast'             => '1.08',
4495             'Carp'                  => '1.16',
4496             'Carp::Heavy'           => '1.16',
4497             'File::Copy'            => '2.18',
4498             'Module::CoreList'      => '2.32',
4499             'Pod::Functions'        => '1.04',
4500             'Pod::Simple'           => '3.14',
4501             'Pod::Simple::BlackBox' => '3.14',
4502             'Pod::Simple::Checker'  => '3.14',
4503             'Pod::Simple::Debug'    => '3.14',
4504             'Pod::Simple::DumpAsText'=> '3.14',
4505             'Pod::Simple::DumpAsXML'=> '3.14',
4506             'Pod::Simple::HTML'     => '3.14',
4507             'Pod::Simple::HTMLBatch'=> '3.14',
4508             'Pod::Simple::LinkSection'=> '3.14',
4509             'Pod::Simple::Methody'  => '3.14',
4510             'Pod::Simple::Progress' => '3.14',
4511             'Pod::Simple::PullParser'=> '3.14',
4512             'Pod::Simple::PullParserEndToken'=> '3.14',
4513             'Pod::Simple::PullParserStartToken'=> '3.14',
4514             'Pod::Simple::PullParserTextToken'=> '3.14',
4515             'Pod::Simple::PullParserToken'=> '3.14',
4516             'Pod::Simple::RTF'      => '3.14',
4517             'Pod::Simple::Search'   => '3.14',
4518             'Pod::Simple::SimpleTree'=> '3.14',
4519             'Pod::Simple::Text'     => '3.14',
4520             'Pod::Simple::TextContent'=> '3.14',
4521             'Pod::Simple::TiedOutFH'=> '3.14',
4522             'Pod::Simple::Transcode'=> '3.14',
4523             'Pod::Simple::TranscodeDumb'=> '3.14',
4524             'Pod::Simple::TranscodeSmart'=> '3.14',
4525             'Pod::Simple::XHTML'    => '3.14',
4526             'Pod::Simple::XMLOutStream'=> '3.14',
4527             'Safe'                  => '2.27',
4528         },
4529         removed => {
4530         }
4531     },
4532     5.012002 => {
4533         delta_from => 5.012001,
4534         changed => {
4535             'Carp'                  => '1.17',
4536             'Carp::Heavy'           => '1.17',
4537             'File::Spec'            => '3.31_01',
4538             'Module::CoreList'      => '2.38',
4539             'Module::Load::Conditional'=> '0.38',
4540             'PerlIO::scalar'        => '0.08',
4541         },
4542         removed => {
4543         }
4544     },
4545     5.012003 => {
4546         delta_from => 5.012002,
4547         changed => {
4548             'B::Deparse'            => '0.9701',
4549             'Module::Build::Platform::cygwin'=> '0.360301',
4550             'Module::CoreList'      => '2.43',
4551             'Socket'                => '1.87_01',
4552         },
4553         removed => {
4554         }
4555     },
4556     5.012004 => {
4557         delta_from => 5.012003,
4558         changed => {
4559             'Module::CoreList'      => '2.50',
4560         },
4561         removed => {
4562         }
4563     },
4564     5.012005 => {
4565         delta_from => 5.012004,
4566         changed => {
4567             'B::Concise'            => '0.78_01',
4568             'Encode'                => '2.39_01',
4569             'File::Glob'            => '1.07_01',
4570             'Module::CoreList'      => '2.50_02',
4571             'Unicode::UCD'          => '0.29',
4572             'charnames'             => '1.07_01',
4573         },
4574         removed => {
4575         }
4576     },
4577     5.013 => {
4578         delta_from => 5.012,
4579         changed => {
4580             'CGI'                   => '3.49',
4581             'CGI::Fast'             => '1.08',
4582             'Data::Dumper'          => '2.126',
4583             'ExtUtils::MM_Unix'     => '6.5601',
4584             'ExtUtils::MakeMaker'   => '6.5601',
4585             'File::Copy'            => '2.18',
4586             'IPC::Open3'            => '1.06',
4587             'MIME::Base64'          => '3.09',
4588             'MIME::QuotedPrint'     => '3.09',
4589             'Module::CoreList'      => '2.31',
4590             'Pod::Functions'        => '1.04',
4591             'XS::APItest'           => '0.18',
4592             'XS::APItest::KeywordRPN'=> '0.004',
4593             'feature'               => '1.17',
4594             'threads'               => '1.77_01',
4595             'threads::shared'       => '1.33',
4596         },
4597         removed => {
4598         }
4599     },
4600     5.013001 => {
4601         delta_from => 5.012001,
4602         changed => {
4603             'Data::Dumper'          => '2.126',
4604             'Dumpvalue'             => '1.14',
4605             'Errno'                 => '1.12',
4606             'ExtUtils::MM_Unix'     => '6.5601',
4607             'ExtUtils::MakeMaker'   => '6.5601',
4608             'ExtUtils::ParseXS'     => '2.2205',
4609             'File::Find'            => '1.16',
4610             'IPC::Cmd'              => '0.58',
4611             'IPC::Open3'            => '1.06',
4612             'List::Util'            => '1.23',
4613             'List::Util::PP'        => '1.23',
4614             'List::Util::XS'        => '1.23',
4615             'Locale::Codes'         => '3.12',
4616             'Locale::Codes::Country'=> '3.12',
4617             'Locale::Codes::Currency'=> '3.12',
4618             'Locale::Codes::Language'=> '3.12',
4619             'Locale::Codes::Script' => '3.12',
4620             'Locale::Constants'     => '3.12',
4621             'Locale::Country'       => '3.12',
4622             'Locale::Currency'      => '3.12',
4623             'Locale::Language'      => '3.12',
4624             'Locale::Script'        => '3.12',
4625             'MIME::Base64'          => '3.09',
4626             'MIME::QuotedPrint'     => '3.09',
4627             'Module::Build::Platform::cygwin'=> '0.360301',
4628             'Module::CoreList'      => '2.34',
4629             'Module::Load::Conditional'=> '0.38',
4630             'PerlIO::scalar'        => '0.08',
4631             'Scalar::Util'          => '1.23',
4632             'Scalar::Util::PP'      => '1.23',
4633             'Socket'                => '1.88',
4634             'Term::ReadLine'        => '1.06',
4635             'Unicode::UCD'          => '0.28',
4636             'XS::APItest'           => '0.19',
4637             'XS::APItest::KeywordRPN'=> '0.004',
4638             'charnames'             => '1.08',
4639             'feature'               => '1.17',
4640             'threads'               => '1.77_01',
4641             'threads::shared'       => '1.33',
4642         },
4643         removed => {
4644             'Class::ISA'            => 1,
4645             'Pod::Plainer'          => 1,
4646             'Switch'                => 1,
4647         }
4648     },
4649     5.013002 => {
4650         delta_from => 5.013001,
4651         changed => {
4652             'B::Concise'            => '0.79',
4653             'B::Deparse'            => '0.98',
4654             'CPAN'                  => '1.94_57',
4655             'CPAN::Distribution'    => '1.9600',
4656             'Exporter'              => '5.64_02',
4657             'Exporter::Heavy'       => '5.64_02',
4658             'File::Copy'            => '2.19',
4659             'Hash::Util'            => '0.08',
4660             'IO::Socket'            => '1.32',
4661             'Locale::Codes'         => '3.13',
4662             'Locale::Codes::Country'=> '3.13',
4663             'Locale::Codes::Currency'=> '3.13',
4664             'Locale::Codes::Language'=> '3.13',
4665             'Locale::Codes::Script' => '3.13',
4666             'Locale::Constants'     => '3.13',
4667             'Locale::Country'       => '3.13',
4668             'Locale::Currency'      => '3.13',
4669             'Locale::Language'      => '3.13',
4670             'Locale::Script'        => '3.13',
4671             'Search::Dict'          => '1.03',
4672             'Socket'                => '1.89',
4673             'Thread::Semaphore'     => '2.11',
4674             'UNIVERSAL'             => '1.07',
4675             'VMS::DCLsym'           => '1.04',
4676             'mro'                   => '1.03',
4677             'threads'               => '1.77_02',
4678             'threads::shared'       => '1.33_01',
4679         },
4680         removed => {
4681         }
4682     },
4683     5.013003 => {
4684         delta_from => 5.013002,
4685         changed => {
4686             'App::Prove'            => '3.21',
4687             'App::Prove::State'     => '3.21',
4688             'App::Prove::State::Result'=> '3.21',
4689             'App::Prove::State::Result::Test'=> '3.21',
4690             'Archive::Extract'      => '0.42',
4691             'Archive::Tar'          => '1.64',
4692             'Archive::Tar::Constant'=> '1.64',
4693             'Archive::Tar::File'    => '1.64',
4694             'Attribute::Handlers'   => '0.88',
4695             'CPANPLUS'              => '0.9007',
4696             'CPANPLUS::Internals'   => '0.9007',
4697             'CPANPLUS::Shell::Default'=> '0.9007',
4698             'Compress::Raw::Bzip2'  => '2.027',
4699             'Compress::Raw::Zlib'   => '2.027_01',
4700             'Compress::Zlib'        => '2.027',
4701             'DB'                    => '1.03',
4702             'Digest::MD5'           => '2.40',
4703             'Digest::SHA'           => '5.48',
4704             'Exporter'              => '5.64_03',
4705             'Exporter::Heavy'       => '5.64_03',
4706             'ExtUtils::CBuilder'    => '0.2703',
4707             'ExtUtils::CBuilder::Base'=> '0.2703_01',
4708             'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4709             'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4710             'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4711             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4712             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4713             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4714             'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4715             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4716             'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4717             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4718             'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4719             'ExtUtils::Manifest'    => '1.58',
4720             'ExtUtils::ParseXS'     => '2.2206',
4721             'Fatal'                 => '2.10',
4722             'File::Basename'        => '2.79',
4723             'File::Copy'            => '2.20',
4724             'File::DosGlob'         => '1.02',
4725             'File::Find'            => '1.17',
4726             'File::Glob'            => '1.08',
4727             'File::stat'            => '1.03',
4728             'I18N::LangTags'        => '0.35_01',
4729             'I18N::LangTags::List'  => '0.35_01',
4730             'IO::Compress::Adapter::Bzip2'=> '2.027',
4731             'IO::Compress::Adapter::Deflate'=> '2.027',
4732             'IO::Compress::Adapter::Identity'=> '2.027',
4733             'IO::Compress::Base'    => '2.027',
4734             'IO::Compress::Base::Common'=> '2.027',
4735             'IO::Compress::Bzip2'   => '2.027',
4736             'IO::Compress::Deflate' => '2.027',
4737             'IO::Compress::Gzip'    => '2.027',
4738             'IO::Compress::Gzip::Constants'=> '2.027',
4739             'IO::Compress::RawDeflate'=> '2.027',
4740             'IO::Compress::Zip'     => '2.027',
4741             'IO::Compress::Zip::Constants'=> '2.027',
4742             'IO::Compress::Zlib::Constants'=> '2.027',
4743             'IO::Compress::Zlib::Extra'=> '2.027',
4744             'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4745             'IO::Uncompress::Adapter::Identity'=> '2.027',
4746             'IO::Uncompress::Adapter::Inflate'=> '2.027',
4747             'IO::Uncompress::AnyInflate'=> '2.027',
4748             'IO::Uncompress::AnyUncompress'=> '2.027',
4749             'IO::Uncompress::Base'  => '2.027',
4750             'IO::Uncompress::Bunzip2'=> '2.027',
4751             'IO::Uncompress::Gunzip'=> '2.027',
4752             'IO::Uncompress::Inflate'=> '2.027',
4753             'IO::Uncompress::RawInflate'=> '2.027',
4754             'IO::Uncompress::Unzip' => '2.027',
4755             'IPC::Cmd'              => '0.60',
4756             'IPC::Msg'              => '2.03',
4757             'IPC::Semaphore'        => '2.03',
4758             'IPC::SharedMem'        => '2.03',
4759             'IPC::SysV'             => '2.03',
4760             'Locale::Maketext'      => '1.15',
4761             'Locale::Maketext::Guts'=> undef,
4762             'Locale::Maketext::GutsLoader'=> undef,
4763             'Module::Build'         => '0.3607',
4764             'Module::Build::Base'   => '0.3607',
4765             'Module::Build::Compat' => '0.3607',
4766             'Module::Build::Config' => '0.3607',
4767             'Module::Build::Cookbook'=> '0.3607',
4768             'Module::Build::Dumper' => '0.3607',
4769             'Module::Build::ModuleInfo'=> '0.3607',
4770             'Module::Build::Notes'  => '0.3607',
4771             'Module::Build::PPMMaker'=> '0.3607',
4772             'Module::Build::Platform::Amiga'=> '0.3607',
4773             'Module::Build::Platform::Default'=> '0.3607',
4774             'Module::Build::Platform::EBCDIC'=> '0.3607',
4775             'Module::Build::Platform::MPEiX'=> '0.3607',
4776             'Module::Build::Platform::MacOS'=> '0.3607',
4777             'Module::Build::Platform::RiscOS'=> '0.3607',
4778             'Module::Build::Platform::Unix'=> '0.3607',
4779             'Module::Build::Platform::VMS'=> '0.3607',
4780             'Module::Build::Platform::VOS'=> '0.3607',
4781             'Module::Build::Platform::Windows'=> '0.3607',
4782             'Module::Build::Platform::aix'=> '0.3607',
4783             'Module::Build::Platform::cygwin'=> '0.3607',
4784             'Module::Build::Platform::darwin'=> '0.3607',
4785             'Module::Build::Platform::os2'=> '0.3607',
4786             'Module::Build::PodParser'=> '0.3607',
4787             'Module::CoreList'      => '2.36',
4788             'Module::Load'          => '0.18',
4789             'TAP::Base'             => '3.21',
4790             'TAP::Formatter::Base'  => '3.21',
4791             'TAP::Formatter::Color' => '3.21',
4792             'TAP::Formatter::Console'=> '3.21',
4793             'TAP::Formatter::Console::ParallelSession'=> '3.21',
4794             'TAP::Formatter::Console::Session'=> '3.21',
4795             'TAP::Formatter::File'  => '3.21',
4796             'TAP::Formatter::File::Session'=> '3.21',
4797             'TAP::Formatter::Session'=> '3.21',
4798             'TAP::Harness'          => '3.21',
4799             'TAP::Object'           => '3.21',
4800             'TAP::Parser'           => '3.21',
4801             'TAP::Parser::Aggregator'=> '3.21',
4802             'TAP::Parser::Grammar'  => '3.21',
4803             'TAP::Parser::Iterator' => '3.21',
4804             'TAP::Parser::Iterator::Array'=> '3.21',
4805             'TAP::Parser::Iterator::Process'=> '3.21',
4806             'TAP::Parser::Iterator::Stream'=> '3.21',
4807             'TAP::Parser::IteratorFactory'=> '3.21',
4808             'TAP::Parser::Multiplexer'=> '3.21',
4809             'TAP::Parser::Result'   => '3.21',
4810             'TAP::Parser::Result::Bailout'=> '3.21',
4811             'TAP::Parser::Result::Comment'=> '3.21',
4812             'TAP::Parser::Result::Plan'=> '3.21',
4813             'TAP::Parser::Result::Pragma'=> '3.21',
4814             'TAP::Parser::Result::Test'=> '3.21',
4815             'TAP::Parser::Result::Unknown'=> '3.21',
4816             'TAP::Parser::Result::Version'=> '3.21',
4817             'TAP::Parser::Result::YAML'=> '3.21',
4818             'TAP::Parser::ResultFactory'=> '3.21',
4819             'TAP::Parser::Scheduler'=> '3.21',
4820             'TAP::Parser::Scheduler::Job'=> '3.21',
4821             'TAP::Parser::Scheduler::Spinner'=> '3.21',
4822             'TAP::Parser::Source'   => '3.21',
4823             'TAP::Parser::SourceHandler'=> '3.21',
4824             'TAP::Parser::SourceHandler::Executable'=> '3.21',
4825             'TAP::Parser::SourceHandler::File'=> '3.21',
4826             'TAP::Parser::SourceHandler::Handle'=> '3.21',
4827             'TAP::Parser::SourceHandler::Perl'=> '3.21',
4828             'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4829             'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4830             'TAP::Parser::Utils'    => '3.21',
4831             'TAP::Parser::YAMLish::Reader'=> '3.21',
4832             'TAP::Parser::YAMLish::Writer'=> '3.21',
4833             'Term::ANSIColor'       => '3.00',
4834             'Term::ReadLine'        => '1.07',
4835             'Test::Harness'         => '3.21',
4836             'Tie::Array'            => '1.04',
4837             'Time::HiRes'           => '1.9721',
4838             'Time::Piece'           => '1.20_01',
4839             'Unicode::Collate'      => '0.53',
4840             'Unicode::Normalize'    => '1.06',
4841             'Unicode::UCD'          => '0.29',
4842             'autodie'               => '2.10',
4843             'autodie::exception'    => '2.10',
4844             'autodie::exception::system'=> '2.10',
4845             'autodie::hints'        => '2.10',
4846             'blib'                  => '1.05',
4847             'charnames'             => '1.11',
4848             'diagnostics'           => '1.20',
4849             'inc::latest'           => '0.3607',
4850             'lib'                   => '0.63',
4851             're'                    => '0.12',
4852             'threads'               => '1.77_03',
4853             'threads::shared'       => '1.33_02',
4854             'vars'                  => '1.02',
4855             'warnings'              => '1.10',
4856         },
4857         removed => {
4858             'TAP::Parser::Source::Perl'=> 1,
4859         }
4860     },
4861     5.013004 => {
4862         delta_from => 5.013003,
4863         changed => {
4864             'App::Prove'            => '3.22',
4865             'App::Prove::State'     => '3.22',
4866             'App::Prove::State::Result'=> '3.22',
4867             'App::Prove::State::Result::Test'=> '3.22',
4868             'Archive::Tar'          => '1.68',
4869             'Archive::Tar::Constant'=> '1.68',
4870             'Archive::Tar::File'    => '1.68',
4871             'B::Lint'               => '1.12',
4872             'B::Lint::Debug'        => '1.12',
4873             'Carp'                  => '1.18',
4874             'Carp::Heavy'           => '1.18',
4875             'Compress::Raw::Bzip2'  => '2.030',
4876             'Compress::Raw::Zlib'   => '2.030',
4877             'Compress::Zlib'        => '2.030',
4878             'ExtUtils::ParseXS'     => '2.2207',
4879             'File::Spec'            => '3.31_01',
4880             'I18N::Langinfo'        => '0.04',
4881             'IO::Compress::Adapter::Bzip2'=> '2.030',
4882             'IO::Compress::Adapter::Deflate'=> '2.030',
4883             'IO::Compress::Adapter::Identity'=> '2.030',
4884             'IO::Compress::Base'    => '2.030',
4885             'IO::Compress::Base::Common'=> '2.030',
4886             'IO::Compress::Bzip2'   => '2.030',
4887             'IO::Compress::Deflate' => '2.030',
4888             'IO::Compress::Gzip'    => '2.030',
4889             'IO::Compress::Gzip::Constants'=> '2.030',
4890             'IO::Compress::RawDeflate'=> '2.030',
4891             'IO::Compress::Zip'     => '2.030',
4892             'IO::Compress::Zip::Constants'=> '2.030',
4893             'IO::Compress::Zlib::Constants'=> '2.030',
4894             'IO::Compress::Zlib::Extra'=> '2.030',
4895             'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4896             'IO::Uncompress::Adapter::Identity'=> '2.030',
4897             'IO::Uncompress::Adapter::Inflate'=> '2.030',
4898             'IO::Uncompress::AnyInflate'=> '2.030',
4899             'IO::Uncompress::AnyUncompress'=> '2.030',
4900             'IO::Uncompress::Base'  => '2.030',
4901             'IO::Uncompress::Bunzip2'=> '2.030',
4902             'IO::Uncompress::Gunzip'=> '2.030',
4903             'IO::Uncompress::Inflate'=> '2.030',
4904             'IO::Uncompress::RawInflate'=> '2.030',
4905             'IO::Uncompress::Unzip' => '2.030',
4906             'Module::CoreList'      => '2.37',
4907             'TAP::Base'             => '3.22',
4908             'TAP::Formatter::Base'  => '3.22',
4909             'TAP::Formatter::Color' => '3.22',
4910             'TAP::Formatter::Console'=> '3.22',
4911             'TAP::Formatter::Console::ParallelSession'=> '3.22',
4912             'TAP::Formatter::Console::Session'=> '3.22',
4913             'TAP::Formatter::File'  => '3.22',
4914             'TAP::Formatter::File::Session'=> '3.22',
4915             'TAP::Formatter::Session'=> '3.22',
4916             'TAP::Harness'          => '3.22',
4917             'TAP::Object'           => '3.22',
4918             'TAP::Parser'           => '3.22',
4919             'TAP::Parser::Aggregator'=> '3.22',
4920             'TAP::Parser::Grammar'  => '3.22',
4921             'TAP::Parser::Iterator' => '3.22',
4922             'TAP::Parser::Iterator::Array'=> '3.22',
4923             'TAP::Parser::Iterator::Process'=> '3.22',
4924             'TAP::Parser::Iterator::Stream'=> '3.22',
4925             'TAP::Parser::IteratorFactory'=> '3.22',
4926             'TAP::Parser::Multiplexer'=> '3.22',
4927             'TAP::Parser::Result'   => '3.22',
4928             'TAP::Parser::Result::Bailout'=> '3.22',
4929             'TAP::Parser::Result::Comment'=> '3.22',
4930             'TAP::Parser::Result::Plan'=> '3.22',
4931             'TAP::Parser::Result::Pragma'=> '3.22',
4932             'TAP::Parser::Result::Test'=> '3.22',
4933             'TAP::Parser::Result::Unknown'=> '3.22',
4934             'TAP::Parser::Result::Version'=> '3.22',
4935             'TAP::Parser::Result::YAML'=> '3.22',
4936             'TAP::Parser::ResultFactory'=> '3.22',
4937             'TAP::Parser::Scheduler'=> '3.22',
4938             'TAP::Parser::Scheduler::Job'=> '3.22',
4939             'TAP::Parser::Scheduler::Spinner'=> '3.22',
4940             'TAP::Parser::Source'   => '3.22',
4941             'TAP::Parser::SourceHandler'=> '3.22',
4942             'TAP::Parser::SourceHandler::Executable'=> '3.22',
4943             'TAP::Parser::SourceHandler::File'=> '3.22',
4944             'TAP::Parser::SourceHandler::Handle'=> '3.22',
4945             'TAP::Parser::SourceHandler::Perl'=> '3.22',
4946             'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4947             'TAP::Parser::Utils'    => '3.22',
4948             'TAP::Parser::YAMLish::Reader'=> '3.22',
4949             'TAP::Parser::YAMLish::Writer'=> '3.22',
4950             'Test::Builder'         => '0.96',
4951             'Test::Builder::Module' => '0.96',
4952             'Test::Builder::Tester' => '1.20',
4953             'Test::Builder::Tester::Color'=> '1.20',
4954             'Test::Harness'         => '3.22',
4955             'Test::More'            => '0.96',
4956             'Test::Simple'          => '0.96',
4957             'Unicode::Collate'      => '0.56',
4958             'Unicode::Collate::Locale'=> '0.56',
4959             'XS::APItest'           => '0.20',
4960             'charnames'             => '1.15',
4961             'feature'               => '1.18',
4962         },
4963         removed => {
4964             'TAP::Parser::SourceHandler::pgTAP'=> 1,
4965         }
4966     },
4967     5.013005 => {
4968         delta_from => 5.013004,
4969         changed => {
4970             'B::Debug'              => '1.16',
4971             'CPANPLUS::Dist::Build' => '0.48',
4972             'CPANPLUS::Dist::Build::Constants'=> '0.48',
4973             'Data::Dumper'          => '2.128',
4974             'Encode'                => '2.40',
4975             'Encode::Guess'         => '2.04',
4976             'Encode::MIME::Header'  => '2.12',
4977             'Encode::Unicode::UTF7' => '2.05',
4978             'Errno'                 => '1.13',
4979             'ExtUtils::Command::MM' => '6.57_05',
4980             'ExtUtils::Liblist'     => '6.57_05',
4981             'ExtUtils::Liblist::Kid'=> '6.5705',
4982             'ExtUtils::MM'          => '6.57_05',
4983             'ExtUtils::MM_AIX'      => '6.57_05',
4984             'ExtUtils::MM_Any'      => '6.57_05',
4985             'ExtUtils::MM_BeOS'     => '6.57_05',
4986             'ExtUtils::MM_Cygwin'   => '6.57_05',
4987             'ExtUtils::MM_DOS'      => '6.5705',
4988             'ExtUtils::MM_Darwin'   => '6.57_05',
4989             'ExtUtils::MM_MacOS'    => '6.5705',
4990             'ExtUtils::MM_NW5'      => '6.57_05',
4991             'ExtUtils::MM_OS2'      => '6.57_05',
4992             'ExtUtils::MM_QNX'      => '6.57_05',
4993             'ExtUtils::MM_UWIN'     => '6.5705',
4994             'ExtUtils::MM_Unix'     => '6.57_05',
4995             'ExtUtils::MM_VMS'      => '6.57_05',
4996             'ExtUtils::MM_VOS'      => '6.57_05',
4997             'ExtUtils::MM_Win32'    => '6.57_05',
4998             'ExtUtils::MM_Win95'    => '6.57_05',
4999             'ExtUtils::MY'          => '6.5705',
5000             'ExtUtils::MakeMaker'   => '6.57_05',
5001             'ExtUtils::MakeMaker::Config'=> '6.57_05',
5002             'ExtUtils::MakeMaker::YAML'=> '1.44',
5003             'ExtUtils::Mkbootstrap' => '6.57_05',
5004             'ExtUtils::Mksymlists'  => '6.57_05',
5005             'ExtUtils::testlib'     => '6.5705',
5006             'Filter::Simple'        => '0.85',
5007             'Hash::Util'            => '0.09',
5008             'Math::BigFloat'        => '1.62',
5009             'Math::BigInt'          => '1.95',
5010             'Math::BigInt::Calc'    => '0.54',
5011             'Math::BigInt::CalcEmu' => '0.06',
5012             'Math::BigInt::FastCalc'=> '0.22',
5013             'Math::BigRat'          => '0.26',
5014             'Module::CoreList'      => '2.39',
5015             'POSIX'                 => '1.20',
5016             'PerlIO::scalar'        => '0.09',
5017             'Safe'                  => '2.28',
5018             'Test::Builder'         => '0.97_01',
5019             'Test::Builder::Module' => '0.97_01',
5020             'Test::Builder::Tester' => '1.21_01',
5021             'Test::Builder::Tester::Color'=> '1.21_01',
5022             'Test::More'            => '0.97_01',
5023             'Test::Simple'          => '0.97_01',
5024             'Tie::Hash'             => '1.04',
5025             'Unicode::Collate'      => '0.59',
5026             'Unicode::Collate::Locale'=> '0.59',
5027             'XS::APItest'           => '0.21',
5028             'XS::APItest::KeywordRPN'=> '0.005',
5029             'XSLoader'              => '0.11',
5030             'bigint'                => '0.25',
5031             'bignum'                => '0.25',
5032             'bigrat'                => '0.25',
5033             'blib'                  => '1.06',
5034             'open'                  => '1.08',
5035             'threads::shared'       => '1.33_03',
5036             'warnings'              => '1.11',
5037             'warnings::register'    => '1.02',
5038         },
5039         removed => {
5040         }
5041     },
5042     5.013006 => {
5043         delta_from => 5.013005,
5044         changed => {
5045             'Archive::Extract'      => '0.44',
5046             'B'                     => '1.24',
5047             'B::Deparse'            => '0.99',
5048             'CPAN'                  => '1.94_61',
5049             'CPAN::FTP'             => '5.5005',
5050             'CPAN::Queue'           => '5.5001',
5051             'CPAN::Version'         => '5.5001',
5052             'Carp'                  => '1.19',
5053             'Carp::Heavy'           => '1.19',
5054             'Compress::Raw::Bzip2'  => '2.031',
5055             'Cwd'                   => '3.34',
5056             'Data::Dumper'          => '2.129',
5057             'Devel::Peek'           => '1.05',
5058             'Digest::MD5'           => '2.51',
5059             'ExtUtils::Constant::Base'=> '0.05',
5060             'ExtUtils::Constant::ProxySubs'=> '0.07',
5061             'ExtUtils::Embed'       => '1.29',
5062             'ExtUtils::XSSymSet'    => '1.2',
5063             'Fcntl'                 => '1.09',
5064             'File::DosGlob'         => '1.03',
5065             'File::Find'            => '1.18',
5066             'File::Glob'            => '1.09',
5067             'File::Spec'            => '3.33',
5068             'File::Spec::Cygwin'    => '3.33',
5069             'File::Spec::Epoc'      => '3.33',
5070             'File::Spec::Functions' => '3.33',
5071             'File::Spec::Mac'       => '3.33',
5072             'File::Spec::OS2'       => '3.33',
5073             'File::Spec::Unix'      => '3.33',
5074             'File::Spec::VMS'       => '3.33',
5075             'File::Spec::Win32'     => '3.33',
5076             'GDBM_File'             => '1.11',
5077             'Hash::Util::FieldHash' => '1.05',
5078             'I18N::Langinfo'        => '0.06',
5079             'IPC::Cmd'              => '0.64',
5080             'IPC::Open3'            => '1.07',
5081             'Locale::Codes'         => '3.14',
5082             'Locale::Codes::Country'=> '3.14',
5083             'Locale::Codes::Currency'=> '3.14',
5084             'Locale::Codes::Language'=> '3.14',
5085             'Locale::Codes::Script' => '3.14',
5086             'Locale::Constants'     => '3.14',
5087             'Locale::Country'       => '3.14',
5088             'Locale::Currency'      => '3.14',
5089             'Locale::Language'      => '3.14',
5090             'Locale::Maketext'      => '1.16',
5091             'Locale::Script'        => '3.14',
5092             'Math::BigFloat'        => '1.63',
5093             'Math::BigInt'          => '1.97',
5094             'Math::BigInt::Calc'    => '0.55',
5095             'Math::BigInt::CalcEmu' => '0.07',
5096             'Module::CoreList'      => '2.40',
5097             'NDBM_File'             => '1.09',
5098             'NEXT'                  => '0.65',
5099             'ODBM_File'             => '1.08',
5100             'Opcode'                => '1.16',
5101             'POSIX'                 => '1.21',
5102             'PerlIO::encoding'      => '0.13',
5103             'PerlIO::scalar'        => '0.10',
5104             'PerlIO::via'           => '0.10',
5105             'Pod::Man'              => '2.25',
5106             'Pod::Text'             => '3.15',
5107             'SDBM_File'             => '1.07',
5108             'Socket'                => '1.90',
5109             'Sys::Hostname'         => '1.13',
5110             'Tie::Hash::NamedCapture'=> '0.07',
5111             'Unicode::Collate'      => '0.63',
5112             'Unicode::Collate::Locale'=> '0.63',
5113             'Unicode::Normalize'    => '1.07',
5114             'XS::APItest'           => '0.23',
5115             'XSLoader'              => '0.13',
5116             'attributes'            => '0.13',
5117             'charnames'             => '1.16',
5118             'if'                    => '0.06',
5119             'mro'                   => '1.04',
5120             'overload'              => '1.11',
5121             're'                    => '0.13',
5122             'sigtrap'               => '1.05',
5123             'threads'               => '1.81_01',
5124             'threads::shared'       => '1.34',
5125         },
5126         removed => {
5127             'XS::APItest::KeywordRPN'=> 1,
5128         }
5129     },
5130     5.013007 => {
5131         delta_from => 5.013006,
5132         changed => {
5133             'Archive::Extract'      => '0.46',
5134             'Archive::Tar'          => '1.72',
5135             'Archive::Tar::Constant'=> '1.72',
5136             'Archive::Tar::File'    => '1.72',
5137             'AutoLoader'            => '5.71',
5138             'B'                     => '1.26',
5139             'B::Concise'            => '0.81',
5140             'B::Deparse'            => '1.01',
5141             'CGI'                   => '3.50',
5142             'CPAN'                  => '1.94_62',
5143             'CPANPLUS'              => '0.9010',
5144             'CPANPLUS::Dist::Build' => '0.50',
5145             'CPANPLUS::Dist::Build::Constants'=> '0.50',
5146             'CPANPLUS::Internals'   => '0.9010',
5147             'CPANPLUS::Shell::Default'=> '0.9010',
5148             'Data::Dumper'          => '2.130_01',
5149             'DynaLoader'            => '1.11',
5150             'ExtUtils::Constant'    => '0.23',
5151             'ExtUtils::Constant::ProxySubs'=> '0.08',
5152             'Fcntl'                 => '1.10',
5153             'File::Fetch'           => '0.28',
5154             'File::Glob'            => '1.10',
5155             'File::stat'            => '1.04',
5156             'GDBM_File'             => '1.12',
5157             'Hash::Util'            => '0.10',
5158             'Hash::Util::FieldHash' => '1.06',
5159             'I18N::Langinfo'        => '0.07',
5160             'Locale::Maketext'      => '1.17',
5161             'Locale::Maketext::Guts'=> '1.17',
5162             'Locale::Maketext::GutsLoader'=> '1.17',
5163             'MIME::Base64'          => '3.10',
5164             'MIME::QuotedPrint'     => '3.10',
5165             'Math::BigFloat'        => '1.99_01',
5166             'Math::BigInt'          => '1.99_01',
5167             'Math::BigInt::Calc'    => '1.99_01',
5168             'Math::BigInt::CalcEmu' => '1.99_01',
5169             'Math::BigInt::FastCalc'=> '0.24_01',
5170             'Math::BigRat'          => '0.26_01',
5171             'Module::CoreList'      => '2.41',
5172             'NDBM_File'             => '1.10',
5173             'ODBM_File'             => '1.09',
5174             'Opcode'                => '1.17',
5175             'POSIX'                 => '1.22',
5176             'Pod::Simple'           => '3.15',
5177             'Pod::Simple::BlackBox' => '3.15',
5178             'Pod::Simple::Checker'  => '3.15',
5179             'Pod::Simple::Debug'    => '3.15',
5180             'Pod::Simple::DumpAsText'=> '3.15',
5181             'Pod::Simple::DumpAsXML'=> '3.15',
5182             'Pod::Simple::HTML'     => '3.15',
5183             'Pod::Simple::HTMLBatch'=> '3.15',
5184             'Pod::Simple::LinkSection'=> '3.15',
5185             'Pod::Simple::Methody'  => '3.15',
5186             'Pod::Simple::Progress' => '3.15',
5187             'Pod::Simple::PullParser'=> '3.15',
5188             'Pod::Simple::PullParserEndToken'=> '3.15',
5189             'Pod::Simple::PullParserStartToken'=> '3.15',
5190             'Pod::Simple::PullParserTextToken'=> '3.15',
5191             'Pod::Simple::PullParserToken'=> '3.15',
5192             'Pod::Simple::RTF'      => '3.15',
5193             'Pod::Simple::Search'   => '3.15',
5194             'Pod::Simple::SimpleTree'=> '3.15',
5195             'Pod::Simple::Text'     => '3.15',
5196             'Pod::Simple::TextContent'=> '3.15',
5197             'Pod::Simple::TiedOutFH'=> '3.15',
5198             'Pod::Simple::Transcode'=> '3.15',
5199             'Pod::Simple::TranscodeDumb'=> '3.15',
5200             'Pod::Simple::TranscodeSmart'=> '3.15',
5201             'Pod::Simple::XHTML'    => '3.15',
5202             'Pod::Simple::XMLOutStream'=> '3.15',
5203             'SDBM_File'             => '1.08',
5204             'Safe'                  => '2.29',
5205             'SelfLoader'            => '1.18',
5206             'Socket'                => '1.91',
5207             'Storable'              => '2.24',
5208             'Sys::Hostname'         => '1.14',
5209             'Unicode'               => '6.0.0',
5210             'Unicode::Collate'      => '0.67',
5211             'Unicode::Collate::CJK::Big5'=> '0.65',
5212             'Unicode::Collate::CJK::GB2312'=> '0.65',
5213             'Unicode::Collate::CJK::JISX0208'=> '0.64',
5214             'Unicode::Collate::CJK::Korean'=> '0.66',
5215             'Unicode::Collate::CJK::Pinyin'=> '0.65',
5216             'Unicode::Collate::CJK::Stroke'=> '0.65',
5217             'Unicode::Collate::Locale'=> '0.67',
5218             'XS::APItest'           => '0.26',
5219             'XS::Typemap'           => '0.04',
5220             'charnames'             => '1.17',
5221             'mro'                   => '1.05',
5222             'parent'                => '0.224',
5223             're'                    => '0.14',
5224             'threads'               => '1.81_02',
5225         },
5226         removed => {
5227         }
5228     },
5229     5.013008 => {
5230         delta_from => 5.013007,
5231         changed => {
5232             'Archive::Tar'          => '1.74',
5233             'Archive::Tar::Constant'=> '1.74',
5234             'Archive::Tar::File'    => '1.74',
5235             'B'                     => '1.27',
5236             'B::Concise'            => '0.82',
5237             'B::Deparse'            => '1.02',
5238             'Carp::Heavy'           => '1.17',
5239             'Cwd'                   => '3.35',
5240             'Data::Dumper'          => '2.130_02',
5241             'Devel::Peek'           => '1.06',
5242             'Devel::SelfStubber'    => '1.05',
5243             'Digest::SHA'           => '5.50',
5244             'Dumpvalue'             => '1.15',
5245             'DynaLoader'            => '1.12',
5246             'Env'                   => '1.02',
5247             'Exporter::Heavy'       => '5.64_01',
5248             'ExtUtils::CBuilder'    => '0.280201',
5249             'ExtUtils::CBuilder::Base'=> '0.280201',
5250             'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5251             'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5252             'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5253             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5254             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5255             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5256             'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5257             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5258             'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5259             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5260             'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5261             'ExtUtils::Constant::Utils'=> '0.03',
5262             'ExtUtils::Embed'       => '1.30',
5263             'ExtUtils::ParseXS'     => '2.2208',
5264             'Fatal'                 => '2.1001',
5265             'Fcntl'                 => '1.11',
5266             'File::CheckTree'       => '4.41',
5267             'File::Glob'            => '1.11',
5268             'GDBM_File'             => '1.13',
5269             'Hash::Util::FieldHash' => '1.07',
5270             'I18N::Collate'         => '1.02',
5271             'IO'                    => '1.25_03',
5272             'IPC::Cmd'              => '0.66',
5273             'IPC::Open3'            => '1.08',
5274             'Locale::Codes'         => '3.15',
5275             'Locale::Codes::Country'=> '3.15',
5276             'Locale::Codes::Currency'=> '3.15',
5277             'Locale::Codes::Language'=> '3.15',
5278             'Locale::Codes::Script' => '3.15',
5279             'Locale::Constants'     => '3.15',
5280             'Locale::Country'       => '3.15',
5281             'Locale::Currency'      => '3.15',
5282             'Locale::Language'      => '3.15',
5283             'Locale::Script'        => '3.15',
5284             'MIME::Base64'          => '3.13',
5285             'MIME::QuotedPrint'     => '3.13',
5286             'Math::BigFloat'        => '1.99_02',
5287             'Math::BigInt'          => '1.99_02',
5288             'Math::BigInt::Calc'    => '1.99_02',
5289             'Math::BigInt::CalcEmu' => '1.99_02',
5290             'Memoize'               => '1.02',
5291             'Memoize::AnyDBM_File'  => '1.02',
5292             'Memoize::Expire'       => '1.02',
5293             'Memoize::ExpireFile'   => '1.02',
5294             'Memoize::ExpireTest'   => '1.02',
5295             'Memoize::NDBM_File'    => '1.02',
5296             'Memoize::SDBM_File'    => '1.02',
5297             'Memoize::Storable'     => '1.02',
5298             'Module::CoreList'      => '2.43',
5299             'NDBM_File'             => '1.11',
5300             'Net::Ping'             => '2.37',
5301             'ODBM_File'             => '1.10',
5302             'Opcode'                => '1.18',
5303             'POSIX'                 => '1.23',
5304             'PerlIO::encoding'      => '0.14',
5305             'PerlIO::scalar'        => '0.11',
5306             'PerlIO::via'           => '0.11',
5307             'SDBM_File'             => '1.09',
5308             'Socket'                => '1.92',
5309             'Storable'              => '2.25',
5310             'Time::HiRes'           => '1.9721_01',
5311             'Unicode::Collate'      => '0.6801',
5312             'Unicode::Collate::Locale'=> '0.68',
5313             'Unicode::Normalize'    => '1.08',
5314             'Unicode::UCD'          => '0.30',
5315             'Win32'                 => '0.41',
5316             'XS::APItest'           => '0.27',
5317             'autodie'               => '2.1001',
5318             'autodie::exception'    => '2.1001',
5319             'autodie::exception::system'=> '2.1001',
5320             'autodie::hints'        => '2.1001',
5321             'feature'               => '1.19',
5322             'if'                    => '0.0601',
5323             'mro'                   => '1.06',
5324             'overload'              => '1.12',
5325             're'                    => '0.15',
5326             'threads'               => '1.81_03',
5327             'threads::shared'       => '1.35',
5328             'version'               => '0.86',
5329         },
5330         removed => {
5331         }
5332     },
5333     5.013009 => {
5334         delta_from => 5.013008,
5335         changed => {
5336             'Archive::Extract'      => '0.48',
5337             'Archive::Tar'          => '1.76',
5338             'Archive::Tar::Constant'=> '1.76',
5339             'Archive::Tar::File'    => '1.76',
5340             'B::Concise'            => '0.83',
5341             'B::Deparse'            => '1.03',
5342             'B::Lint'               => '1.13',
5343             'Benchmark'             => '1.12',
5344             'CGI'                   => '3.51',
5345             'CGI::Carp'             => '3.51',
5346             'CGI::Cookie'           => '1.30',
5347             'CGI::Push'             => '1.05',
5348             'CGI::Util'             => '3.51',
5349             'CPAN'                  => '1.94_63',
5350             'CPAN::HTTP::Client'    => '1.94',
5351             'CPAN::HTTP::Credentials'=> '1.94',
5352             'CPAN::Meta::YAML'      => '0.003',
5353             'CPANPLUS'              => '0.9011',
5354             'CPANPLUS::Dist::Build' => '0.52',
5355             'CPANPLUS::Dist::Build::Constants'=> '0.52',
5356             'CPANPLUS::Internals'   => '0.9011',
5357             'CPANPLUS::Shell::Default'=> '0.9011',
5358             'Carp::Heavy'           => '1.19',
5359             'Compress::Raw::Bzip2'  => '2.033',
5360             'Compress::Raw::Zlib'   => '2.033',
5361             'Compress::Zlib'        => '2.033',
5362             'Cwd'                   => '3.36',
5363             'DBM_Filter'            => '0.04',
5364             'DB_File'               => '1.821',
5365             'Devel::Peek'           => '1.07',
5366             'DirHandle'             => '1.04',
5367             'Dumpvalue'             => '1.16',
5368             'Encode'                => '2.42',
5369             'Encode::Alias'         => '2.13',
5370             'Encode::MIME::Header'  => '2.13',
5371             'Exporter::Heavy'       => '5.64_03',
5372             'ExtUtils::Install'     => '1.56',
5373             'ExtUtils::ParseXS'     => '2.2209',
5374             'File::Basename'        => '2.80',
5375             'File::Copy'            => '2.21',
5376             'File::DosGlob'         => '1.04',
5377             'File::Fetch'           => '0.32',
5378             'File::Find'            => '1.19',
5379             'File::Spec::Mac'       => '3.34',
5380             'File::Spec::VMS'       => '3.34',
5381             'File::stat'            => '1.05',
5382             'HTTP::Tiny'            => '0.009',
5383             'Hash::Util::FieldHash' => '1.08',
5384             'IO::Compress::Adapter::Bzip2'=> '2.033',
5385             'IO::Compress::Adapter::Deflate'=> '2.033',
5386             'IO::Compress::Adapter::Identity'=> '2.033',
5387             'IO::Compress::Base'    => '2.033',
5388             'IO::Compress::Base::Common'=> '2.033',
5389             'IO::Compress::Bzip2'   => '2.033',
5390             'IO::Compress::Deflate' => '2.033',
5391             'IO::Compress::Gzip'    => '2.033',
5392             'IO::Compress::Gzip::Constants'=> '2.033',
5393             'IO::Compress::RawDeflate'=> '2.033',
5394             'IO::Compress::Zip'     => '2.033',
5395             'IO::Compress::Zip::Constants'=> '2.033',
5396             'IO::Compress::Zlib::Constants'=> '2.033',
5397             'IO::Compress::Zlib::Extra'=> '2.033',
5398             'IO::Handle'            => '1.29',
5399             'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5400             'IO::Uncompress::Adapter::Identity'=> '2.033',
5401             'IO::Uncompress::Adapter::Inflate'=> '2.033',
5402             'IO::Uncompress::AnyInflate'=> '2.033',
5403             'IO::Uncompress::AnyUncompress'=> '2.033',
5404             'IO::Uncompress::Base'  => '2.033',
5405             'IO::Uncompress::Bunzip2'=> '2.033',
5406             'IO::Uncompress::Gunzip'=> '2.033',
5407             'IO::Uncompress::Inflate'=> '2.033',
5408             'IO::Uncompress::RawInflate'=> '2.033',
5409             'IO::Uncompress::Unzip' => '2.033',
5410             'IPC::Cmd'              => '0.68',
5411             'IPC::Open3'            => '1.09',
5412             'JSON::PP'              => '2.27103',
5413             'JSON::PP::Boolean'     => undef,
5414             'Locale::Maketext'      => '1.18',
5415             'Log::Message'          => '0.04',
5416             'Log::Message::Config'  => '0.04',
5417             'Log::Message::Handlers'=> '0.04',
5418             'Log::Message::Item'    => '0.04',
5419             'Log::Message::Simple'  => '0.08',
5420             'Math::BigFloat'        => '1.99_03',
5421             'Math::BigInt'          => '1.99_03',
5422             'Math::BigInt::Calc'    => '1.99_03',
5423             'Math::BigInt::FastCalc'=> '0.24_02',
5424             'Math::BigRat'          => '0.26_02',
5425             'Module::CoreList'      => '2.42_01',
5426             'Module::Load::Conditional'=> '0.40',
5427             'Module::Metadata'      => '1.000003',
5428             'Net::Ping'             => '2.38',
5429             'OS2::Process'          => '1.05',
5430             'Object::Accessor'      => '0.38',
5431             'POSIX'                 => '1.24',
5432             'Params::Check'         => '0.28',
5433             'Perl::OSType'          => '1.002',
5434             'Pod::LaTeX'            => '0.59',
5435             'Pod::Perldoc'          => '3.15_03',
5436             'Socket'                => '1.93',
5437             'Storable'              => '2.26',
5438             'Sys::Hostname'         => '1.15',
5439             'Term::UI'              => '0.24',
5440             'Thread::Queue'         => '2.12',
5441             'Thread::Semaphore'     => '2.12',
5442             'Time::Local'           => '1.2000',
5443             'UNIVERSAL'             => '1.08',
5444             'Unicode::Normalize'    => '1.10',
5445             'Win32'                 => '0.44',
5446             'bigint'                => '0.26',
5447             'bignum'                => '0.26',
5448             'bigrat'                => '0.26',
5449             'charnames'             => '1.18',
5450             'diagnostics'           => '1.21',
5451             're'                    => '0.16',
5452             'threads'               => '1.83',
5453             'threads::shared'       => '1.36',
5454             'version'               => '0.88',
5455         },
5456         removed => {
5457         }
5458     },
5459     5.01301 => {
5460         delta_from => 5.013009,
5461         changed => {
5462             'Attribute::Handlers'   => '0.89',
5463             'B'                     => '1.28',
5464             'B::Showlex'            => '1.03',
5465             'CGI'                   => '3.52',
5466             'CPAN'                  => '1.94_65',
5467             'CPAN::Distribution'    => '1.9601',
5468             'CPAN::FTP::netrc'      => '1.01',
5469             'CPAN::FirstTime'       => '5.5303',
5470             'CPAN::HandleConfig'    => '5.5003',
5471             'CPAN::Meta'            => '2.110440',
5472             'CPAN::Meta::Converter' => '2.110440',
5473             'CPAN::Meta::Feature'   => '2.110440',
5474             'CPAN::Meta::History'   => '2.110440',
5475             'CPAN::Meta::Prereqs'   => '2.110440',
5476             'CPAN::Meta::Spec'      => '2.110440',
5477             'CPAN::Meta::Validator' => '2.110440',
5478             'CPAN::Shell'           => '5.5002',
5479             'CPANPLUS'              => '0.9101',
5480             'CPANPLUS::Internals'   => '0.9101',
5481             'CPANPLUS::Shell::Default'=> '0.9101',
5482             'Carp'                  => '1.20',
5483             'Carp::Heavy'           => '1.20',
5484             'Cwd'                   => '3.37',
5485             'Devel::DProf'          => '20110217.00',
5486             'DynaLoader'            => '1.13',
5487             'ExtUtils::CBuilder'    => '0.280202',
5488             'ExtUtils::CBuilder::Base'=> '0.280202',
5489             'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5490             'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5491             'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5492             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5493             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5494             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5495             'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5496             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5497             'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5498             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5499             'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5500             'File::Copy'            => '2.22',
5501             'Filter::Simple'        => '0.86',
5502             'HTTP::Tiny'            => '0.010',
5503             'I18N::LangTags::Detect'=> '1.05',
5504             'IO::Select'            => '1.18',
5505             'IPC::Cmd'              => '0.70',
5506             'Locale::Maketext'      => '1.19',
5507             'Math::BigFloat'        => '1.992',
5508             'Math::BigInt'          => '1.992',
5509             'Math::BigInt::Calc'    => '1.992',
5510             'Math::BigInt::CalcEmu' => '1.992',
5511             'Module::Build'         => '0.37_05',
5512             'Module::Build::Base'   => '0.37_05',
5513             'Module::Build::Compat' => '0.37_05',
5514             'Module::Build::Config' => '0.37_05',
5515             'Module::Build::Cookbook'=> '0.37_05',
5516             'Module::Build::Dumper' => '0.37_05',
5517             'Module::Build::ModuleInfo'=> '0.37_05',
5518             'Module::Build::Notes'  => '0.37_05',
5519             'Module::Build::PPMMaker'=> '0.37_05',
5520             'Module::Build::Platform::Amiga'=> '0.37_05',
5521             'Module::Build::Platform::Default'=> '0.37_05',
5522             'Module::Build::Platform::EBCDIC'=> '0.37_05',
5523             'Module::Build::Platform::MPEiX'=> '0.37_05',
5524             'Module::Build::Platform::MacOS'=> '0.37_05',
5525             'Module::Build::Platform::RiscOS'=> '0.37_05',
5526             'Module::Build::Platform::Unix'=> '0.37_05',
5527             'Module::Build::Platform::VMS'=> '0.37_05',
5528             'Module::Build::Platform::VOS'=> '0.37_05',
5529             'Module::Build::Platform::Windows'=> '0.37_05',
5530             'Module::Build::Platform::aix'=> '0.37_05',
5531             'Module::Build::Platform::cygwin'=> '0.37_05',
5532             'Module::Build::Platform::darwin'=> '0.37_05',
5533             'Module::Build::Platform::os2'=> '0.37_05',
5534             'Module::Build::PodParser'=> '0.37_05',
5535             'Module::Build::Version'=> '0.87',
5536             'Module::Build::YAML'   => '1.41',
5537             'Module::CoreList'      => '2.45',
5538             'Module::Load::Conditional'=> '0.44',
5539             'Module::Metadata'      => '1.000004',
5540             'OS2::Process'          => '1.06',
5541             'Parse::CPAN::Meta'     => '1.4401',
5542             'Pod::Html'             => '1.1',
5543             'Socket'                => '1.94',
5544             'Term::UI'              => '0.26',
5545             'Unicode::Collate'      => '0.72',
5546             'Unicode::Collate::Locale'=> '0.71',
5547             'Unicode::UCD'          => '0.31',
5548             'VMS::DCLsym'           => '1.05',
5549             'Version::Requirements' => '0.101020',
5550             'bigrat'                => '0.27',
5551             'deprecate'             => '0.02',
5552             'diagnostics'           => '1.22',
5553             'inc::latest'           => '0.37_05',
5554             'overload'              => '1.13',
5555             're'                    => '0.17',
5556             'utf8'                  => '1.09',
5557             'warnings'              => '1.12',
5558         },
5559         removed => {
5560         }
5561     },
5562     5.013011 => {
5563         delta_from => 5.01301,
5564         changed => {
5565             'App::Prove'            => '3.23',
5566             'App::Prove::State'     => '3.23',
5567             'App::Prove::State::Result'=> '3.23',
5568             'App::Prove::State::Result::Test'=> '3.23',
5569             'B'                     => '1.29',
5570             'CPAN'                  => '1.9600',
5571             'CPAN::Author'          => '5.5001',
5572             'CPAN::CacheMgr'        => '5.5001',
5573             'CPAN::Distribution'    => '1.9602',
5574             'CPAN::Exception::blocked_urllist'=> '1.001',
5575             'CPAN::HTTP::Client'    => '1.9600',
5576             'CPAN::HTTP::Credentials'=> '1.9600',
5577             'CPAN::Index'           => '1.9600',
5578             'CPAN::LWP::UserAgent'  => '1.9600',
5579             'CPAN::Mirrors'         => '1.9600',
5580             'CPAN::Module'          => '5.5001',
5581             'CPANPLUS'              => '0.9103',
5582             'CPANPLUS::Dist::Build' => '0.54',
5583             'CPANPLUS::Dist::Build::Constants'=> '0.54',
5584             'CPANPLUS::Internals'   => '0.9103',
5585             'CPANPLUS::Shell::Default'=> '0.9103',
5586             'Cwd'                   => '3.36',
5587             'Devel::DProf'          => '20110228.00',
5588             'Digest::SHA'           => '5.61',
5589             'ExtUtils::Command'     => '1.17',
5590             'File::Basename'        => '2.81',
5591             'File::Copy'            => '2.21',
5592             'File::Glob'            => '1.12',
5593             'GDBM_File'             => '1.14',
5594             'HTTP::Tiny'            => '0.011',
5595             'Hash::Util'            => '0.11',
5596             'Hash::Util::FieldHash' => '1.09',
5597             'I18N::Langinfo'        => '0.08',
5598             'IO'                    => '1.25_04',
5599             'IO::Dir'               => '1.08',
5600             'IO::File'              => '1.15',
5601             'IO::Handle'            => '1.30',
5602             'IO::Pipe'              => '1.14',
5603             'IO::Poll'              => '0.08',
5604             'IO::Select'            => '1.20',
5605             'JSON::PP'              => '2.27105',
5606             'Locale::Codes'         => '3.16',
5607             'Locale::Codes::Country'=> '3.16',
5608             'Locale::Codes::Currency'=> '3.16',
5609             'Locale::Codes::Language'=> '3.16',
5610             'Locale::Codes::Script' => '3.16',
5611             'Locale::Constants'     => '3.16',
5612             'Locale::Country'       => '3.16',
5613             'Locale::Currency'      => '3.16',
5614             'Locale::Language'      => '3.16',
5615             'Locale::Script'        => '3.16',
5616             'Math::BigFloat'        => '1.993',
5617             'Math::BigInt'          => '1.994',
5618             'Math::BigInt::Calc'    => '1.993',
5619             'Math::BigInt::CalcEmu' => '1.993',
5620             'Math::BigInt::FastCalc'=> '0.28',
5621             'Module::Build'         => '0.3800',
5622             'Module::Build::Base'   => '0.3800',
5623             'Module::Build::Compat' => '0.3800',
5624             'Module::Build::Config' => '0.3800',
5625             'Module::Build::Cookbook'=> '0.3800',
5626             'Module::Build::Dumper' => '0.3800',
5627             'Module::Build::ModuleInfo'=> '0.3800',
5628             'Module::Build::Notes'  => '0.3800',
5629             'Module::Build::PPMMaker'=> '0.3800',
5630             'Module::Build::Platform::Amiga'=> '0.3800',
5631             'Module::Build::Platform::Default'=> '0.3800',
5632             'Module::Build::Platform::EBCDIC'=> '0.3800',
5633             'Module::Build::Platform::MPEiX'=> '0.3800',
5634             'Module::Build::Platform::MacOS'=> '0.3800',
5635             'Module::Build::Platform::RiscOS'=> '0.3800',
5636             'Module::Build::Platform::Unix'=> '0.3800',
5637             'Module::Build::Platform::VMS'=> '0.3800',
5638             'Module::Build::Platform::VOS'=> '0.3800',
5639             'Module::Build::Platform::Windows'=> '0.3800',
5640             'Module::Build::Platform::aix'=> '0.3800',
5641             'Module::Build::Platform::cygwin'=> '0.3800',
5642             'Module::Build::Platform::darwin'=> '0.3800',
5643             'Module::Build::Platform::os2'=> '0.3800',
5644             'Module::Build::PodParser'=> '0.3800',
5645             'Module::CoreList'      => '2.46',
5646             'NDBM_File'             => '1.12',
5647             'Pod::Simple'           => '3.16',
5648             'Pod::Simple::BlackBox' => '3.16',
5649             'Pod::Simple::Checker'  => '3.16',
5650             'Pod::Simple::Debug'    => '3.16',
5651             'Pod::Simple::DumpAsText'=> '3.16',
5652             'Pod::Simple::DumpAsXML'=> '3.16',
5653             'Pod::Simple::HTML'     => '3.16',
5654             'Pod::Simple::HTMLBatch'=> '3.16',
5655             'Pod::Simple::LinkSection'=> '3.16',
5656             'Pod::Simple::Methody'  => '3.16',
5657             'Pod::Simple::Progress' => '3.16',
5658             'Pod::Simple::PullParser'=> '3.16',
5659             'Pod::Simple::PullParserEndToken'=> '3.16',
5660             'Pod::Simple::PullParserStartToken'=> '3.16',
5661             'Pod::Simple::PullParserTextToken'=> '3.16',
5662             'Pod::Simple::PullParserToken'=> '3.16',
5663             'Pod::Simple::RTF'      => '3.16',
5664             'Pod::Simple::Search'   => '3.16',
5665             'Pod::Simple::SimpleTree'=> '3.16',
5666             'Pod::Simple::Text'     => '3.16',
5667             'Pod::Simple::TextContent'=> '3.16',
5668             'Pod::Simple::TiedOutFH'=> '3.16',
5669             'Pod::Simple::Transcode'=> '3.16',
5670             'Pod::Simple::TranscodeDumb'=> '3.16',
5671             'Pod::Simple::TranscodeSmart'=> '3.16',
5672             'Pod::Simple::XHTML'    => '3.16',
5673             'Pod::Simple::XMLOutStream'=> '3.16',
5674             'Storable'              => '2.27',
5675             'Sys::Hostname'         => '1.16',
5676             'TAP::Base'             => '3.23',
5677             'TAP::Formatter::Base'  => '3.23',
5678             'TAP::Formatter::Color' => '3.23',
5679             'TAP::Formatter::Console'=> '3.23',
5680             'TAP::Formatter::Console::ParallelSession'=> '3.23',
5681             'TAP::Formatter::Console::Session'=> '3.23',
5682             'TAP::Formatter::File'  => '3.23',
5683             'TAP::Formatter::File::Session'=> '3.23',
5684             'TAP::Formatter::Session'=> '3.23',
5685             'TAP::Harness'          => '3.23',
5686             'TAP::Object'           => '3.23',
5687             'TAP::Parser'           => '3.23',
5688             'TAP::Parser::Aggregator'=> '3.23',
5689             'TAP::Parser::Grammar'  => '3.23',
5690             'TAP::Parser::Iterator' => '3.23',
5691             'TAP::Parser::Iterator::Array'=> '3.23',
5692             'TAP::Parser::Iterator::Process'=> '3.23',
5693             'TAP::Parser::Iterator::Stream'=> '3.23',
5694             'TAP::Parser::IteratorFactory'=> '3.23',
5695             'TAP::Parser::Multiplexer'=> '3.23',
5696             'TAP::Parser::Result'   => '3.23',
5697             'TAP::Parser::Result::Bailout'=> '3.23',
5698             'TAP::Parser::Result::Comment'=> '3.23',
5699             'TAP::Parser::Result::Plan'=> '3.23',
5700             'TAP::Parser::Result::Pragma'=> '3.23',
5701             'TAP::Parser::Result::Test'=> '3.23',
5702             'TAP::Parser::Result::Unknown'=> '3.23',
5703             'TAP::Parser::Result::Version'=> '3.23',
5704             'TAP::Parser::Result::YAML'=> '3.23',
5705             'TAP::Parser::ResultFactory'=> '3.23',
5706             'TAP::Parser::Scheduler'=> '3.23',
5707             'TAP::Parser::Scheduler::Job'=> '3.23',
5708             'TAP::Parser::Scheduler::Spinner'=> '3.23',
5709             'TAP::Parser::Source'   => '3.23',
5710             'TAP::Parser::SourceHandler'=> '3.23',
5711             'TAP::Parser::SourceHandler::Executable'=> '3.23',
5712             'TAP::Parser::SourceHandler::File'=> '3.23',
5713             'TAP::Parser::SourceHandler::Handle'=> '3.23',
5714             'TAP::Parser::SourceHandler::Perl'=> '3.23',
5715             'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5716             'TAP::Parser::Utils'    => '3.23',
5717             'TAP::Parser::YAMLish::Reader'=> '3.23',
5718             'TAP::Parser::YAMLish::Writer'=> '3.23',
5719             'Test::Builder'         => '0.98',
5720             'Test::Builder::Module' => '0.98',
5721             'Test::Builder::Tester' => '1.22',
5722             'Test::Builder::Tester::Color'=> '1.22',
5723             'Test::Harness'         => '3.23',
5724             'Test::More'            => '0.98',
5725             'Test::Simple'          => '0.98',
5726             'Tie::Hash::NamedCapture'=> '0.08',
5727             'Tie::RefHash'          => '1.39',
5728             'Unicode::Collate'      => '0.73',
5729             'Unicode::Collate::Locale'=> '0.73',
5730             'Unicode::UCD'          => '0.32',
5731             'XS::Typemap'           => '0.05',
5732             'attributes'            => '0.14',
5733             'base'                  => '2.16',
5734             'inc::latest'           => '0.3800',
5735             'mro'                   => '1.07',
5736             'parent'                => '0.225',
5737         },
5738         removed => {
5739         }
5740     },
5741     5.014 => {
5742         delta_from => 5.013011,
5743         changed => {
5744             'ExtUtils::CBuilder'    => '0.280203',
5745             'ExtUtils::CBuilder::Base'=> '0.280203',
5746             'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5747             'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5748             'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5749             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5750             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5751             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5752             'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5753             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5754             'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5755             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5756             'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5757             'ExtUtils::ParseXS'     => '2.2210',
5758             'File::Basename'        => '2.82',
5759             'HTTP::Tiny'            => '0.012',
5760             'IO::Handle'            => '1.31',
5761             'Module::CoreList'      => '2.49',
5762             'PerlIO'                => '1.07',
5763             'Pod::Html'             => '1.11',
5764             'XS::APItest'           => '0.28',
5765             'bigint'                => '0.27',
5766             'bignum'                => '0.27',
5767             'bigrat'                => '0.28',
5768             'constant'              => '1.21',
5769             'feature'               => '1.20',
5770             're'                    => '0.18',
5771             'threads::shared'       => '1.37',
5772         },
5773         removed => {
5774         }
5775     },
5776     5.014001 => {
5777         delta_from => 5.014,
5778         changed => {
5779             'B::Deparse'            => '1.04',
5780             'Module::CoreList'      => '2.49_01',
5781             'Pod::Perldoc'          => '3.15_04',
5782         },
5783         removed => {
5784         }
5785     },
5786     5.014002 => {
5787         delta_from => 5.014001,
5788         changed => {
5789             'CPAN'                  => '1.9600_01',
5790             'CPAN::Distribution'    => '1.9602_01',
5791             'Devel::DProf::dprof::V'=> undef,
5792             'Encode'                => '2.42_01',
5793             'File::Glob'            => '1.13',
5794             'Module::CoreList'      => '2.49_02',
5795             'PerlIO::scalar'        => '0.11_01',
5796             'Time::Piece::Seconds'  => undef,
5797         },
5798         removed => {
5799         }
5800     },
5801     5.014003 => {
5802         delta_from => 5.014002,
5803         changed => {
5804             'Digest'                => '1.16_01',
5805             'IPC::Open3'            => '1.09_01',
5806             'Module::CoreList'      => '2.49_04',
5807         },
5808         removed => {
5809         }
5810     },
5811     5.014004 => {
5812         delta_from => 5.014003,
5813         changed => {
5814             'Encode'                => '2.42_02',
5815             'IPC::Open3'            => '1.0901',
5816             'Module::CoreList'      => '2.49_06',
5817         },
5818         removed => {
5819         }
5820     },
5821     5.015 => {
5822         delta_from => 5.014001,
5823         changed => {
5824             'Archive::Extract'      => '0.52',
5825             'Attribute::Handlers'   => '0.91',
5826             'B'                     => '1.30',
5827             'B::Concise'            => '0.84',
5828             'B::Deparse'            => '1.05',
5829             'Benchmark'             => '1.13',
5830             'CGI'                   => '3.54',
5831             'CGI::Util'             => '3.53',
5832             'CPAN::Meta'            => '2.110930',
5833             'CPAN::Meta::Converter' => '2.110930',
5834             'CPAN::Meta::Feature'   => '2.110930',
5835             'CPAN::Meta::History'   => '2.110930',
5836             'CPAN::Meta::Prereqs'   => '2.110930',
5837             'CPAN::Meta::Spec'      => '2.110930',
5838             'CPAN::Meta::Validator' => '2.110930',
5839             'CPANPLUS'              => '0.9105',
5840             'CPANPLUS::Dist::Build' => '0.56',
5841             'CPANPLUS::Dist::Build::Constants'=> '0.56',
5842             'CPANPLUS::Internals'   => '0.9105',
5843             'CPANPLUS::Shell::Default'=> '0.9105',
5844             'Compress::Raw::Bzip2'  => '2.035',
5845             'Compress::Raw::Zlib'   => '2.035',
5846             'Compress::Zlib'        => '2.035',
5847             'DB_File'               => '1.822',
5848             'Data::Dumper'          => '2.131',
5849             'Devel::Peek'           => '1.08',
5850             'Digest::SHA'           => '5.62',
5851             'Encode'                => '2.43',
5852             'Encode::Alias'         => '2.14',
5853             'ExtUtils::CBuilder'    => '0.280204',
5854             'ExtUtils::CBuilder::Base'=> '0.280204',
5855             'Fatal'                 => '2.10',
5856             'File::Spec::Win32'     => '3.34',
5857             'Filter::Simple'        => '0.87',
5858             'Filter::Util::Call'    => '1.39',
5859             'FindBin'               => '1.51',
5860             'Hash::Util::FieldHash' => '1.10',
5861             'I18N::LangTags'        => '0.36',
5862             'IO::Compress::Adapter::Bzip2'=> '2.035',
5863             'IO::Compress::Adapter::Deflate'=> '2.035',
5864             'IO::Compress::Adapter::Identity'=> '2.035',
5865             'IO::Compress::Base'    => '2.035',
5866             'IO::Compress::Base::Common'=> '2.035',
5867             'IO::Compress::Bzip2'   => '2.035',
5868             'IO::Compress::Deflate' => '2.035',
5869             'IO::Compress::Gzip'    => '2.035',
5870             'IO::Compress::Gzip::Constants'=> '2.035',
5871             'IO::Compress::RawDeflate'=> '2.035',
5872             'IO::Compress::Zip'     => '2.035',
5873             'IO::Compress::Zip::Constants'=> '2.035',
5874             'IO::Compress::Zlib::Constants'=> '2.035',
5875             'IO::Compress::Zlib::Extra'=> '2.035',
5876             'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5877             'IO::Uncompress::Adapter::Identity'=> '2.035',
5878             'IO::Uncompress::Adapter::Inflate'=> '2.035',
5879             'IO::Uncompress::AnyInflate'=> '2.035',
5880             'IO::Uncompress::AnyUncompress'=> '2.035',
5881             'IO::Uncompress::Base'  => '2.035',
5882             'IO::Uncompress::Bunzip2'=> '2.035',
5883             'IO::Uncompress::Gunzip'=> '2.035',
5884             'IO::Uncompress::Inflate'=> '2.035',
5885             'IO::Uncompress::RawInflate'=> '2.035',
5886             'IO::Uncompress::Unzip' => '2.035',
5887             'IPC::Open2'            => '1.04',
5888             'IPC::Open3'            => '1.11',
5889             'JSON::PP'              => '2.27200',
5890             'Math::BigFloat'        => '1.994',
5891             'Math::BigInt'          => '1.995',
5892             'Math::Complex'         => '1.57',
5893             'Math::Trig'            => '1.21',
5894             'Module::CoreList'      => '2.51',
5895             'ODBM_File'             => '1.11',
5896             'Object::Accessor'      => '0.42',
5897             'Opcode'                => '1.19',
5898             'PerlIO::encoding'      => '0.15',
5899             'PerlIO::scalar'        => '0.12',
5900             'Pod::Perldoc'          => '3.15_05',
5901             'Storable'              => '2.28',
5902             'Sys::Syslog'           => '0.29',
5903             'Time::HiRes'           => '1.9722',
5904             'Unicode::Collate'      => '0.76',
5905             'Unicode::Collate::CJK::Pinyin'=> '0.76',
5906             'Unicode::Collate::CJK::Stroke'=> '0.76',
5907             'Unicode::Collate::Locale'=> '0.76',
5908             'Unicode::Normalize'    => '1.12',
5909             'XS::APItest'           => '0.29',
5910             'XSLoader'              => '0.15',
5911             'autodie'               => '2.10',
5912             'autodie::exception'    => '2.10',
5913             'autodie::exception::system'=> '2.10',
5914             'autodie::hints'        => '2.10',
5915             'base'                  => '2.17',
5916             'charnames'             => '1.22',
5917             'constant'              => '1.22',
5918             'feature'               => '1.21',
5919             'mro'                   => '1.08',
5920             'overload'              => '1.14',
5921             'threads::shared'       => '1.38',
5922             'vmsish'                => '1.03',
5923         },
5924         removed => {
5925             'Devel::DProf'          => 1,
5926             'Shell'                 => 1,
5927         }
5928     },
5929     5.015001 => {
5930         delta_from => 5.015,
5931         changed => {
5932             'B::Deparse'            => '1.06',
5933             'CGI'                   => '3.55',
5934             'CPAN::Meta'            => '2.110930001',
5935             'CPAN::Meta::Converter' => '2.110930001',
5936             'CPANPLUS'              => '0.9108',
5937             'CPANPLUS::Internals'   => '0.9108',
5938             'CPANPLUS::Shell::Default'=> '0.9108',
5939             'Carp'                  => '1.21',
5940             'Carp::Heavy'           => '1.21',
5941             'Compress::Raw::Bzip2'  => '2.037',
5942             'Compress::Raw::Zlib'   => '2.037',
5943             'Compress::Zlib'        => '2.037',
5944             'Cwd'                   => '3.37',
5945             'Env'                   => '1.03',
5946             'ExtUtils::Command::MM' => '6.58',
5947             'ExtUtils::Liblist'     => '6.58',
5948             'ExtUtils::Liblist::Kid'=> '6.58',
5949             'ExtUtils::MM'          => '6.58',
5950             'ExtUtils::MM_AIX'      => '6.58',
5951             'ExtUtils::MM_Any'      => '6.58',
5952             'ExtUtils::MM_BeOS'     => '6.58',
5953             'ExtUtils::MM_Cygwin'   => '6.58',
5954             'ExtUtils::MM_DOS'      => '6.58',
5955             'ExtUtils::MM_Darwin'   => '6.58',
5956             'ExtUtils::MM_MacOS'    => '6.58',
5957             'ExtUtils::MM_NW5'      => '6.58',
5958             'ExtUtils::MM_OS2'      => '6.58',
5959             'ExtUtils::MM_QNX'      => '6.58',
5960             'ExtUtils::MM_UWIN'     => '6.58',
5961             'ExtUtils::MM_Unix'     => '6.58',
5962             'ExtUtils::MM_VMS'      => '6.58',
5963             'ExtUtils::MM_VOS'      => '6.58',
5964             'ExtUtils::MM_Win32'    => '6.58',
5965             'ExtUtils::MM_Win95'    => '6.58',
5966             'ExtUtils::MY'          => '6.58',
5967             'ExtUtils::MakeMaker'   => '6.58',
5968             'ExtUtils::MakeMaker::Config'=> '6.58',
5969             'ExtUtils::Mkbootstrap' => '6.58',
5970             'ExtUtils::Mksymlists'  => '6.58',
5971             'ExtUtils::ParseXS'     => '3.00_01',
5972             'ExtUtils::ParseXS::Constants'=> undef,
5973             'ExtUtils::ParseXS::CountLines'=> undef,
5974             'ExtUtils::ParseXS::Utilities'=> undef,
5975             'ExtUtils::Typemaps'    => '1.00',
5976             'ExtUtils::Typemaps::InputMap'=> undef,
5977             'ExtUtils::Typemaps::OutputMap'=> undef,
5978             'ExtUtils::Typemaps::Type'=> '0.05',
5979             'ExtUtils::testlib'     => '6.58',
5980             'File::Basename'        => '2.83',
5981             'File::Find'            => '1.20',
5982             'HTTP::Tiny'            => '0.013',
5983             'I18N::Langinfo'        => '0.08_02',
5984             'IO::Compress::Adapter::Bzip2'=> '2.037',
5985             'IO::Compress::Adapter::Deflate'=> '2.037',
5986             'IO::Compress::Adapter::Identity'=> '2.037',
5987             'IO::Compress::Base'    => '2.037',
5988             'IO::Compress::Base::Common'=> '2.037',
5989             'IO::Compress::Bzip2'   => '2.037',
5990             'IO::Compress::Deflate' => '2.037',
5991             'IO::Compress::Gzip'    => '2.037',
5992             'IO::Compress::Gzip::Constants'=> '2.037',
5993             'IO::Compress::RawDeflate'=> '2.037',
5994             'IO::Compress::Zip'     => '2.037',
5995             'IO::Compress::Zip::Constants'=> '2.037',
5996             'IO::Compress::Zlib::Constants'=> '2.037',
5997             'IO::Compress::Zlib::Extra'=> '2.037',
5998             'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
5999             'IO::Uncompress::Adapter::Identity'=> '2.037',
6000             'IO::Uncompress::Adapter::Inflate'=> '2.037',
6001             'IO::Uncompress::AnyInflate'=> '2.037',
6002             'IO::Uncompress::AnyUncompress'=> '2.037',
6003             'IO::Uncompress::Base'  => '2.037',
6004             'IO::Uncompress::Bunzip2'=> '2.037',
6005             'IO::Uncompress::Gunzip'=> '2.037',
6006             'IO::Uncompress::Inflate'=> '2.037',
6007             'IO::Uncompress::RawInflate'=> '2.037',
6008             'IO::Uncompress::Unzip' => '2.037',
6009             'IPC::Cmd'              => '0.72',
6010             'Locale::Codes'         => '3.17',
6011             'Locale::Codes::Constants'=> '3.17',
6012             'Locale::Codes::Country'=> '3.17',
6013             'Locale::Codes::Country_Codes'=> '3.17',
6014             'Locale::Codes::Currency'=> '3.17',
6015             'Locale::Codes::Currency_Codes'=> '3.17',
6016             'Locale::Codes::LangExt'=> '3.17',
6017             'Locale::Codes::LangExt_Codes'=> '3.17',
6018             'Locale::Codes::LangVar'=> '3.17',
6019             'Locale::Codes::LangVar_Codes'=> '3.17',
6020             'Locale::Codes::Language'=> '3.17',
6021             'Locale::Codes::Language_Codes'=> '3.17',
6022             'Locale::Codes::Script' => '3.17',
6023             'Locale::Codes::Script_Codes'=> '3.17',
6024             'Locale::Country'       => '3.17',
6025             'Locale::Currency'      => '3.17',
6026             'Locale::Language'      => '3.17',
6027             'Locale::Script'        => '3.17',
6028             'Math::BigFloat::Trace' => '0.28',
6029             'Math::BigInt::FastCalc'=> '0.29',
6030             'Math::BigInt::Trace'   => '0.28',
6031             'Math::BigRat'          => '0.2602',
6032             'Math::Complex'         => '1.58',
6033             'Math::Trig'            => '1.22',
6034             'Module::CoreList'      => '2.54',
6035             'OS2::Process'          => '1.07',
6036             'Pod::Perldoc'          => '3.15_06',
6037             'Pod::Simple'           => '3.18',
6038             'Pod::Simple::BlackBox' => '3.18',
6039             'Pod::Simple::Checker'  => '3.18',
6040             'Pod::Simple::Debug'    => '3.18',
6041             'Pod::Simple::DumpAsText'=> '3.18',
6042             'Pod::Simple::DumpAsXML'=> '3.18',
6043             'Pod::Simple::HTML'     => '3.18',
6044             'Pod::Simple::HTMLBatch'=> '3.18',
6045             'Pod::Simple::LinkSection'=> '3.18',
6046             'Pod::Simple::Methody'  => '3.18',
6047             'Pod::Simple::Progress' => '3.18',
6048             'Pod::Simple::PullParser'=> '3.18',
6049             'Pod::Simple::PullParserEndToken'=> '3.18',
6050             'Pod::Simple::PullParserStartToken'=> '3.18',
6051             'Pod::Simple::PullParserTextToken'=> '3.18',
6052             'Pod::Simple::PullParserToken'=> '3.18',
6053             'Pod::Simple::RTF'      => '3.18',
6054             'Pod::Simple::Search'   => '3.18',
6055             'Pod::Simple::SimpleTree'=> '3.18',
6056             'Pod::Simple::Text'     => '3.18',
6057             'Pod::Simple::TextContent'=> '3.18',
6058             'Pod::Simple::TiedOutFH'=> '3.18',
6059             'Pod::Simple::Transcode'=> '3.18',
6060             'Pod::Simple::TranscodeDumb'=> '3.18',
6061             'Pod::Simple::TranscodeSmart'=> '3.18',
6062             'Pod::Simple::XHTML'    => '3.18',
6063             'Pod::Simple::XMLOutStream'=> '3.18',
6064             'Storable'              => '2.31',
6065             'Sys::Syslog::Win32'    => undef,
6066             'Time::HiRes'           => '1.9724',
6067             'Unicode::Collate'      => '0.77',
6068             'Unicode::UCD'          => '0.33',
6069             'Win32API::File'        => '0.1200',
6070             'XS::APItest'           => '0.30',
6071             'attributes'            => '0.15',
6072             'bigint'                => '0.28',
6073             'bignum'                => '0.28',
6074             'charnames'             => '1.23',
6075             'diagnostics'           => '1.23',
6076             'feature'               => '1.22',
6077             'overload'              => '1.15',
6078             'perlfaq'               => '5.015000',
6079             'threads'               => '1.84',
6080             'version'               => '0.93',
6081         },
6082         removed => {
6083             'ExtUtils::MakeMaker::YAML'=> 1,
6084             'Locale::Constants'     => 1,
6085             'Sys::Syslog::win32::Win32'=> 1,
6086         }
6087     },
6088     5.015002 => {
6089         delta_from => 5.015001,
6090         changed => {
6091             'Attribute::Handlers'   => '0.92',
6092             'B'                     => '1.31',
6093             'B::Concise'            => '0.85',
6094             'B::Deparse'            => '1.07',
6095             'B::Terse'              => '1.06',
6096             'B::Xref'               => '1.03',
6097             'CPAN'                  => '1.9800',
6098             'CPAN::Exception::yaml_process_error'=> '5.5',
6099             'CPAN::Meta'            => '2.112150',
6100             'CPAN::Meta::Converter' => '2.112150',
6101             'CPAN::Meta::Feature'   => '2.112150',
6102             'CPAN::Meta::History'   => '2.112150',
6103             'CPAN::Meta::Prereqs'   => '2.112150',
6104             'CPAN::Meta::Spec'      => '2.112150',
6105             'CPAN::Meta::Validator' => '2.112150',
6106             'CPANPLUS'              => '0.9109',
6107             'CPANPLUS::Internals'   => '0.9109',
6108             'CPANPLUS::Shell::Default'=> '0.9109',
6109             'DB_File'               => '1.824',
6110             'Data::Dumper'          => '2.132',
6111             'Encode'                => '2.44',
6112             'Encode::Alias'         => '2.15',
6113             'Encode::Encoder'       => '2.02',
6114             'Encode::Guess'         => '2.05',
6115             'ExtUtils::Command::MM' => '6.59',
6116             'ExtUtils::Install'     => '1.57',
6117             'ExtUtils::Installed'   => '1.999002',
6118             'ExtUtils::Liblist'     => '6.59',
6119             'ExtUtils::Liblist::Kid'=> '6.59',
6120             'ExtUtils::MM'          => '6.59',
6121             'ExtUtils::MM_AIX'      => '6.59',
6122             'ExtUtils::MM_Any'      => '6.59',
6123             'ExtUtils::MM_BeOS'     => '6.59',
6124             'ExtUtils::MM_Cygwin'   => '6.59',
6125             'ExtUtils::MM_DOS'      => '6.59',
6126             'ExtUtils::MM_Darwin'   => '6.59',
6127             'ExtUtils::MM_MacOS'    => '6.59',
6128             'ExtUtils::MM_NW5'      => '6.59',
6129             'ExtUtils::MM_OS2'      => '6.59',
6130             'ExtUtils::MM_QNX'      => '6.59',
6131             'ExtUtils::MM_UWIN'     => '6.59',
6132             'ExtUtils::MM_Unix'     => '6.59',
6133             'ExtUtils::MM_VMS'      => '6.59',
6134             'ExtUtils::MM_VOS'      => '6.59',
6135             'ExtUtils::MM_Win32'    => '6.59',
6136             'ExtUtils::MM_Win95'    => '6.59',
6137             'ExtUtils::MY'          => '6.59',
6138             'ExtUtils::MakeMaker'   => '6.59',
6139             'ExtUtils::MakeMaker::Config'=> '6.59',
6140             'ExtUtils::Manifest'    => '1.60',
6141             'ExtUtils::Mkbootstrap' => '6.59',
6142             'ExtUtils::Mksymlists'  => '6.59',
6143             'ExtUtils::ParseXS'     => '3.03_01',
6144             'ExtUtils::Typemaps'    => '1.01',
6145             'ExtUtils::testlib'     => '6.59',
6146             'File::Spec'            => '3.34',
6147             'File::Spec::Mac'       => '3.35',
6148             'File::Spec::Unix'      => '3.34',
6149             'File::Spec::VMS'       => '3.35',
6150             'File::Spec::Win32'     => '3.35',
6151             'I18N::LangTags'        => '0.37',
6152             'IO'                    => '1.25_05',
6153             'IO::Handle'            => '1.32',
6154             'IO::Socket'            => '1.33',
6155             'IO::Socket::INET'      => '1.32',
6156             'IPC::Open3'            => '1.12',
6157             'Math::BigFloat'        => '1.995',
6158             'Math::BigFloat::Trace' => '0.29',
6159             'Math::BigInt'          => '1.996',
6160             'Math::BigInt::Trace'   => '0.29',
6161             'Module::Build'         => '0.39_01',
6162             'Module::Build::Base'   => '0.39_01',
6163             'Module::Build::Compat' => '0.39_01',
6164             'Module::Build::Config' => '0.39_01',
6165             'Module::Build::Cookbook'=> '0.39_01',
6166             'Module::Build::Dumper' => '0.39_01',
6167             'Module::Build::ModuleInfo'=> '0.39_01',
6168             'Module::Build::Notes'  => '0.39_01',
6169             'Module::Build::PPMMaker'=> '0.39_01',
6170             'Module::Build::Platform::Amiga'=> '0.39_01',
6171             'Module::Build::Platform::Default'=> '0.39_01',
6172             'Module::Build::Platform::EBCDIC'=> '0.39_01',
6173             'Module::Build::Platform::MPEiX'=> '0.39_01',
6174             'Module::Build::Platform::MacOS'=> '0.39_01',
6175             'Module::Build::Platform::RiscOS'=> '0.39_01',
6176             'Module::Build::Platform::Unix'=> '0.39_01',
6177             'Module::Build::Platform::VMS'=> '0.39_01',
6178             'Module::Build::Platform::VOS'=> '0.39_01',
6179             'Module::Build::Platform::Windows'=> '0.39_01',
6180             'Module::Build::Platform::aix'=> '0.39_01',
6181             'Module::Build::Platform::cygwin'=> '0.39_01',
6182             'Module::Build::Platform::darwin'=> '0.39_01',
6183             'Module::Build::Platform::os2'=> '0.39_01',
6184             'Module::Build::PodParser'=> '0.39_01',
6185             'Module::CoreList'      => '2.55',
6186             'Module::Load'          => '0.20',
6187             'Module::Metadata'      => '1.000005_01',
6188             'Opcode'                => '1.20',
6189             'Params::Check'         => '0.32',
6190             'PerlIO::via'           => '0.12',
6191             'Term::ANSIColor'       => '3.01',
6192             'Unicode::Collate'      => '0.78',
6193             'Unicode::Normalize'    => '1.13',
6194             'Unicode::UCD'          => '0.34',
6195             'bigint'                => '0.29',
6196             'bignum'                => '0.29',
6197             'bigrat'                => '0.29',
6198             'diagnostics'           => '1.24',
6199             'fields'                => '2.16',
6200             'inc::latest'           => '0.39_01',
6201         },
6202         removed => {
6203         }
6204     },
6205     5.015003 => {
6206         delta_from => 5.015002,
6207         changed => {
6208             'AnyDBM_File'           => '1.01',
6209             'Archive::Extract'      => '0.56',
6210             'Archive::Tar'          => '1.78',
6211             'Archive::Tar::Constant'=> '1.78',
6212             'Archive::Tar::File'    => '1.78',
6213             'Attribute::Handlers'   => '0.93',
6214             'B'                     => '1.32',
6215             'B::Concise'            => '0.86',
6216             'B::Deparse'            => '1.08',
6217             'CPAN::Meta'            => '2.112621',
6218             'CPAN::Meta::Converter' => '2.112621',
6219             'CPAN::Meta::Feature'   => '2.112621',
6220             'CPAN::Meta::History'   => '2.112621',
6221             'CPAN::Meta::Prereqs'   => '2.112621',
6222             'CPAN::Meta::Spec'      => '2.112621',
6223             'CPAN::Meta::Validator' => '2.112621',
6224             'CPAN::Meta::YAML'      => '0.004',
6225             'CPANPLUS'              => '0.9111',
6226             'CPANPLUS::Dist::Build' => '0.58',
6227             'CPANPLUS::Dist::Build::Constants'=> '0.58',
6228             'CPANPLUS::Internals'   => '0.9111',
6229             'CPANPLUS::Shell::Default'=> '0.9111',
6230             'Carp'                  => '1.23',
6231             'Carp::Heavy'           => '1.23',
6232             'Data::Dumper'          => '2.134',
6233             'Devel::PPPort'         => '3.20',
6234             'Errno'                 => '1.14',
6235             'Exporter'              => '5.65',
6236             'Exporter::Heavy'       => '5.65',
6237             'ExtUtils::ParseXS'     => '3.04_04',
6238             'ExtUtils::ParseXS::Constants'=> '3.04_04',
6239             'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6240             'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6241             'ExtUtils::Typemaps'    => '1.02',
6242             'File::Glob'            => '1.13',
6243             'Filter::Simple'        => '0.88',
6244             'IO'                    => '1.25_06',
6245             'IO::Handle'            => '1.33',
6246             'Locale::Codes'         => '3.18',
6247             'Locale::Codes::Constants'=> '3.18',
6248             'Locale::Codes::Country'=> '3.18',
6249             'Locale::Codes::Country_Codes'=> '3.18',
6250             'Locale::Codes::Currency'=> '3.18',
6251             'Locale::Codes::Currency_Codes'=> '3.18',
6252             'Locale::Codes::LangExt'=> '3.18',
6253             'Locale::Codes::LangExt_Codes'=> '3.18',
6254             'Locale::Codes::LangVar'=> '3.18',
6255             'Locale::Codes::LangVar_Codes'=> '3.18',
6256             'Locale::Codes::Language'=> '3.18',
6257             'Locale::Codes::Language_Codes'=> '3.18',
6258             'Locale::Codes::Script' => '3.18',
6259             'Locale::Codes::Script_Codes'=> '3.18',
6260             'Locale::Country'       => '3.18',
6261             'Locale::Currency'      => '3.18',
6262             'Locale::Language'      => '3.18',
6263             'Locale::Script'        => '3.18',
6264             'Math::BigFloat'        => '1.997',
6265             'Math::BigInt'          => '1.997',
6266             'Math::BigInt::Calc'    => '1.997',
6267             'Math::BigInt::CalcEmu' => '1.997',
6268             'Math::BigInt::FastCalc'=> '0.30',
6269             'Math::BigRat'          => '0.2603',
6270             'Module::CoreList'      => '2.56',
6271             'Module::Load::Conditional'=> '0.46',
6272             'Module::Metadata'      => '1.000007',
6273             'ODBM_File'             => '1.12',
6274             'POSIX'                 => '1.26',
6275             'Pod::Perldoc'          => '3.15_07',
6276             'Pod::Simple'           => '3.19',
6277             'Pod::Simple::BlackBox' => '3.19',
6278             'Pod::Simple::Checker'  => '3.19',
6279             'Pod::Simple::Debug'    => '3.19',
6280             'Pod::Simple::DumpAsText'=> '3.19',
6281             'Pod::Simple::DumpAsXML'=> '3.19',
6282             'Pod::Simple::HTML'     => '3.19',
6283             'Pod::Simple::HTMLBatch'=> '3.19',
6284             'Pod::Simple::LinkSection'=> '3.19',
6285             'Pod::Simple::Methody'  => '3.19',
6286             'Pod::Simple::Progress' => '3.19',
6287             'Pod::Simple::PullParser'=> '3.19',
6288             'Pod::Simple::PullParserEndToken'=> '3.19',
6289             'Pod::Simple::PullParserStartToken'=> '3.19',
6290             'Pod::Simple::PullParserTextToken'=> '3.19',
6291             'Pod::Simple::PullParserToken'=> '3.19',
6292             'Pod::Simple::RTF'      => '3.19',
6293             'Pod::Simple::Search'   => '3.19',
6294             'Pod::Simple::SimpleTree'=> '3.19',
6295             'Pod::Simple::Text'     => '3.19',
6296             'Pod::Simple::TextContent'=> '3.19',
6297             'Pod::Simple::TiedOutFH'=> '3.19',
6298             'Pod::Simple::Transcode'=> '3.19',
6299             'Pod::Simple::TranscodeDumb'=> '3.19',
6300             'Pod::Simple::TranscodeSmart'=> '3.19',
6301             'Pod::Simple::XHTML'    => '3.19',
6302             'Pod::Simple::XMLOutStream'=> '3.19',
6303             'Search::Dict'          => '1.04',
6304             'Socket'                => '1.94_01',
6305             'Storable'              => '2.32',
6306             'Text::Abbrev'          => '1.02',
6307             'Tie::Array'            => '1.05',
6308             'UNIVERSAL'             => '1.09',
6309             'Unicode::UCD'          => '0.35',
6310             'XS::APItest'           => '0.31',
6311             'XSLoader'              => '0.16',
6312             'attributes'            => '0.16',
6313             'diagnostics'           => '1.25',
6314             'open'                  => '1.09',
6315             'perlfaq'               => '5.0150034',
6316             'threads'               => '1.85',
6317             'threads::shared'       => '1.40',
6318         },
6319         removed => {
6320         }
6321     },
6322     5.015004 => {
6323         delta_from => 5.015003,
6324         changed => {
6325             'Archive::Tar'          => '1.80',
6326             'Archive::Tar::Constant'=> '1.80',
6327             'Archive::Tar::File'    => '1.80',
6328             'Digest'                => '1.17',
6329             'DynaLoader'            => '1.14',
6330             'ExtUtils::Command::MM' => '6.61_01',
6331             'ExtUtils::Liblist'     => '6.61_01',
6332             'ExtUtils::Liblist::Kid'=> '6.61_01',
6333             'ExtUtils::MM'          => '6.61_01',
6334             'ExtUtils::MM_AIX'      => '6.61_01',
6335             'ExtUtils::MM_Any'      => '6.61_01',
6336             'ExtUtils::MM_BeOS'     => '6.61_01',
6337             'ExtUtils::MM_Cygwin'   => '6.61_01',
6338             'ExtUtils::MM_DOS'      => '6.61_01',
6339             'ExtUtils::MM_Darwin'   => '6.61_01',
6340             'ExtUtils::MM_MacOS'    => '6.61_01',
6341             'ExtUtils::MM_NW5'      => '6.61_01',
6342             'ExtUtils::MM_OS2'      => '6.61_01',
6343             'ExtUtils::MM_QNX'      => '6.61_01',
6344             'ExtUtils::MM_UWIN'     => '6.61_01',
6345             'ExtUtils::MM_Unix'     => '6.61_01',
6346             'ExtUtils::MM_VMS'      => '6.61_01',
6347             'ExtUtils::MM_VOS'      => '6.61_01',
6348             'ExtUtils::MM_Win32'    => '6.61_01',
6349             'ExtUtils::MM_Win95'    => '6.61_01',
6350             'ExtUtils::MY'          => '6.61_01',
6351             'ExtUtils::MakeMaker'   => '6.61_01',
6352             'ExtUtils::MakeMaker::Config'=> '6.61_01',
6353             'ExtUtils::Mkbootstrap' => '6.61_01',
6354             'ExtUtils::Mksymlists'  => '6.61_01',
6355             'ExtUtils::ParseXS'     => '3.05',
6356             'ExtUtils::ParseXS::Constants'=> '3.05',
6357             'ExtUtils::ParseXS::CountLines'=> '3.05',
6358             'ExtUtils::ParseXS::Utilities'=> '3.05',
6359             'ExtUtils::testlib'     => '6.61_01',
6360             'File::DosGlob'         => '1.05',
6361             'Module::CoreList'      => '2.57',
6362             'Module::Load'          => '0.22',
6363             'Unicode::Collate'      => '0.80',
6364             'Unicode::Collate::Locale'=> '0.80',
6365             'Unicode::UCD'          => '0.36',
6366             'XS::APItest'           => '0.32',
6367             'XS::Typemap'           => '0.07',
6368             'attributes'            => '0.17',
6369             'base'                  => '2.18',
6370             'constant'              => '1.23',
6371             'mro'                   => '1.09',
6372             'open'                  => '1.10',
6373             'perlfaq'               => '5.0150035',
6374         },
6375         removed => {
6376         }
6377     },
6378     5.015005 => {
6379         delta_from => 5.015004,
6380         changed => {
6381             'Archive::Extract'      => '0.58',
6382             'B::Concise'            => '0.87',
6383             'B::Deparse'            => '1.09',
6384             'CGI'                   => '3.58',
6385             'CGI::Fast'             => '1.09',
6386             'CPANPLUS'              => '0.9112',
6387             'CPANPLUS::Dist::Build' => '0.60',
6388             'CPANPLUS::Dist::Build::Constants'=> '0.60',
6389             'CPANPLUS::Internals'   => '0.9112',
6390             'CPANPLUS::Shell::Default'=> '0.9112',
6391             'Compress::Raw::Bzip2'  => '2.042',
6392             'Compress::Raw::Zlib'   => '2.042',
6393             'Compress::Zlib'        => '2.042',
6394             'Digest::SHA'           => '5.63',
6395             'Errno'                 => '1.15',
6396             'ExtUtils::Command::MM' => '6.63_02',
6397             'ExtUtils::Liblist'     => '6.63_02',
6398             'ExtUtils::Liblist::Kid'=> '6.63_02',
6399             'ExtUtils::MM'          => '6.63_02',
6400             'ExtUtils::MM_AIX'      => '6.63_02',
6401             'ExtUtils::MM_Any'      => '6.63_02',
6402             'ExtUtils::MM_BeOS'     => '6.63_02',
6403             'ExtUtils::MM_Cygwin'   => '6.63_02',
6404             'ExtUtils::MM_DOS'      => '6.63_02',
6405             'ExtUtils::MM_Darwin'   => '6.63_02',
6406             'ExtUtils::MM_MacOS'    => '6.63_02',
6407             'ExtUtils::MM_NW5'      => '6.63_02',
6408             'ExtUtils::MM_OS2'      => '6.63_02',
6409             'ExtUtils::MM_QNX'      => '6.63_02',
6410             'ExtUtils::MM_UWIN'     => '6.63_02',
6411             'ExtUtils::MM_Unix'     => '6.63_02',
6412             'ExtUtils::MM_VMS'      => '6.63_02',
6413             'ExtUtils::MM_VOS'      => '6.63_02',
6414             'ExtUtils::MM_Win32'    => '6.63_02',
6415             'ExtUtils::MM_Win95'    => '6.63_02',
6416             'ExtUtils::MY'          => '6.63_02',
6417             'ExtUtils::MakeMaker'   => '6.63_02',
6418             'ExtUtils::MakeMaker::Config'=> '6.63_02',
6419             'ExtUtils::Mkbootstrap' => '6.63_02',
6420             'ExtUtils::Mksymlists'  => '6.63_02',
6421             'ExtUtils::testlib'     => '6.63_02',
6422             'File::DosGlob'         => '1.06',
6423             'File::Glob'            => '1.14',
6424             'HTTP::Tiny'            => '0.016',
6425             'IO::Compress::Adapter::Bzip2'=> '2.042',
6426             'IO::Compress::Adapter::Deflate'=> '2.042',
6427             'IO::Compress::Adapter::Identity'=> '2.042',
6428             'IO::Compress::Base'    => '2.042',
6429             'IO::Compress::Base::Common'=> '2.042',
6430             'IO::Compress::Bzip2'   => '2.042',
6431             'IO::Compress::Deflate' => '2.042',
6432             'IO::Compress::Gzip'    => '2.042',
6433             'IO::Compress::Gzip::Constants'=> '2.042',
6434             'IO::Compress::RawDeflate'=> '2.042',
6435             'IO::Compress::Zip'     => '2.042',
6436             'IO::Compress::Zip::Constants'=> '2.042',
6437             'IO::Compress::Zlib::Constants'=> '2.042',
6438             'IO::Compress::Zlib::Extra'=> '2.042',
6439             'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6440             'IO::Uncompress::Adapter::Identity'=> '2.042',
6441             'IO::Uncompress::Adapter::Inflate'=> '2.042',
6442             'IO::Uncompress::AnyInflate'=> '2.042',
6443             'IO::Uncompress::AnyUncompress'=> '2.042',
6444             'IO::Uncompress::Base'  => '2.042',
6445             'IO::Uncompress::Bunzip2'=> '2.042',
6446             'IO::Uncompress::Gunzip'=> '2.042',
6447             'IO::Uncompress::Inflate'=> '2.042',
6448             'IO::Uncompress::RawInflate'=> '2.042',
6449             'IO::Uncompress::Unzip' => '2.042',
6450             'Locale::Maketext'      => '1.20',
6451             'Locale::Maketext::Guts'=> '1.20',
6452             'Locale::Maketext::GutsLoader'=> '1.20',
6453             'Module::CoreList'      => '2.58',
6454             'Opcode'                => '1.21',
6455             'Socket'                => '1.94_02',
6456             'Storable'              => '2.33',
6457             'UNIVERSAL'             => '1.10',
6458             'Unicode::Collate'      => '0.85',
6459             'Unicode::Collate::CJK::Pinyin'=> '0.85',
6460             'Unicode::Collate::CJK::Stroke'=> '0.85',
6461             'Unicode::Collate::Locale'=> '0.85',
6462             'Unicode::UCD'          => '0.37',
6463             'XS::APItest'           => '0.33',
6464             'arybase'               => '0.01',
6465             'charnames'             => '1.24',
6466             'feature'               => '1.23',
6467             'perlfaq'               => '5.0150036',
6468             'strict'                => '1.05',
6469             'unicore::Name'         => undef,
6470         },
6471         removed => {
6472         }
6473     },
6474     5.015006 => {
6475         delta_from => 5.015005,
6476         changed => {
6477             'Archive::Tar'          => '1.82',
6478             'Archive::Tar::Constant'=> '1.82',
6479             'Archive::Tar::File'    => '1.82',
6480             'AutoLoader'            => '5.72',
6481             'B::Concise'            => '0.88',
6482             'B::Debug'              => '1.17',
6483             'B::Deparse'            => '1.10',
6484             'CPAN::Meta::YAML'      => '0.005',
6485             'CPANPLUS'              => '0.9113',
6486             'CPANPLUS::Internals'   => '0.9113',
6487             'CPANPLUS::Shell::Default'=> '0.9113',
6488             'Carp'                  => '1.24',
6489             'Compress::Raw::Bzip2'  => '2.045',
6490             'Compress::Raw::Zlib'   => '2.045',
6491             'Compress::Zlib'        => '2.045',
6492             'Cwd'                   => '3.38',
6493             'DB'                    => '1.04',
6494             'Data::Dumper'          => '2.135_01',
6495             'Digest::SHA'           => '5.70',
6496             'Dumpvalue'             => '1.17',
6497             'Exporter'              => '5.66',
6498             'Exporter::Heavy'       => '5.66',
6499             'ExtUtils::CBuilder'    => '0.280205',
6500             'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6501             'ExtUtils::Packlist'    => '1.45',
6502             'ExtUtils::ParseXS'     => '3.08',
6503             'ExtUtils::ParseXS::Constants'=> '3.08',
6504             'ExtUtils::ParseXS::CountLines'=> '3.08',
6505             'ExtUtils::ParseXS::Utilities'=> '3.08',
6506             'File::Basename'        => '2.84',
6507             'File::Glob'            => '1.15',
6508             'File::Spec::Unix'      => '3.35',
6509             'Getopt::Std'           => '1.07',
6510             'I18N::LangTags'        => '0.38',
6511             'IO::Compress::Adapter::Bzip2'=> '2.045',
6512             'IO::Compress::Adapter::Deflate'=> '2.045',
6513             'IO::Compress::Adapter::Identity'=> '2.045',
6514             'IO::Compress::Base'    => '2.046',
6515             'IO::Compress::Base::Common'=> '2.045',
6516             'IO::Compress::Bzip2'   => '2.045',
6517             'IO::Compress::Deflate' => '2.045',
6518             'IO::Compress::Gzip'    => '2.045',
6519             'IO::Compress::Gzip::Constants'=> '2.045',
6520             'IO::Compress::RawDeflate'=> '2.045',
6521             'IO::Compress::Zip'     => '2.046',
6522             'IO::Compress::Zip::Constants'=> '2.045',
6523             'IO::Compress::Zlib::Constants'=> '2.045',
6524             'IO::Compress::Zlib::Extra'=> '2.045',
6525             'IO::Dir'               => '1.09',
6526             'IO::File'              => '1.16',
6527             'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6528             'IO::Uncompress::Adapter::Identity'=> '2.045',
6529             'IO::Uncompress::Adapter::Inflate'=> '2.045',
6530             'IO::Uncompress::AnyInflate'=> '2.045',
6531             'IO::Uncompress::AnyUncompress'=> '2.045',
6532             'IO::Uncompress::Base'  => '2.046',
6533             'IO::Uncompress::Bunzip2'=> '2.045',
6534             'IO::Uncompress::Gunzip'=> '2.045',
6535             'IO::Uncompress::Inflate'=> '2.045',
6536             'IO::Uncompress::RawInflate'=> '2.045',
6537             'IO::Uncompress::Unzip' => '2.046',
6538             'Locale::Codes'         => '3.20',
6539             'Locale::Codes::Constants'=> '3.20',
6540             'Locale::Codes::Country'=> '3.20',
6541             'Locale::Codes::Country_Codes'=> '3.20',
6542             'Locale::Codes::Country_Retired'=> '3.20',
6543             'Locale::Codes::Currency'=> '3.20',
6544             'Locale::Codes::Currency_Codes'=> '3.20',
6545             'Locale::Codes::Currency_Retired'=> '3.20',
6546             'Locale::Codes::LangExt'=> '3.20',
6547             'Locale::Codes::LangExt_Codes'=> '3.20',
6548             'Locale::Codes::LangExt_Retired'=> '3.20',
6549             'Locale::Codes::LangFam'=> '3.20',
6550             'Locale::Codes::LangFam_Codes'=> '3.20',
6551             'Locale::Codes::LangFam_Retired'=> '3.20',
6552             'Locale::Codes::LangVar'=> '3.20',
6553             'Locale::Codes::LangVar_Codes'=> '3.20',
6554             'Locale::Codes::LangVar_Retired'=> '3.20',
6555             'Locale::Codes::Language'=> '3.20',
6556             'Locale::Codes::Language_Codes'=> '3.20',
6557             'Locale::Codes::Language_Retired'=> '3.20',
6558             'Locale::Codes::Script' => '3.20',
6559             'Locale::Codes::Script_Codes'=> '3.20',
6560             'Locale::Codes::Script_Retired'=> '3.20',
6561             'Locale::Country'       => '3.20',
6562             'Locale::Currency'      => '3.20',
6563             'Locale::Language'      => '3.20',
6564             'Locale::Maketext'      => '1.21',
6565             'Locale::Script'        => '3.20',
6566             'Module::CoreList'      => '2.59',
6567             'Module::Loaded'        => '0.08',
6568             'Opcode'                => '1.22',
6569             'POSIX'                 => '1.27',
6570             'Pod::Html'             => '1.12',
6571             'Pod::LaTeX'            => '0.60',
6572             'Pod::Perldoc'          => '3.15_08',
6573             'Safe'                  => '2.30',
6574             'SelfLoader'            => '1.20',
6575             'Socket'                => '1.97',
6576             'Storable'              => '2.34',
6577             'UNIVERSAL'             => '1.11',
6578             'Unicode::Collate'      => '0.87',
6579             'Unicode::Collate::Locale'=> '0.87',
6580             'XS::APItest'           => '0.34',
6581             'arybase'               => '0.02',
6582             'charnames'             => '1.27',
6583             'diagnostics'           => '1.26',
6584             'feature'               => '1.24',
6585             'if'                    => '0.0602',
6586             'overload'              => '1.16',
6587             'sigtrap'               => '1.06',
6588             'strict'                => '1.06',
6589             'threads'               => '1.86',
6590             'version'               => '0.96',
6591         },
6592         removed => {
6593         }
6594     },
6595     5.015007 => {
6596         delta_from => 5.015006,
6597         changed => {
6598             'B'                     => '1.33',
6599             'B::Deparse'            => '1.11',
6600             'CGI'                   => '3.59',
6601             'CPAN::Meta'            => '2.113640',
6602             'CPAN::Meta::Converter' => '2.113640',
6603             'CPAN::Meta::Feature'   => '2.113640',
6604             'CPAN::Meta::History'   => '2.113640',
6605             'CPAN::Meta::Prereqs'   => '2.113640',
6606             'CPAN::Meta::Requirements'=> '2.113640',
6607             'CPAN::Meta::Spec'      => '2.113640',
6608             'CPAN::Meta::Validator' => '2.113640',
6609             'CPANPLUS'              => '0.9116',
6610             'CPANPLUS::Internals'   => '0.9116',
6611             'CPANPLUS::Shell::Default'=> '0.9116',
6612             'Cwd'                   => '3.39_01',
6613             'Data::Dumper'          => '2.135_03',
6614             'Devel::InnerPackage'   => '0.4',
6615             'ExtUtils::CBuilder::Base'=> '0.280205',
6616             'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6617             'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6618             'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6619             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6620             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6621             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6622             'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6623             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6624             'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6625             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6626             'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6627             'ExtUtils::Manifest'    => '1.61',
6628             'ExtUtils::Packlist'    => '1.46',
6629             'ExtUtils::ParseXS'     => '3.12',
6630             'ExtUtils::ParseXS::Constants'=> '3.12',
6631             'ExtUtils::ParseXS::CountLines'=> '3.12',
6632             'ExtUtils::ParseXS::Utilities'=> '3.12',
6633             'ExtUtils::Typemaps'    => '1.03',
6634             'ExtUtils::Typemaps::Cmd'=> undef,
6635             'ExtUtils::Typemaps::Type'=> '0.06',
6636             'File::Glob'            => '1.16',
6637             'File::Spec'            => '3.39_01',
6638             'File::Spec::Cygwin'    => '3.39_01',
6639             'File::Spec::Epoc'      => '3.39_01',
6640             'File::Spec::Functions' => '3.39_01',
6641             'File::Spec::Mac'       => '3.39_01',
6642             'File::Spec::OS2'       => '3.39_01',
6643             'File::Spec::Unix'      => '3.39_01',
6644             'File::Spec::VMS'       => '3.39_01',
6645             'File::Spec::Win32'     => '3.39_01',
6646             'IO::Dir'               => '1.10',
6647             'IO::Pipe'              => '1.15',
6648             'IO::Poll'              => '0.09',
6649             'IO::Select'            => '1.21',
6650             'IO::Socket'            => '1.34',
6651             'IO::Socket::INET'      => '1.33',
6652             'IO::Socket::UNIX'      => '1.24',
6653             'Locale::Maketext'      => '1.22',
6654             'Math::BigInt'          => '1.998',
6655             'Module::CoreList'      => '2.60',
6656             'Module::Pluggable'     => '4.0',
6657             'POSIX'                 => '1.28',
6658             'PerlIO::scalar'        => '0.13',
6659             'Pod::Html'             => '1.13',
6660             'Pod::Perldoc'          => '3.15_15',
6661             'Pod::Perldoc::BaseTo'  => '3.15_15',
6662             'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6663             'Pod::Perldoc::ToANSI'  => '3.15_15',
6664             'Pod::Perldoc::ToChecker'=> '3.15_15',
6665             'Pod::Perldoc::ToMan'   => '3.15_15',
6666             'Pod::Perldoc::ToNroff' => '3.15_15',
6667             'Pod::Perldoc::ToPod'   => '3.15_15',
6668             'Pod::Perldoc::ToRtf'   => '3.15_15',
6669             'Pod::Perldoc::ToTerm'  => '3.15_15',
6670             'Pod::Perldoc::ToText'  => '3.15_15',
6671             'Pod::Perldoc::ToTk'    => '3.15_15',
6672             'Pod::Perldoc::ToXml'   => '3.15_15',
6673             'Term::UI'              => '0.30',
6674             'Tie::File'             => '0.98',
6675             'Unicode::UCD'          => '0.39',
6676             'Version::Requirements' => '0.101021',
6677             'XS::APItest'           => '0.35',
6678             '_charnames'            => '1.28',
6679             'arybase'               => '0.03',
6680             'autouse'               => '1.07',
6681             'charnames'             => '1.28',
6682             'diagnostics'           => '1.27',
6683             'feature'               => '1.25',
6684             'overload'              => '1.17',
6685             'overloading'           => '0.02',
6686             'perlfaq'               => '5.0150038',
6687         },
6688         removed => {
6689         }
6690     },
6691     5.015008 => {
6692         delta_from => 5.015007,
6693         changed => {
6694             'B'                     => '1.34',
6695             'B::Deparse'            => '1.12',
6696             'CPAN::Meta'            => '2.120351',
6697             'CPAN::Meta::Converter' => '2.120351',
6698             'CPAN::Meta::Feature'   => '2.120351',
6699             'CPAN::Meta::History'   => '2.120351',
6700             'CPAN::Meta::Prereqs'   => '2.120351',
6701             'CPAN::Meta::Requirements'=> '2.120351',
6702             'CPAN::Meta::Spec'      => '2.120351',
6703             'CPAN::Meta::Validator' => '2.120351',
6704             'CPAN::Meta::YAML'      => '0.007',
6705             'CPANPLUS'              => '0.9118',
6706             'CPANPLUS::Dist::Build' => '0.62',
6707             'CPANPLUS::Dist::Build::Constants'=> '0.62',
6708             'CPANPLUS::Internals'   => '0.9118',
6709             'CPANPLUS::Shell::Default'=> '0.9118',
6710             'Carp'                  => '1.25',
6711             'Carp::Heavy'           => '1.25',
6712             'Compress::Raw::Bzip2'  => '2.048',
6713             'Compress::Raw::Zlib'   => '2.048',
6714             'Compress::Zlib'        => '2.048',
6715             'Cwd'                   => '3.39_02',
6716             'DB_File'               => '1.826',
6717             'Data::Dumper'          => '2.135_05',
6718             'English'               => '1.05',
6719             'ExtUtils::Install'     => '1.58',
6720             'ExtUtils::ParseXS'     => '3.16',
6721             'ExtUtils::ParseXS::Constants'=> '3.16',
6722             'ExtUtils::ParseXS::CountLines'=> '3.16',
6723             'ExtUtils::ParseXS::Utilities'=> '3.16',
6724             'ExtUtils::Typemaps'    => '3.16',
6725             'ExtUtils::Typemaps::Cmd'=> '3.16',
6726             'ExtUtils::Typemaps::InputMap'=> '3.16',
6727             'ExtUtils::Typemaps::OutputMap'=> '3.16',
6728             'ExtUtils::Typemaps::Type'=> '3.16',
6729             'File::Copy'            => '2.23',
6730             'File::Glob'            => '1.17',
6731             'File::Spec'            => '3.39_02',
6732             'File::Spec::Cygwin'    => '3.39_02',
6733             'File::Spec::Epoc'      => '3.39_02',
6734             'File::Spec::Functions' => '3.39_02',
6735             'File::Spec::Mac'       => '3.39_02',
6736             'File::Spec::OS2'       => '3.39_02',
6737             'File::Spec::Unix'      => '3.39_02',
6738             'File::Spec::VMS'       => '3.39_02',
6739             'File::Spec::Win32'     => '3.39_02',
6740             'Filter::Util::Call'    => '1.40',
6741             'IO::Compress::Adapter::Bzip2'=> '2.048',
6742             'IO::Compress::Adapter::Deflate'=> '2.048',
6743             'IO::Compress::Adapter::Identity'=> '2.048',
6744             'IO::Compress::Base'    => '2.048',
6745             'IO::Compress::Base::Common'=> '2.048',
6746             'IO::Compress::Bzip2'   => '2.048',
6747             'IO::Compress::Deflate' => '2.048',
6748             'IO::Compress::Gzip'    => '2.048',
6749             'IO::Compress::Gzip::Constants'=> '2.048',
6750             'IO::Compress::RawDeflate'=> '2.048',
6751             'IO::Compress::Zip'     => '2.048',
6752             'IO::Compress::Zip::Constants'=> '2.048',
6753             'IO::Compress::Zlib::Constants'=> '2.048',
6754             'IO::Compress::Zlib::Extra'=> '2.048',
6755             'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6756             'IO::Uncompress::Adapter::Identity'=> '2.048',
6757             'IO::Uncompress::Adapter::Inflate'=> '2.048',
6758             'IO::Uncompress::AnyInflate'=> '2.048',
6759             'IO::Uncompress::AnyUncompress'=> '2.048',
6760             'IO::Uncompress::Base'  => '2.048',
6761             'IO::Uncompress::Bunzip2'=> '2.048',
6762             'IO::Uncompress::Gunzip'=> '2.048',
6763             'IO::Uncompress::Inflate'=> '2.048',
6764             'IO::Uncompress::RawInflate'=> '2.048',
6765             'IO::Uncompress::Unzip' => '2.048',
6766             'IPC::Cmd'              => '0.76',
6767             'Math::Complex'         => '1.59',
6768             'Math::Trig'            => '1.23',
6769             'Module::Metadata'      => '1.000009',
6770             'Opcode'                => '1.23',
6771             'POSIX'                 => '1.30',
6772             'Parse::CPAN::Meta'     => '1.4402',
6773             'PerlIO::mmap'          => '0.010',
6774             'Pod::Checker'          => '1.51',
6775             'Pod::Find'             => '1.51',
6776             'Pod::Functions'        => '1.05',
6777             'Pod::Html'             => '1.14',
6778             'Pod::InputObjects'     => '1.51',
6779             'Pod::ParseUtils'       => '1.51',
6780             'Pod::Parser'           => '1.51',
6781             'Pod::PlainText'        => '2.05',
6782             'Pod::Select'           => '1.51',
6783             'Pod::Usage'            => '1.51',
6784             'Safe'                  => '2.31',
6785             'Socket'                => '1.98',
6786             'Term::Cap'             => '1.13',
6787             'Term::ReadLine'        => '1.08',
6788             'Time::HiRes'           => '1.9725',
6789             'Unicode'               => '6.1.0',
6790             'Unicode::UCD'          => '0.41',
6791             'Version::Requirements' => '0.101022',
6792             'XS::APItest'           => '0.36',
6793             'XS::Typemap'           => '0.08',
6794             '_charnames'            => '1.29',
6795             'arybase'               => '0.04',
6796             'charnames'             => '1.29',
6797             'diagnostics'           => '1.28',
6798             'feature'               => '1.26',
6799             'locale'                => '1.01',
6800             'overload'              => '1.18',
6801             'perlfaq'               => '5.0150039',
6802             're'                    => '0.19',
6803             'subs'                  => '1.01',
6804             'warnings'              => '1.13',
6805         },
6806         removed => {
6807         }
6808     },
6809     5.015009 => {
6810         delta_from => 5.015008,
6811         changed => {
6812             'B::Deparse'            => '1.13',
6813             'B::Lint'               => '1.14',
6814             'B::Lint::Debug'        => '1.14',
6815             'CPAN::Meta'            => '2.120630',
6816             'CPAN::Meta::Converter' => '2.120630',
6817             'CPAN::Meta::Feature'   => '2.120630',
6818             'CPAN::Meta::History'   => '2.120630',
6819             'CPAN::Meta::Prereqs'   => '2.120630',
6820             'CPAN::Meta::Requirements'=> '2.120630',
6821             'CPAN::Meta::Spec'      => '2.120630',
6822             'CPAN::Meta::Validator' => '2.120630',
6823             'CPANPLUS'              => '0.9121',
6824             'CPANPLUS::Internals'   => '0.9121',
6825             'CPANPLUS::Shell::Default'=> '0.9121',
6826             'Data::Dumper'          => '2.135_06',
6827             'Digest::SHA'           => '5.71',
6828             'ExtUtils::CBuilder'    => '0.280206',
6829             'ExtUtils::CBuilder::Base'=> '0.280206',
6830             'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6831             'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6832             'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6833             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6834             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6835             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6836             'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6837             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6838             'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6839             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6840             'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6841             'HTTP::Tiny'            => '0.017',
6842             'Locale::Codes'         => '3.21',
6843             'Locale::Codes::Constants'=> '3.21',
6844             'Locale::Codes::Country'=> '3.21',
6845             'Locale::Codes::Country_Codes'=> '3.21',
6846             'Locale::Codes::Country_Retired'=> '3.21',
6847             'Locale::Codes::Currency'=> '3.21',
6848             'Locale::Codes::Currency_Codes'=> '3.21',
6849             'Locale::Codes::Currency_Retired'=> '3.21',
6850             'Locale::Codes::LangExt'=> '3.21',
6851             'Locale::Codes::LangExt_Codes'=> '3.21',
6852             'Locale::Codes::LangExt_Retired'=> '3.21',
6853             'Locale::Codes::LangFam'=> '3.21',
6854             'Locale::Codes::LangFam_Codes'=> '3.21',
6855             'Locale::Codes::LangFam_Retired'=> '3.21',
6856             'Locale::Codes::LangVar'=> '3.21',
6857             'Locale::Codes::LangVar_Codes'=> '3.21',
6858             'Locale::Codes::LangVar_Retired'=> '3.21',
6859             'Locale::Codes::Language'=> '3.21',
6860             'Locale::Codes::Language_Codes'=> '3.21',
6861             'Locale::Codes::Language_Retired'=> '3.21',
6862             'Locale::Codes::Script' => '3.21',
6863             'Locale::Codes::Script_Codes'=> '3.21',
6864             'Locale::Codes::Script_Retired'=> '3.21',
6865             'Locale::Country'       => '3.21',
6866             'Locale::Currency'      => '3.21',
6867             'Locale::Language'      => '3.21',
6868             'Locale::Script'        => '3.21',
6869             'Module::CoreList'      => '2.65',
6870             'Pod::Html'             => '1.1501',
6871             'Pod::Perldoc'          => '3.17',
6872             'Pod::Perldoc::BaseTo'  => '3.17',
6873             'Pod::Perldoc::GetOptsOO'=> '3.17',
6874             'Pod::Perldoc::ToANSI'  => '3.17',
6875             'Pod::Perldoc::ToChecker'=> '3.17',
6876             'Pod::Perldoc::ToMan'   => '3.17',
6877             'Pod::Perldoc::ToNroff' => '3.17',
6878             'Pod::Perldoc::ToPod'   => '3.17',
6879             'Pod::Perldoc::ToRtf'   => '3.17',
6880             'Pod::Perldoc::ToTerm'  => '3.17',
6881             'Pod::Perldoc::ToText'  => '3.17',
6882             'Pod::Perldoc::ToTk'    => '3.17',
6883             'Pod::Perldoc::ToXml'   => '3.17',
6884             'Pod::Simple'           => '3.20',
6885             'Pod::Simple::BlackBox' => '3.20',
6886             'Pod::Simple::Checker'  => '3.20',
6887             'Pod::Simple::Debug'    => '3.20',
6888             'Pod::Simple::DumpAsText'=> '3.20',
6889             'Pod::Simple::DumpAsXML'=> '3.20',
6890             'Pod::Simple::HTML'     => '3.20',
6891             'Pod::Simple::HTMLBatch'=> '3.20',
6892             'Pod::Simple::LinkSection'=> '3.20',
6893             'Pod::Simple::Methody'  => '3.20',
6894             'Pod::Simple::Progress' => '3.20',
6895             'Pod::Simple::PullParser'=> '3.20',
6896             'Pod::Simple::PullParserEndToken'=> '3.20',
6897             'Pod::Simple::PullParserStartToken'=> '3.20',
6898             'Pod::Simple::PullParserTextToken'=> '3.20',
6899             'Pod::Simple::PullParserToken'=> '3.20',
6900             'Pod::Simple::RTF'      => '3.20',
6901             'Pod::Simple::Search'   => '3.20',
6902             'Pod::Simple::SimpleTree'=> '3.20',
6903             'Pod::Simple::Text'     => '3.20',
6904             'Pod::Simple::TextContent'=> '3.20',
6905             'Pod::Simple::TiedOutFH'=> '3.20',
6906             'Pod::Simple::Transcode'=> '3.20',
6907             'Pod::Simple::TranscodeDumb'=> '3.20',
6908             'Pod::Simple::TranscodeSmart'=> '3.20',
6909             'Pod::Simple::XHTML'    => '3.20',
6910             'Pod::Simple::XMLOutStream'=> '3.20',
6911             'Socket'                => '2.000',
6912             'Term::ReadLine'        => '1.09',
6913             'Unicode::Collate'      => '0.89',
6914             'Unicode::Collate::CJK::Korean'=> '0.88',
6915             'Unicode::Collate::Locale'=> '0.89',
6916             'Unicode::Normalize'    => '1.14',
6917             'Unicode::UCD'          => '0.42',
6918             'XS::APItest'           => '0.37',
6919             'arybase'               => '0.05',
6920             'attributes'            => '0.18',
6921             'charnames'             => '1.30',
6922             'feature'               => '1.27',
6923         },
6924         removed => {
6925         }
6926     },
6927     5.016 => {
6928         delta_from => 5.015009,
6929         changed => {
6930             'B::Concise'            => '0.89',
6931             'B::Deparse'            => '1.14',
6932             'Carp'                  => '1.26',
6933             'Carp::Heavy'           => '1.26',
6934             'IO::Socket'            => '1.35',
6935             'Module::CoreList'      => '2.66',
6936             'PerlIO::scalar'        => '0.14',
6937             'Pod::Html'             => '1.1502',
6938             'Safe'                  => '2.31_01',
6939             'Socket'                => '2.001',
6940             'Unicode::UCD'          => '0.43',
6941             'XS::APItest'           => '0.38',
6942             '_charnames'            => '1.31',
6943             'attributes'            => '0.19',
6944             'strict'                => '1.07',
6945             'version'               => '0.99',
6946         },
6947         removed => {
6948         }
6949     },
6950     5.016001 => {
6951         delta_from => 5.016,
6952         changed => {
6953             'B'                     => '1.35',
6954             'B::Deparse'            => '1.14_01',
6955             'List::Util'            => '1.25',
6956             'List::Util::PP'        => '1.25',
6957             'List::Util::XS'        => '1.25',
6958             'Module::CoreList'      => '2.70',
6959             'PerlIO::scalar'        => '0.14_01',
6960             'Scalar::Util'          => '1.25',
6961             'Scalar::Util::PP'      => '1.25',
6962             're'                    => '0.19_01',
6963         },
6964         removed => {
6965         }
6966     },
6967     5.016002 => {
6968         delta_from => 5.016001,
6969         changed => {
6970             'Module::CoreList'      => '2.76',
6971         },
6972         removed => {
6973         }
6974     },
6975     5.016003 => {
6976         delta_from => 5.016002,
6977         changed => {
6978             'Encode'                => '2.44_01',
6979             'Module::CoreList'      => '2.76_02',
6980             'XS::APItest'           => '0.39',
6981         },
6982         removed => {
6983         }
6984     },
6985     5.017 => {
6986         delta_from => 5.016,
6987         changed => {
6988             'B'                     => '1.35',
6989             'B::Concise'            => '0.90',
6990             'ExtUtils::ParseXS'     => '3.17',
6991             'ExtUtils::ParseXS::Utilities'=> '3.17',
6992             'File::DosGlob'         => '1.07',
6993             'File::Find'            => '1.21',
6994             'File::stat'            => '1.06',
6995             'Hash::Util'            => '0.12',
6996             'IO::Socket'            => '1.34',
6997             'Module::CoreList'      => '2.67',
6998             'Pod::Functions'        => '1.06',
6999             'Storable'              => '2.35',
7000             'XS::APItest'           => '0.39',
7001             'diagnostics'           => '1.29',
7002             'feature'               => '1.28',
7003             'overload'              => '1.19',
7004             'utf8'                  => '1.10',
7005         },
7006         removed => {
7007             'Version::Requirements' => 1,
7008         }
7009     },
7010     5.017001 => {
7011         delta_from => 5.017,
7012         changed => {
7013             'App::Prove'            => '3.25',
7014             'App::Prove::State'     => '3.25',
7015             'App::Prove::State::Result'=> '3.25',
7016             'App::Prove::State::Result::Test'=> '3.25',
7017             'Archive::Extract'      => '0.60',
7018             'Archive::Tar'          => '1.88',
7019             'Archive::Tar::Constant'=> '1.88',
7020             'Archive::Tar::File'    => '1.88',
7021             'B'                     => '1.36',
7022             'B::Deparse'            => '1.15',
7023             'CPAN::Meta'            => '2.120921',
7024             'CPAN::Meta::Converter' => '2.120921',
7025             'CPAN::Meta::Feature'   => '2.120921',
7026             'CPAN::Meta::History'   => '2.120921',
7027             'CPAN::Meta::Prereqs'   => '2.120921',
7028             'CPAN::Meta::Requirements'=> '2.122',
7029             'CPAN::Meta::Spec'      => '2.120921',
7030             'CPAN::Meta::Validator' => '2.120921',
7031             'CPAN::Meta::YAML'      => '0.008',
7032             'CPANPLUS'              => '0.9130',
7033             'CPANPLUS::Config::HomeEnv'=> '0.04',
7034             'CPANPLUS::Internals'   => '0.9130',
7035             'CPANPLUS::Shell::Default'=> '0.9130',
7036             'Class::Struct'         => '0.64',
7037             'Compress::Raw::Bzip2'  => '2.052',
7038             'Compress::Raw::Zlib'   => '2.054',
7039             'Compress::Zlib'        => '2.052',
7040             'Digest::MD5'           => '2.52',
7041             'DynaLoader'            => '1.15',
7042             'ExtUtils::CBuilder'    => '0.280208',
7043             'ExtUtils::CBuilder::Base'=> '0.280208',
7044             'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
7045             'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
7046             'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
7047             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
7048             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
7049             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
7050             'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
7051             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
7052             'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
7053             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
7054             'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
7055             'Fatal'                 => '2.11',
7056             'File::DosGlob'         => '1.08',
7057             'File::Fetch'           => '0.34',
7058             'File::Spec::Unix'      => '3.39_03',
7059             'Filter::Util::Call'    => '1.45',
7060             'HTTP::Tiny'            => '0.022',
7061             'IO'                    => '1.25_07',
7062             'IO::Compress::Adapter::Bzip2'=> '2.052',
7063             'IO::Compress::Adapter::Deflate'=> '2.052',
7064             'IO::Compress::Adapter::Identity'=> '2.052',
7065             'IO::Compress::Base'    => '2.052',
7066             'IO::Compress::Base::Common'=> '2.052',
7067             'IO::Compress::Bzip2'   => '2.052',
7068             'IO::Compress::Deflate' => '2.052',
7069             'IO::Compress::Gzip'    => '2.052',
7070             'IO::Compress::Gzip::Constants'=> '2.052',
7071             'IO::Compress::RawDeflate'=> '2.052',
7072             'IO::Compress::Zip'     => '2.052',
7073             'IO::Compress::Zip::Constants'=> '2.052',
7074             'IO::Compress::Zlib::Constants'=> '2.052',
7075             'IO::Compress::Zlib::Extra'=> '2.052',
7076             'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
7077             'IO::Uncompress::Adapter::Identity'=> '2.052',
7078             'IO::Uncompress::Adapter::Inflate'=> '2.052',
7079             'IO::Uncompress::AnyInflate'=> '2.052',
7080             'IO::Uncompress::AnyUncompress'=> '2.052',
7081             'IO::Uncompress::Base'  => '2.052',
7082             'IO::Uncompress::Bunzip2'=> '2.052',
7083             'IO::Uncompress::Gunzip'=> '2.052',
7084             'IO::Uncompress::Inflate'=> '2.052',
7085             'IO::Uncompress::RawInflate'=> '2.052',
7086             'IO::Uncompress::Unzip' => '2.052',
7087             'IPC::Cmd'              => '0.78',
7088             'List::Util'            => '1.25',
7089             'List::Util::XS'        => '1.25',
7090             'Locale::Codes'         => '3.22',
7091             'Locale::Codes::Constants'=> '3.22',
7092             'Locale::Codes::Country'=> '3.22',
7093             'Locale::Codes::Country_Codes'=> '3.22',
7094             'Locale::Codes::Country_Retired'=> '3.22',
7095             'Locale::Codes::Currency'=> '3.22',
7096             'Locale::Codes::Currency_Codes'=> '3.22',
7097             'Locale::Codes::Currency_Retired'=> '3.22',
7098             'Locale::Codes::LangExt'=> '3.22',
7099             'Locale::Codes::LangExt_Codes'=> '3.22',
7100             'Locale::Codes::LangExt_Retired'=> '3.22',
7101             'Locale::Codes::LangFam'=> '3.22',
7102             'Locale::Codes::LangFam_Codes'=> '3.22',
7103             'Locale::Codes::LangFam_Retired'=> '3.22',
7104             'Locale::Codes::LangVar'=> '3.22',
7105             'Locale::Codes::LangVar_Codes'=> '3.22',
7106             'Locale::Codes::LangVar_Retired'=> '3.22',
7107             'Locale::Codes::Language'=> '3.22',
7108             'Locale::Codes::Language_Codes'=> '3.22',
7109             'Locale::Codes::Language_Retired'=> '3.22',
7110             'Locale::Codes::Script' => '3.22',
7111             'Locale::Codes::Script_Codes'=> '3.22',
7112             'Locale::Codes::Script_Retired'=> '3.22',
7113             'Locale::Country'       => '3.22',
7114             'Locale::Currency'      => '3.22',
7115             'Locale::Language'      => '3.22',
7116             'Locale::Script'        => '3.22',
7117             'Memoize'               => '1.03',
7118             'Memoize::AnyDBM_File'  => '1.03',
7119             'Memoize::Expire'       => '1.03',
7120             'Memoize::ExpireFile'   => '1.03',
7121             'Memoize::ExpireTest'   => '1.03',
7122             'Memoize::NDBM_File'    => '1.03',
7123             'Memoize::SDBM_File'    => '1.03',
7124             'Memoize::Storable'     => '1.03',
7125             'Module::Build'         => '0.40',
7126             'Module::Build::Base'   => '0.40',
7127             'Module::Build::Compat' => '0.40',
7128             'Module::Build::Config' => '0.40',
7129             'Module::Build::Cookbook'=> '0.40',
7130             'Module::Build::Dumper' => '0.40',
7131             'Module::Build::ModuleInfo'=> '0.40',
7132             'Module::Build::Notes'  => '0.40',
7133             'Module::Build::PPMMaker'=> '0.40',
7134             'Module::Build::Platform::Amiga'=> '0.40',
7135             'Module::Build::Platform::Default'=> '0.40',
7136             'Module::Build::Platform::EBCDIC'=> '0.40',
7137             'Module::Build::Platform::MPEiX'=> '0.40',
7138             'Module::Build::Platform::MacOS'=> '0.40',
7139             'Module::Build::Platform::RiscOS'=> '0.40',
7140             'Module::Build::Platform::Unix'=> '0.40',
7141             'Module::Build::Platform::VMS'=> '0.40',
7142             'Module::Build::Platform::VOS'=> '0.40',
7143             'Module::Build::Platform::Windows'=> '0.40',
7144             'Module::Build::Platform::aix'=> '0.40',
7145             'Module::Build::Platform::cygwin'=> '0.40',
7146             'Module::Build::Platform::darwin'=> '0.40',
7147             'Module::Build::Platform::os2'=> '0.40',
7148             'Module::Build::PodParser'=> '0.40',
7149             'Module::CoreList'      => '2.68',
7150             'Module::Load::Conditional'=> '0.50',
7151             'Object::Accessor'      => '0.44',
7152             'POSIX'                 => '1.31',
7153             'Params::Check'         => '0.36',
7154             'Parse::CPAN::Meta'     => '1.4404',
7155             'PerlIO::mmap'          => '0.011',
7156             'PerlIO::via::QuotedPrint'=> '0.07',
7157             'Pod::Html'             => '1.16',
7158             'Pod::Man'              => '2.26',
7159             'Pod::Text'             => '3.16',
7160             'Safe'                  => '2.33_01',
7161             'Scalar::Util'          => '1.25',
7162             'Search::Dict'          => '1.07',
7163             'Storable'              => '2.36',
7164             'TAP::Base'             => '3.25',
7165             'TAP::Formatter::Base'  => '3.25',
7166             'TAP::Formatter::Color' => '3.25',
7167             'TAP::Formatter::Console'=> '3.25',
7168             'TAP::Formatter::Console::ParallelSession'=> '3.25',
7169             'TAP::Formatter::Console::Session'=> '3.25',
7170             'TAP::Formatter::File'  => '3.25',
7171             'TAP::Formatter::File::Session'=> '3.25',
7172             'TAP::Formatter::Session'=> '3.25',
7173             'TAP::Harness'          => '3.25',
7174             'TAP::Object'           => '3.25',
7175             'TAP::Parser'           => '3.25',
7176             'TAP::Parser::Aggregator'=> '3.25',
7177             'TAP::Parser::Grammar'  => '3.25',
7178             'TAP::Parser::Iterator' => '3.25',
7179             'TAP::Parser::Iterator::Array'=> '3.25',
7180             'TAP::Parser::Iterator::Process'=> '3.25',
7181             'TAP::Parser::Iterator::Stream'=> '3.25',
7182             'TAP::Parser::IteratorFactory'=> '3.25',
7183             'TAP::Parser::Multiplexer'=> '3.25',
7184             'TAP::Parser::Result'   => '3.25',
7185             'TAP::Parser::Result::Bailout'=> '3.25',
7186             'TAP::Parser::Result::Comment'=> '3.25',
7187             'TAP::Parser::Result::Plan'=> '3.25',
7188             'TAP::Parser::Result::Pragma'=> '3.25',
7189             'TAP::Parser::Result::Test'=> '3.25',
7190             'TAP::Parser::Result::Unknown'=> '3.25',
7191             'TAP::Parser::Result::Version'=> '3.25',
7192             'TAP::Parser::Result::YAML'=> '3.25',
7193             'TAP::Parser::ResultFactory'=> '3.25',
7194             'TAP::Parser::Scheduler'=> '3.25',
7195             'TAP::Parser::Scheduler::Job'=> '3.25',
7196             'TAP::Parser::Scheduler::Spinner'=> '3.25',
7197             'TAP::Parser::Source'   => '3.25',
7198             'TAP::Parser::SourceHandler'=> '3.25',
7199             'TAP::Parser::SourceHandler::Executable'=> '3.25',
7200             'TAP::Parser::SourceHandler::File'=> '3.25',
7201             'TAP::Parser::SourceHandler::Handle'=> '3.25',
7202             'TAP::Parser::SourceHandler::Perl'=> '3.25',
7203             'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7204             'TAP::Parser::Utils'    => '3.25',
7205             'TAP::Parser::YAMLish::Reader'=> '3.25',
7206             'TAP::Parser::YAMLish::Writer'=> '3.25',
7207             'Term::ANSIColor'       => '3.02',
7208             'Test::Harness'         => '3.25',
7209             'Unicode'               => '6.2.0',
7210             'Unicode::UCD'          => '0.44',
7211             'XS::APItest'           => '0.40',
7212             '_charnames'            => '1.32',
7213             'attributes'            => '0.2',
7214             'autodie'               => '2.11',
7215             'autodie::exception'    => '2.11',
7216             'autodie::exception::system'=> '2.11',
7217             'autodie::hints'        => '2.11',
7218             'bigint'                => '0.30',
7219             'charnames'             => '1.32',
7220             'feature'               => '1.29',
7221             'inc::latest'           => '0.40',
7222             'perlfaq'               => '5.0150040',
7223             're'                    => '0.20',
7224         },
7225         removed => {
7226             'List::Util::PP'        => 1,
7227             'Scalar::Util::PP'      => 1,
7228         }
7229     },
7230     5.017002 => {
7231         delta_from => 5.017001,
7232         changed => {
7233             'App::Prove'            => '3.25_01',
7234             'App::Prove::State'     => '3.25_01',
7235             'App::Prove::State::Result'=> '3.25_01',
7236             'App::Prove::State::Result::Test'=> '3.25_01',
7237             'B::Concise'            => '0.91',
7238             'Compress::Raw::Bzip2'  => '2.05201',
7239             'Compress::Raw::Zlib'   => '2.05401',
7240             'Exporter'              => '5.67',
7241             'Exporter::Heavy'       => '5.67',
7242             'Fatal'                 => '2.12',
7243             'File::Fetch'           => '0.36',
7244             'File::stat'            => '1.07',
7245             'IO'                    => '1.25_08',
7246             'IO::Socket'            => '1.35',
7247             'Module::CoreList'      => '2.69',
7248             'PerlIO::scalar'        => '0.15',
7249             'Socket'                => '2.002',
7250             'Storable'              => '2.37',
7251             'TAP::Base'             => '3.25_01',
7252             'TAP::Formatter::Base'  => '3.25_01',
7253             'TAP::Formatter::Color' => '3.25_01',
7254             'TAP::Formatter::Console'=> '3.25_01',
7255             'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7256             'TAP::Formatter::Console::Session'=> '3.25_01',
7257             'TAP::Formatter::File'  => '3.25_01',
7258             'TAP::Formatter::File::Session'=> '3.25_01',
7259             'TAP::Formatter::Session'=> '3.25_01',
7260             'TAP::Harness'          => '3.25_01',
7261             'TAP::Object'           => '3.25_01',
7262             'TAP::Parser'           => '3.25_01',
7263             'TAP::Parser::Aggregator'=> '3.25_01',
7264             'TAP::Parser::Grammar'  => '3.25_01',
7265             'TAP::Parser::Iterator' => '3.25_01',
7266             'TAP::Parser::Iterator::Array'=> '3.25_01',
7267             'TAP::Parser::Iterator::Process'=> '3.25_01',
7268             'TAP::Parser::Iterator::Stream'=> '3.25_01',
7269             'TAP::Parser::IteratorFactory'=> '3.25_01',
7270             'TAP::Parser::Multiplexer'=> '3.25_01',
7271             'TAP::Parser::Result'   => '3.25_01',
7272             'TAP::Parser::Result::Bailout'=> '3.25_01',
7273             'TAP::Parser::Result::Comment'=> '3.25_01',
7274             'TAP::Parser::Result::Plan'=> '3.25_01',
7275             'TAP::Parser::Result::Pragma'=> '3.25_01',
7276             'TAP::Parser::Result::Test'=> '3.25_01',
7277             'TAP::Parser::Result::Unknown'=> '3.25_01',
7278             'TAP::Parser::Result::Version'=> '3.25_01',
7279             'TAP::Parser::Result::YAML'=> '3.25_01',
7280             'TAP::Parser::ResultFactory'=> '3.25_01',
7281             'TAP::Parser::Scheduler'=> '3.25_01',
7282             'TAP::Parser::Scheduler::Job'=> '3.25_01',
7283             'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7284             'TAP::Parser::Source'   => '3.25_01',
7285             'TAP::Parser::SourceHandler'=> '3.25_01',
7286             'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7287             'TAP::Parser::SourceHandler::File'=> '3.25_01',
7288             'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7289             'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7290             'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7291             'TAP::Parser::Utils'    => '3.25_01',
7292             'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7293             'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7294             'Test::Harness'         => '3.25_01',
7295             'Tie::StdHandle'        => '4.3',
7296             'XS::APItest'           => '0.41',
7297             'autodie'               => '2.12',
7298             'autodie::exception'    => '2.12',
7299             'autodie::exception::system'=> '2.12',
7300             'autodie::hints'        => '2.12',
7301             'diagnostics'           => '1.30',
7302             'overload'              => '1.20',
7303             're'                    => '0.21',
7304             'vars'                  => '1.03',
7305         },
7306         removed => {
7307         }
7308     },
7309     5.017003 => {
7310         delta_from => 5.017002,
7311         changed => {
7312             'B'                     => '1.37',
7313             'B::Concise'            => '0.92',
7314             'B::Debug'              => '1.18',
7315             'B::Deparse'            => '1.16',
7316             'CGI'                   => '3.60',
7317             'Compress::Raw::Bzip2'  => '2.055',
7318             'Compress::Raw::Zlib'   => '2.056',
7319             'Compress::Zlib'        => '2.055',
7320             'Data::Dumper'          => '2.135_07',
7321             'Devel::Peek'           => '1.09',
7322             'Encode'                => '2.47',
7323             'Encode::Alias'         => '2.16',
7324             'Encode::GSM0338'       => '2.02',
7325             'Encode::Unicode::UTF7' => '2.06',
7326             'IO::Compress::Adapter::Bzip2'=> '2.055',
7327             'IO::Compress::Adapter::Deflate'=> '2.055',
7328             'IO::Compress::Adapter::Identity'=> '2.055',
7329             'IO::Compress::Base'    => '2.055',
7330             'IO::Compress::Base::Common'=> '2.055',
7331             'IO::Compress::Bzip2'   => '2.055',
7332             'IO::Compress::Deflate' => '2.055',
7333             'IO::Compress::Gzip'    => '2.055',
7334             'IO::Compress::Gzip::Constants'=> '2.055',
7335             'IO::Compress::RawDeflate'=> '2.055',
7336             'IO::Compress::Zip'     => '2.055',
7337             'IO::Compress::Zip::Constants'=> '2.055',
7338             'IO::Compress::Zlib::Constants'=> '2.055',
7339             'IO::Compress::Zlib::Extra'=> '2.055',
7340             'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7341             'IO::Uncompress::Adapter::Identity'=> '2.055',
7342             'IO::Uncompress::Adapter::Inflate'=> '2.055',
7343             'IO::Uncompress::AnyInflate'=> '2.055',
7344             'IO::Uncompress::AnyUncompress'=> '2.055',
7345             'IO::Uncompress::Base'  => '2.055',
7346             'IO::Uncompress::Bunzip2'=> '2.055',
7347             'IO::Uncompress::Gunzip'=> '2.055',
7348             'IO::Uncompress::Inflate'=> '2.055',
7349             'IO::Uncompress::RawInflate'=> '2.055',
7350             'IO::Uncompress::Unzip' => '2.055',
7351             'Module::Build'         => '0.4003',
7352             'Module::Build::Base'   => '0.4003',
7353             'Module::Build::Compat' => '0.4003',
7354             'Module::Build::Config' => '0.4003',
7355             'Module::Build::Cookbook'=> '0.4003',
7356             'Module::Build::Dumper' => '0.4003',
7357             'Module::Build::ModuleInfo'=> '0.4003',
7358             'Module::Build::Notes'  => '0.4003',
7359             'Module::Build::PPMMaker'=> '0.4003',
7360             'Module::Build::Platform::Amiga'=> '0.4003',
7361             'Module::Build::Platform::Default'=> '0.4003',
7362             'Module::Build::Platform::EBCDIC'=> '0.4003',
7363             'Module::Build::Platform::MPEiX'=> '0.4003',
7364             'Module::Build::Platform::MacOS'=> '0.4003',
7365             'Module::Build::Platform::RiscOS'=> '0.4003',
7366             'Module::Build::Platform::Unix'=> '0.4003',
7367             'Module::Build::Platform::VMS'=> '0.4003',
7368             'Module::Build::Platform::VOS'=> '0.4003',
7369             'Module::Build::Platform::Windows'=> '0.4003',
7370             'Module::Build::Platform::aix'=> '0.4003',
7371             'Module::Build::Platform::cygwin'=> '0.4003',
7372             'Module::Build::Platform::darwin'=> '0.4003',
7373             'Module::Build::Platform::os2'=> '0.4003',
7374             'Module::Build::PodParser'=> '0.4003',
7375             'Module::CoreList'      => '2.71',
7376             'Module::CoreList::TieHashDelta'=> '2.71',
7377             'Module::Load::Conditional'=> '0.54',
7378             'Module::Metadata'      => '1.000011',
7379             'Module::Pluggable'     => '4.3',
7380             'Module::Pluggable::Object'=> '4.3',
7381             'Pod::Simple'           => '3.23',
7382             'Pod::Simple::BlackBox' => '3.23',
7383             'Pod::Simple::Checker'  => '3.23',
7384             'Pod::Simple::Debug'    => '3.23',
7385             'Pod::Simple::DumpAsText'=> '3.23',
7386             'Pod::Simple::DumpAsXML'=> '3.23',
7387             'Pod::Simple::HTML'     => '3.23',
7388             'Pod::Simple::HTMLBatch'=> '3.23',
7389             'Pod::Simple::LinkSection'=> '3.23',
7390             'Pod::Simple::Methody'  => '3.23',
7391             'Pod::Simple::Progress' => '3.23',
7392             'Pod::Simple::PullParser'=> '3.23',
7393             'Pod::Simple::PullParserEndToken'=> '3.23',
7394             'Pod::Simple::PullParserStartToken'=> '3.23',
7395             'Pod::Simple::PullParserTextToken'=> '3.23',
7396             'Pod::Simple::PullParserToken'=> '3.23',
7397             'Pod::Simple::RTF'      => '3.23',
7398             'Pod::Simple::Search'   => '3.23',
7399             'Pod::Simple::SimpleTree'=> '3.23',
7400             'Pod::Simple::Text'     => '3.23',
7401             'Pod::Simple::TextContent'=> '3.23',
7402             'Pod::Simple::TiedOutFH'=> '3.23',
7403             'Pod::Simple::Transcode'=> '3.23',
7404             'Pod::Simple::TranscodeDumb'=> '3.23',
7405             'Pod::Simple::TranscodeSmart'=> '3.23',
7406             'Pod::Simple::XHTML'    => '3.23',
7407             'Pod::Simple::XMLOutStream'=> '3.23',
7408             'Socket'                => '2.004',
7409             'Storable'              => '2.38',
7410             'Sys::Syslog'           => '0.31',
7411             'Term::ReadLine'        => '1.10',
7412             'Text::Tabs'            => '2012.0818',
7413             'Text::Wrap'            => '2012.0818',
7414             'Time::Local'           => '1.2300',
7415             'Unicode::UCD'          => '0.45',
7416             'Win32'                 => '0.45',
7417             'Win32CORE'             => '0.03',
7418             'XS::APItest'           => '0.42',
7419             'inc::latest'           => '0.4003',
7420             'perlfaq'               => '5.0150041',
7421             're'                    => '0.22',
7422         },
7423         removed => {
7424         }
7425     },
7426     5.017004 => {
7427         delta_from => 5.017003,
7428         changed => {
7429             'Archive::Tar'          => '1.90',
7430             'Archive::Tar::Constant'=> '1.90',
7431             'Archive::Tar::File'    => '1.90',
7432             'B'                     => '1.38',
7433             'B::Concise'            => '0.93',
7434             'B::Deparse'            => '1.17',
7435             'B::Xref'               => '1.04',
7436             'CPANPLUS'              => '0.9131',
7437             'CPANPLUS::Internals'   => '0.9131',
7438             'CPANPLUS::Shell::Default'=> '0.9131',
7439             'DB_File'               => '1.827',
7440             'Devel::Peek'           => '1.10',
7441             'DynaLoader'            => '1.16',
7442             'Errno'                 => '1.16',
7443             'ExtUtils::ParseXS'     => '3.18',
7444             'ExtUtils::ParseXS::Constants'=> '3.18',
7445             'ExtUtils::ParseXS::CountLines'=> '3.18',
7446             'ExtUtils::ParseXS::Utilities'=> '3.18',
7447             'File::Copy'            => '2.24',
7448             'File::Find'            => '1.22',
7449             'IPC::Open3'            => '1.13',
7450             'Locale::Codes'         => '3.23',
7451             'Locale::Codes::Constants'=> '3.23',
7452             'Locale::Codes::Country'=> '3.23',
7453             'Locale::Codes::Country_Codes'=> '3.23',
7454             'Locale::Codes::Country_Retired'=> '3.23',
7455             'Locale::Codes::Currency'=> '3.23',
7456             'Locale::Codes::Currency_Codes'=> '3.23',
7457             'Locale::Codes::Currency_Retired'=> '3.23',
7458             'Locale::Codes::LangExt'=> '3.23',
7459             'Locale::Codes::LangExt_Codes'=> '3.23',
7460             'Locale::Codes::LangExt_Retired'=> '3.23',
7461             'Locale::Codes::LangFam'=> '3.23',
7462             'Locale::Codes::LangFam_Codes'=> '3.23',
7463             'Locale::Codes::LangFam_Retired'=> '3.23',
7464             'Locale::Codes::LangVar'=> '3.23',
7465             'Locale::Codes::LangVar_Codes'=> '3.23',
7466             'Locale::Codes::LangVar_Retired'=> '3.23',
7467             'Locale::Codes::Language'=> '3.23',
7468             'Locale::Codes::Language_Codes'=> '3.23',
7469             'Locale::Codes::Language_Retired'=> '3.23',
7470             'Locale::Codes::Script' => '3.23',
7471             'Locale::Codes::Script_Codes'=> '3.23',
7472             'Locale::Codes::Script_Retired'=> '3.23',
7473             'Locale::Country'       => '3.23',
7474             'Locale::Currency'      => '3.23',
7475             'Locale::Language'      => '3.23',
7476             'Locale::Script'        => '3.23',
7477             'Math::BigFloat::Trace' => '0.30',
7478             'Math::BigInt::Trace'   => '0.30',
7479             'Module::CoreList'      => '2.73',
7480             'Module::CoreList::TieHashDelta'=> '2.73',
7481             'Opcode'                => '1.24',
7482             'Socket'                => '2.006',
7483             'Storable'              => '2.39',
7484             'Sys::Syslog'           => '0.32',
7485             'Unicode::UCD'          => '0.46',
7486             'XS::APItest'           => '0.43',
7487             'bignum'                => '0.30',
7488             'bigrat'                => '0.30',
7489             'constant'              => '1.24',
7490             'feature'               => '1.30',
7491             'threads::shared'       => '1.41',
7492             'version'               => '0.9901',
7493             'warnings'              => '1.14',
7494         },
7495         removed => {
7496         }
7497     },
7498     5.017005 => {
7499         delta_from => 5.017004,
7500         changed => {
7501             'AutoLoader'            => '5.73',
7502             'B'                     => '1.39',
7503             'B::Deparse'            => '1.18',
7504             'CPANPLUS'              => '0.9133',
7505             'CPANPLUS::Internals'   => '0.9133',
7506             'CPANPLUS::Shell::Default'=> '0.9133',
7507             'Carp'                  => '1.27',
7508             'Carp::Heavy'           => '1.27',
7509             'Data::Dumper'          => '2.136',
7510             'Digest::SHA'           => '5.72',
7511             'ExtUtils::CBuilder'    => '0.280209',
7512             'ExtUtils::CBuilder::Base'=> '0.280209',
7513             'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7514             'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7515             'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7516             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7517             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7518             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7519             'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7520             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7521             'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7522             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7523             'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7524             'File::Copy'            => '2.25',
7525             'File::Glob'            => '1.18',
7526             'HTTP::Tiny'            => '0.024',
7527             'Module::CoreList'      => '2.75',
7528             'Module::CoreList::TieHashDelta'=> '2.75',
7529             'PerlIO::encoding'      => '0.16',
7530             'Unicode::Collate'      => '0.90',
7531             'Unicode::Collate::Locale'=> '0.90',
7532             'Unicode::Normalize'    => '1.15',
7533             'Win32CORE'             => '0.04',
7534             'XS::APItest'           => '0.44',
7535             'attributes'            => '0.21',
7536             'bigint'                => '0.31',
7537             'bignum'                => '0.31',
7538             'bigrat'                => '0.31',
7539             'feature'               => '1.31',
7540             'threads::shared'       => '1.42',
7541             'warnings'              => '1.15',
7542         },
7543         removed => {
7544         }
7545     },
7546     5.017006 => {
7547         delta_from => 5.017005,
7548         changed => {
7549             'B'                     => '1.40',
7550             'B::Concise'            => '0.94',
7551             'B::Deparse'            => '1.19',
7552             'B::Xref'               => '1.05',
7553             'CGI'                   => '3.63',
7554             'CGI::Util'             => '3.62',
7555             'CPAN'                  => '1.99_51',
7556             'CPANPLUS::Dist::Build' => '0.64',
7557             'CPANPLUS::Dist::Build::Constants'=> '0.64',
7558             'Carp'                  => '1.28',
7559             'Carp::Heavy'           => '1.28',
7560             'Compress::Raw::Bzip2'  => '2.058',
7561             'Compress::Raw::Zlib'   => '2.058',
7562             'Compress::Zlib'        => '2.058',
7563             'Data::Dumper'          => '2.137',
7564             'Digest::SHA'           => '5.73',
7565             'DynaLoader'            => '1.17',
7566             'Env'                   => '1.04',
7567             'Errno'                 => '1.17',
7568             'ExtUtils::Manifest'    => '1.62',
7569             'ExtUtils::Typemaps'    => '3.18',
7570             'ExtUtils::Typemaps::Cmd'=> '3.18',
7571             'ExtUtils::Typemaps::InputMap'=> '3.18',
7572             'ExtUtils::Typemaps::OutputMap'=> '3.18',
7573             'ExtUtils::Typemaps::Type'=> '3.18',
7574             'Fatal'                 => '2.13',
7575             'File::Find'            => '1.23',
7576             'Hash::Util'            => '0.13',
7577             'IO::Compress::Adapter::Bzip2'=> '2.058',
7578             'IO::Compress::Adapter::Deflate'=> '2.058',
7579             'IO::Compress::Adapter::Identity'=> '2.058',
7580             'IO::Compress::Base'    => '2.058',
7581             'IO::Compress::Base::Common'=> '2.058',
7582             'IO::Compress::Bzip2'   => '2.058',
7583             'IO::Compress::Deflate' => '2.058',
7584             'IO::Compress::Gzip'    => '2.058',
7585             'IO::Compress::Gzip::Constants'=> '2.058',
7586             'IO::Compress::RawDeflate'=> '2.058',
7587             'IO::Compress::Zip'     => '2.058',
7588             'IO::Compress::Zip::Constants'=> '2.058',
7589             'IO::Compress::Zlib::Constants'=> '2.058',
7590             'IO::Compress::Zlib::Extra'=> '2.058',
7591             'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7592             'IO::Uncompress::Adapter::Identity'=> '2.058',
7593             'IO::Uncompress::Adapter::Inflate'=> '2.058',
7594             'IO::Uncompress::AnyInflate'=> '2.058',
7595             'IO::Uncompress::AnyUncompress'=> '2.058',
7596             'IO::Uncompress::Base'  => '2.058',
7597             'IO::Uncompress::Bunzip2'=> '2.058',
7598             'IO::Uncompress::Gunzip'=> '2.058',
7599             'IO::Uncompress::Inflate'=> '2.058',
7600             'IO::Uncompress::RawInflate'=> '2.058',
7601             'IO::Uncompress::Unzip' => '2.058',
7602             'Module::CoreList'      => '2.78',
7603             'Module::CoreList::TieHashDelta'=> '2.77',
7604             'Module::Pluggable'     => '4.5',
7605             'Module::Pluggable::Object'=> '4.5',
7606             'Opcode'                => '1.25',
7607             'Sys::Hostname'         => '1.17',
7608             'Term::UI'              => '0.32',
7609             'Thread::Queue'         => '3.01',
7610             'Tie::Hash::NamedCapture'=> '0.09',
7611             'Unicode::Collate'      => '0.93',
7612             'Unicode::Collate::CJK::Korean'=> '0.93',
7613             'Unicode::Collate::Locale'=> '0.93',
7614             'Unicode::Normalize'    => '1.16',
7615             'Unicode::UCD'          => '0.47',
7616             'XS::APItest'           => '0.46',
7617             '_charnames'            => '1.33',
7618             'autodie'               => '2.13',
7619             'autodie::exception'    => '2.13',
7620             'autodie::exception::system'=> '2.13',
7621             'autodie::hints'        => '2.13',
7622             'charnames'             => '1.33',
7623             're'                    => '0.23',
7624         },
7625         removed => {
7626         }
7627     },
7628     5.017007 => {
7629         delta_from => 5.017006,
7630         changed => {
7631             'B'                     => '1.41',
7632             'CPANPLUS::Dist::Build' => '0.68',
7633             'CPANPLUS::Dist::Build::Constants'=> '0.68',
7634             'Compress::Raw::Bzip2'  => '2.059',
7635             'Compress::Raw::Zlib'   => '2.059',
7636             'Compress::Zlib'        => '2.059',
7637             'Cwd'                   => '3.39_03',
7638             'Data::Dumper'          => '2.139',
7639             'Devel::Peek'           => '1.11',
7640             'Digest::SHA'           => '5.80',
7641             'DynaLoader'            => '1.18',
7642             'English'               => '1.06',
7643             'Errno'                 => '1.18',
7644             'ExtUtils::Command::MM' => '6.64',
7645             'ExtUtils::Liblist'     => '6.64',
7646             'ExtUtils::Liblist::Kid'=> '6.64',
7647             'ExtUtils::MM'          => '6.64',
7648             'ExtUtils::MM_AIX'      => '6.64',
7649             'ExtUtils::MM_Any'      => '6.64',
7650             'ExtUtils::MM_BeOS'     => '6.64',
7651             'ExtUtils::MM_Cygwin'   => '6.64',
7652             'ExtUtils::MM_DOS'      => '6.64',
7653             'ExtUtils::MM_Darwin'   => '6.64',
7654             'ExtUtils::MM_MacOS'    => '6.64',
7655             'ExtUtils::MM_NW5'      => '6.64',
7656             'ExtUtils::MM_OS2'      => '6.64',
7657             'ExtUtils::MM_QNX'      => '6.64',
7658             'ExtUtils::MM_UWIN'     => '6.64',
7659             'ExtUtils::MM_Unix'     => '6.64',
7660             'ExtUtils::MM_VMS'      => '6.64',
7661             'ExtUtils::MM_VOS'      => '6.64',
7662             'ExtUtils::MM_Win32'    => '6.64',
7663             'ExtUtils::MM_Win95'    => '6.64',
7664             'ExtUtils::MY'          => '6.64',
7665             'ExtUtils::MakeMaker'   => '6.64',
7666             'ExtUtils::MakeMaker::Config'=> '6.64',
7667             'ExtUtils::Mkbootstrap' => '6.64',
7668             'ExtUtils::Mksymlists'  => '6.64',
7669             'ExtUtils::testlib'     => '6.64',
7670             'File::DosGlob'         => '1.09',
7671             'File::Glob'            => '1.19',
7672             'GDBM_File'             => '1.15',
7673             'IO::Compress::Adapter::Bzip2'=> '2.059',
7674             'IO::Compress::Adapter::Deflate'=> '2.059',
7675             'IO::Compress::Adapter::Identity'=> '2.059',
7676             'IO::Compress::Base'    => '2.059',
7677             'IO::Compress::Base::Common'=> '2.059',
7678             'IO::Compress::Bzip2'   => '2.059',
7679             'IO::Compress::Deflate' => '2.059',
7680             'IO::Compress::Gzip'    => '2.059',
7681             'IO::Compress::Gzip::Constants'=> '2.059',
7682             'IO::Compress::RawDeflate'=> '2.059',
7683             'IO::Compress::Zip'     => '2.059',
7684             'IO::Compress::Zip::Constants'=> '2.059',
7685             'IO::Compress::Zlib::Constants'=> '2.059',
7686             'IO::Compress::Zlib::Extra'=> '2.059',
7687             'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7688             'IO::Uncompress::Adapter::Identity'=> '2.059',
7689             'IO::Uncompress::Adapter::Inflate'=> '2.059',
7690             'IO::Uncompress::AnyInflate'=> '2.059',
7691             'IO::Uncompress::AnyUncompress'=> '2.059',
7692             'IO::Uncompress::Base'  => '2.059',
7693             'IO::Uncompress::Bunzip2'=> '2.059',
7694             'IO::Uncompress::Gunzip'=> '2.059',
7695             'IO::Uncompress::Inflate'=> '2.059',
7696             'IO::Uncompress::RawInflate'=> '2.059',
7697             'IO::Uncompress::Unzip' => '2.059',
7698             'List::Util'            => '1.26',
7699             'List::Util::XS'        => '1.26',
7700             'Locale::Codes'         => '3.24',
7701             'Locale::Codes::Constants'=> '3.24',
7702             'Locale::Codes::Country'=> '3.24',
7703             'Locale::Codes::Country_Codes'=> '3.24',
7704             'Locale::Codes::Country_Retired'=> '3.24',
7705             'Locale::Codes::Currency'=> '3.24',
7706             'Locale::Codes::Currency_Codes'=> '3.24',
7707             'Locale::Codes::Currency_Retired'=> '3.24',
7708             'Locale::Codes::LangExt'=> '3.24',
7709             'Locale::Codes::LangExt_Codes'=> '3.24',
7710             'Locale::Codes::LangExt_Retired'=> '3.24',
7711             'Locale::Codes::LangFam'=> '3.24',
7712             'Locale::Codes::LangFam_Codes'=> '3.24',
7713             'Locale::Codes::LangFam_Retired'=> '3.24',
7714             'Locale::Codes::LangVar'=> '3.24',
7715             'Locale::Codes::LangVar_Codes'=> '3.24',
7716             'Locale::Codes::LangVar_Retired'=> '3.24',
7717             'Locale::Codes::Language'=> '3.24',
7718             'Locale::Codes::Language_Codes'=> '3.24',
7719             'Locale::Codes::Language_Retired'=> '3.24',
7720             'Locale::Codes::Script' => '3.24',
7721             'Locale::Codes::Script_Codes'=> '3.24',
7722             'Locale::Codes::Script_Retired'=> '3.24',
7723             'Locale::Country'       => '3.24',
7724             'Locale::Currency'      => '3.24',
7725             'Locale::Language'      => '3.24',
7726             'Locale::Maketext'      => '1.23',
7727             'Locale::Script'        => '3.24',
7728             'Module::CoreList'      => '2.79',
7729             'Module::CoreList::TieHashDelta'=> '2.79',
7730             'POSIX'                 => '1.32',
7731             'Scalar::Util'          => '1.26',
7732             'Socket'                => '2.006_001',
7733             'Storable'              => '2.40',
7734             'Term::ReadLine'        => '1.11',
7735             'Unicode::Collate'      => '0.96',
7736             'Unicode::Collate::CJK::Stroke'=> '0.94',
7737             'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7738             'Unicode::Collate::Locale'=> '0.96',
7739             'XS::APItest'           => '0.48',
7740             'XS::Typemap'           => '0.09',
7741             '_charnames'            => '1.34',
7742             'charnames'             => '1.34',
7743             'feature'               => '1.32',
7744             'mro'                   => '1.10',
7745             'sigtrap'               => '1.07',
7746             'sort'                  => '2.02',
7747         },
7748         removed => {
7749         }
7750     },
7751     5.017008 => {
7752         delta_from => 5.017007,
7753         changed => {
7754             'Archive::Extract'      => '0.62',
7755             'B'                     => '1.42',
7756             'B::Concise'            => '0.95',
7757             'Compress::Raw::Bzip2'  => '2.060',
7758             'Compress::Raw::Zlib'   => '2.060',
7759             'Compress::Zlib'        => '2.060',
7760             'Cwd'                   => '3.40',
7761             'Data::Dumper'          => '2.141',
7762             'Digest::SHA'           => '5.81',
7763             'ExtUtils::Install'     => '1.59',
7764             'File::Fetch'           => '0.38',
7765             'File::Path'            => '2.09',
7766             'File::Spec'            => '3.40',
7767             'File::Spec::Cygwin'    => '3.40',
7768             'File::Spec::Epoc'      => '3.40',
7769             'File::Spec::Functions' => '3.40',
7770             'File::Spec::Mac'       => '3.40',
7771             'File::Spec::OS2'       => '3.40',
7772             'File::Spec::Unix'      => '3.40',
7773             'File::Spec::VMS'       => '3.40',
7774             'File::Spec::Win32'     => '3.40',
7775             'HTTP::Tiny'            => '0.025',
7776             'Hash::Util'            => '0.14',
7777             'I18N::LangTags'        => '0.39',
7778             'I18N::LangTags::List'  => '0.39',
7779             'I18N::Langinfo'        => '0.09',
7780             'IO'                    => '1.26',
7781             'IO::Compress::Adapter::Bzip2'=> '2.060',
7782             'IO::Compress::Adapter::Deflate'=> '2.060',
7783             'IO::Compress::Adapter::Identity'=> '2.060',
7784             'IO::Compress::Base'    => '2.060',
7785             'IO::Compress::Base::Common'=> '2.060',
7786             'IO::Compress::Bzip2'   => '2.060',
7787             'IO::Compress::Deflate' => '2.060',
7788             'IO::Compress::Gzip'    => '2.060',
7789             'IO::Compress::Gzip::Constants'=> '2.060',
7790             'IO::Compress::RawDeflate'=> '2.060',
7791             'IO::Compress::Zip'     => '2.060',
7792             'IO::Compress::Zip::Constants'=> '2.060',
7793             'IO::Compress::Zlib::Constants'=> '2.060',
7794             'IO::Compress::Zlib::Extra'=> '2.060',
7795             'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7796             'IO::Uncompress::Adapter::Identity'=> '2.060',
7797             'IO::Uncompress::Adapter::Inflate'=> '2.060',
7798             'IO::Uncompress::AnyInflate'=> '2.060',
7799             'IO::Uncompress::AnyUncompress'=> '2.060',
7800             'IO::Uncompress::Base'  => '2.060',
7801             'IO::Uncompress::Bunzip2'=> '2.060',
7802             'IO::Uncompress::Gunzip'=> '2.060',
7803             'IO::Uncompress::Inflate'=> '2.060',
7804             'IO::Uncompress::RawInflate'=> '2.060',
7805             'IO::Uncompress::Unzip' => '2.060',
7806             'List::Util'            => '1.27',
7807             'List::Util::XS'        => '1.27',
7808             'Module::CoreList'      => '2.80',
7809             'Module::CoreList::TieHashDelta'=> '2.80',
7810             'Pod::Html'             => '1.17',
7811             'Pod::LaTeX'            => '0.61',
7812             'Pod::Man'              => '2.27',
7813             'Pod::Text'             => '3.17',
7814             'Pod::Text::Color'      => '2.07',
7815             'Pod::Text::Overstrike' => '2.05',
7816             'Pod::Text::Termcap'    => '2.07',
7817             'Safe'                  => '2.34',
7818             'Scalar::Util'          => '1.27',
7819             'Socket'                => '2.009',
7820             'Term::ANSIColor'       => '4.02',
7821             'Test'                  => '1.26',
7822             'Unicode::Collate'      => '0.97',
7823             'XS::APItest'           => '0.51',
7824             'XS::Typemap'           => '0.10',
7825             '_charnames'            => '1.35',
7826             'charnames'             => '1.35',
7827             'constant'              => '1.25',
7828             'diagnostics'           => '1.31',
7829             'threads::shared'       => '1.43',
7830             'warnings'              => '1.16',
7831         },
7832         removed => {
7833         }
7834     },
7835     5.017009 => {
7836         delta_from => 5.017008,
7837         changed => {
7838             'App::Cpan'             => '1.60_02',
7839             'App::Prove'            => '3.26',
7840             'App::Prove::State'     => '3.26',
7841             'App::Prove::State::Result'=> '3.26',
7842             'App::Prove::State::Result::Test'=> '3.26',
7843             'Archive::Extract'      => '0.68',
7844             'Attribute::Handlers'   => '0.94',
7845             'B::Lint'               => '1.17',
7846             'B::Lint::Debug'        => '1.17',
7847             'Benchmark'             => '1.14',
7848             'CPAN'                  => '2.00',
7849             'CPAN::Distribution'    => '2.00',
7850             'CPAN::FirstTime'       => '5.5304',
7851             'CPAN::Nox'             => '5.5001',
7852             'CPANPLUS'              => '0.9135',
7853             'CPANPLUS::Backend'     => '0.9135',
7854             'CPANPLUS::Backend::RV' => '0.9135',
7855             'CPANPLUS::Config'      => '0.9135',
7856             'CPANPLUS::Config::HomeEnv'=> '0.9135',
7857             'CPANPLUS::Configure'   => '0.9135',
7858             'CPANPLUS::Configure::Setup'=> '0.9135',
7859             'CPANPLUS::Dist'        => '0.9135',
7860             'CPANPLUS::Dist::Autobundle'=> '0.9135',
7861             'CPANPLUS::Dist::Base'  => '0.9135',
7862             'CPANPLUS::Dist::Build' => '0.70',
7863             'CPANPLUS::Dist::Build::Constants'=> '0.70',
7864             'CPANPLUS::Dist::MM'    => '0.9135',
7865             'CPANPLUS::Dist::Sample'=> '0.9135',
7866             'CPANPLUS::Error'       => '0.9135',
7867             'CPANPLUS::Internals'   => '0.9135',
7868             'CPANPLUS::Internals::Constants'=> '0.9135',
7869             'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7870             'CPANPLUS::Internals::Extract'=> '0.9135',
7871             'CPANPLUS::Internals::Fetch'=> '0.9135',
7872             'CPANPLUS::Internals::Report'=> '0.9135',
7873             'CPANPLUS::Internals::Search'=> '0.9135',
7874             'CPANPLUS::Internals::Source'=> '0.9135',
7875             'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7876             'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7877             'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7878             'CPANPLUS::Internals::Utils'=> '0.9135',
7879             'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7880             'CPANPLUS::Module'      => '0.9135',
7881             'CPANPLUS::Module::Author'=> '0.9135',
7882             'CPANPLUS::Module::Author::Fake'=> '0.9135',
7883             'CPANPLUS::Module::Checksums'=> '0.9135',
7884             'CPANPLUS::Module::Fake'=> '0.9135',
7885             'CPANPLUS::Module::Signature'=> '0.9135',
7886             'CPANPLUS::Selfupdate'  => '0.9135',
7887             'CPANPLUS::Shell'       => '0.9135',
7888             'CPANPLUS::Shell::Classic'=> '0.9135',
7889             'CPANPLUS::Shell::Default'=> '0.9135',
7890             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7891             'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7892             'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
7893             'Config'                => '5.017009',
7894             'Config::Perl::V'       => '0.17',
7895             'DBM_Filter'            => '0.05',
7896             'Data::Dumper'          => '2.142',
7897             'Digest::SHA'           => '5.82',
7898             'Encode'                => '2.48',
7899             'ExtUtils::Installed'   => '1.999003',
7900             'ExtUtils::Manifest'    => '1.63',
7901             'ExtUtils::ParseXS::Utilities'=> '3.19',
7902             'ExtUtils::Typemaps'    => '3.19',
7903             'File::CheckTree'       => '4.42',
7904             'File::DosGlob'         => '1.10',
7905             'File::Temp'            => '0.22_90',
7906             'Filter::Simple'        => '0.89',
7907             'IO'                    => '1.27',
7908             'Log::Message'          => '0.06',
7909             'Log::Message::Config'  => '0.06',
7910             'Log::Message::Handlers'=> '0.06',
7911             'Log::Message::Item'    => '0.06',
7912             'Log::Message::Simple'  => '0.10',
7913             'Math::BigInt'          => '1.999',
7914             'Module::CoreList'      => '2.82',
7915             'Module::CoreList::TieHashDelta'=> '2.82',
7916             'Module::Load'          => '0.24',
7917             'Module::Pluggable'     => '4.6',
7918             'Module::Pluggable::Object'=> '4.6',
7919             'OS2::DLL'              => '1.05',
7920             'OS2::ExtAttr'          => '0.03',
7921             'OS2::Process'          => '1.08',
7922             'Object::Accessor'      => '0.46',
7923             'PerlIO::scalar'        => '0.16',
7924             'Pod::Checker'          => '1.60',
7925             'Pod::Find'             => '1.60',
7926             'Pod::Html'             => '1.18',
7927             'Pod::InputObjects'     => '1.60',
7928             'Pod::ParseUtils'       => '1.60',
7929             'Pod::Parser'           => '1.60',
7930             'Pod::Perldoc'          => '3.19',
7931             'Pod::Perldoc::BaseTo'  => '3.19',
7932             'Pod::Perldoc::GetOptsOO'=> '3.19',
7933             'Pod::Perldoc::ToANSI'  => '3.19',
7934             'Pod::Perldoc::ToChecker'=> '3.19',
7935             'Pod::Perldoc::ToMan'   => '3.19',
7936             'Pod::Perldoc::ToNroff' => '3.19',
7937             'Pod::Perldoc::ToPod'   => '3.19',
7938             'Pod::Perldoc::ToRtf'   => '3.19',
7939             'Pod::Perldoc::ToTerm'  => '3.19',
7940             'Pod::Perldoc::ToText'  => '3.19',
7941             'Pod::Perldoc::ToTk'    => '3.19',
7942             'Pod::Perldoc::ToXml'   => '3.19',
7943             'Pod::PlainText'        => '2.06',
7944             'Pod::Select'           => '1.60',
7945             'Pod::Usage'            => '1.61',
7946             'SelfLoader'            => '1.21',
7947             'TAP::Base'             => '3.26',
7948             'TAP::Formatter::Base'  => '3.26',
7949             'TAP::Formatter::Color' => '3.26',
7950             'TAP::Formatter::Console'=> '3.26',
7951             'TAP::Formatter::Console::ParallelSession'=> '3.26',
7952             'TAP::Formatter::Console::Session'=> '3.26',
7953             'TAP::Formatter::File'  => '3.26',
7954             'TAP::Formatter::File::Session'=> '3.26',
7955             'TAP::Formatter::Session'=> '3.26',
7956             'TAP::Harness'          => '3.26',
7957             'TAP::Object'           => '3.26',
7958             'TAP::Parser'           => '3.26',
7959             'TAP::Parser::Aggregator'=> '3.26',
7960             'TAP::Parser::Grammar'  => '3.26',
7961             'TAP::Parser::Iterator' => '3.26',
7962             'TAP::Parser::Iterator::Array'=> '3.26',
7963             'TAP::Parser::Iterator::Process'=> '3.26',
7964             'TAP::Parser::Iterator::Stream'=> '3.26',
7965             'TAP::Parser::IteratorFactory'=> '3.26',
7966             'TAP::Parser::Multiplexer'=> '3.26',
7967             'TAP::Parser::Result'   => '3.26',
7968             'TAP::Parser::Result::Bailout'=> '3.26',
7969             'TAP::Parser::Result::Comment'=> '3.26',
7970             'TAP::Parser::Result::Plan'=> '3.26',
7971             'TAP::Parser::Result::Pragma'=> '3.26',
7972             'TAP::Parser::Result::Test'=> '3.26',
7973             'TAP::Parser::Result::Unknown'=> '3.26',
7974             'TAP::Parser::Result::Version'=> '3.26',
7975             'TAP::Parser::Result::YAML'=> '3.26',
7976             'TAP::Parser::ResultFactory'=> '3.26',
7977             'TAP::Parser::Scheduler'=> '3.26',
7978             'TAP::Parser::Scheduler::Job'=> '3.26',
7979             'TAP::Parser::Scheduler::Spinner'=> '3.26',
7980             'TAP::Parser::Source'   => '3.26',
7981             'TAP::Parser::SourceHandler'=> '3.26',
7982             'TAP::Parser::SourceHandler::Executable'=> '3.26',
7983             'TAP::Parser::SourceHandler::File'=> '3.26',
7984             'TAP::Parser::SourceHandler::Handle'=> '3.26',
7985             'TAP::Parser::SourceHandler::Perl'=> '3.26',
7986             'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
7987             'TAP::Parser::Utils'    => '3.26',
7988             'TAP::Parser::YAMLish::Reader'=> '3.26',
7989             'TAP::Parser::YAMLish::Writer'=> '3.26',
7990             'Term::UI'              => '0.34',
7991             'Test::Harness'         => '3.26',
7992             'Text::Soundex'         => '3.04',
7993             'Thread::Queue'         => '3.02',
7994             'Unicode::UCD'          => '0.50',
7995             'Win32'                 => '0.46',
7996             'Win32API::File'        => '0.1201',
7997             '_charnames'            => '1.36',
7998             'arybase'               => '0.06',
7999             'bigint'                => '0.32',
8000             'bignum'                => '0.32',
8001             'charnames'             => '1.36',
8002             'filetest'              => '1.03',
8003             'locale'                => '1.02',
8004             'overload'              => '1.21',
8005             'warnings'              => '1.17',
8006         },
8007         removed => {
8008         }
8009     },
8010     5.017010 => {
8011         delta_from => 5.017009,
8012         changed => {
8013             'Benchmark'             => '1.15',
8014             'Config'                => '5.017009',
8015             'Data::Dumper'          => '2.145',
8016             'Digest::SHA'           => '5.84',
8017             'Encode'                => '2.49',
8018             'ExtUtils::Command::MM' => '6.65_01',
8019             'ExtUtils::Liblist'     => '6.65_01',
8020             'ExtUtils::Liblist::Kid'=> '6.65_01',
8021             'ExtUtils::MM'          => '6.65_01',
8022             'ExtUtils::MM_AIX'      => '6.65_01',
8023             'ExtUtils::MM_Any'      => '6.65_01',
8024             'ExtUtils::MM_BeOS'     => '6.65_01',
8025             'ExtUtils::MM_Cygwin'   => '6.65_01',
8026             'ExtUtils::MM_DOS'      => '6.65_01',
8027             'ExtUtils::MM_Darwin'   => '6.65_01',
8028             'ExtUtils::MM_MacOS'    => '6.65_01',
8029             'ExtUtils::MM_NW5'      => '6.65_01',
8030             'ExtUtils::MM_OS2'      => '6.65_01',
8031             'ExtUtils::MM_QNX'      => '6.65_01',
8032             'ExtUtils::MM_UWIN'     => '6.65_01',
8033             'ExtUtils::MM_Unix'     => '6.65_01',
8034             'ExtUtils::MM_VMS'      => '6.65_01',
8035             'ExtUtils::MM_VOS'      => '6.65_01',
8036             'ExtUtils::MM_Win32'    => '6.65_01',
8037             'ExtUtils::MM_Win95'    => '6.65_01',
8038             'ExtUtils::MY'          => '6.65_01',
8039             'ExtUtils::MakeMaker'   => '6.65_01',
8040             'ExtUtils::MakeMaker::Config'=> '6.65_01',
8041             'ExtUtils::Mkbootstrap' => '6.65_01',
8042             'ExtUtils::Mksymlists'  => '6.65_01',
8043             'ExtUtils::testlib'     => '6.65_01',
8044             'File::Copy'            => '2.26',
8045             'File::Temp'            => '0.23',
8046             'Getopt::Long'          => '2.39',
8047             'Hash::Util'            => '0.15',
8048             'I18N::Langinfo'        => '0.10',
8049             'IPC::Cmd'              => '0.80',
8050             'JSON::PP'              => '2.27202',
8051             'Locale::Codes'         => '3.25',
8052             'Locale::Codes::Constants'=> '3.25',
8053             'Locale::Codes::Country'=> '3.25',
8054             'Locale::Codes::Country_Codes'=> '3.25',
8055             'Locale::Codes::Country_Retired'=> '3.25',
8056             'Locale::Codes::Currency'=> '3.25',
8057             'Locale::Codes::Currency_Codes'=> '3.25',
8058             'Locale::Codes::Currency_Retired'=> '3.25',
8059             'Locale::Codes::LangExt'=> '3.25',
8060             'Locale::Codes::LangExt_Codes'=> '3.25',
8061             'Locale::Codes::LangExt_Retired'=> '3.25',
8062             'Locale::Codes::LangFam'=> '3.25',
8063             'Locale::Codes::LangFam_Codes'=> '3.25',
8064             'Locale::Codes::LangFam_Retired'=> '3.25',
8065             'Locale::Codes::LangVar'=> '3.25',
8066             'Locale::Codes::LangVar_Codes'=> '3.25',
8067             'Locale::Codes::LangVar_Retired'=> '3.25',
8068             'Locale::Codes::Language'=> '3.25',
8069             'Locale::Codes::Language_Codes'=> '3.25',
8070             'Locale::Codes::Language_Retired'=> '3.25',
8071             'Locale::Codes::Script' => '3.25',
8072             'Locale::Codes::Script_Codes'=> '3.25',
8073             'Locale::Codes::Script_Retired'=> '3.25',
8074             'Locale::Country'       => '3.25',
8075             'Locale::Currency'      => '3.25',
8076             'Locale::Language'      => '3.25',
8077             'Locale::Script'        => '3.25',
8078             'Math::BigFloat'        => '1.998',
8079             'Math::BigFloat::Trace' => '0.32',
8080             'Math::BigInt'          => '1.9991',
8081             'Math::BigInt::CalcEmu' => '1.998',
8082             'Math::BigInt::Trace'   => '0.32',
8083             'Math::BigRat'          => '0.2604',
8084             'Module::CoreList'      => '2.84',
8085             'Module::CoreList::TieHashDelta'=> '2.84',
8086             'Module::Pluggable'     => '4.7',
8087             'Net::Ping'             => '2.41',
8088             'Perl::OSType'          => '1.003',
8089             'Pod::Simple'           => '3.26',
8090             'Pod::Simple::BlackBox' => '3.26',
8091             'Pod::Simple::Checker'  => '3.26',
8092             'Pod::Simple::Debug'    => '3.26',
8093             'Pod::Simple::DumpAsText'=> '3.26',
8094             'Pod::Simple::DumpAsXML'=> '3.26',
8095             'Pod::Simple::HTML'     => '3.26',
8096             'Pod::Simple::HTMLBatch'=> '3.26',
8097             'Pod::Simple::LinkSection'=> '3.26',
8098             'Pod::Simple::Methody'  => '3.26',
8099             'Pod::Simple::Progress' => '3.26',
8100             'Pod::Simple::PullParser'=> '3.26',
8101             'Pod::Simple::PullParserEndToken'=> '3.26',
8102             'Pod::Simple::PullParserStartToken'=> '3.26',
8103             'Pod::Simple::PullParserTextToken'=> '3.26',
8104             'Pod::Simple::PullParserToken'=> '3.26',
8105             'Pod::Simple::RTF'      => '3.26',
8106             'Pod::Simple::Search'   => '3.26',
8107             'Pod::Simple::SimpleTree'=> '3.26',
8108             'Pod::Simple::Text'     => '3.26',
8109             'Pod::Simple::TextContent'=> '3.26',
8110             'Pod::Simple::TiedOutFH'=> '3.26',
8111             'Pod::Simple::Transcode'=> '3.26',
8112             'Pod::Simple::TranscodeDumb'=> '3.26',
8113             'Pod::Simple::TranscodeSmart'=> '3.26',
8114             'Pod::Simple::XHTML'    => '3.26',
8115             'Pod::Simple::XMLOutStream'=> '3.26',
8116             'Safe'                  => '2.35',
8117             'Term::ReadLine'        => '1.12',
8118             'Text::ParseWords'      => '3.28',
8119             'Tie::File'             => '0.99',
8120             'Unicode::UCD'          => '0.51',
8121             'Win32'                 => '0.47',
8122             'bigint'                => '0.33',
8123             'bignum'                => '0.33',
8124             'bigrat'                => '0.33',
8125             'constant'              => '1.27',
8126             'perlfaq'               => '5.0150042',
8127             'version'               => '0.9902',
8128         },
8129         removed => {
8130         }
8131     },
8132     5.017011 => {
8133         delta_from => 5.017010,
8134         changed => {
8135             'App::Cpan'             => '1.61',
8136             'B::Deparse'            => '1.20',
8137             'Config'                => '5.017009',
8138             'Exporter'              => '5.68',
8139             'Exporter::Heavy'       => '5.68',
8140             'ExtUtils::CBuilder'    => '0.280210',
8141             'ExtUtils::Command::MM' => '6.66',
8142             'ExtUtils::Liblist'     => '6.66',
8143             'ExtUtils::Liblist::Kid'=> '6.66',
8144             'ExtUtils::MM'          => '6.66',
8145             'ExtUtils::MM_AIX'      => '6.66',
8146             'ExtUtils::MM_Any'      => '6.66',
8147             'ExtUtils::MM_BeOS'     => '6.66',
8148             'ExtUtils::MM_Cygwin'   => '6.66',
8149             'ExtUtils::MM_DOS'      => '6.66',
8150             'ExtUtils::MM_Darwin'   => '6.66',
8151             'ExtUtils::MM_MacOS'    => '6.66',
8152             'ExtUtils::MM_NW5'      => '6.66',
8153             'ExtUtils::MM_OS2'      => '6.66',
8154             'ExtUtils::MM_QNX'      => '6.66',
8155             'ExtUtils::MM_UWIN'     => '6.66',
8156             'ExtUtils::MM_Unix'     => '6.66',
8157             'ExtUtils::MM_VMS'      => '6.66',
8158             'ExtUtils::MM_VOS'      => '6.66',
8159             'ExtUtils::MM_Win32'    => '6.66',
8160             'ExtUtils::MM_Win95'    => '6.66',
8161             'ExtUtils::MY'          => '6.66',
8162             'ExtUtils::MakeMaker'   => '6.66',
8163             'ExtUtils::MakeMaker::Config'=> '6.66',
8164             'ExtUtils::Mkbootstrap' => '6.66',
8165             'ExtUtils::Mksymlists'  => '6.66',
8166             'ExtUtils::testlib'     => '6.66',
8167             'File::Glob'            => '1.20',
8168             'IO'                    => '1.28',
8169             'Module::CoreList'      => '2.87',
8170             'Module::CoreList::TieHashDelta'=> '2.87',
8171             'Storable'              => '2.41',
8172             'bigint'                => '0.34',
8173             'mro'                   => '1.11',
8174             'overload'              => '1.22',
8175             'warnings'              => '1.18',
8176         },
8177         removed => {
8178         }
8179     },
8180     5.018000 => {
8181         delta_from => 5.017011,
8182         changed => {
8183             'Carp'                  => '1.29',
8184             'Carp::Heavy'           => '1.29',
8185             'Config'                => '5.018000',
8186             'Hash::Util'            => '0.16',
8187             'IO::Handle'            => '1.34',
8188             'IO::Socket'            => '1.36',
8189             'Module::CoreList'      => '2.89',
8190             'Module::CoreList::TieHashDelta'=> '2.89',
8191             'Pod::Simple'           => '3.28',
8192             'Pod::Simple::BlackBox' => '3.28',
8193             'Pod::Simple::Checker'  => '3.28',
8194             'Pod::Simple::Debug'    => '3.28',
8195             'Pod::Simple::DumpAsText'=> '3.28',
8196             'Pod::Simple::DumpAsXML'=> '3.28',
8197             'Pod::Simple::HTML'     => '3.28',
8198             'Pod::Simple::HTMLBatch'=> '3.28',
8199             'Pod::Simple::LinkSection'=> '3.28',
8200             'Pod::Simple::Methody'  => '3.28',
8201             'Pod::Simple::Progress' => '3.28',
8202             'Pod::Simple::PullParser'=> '3.28',
8203             'Pod::Simple::PullParserEndToken'=> '3.28',
8204             'Pod::Simple::PullParserStartToken'=> '3.28',
8205             'Pod::Simple::PullParserTextToken'=> '3.28',
8206             'Pod::Simple::PullParserToken'=> '3.28',
8207             'Pod::Simple::RTF'      => '3.28',
8208             'Pod::Simple::Search'   => '3.28',
8209             'Pod::Simple::SimpleTree'=> '3.28',
8210             'Pod::Simple::Text'     => '3.28',
8211             'Pod::Simple::TextContent'=> '3.28',
8212             'Pod::Simple::TiedOutFH'=> '3.28',
8213             'Pod::Simple::Transcode'=> '3.28',
8214             'Pod::Simple::TranscodeDumb'=> '3.28',
8215             'Pod::Simple::TranscodeSmart'=> '3.28',
8216             'Pod::Simple::XHTML'    => '3.28',
8217             'Pod::Simple::XMLOutStream'=> '3.28',
8218         },
8219         removed => {
8220         }
8221     },
8222     5.018001 => {
8223         delta_from => 5.018000,
8224         changed => {
8225             'B'                     => '1.42_01',
8226             'Config'                => '5.018001',
8227             'Digest::SHA'           => '5.84_01',
8228             'Module::CoreList'      => '2.96',
8229             'Module::CoreList::TieHashDelta'=> '2.96',
8230             'Module::CoreList::Utils'=> '2.96',
8231         },
8232         removed => {
8233            'VMS::Filespec'         => 1,
8234         }
8235     },
8236     5.018002 => {
8237         delta_from => 5.018001,
8238         changed => {
8239             'B'                     => '1.42_02',
8240             'B::Concise'            => '0.95_01',
8241             'Config'                => '5.018002',
8242             'File::Glob'            => '1.20_01',
8243             'Module::CoreList'      => '3.03',
8244             'Module::CoreList::TieHashDelta'=> '3.03',
8245             'Module::CoreList::Utils'=> '3.03',
8246         },
8247     },
8248     5.018003 => {
8249         delta_from => 5.018002,
8250         changed => {
8251             'Config'                => '5.018003',
8252             'Digest::SHA'           => '5.84_02',
8253             'Module::CoreList'      => '3.12',
8254             'Module::CoreList::TieHashDelta'=> '3.12',
8255             'Module::CoreList::Utils'=> '3.12',
8256         },
8257     },
8258     5.018004 => {
8259         delta_from => 5.018003,
8260         changed => {
8261             'Config'                => '5.018004',
8262             'Module::CoreList'      => '3.13',
8263             'Module::CoreList::TieHashDelta'=> '3.13',
8264             'Module::CoreList::Utils'=> '3.13',
8265         },
8266     },
8267     5.019000 => {
8268         delta_from => 5.018000,
8269         changed => {
8270             'Config'                => '5.019000',
8271             'Getopt::Std'           => '1.08',
8272             'Module::CoreList'      => '2.91',
8273             'Module::CoreList::TieHashDelta'=> '2.91',
8274             'Storable'              => '2.42',
8275             'feature'               => '1.33',
8276             'utf8'                  => '1.11',
8277         },
8278         removed => {
8279            'Archive::Extract'      => 1,
8280            'B::Lint'               => 1,
8281            'B::Lint::Debug'        => 1,
8282            'CPANPLUS'              => 1,
8283            'CPANPLUS::Backend'     => 1,
8284            'CPANPLUS::Backend::RV' => 1,
8285            'CPANPLUS::Config'      => 1,
8286            'CPANPLUS::Config::HomeEnv'=> 1,
8287            'CPANPLUS::Configure'   => 1,
8288            'CPANPLUS::Configure::Setup'=> 1,
8289            'CPANPLUS::Dist'        => 1,
8290            'CPANPLUS::Dist::Autobundle'=> 1,
8291            'CPANPLUS::Dist::Base'  => 1,
8292            'CPANPLUS::Dist::Build' => 1,
8293            'CPANPLUS::Dist::Build::Constants'=> 1,
8294            'CPANPLUS::Dist::MM'    => 1,
8295            'CPANPLUS::Dist::Sample'=> 1,
8296            'CPANPLUS::Error'       => 1,
8297            'CPANPLUS::Internals'   => 1,
8298            'CPANPLUS::Internals::Constants'=> 1,
8299            'CPANPLUS::Internals::Constants::Report'=> 1,
8300            'CPANPLUS::Internals::Extract'=> 1,
8301            'CPANPLUS::Internals::Fetch'=> 1,
8302            'CPANPLUS::Internals::Report'=> 1,
8303            'CPANPLUS::Internals::Search'=> 1,
8304            'CPANPLUS::Internals::Source'=> 1,
8305            'CPANPLUS::Internals::Source::Memory'=> 1,
8306            'CPANPLUS::Internals::Source::SQLite'=> 1,
8307            'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8308            'CPANPLUS::Internals::Utils'=> 1,
8309            'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8310            'CPANPLUS::Module'      => 1,
8311            'CPANPLUS::Module::Author'=> 1,
8312            'CPANPLUS::Module::Author::Fake'=> 1,
8313            'CPANPLUS::Module::Checksums'=> 1,
8314            'CPANPLUS::Module::Fake'=> 1,
8315            'CPANPLUS::Module::Signature'=> 1,
8316            'CPANPLUS::Selfupdate'  => 1,
8317            'CPANPLUS::Shell'       => 1,
8318            'CPANPLUS::Shell::Classic'=> 1,
8319            'CPANPLUS::Shell::Default'=> 1,
8320            'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8321            'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8322            'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8323            'Devel::InnerPackage'   => 1,
8324            'File::CheckTree'       => 1,
8325            'Log::Message'          => 1,
8326            'Log::Message::Config'  => 1,
8327            'Log::Message::Handlers'=> 1,
8328            'Log::Message::Item'    => 1,
8329            'Log::Message::Simple'  => 1,
8330            'Module::Pluggable'     => 1,
8331            'Module::Pluggable::Object'=> 1,
8332            'Object::Accessor'      => 1,
8333            'Pod::LaTeX'            => 1,
8334            'Term::UI'              => 1,
8335            'Term::UI::History'     => 1,
8336            'Text::Soundex'         => 1,
8337         }
8338     },
8339     5.019001 => {
8340         delta_from => 5.019000,
8341         changed => {
8342             'App::Prove'            => '3.28',
8343             'App::Prove::State'     => '3.28',
8344             'App::Prove::State::Result'=> '3.28',
8345             'App::Prove::State::Result::Test'=> '3.28',
8346             'Archive::Tar'          => '1.92',
8347             'Archive::Tar::Constant'=> '1.92',
8348             'Archive::Tar::File'    => '1.92',
8349             'Attribute::Handlers'   => '0.95',
8350             'B'                     => '1.43',
8351             'B::Concise'            => '0.96',
8352             'B::Deparse'            => '1.21',
8353             'B::Showlex'            => '1.04',
8354             'Benchmark'             => '1.16',
8355             'CPAN::Meta'            => '2.131560',
8356             'CPAN::Meta::Converter' => '2.131560',
8357             'CPAN::Meta::Feature'   => '2.131560',
8358             'CPAN::Meta::History'   => '2.131560',
8359             'CPAN::Meta::Prereqs'   => '2.131560',
8360             'CPAN::Meta::Spec'      => '2.131560',
8361             'CPAN::Meta::Validator' => '2.131560',
8362             'Carp'                  => '1.30',
8363             'Carp::Heavy'           => '1.30',
8364             'Compress::Raw::Bzip2'  => '2.061',
8365             'Compress::Raw::Zlib'   => '2.061',
8366             'Compress::Zlib'        => '2.061',
8367             'Config'                => '5.019001',
8368             'Config::Perl::V'       => '0.18',
8369             'Cwd'                   => '3.41',
8370             'DB'                    => '1.06',
8371             'DB_File'               => '1.828',
8372             'Data::Dumper'          => '2.146',
8373             'Encode'                => '2.51',
8374             'Encode::CN::HZ'        => '2.06',
8375             'Encode::GSM0338'       => '2.03',
8376             'Encode::Unicode::UTF7' => '2.07',
8377             'ExtUtils::CBuilder::Base'=> '0.280210',
8378             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8379             'ExtUtils::Command::MM' => '6.68',
8380             'ExtUtils::Install'     => '1.60',
8381             'ExtUtils::Liblist'     => '6.68',
8382             'ExtUtils::Liblist::Kid'=> '6.68',
8383             'ExtUtils::MM'          => '6.68',
8384             'ExtUtils::MM_AIX'      => '6.68',
8385             'ExtUtils::MM_Any'      => '6.68',
8386             'ExtUtils::MM_BeOS'     => '6.68',
8387             'ExtUtils::MM_Cygwin'   => '6.68',
8388             'ExtUtils::MM_DOS'      => '6.68',
8389             'ExtUtils::MM_Darwin'   => '6.68',
8390             'ExtUtils::MM_MacOS'    => '6.68',
8391             'ExtUtils::MM_NW5'      => '6.68',
8392             'ExtUtils::MM_OS2'      => '6.68',
8393             'ExtUtils::MM_QNX'      => '6.68',
8394             'ExtUtils::MM_UWIN'     => '6.68',
8395             'ExtUtils::MM_Unix'     => '6.68',
8396             'ExtUtils::MM_VMS'      => '6.68',
8397             'ExtUtils::MM_VOS'      => '6.68',
8398             'ExtUtils::MM_Win32'    => '6.68',
8399             'ExtUtils::MM_Win95'    => '6.68',
8400             'ExtUtils::MY'          => '6.68',
8401             'ExtUtils::MakeMaker'   => '6.68',
8402             'ExtUtils::MakeMaker::Config'=> '6.68',
8403             'ExtUtils::Mkbootstrap' => '6.68',
8404             'ExtUtils::Mksymlists'  => '6.68',
8405             'ExtUtils::ParseXS'     => '3.19',
8406             'ExtUtils::testlib'     => '6.68',
8407             'Fatal'                 => '2.19',
8408             'File::Copy'            => '2.27',
8409             'File::DosGlob'         => '1.11',
8410             'File::Fetch'           => '0.42',
8411             'File::Find'            => '1.24',
8412             'File::Spec'            => '3.41',
8413             'File::Spec::Cygwin'    => '3.41',
8414             'File::Spec::Epoc'      => '3.41',
8415             'File::Spec::Mac'       => '3.41',
8416             'File::Spec::OS2'       => '3.41',
8417             'File::Spec::Unix'      => '3.41',
8418             'File::Spec::VMS'       => '3.41',
8419             'File::Spec::Win32'     => '3.41',
8420             'File::Temp'            => '0.2301',
8421             'Filter::Simple'        => '0.90',
8422             'Filter::Util::Call'    => '1.49',
8423             'Getopt::Long'          => '2.4',
8424             'HTTP::Tiny'            => '0.031',
8425             'Hash::Util::FieldHash' => '1.11',
8426             'IO::Compress::Adapter::Bzip2'=> '2.061',
8427             'IO::Compress::Adapter::Deflate'=> '2.061',
8428             'IO::Compress::Adapter::Identity'=> '2.061',
8429             'IO::Compress::Base'    => '2.061',
8430             'IO::Compress::Base::Common'=> '2.061',
8431             'IO::Compress::Bzip2'   => '2.061',
8432             'IO::Compress::Deflate' => '2.061',
8433             'IO::Compress::Gzip'    => '2.061',
8434             'IO::Compress::Gzip::Constants'=> '2.061',
8435             'IO::Compress::RawDeflate'=> '2.061',
8436             'IO::Compress::Zip'     => '2.061',
8437             'IO::Compress::Zip::Constants'=> '2.061',
8438             'IO::Compress::Zlib::Constants'=> '2.061',
8439             'IO::Compress::Zlib::Extra'=> '2.061',
8440             'IO::Handle'            => '1.35',
8441             'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8442             'IO::Uncompress::Adapter::Identity'=> '2.061',
8443             'IO::Uncompress::Adapter::Inflate'=> '2.061',
8444             'IO::Uncompress::AnyInflate'=> '2.061',
8445             'IO::Uncompress::AnyUncompress'=> '2.061',
8446             'IO::Uncompress::Base'  => '2.061',
8447             'IO::Uncompress::Bunzip2'=> '2.061',
8448             'IO::Uncompress::Gunzip'=> '2.061',
8449             'IO::Uncompress::Inflate'=> '2.061',
8450             'IO::Uncompress::RawInflate'=> '2.061',
8451             'IO::Uncompress::Unzip' => '2.061',
8452             'IPC::Open3'            => '1.14',
8453             'Locale::Codes'         => '3.26',
8454             'Locale::Codes::Constants'=> '3.26',
8455             'Locale::Codes::Country'=> '3.26',
8456             'Locale::Codes::Country_Codes'=> '3.26',
8457             'Locale::Codes::Country_Retired'=> '3.26',
8458             'Locale::Codes::Currency'=> '3.26',
8459             'Locale::Codes::Currency_Codes'=> '3.26',
8460             'Locale::Codes::Currency_Retired'=> '3.26',
8461             'Locale::Codes::LangExt'=> '3.26',
8462             'Locale::Codes::LangExt_Codes'=> '3.26',
8463             'Locale::Codes::LangExt_Retired'=> '3.26',
8464             'Locale::Codes::LangFam'=> '3.26',
8465             'Locale::Codes::LangFam_Codes'=> '3.26',
8466             'Locale::Codes::LangFam_Retired'=> '3.26',
8467             'Locale::Codes::LangVar'=> '3.26',
8468             'Locale::Codes::LangVar_Codes'=> '3.26',
8469             'Locale::Codes::LangVar_Retired'=> '3.26',
8470             'Locale::Codes::Language'=> '3.26',
8471             'Locale::Codes::Language_Codes'=> '3.26',
8472             'Locale::Codes::Language_Retired'=> '3.26',
8473             'Locale::Codes::Script' => '3.26',
8474             'Locale::Codes::Script_Codes'=> '3.26',
8475             'Locale::Codes::Script_Retired'=> '3.26',
8476             'Locale::Country'       => '3.26',
8477             'Locale::Currency'      => '3.26',
8478             'Locale::Language'      => '3.26',
8479             'Locale::Maketext'      => '1.24',
8480             'Locale::Script'        => '3.26',
8481             'Math::BigFloat'        => '1.999',
8482             'Math::BigInt'          => '1.9992',
8483             'Math::BigInt::Calc'    => '1.998',
8484             'Math::BigInt::CalcEmu' => '1.9991',
8485             'Math::BigRat'          => '0.2606',
8486             'Module::Build'         => '0.4005',
8487             'Module::Build::Base'   => '0.4005',
8488             'Module::Build::Compat' => '0.4005',
8489             'Module::Build::Config' => '0.4005',
8490             'Module::Build::Cookbook'=> '0.4005',
8491             'Module::Build::Dumper' => '0.4005',
8492             'Module::Build::ModuleInfo'=> '0.4005',
8493             'Module::Build::Notes'  => '0.4005',
8494             'Module::Build::PPMMaker'=> '0.4005',
8495             'Module::Build::Platform::Amiga'=> '0.4005',
8496             'Module::Build::Platform::Default'=> '0.4005',
8497             'Module::Build::Platform::EBCDIC'=> '0.4005',
8498             'Module::Build::Platform::MPEiX'=> '0.4005',
8499             'Module::Build::Platform::MacOS'=> '0.4005',
8500             'Module::Build::Platform::RiscOS'=> '0.4005',
8501             'Module::Build::Platform::Unix'=> '0.4005',
8502             'Module::Build::Platform::VMS'=> '0.4005',
8503             'Module::Build::Platform::VOS'=> '0.4005',
8504             'Module::Build::Platform::Windows'=> '0.4005',
8505             'Module::Build::Platform::aix'=> '0.4005',
8506             'Module::Build::Platform::cygwin'=> '0.4005',
8507             'Module::Build::Platform::darwin'=> '0.4005',
8508             'Module::Build::Platform::os2'=> '0.4005',
8509             'Module::Build::PodParser'=> '0.4005',
8510             'Module::CoreList'      => '2.92',
8511             'Module::CoreList::TieHashDelta'=> '2.92',
8512             'Module::CoreList::Utils'=> '2.92',
8513             'Module::Metadata'      => '1.000014',
8514             'Net::Ping'             => '2.42',
8515             'OS2::Process'          => '1.09',
8516             'POSIX'                 => '1.33',
8517             'Pod::Find'             => '1.61',
8518             'Pod::Html'             => '1.19',
8519             'Pod::InputObjects'     => '1.61',
8520             'Pod::ParseUtils'       => '1.61',
8521             'Pod::Parser'           => '1.61',
8522             'Pod::Perldoc'          => '3.20',
8523             'Pod::Perldoc::BaseTo'  => '3.20',
8524             'Pod::Perldoc::GetOptsOO'=> '3.20',
8525             'Pod::Perldoc::ToANSI'  => '3.20',
8526             'Pod::Perldoc::ToChecker'=> '3.20',
8527             'Pod::Perldoc::ToMan'   => '3.20',
8528             'Pod::Perldoc::ToNroff' => '3.20',
8529             'Pod::Perldoc::ToPod'   => '3.20',
8530             'Pod::Perldoc::ToRtf'   => '3.20',
8531             'Pod::Perldoc::ToTerm'  => '3.20',
8532             'Pod::Perldoc::ToText'  => '3.20',
8533             'Pod::Perldoc::ToTk'    => '3.20',
8534             'Pod::Perldoc::ToXml'   => '3.20',
8535             'Pod::Select'           => '1.61',
8536             'Pod::Usage'            => '1.63',
8537             'Safe'                  => '2.36',
8538             'Storable'              => '2.43',
8539             'Sys::Hostname'         => '1.18',
8540             'Sys::Syslog'           => '0.33',
8541             'TAP::Base'             => '3.28',
8542             'TAP::Formatter::Base'  => '3.28',
8543             'TAP::Formatter::Color' => '3.28',
8544             'TAP::Formatter::Console'=> '3.28',
8545             'TAP::Formatter::Console::ParallelSession'=> '3.28',
8546             'TAP::Formatter::Console::Session'=> '3.28',
8547             'TAP::Formatter::File'  => '3.28',
8548             'TAP::Formatter::File::Session'=> '3.28',
8549             'TAP::Formatter::Session'=> '3.28',
8550             'TAP::Harness'          => '3.28',
8551             'TAP::Object'           => '3.28',
8552             'TAP::Parser'           => '3.28',
8553             'TAP::Parser::Aggregator'=> '3.28',
8554             'TAP::Parser::Grammar'  => '3.28',
8555             'TAP::Parser::Iterator' => '3.28',
8556             'TAP::Parser::Iterator::Array'=> '3.28',
8557             'TAP::Parser::Iterator::Process'=> '3.28',
8558             'TAP::Parser::Iterator::Stream'=> '3.28',
8559             'TAP::Parser::IteratorFactory'=> '3.28',
8560             'TAP::Parser::Multiplexer'=> '3.28',
8561             'TAP::Parser::Result'   => '3.28',
8562             'TAP::Parser::Result::Bailout'=> '3.28',
8563             'TAP::Parser::Result::Comment'=> '3.28',
8564             'TAP::Parser::Result::Plan'=> '3.28',
8565             'TAP::Parser::Result::Pragma'=> '3.28',
8566             'TAP::Parser::Result::Test'=> '3.28',
8567             'TAP::Parser::Result::Unknown'=> '3.28',
8568             'TAP::Parser::Result::Version'=> '3.28',
8569             'TAP::Parser::Result::YAML'=> '3.28',
8570             'TAP::Parser::ResultFactory'=> '3.28',
8571             'TAP::Parser::Scheduler'=> '3.28',
8572             'TAP::Parser::Scheduler::Job'=> '3.28',
8573             'TAP::Parser::Scheduler::Spinner'=> '3.28',
8574             'TAP::Parser::Source'   => '3.28',
8575             'TAP::Parser::SourceHandler'=> '3.28',
8576             'TAP::Parser::SourceHandler::Executable'=> '3.28',
8577             'TAP::Parser::SourceHandler::File'=> '3.28',
8578             'TAP::Parser::SourceHandler::Handle'=> '3.28',
8579             'TAP::Parser::SourceHandler::Perl'=> '3.28',
8580             'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8581             'TAP::Parser::Utils'    => '3.28',
8582             'TAP::Parser::YAMLish::Reader'=> '3.28',
8583             'TAP::Parser::YAMLish::Writer'=> '3.28',
8584             'Term::ReadLine'        => '1.13',
8585             'Test::Harness'         => '3.28',
8586             'Text::Tabs'            => '2013.0523',
8587             'Text::Wrap'            => '2013.0523',
8588             'Thread'                => '3.04',
8589             'Tie::File'             => '1.00',
8590             'Time::Piece'           => '1.2002',
8591             'Unicode::Collate'      => '0.98',
8592             'Unicode::UCD'          => '0.53',
8593             'XS::APItest'           => '0.53',
8594             '_charnames'            => '1.37',
8595             'autodie'               => '2.19',
8596             'autodie::exception'    => '2.19',
8597             'autodie::exception::system'=> '2.19',
8598             'autodie::hints'        => '2.19',
8599             'autodie::skip'         => '2.19',
8600             'bigint'                => '0.35',
8601             'charnames'             => '1.38',
8602             'encoding'              => '2.12',
8603             'inc::latest'           => '0.4005',
8604             'mro'                   => '1.12',
8605             'perlfaq'               => '5.0150043',
8606             're'                    => '0.25',
8607             'threads'               => '1.87',
8608             'threads::shared'       => '1.44',
8609             'utf8'                  => '1.12',
8610         },
8611         removed => {
8612         }
8613     },
8614     5.019002 => {
8615         delta_from => 5.019001,
8616         changed => {
8617             'B'                     => '1.44',
8618             'B::Concise'            => '0.98',
8619             'B::Deparse'            => '1.22',
8620             'Benchmark'             => '1.17',
8621             'Class::Struct'         => '0.65',
8622             'Config'                => '5.019002',
8623             'DB'                    => '1.07',
8624             'DBM_Filter'            => '0.06',
8625             'DBM_Filter::compress'  => '0.03',
8626             'DBM_Filter::encode'    => '0.03',
8627             'DBM_Filter::int32'     => '0.03',
8628             'DBM_Filter::null'      => '0.03',
8629             'DBM_Filter::utf8'      => '0.03',
8630             'DB_File'               => '1.829',
8631             'Data::Dumper'          => '2.147',
8632             'Devel::Peek'           => '1.12',
8633             'Digest::MD5'           => '2.53',
8634             'Digest::SHA'           => '5.85',
8635             'English'               => '1.07',
8636             'Errno'                 => '1.19',
8637             'ExtUtils::Embed'       => '1.31',
8638             'ExtUtils::Miniperl'    => '1',
8639             'ExtUtils::ParseXS'     => '3.21',
8640             'ExtUtils::ParseXS::Constants'=> '3.21',
8641             'ExtUtils::ParseXS::CountLines'=> '3.21',
8642             'ExtUtils::ParseXS::Eval'=> '3.19',
8643             'ExtUtils::ParseXS::Utilities'=> '3.21',
8644             'ExtUtils::Typemaps'    => '3.21',
8645             'ExtUtils::Typemaps::Cmd'=> '3.21',
8646             'ExtUtils::Typemaps::InputMap'=> '3.21',
8647             'ExtUtils::Typemaps::OutputMap'=> '3.21',
8648             'ExtUtils::Typemaps::Type'=> '3.21',
8649             'ExtUtils::XSSymSet'    => '1.3',
8650             'Fatal'                 => '2.20',
8651             'File::Basename'        => '2.85',
8652             'File::Spec::VMS'       => '3.43',
8653             'File::Spec::Win32'     => '3.42',
8654             'Getopt::Long'          => '2.41',
8655             'Getopt::Std'           => '1.09',
8656             'HTTP::Tiny'            => '0.034',
8657             'Hash::Util::FieldHash' => '1.12',
8658             'I18N::Langinfo'        => '0.11',
8659             'IO::Socket::INET'      => '1.34',
8660             'IO::Socket::UNIX'      => '1.25',
8661             'IPC::Cmd'              => '0.82',
8662             'MIME::Base64'          => '3.14',
8663             'Module::CoreList'      => '2.94',
8664             'Module::CoreList::TieHashDelta'=> '2.94',
8665             'Module::CoreList::Utils'=> '2.94',
8666             'POSIX'                 => '1.34',
8667             'Params::Check'         => '0.38',
8668             'Parse::CPAN::Meta'     => '1.4405',
8669             'Pod::Functions'        => '1.07',
8670             'Pod::Html'             => '1.2',
8671             'Safe'                  => '2.37',
8672             'Socket'                => '2.010',
8673             'Storable'              => '2.45',
8674             'Text::ParseWords'      => '3.29',
8675             'Tie::Array'            => '1.06',
8676             'Tie::Hash'             => '1.05',
8677             'Tie::Scalar'           => '1.03',
8678             'Time::Piece'           => '1.21',
8679             'Time::Seconds'         => '1.21',
8680             'XS::APItest'           => '0.54',
8681             'autodie'               => '2.20',
8682             'autodie::exception'    => '2.20',
8683             'autodie::exception::system'=> '2.20',
8684             'autodie::hints'        => '2.20',
8685             'autodie::skip'         => '2.20',
8686             'base'                  => '2.19',
8687             'deprecate'             => '0.03',
8688             'if'                    => '0.0603',
8689             'integer'               => '1.01',
8690             'strict'                => '1.08',
8691             'subs'                  => '1.02',
8692             'vmsish'                => '1.04',
8693         },
8694         removed => {
8695         }
8696     },
8697     5.019003 => {
8698         delta_from => 5.019002,
8699         changed => {
8700             'B'                     => '1.45',
8701             'CPAN::Meta'            => '2.132140',
8702             'CPAN::Meta::Converter' => '2.132140',
8703             'CPAN::Meta::Feature'   => '2.132140',
8704             'CPAN::Meta::History'   => '2.132140',
8705             'CPAN::Meta::Prereqs'   => '2.132140',
8706             'CPAN::Meta::Spec'      => '2.132140',
8707             'CPAN::Meta::Validator' => '2.132140',
8708             'Carp'                  => '1.31',
8709             'Carp::Heavy'           => '1.31',
8710             'Compress::Raw::Bzip2'  => '2.062',
8711             'Compress::Raw::Zlib'   => '2.062',
8712             'Compress::Zlib'        => '2.062',
8713             'Config'                => '5.019003',
8714             'Config::Perl::V'       => '0.19',
8715             'Cwd'                   => '3.44',
8716             'Data::Dumper'          => '2.148',
8717             'Devel::PPPort'         => '3.21',
8718             'Devel::Peek'           => '1.13',
8719             'DynaLoader'            => '1.19',
8720             'Encode'                => '2.52',
8721             'Encode::Alias'         => '2.17',
8722             'Encode::Encoding'      => '2.06',
8723             'Encode::GSM0338'       => '2.04',
8724             'Encode::MIME::Header'  => '2.14',
8725             'Encode::Unicode'       => '2.08',
8726             'English'               => '1.08',
8727             'Exporter'              => '5.69',
8728             'Exporter::Heavy'       => '5.69',
8729             'ExtUtils::Command::MM' => '6.72',
8730             'ExtUtils::Liblist'     => '6.72',
8731             'ExtUtils::Liblist::Kid'=> '6.72',
8732             'ExtUtils::MM'          => '6.72',
8733             'ExtUtils::MM_AIX'      => '6.72',
8734             'ExtUtils::MM_Any'      => '6.72',
8735             'ExtUtils::MM_BeOS'     => '6.72',
8736             'ExtUtils::MM_Cygwin'   => '6.72',
8737             'ExtUtils::MM_DOS'      => '6.72',
8738             'ExtUtils::MM_Darwin'   => '6.72',
8739             'ExtUtils::MM_MacOS'    => '6.72',
8740             'ExtUtils::MM_NW5'      => '6.72',
8741             'ExtUtils::MM_OS2'      => '6.72',
8742             'ExtUtils::MM_QNX'      => '6.72',
8743             'ExtUtils::MM_UWIN'     => '6.72',
8744             'ExtUtils::MM_Unix'     => '6.72',
8745             'ExtUtils::MM_VMS'      => '6.72',
8746             'ExtUtils::MM_VOS'      => '6.72',
8747             'ExtUtils::MM_Win32'    => '6.72',
8748             'ExtUtils::MM_Win95'    => '6.72',
8749             'ExtUtils::MY'          => '6.72',
8750             'ExtUtils::MakeMaker'   => '6.72',
8751             'ExtUtils::MakeMaker::Config'=> '6.72',
8752             'ExtUtils::Mkbootstrap' => '6.72',
8753             'ExtUtils::Mksymlists'  => '6.72',
8754             'ExtUtils::ParseXS::Eval'=> '3.21',
8755             'ExtUtils::testlib'     => '6.72',
8756             'File::Spec'            => '3.44',
8757             'File::Spec::Cygwin'    => '3.44',
8758             'File::Spec::Epoc'      => '3.44',
8759             'File::Spec::Functions' => '3.44',
8760             'File::Spec::Mac'       => '3.44',
8761             'File::Spec::OS2'       => '3.44',
8762             'File::Spec::Unix'      => '3.44',
8763             'File::Spec::VMS'       => '3.44',
8764             'File::Spec::Win32'     => '3.44',
8765             'Getopt::Std'           => '1.10',
8766             'IO::Compress::Adapter::Bzip2'=> '2.062',
8767             'IO::Compress::Adapter::Deflate'=> '2.062',
8768             'IO::Compress::Adapter::Identity'=> '2.062',
8769             'IO::Compress::Base'    => '2.062',
8770             'IO::Compress::Base::Common'=> '2.062',
8771             'IO::Compress::Bzip2'   => '2.062',
8772             'IO::Compress::Deflate' => '2.062',
8773             'IO::Compress::Gzip'    => '2.062',
8774             'IO::Compress::Gzip::Constants'=> '2.062',
8775             'IO::Compress::RawDeflate'=> '2.062',
8776             'IO::Compress::Zip'     => '2.062',
8777             'IO::Compress::Zip::Constants'=> '2.062',
8778             'IO::Compress::Zlib::Constants'=> '2.062',
8779             'IO::Compress::Zlib::Extra'=> '2.062',
8780             'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8781             'IO::Uncompress::Adapter::Identity'=> '2.062',
8782             'IO::Uncompress::Adapter::Inflate'=> '2.062',
8783             'IO::Uncompress::AnyInflate'=> '2.062',
8784             'IO::Uncompress::AnyUncompress'=> '2.062',
8785             'IO::Uncompress::Base'  => '2.062',
8786             'IO::Uncompress::Bunzip2'=> '2.062',
8787             'IO::Uncompress::Gunzip'=> '2.062',
8788             'IO::Uncompress::Inflate'=> '2.062',
8789             'IO::Uncompress::RawInflate'=> '2.062',
8790             'IO::Uncompress::Unzip' => '2.062',
8791             'IPC::Cmd'              => '0.84',
8792             'IPC::Msg'              => '2.04',
8793             'IPC::Open3'            => '1.15',
8794             'IPC::Semaphore'        => '2.04',
8795             'IPC::SharedMem'        => '2.04',
8796             'IPC::SysV'             => '2.04',
8797             'List::Util'            => '1.31',
8798             'List::Util::XS'        => '1.31',
8799             'Math::BigFloat::Trace' => '0.36',
8800             'Math::BigInt::Trace'   => '0.36',
8801             'Module::Build'         => '0.4007',
8802             'Module::Build::Base'   => '0.4007',
8803             'Module::Build::Compat' => '0.4007',
8804             'Module::Build::Config' => '0.4007',
8805             'Module::Build::Cookbook'=> '0.4007',
8806             'Module::Build::Dumper' => '0.4007',
8807             'Module::Build::ModuleInfo'=> '0.4007',
8808             'Module::Build::Notes'  => '0.4007',
8809             'Module::Build::PPMMaker'=> '0.4007',
8810             'Module::Build::Platform::Default'=> '0.4007',
8811             'Module::Build::Platform::MacOS'=> '0.4007',
8812             'Module::Build::Platform::Unix'=> '0.4007',
8813             'Module::Build::Platform::VMS'=> '0.4007',
8814             'Module::Build::Platform::VOS'=> '0.4007',
8815             'Module::Build::Platform::Windows'=> '0.4007',
8816             'Module::Build::Platform::aix'=> '0.4007',
8817             'Module::Build::Platform::cygwin'=> '0.4007',
8818             'Module::Build::Platform::darwin'=> '0.4007',
8819             'Module::Build::Platform::os2'=> '0.4007',
8820             'Module::Build::PodParser'=> '0.4007',
8821             'Module::CoreList'      => '2.97',
8822             'Module::CoreList::TieHashDelta'=> '2.97',
8823             'Module::CoreList::Utils'=> '2.97',
8824             'Net::Cmd'              => '2.30',
8825             'Net::Config'           => '1.12',
8826             'Net::Domain'           => '2.22',
8827             'Net::FTP'              => '2.78',
8828             'Net::FTP::dataconn'    => '0.12',
8829             'Net::NNTP'             => '2.25',
8830             'Net::Netrc'            => '2.14',
8831             'Net::POP3'             => '2.30',
8832             'Net::SMTP'             => '2.32',
8833             'PerlIO'                => '1.08',
8834             'Pod::Functions'        => '1.08',
8835             'Scalar::Util'          => '1.31',
8836             'Socket'                => '2.011',
8837             'Storable'              => '2.46',
8838             'Time::HiRes'           => '1.9726',
8839             'Time::Piece'           => '1.22',
8840             'Time::Seconds'         => '1.22',
8841             'XS::APItest'           => '0.55',
8842             'bigint'                => '0.36',
8843             'bignum'                => '0.36',
8844             'bigrat'                => '0.36',
8845             'constant'              => '1.28',
8846             'diagnostics'           => '1.32',
8847             'inc::latest'           => '0.4007',
8848             'mro'                   => '1.13',
8849             'parent'                => '0.226',
8850             'utf8'                  => '1.13',
8851             'version'               => '0.9903',
8852         },
8853         removed => {
8854            'Module::Build::Platform::Amiga'=> 1,
8855            'Module::Build::Platform::EBCDIC'=> 1,
8856            'Module::Build::Platform::MPEiX'=> 1,
8857            'Module::Build::Platform::RiscOS'=> 1,
8858         }
8859     },
8860     5.019004 => {
8861         delta_from => 5.019003,
8862         changed => {
8863             'B'                     => '1.46',
8864             'B::Concise'            => '0.99',
8865             'B::Deparse'            => '1.23',
8866             'CPAN'                  => '2.03',
8867             'CPAN::Meta'            => '2.132620',
8868             'CPAN::Meta::Converter' => '2.132620',
8869             'CPAN::Meta::Feature'   => '2.132620',
8870             'CPAN::Meta::History'   => '2.132620',
8871             'CPAN::Meta::Prereqs'   => '2.132620',
8872             'CPAN::Meta::Requirements'=> '2.123',
8873             'CPAN::Meta::Spec'      => '2.132620',
8874             'CPAN::Meta::Validator' => '2.132620',
8875             'Carp'                  => '1.32',
8876             'Carp::Heavy'           => '1.32',
8877             'Config'                => '5.019004',
8878             'Data::Dumper'          => '2.149',
8879             'Devel::Peek'           => '1.14',
8880             'DynaLoader'            => '1.20',
8881             'Encode'                => '2.55',
8882             'Encode::Alias'         => '2.18',
8883             'Encode::CN::HZ'        => '2.07',
8884             'Encode::Encoder'       => '2.03',
8885             'Encode::Encoding'      => '2.07',
8886             'Encode::GSM0338'       => '2.05',
8887             'Encode::Guess'         => '2.06',
8888             'Encode::JP::JIS7'      => '2.05',
8889             'Encode::KR::2022_KR'   => '2.03',
8890             'Encode::MIME::Header'  => '2.15',
8891             'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8892             'Encode::Unicode'       => '2.09',
8893             'Encode::Unicode::UTF7' => '2.08',
8894             'Errno'                 => '1.20',
8895             'Exporter'              => '5.70',
8896             'Exporter::Heavy'       => '5.70',
8897             'ExtUtils::CBuilder'    => '0.280212',
8898             'ExtUtils::CBuilder::Base'=> '0.280212',
8899             'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8900             'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8901             'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8902             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8903             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8904             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8905             'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8906             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8907             'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8908             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8909             'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8910             'ExtUtils::Command'     => '1.18',
8911             'ExtUtils::Command::MM' => '6.76',
8912             'ExtUtils::Liblist'     => '6.76',
8913             'ExtUtils::Liblist::Kid'=> '6.76',
8914             'ExtUtils::MM'          => '6.76',
8915             'ExtUtils::MM_AIX'      => '6.76',
8916             'ExtUtils::MM_Any'      => '6.76',
8917             'ExtUtils::MM_BeOS'     => '6.76',
8918             'ExtUtils::MM_Cygwin'   => '6.76',
8919             'ExtUtils::MM_DOS'      => '6.76',
8920             'ExtUtils::MM_Darwin'   => '6.76',
8921             'ExtUtils::MM_MacOS'    => '6.76',
8922             'ExtUtils::MM_NW5'      => '6.76',
8923             'ExtUtils::MM_OS2'      => '6.76',
8924             'ExtUtils::MM_QNX'      => '6.76',
8925             'ExtUtils::MM_UWIN'     => '6.76',
8926             'ExtUtils::MM_Unix'     => '6.76',
8927             'ExtUtils::MM_VMS'      => '6.76',
8928             'ExtUtils::MM_VOS'      => '6.76',
8929             'ExtUtils::MM_Win32'    => '6.76',
8930             'ExtUtils::MM_Win95'    => '6.76',
8931             'ExtUtils::MY'          => '6.76',
8932             'ExtUtils::MakeMaker'   => '6.76',
8933             'ExtUtils::MakeMaker::Config'=> '6.76',
8934             'ExtUtils::Mkbootstrap' => '6.76',
8935             'ExtUtils::Mksymlists'  => '6.76',
8936             'ExtUtils::ParseXS'     => '3.23',
8937             'ExtUtils::ParseXS::Constants'=> '3.23',
8938             'ExtUtils::ParseXS::CountLines'=> '3.23',
8939             'ExtUtils::ParseXS::Eval'=> '3.23',
8940             'ExtUtils::ParseXS::Utilities'=> '3.23',
8941             'ExtUtils::Typemaps'    => '3.23',
8942             'ExtUtils::Typemaps::Cmd'=> '3.23',
8943             'ExtUtils::Typemaps::InputMap'=> '3.23',
8944             'ExtUtils::Typemaps::OutputMap'=> '3.23',
8945             'ExtUtils::Typemaps::Type'=> '3.23',
8946             'ExtUtils::testlib'     => '6.76',
8947             'Fatal'                 => '2.21',
8948             'File::Copy'            => '2.28',
8949             'File::Find'            => '1.25',
8950             'File::Glob'            => '1.21',
8951             'FileCache'             => '1.09',
8952             'HTTP::Tiny'            => '0.035',
8953             'Hash::Util::FieldHash' => '1.13',
8954             'I18N::LangTags'        => '0.40',
8955             'IO'                    => '1.29',
8956             'IO::Socket'            => '1.37',
8957             'IPC::Open3'            => '1.16',
8958             'JSON::PP'              => '2.27202_01',
8959             'List::Util'            => '1.32',
8960             'List::Util::XS'        => '1.32',
8961             'Locale::Codes'         => '3.27',
8962             'Locale::Codes::Constants'=> '3.27',
8963             'Locale::Codes::Country'=> '3.27',
8964             'Locale::Codes::Country_Codes'=> '3.27',
8965             'Locale::Codes::Country_Retired'=> '3.27',
8966             'Locale::Codes::Currency'=> '3.27',
8967             'Locale::Codes::Currency_Codes'=> '3.27',
8968             'Locale::Codes::Currency_Retired'=> '3.27',
8969             'Locale::Codes::LangExt'=> '3.27',
8970             'Locale::Codes::LangExt_Codes'=> '3.27',
8971             'Locale::Codes::LangExt_Retired'=> '3.27',
8972             'Locale::Codes::LangFam'=> '3.27',
8973             'Locale::Codes::LangFam_Codes'=> '3.27',
8974             'Locale::Codes::LangFam_Retired'=> '3.27',
8975             'Locale::Codes::LangVar'=> '3.27',
8976             'Locale::Codes::LangVar_Codes'=> '3.27',
8977             'Locale::Codes::LangVar_Retired'=> '3.27',
8978             'Locale::Codes::Language'=> '3.27',
8979             'Locale::Codes::Language_Codes'=> '3.27',
8980             'Locale::Codes::Language_Retired'=> '3.27',
8981             'Locale::Codes::Script' => '3.27',
8982             'Locale::Codes::Script_Codes'=> '3.27',
8983             'Locale::Codes::Script_Retired'=> '3.27',
8984             'Locale::Country'       => '3.27',
8985             'Locale::Currency'      => '3.27',
8986             'Locale::Language'      => '3.27',
8987             'Locale::Script'        => '3.27',
8988             'Math::BigFloat'        => '1.9991',
8989             'Math::BigInt'          => '1.9993',
8990             'Math::BigInt::FastCalc'=> '0.31',
8991             'Module::CoreList'      => '2.99',
8992             'Module::CoreList::TieHashDelta'=> '2.99',
8993             'Module::CoreList::Utils'=> '2.99',
8994             'Module::Load::Conditional'=> '0.58',
8995             'Module::Metadata'      => '1.000018',
8996             'Opcode'                => '1.26',
8997             'POSIX'                 => '1.35',
8998             'Parse::CPAN::Meta'     => '1.4407',
8999             'Perl::OSType'          => '1.005',
9000             'Pod::Html'             => '1.21',
9001             'Scalar::Util'          => '1.32',
9002             'Socket'                => '2.012',
9003             'Storable'              => '2.47',
9004             'Term::ReadLine'        => '1.14',
9005             'Test::Builder'         => '0.98_06',
9006             'Test::Builder::Module' => '0.98_06',
9007             'Test::More'            => '0.98_06',
9008             'Test::Simple'          => '0.98_06',
9009             'Time::Piece'           => '1.23',
9010             'Time::Seconds'         => '1.23',
9011             'Unicode::Collate'      => '0.99',
9012             'Unicode::UCD'          => '0.54',
9013             'XS::APItest'           => '0.56',
9014             'XS::Typemap'           => '0.11',
9015             '_charnames'            => '1.39',
9016             'autodie'               => '2.21',
9017             'autodie::exception'    => '2.21',
9018             'autodie::exception::system'=> '2.21',
9019             'autodie::hints'        => '2.21',
9020             'autodie::skip'         => '2.21',
9021             'charnames'             => '1.39',
9022             'diagnostics'           => '1.33',
9023             'mro'                   => '1.14',
9024             'parent'                => '0.228',
9025             'perlfaq'               => '5.0150044',
9026             're'                    => '0.26',
9027             'version'               => '0.9904',
9028             'warnings'              => '1.19',
9029         },
9030         removed => {
9031         }
9032     },
9033     5.019005 => {
9034         delta_from => 5.019004,
9035         changed => {
9036             'App::Prove'            => '3.29',
9037             'App::Prove::State'     => '3.29',
9038             'App::Prove::State::Result'=> '3.29',
9039             'App::Prove::State::Result::Test'=> '3.29',
9040             'CPAN::Meta'            => '2.132830',
9041             'CPAN::Meta::Converter' => '2.132830',
9042             'CPAN::Meta::Feature'   => '2.132830',
9043             'CPAN::Meta::History'   => '2.132830',
9044             'CPAN::Meta::Prereqs'   => '2.132830',
9045             'CPAN::Meta::Requirements'=> '2.125',
9046             'CPAN::Meta::Spec'      => '2.132830',
9047             'CPAN::Meta::Validator' => '2.132830',
9048             'CPAN::Meta::YAML'      => '0.010',
9049             'Config'                => '5.019005',
9050             'Cwd'                   => '3.45',
9051             'ExtUtils::Command::MM' => '6.80',
9052             'ExtUtils::Install'     => '1.61',
9053             'ExtUtils::Liblist'     => '6.80',
9054             'ExtUtils::Liblist::Kid'=> '6.80',
9055             'ExtUtils::MM'          => '6.80',
9056             'ExtUtils::MM_AIX'      => '6.80',
9057             'ExtUtils::MM_Any'      => '6.80',
9058             'ExtUtils::MM_BeOS'     => '6.80',
9059             'ExtUtils::MM_Cygwin'   => '6.80',
9060             'ExtUtils::MM_DOS'      => '6.80',
9061             'ExtUtils::MM_Darwin'   => '6.80',
9062             'ExtUtils::MM_MacOS'    => '6.80',
9063             'ExtUtils::MM_NW5'      => '6.80',
9064             'ExtUtils::MM_OS2'      => '6.80',
9065             'ExtUtils::MM_QNX'      => '6.80',
9066             'ExtUtils::MM_UWIN'     => '6.80',
9067             'ExtUtils::MM_Unix'     => '6.80',
9068             'ExtUtils::MM_VMS'      => '6.80',
9069             'ExtUtils::MM_VOS'      => '6.80',
9070             'ExtUtils::MM_Win32'    => '6.80',
9071             'ExtUtils::MM_Win95'    => '6.80',
9072             'ExtUtils::MY'          => '6.80',
9073             'ExtUtils::MakeMaker'   => '6.80',
9074             'ExtUtils::MakeMaker::Config'=> '6.80',
9075             'ExtUtils::Mkbootstrap' => '6.80',
9076             'ExtUtils::Mksymlists'  => '6.80',
9077             'ExtUtils::testlib'     => '6.80',
9078             'Fatal'                 => '2.22',
9079             'File::Fetch'           => '0.44',
9080             'File::Glob'            => '1.22',
9081             'File::Spec'            => '3.45',
9082             'File::Spec::Cygwin'    => '3.45',
9083             'File::Spec::Epoc'      => '3.45',
9084             'File::Spec::Functions' => '3.45',
9085             'File::Spec::Mac'       => '3.45',
9086             'File::Spec::OS2'       => '3.45',
9087             'File::Spec::Unix'      => '3.45',
9088             'File::Spec::VMS'       => '3.45',
9089             'File::Spec::Win32'     => '3.45',
9090             'File::Temp'            => '0.2304',
9091             'Getopt::Long'          => '2.42',
9092             'HTTP::Tiny'            => '0.036',
9093             'IPC::Cmd'              => '0.84_01',
9094             'JSON::PP'              => '2.27203',
9095             'List::Util'            => '1.35',
9096             'List::Util::XS'        => '1.35',
9097             'Module::CoreList'      => '3.00',
9098             'Module::CoreList::TieHashDelta'=> '3.00',
9099             'Module::CoreList::Utils'=> '3.00',
9100             'Module::Metadata'      => '1.000019',
9101             'Parse::CPAN::Meta'     => '1.4409',
9102             'Perl::OSType'          => '1.006',
9103             'PerlIO::scalar'        => '0.17',
9104             'Pod::Man'              => '2.28',
9105             'Pod::Text'             => '3.18',
9106             'Pod::Text::Termcap'    => '2.08',
9107             'Scalar::Util'          => '1.35',
9108             'TAP::Base'             => '3.29',
9109             'TAP::Formatter::Base'  => '3.29',
9110             'TAP::Formatter::Color' => '3.29',
9111             'TAP::Formatter::Console'=> '3.29',
9112             'TAP::Formatter::Console::ParallelSession'=> '3.29',
9113             'TAP::Formatter::Console::Session'=> '3.29',
9114             'TAP::Formatter::File'  => '3.29',
9115             'TAP::Formatter::File::Session'=> '3.29',
9116             'TAP::Formatter::Session'=> '3.29',
9117             'TAP::Harness'          => '3.29',
9118             'TAP::Harness::Env'     => '3.29',
9119             'TAP::Object'           => '3.29',
9120             'TAP::Parser'           => '3.29',
9121             'TAP::Parser::Aggregator'=> '3.29',
9122             'TAP::Parser::Grammar'  => '3.29',
9123             'TAP::Parser::Iterator' => '3.29',
9124             'TAP::Parser::Iterator::Array'=> '3.29',
9125             'TAP::Parser::Iterator::Process'=> '3.29',
9126             'TAP::Parser::Iterator::Stream'=> '3.29',
9127             'TAP::Parser::IteratorFactory'=> '3.29',
9128             'TAP::Parser::Multiplexer'=> '3.29',
9129             'TAP::Parser::Result'   => '3.29',
9130             'TAP::Parser::Result::Bailout'=> '3.29',
9131             'TAP::Parser::Result::Comment'=> '3.29',
9132             'TAP::Parser::Result::Plan'=> '3.29',
9133             'TAP::Parser::Result::Pragma'=> '3.29',
9134             'TAP::Parser::Result::Test'=> '3.29',
9135             'TAP::Parser::Result::Unknown'=> '3.29',
9136             'TAP::Parser::Result::Version'=> '3.29',
9137             'TAP::Parser::Result::YAML'=> '3.29',
9138             'TAP::Parser::ResultFactory'=> '3.29',
9139             'TAP::Parser::Scheduler'=> '3.29',
9140             'TAP::Parser::Scheduler::Job'=> '3.29',
9141             'TAP::Parser::Scheduler::Spinner'=> '3.29',
9142             'TAP::Parser::Source'   => '3.29',
9143             'TAP::Parser::SourceHandler'=> '3.29',
9144             'TAP::Parser::SourceHandler::Executable'=> '3.29',
9145             'TAP::Parser::SourceHandler::File'=> '3.29',
9146             'TAP::Parser::SourceHandler::Handle'=> '3.29',
9147             'TAP::Parser::SourceHandler::Perl'=> '3.29',
9148             'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
9149             'TAP::Parser::YAMLish::Reader'=> '3.29',
9150             'TAP::Parser::YAMLish::Writer'=> '3.29',
9151             'Test::Builder'         => '0.99',
9152             'Test::Builder::Module' => '0.99',
9153             'Test::Builder::Tester' => '1.23_002',
9154             'Test::Builder::Tester::Color'=> '1.23_002',
9155             'Test::Harness'         => '3.29',
9156             'Test::More'            => '0.99',
9157             'Test::Simple'          => '0.99',
9158             'Unicode'               => '6.3.0',
9159             'Unicode::Normalize'    => '1.17',
9160             'Unicode::UCD'          => '0.55',
9161             'attributes'            => '0.22',
9162             'autodie'               => '2.22',
9163             'autodie::exception'    => '2.22',
9164             'autodie::exception::system'=> '2.22',
9165             'autodie::hints'        => '2.22',
9166             'autodie::skip'         => '2.22',
9167             'feature'               => '1.34',
9168             'threads'               => '1.89',
9169             'warnings'              => '1.20',
9170         },
9171         removed => {
9172             'TAP::Parser::Utils'    => 1,
9173         }
9174     },
9175     5.019006 => {
9176         delta_from => 5.019005,
9177         changed => {
9178             'App::Prove'            => '3.30',
9179             'App::Prove::State'     => '3.30',
9180             'App::Prove::State::Result'=> '3.30',
9181             'App::Prove::State::Result::Test'=> '3.30',
9182             'Archive::Tar'          => '1.96',
9183             'Archive::Tar::Constant'=> '1.96',
9184             'Archive::Tar::File'    => '1.96',
9185             'AutoLoader'            => '5.74',
9186             'B'                     => '1.47',
9187             'B::Concise'            => '0.991',
9188             'B::Debug'              => '1.19',
9189             'B::Deparse'            => '1.24',
9190             'Benchmark'             => '1.18',
9191             'Compress::Raw::Bzip2'  => '2.063',
9192             'Compress::Raw::Zlib'   => '2.063',
9193             'Compress::Zlib'        => '2.063',
9194             'Config'                => '5.019006',
9195             'DB_File'               => '1.831',
9196             'Devel::Peek'           => '1.15',
9197             'DynaLoader'            => '1.21',
9198             'Errno'                 => '1.20_01',
9199             'ExtUtils::Command::MM' => '6.82',
9200             'ExtUtils::Liblist'     => '6.82',
9201             'ExtUtils::Liblist::Kid'=> '6.82',
9202             'ExtUtils::MM'          => '6.82',
9203             'ExtUtils::MM_AIX'      => '6.82',
9204             'ExtUtils::MM_Any'      => '6.82',
9205             'ExtUtils::MM_BeOS'     => '6.82',
9206             'ExtUtils::MM_Cygwin'   => '6.82',
9207             'ExtUtils::MM_DOS'      => '6.82',
9208             'ExtUtils::MM_Darwin'   => '6.82',
9209             'ExtUtils::MM_MacOS'    => '6.82',
9210             'ExtUtils::MM_NW5'      => '6.82',
9211             'ExtUtils::MM_OS2'      => '6.82',
9212             'ExtUtils::MM_QNX'      => '6.82',
9213             'ExtUtils::MM_UWIN'     => '6.82',
9214             'ExtUtils::MM_Unix'     => '6.82',
9215             'ExtUtils::MM_VMS'      => '6.82',
9216             'ExtUtils::MM_VOS'      => '6.82',
9217             'ExtUtils::MM_Win32'    => '6.82',
9218             'ExtUtils::MM_Win95'    => '6.82',
9219             'ExtUtils::MY'          => '6.82',
9220             'ExtUtils::MakeMaker'   => '6.82',
9221             'ExtUtils::MakeMaker::Config'=> '6.82',
9222             'ExtUtils::Mkbootstrap' => '6.82',
9223             'ExtUtils::Mksymlists'  => '6.82',
9224             'ExtUtils::testlib'     => '6.82',
9225             'File::DosGlob'         => '1.12',
9226             'File::Find'            => '1.26',
9227             'File::Glob'            => '1.23',
9228             'HTTP::Tiny'            => '0.038',
9229             'IO'                    => '1.30',
9230             'IO::Compress::Adapter::Bzip2'=> '2.063',
9231             'IO::Compress::Adapter::Deflate'=> '2.063',
9232             'IO::Compress::Adapter::Identity'=> '2.063',
9233             'IO::Compress::Base'    => '2.063',
9234             'IO::Compress::Base::Common'=> '2.063',
9235             'IO::Compress::Bzip2'   => '2.063',
9236             'IO::Compress::Deflate' => '2.063',
9237             'IO::Compress::Gzip'    => '2.063',
9238             'IO::Compress::Gzip::Constants'=> '2.063',
9239             'IO::Compress::RawDeflate'=> '2.063',
9240             'IO::Compress::Zip'     => '2.063',
9241             'IO::Compress::Zip::Constants'=> '2.063',
9242             'IO::Compress::Zlib::Constants'=> '2.063',
9243             'IO::Compress::Zlib::Extra'=> '2.063',
9244             'IO::Select'            => '1.22',
9245             'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9246             'IO::Uncompress::Adapter::Identity'=> '2.063',
9247             'IO::Uncompress::Adapter::Inflate'=> '2.063',
9248             'IO::Uncompress::AnyInflate'=> '2.063',
9249             'IO::Uncompress::AnyUncompress'=> '2.063',
9250             'IO::Uncompress::Base'  => '2.063',
9251             'IO::Uncompress::Bunzip2'=> '2.063',
9252             'IO::Uncompress::Gunzip'=> '2.063',
9253             'IO::Uncompress::Inflate'=> '2.063',
9254             'IO::Uncompress::RawInflate'=> '2.063',
9255             'IO::Uncompress::Unzip' => '2.063',
9256             'IPC::Cmd'              => '0.90',
9257             'Locale::Maketext'      => '1.25',
9258             'Module::Build'         => '0.4202',
9259             'Module::Build::Base'   => '0.4202',
9260             'Module::Build::Compat' => '0.4202',
9261             'Module::Build::Config' => '0.4202',
9262             'Module::Build::Cookbook'=> '0.4202',
9263             'Module::Build::Dumper' => '0.4202',
9264             'Module::Build::ModuleInfo'=> '0.4202',
9265             'Module::Build::Notes'  => '0.4202',
9266             'Module::Build::PPMMaker'=> '0.4202',
9267             'Module::Build::Platform::Default'=> '0.4202',
9268             'Module::Build::Platform::MacOS'=> '0.4202',
9269             'Module::Build::Platform::Unix'=> '0.4202',
9270             'Module::Build::Platform::VMS'=> '0.4202',
9271             'Module::Build::Platform::VOS'=> '0.4202',
9272             'Module::Build::Platform::Windows'=> '0.4202',
9273             'Module::Build::Platform::aix'=> '0.4202',
9274             'Module::Build::Platform::cygwin'=> '0.4202',
9275             'Module::Build::Platform::darwin'=> '0.4202',
9276             'Module::Build::Platform::os2'=> '0.4202',
9277             'Module::Build::PodParser'=> '0.4202',
9278             'Module::CoreList'      => '3.01',
9279             'Module::CoreList::TieHashDelta'=> '3.01',
9280             'Module::CoreList::Utils'=> '3.01',
9281             'Opcode'                => '1.27',
9282             'POSIX'                 => '1.36',
9283             'Package::Constants'    => '0.04',
9284             'PerlIO::scalar'        => '0.18',
9285             'PerlIO::via'           => '0.13',
9286             'SDBM_File'             => '1.10',
9287             'Socket'                => '2.013',
9288             'TAP::Base'             => '3.30',
9289             'TAP::Formatter::Base'  => '3.30',
9290             'TAP::Formatter::Color' => '3.30',
9291             'TAP::Formatter::Console'=> '3.30',
9292             'TAP::Formatter::Console::ParallelSession'=> '3.30',
9293             'TAP::Formatter::Console::Session'=> '3.30',
9294             'TAP::Formatter::File'  => '3.30',
9295             'TAP::Formatter::File::Session'=> '3.30',
9296             'TAP::Formatter::Session'=> '3.30',
9297             'TAP::Harness'          => '3.30',
9298             'TAP::Harness::Env'     => '3.30',
9299             'TAP::Object'           => '3.30',
9300             'TAP::Parser'           => '3.30',
9301             'TAP::Parser::Aggregator'=> '3.30',
9302             'TAP::Parser::Grammar'  => '3.30',
9303             'TAP::Parser::Iterator' => '3.30',
9304             'TAP::Parser::Iterator::Array'=> '3.30',
9305             'TAP::Parser::Iterator::Process'=> '3.30',
9306             'TAP::Parser::Iterator::Stream'=> '3.30',
9307             'TAP::Parser::IteratorFactory'=> '3.30',
9308             'TAP::Parser::Multiplexer'=> '3.30',
9309             'TAP::Parser::Result'   => '3.30',
9310             'TAP::Parser::Result::Bailout'=> '3.30',
9311             'TAP::Parser::Result::Comment'=> '3.30',
9312             'TAP::Parser::Result::Plan'=> '3.30',
9313             'TAP::Parser::Result::Pragma'=> '3.30',
9314             'TAP::Parser::Result::Test'=> '3.30',
9315             'TAP::Parser::Result::Unknown'=> '3.30',
9316             'TAP::Parser::Result::Version'=> '3.30',
9317             'TAP::Parser::Result::YAML'=> '3.30',
9318             'TAP::Parser::ResultFactory'=> '3.30',
9319             'TAP::Parser::Scheduler'=> '3.30',
9320             'TAP::Parser::Scheduler::Job'=> '3.30',
9321             'TAP::Parser::Scheduler::Spinner'=> '3.30',
9322             'TAP::Parser::Source'   => '3.30',
9323             'TAP::Parser::SourceHandler'=> '3.30',
9324             'TAP::Parser::SourceHandler::Executable'=> '3.30',
9325             'TAP::Parser::SourceHandler::File'=> '3.30',
9326             'TAP::Parser::SourceHandler::Handle'=> '3.30',
9327             'TAP::Parser::SourceHandler::Perl'=> '3.30',
9328             'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9329             'TAP::Parser::YAMLish::Reader'=> '3.30',
9330             'TAP::Parser::YAMLish::Writer'=> '3.30',
9331             'Term::Cap'             => '1.15',
9332             'Test::Builder'         => '1.001002',
9333             'Test::Builder::Module' => '1.001002',
9334             'Test::Harness'         => '3.30',
9335             'Test::More'            => '1.001002',
9336             'Test::Simple'          => '1.001002',
9337             'Tie::StdHandle'        => '4.4',
9338             'Unicode::Collate'      => '1.02',
9339             'Unicode::Collate::CJK::Korean'=> '1.02',
9340             'Unicode::Collate::Locale'=> '1.02',
9341             'XS::APItest'           => '0.57',
9342             'XS::Typemap'           => '0.12',
9343             'arybase'               => '0.07',
9344             'bignum'                => '0.37',
9345             'constant'              => '1.29',
9346             'fields'                => '2.17',
9347             'inc::latest'           => '0.4202',
9348             'threads'               => '1.90',
9349             'threads::shared'       => '1.45',
9350         },
9351         removed => {
9352         }
9353     },
9354     5.019007 => {
9355         delta_from => 5.019006,
9356         changed => {
9357             'CGI'                   => '3.64',
9358             'CGI::Apache'           => '1.02',
9359             'CGI::Carp'             => '3.64',
9360             'CGI::Cookie'           => '1.31',
9361             'CGI::Fast'             => '1.10',
9362             'CGI::Pretty'           => '3.64',
9363             'CGI::Push'             => '1.06',
9364             'CGI::Switch'           => '1.02',
9365             'CGI::Util'             => '3.64',
9366             'CPAN::Meta'            => '2.133380',
9367             'CPAN::Meta::Converter' => '2.133380',
9368             'CPAN::Meta::Feature'   => '2.133380',
9369             'CPAN::Meta::History'   => '2.133380',
9370             'CPAN::Meta::Prereqs'   => '2.133380',
9371             'CPAN::Meta::Spec'      => '2.133380',
9372             'CPAN::Meta::Validator' => '2.133380',
9373             'Config'                => '5.019007',
9374             'Data::Dumper'          => '2.150',
9375             'DynaLoader'            => '1.22',
9376             'ExtUtils::Command::MM' => '6.84',
9377             'ExtUtils::Liblist'     => '6.84',
9378             'ExtUtils::Liblist::Kid'=> '6.84',
9379             'ExtUtils::MM'          => '6.84',
9380             'ExtUtils::MM_AIX'      => '6.84',
9381             'ExtUtils::MM_Any'      => '6.84',
9382             'ExtUtils::MM_BeOS'     => '6.84',
9383             'ExtUtils::MM_Cygwin'   => '6.84',
9384             'ExtUtils::MM_DOS'      => '6.84',
9385             'ExtUtils::MM_Darwin'   => '6.84',
9386             'ExtUtils::MM_MacOS'    => '6.84',
9387             'ExtUtils::MM_NW5'      => '6.84',
9388             'ExtUtils::MM_OS2'      => '6.84',
9389             'ExtUtils::MM_QNX'      => '6.84',
9390             'ExtUtils::MM_UWIN'     => '6.84',
9391             'ExtUtils::MM_Unix'     => '6.84',
9392             'ExtUtils::MM_VMS'      => '6.84',
9393             'ExtUtils::MM_VOS'      => '6.84',
9394             'ExtUtils::MM_Win32'    => '6.84',
9395             'ExtUtils::MM_Win95'    => '6.84',
9396             'ExtUtils::MY'          => '6.84',
9397             'ExtUtils::MakeMaker'   => '6.84',
9398             'ExtUtils::MakeMaker::Config'=> '6.84',
9399             'ExtUtils::Mkbootstrap' => '6.84',
9400             'ExtUtils::Mksymlists'  => '6.84',
9401             'ExtUtils::testlib'     => '6.84',
9402             'File::Fetch'           => '0.46',
9403             'HTTP::Tiny'            => '0.039',
9404             'Locale::Codes'         => '3.28',
9405             'Locale::Codes::Constants'=> '3.28',
9406             'Locale::Codes::Country'=> '3.28',
9407             'Locale::Codes::Country_Codes'=> '3.28',
9408             'Locale::Codes::Country_Retired'=> '3.28',
9409             'Locale::Codes::Currency'=> '3.28',
9410             'Locale::Codes::Currency_Codes'=> '3.28',
9411             'Locale::Codes::Currency_Retired'=> '3.28',
9412             'Locale::Codes::LangExt'=> '3.28',
9413             'Locale::Codes::LangExt_Codes'=> '3.28',
9414             'Locale::Codes::LangExt_Retired'=> '3.28',
9415             'Locale::Codes::LangFam'=> '3.28',
9416             'Locale::Codes::LangFam_Codes'=> '3.28',
9417             'Locale::Codes::LangFam_Retired'=> '3.28',
9418             'Locale::Codes::LangVar'=> '3.28',
9419             'Locale::Codes::LangVar_Codes'=> '3.28',
9420             'Locale::Codes::LangVar_Retired'=> '3.28',
9421             'Locale::Codes::Language'=> '3.28',
9422             'Locale::Codes::Language_Codes'=> '3.28',
9423             'Locale::Codes::Language_Retired'=> '3.28',
9424             'Locale::Codes::Script' => '3.28',
9425             'Locale::Codes::Script_Codes'=> '3.28',
9426             'Locale::Codes::Script_Retired'=> '3.28',
9427             'Locale::Country'       => '3.28',
9428             'Locale::Currency'      => '3.28',
9429             'Locale::Language'      => '3.28',
9430             'Locale::Script'        => '3.28',
9431             'Module::Build'         => '0.4203',
9432             'Module::Build::Base'   => '0.4203',
9433             'Module::Build::Compat' => '0.4203',
9434             'Module::Build::Config' => '0.4203',
9435             'Module::Build::Cookbook'=> '0.4203',
9436             'Module::Build::Dumper' => '0.4203',
9437             'Module::Build::ModuleInfo'=> '0.4203',
9438             'Module::Build::Notes'  => '0.4203',
9439             'Module::Build::PPMMaker'=> '0.4203',
9440             'Module::Build::Platform::Default'=> '0.4203',
9441             'Module::Build::Platform::MacOS'=> '0.4203',
9442             'Module::Build::Platform::Unix'=> '0.4203',
9443             'Module::Build::Platform::VMS'=> '0.4203',
9444             'Module::Build::Platform::VOS'=> '0.4203',
9445             'Module::Build::Platform::Windows'=> '0.4203',
9446             'Module::Build::Platform::aix'=> '0.4203',
9447             'Module::Build::Platform::cygwin'=> '0.4203',
9448             'Module::Build::Platform::darwin'=> '0.4203',
9449             'Module::Build::Platform::os2'=> '0.4203',
9450             'Module::Build::PodParser'=> '0.4203',
9451             'Module::CoreList'      => '3.02',
9452             'Module::CoreList::TieHashDelta'=> '3.02',
9453             'Module::CoreList::Utils'=> '3.02',
9454             'POSIX'                 => '1.37',
9455             'PerlIO::encoding'      => '0.17',
9456             'PerlIO::via'           => '0.14',
9457             'SDBM_File'             => '1.11',
9458             'Storable'              => '2.48',
9459             'Time::Piece'           => '1.24',
9460             'Time::Seconds'         => '1.24',
9461             'Unicode::Collate'      => '1.04',
9462             'Win32'                 => '0.48',
9463             'XS::APItest'           => '0.58',
9464             'base'                  => '2.20',
9465             'constant'              => '1.30',
9466             'inc::latest'           => '0.4203',
9467             'threads'               => '1.91',
9468         },
9469         removed => {
9470         }
9471     },
9472     5.019008 => {
9473         delta_from => 5.019007,
9474         changed => {
9475             'Config'                => '5.019008',
9476             'DynaLoader'            => '1.24',
9477             'Encode'                => '2.57',
9478             'Errno'                 => '1.20_02',
9479             'ExtUtils::CBuilder'    => '0.280213',
9480             'ExtUtils::CBuilder::Base'=> '0.280213',
9481             'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9482             'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9483             'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9484             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9485             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9486             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9487             'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9488             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9489             'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9490             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9491             'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9492             'ExtUtils::Command::MM' => '6.86',
9493             'ExtUtils::Liblist'     => '6.86',
9494             'ExtUtils::Liblist::Kid'=> '6.86',
9495             'ExtUtils::MM'          => '6.86',
9496             'ExtUtils::MM_AIX'      => '6.86',
9497             'ExtUtils::MM_Any'      => '6.86',
9498             'ExtUtils::MM_BeOS'     => '6.86',
9499             'ExtUtils::MM_Cygwin'   => '6.86',
9500             'ExtUtils::MM_DOS'      => '6.86',
9501             'ExtUtils::MM_Darwin'   => '6.86',
9502             'ExtUtils::MM_MacOS'    => '6.86',
9503             'ExtUtils::MM_NW5'      => '6.86',
9504             'ExtUtils::MM_OS2'      => '6.86',
9505             'ExtUtils::MM_QNX'      => '6.86',
9506             'ExtUtils::MM_UWIN'     => '6.86',
9507             'ExtUtils::MM_Unix'     => '6.86',
9508             'ExtUtils::MM_VMS'      => '6.86',
9509             'ExtUtils::MM_VOS'      => '6.86',
9510             'ExtUtils::MM_Win32'    => '6.86',
9511             'ExtUtils::MM_Win95'    => '6.86',
9512             'ExtUtils::MY'          => '6.86',
9513             'ExtUtils::MakeMaker'   => '6.86',
9514             'ExtUtils::MakeMaker::Config'=> '6.86',
9515             'ExtUtils::Mkbootstrap' => '6.86',
9516             'ExtUtils::Mksymlists'  => '6.86',
9517             'ExtUtils::testlib'     => '6.86',
9518             'File::Copy'            => '2.29',
9519             'Hash::Util::FieldHash' => '1.14',
9520             'IO::Socket::IP'        => '0.26',
9521             'IO::Socket::UNIX'      => '1.26',
9522             'List::Util'            => '1.36',
9523             'List::Util::XS'        => '1.36',
9524             'Module::Build'         => '0.4204',
9525             'Module::Build::Base'   => '0.4204',
9526             'Module::Build::Compat' => '0.4204',
9527             'Module::Build::Config' => '0.4204',
9528             'Module::Build::Cookbook'=> '0.4204',
9529             'Module::Build::Dumper' => '0.4204',
9530             'Module::Build::ModuleInfo'=> '0.4204',
9531             'Module::Build::Notes'  => '0.4204',
9532             'Module::Build::PPMMaker'=> '0.4204',
9533             'Module::Build::Platform::Default'=> '0.4204',
9534             'Module::Build::Platform::MacOS'=> '0.4204',
9535             'Module::Build::Platform::Unix'=> '0.4204',
9536             'Module::Build::Platform::VMS'=> '0.4204',
9537             'Module::Build::Platform::VOS'=> '0.4204',
9538             'Module::Build::Platform::Windows'=> '0.4204',
9539             'Module::Build::Platform::aix'=> '0.4204',
9540             'Module::Build::Platform::cygwin'=> '0.4204',
9541             'Module::Build::Platform::darwin'=> '0.4204',
9542             'Module::Build::Platform::os2'=> '0.4204',
9543             'Module::Build::PodParser'=> '0.4204',
9544             'Module::CoreList'      => '3.04',
9545             'Module::CoreList::TieHashDelta'=> '3.04',
9546             'Module::CoreList::Utils'=> '3.04',
9547             'Module::Load'          => '0.28',
9548             'Module::Load::Conditional'=> '0.60',
9549             'Net::Config'           => '1.13',
9550             'Net::FTP::A'           => '1.19',
9551             'POSIX'                 => '1.38_01',
9552             'Perl::OSType'          => '1.007',
9553             'PerlIO::encoding'      => '0.18',
9554             'Pod::Perldoc'          => '3.21',
9555             'Pod::Perldoc::BaseTo'  => '3.21',
9556             'Pod::Perldoc::GetOptsOO'=> '3.21',
9557             'Pod::Perldoc::ToANSI'  => '3.21',
9558             'Pod::Perldoc::ToChecker'=> '3.21',
9559             'Pod::Perldoc::ToMan'   => '3.21',
9560             'Pod::Perldoc::ToNroff' => '3.21',
9561             'Pod::Perldoc::ToPod'   => '3.21',
9562             'Pod::Perldoc::ToRtf'   => '3.21',
9563             'Pod::Perldoc::ToTerm'  => '3.21',
9564             'Pod::Perldoc::ToText'  => '3.21',
9565             'Pod::Perldoc::ToTk'    => '3.21',
9566             'Pod::Perldoc::ToXml'   => '3.21',
9567             'Scalar::Util'          => '1.36',
9568             'Time::Piece'           => '1.27',
9569             'Time::Seconds'         => '1.27',
9570             'Unicode::UCD'          => '0.57',
9571             'XS::APItest'           => '0.59',
9572             'XSLoader'              => '0.17',
9573             'base'                  => '2.21',
9574             'constant'              => '1.31',
9575             'inc::latest'           => '0.4204',
9576             'threads::shared'       => '1.46',
9577             'version'               => '0.9907',
9578             'version::regex'        => '0.9907',
9579             'version::vpp'          => '0.9907',
9580             'warnings'              => '1.21',
9581         },
9582         removed => {
9583         }
9584     },
9585     5.019009 => {
9586         delta_from => 5.019008,
9587         changed => {
9588             'B'                     => '1.48',
9589             'B::Concise'            => '0.992',
9590             'B::Deparse'            => '1.25',
9591             'CGI'                   => '3.65',
9592             'CPAN::Meta::YAML'      => '0.011',
9593             'Compress::Raw::Bzip2'  => '2.064',
9594             'Compress::Raw::Zlib'   => '2.065',
9595             'Compress::Zlib'        => '2.064',
9596             'Config'                => '5.019009',
9597             'Config::Perl::V'       => '0.20',
9598             'Cwd'                   => '3.47',
9599             'Devel::Peek'           => '1.16',
9600             'Digest::SHA'           => '5.87',
9601             'DynaLoader'            => '1.25',
9602             'English'               => '1.09',
9603             'ExtUtils::CBuilder'    => '0.280216',
9604             'ExtUtils::CBuilder::Base'=> '0.280216',
9605             'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9606             'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9607             'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9608             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9609             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9610             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9611             'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9612             'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9613             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9614             'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9615             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9616             'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9617             'ExtUtils::Command::MM' => '6.88',
9618             'ExtUtils::Embed'       => '1.32',
9619             'ExtUtils::Install'     => '1.62',
9620             'ExtUtils::Installed'   => '1.999004',
9621             'ExtUtils::Liblist'     => '6.88',
9622             'ExtUtils::Liblist::Kid'=> '6.88',
9623             'ExtUtils::MM'          => '6.88',
9624             'ExtUtils::MM_AIX'      => '6.88',
9625             'ExtUtils::MM_Any'      => '6.88',
9626             'ExtUtils::MM_BeOS'     => '6.88',
9627             'ExtUtils::MM_Cygwin'   => '6.88',
9628             'ExtUtils::MM_DOS'      => '6.88',
9629             'ExtUtils::MM_Darwin'   => '6.88',
9630             'ExtUtils::MM_MacOS'    => '6.88',
9631             'ExtUtils::MM_NW5'      => '6.88',
9632             'ExtUtils::MM_OS2'      => '6.88',
9633             'ExtUtils::MM_QNX'      => '6.88',
9634             'ExtUtils::MM_UWIN'     => '6.88',
9635             'ExtUtils::MM_Unix'     => '6.88',
9636             'ExtUtils::MM_VMS'      => '6.88',
9637             'ExtUtils::MM_VOS'      => '6.88',
9638             'ExtUtils::MM_Win32'    => '6.88',
9639             'ExtUtils::MM_Win95'    => '6.88',
9640             'ExtUtils::MY'          => '6.88',
9641             'ExtUtils::MakeMaker'   => '6.88',
9642             'ExtUtils::MakeMaker::Config'=> '6.88',
9643             'ExtUtils::Mkbootstrap' => '6.88',
9644             'ExtUtils::Mksymlists'  => '6.88',
9645             'ExtUtils::Packlist'    => '1.47',
9646             'ExtUtils::testlib'     => '6.88',
9647             'Fatal'                 => '2.23',
9648             'File::Fetch'           => '0.48',
9649             'File::Spec'            => '3.47',
9650             'File::Spec::Cygwin'    => '3.47',
9651             'File::Spec::Epoc'      => '3.47',
9652             'File::Spec::Functions' => '3.47',
9653             'File::Spec::Mac'       => '3.47',
9654             'File::Spec::OS2'       => '3.47',
9655             'File::Spec::Unix'      => '3.47',
9656             'File::Spec::VMS'       => '3.47',
9657             'File::Spec::Win32'     => '3.47',
9658             'HTTP::Tiny'            => '0.042',
9659             'IO::Compress::Adapter::Bzip2'=> '2.064',
9660             'IO::Compress::Adapter::Deflate'=> '2.064',
9661             'IO::Compress::Adapter::Identity'=> '2.064',
9662             'IO::Compress::Base'    => '2.064',
9663             'IO::Compress::Base::Common'=> '2.064',
9664             'IO::Compress::Bzip2'   => '2.064',
9665             'IO::Compress::Deflate' => '2.064',
9666             'IO::Compress::Gzip'    => '2.064',
9667             'IO::Compress::Gzip::Constants'=> '2.064',
9668             'IO::Compress::RawDeflate'=> '2.064',
9669             'IO::Compress::Zip'     => '2.064',
9670             'IO::Compress::Zip::Constants'=> '2.064',
9671             'IO::Compress::Zlib::Constants'=> '2.064',
9672             'IO::Compress::Zlib::Extra'=> '2.064',
9673             'IO::Socket::INET'      => '1.35',
9674             'IO::Socket::IP'        => '0.28',
9675             'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9676             'IO::Uncompress::Adapter::Identity'=> '2.064',
9677             'IO::Uncompress::Adapter::Inflate'=> '2.064',
9678             'IO::Uncompress::AnyInflate'=> '2.064',
9679             'IO::Uncompress::AnyUncompress'=> '2.064',
9680             'IO::Uncompress::Base'  => '2.064',
9681             'IO::Uncompress::Bunzip2'=> '2.064',
9682             'IO::Uncompress::Gunzip'=> '2.064',
9683             'IO::Uncompress::Inflate'=> '2.064',
9684             'IO::Uncompress::RawInflate'=> '2.064',
9685             'IO::Uncompress::Unzip' => '2.064',
9686             'IPC::Cmd'              => '0.92',
9687             'List::Util'            => '1.38',
9688             'List::Util::XS'        => '1.38',
9689             'Locale::Codes'         => '3.29',
9690             'Locale::Codes::Constants'=> '3.29',
9691             'Locale::Codes::Country'=> '3.29',
9692             'Locale::Codes::Country_Codes'=> '3.29',
9693             'Locale::Codes::Country_Retired'=> '3.29',
9694             'Locale::Codes::Currency'=> '3.29',
9695             'Locale::Codes::Currency_Codes'=> '3.29',
9696             'Locale::Codes::Currency_Retired'=> '3.29',
9697             'Locale::Codes::LangExt'=> '3.29',
9698             'Locale::Codes::LangExt_Codes'=> '3.29',
9699             'Locale::Codes::LangExt_Retired'=> '3.29',
9700             'Locale::Codes::LangFam'=> '3.29',
9701             'Locale::Codes::LangFam_Codes'=> '3.29',
9702             'Locale::Codes::LangFam_Retired'=> '3.29',
9703             'Locale::Codes::LangVar'=> '3.29',
9704             'Locale::Codes::LangVar_Codes'=> '3.29',
9705             'Locale::Codes::LangVar_Retired'=> '3.29',
9706             'Locale::Codes::Language'=> '3.29',
9707             'Locale::Codes::Language_Codes'=> '3.29',
9708             'Locale::Codes::Language_Retired'=> '3.29',
9709             'Locale::Codes::Script' => '3.29',
9710             'Locale::Codes::Script_Codes'=> '3.29',
9711             'Locale::Codes::Script_Retired'=> '3.29',
9712             'Locale::Country'       => '3.29',
9713             'Locale::Currency'      => '3.29',
9714             'Locale::Language'      => '3.29',
9715             'Locale::Script'        => '3.29',
9716             'Module::Build'         => '0.4205',
9717             'Module::Build::Base'   => '0.4205',
9718             'Module::Build::Compat' => '0.4205',
9719             'Module::Build::Config' => '0.4205',
9720             'Module::Build::Cookbook'=> '0.4205',
9721             'Module::Build::Dumper' => '0.4205',
9722             'Module::Build::ModuleInfo'=> '0.4205',
9723             'Module::Build::Notes'  => '0.4205',
9724             'Module::Build::PPMMaker'=> '0.4205',
9725             'Module::Build::Platform::Default'=> '0.4205',
9726             'Module::Build::Platform::MacOS'=> '0.4205',
9727             'Module::Build::Platform::Unix'=> '0.4205',
9728             'Module::Build::Platform::VMS'=> '0.4205',
9729             'Module::Build::Platform::VOS'=> '0.4205',
9730             'Module::Build::Platform::Windows'=> '0.4205',
9731             'Module::Build::Platform::aix'=> '0.4205',
9732             'Module::Build::Platform::cygwin'=> '0.4205',
9733             'Module::Build::Platform::darwin'=> '0.4205',
9734             'Module::Build::Platform::os2'=> '0.4205',
9735             'Module::Build::PodParser'=> '0.4205',
9736             'Module::CoreList'      => '3.06',
9737             'Module::CoreList::TieHashDelta'=> '3.06',
9738             'Module::CoreList::Utils'=> '3.06',
9739             'Module::Load'          => '0.30',
9740             'Module::Load::Conditional'=> '0.62',
9741             'Net::Domain'           => '2.23',
9742             'Net::FTP'              => '2.79',
9743             'Net::NNTP'             => '2.26',
9744             'Net::POP3'             => '2.31',
9745             'Net::Ping'             => '2.43',
9746             'Net::SMTP'             => '2.33',
9747             'POSIX'                 => '1.38_02',
9748             'Parse::CPAN::Meta'     => '1.4413',
9749             'Pod::Escapes'          => '1.06',
9750             'Pod::Find'             => '1.62',
9751             'Pod::InputObjects'     => '1.62',
9752             'Pod::ParseUtils'       => '1.62',
9753             'Pod::Parser'           => '1.62',
9754             'Pod::Select'           => '1.62',
9755             'Scalar::Util'          => '1.38',
9756             'autodie'               => '2.23',
9757             'autodie::exception'    => '2.23',
9758             'autodie::exception::system'=> '2.23',
9759             'autodie::hints'        => '2.23',
9760             'autodie::skip'         => '2.23',
9761             'diagnostics'           => '1.34',
9762             'feature'               => '1.35',
9763             'inc::latest'           => '0.4205',
9764             'locale'                => '1.03',
9765             'mro'                   => '1.15',
9766             'threads'               => '1.92',
9767             'version'               => '0.9908',
9768             'version::regex'        => '0.9908',
9769             'version::vpp'          => '0.9908',
9770             'warnings'              => '1.22',
9771         },
9772         removed => {
9773         }
9774     },
9775     5.01901 => {
9776         delta_from => 5.019009,
9777         changed => {
9778             'App::Cpan'             => '1.62',
9779             'Attribute::Handlers'   => '0.96',
9780             'B::Deparse'            => '1.26',
9781             'CPAN'                  => '2.04',
9782             'CPAN::Bundle'          => '5.5001',
9783             'CPAN::Complete'        => '5.5001',
9784             'CPAN::Distribution'    => '2.01',
9785             'CPAN::Distroprefs'     => '6.0001',
9786             'CPAN::FirstTime'       => '5.5305',
9787             'CPAN::Meta'            => '2.140640',
9788             'CPAN::Meta::Converter' => '2.140640',
9789             'CPAN::Meta::Feature'   => '2.140640',
9790             'CPAN::Meta::History'   => '2.140640',
9791             'CPAN::Meta::Prereqs'   => '2.140640',
9792             'CPAN::Meta::Spec'      => '2.140640',
9793             'CPAN::Meta::Validator' => '2.140640',
9794             'CPAN::Meta::YAML'      => '0.012',
9795             'CPAN::Queue'           => '5.5002',
9796             'CPAN::Shell'           => '5.5003',
9797             'CPAN::Tarzip'          => '5.5012',
9798             'CPAN::Version'         => '5.5003',
9799             'Carp'                  => '1.33',
9800             'Carp::Heavy'           => '1.33',
9801             'Config'                => '5.019010',
9802             'Data::Dumper'          => '2.151',
9803             'Devel::PPPort'         => '3.22',
9804             'Digest::SHA'           => '5.88',
9805             'ExtUtils::Command::MM' => '6.92',
9806             'ExtUtils::Install'     => '1.63',
9807             'ExtUtils::Installed'   => '1.999005',
9808             'ExtUtils::Liblist'     => '6.92',
9809             'ExtUtils::Liblist::Kid'=> '6.92',
9810             'ExtUtils::MM'          => '6.92',
9811             'ExtUtils::MM_AIX'      => '6.92',
9812             'ExtUtils::MM_Any'      => '6.92',
9813             'ExtUtils::MM_BeOS'     => '6.92',
9814             'ExtUtils::MM_Cygwin'   => '6.92',
9815             'ExtUtils::MM_DOS'      => '6.92',
9816             'ExtUtils::MM_Darwin'   => '6.92',
9817             'ExtUtils::MM_MacOS'    => '6.92',
9818             'ExtUtils::MM_NW5'      => '6.92',
9819             'ExtUtils::MM_OS2'      => '6.92',
9820             'ExtUtils::MM_QNX'      => '6.92',
9821             'ExtUtils::MM_UWIN'     => '6.92',
9822             'ExtUtils::MM_Unix'     => '6.92',
9823             'ExtUtils::MM_VMS'      => '6.92',
9824             'ExtUtils::MM_VOS'      => '6.92',
9825             'ExtUtils::MM_Win32'    => '6.92',
9826             'ExtUtils::MM_Win95'    => '6.92',
9827             'ExtUtils::MY'          => '6.92',
9828             'ExtUtils::MakeMaker'   => '6.92',
9829             'ExtUtils::MakeMaker::Config'=> '6.92',
9830             'ExtUtils::Mkbootstrap' => '6.92',
9831             'ExtUtils::Mksymlists'  => '6.92',
9832             'ExtUtils::Packlist'    => '1.48',
9833             'ExtUtils::ParseXS'     => '3.24',
9834             'ExtUtils::ParseXS::Constants'=> '3.24',
9835             'ExtUtils::ParseXS::CountLines'=> '3.24',
9836             'ExtUtils::ParseXS::Eval'=> '3.24',
9837             'ExtUtils::ParseXS::Utilities'=> '3.24',
9838             'ExtUtils::Typemaps'    => '3.24',
9839             'ExtUtils::Typemaps::Cmd'=> '3.24',
9840             'ExtUtils::Typemaps::InputMap'=> '3.24',
9841             'ExtUtils::Typemaps::OutputMap'=> '3.24',
9842             'ExtUtils::Typemaps::Type'=> '3.24',
9843             'ExtUtils::testlib'     => '6.92',
9844             'File::Find'            => '1.27',
9845             'Filter::Simple'        => '0.91',
9846             'HTTP::Tiny'            => '0.043',
9847             'Hash::Util::FieldHash' => '1.15',
9848             'IO'                    => '1.31',
9849             'IO::Socket::IP'        => '0.29',
9850             'Locale::Codes'         => '3.30',
9851             'Locale::Codes::Constants'=> '3.30',
9852             'Locale::Codes::Country'=> '3.30',
9853             'Locale::Codes::Country_Codes'=> '3.30',
9854             'Locale::Codes::Country_Retired'=> '3.30',
9855             'Locale::Codes::Currency'=> '3.30',
9856             'Locale::Codes::Currency_Codes'=> '3.30',
9857             'Locale::Codes::Currency_Retired'=> '3.30',
9858             'Locale::Codes::LangExt'=> '3.30',
9859             'Locale::Codes::LangExt_Codes'=> '3.30',
9860             'Locale::Codes::LangExt_Retired'=> '3.30',
9861             'Locale::Codes::LangFam'=> '3.30',
9862             'Locale::Codes::LangFam_Codes'=> '3.30',
9863             'Locale::Codes::LangFam_Retired'=> '3.30',
9864             'Locale::Codes::LangVar'=> '3.30',
9865             'Locale::Codes::LangVar_Codes'=> '3.30',
9866             'Locale::Codes::LangVar_Retired'=> '3.30',
9867             'Locale::Codes::Language'=> '3.30',
9868             'Locale::Codes::Language_Codes'=> '3.30',
9869             'Locale::Codes::Language_Retired'=> '3.30',
9870             'Locale::Codes::Script' => '3.30',
9871             'Locale::Codes::Script_Codes'=> '3.30',
9872             'Locale::Codes::Script_Retired'=> '3.30',
9873             'Locale::Country'       => '3.30',
9874             'Locale::Currency'      => '3.30',
9875             'Locale::Language'      => '3.30',
9876             'Locale::Script'        => '3.30',
9877             'Module::CoreList'      => '3.09',
9878             'Module::CoreList::TieHashDelta'=> '3.09',
9879             'Module::CoreList::Utils'=> '3.09',
9880             'Module::Load'          => '0.32',
9881             'POSIX'                 => '1.38_03',
9882             'Parse::CPAN::Meta'     => '1.4414',
9883             'Pod::Perldoc'          => '3.23',
9884             'Pod::Perldoc::BaseTo'  => '3.23',
9885             'Pod::Perldoc::GetOptsOO'=> '3.23',
9886             'Pod::Perldoc::ToANSI'  => '3.23',
9887             'Pod::Perldoc::ToChecker'=> '3.23',
9888             'Pod::Perldoc::ToMan'   => '3.23',
9889             'Pod::Perldoc::ToNroff' => '3.23',
9890             'Pod::Perldoc::ToPod'   => '3.23',
9891             'Pod::Perldoc::ToRtf'   => '3.23',
9892             'Pod::Perldoc::ToTerm'  => '3.23',
9893             'Pod::Perldoc::ToText'  => '3.23',
9894             'Pod::Perldoc::ToTk'    => '3.23',
9895             'Pod::Perldoc::ToXml'   => '3.23',
9896             'Thread::Queue'         => '3.05',
9897             'XS::APItest'           => '0.60',
9898             'XS::Typemap'           => '0.13',
9899             'autouse'               => '1.08',
9900             'base'                  => '2.22',
9901             'charnames'             => '1.40',
9902             'feature'               => '1.36',
9903             'mro'                   => '1.16',
9904             'threads'               => '1.93',
9905             'warnings'              => '1.23',
9906             'warnings::register'    => '1.03',
9907         },
9908         removed => {
9909         }
9910     },
9911     5.019011 => {
9912         delta_from => 5.01901,
9913         changed => {
9914             'CPAN'                  => '2.05',
9915             'CPAN::Distribution'    => '2.02',
9916             'CPAN::FirstTime'       => '5.5306',
9917             'CPAN::Shell'           => '5.5004',
9918             'Carp'                  => '1.3301',
9919             'Carp::Heavy'           => '1.3301',
9920             'Config'                => '5.019011',
9921             'ExtUtils::Command::MM' => '6.94',
9922             'ExtUtils::Install'     => '1.67',
9923             'ExtUtils::Liblist'     => '6.94',
9924             'ExtUtils::Liblist::Kid'=> '6.94',
9925             'ExtUtils::MM'          => '6.94',
9926             'ExtUtils::MM_AIX'      => '6.94',
9927             'ExtUtils::MM_Any'      => '6.94',
9928             'ExtUtils::MM_BeOS'     => '6.94',
9929             'ExtUtils::MM_Cygwin'   => '6.94',
9930             'ExtUtils::MM_DOS'      => '6.94',
9931             'ExtUtils::MM_Darwin'   => '6.94',
9932             'ExtUtils::MM_MacOS'    => '6.94',
9933             'ExtUtils::MM_NW5'      => '6.94',
9934             'ExtUtils::MM_OS2'      => '6.94',
9935             'ExtUtils::MM_QNX'      => '6.94',
9936             'ExtUtils::MM_UWIN'     => '6.94',
9937             'ExtUtils::MM_Unix'     => '6.94',
9938             'ExtUtils::MM_VMS'      => '6.94',
9939             'ExtUtils::MM_VOS'      => '6.94',
9940             'ExtUtils::MM_Win32'    => '6.94',
9941             'ExtUtils::MM_Win95'    => '6.94',
9942             'ExtUtils::MY'          => '6.94',
9943             'ExtUtils::MakeMaker'   => '6.94',
9944             'ExtUtils::MakeMaker::Config'=> '6.94',
9945             'ExtUtils::Mkbootstrap' => '6.94',
9946             'ExtUtils::Mksymlists'  => '6.94',
9947             'ExtUtils::testlib'     => '6.94',
9948             'Module::CoreList'      => '3.10',
9949             'Module::CoreList::TieHashDelta'=> '3.10',
9950             'Module::CoreList::Utils'=> '3.10',
9951             'PerlIO'                => '1.09',
9952             'Storable'              => '2.49',
9953             'Win32'                 => '0.49',
9954             'experimental'          => '0.007',
9955         },
9956         removed => {
9957         }
9958     },
9959     5.020000 => {
9960         delta_from => 5.019011,
9961         changed => {
9962             'Config'                => '5.02',
9963             'Devel::PPPort'         => '3.21',
9964             'Encode'                => '2.60',
9965             'Errno'                 => '1.20_03',
9966             'ExtUtils::Command::MM' => '6.98',
9967             'ExtUtils::Liblist'     => '6.98',
9968             'ExtUtils::Liblist::Kid'=> '6.98',
9969             'ExtUtils::MM'          => '6.98',
9970             'ExtUtils::MM_AIX'      => '6.98',
9971             'ExtUtils::MM_Any'      => '6.98',
9972             'ExtUtils::MM_BeOS'     => '6.98',
9973             'ExtUtils::MM_Cygwin'   => '6.98',
9974             'ExtUtils::MM_DOS'      => '6.98',
9975             'ExtUtils::MM_Darwin'   => '6.98',
9976             'ExtUtils::MM_MacOS'    => '6.98',
9977             'ExtUtils::MM_NW5'      => '6.98',
9978             'ExtUtils::MM_OS2'      => '6.98',
9979             'ExtUtils::MM_QNX'      => '6.98',
9980             'ExtUtils::MM_UWIN'     => '6.98',
9981             'ExtUtils::MM_Unix'     => '6.98',
9982             'ExtUtils::MM_VMS'      => '6.98',
9983             'ExtUtils::MM_VOS'      => '6.98',
9984             'ExtUtils::MM_Win32'    => '6.98',
9985             'ExtUtils::MM_Win95'    => '6.98',
9986             'ExtUtils::MY'          => '6.98',
9987             'ExtUtils::MakeMaker'   => '6.98',
9988             'ExtUtils::MakeMaker::Config'=> '6.98',
9989             'ExtUtils::Miniperl'    => '1.01',
9990             'ExtUtils::Mkbootstrap' => '6.98',
9991             'ExtUtils::Mksymlists'  => '6.98',
9992             'ExtUtils::testlib'     => '6.98',
9993             'Pod::Functions::Functions'=> '1.08',
9994         },
9995         removed => {
9996         }
9997     },
9998     5.021000 => {
9999         delta_from => 5.020000,
10000         changed => {
10001             'Module::CoreList'      => '5.021001',
10002             'Module::CoreList::TieHashDelta'=> '5.021001',
10003             'Module::CoreList::Utils'=> '5.021001',
10004             'feature'               => '1.37',
10005         },
10006         removed => {
10007             'CGI'                   => 1,
10008             'CGI::Apache'           => 1,
10009             'CGI::Carp'             => 1,
10010             'CGI::Cookie'           => 1,
10011             'CGI::Fast'             => 1,
10012             'CGI::Pretty'           => 1,
10013             'CGI::Push'             => 1,
10014             'CGI::Switch'           => 1,
10015             'CGI::Util'             => 1,
10016             'Module::Build'         => 1,
10017             'Module::Build::Base'   => 1,
10018             'Module::Build::Compat' => 1,
10019             'Module::Build::Config' => 1,
10020             'Module::Build::ConfigData'=> 1,
10021             'Module::Build::Cookbook'=> 1,
10022             'Module::Build::Dumper' => 1,
10023             'Module::Build::ModuleInfo'=> 1,
10024             'Module::Build::Notes'  => 1,
10025             'Module::Build::PPMMaker'=> 1,
10026             'Module::Build::Platform::Default'=> 1,
10027             'Module::Build::Platform::MacOS'=> 1,
10028             'Module::Build::Platform::Unix'=> 1,
10029             'Module::Build::Platform::VMS'=> 1,
10030             'Module::Build::Platform::VOS'=> 1,
10031             'Module::Build::Platform::Windows'=> 1,
10032             'Module::Build::Platform::aix'=> 1,
10033             'Module::Build::Platform::cygwin'=> 1,
10034             'Module::Build::Platform::darwin'=> 1,
10035             'Module::Build::Platform::os2'=> 1,
10036             'Module::Build::PodParser'=> 1,
10037             'Module::Build::Version'=> 1,
10038             'Module::Build::YAML'   => 1,
10039             'Package::Constants'    => 1,
10040             'inc::latest'           => 1,
10041         }
10042     },
10043     5.021001 => {
10044         delta_from => 5.021000,
10045         changed => {
10046             'App::Prove'            => '3.32',
10047             'App::Prove::State'     => '3.32',
10048             'App::Prove::State::Result'=> '3.32',
10049             'App::Prove::State::Result::Test'=> '3.32',
10050             'Archive::Tar'          => '2.00',
10051             'Archive::Tar::Constant'=> '2.00',
10052             'Archive::Tar::File'    => '2.00',
10053             'B'                     => '1.49',
10054             'B::Deparse'            => '1.27',
10055             'Benchmark'             => '1.19',
10056             'CPAN::Meta'            => '2.141520',
10057             'CPAN::Meta::Converter' => '2.141520',
10058             'CPAN::Meta::Feature'   => '2.141520',
10059             'CPAN::Meta::History'   => '2.141520',
10060             'CPAN::Meta::Prereqs'   => '2.141520',
10061             'CPAN::Meta::Spec'      => '2.141520',
10062             'CPAN::Meta::Validator' => '2.141520',
10063             'Carp'                  => '1.34',
10064             'Carp::Heavy'           => '1.34',
10065             'Config'                => '5.021001',
10066             'Cwd'                   => '3.48',
10067             'Data::Dumper'          => '2.152',
10068             'Devel::PPPort'         => '3.24',
10069             'Devel::Peek'           => '1.17',
10070             'Digest::SHA'           => '5.92',
10071             'DynaLoader'            => '1.26',
10072             'Encode'                => '2.62',
10073             'Errno'                 => '1.20_04',
10074             'Exporter'              => '5.71',
10075             'Exporter::Heavy'       => '5.71',
10076             'ExtUtils::Install'     => '1.68',
10077             'ExtUtils::Miniperl'    => '1.02',
10078             'ExtUtils::ParseXS'     => '3.25',
10079             'ExtUtils::ParseXS::Constants'=> '3.25',
10080             'ExtUtils::ParseXS::CountLines'=> '3.25',
10081             'ExtUtils::ParseXS::Eval'=> '3.25',
10082             'ExtUtils::ParseXS::Utilities'=> '3.25',
10083             'ExtUtils::Typemaps'    => '3.25',
10084             'ExtUtils::Typemaps::Cmd'=> '3.25',
10085             'ExtUtils::Typemaps::InputMap'=> '3.25',
10086             'ExtUtils::Typemaps::OutputMap'=> '3.25',
10087             'ExtUtils::Typemaps::Type'=> '3.25',
10088             'Fatal'                 => '2.25',
10089             'File::Spec'            => '3.48',
10090             'File::Spec::Cygwin'    => '3.48',
10091             'File::Spec::Epoc'      => '3.48',
10092             'File::Spec::Functions' => '3.48',
10093             'File::Spec::Mac'       => '3.48',
10094             'File::Spec::OS2'       => '3.48',
10095             'File::Spec::Unix'      => '3.48',
10096             'File::Spec::VMS'       => '3.48',
10097             'File::Spec::Win32'     => '3.48',
10098             'Hash::Util'            => '0.17',
10099             'IO'                    => '1.32',
10100             'List::Util'            => '1.39',
10101             'List::Util::XS'        => '1.39',
10102             'Locale::Codes'         => '3.31',
10103             'Locale::Codes::Constants'=> '3.31',
10104             'Locale::Codes::Country'=> '3.31',
10105             'Locale::Codes::Country_Codes'=> '3.31',
10106             'Locale::Codes::Country_Retired'=> '3.31',
10107             'Locale::Codes::Currency'=> '3.31',
10108             'Locale::Codes::Currency_Codes'=> '3.31',
10109             'Locale::Codes::Currency_Retired'=> '3.31',
10110             'Locale::Codes::LangExt'=> '3.31',
10111             'Locale::Codes::LangExt_Codes'=> '3.31',
10112             'Locale::Codes::LangExt_Retired'=> '3.31',
10113             'Locale::Codes::LangFam'=> '3.31',
10114             'Locale::Codes::LangFam_Codes'=> '3.31',
10115             'Locale::Codes::LangFam_Retired'=> '3.31',
10116             'Locale::Codes::LangVar'=> '3.31',
10117             'Locale::Codes::LangVar_Codes'=> '3.31',
10118             'Locale::Codes::LangVar_Retired'=> '3.31',
10119             'Locale::Codes::Language'=> '3.31',
10120             'Locale::Codes::Language_Codes'=> '3.31',
10121             'Locale::Codes::Language_Retired'=> '3.31',
10122             'Locale::Codes::Script' => '3.31',
10123             'Locale::Codes::Script_Codes'=> '3.31',
10124             'Locale::Codes::Script_Retired'=> '3.31',
10125             'Locale::Country'       => '3.31',
10126             'Locale::Currency'      => '3.31',
10127             'Locale::Language'      => '3.31',
10128             'Locale::Script'        => '3.31',
10129             'Math::BigFloat'        => '1.9994',
10130             'Math::BigInt'          => '1.9995',
10131             'Math::BigInt::Calc'    => '1.9994',
10132             'Math::BigInt::CalcEmu' => '1.9994',
10133             'Math::BigRat'          => '0.2608',
10134             'Module::CoreList'      => '5.021001_01',
10135             'Module::CoreList::TieHashDelta'=> '5.021001_01',
10136             'Module::CoreList::Utils'=> '5.021001_01',
10137             'Module::Metadata'      => '1.000024',
10138             'NDBM_File'             => '1.13',
10139             'Net::Config'           => '1.14',
10140             'Net::SMTP'             => '2.34',
10141             'Net::Time'             => '2.11',
10142             'OS2::Process'          => '1.10',
10143             'POSIX'                 => '1.40',
10144             'PerlIO::encoding'      => '0.19',
10145             'PerlIO::mmap'          => '0.013',
10146             'PerlIO::scalar'        => '0.19',
10147             'PerlIO::via'           => '0.15',
10148             'Pod::Html'             => '1.22',
10149             'Scalar::Util'          => '1.39',
10150             'SelfLoader'            => '1.22',
10151             'Socket'                => '2.014',
10152             'Storable'              => '2.51',
10153             'TAP::Base'             => '3.32',
10154             'TAP::Formatter::Base'  => '3.32',
10155             'TAP::Formatter::Color' => '3.32',
10156             'TAP::Formatter::Console'=> '3.32',
10157             'TAP::Formatter::Console::ParallelSession'=> '3.32',
10158             'TAP::Formatter::Console::Session'=> '3.32',
10159             'TAP::Formatter::File'  => '3.32',
10160             'TAP::Formatter::File::Session'=> '3.32',
10161             'TAP::Formatter::Session'=> '3.32',
10162             'TAP::Harness'          => '3.32',
10163             'TAP::Harness::Env'     => '3.32',
10164             'TAP::Object'           => '3.32',
10165             'TAP::Parser'           => '3.32',
10166             'TAP::Parser::Aggregator'=> '3.32',
10167             'TAP::Parser::Grammar'  => '3.32',
10168             'TAP::Parser::Iterator' => '3.32',
10169             'TAP::Parser::Iterator::Array'=> '3.32',
10170             'TAP::Parser::Iterator::Process'=> '3.32',
10171             'TAP::Parser::Iterator::Stream'=> '3.32',
10172             'TAP::Parser::IteratorFactory'=> '3.32',
10173             'TAP::Parser::Multiplexer'=> '3.32',
10174             'TAP::Parser::Result'   => '3.32',
10175             'TAP::Parser::Result::Bailout'=> '3.32',
10176             'TAP::Parser::Result::Comment'=> '3.32',
10177             'TAP::Parser::Result::Plan'=> '3.32',
10178             'TAP::Parser::Result::Pragma'=> '3.32',
10179             'TAP::Parser::Result::Test'=> '3.32',
10180             'TAP::Parser::Result::Unknown'=> '3.32',
10181             'TAP::Parser::Result::Version'=> '3.32',
10182             'TAP::Parser::Result::YAML'=> '3.32',
10183             'TAP::Parser::ResultFactory'=> '3.32',
10184             'TAP::Parser::Scheduler'=> '3.32',
10185             'TAP::Parser::Scheduler::Job'=> '3.32',
10186             'TAP::Parser::Scheduler::Spinner'=> '3.32',
10187             'TAP::Parser::Source'   => '3.32',
10188             'TAP::Parser::SourceHandler'=> '3.32',
10189             'TAP::Parser::SourceHandler::Executable'=> '3.32',
10190             'TAP::Parser::SourceHandler::File'=> '3.32',
10191             'TAP::Parser::SourceHandler::Handle'=> '3.32',
10192             'TAP::Parser::SourceHandler::Perl'=> '3.32',
10193             'TAP::Parser::SourceHandler::RawTAP'=> '3.32',
10194             'TAP::Parser::YAMLish::Reader'=> '3.32',
10195             'TAP::Parser::YAMLish::Writer'=> '3.32',
10196             'Term::ANSIColor'       => '4.03',
10197             'Test::Builder'         => '1.001003',
10198             'Test::Builder::Module' => '1.001003',
10199             'Test::Builder::Tester' => '1.23_003',
10200             'Test::Harness'         => '3.32',
10201             'Test::More'            => '1.001003',
10202             'Test::Simple'          => '1.001003',
10203             'Tie::File'             => '1.01',
10204             'Unicode'               => '7.0.0',
10205             'Unicode::Collate'      => '1.07',
10206             'Unicode::Normalize'    => '1.18',
10207             'Unicode::UCD'          => '0.58',
10208             'XS::APItest'           => '0.61',
10209             '_charnames'            => '1.41',
10210             'autodie'               => '2.25',
10211             'autodie::Scope::Guard' => '2.25',
10212             'autodie::Scope::GuardStack'=> '2.25',
10213             'autodie::ScopeUtil'    => '2.25',
10214             'autodie::exception'    => '2.25',
10215             'autodie::exception::system'=> '2.25',
10216             'autodie::hints'        => '2.25',
10217             'autodie::skip'         => '2.25',
10218             'charnames'             => '1.41',
10219             'locale'                => '1.04',
10220             'threads'               => '1.94',
10221             'utf8'                  => '1.14',
10222             'warnings'              => '1.24',
10223         },
10224         removed => {
10225         }
10226     },
10227     5.021002 => {
10228         delta_from => 5.021001,
10229         changed => {
10230             'B'                     => '1.50',
10231             'Config'                => '5.021002',
10232             'Cwd'                   => '3.49',
10233             'Devel::Peek'           => '1.18',
10234             'ExtUtils::Manifest'    => '1.64',
10235             'File::Copy'            => '2.30',
10236             'File::Spec'            => '3.49',
10237             'File::Spec::Cygwin'    => '3.49',
10238             'File::Spec::Epoc'      => '3.49',
10239             'File::Spec::Functions' => '3.49',
10240             'File::Spec::Mac'       => '3.49',
10241             'File::Spec::OS2'       => '3.49',
10242             'File::Spec::Unix'      => '3.49',
10243             'File::Spec::VMS'       => '3.49',
10244             'File::Spec::Win32'     => '3.49',
10245             'Filter::Simple'        => '0.92',
10246             'Hash::Util'            => '0.18',
10247             'IO'                    => '1.33',
10248             'IO::Socket::IP'        => '0.31',
10249             'IPC::Open3'            => '1.17',
10250             'Math::BigFloat'        => '1.9996',
10251             'Math::BigInt'          => '1.9996',
10252             'Math::BigInt::Calc'    => '1.9996',
10253             'Math::BigInt::CalcEmu' => '1.9996',
10254             'Module::CoreList'      => '5.021002',
10255             'Module::CoreList::TieHashDelta'=> '5.021002',
10256             'Module::CoreList::Utils'=> '5.021002',
10257             'POSIX'                 => '1.41',
10258             'Pod::Usage'            => '1.64',
10259             'XS::APItest'           => '0.62',
10260             'arybase'               => '0.08',
10261             'experimental'          => '0.008',
10262             'threads'               => '1.95',
10263             'warnings'              => '1.26',
10264         },
10265         removed => {
10266         }
10267     },
10268     5.021003 => {
10269         delta_from => 5.021002,
10270         changed => {
10271             'B::Debug'              => '1.21',
10272             'CPAN::Meta'            => '2.142060',
10273             'CPAN::Meta::Converter' => '2.142060',
10274             'CPAN::Meta::Feature'   => '2.142060',
10275             'CPAN::Meta::History'   => '2.142060',
10276             'CPAN::Meta::Merge'     => '2.142060',
10277             'CPAN::Meta::Prereqs'   => '2.142060',
10278             'CPAN::Meta::Requirements'=> '2.126',
10279             'CPAN::Meta::Spec'      => '2.142060',
10280             'CPAN::Meta::Validator' => '2.142060',
10281             'Config'                => '5.021003',
10282             'Config::Perl::V'       => '0.22',
10283             'ExtUtils::CBuilder'    => '0.280217',
10284             'ExtUtils::CBuilder::Base'=> '0.280217',
10285             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10286             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10287             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10288             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10289             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10290             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10291             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10292             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10293             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10294             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10295             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10296             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10297             'ExtUtils::Manifest'    => '1.65',
10298             'HTTP::Tiny'            => '0.047',
10299             'IPC::Open3'            => '1.18',
10300             'Module::CoreList'      => '5.021003',
10301             'Module::CoreList::TieHashDelta'=> '5.021003',
10302             'Module::CoreList::Utils'=> '5.021003',
10303             'Opcode'                => '1.28',
10304             'POSIX'                 => '1.42',
10305             'Safe'                  => '2.38',
10306             'Socket'                => '2.015',
10307             'Sys::Hostname'         => '1.19',
10308             'UNIVERSAL'             => '1.12',
10309             'XS::APItest'           => '0.63',
10310             'perlfaq'               => '5.0150045',
10311         },
10312         removed => {
10313         }
10314     },
10315     5.020001 => {
10316         delta_from => 5.020000,
10317         changed => {
10318             'Config'                => '5.020001',
10319             'Config::Perl::V'       => '0.22',
10320             'Cwd'                   => '3.48',
10321             'Exporter'              => '5.71',
10322             'Exporter::Heavy'       => '5.71',
10323             'ExtUtils::CBuilder'    => '0.280217',
10324             'ExtUtils::CBuilder::Base'=> '0.280217',
10325             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10326             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10327             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10328             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10329             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10330             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10331             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10332             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10333             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10334             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10335             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10336             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10337             'File::Copy'            => '2.30',
10338             'File::Spec'            => '3.48',
10339             'File::Spec::Cygwin'    => '3.48',
10340             'File::Spec::Epoc'      => '3.48',
10341             'File::Spec::Functions' => '3.48',
10342             'File::Spec::Mac'       => '3.48',
10343             'File::Spec::OS2'       => '3.48',
10344             'File::Spec::Unix'      => '3.48',
10345             'File::Spec::VMS'       => '3.48',
10346             'File::Spec::Win32'     => '3.48',
10347             'Module::CoreList'      => '5.020001',
10348             'Module::CoreList::TieHashDelta'=> '5.020001',
10349             'Module::CoreList::Utils'=> '5.020001',
10350             'PerlIO::via'           => '0.15',
10351             'Unicode::UCD'          => '0.58',
10352             'XS::APItest'           => '0.60_01',
10353             'utf8'                  => '1.13_01',
10354             'version'               => '0.9909',
10355             'version::regex'        => '0.9909',
10356             'version::vpp'          => '0.9909',
10357         },
10358         removed => {
10359         }
10360     },
10361     5.021004 => {
10362         delta_from => 5.021003,
10363         changed => {
10364             'App::Prove'            => '3.33',
10365             'App::Prove::State'     => '3.33',
10366             'App::Prove::State::Result'=> '3.33',
10367             'App::Prove::State::Result::Test'=> '3.33',
10368             'Archive::Tar'          => '2.02',
10369             'Archive::Tar::Constant'=> '2.02',
10370             'Archive::Tar::File'    => '2.02',
10371             'Attribute::Handlers'   => '0.97',
10372             'B'                     => '1.51',
10373             'B::Concise'            => '0.993',
10374             'B::Deparse'            => '1.28',
10375             'B::Op_private'         => '5.021004',
10376             'CPAN::Meta::Requirements'=> '2.128',
10377             'Config'                => '5.021004',
10378             'Cwd'                   => '3.50',
10379             'Data::Dumper'          => '2.154',
10380             'ExtUtils::CBuilder'    => '0.280219',
10381             'ExtUtils::CBuilder::Base'=> '0.280219',
10382             'ExtUtils::CBuilder::Platform::Unix'=> '0.280219',
10383             'ExtUtils::CBuilder::Platform::VMS'=> '0.280219',
10384             'ExtUtils::CBuilder::Platform::Windows'=> '0.280219',
10385             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219',
10386             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219',
10387             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219',
10388             'ExtUtils::CBuilder::Platform::aix'=> '0.280219',
10389             'ExtUtils::CBuilder::Platform::android'=> '0.280219',
10390             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219',
10391             'ExtUtils::CBuilder::Platform::darwin'=> '0.280219',
10392             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219',
10393             'ExtUtils::CBuilder::Platform::os2'=> '0.280219',
10394             'ExtUtils::Install'     => '2.04',
10395             'ExtUtils::Installed'   => '2.04',
10396             'ExtUtils::Liblist::Kid'=> '6.98_01',
10397             'ExtUtils::Manifest'    => '1.68',
10398             'ExtUtils::Packlist'    => '2.04',
10399             'File::Find'            => '1.28',
10400             'File::Spec'            => '3.50',
10401             'File::Spec::Cygwin'    => '3.50',
10402             'File::Spec::Epoc'      => '3.50',
10403             'File::Spec::Functions' => '3.50',
10404             'File::Spec::Mac'       => '3.50',
10405             'File::Spec::OS2'       => '3.50',
10406             'File::Spec::Unix'      => '3.50',
10407             'File::Spec::VMS'       => '3.50',
10408             'File::Spec::Win32'     => '3.50',
10409             'Getopt::Std'           => '1.11',
10410             'HTTP::Tiny'            => '0.049',
10411             'IO'                    => '1.34',
10412             'IO::Socket::IP'        => '0.32',
10413             'List::Util'            => '1.41',
10414             'List::Util::XS'        => '1.41',
10415             'Locale::Codes'         => '3.32',
10416             'Locale::Codes::Constants'=> '3.32',
10417             'Locale::Codes::Country'=> '3.32',
10418             'Locale::Codes::Country_Codes'=> '3.32',
10419             'Locale::Codes::Country_Retired'=> '3.32',
10420             'Locale::Codes::Currency'=> '3.32',
10421             'Locale::Codes::Currency_Codes'=> '3.32',
10422             'Locale::Codes::Currency_Retired'=> '3.32',
10423             'Locale::Codes::LangExt'=> '3.32',
10424             'Locale::Codes::LangExt_Codes'=> '3.32',
10425             'Locale::Codes::LangExt_Retired'=> '3.32',
10426             'Locale::Codes::LangFam'=> '3.32',
10427             'Locale::Codes::LangFam_Codes'=> '3.32',
10428             'Locale::Codes::LangFam_Retired'=> '3.32',
10429             'Locale::Codes::LangVar'=> '3.32',
10430             'Locale::Codes::LangVar_Codes'=> '3.32',
10431             'Locale::Codes::LangVar_Retired'=> '3.32',
10432             'Locale::Codes::Language'=> '3.32',
10433             'Locale::Codes::Language_Codes'=> '3.32',
10434             'Locale::Codes::Language_Retired'=> '3.32',
10435             'Locale::Codes::Script' => '3.32',
10436             'Locale::Codes::Script_Codes'=> '3.32',
10437             'Locale::Codes::Script_Retired'=> '3.32',
10438             'Locale::Country'       => '3.32',
10439             'Locale::Currency'      => '3.32',
10440             'Locale::Language'      => '3.32',
10441             'Locale::Script'        => '3.32',
10442             'Math::BigFloat'        => '1.9997',
10443             'Math::BigInt'          => '1.9997',
10444             'Math::BigInt::Calc'    => '1.9997',
10445             'Math::BigInt::CalcEmu' => '1.9997',
10446             'Module::CoreList'      => '5.20140920',
10447             'Module::CoreList::TieHashDelta'=> '5.20140920',
10448             'Module::CoreList::Utils'=> '5.20140920',
10449             'POSIX'                 => '1.43',
10450             'Pod::Perldoc'          => '3.24',
10451             'Pod::Perldoc::BaseTo'  => '3.24',
10452             'Pod::Perldoc::GetOptsOO'=> '3.24',
10453             'Pod::Perldoc::ToANSI'  => '3.24',
10454             'Pod::Perldoc::ToChecker'=> '3.24',
10455             'Pod::Perldoc::ToMan'   => '3.24',
10456             'Pod::Perldoc::ToNroff' => '3.24',
10457             'Pod::Perldoc::ToPod'   => '3.24',
10458             'Pod::Perldoc::ToRtf'   => '3.24',
10459             'Pod::Perldoc::ToTerm'  => '3.24',
10460             'Pod::Perldoc::ToText'  => '3.24',
10461             'Pod::Perldoc::ToTk'    => '3.24',
10462             'Pod::Perldoc::ToXml'   => '3.24',
10463             'Scalar::Util'          => '1.41',
10464             'Sub::Util'             => '1.41',
10465             'TAP::Base'             => '3.33',
10466             'TAP::Formatter::Base'  => '3.33',
10467             'TAP::Formatter::Color' => '3.33',
10468             'TAP::Formatter::Console'=> '3.33',
10469             'TAP::Formatter::Console::ParallelSession'=> '3.33',
10470             'TAP::Formatter::Console::Session'=> '3.33',
10471             'TAP::Formatter::File'  => '3.33',
10472             'TAP::Formatter::File::Session'=> '3.33',
10473             'TAP::Formatter::Session'=> '3.33',
10474             'TAP::Harness'          => '3.33',
10475             'TAP::Harness::Env'     => '3.33',
10476             'TAP::Object'           => '3.33',
10477             'TAP::Parser'           => '3.33',
10478             'TAP::Parser::Aggregator'=> '3.33',
10479             'TAP::Parser::Grammar'  => '3.33',
10480             'TAP::Parser::Iterator' => '3.33',
10481             'TAP::Parser::Iterator::Array'=> '3.33',
10482             'TAP::Parser::Iterator::Process'=> '3.33',
10483             'TAP::Parser::Iterator::Stream'=> '3.33',
10484             'TAP::Parser::IteratorFactory'=> '3.33',
10485             'TAP::Parser::Multiplexer'=> '3.33',
10486             'TAP::Parser::Result'   => '3.33',
10487             'TAP::Parser::Result::Bailout'=> '3.33',
10488             'TAP::Parser::Result::Comment'=> '3.33',
10489             'TAP::Parser::Result::Plan'=> '3.33',
10490             'TAP::Parser::Result::Pragma'=> '3.33',
10491             'TAP::Parser::Result::Test'=> '3.33',
10492             'TAP::Parser::Result::Unknown'=> '3.33',
10493             'TAP::Parser::Result::Version'=> '3.33',
10494             'TAP::Parser::Result::YAML'=> '3.33',
10495             'TAP::Parser::ResultFactory'=> '3.33',
10496             'TAP::Parser::Scheduler'=> '3.33',
10497             'TAP::Parser::Scheduler::Job'=> '3.33',
10498             'TAP::Parser::Scheduler::Spinner'=> '3.33',
10499             'TAP::Parser::Source'   => '3.33',
10500             'TAP::Parser::SourceHandler'=> '3.33',
10501             'TAP::Parser::SourceHandler::Executable'=> '3.33',
10502             'TAP::Parser::SourceHandler::File'=> '3.33',
10503             'TAP::Parser::SourceHandler::Handle'=> '3.33',
10504             'TAP::Parser::SourceHandler::Perl'=> '3.33',
10505             'TAP::Parser::SourceHandler::RawTAP'=> '3.33',
10506             'TAP::Parser::YAMLish::Reader'=> '3.33',
10507             'TAP::Parser::YAMLish::Writer'=> '3.33',
10508             'Term::ReadLine'        => '1.15',
10509             'Test::Builder'         => '1.001006',
10510             'Test::Builder::Module' => '1.001006',
10511             'Test::Builder::Tester' => '1.24',
10512             'Test::Builder::Tester::Color'=> '1.24',
10513             'Test::Harness'         => '3.33',
10514             'Test::More'            => '1.001006',
10515             'Test::Simple'          => '1.001006',
10516             'Time::Piece'           => '1.29',
10517             'Time::Seconds'         => '1.29',
10518             'XS::APItest'           => '0.64',
10519             '_charnames'            => '1.42',
10520             'attributes'            => '0.23',
10521             'bigint'                => '0.37',
10522             'bignum'                => '0.38',
10523             'bigrat'                => '0.37',
10524             'constant'              => '1.32',
10525             'experimental'          => '0.010',
10526             'overload'              => '1.23',
10527             'threads'               => '1.96',
10528             'version'               => '0.9909',
10529             'version::regex'        => '0.9909',
10530             'version::vpp'          => '0.9909',
10531         },
10532         removed => {
10533         }
10534     },
10535     5.021005 => {
10536         delta_from => 5.021004,
10537         changed => {
10538             'B'                     => '1.52',
10539             'B::Concise'            => '0.994',
10540             'B::Debug'              => '1.22',
10541             'B::Deparse'            => '1.29',
10542             'B::Op_private'         => '5.021005',
10543             'CPAN::Meta'            => '2.142690',
10544             'CPAN::Meta::Converter' => '2.142690',
10545             'CPAN::Meta::Feature'   => '2.142690',
10546             'CPAN::Meta::History'   => '2.142690',
10547             'CPAN::Meta::Merge'     => '2.142690',
10548             'CPAN::Meta::Prereqs'   => '2.142690',
10549             'CPAN::Meta::Spec'      => '2.142690',
10550             'CPAN::Meta::Validator' => '2.142690',
10551             'Compress::Raw::Bzip2'  => '2.066',
10552             'Compress::Raw::Zlib'   => '2.066',
10553             'Compress::Zlib'        => '2.066',
10554             'Config'                => '5.021005',
10555             'Cwd'                   => '3.51',
10556             'DynaLoader'            => '1.27',
10557             'Errno'                 => '1.21',
10558             'ExtUtils::CBuilder'    => '0.280220',
10559             'ExtUtils::CBuilder::Base'=> '0.280220',
10560             'ExtUtils::CBuilder::Platform::Unix'=> '0.280220',
10561             'ExtUtils::CBuilder::Platform::VMS'=> '0.280220',
10562             'ExtUtils::CBuilder::Platform::Windows'=> '0.280220',
10563             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220',
10564             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220',
10565             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220',
10566             'ExtUtils::CBuilder::Platform::aix'=> '0.280220',
10567             'ExtUtils::CBuilder::Platform::android'=> '0.280220',
10568             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220',
10569             'ExtUtils::CBuilder::Platform::darwin'=> '0.280220',
10570             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220',
10571             'ExtUtils::CBuilder::Platform::os2'=> '0.280220',
10572             'ExtUtils::Miniperl'    => '1.03',
10573             'Fcntl'                 => '1.13',
10574             'File::Find'            => '1.29',
10575             'File::Spec'            => '3.51',
10576             'File::Spec::Cygwin'    => '3.51',
10577             'File::Spec::Epoc'      => '3.51',
10578             'File::Spec::Functions' => '3.51',
10579             'File::Spec::Mac'       => '3.51',
10580             'File::Spec::OS2'       => '3.51',
10581             'File::Spec::Unix'      => '3.51',
10582             'File::Spec::VMS'       => '3.51',
10583             'File::Spec::Win32'     => '3.51',
10584             'HTTP::Tiny'            => '0.050',
10585             'IO::Compress::Adapter::Bzip2'=> '2.066',
10586             'IO::Compress::Adapter::Deflate'=> '2.066',
10587             'IO::Compress::Adapter::Identity'=> '2.066',
10588             'IO::Compress::Base'    => '2.066',
10589             'IO::Compress::Base::Common'=> '2.066',
10590             'IO::Compress::Bzip2'   => '2.066',
10591             'IO::Compress::Deflate' => '2.066',
10592             'IO::Compress::Gzip'    => '2.066',
10593             'IO::Compress::Gzip::Constants'=> '2.066',
10594             'IO::Compress::RawDeflate'=> '2.066',
10595             'IO::Compress::Zip'     => '2.066',
10596             'IO::Compress::Zip::Constants'=> '2.066',
10597             'IO::Compress::Zlib::Constants'=> '2.066',
10598             'IO::Compress::Zlib::Extra'=> '2.066',
10599             'IO::Uncompress::Adapter::Bunzip2'=> '2.066',
10600             'IO::Uncompress::Adapter::Identity'=> '2.066',
10601             'IO::Uncompress::Adapter::Inflate'=> '2.066',
10602             'IO::Uncompress::AnyInflate'=> '2.066',
10603             'IO::Uncompress::AnyUncompress'=> '2.066',
10604             'IO::Uncompress::Base'  => '2.066',
10605             'IO::Uncompress::Bunzip2'=> '2.066',
10606             'IO::Uncompress::Gunzip'=> '2.066',
10607             'IO::Uncompress::Inflate'=> '2.066',
10608             'IO::Uncompress::RawInflate'=> '2.066',
10609             'IO::Uncompress::Unzip' => '2.066',
10610             'JSON::PP'              => '2.27300',
10611             'Module::CoreList'      => '5.20141020',
10612             'Module::CoreList::TieHashDelta'=> '5.20141020',
10613             'Module::CoreList::Utils'=> '5.20141020',
10614             'Net::Cmd'              => '3.02',
10615             'Net::Config'           => '3.02',
10616             'Net::Domain'           => '3.02',
10617             'Net::FTP'              => '3.02',
10618             'Net::FTP::A'           => '3.02',
10619             'Net::FTP::E'           => '3.02',
10620             'Net::FTP::I'           => '3.02',
10621             'Net::FTP::L'           => '3.02',
10622             'Net::FTP::dataconn'    => '3.02',
10623             'Net::NNTP'             => '3.02',
10624             'Net::Netrc'            => '3.02',
10625             'Net::POP3'             => '3.02',
10626             'Net::SMTP'             => '3.02',
10627             'Net::Time'             => '3.02',
10628             'Opcode'                => '1.29',
10629             'POSIX'                 => '1.45',
10630             'Socket'                => '2.016',
10631             'Test::Builder'         => '1.001008',
10632             'Test::Builder::Module' => '1.001008',
10633             'Test::More'            => '1.001008',
10634             'Test::Simple'          => '1.001008',
10635             'XS::APItest'           => '0.65',
10636             'XSLoader'              => '0.18',
10637             'attributes'            => '0.24',
10638             'experimental'          => '0.012',
10639             'feature'               => '1.38',
10640             'perlfaq'               => '5.0150046',
10641             're'                    => '0.27',
10642             'threads::shared'       => '1.47',
10643             'warnings'              => '1.28',
10644             'warnings::register'    => '1.04',
10645         },
10646         removed => {
10647         }
10648     },
10649     5.021006 => {
10650         delta_from => 5.021005,
10651         changed => {
10652             'App::Prove'            => '3.34',
10653             'App::Prove::State'     => '3.34',
10654             'App::Prove::State::Result'=> '3.34',
10655             'App::Prove::State::Result::Test'=> '3.34',
10656             'B'                     => '1.53',
10657             'B::Concise'            => '0.995',
10658             'B::Deparse'            => '1.30',
10659             'B::Op_private'         => '5.021006',
10660             'CPAN::Meta'            => '2.143240',
10661             'CPAN::Meta::Converter' => '2.143240',
10662             'CPAN::Meta::Feature'   => '2.143240',
10663             'CPAN::Meta::History'   => '2.143240',
10664             'CPAN::Meta::Merge'     => '2.143240',
10665             'CPAN::Meta::Prereqs'   => '2.143240',
10666             'CPAN::Meta::Requirements'=> '2.130',
10667             'CPAN::Meta::Spec'      => '2.143240',
10668             'CPAN::Meta::Validator' => '2.143240',
10669             'Config'                => '5.021006',
10670             'Devel::Peek'           => '1.19',
10671             'Digest::SHA'           => '5.93',
10672             'DynaLoader'            => '1.28',
10673             'Encode'                => '2.64',
10674             'Exporter'              => '5.72',
10675             'Exporter::Heavy'       => '5.72',
10676             'ExtUtils::Command::MM' => '7.02',
10677             'ExtUtils::Liblist'     => '7.02',
10678             'ExtUtils::Liblist::Kid'=> '7.02',
10679             'ExtUtils::MM'          => '7.02',
10680             'ExtUtils::MM_AIX'      => '7.02',
10681             'ExtUtils::MM_Any'      => '7.02',
10682             'ExtUtils::MM_BeOS'     => '7.02',
10683             'ExtUtils::MM_Cygwin'   => '7.02',
10684             'ExtUtils::MM_DOS'      => '7.02',
10685             'ExtUtils::MM_Darwin'   => '7.02',
10686             'ExtUtils::MM_MacOS'    => '7.02',
10687             'ExtUtils::MM_NW5'      => '7.02',
10688             'ExtUtils::MM_OS2'      => '7.02',
10689             'ExtUtils::MM_QNX'      => '7.02',
10690             'ExtUtils::MM_UWIN'     => '7.02',
10691             'ExtUtils::MM_Unix'     => '7.02',
10692             'ExtUtils::MM_VMS'      => '7.02',
10693             'ExtUtils::MM_VOS'      => '7.02',
10694             'ExtUtils::MM_Win32'    => '7.02',
10695             'ExtUtils::MM_Win95'    => '7.02',
10696             'ExtUtils::MY'          => '7.02',
10697             'ExtUtils::MakeMaker'   => '7.02',
10698             'ExtUtils::MakeMaker::Config'=> '7.02',
10699             'ExtUtils::MakeMaker::Locale'=> '7.02',
10700             'ExtUtils::MakeMaker::version'=> '7.02',
10701             'ExtUtils::MakeMaker::version::regex'=> '7.02',
10702             'ExtUtils::MakeMaker::version::vpp'=> '7.02',
10703             'ExtUtils::Manifest'    => '1.69',
10704             'ExtUtils::Mkbootstrap' => '7.02',
10705             'ExtUtils::Mksymlists'  => '7.02',
10706             'ExtUtils::ParseXS'     => '3.26',
10707             'ExtUtils::ParseXS::Constants'=> '3.26',
10708             'ExtUtils::ParseXS::CountLines'=> '3.26',
10709             'ExtUtils::ParseXS::Eval'=> '3.26',
10710             'ExtUtils::ParseXS::Utilities'=> '3.26',
10711             'ExtUtils::testlib'     => '7.02',
10712             'File::Spec::VMS'       => '3.52',
10713             'HTTP::Tiny'            => '0.051',
10714             'I18N::Langinfo'        => '0.12',
10715             'IO::Socket'            => '1.38',
10716             'Module::CoreList'      => '5.20141120',
10717             'Module::CoreList::TieHashDelta'=> '5.20141120',
10718             'Module::CoreList::Utils'=> '5.20141120',
10719             'POSIX'                 => '1.46',
10720             'PerlIO::encoding'      => '0.20',
10721             'PerlIO::scalar'        => '0.20',
10722             'TAP::Base'             => '3.34',
10723             'TAP::Formatter::Base'  => '3.34',
10724             'TAP::Formatter::Color' => '3.34',
10725             'TAP::Formatter::Console'=> '3.34',
10726             'TAP::Formatter::Console::ParallelSession'=> '3.34',
10727             'TAP::Formatter::Console::Session'=> '3.34',
10728             'TAP::Formatter::File'  => '3.34',
10729             'TAP::Formatter::File::Session'=> '3.34',
10730             'TAP::Formatter::Session'=> '3.34',
10731             'TAP::Harness'          => '3.34',
10732             'TAP::Harness::Env'     => '3.34',
10733             'TAP::Object'           => '3.34',
10734             'TAP::Parser'           => '3.34',
10735             'TAP::Parser::Aggregator'=> '3.34',
10736             'TAP::Parser::Grammar'  => '3.34',
10737             'TAP::Parser::Iterator' => '3.34',
10738             'TAP::Parser::Iterator::Array'=> '3.34',
10739             'TAP::Parser::Iterator::Process'=> '3.34',
10740             'TAP::Parser::Iterator::Stream'=> '3.34',
10741             'TAP::Parser::IteratorFactory'=> '3.34',
10742             'TAP::Parser::Multiplexer'=> '3.34',
10743             'TAP::Parser::Result'   => '3.34',
10744             'TAP::Parser::Result::Bailout'=> '3.34',
10745             'TAP::Parser::Result::Comment'=> '3.34',
10746             'TAP::Parser::Result::Plan'=> '3.34',
10747             'TAP::Parser::Result::Pragma'=> '3.34',
10748             'TAP::Parser::Result::Test'=> '3.34',
10749             'TAP::Parser::Result::Unknown'=> '3.34',
10750             'TAP::Parser::Result::Version'=> '3.34',
10751             'TAP::Parser::Result::YAML'=> '3.34',
10752             'TAP::Parser::ResultFactory'=> '3.34',
10753             'TAP::Parser::Scheduler'=> '3.34',
10754             'TAP::Parser::Scheduler::Job'=> '3.34',
10755             'TAP::Parser::Scheduler::Spinner'=> '3.34',
10756             'TAP::Parser::Source'   => '3.34',
10757             'TAP::Parser::SourceHandler'=> '3.34',
10758             'TAP::Parser::SourceHandler::Executable'=> '3.34',
10759             'TAP::Parser::SourceHandler::File'=> '3.34',
10760             'TAP::Parser::SourceHandler::Handle'=> '3.34',
10761             'TAP::Parser::SourceHandler::Perl'=> '3.34',
10762             'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
10763             'TAP::Parser::YAMLish::Reader'=> '3.34',
10764             'TAP::Parser::YAMLish::Writer'=> '3.34',
10765             'Test::Builder'         => '1.301001_075',
10766             'Test::Builder::Module' => '1.301001_075',
10767             'Test::Builder::Tester' => '1.301001_075',
10768             'Test::Builder::Tester::Color'=> '1.301001_075',
10769             'Test::Harness'         => '3.34',
10770             'Test::More'            => '1.301001_075',
10771             'Test::More::DeepCheck' => undef,
10772             'Test::More::DeepCheck::Strict'=> undef,
10773             'Test::More::DeepCheck::Tolerant'=> undef,
10774             'Test::More::Tools'     => undef,
10775             'Test::MostlyLike'      => undef,
10776             'Test::Simple'          => '1.301001_075',
10777             'Test::Stream'          => '1.301001_075',
10778             'Test::Stream::ArrayBase'=> undef,
10779             'Test::Stream::ArrayBase::Meta'=> undef,
10780             'Test::Stream::Carp'    => undef,
10781             'Test::Stream::Context' => undef,
10782             'Test::Stream::Event'   => undef,
10783             'Test::Stream::Event::Bail'=> undef,
10784             'Test::Stream::Event::Child'=> undef,
10785             'Test::Stream::Event::Diag'=> undef,
10786             'Test::Stream::Event::Finish'=> undef,
10787             'Test::Stream::Event::Note'=> undef,
10788             'Test::Stream::Event::Ok'=> undef,
10789             'Test::Stream::Event::Plan'=> undef,
10790             'Test::Stream::Event::Subtest'=> undef,
10791             'Test::Stream::ExitMagic'=> undef,
10792             'Test::Stream::ExitMagic::Context'=> undef,
10793             'Test::Stream::Exporter'=> undef,
10794             'Test::Stream::Exporter::Meta'=> undef,
10795             'Test::Stream::IOSets'  => undef,
10796             'Test::Stream::Meta'    => undef,
10797             'Test::Stream::PackageUtil'=> undef,
10798             'Test::Stream::Tester'  => undef,
10799             'Test::Stream::Tester::Checks'=> undef,
10800             'Test::Stream::Tester::Checks::Event'=> undef,
10801             'Test::Stream::Tester::Events'=> undef,
10802             'Test::Stream::Tester::Events::Event'=> undef,
10803             'Test::Stream::Tester::Grab'=> undef,
10804             'Test::Stream::Threads' => undef,
10805             'Test::Stream::Toolset' => undef,
10806             'Test::Stream::Util'    => undef,
10807             'Test::Tester'          => '1.301001_075',
10808             'Test::Tester::Capture' => undef,
10809             'Test::use::ok'         => '1.301001_075',
10810             'Unicode::UCD'          => '0.59',
10811             'XS::APItest'           => '0.68',
10812             'XSLoader'              => '0.19',
10813             'experimental'          => '0.013',
10814             'locale'                => '1.05',
10815             'ok'                    => '1.301001_075',
10816             'overload'              => '1.24',
10817             're'                    => '0.28',
10818             'warnings'              => '1.29',
10819         },
10820         removed => {
10821         }
10822     },
10823     5.021007 => {
10824         delta_from => 5.021006,
10825         changed => {
10826             'Archive::Tar'          => '2.04',
10827             'Archive::Tar::Constant'=> '2.04',
10828             'Archive::Tar::File'    => '2.04',
10829             'B'                     => '1.54',
10830             'B::Concise'            => '0.996',
10831             'B::Deparse'            => '1.31',
10832             'B::Op_private'         => '5.021007',
10833             'B::Showlex'            => '1.05',
10834             'Compress::Raw::Bzip2'  => '2.067',
10835             'Compress::Raw::Zlib'   => '2.067',
10836             'Compress::Zlib'        => '2.067',
10837             'Config'                => '5.021007',
10838             'Cwd'                   => '3.54',
10839             'DB_File'               => '1.834',
10840             'Data::Dumper'          => '2.155',
10841             'Devel::PPPort'         => '3.25',
10842             'Devel::Peek'           => '1.20',
10843             'DynaLoader'            => '1.29',
10844             'Encode'                => '2.67',
10845             'Errno'                 => '1.22',
10846             'ExtUtils::CBuilder'    => '0.280221',
10847             'ExtUtils::CBuilder::Base'=> '0.280221',
10848             'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
10849             'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
10850             'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
10851             'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
10852             'ExtUtils::CBuilder::Platform::android'=> '0.280221',
10853             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
10854             'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
10855             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
10856             'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
10857             'ExtUtils::Command::MM' => '7.04',
10858             'ExtUtils::Liblist'     => '7.04',
10859             'ExtUtils::Liblist::Kid'=> '7.04',
10860             'ExtUtils::MM'          => '7.04',
10861             'ExtUtils::MM_AIX'      => '7.04',
10862             'ExtUtils::MM_Any'      => '7.04',
10863             'ExtUtils::MM_BeOS'     => '7.04',
10864             'ExtUtils::MM_Cygwin'   => '7.04',
10865             'ExtUtils::MM_DOS'      => '7.04',
10866             'ExtUtils::MM_Darwin'   => '7.04',
10867             'ExtUtils::MM_MacOS'    => '7.04',
10868             'ExtUtils::MM_NW5'      => '7.04',
10869             'ExtUtils::MM_OS2'      => '7.04',
10870             'ExtUtils::MM_QNX'      => '7.04',
10871             'ExtUtils::MM_UWIN'     => '7.04',
10872             'ExtUtils::MM_Unix'     => '7.04',
10873             'ExtUtils::MM_VMS'      => '7.04',
10874             'ExtUtils::MM_VOS'      => '7.04',
10875             'ExtUtils::MM_Win32'    => '7.04',
10876             'ExtUtils::MM_Win95'    => '7.04',
10877             'ExtUtils::MY'          => '7.04',
10878             'ExtUtils::MakeMaker'   => '7.04',
10879             'ExtUtils::MakeMaker::Config'=> '7.04',
10880             'ExtUtils::MakeMaker::Locale'=> '7.04',
10881             'ExtUtils::MakeMaker::version'=> '7.04',
10882             'ExtUtils::MakeMaker::version::regex'=> '7.04',
10883             'ExtUtils::MakeMaker::version::vpp'=> '7.04',
10884             'ExtUtils::Mkbootstrap' => '7.04',
10885             'ExtUtils::Mksymlists'  => '7.04',
10886             'ExtUtils::ParseXS'     => '3.27',
10887             'ExtUtils::ParseXS::Constants'=> '3.27',
10888             'ExtUtils::ParseXS::CountLines'=> '3.27',
10889             'ExtUtils::ParseXS::Eval'=> '3.27',
10890             'ExtUtils::ParseXS::Utilities'=> '3.27',
10891             'ExtUtils::testlib'     => '7.04',
10892             'File::Spec'            => '3.53',
10893             'File::Spec::Cygwin'    => '3.54',
10894             'File::Spec::Epoc'      => '3.54',
10895             'File::Spec::Functions' => '3.54',
10896             'File::Spec::Mac'       => '3.54',
10897             'File::Spec::OS2'       => '3.54',
10898             'File::Spec::Unix'      => '3.54',
10899             'File::Spec::VMS'       => '3.54',
10900             'File::Spec::Win32'     => '3.54',
10901             'Filter::Util::Call'    => '1.51',
10902             'HTTP::Tiny'            => '0.053',
10903             'IO'                    => '1.35',
10904             'IO::Compress::Adapter::Bzip2'=> '2.067',
10905             'IO::Compress::Adapter::Deflate'=> '2.067',
10906             'IO::Compress::Adapter::Identity'=> '2.067',
10907             'IO::Compress::Base'    => '2.067',
10908             'IO::Compress::Base::Common'=> '2.067',
10909             'IO::Compress::Bzip2'   => '2.067',
10910             'IO::Compress::Deflate' => '2.067',
10911             'IO::Compress::Gzip'    => '2.067',
10912             'IO::Compress::Gzip::Constants'=> '2.067',
10913             'IO::Compress::RawDeflate'=> '2.067',
10914             'IO::Compress::Zip'     => '2.067',
10915             'IO::Compress::Zip::Constants'=> '2.067',
10916             'IO::Compress::Zlib::Constants'=> '2.067',
10917             'IO::Compress::Zlib::Extra'=> '2.067',
10918             'IO::Socket::IP'        => '0.34',
10919             'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
10920             'IO::Uncompress::Adapter::Identity'=> '2.067',
10921             'IO::Uncompress::Adapter::Inflate'=> '2.067',
10922             'IO::Uncompress::AnyInflate'=> '2.067',
10923             'IO::Uncompress::AnyUncompress'=> '2.067',
10924             'IO::Uncompress::Base'  => '2.067',
10925             'IO::Uncompress::Bunzip2'=> '2.067',
10926             'IO::Uncompress::Gunzip'=> '2.067',
10927             'IO::Uncompress::Inflate'=> '2.067',
10928             'IO::Uncompress::RawInflate'=> '2.067',
10929             'IO::Uncompress::Unzip' => '2.067',
10930             'Locale::Codes'         => '3.33',
10931             'Locale::Codes::Constants'=> '3.33',
10932             'Locale::Codes::Country'=> '3.33',
10933             'Locale::Codes::Country_Codes'=> '3.33',
10934             'Locale::Codes::Country_Retired'=> '3.33',
10935             'Locale::Codes::Currency'=> '3.33',
10936             'Locale::Codes::Currency_Codes'=> '3.33',
10937             'Locale::Codes::Currency_Retired'=> '3.33',
10938             'Locale::Codes::LangExt'=> '3.33',
10939             'Locale::Codes::LangExt_Codes'=> '3.33',
10940             'Locale::Codes::LangExt_Retired'=> '3.33',
10941             'Locale::Codes::LangFam'=> '3.33',
10942             'Locale::Codes::LangFam_Codes'=> '3.33',
10943             'Locale::Codes::LangFam_Retired'=> '3.33',
10944             'Locale::Codes::LangVar'=> '3.33',
10945             'Locale::Codes::LangVar_Codes'=> '3.33',
10946             'Locale::Codes::LangVar_Retired'=> '3.33',
10947             'Locale::Codes::Language'=> '3.33',
10948             'Locale::Codes::Language_Codes'=> '3.33',
10949             'Locale::Codes::Language_Retired'=> '3.33',
10950             'Locale::Codes::Script' => '3.33',
10951             'Locale::Codes::Script_Codes'=> '3.33',
10952             'Locale::Codes::Script_Retired'=> '3.33',
10953             'Locale::Country'       => '3.33',
10954             'Locale::Currency'      => '3.33',
10955             'Locale::Language'      => '3.33',
10956             'Locale::Maketext'      => '1.26',
10957             'Locale::Script'        => '3.33',
10958             'Module::CoreList'      => '5.20141220',
10959             'Module::CoreList::TieHashDelta'=> '5.20141220',
10960             'Module::CoreList::Utils'=> '5.20141220',
10961             'NDBM_File'             => '1.14',
10962             'Net::Cmd'              => '3.04',
10963             'Net::Config'           => '3.04',
10964             'Net::Domain'           => '3.04',
10965             'Net::FTP'              => '3.04',
10966             'Net::FTP::A'           => '3.04',
10967             'Net::FTP::E'           => '3.04',
10968             'Net::FTP::I'           => '3.04',
10969             'Net::FTP::L'           => '3.04',
10970             'Net::FTP::dataconn'    => '3.04',
10971             'Net::NNTP'             => '3.04',
10972             'Net::Netrc'            => '3.04',
10973             'Net::POP3'             => '3.04',
10974             'Net::SMTP'             => '3.04',
10975             'Net::Time'             => '3.04',
10976             'Opcode'                => '1.30',
10977             'POSIX'                 => '1.48',
10978             'PerlIO::scalar'        => '0.21',
10979             'Pod::Escapes'          => '1.07',
10980             'SDBM_File'             => '1.12',
10981             'Storable'              => '2.52',
10982             'Sys::Hostname'         => '1.20',
10983             'Test::Builder'         => '1.301001_090',
10984             'Test::Builder::Module' => '1.301001_090',
10985             'Test::Builder::Tester' => '1.301001_090',
10986             'Test::Builder::Tester::Color'=> '1.301001_090',
10987             'Test::CanFork'         => undef,
10988             'Test::CanThread'       => undef,
10989             'Test::More'            => '1.301001_090',
10990             'Test::Simple'          => '1.301001_090',
10991             'Test::Stream'          => '1.301001_090',
10992             'Test::Stream::API'     => undef,
10993             'Test::Stream::ForceExit'=> undef,
10994             'Test::Stream::Subtest' => undef,
10995             'Test::Tester'          => '1.301001_090',
10996             'Test::use::ok'         => '1.301001_090',
10997             'Unicode::Collate'      => '1.09',
10998             'Unicode::Collate::CJK::Big5'=> '1.09',
10999             'Unicode::Collate::CJK::GB2312'=> '1.09',
11000             'Unicode::Collate::CJK::JISX0208'=> '1.09',
11001             'Unicode::Collate::CJK::Korean'=> '1.09',
11002             'Unicode::Collate::CJK::Pinyin'=> '1.09',
11003             'Unicode::Collate::CJK::Stroke'=> '1.09',
11004             'Unicode::Collate::CJK::Zhuyin'=> '1.09',
11005             'Unicode::Collate::Locale'=> '1.09',
11006             'XS::APItest'           => '0.69',
11007             'XSLoader'              => '0.20',
11008             '_charnames'            => '1.43',
11009             'arybase'               => '0.09',
11010             'charnames'             => '1.43',
11011             'feature'               => '1.39',
11012             'mro'                   => '1.17',
11013             'ok'                    => '1.301001_090',
11014             'strict'                => '1.09',
11015             'threads'               => '1.96_001',
11016         },
11017         removed => {
11018         }
11019     },
11020     5.021008 => {
11021         delta_from => 5.021007,
11022         changed => {
11023             'App::Prove'            => '3.35',
11024             'App::Prove::State'     => '3.35',
11025             'App::Prove::State::Result'=> '3.35',
11026             'App::Prove::State::Result::Test'=> '3.35',
11027             'B'                     => '1.55',
11028             'B::Deparse'            => '1.32',
11029             'B::Op_private'         => '5.021008',
11030             'CPAN::Meta::Requirements'=> '2.131',
11031             'Compress::Raw::Bzip2'  => '2.068',
11032             'Compress::Raw::Zlib'   => '2.068',
11033             'Compress::Zlib'        => '2.068',
11034             'Config'                => '5.021008',
11035             'DB_File'               => '1.835',
11036             'Data::Dumper'          => '2.156',
11037             'Devel::PPPort'         => '3.28',
11038             'Devel::Peek'           => '1.21',
11039             'Digest::MD5'           => '2.54',
11040             'Digest::SHA'           => '5.95',
11041             'DynaLoader'            => '1.30',
11042             'ExtUtils::Command'     => '1.20',
11043             'ExtUtils::Manifest'    => '1.70',
11044             'Fatal'                 => '2.26',
11045             'File::Glob'            => '1.24',
11046             'Filter::Util::Call'    => '1.54',
11047             'Getopt::Long'          => '2.43',
11048             'IO::Compress::Adapter::Bzip2'=> '2.068',
11049             'IO::Compress::Adapter::Deflate'=> '2.068',
11050             'IO::Compress::Adapter::Identity'=> '2.068',
11051             'IO::Compress::Base'    => '2.068',
11052             'IO::Compress::Base::Common'=> '2.068',
11053             'IO::Compress::Bzip2'   => '2.068',
11054             'IO::Compress::Deflate' => '2.068',
11055             'IO::Compress::Gzip'    => '2.068',
11056             'IO::Compress::Gzip::Constants'=> '2.068',
11057             'IO::Compress::RawDeflate'=> '2.068',
11058             'IO::Compress::Zip'     => '2.068',
11059             'IO::Compress::Zip::Constants'=> '2.068',
11060             'IO::Compress::Zlib::Constants'=> '2.068',
11061             'IO::Compress::Zlib::Extra'=> '2.068',
11062             'IO::Socket::IP'        => '0.36',
11063             'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
11064             'IO::Uncompress::Adapter::Identity'=> '2.068',
11065             'IO::Uncompress::Adapter::Inflate'=> '2.068',
11066             'IO::Uncompress::AnyInflate'=> '2.068',
11067             'IO::Uncompress::AnyUncompress'=> '2.068',
11068             'IO::Uncompress::Base'  => '2.068',
11069             'IO::Uncompress::Bunzip2'=> '2.068',
11070             'IO::Uncompress::Gunzip'=> '2.068',
11071             'IO::Uncompress::Inflate'=> '2.068',
11072             'IO::Uncompress::RawInflate'=> '2.068',
11073             'IO::Uncompress::Unzip' => '2.068',
11074             'MIME::Base64'          => '3.15',
11075             'Module::CoreList'      => '5.20150220',
11076             'Module::CoreList::TieHashDelta'=> '5.20150220',
11077             'Module::CoreList::Utils'=> '5.20150220',
11078             'Module::Load::Conditional'=> '0.64',
11079             'Module::Metadata'      => '1.000026',
11080             'Net::Cmd'              => '3.05',
11081             'Net::Config'           => '3.05',
11082             'Net::Domain'           => '3.05',
11083             'Net::FTP'              => '3.05',
11084             'Net::FTP::A'           => '3.05',
11085             'Net::FTP::E'           => '3.05',
11086             'Net::FTP::I'           => '3.05',
11087             'Net::FTP::L'           => '3.05',
11088             'Net::FTP::dataconn'    => '3.05',
11089             'Net::NNTP'             => '3.05',
11090             'Net::Netrc'            => '3.05',
11091             'Net::POP3'             => '3.05',
11092             'Net::SMTP'             => '3.05',
11093             'Net::Time'             => '3.05',
11094             'Opcode'                => '1.31',
11095             'POSIX'                 => '1.49',
11096             'PerlIO::encoding'      => '0.21',
11097             'Pod::Simple'           => '3.29',
11098             'Pod::Simple::BlackBox' => '3.29',
11099             'Pod::Simple::Checker'  => '3.29',
11100             'Pod::Simple::Debug'    => '3.29',
11101             'Pod::Simple::DumpAsText'=> '3.29',
11102             'Pod::Simple::DumpAsXML'=> '3.29',
11103             'Pod::Simple::HTML'     => '3.29',
11104             'Pod::Simple::HTMLBatch'=> '3.29',
11105             'Pod::Simple::LinkSection'=> '3.29',
11106             'Pod::Simple::Methody'  => '3.29',
11107             'Pod::Simple::Progress' => '3.29',
11108             'Pod::Simple::PullParser'=> '3.29',
11109             'Pod::Simple::PullParserEndToken'=> '3.29',
11110             'Pod::Simple::PullParserStartToken'=> '3.29',
11111             'Pod::Simple::PullParserTextToken'=> '3.29',
11112             'Pod::Simple::PullParserToken'=> '3.29',
11113             'Pod::Simple::RTF'      => '3.29',
11114             'Pod::Simple::Search'   => '3.29',
11115             'Pod::Simple::SimpleTree'=> '3.29',
11116             'Pod::Simple::Text'     => '3.29',
11117             'Pod::Simple::TextContent'=> '3.29',
11118             'Pod::Simple::TiedOutFH'=> '3.29',
11119             'Pod::Simple::Transcode'=> '3.29',
11120             'Pod::Simple::TranscodeDumb'=> '3.29',
11121             'Pod::Simple::TranscodeSmart'=> '3.29',
11122             'Pod::Simple::XHTML'    => '3.29',
11123             'Pod::Simple::XMLOutStream'=> '3.29',
11124             'SDBM_File'             => '1.13',
11125             'Safe'                  => '2.39',
11126             'TAP::Base'             => '3.35',
11127             'TAP::Formatter::Base'  => '3.35',
11128             'TAP::Formatter::Color' => '3.35',
11129             'TAP::Formatter::Console'=> '3.35',
11130             'TAP::Formatter::Console::ParallelSession'=> '3.35',
11131             'TAP::Formatter::Console::Session'=> '3.35',
11132             'TAP::Formatter::File'  => '3.35',
11133             'TAP::Formatter::File::Session'=> '3.35',
11134             'TAP::Formatter::Session'=> '3.35',
11135             'TAP::Harness'          => '3.35',
11136             'TAP::Harness::Env'     => '3.35',
11137             'TAP::Object'           => '3.35',
11138             'TAP::Parser'           => '3.35',
11139             'TAP::Parser::Aggregator'=> '3.35',
11140             'TAP::Parser::Grammar'  => '3.35',
11141             'TAP::Parser::Iterator' => '3.35',
11142             'TAP::Parser::Iterator::Array'=> '3.35',
11143             'TAP::Parser::Iterator::Process'=> '3.35',
11144             'TAP::Parser::Iterator::Stream'=> '3.35',
11145             'TAP::Parser::IteratorFactory'=> '3.35',
11146             'TAP::Parser::Multiplexer'=> '3.35',
11147             'TAP::Parser::Result'   => '3.35',
11148             'TAP::Parser::Result::Bailout'=> '3.35',
11149             'TAP::Parser::Result::Comment'=> '3.35',
11150             'TAP::Parser::Result::Plan'=> '3.35',
11151             'TAP::Parser::Result::Pragma'=> '3.35',
11152             'TAP::Parser::Result::Test'=> '3.35',
11153             'TAP::Parser::Result::Unknown'=> '3.35',
11154             'TAP::Parser::Result::Version'=> '3.35',
11155             'TAP::Parser::Result::YAML'=> '3.35',
11156             'TAP::Parser::ResultFactory'=> '3.35',
11157             'TAP::Parser::Scheduler'=> '3.35',
11158             'TAP::Parser::Scheduler::Job'=> '3.35',
11159             'TAP::Parser::Scheduler::Spinner'=> '3.35',
11160             'TAP::Parser::Source'   => '3.35',
11161             'TAP::Parser::SourceHandler'=> '3.35',
11162             'TAP::Parser::SourceHandler::Executable'=> '3.35',
11163             'TAP::Parser::SourceHandler::File'=> '3.35',
11164             'TAP::Parser::SourceHandler::Handle'=> '3.35',
11165             'TAP::Parser::SourceHandler::Perl'=> '3.35',
11166             'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
11167             'TAP::Parser::YAMLish::Reader'=> '3.35',
11168             'TAP::Parser::YAMLish::Writer'=> '3.35',
11169             'Test::Builder'         => '1.301001_097',
11170             'Test::Builder::Module' => '1.301001_097',
11171             'Test::Builder::Tester' => '1.301001_097',
11172             'Test::Builder::Tester::Color'=> '1.301001_097',
11173             'Test::Harness'         => '3.35',
11174             'Test::More'            => '1.301001_097',
11175             'Test::Simple'          => '1.301001_097',
11176             'Test::Stream'          => '1.301001_097',
11177             'Test::Stream::Block'   => undef,
11178             'Test::Tester'          => '1.301001_097',
11179             'Test::Tester::CaptureRunner'=> undef,
11180             'Test::Tester::Delegate'=> undef,
11181             'Test::use::ok'         => '1.301001_097',
11182             'Unicode::Collate'      => '1.10',
11183             'Unicode::Collate::CJK::Big5'=> '1.10',
11184             'Unicode::Collate::CJK::GB2312'=> '1.10',
11185             'Unicode::Collate::CJK::JISX0208'=> '1.10',
11186             'Unicode::Collate::CJK::Korean'=> '1.10',
11187             'Unicode::Collate::CJK::Pinyin'=> '1.10',
11188             'Unicode::Collate::CJK::Stroke'=> '1.10',
11189             'Unicode::Collate::CJK::Zhuyin'=> '1.10',
11190             'Unicode::Collate::Locale'=> '1.10',
11191             'VMS::DCLsym'           => '1.06',
11192             'XS::APItest'           => '0.70',
11193             'arybase'               => '0.10',
11194             'attributes'            => '0.25',
11195             'autodie'               => '2.26',
11196             'autodie::Scope::Guard' => '2.26',
11197             'autodie::Scope::GuardStack'=> '2.26',
11198             'autodie::ScopeUtil'    => '2.26',
11199             'autodie::exception'    => '2.26',
11200             'autodie::exception::system'=> '2.26',
11201             'autodie::hints'        => '2.26',
11202             'autodie::skip'         => '2.26',
11203             'ok'                    => '1.301001_097',
11204             're'                    => '0.30',
11205             'warnings'              => '1.30',
11206         },
11207         removed => {
11208         }
11209     },
11210     5.020002 => {
11211         delta_from => 5.020001,
11212         changed => {
11213             'CPAN::Author'          => '5.5002',
11214             'CPAN::CacheMgr'        => '5.5002',
11215             'CPAN::FTP'             => '5.5006',
11216             'CPAN::HTTP::Client'    => '1.9601',
11217             'CPAN::HandleConfig'    => '5.5005',
11218             'CPAN::Index'           => '1.9601',
11219             'CPAN::LWP::UserAgent'  => '1.9601',
11220             'CPAN::Mirrors'         => '1.9601',
11221             'Config'                => '5.020002',
11222             'Cwd'                   => '3.48_01',
11223             'Data::Dumper'          => '2.151_01',
11224             'Errno'                 => '1.20_05',
11225             'File::Spec'            => '3.48_01',
11226             'File::Spec::Cygwin'    => '3.48_01',
11227             'File::Spec::Epoc'      => '3.48_01',
11228             'File::Spec::Functions' => '3.48_01',
11229             'File::Spec::Mac'       => '3.48_01',
11230             'File::Spec::OS2'       => '3.48_01',
11231             'File::Spec::Unix'      => '3.48_01',
11232             'File::Spec::VMS'       => '3.48_01',
11233             'File::Spec::Win32'     => '3.48_01',
11234             'IO::Socket'            => '1.38',
11235             'Module::CoreList'      => '5.20150214',
11236             'Module::CoreList::TieHashDelta'=> '5.20150214',
11237             'Module::CoreList::Utils'=> '5.20150214',
11238             'PerlIO::scalar'        => '0.18_01',
11239             'Pod::PlainText'        => '2.07',
11240             'Storable'              => '2.49_01',
11241             'VMS::DCLsym'           => '1.05_01',
11242             'VMS::Stdio'            => '2.41',
11243             'attributes'            => '0.23',
11244             'feature'               => '1.36_01',
11245         },
11246         removed => {
11247         }
11248     },
11249     5.021009 => {
11250         delta_from => 5.021008,
11251         changed => {
11252             'B'                     => '1.56',
11253             'B::Debug'              => '1.23',
11254             'B::Deparse'            => '1.33',
11255             'B::Op_private'         => '5.021009',
11256             'Benchmark'             => '1.20',
11257             'CPAN::Author'          => '5.5002',
11258             'CPAN::CacheMgr'        => '5.5002',
11259             'CPAN::FTP'             => '5.5006',
11260             'CPAN::HTTP::Client'    => '1.9601',
11261             'CPAN::HandleConfig'    => '5.5005',
11262             'CPAN::Index'           => '1.9601',
11263             'CPAN::LWP::UserAgent'  => '1.9601',
11264             'CPAN::Meta::Requirements'=> '2.132',
11265             'CPAN::Mirrors'         => '1.9601',
11266             'Carp'                  => '1.35',
11267             'Carp::Heavy'           => '1.35',
11268             'Config'                => '5.021009',
11269             'Config::Perl::V'       => '0.23',
11270             'Data::Dumper'          => '2.157',
11271             'Devel::Peek'           => '1.22',
11272             'DynaLoader'            => '1.31',
11273             'Encode'                => '2.70',
11274             'Encode::MIME::Header'  => '2.16',
11275             'Errno'                 => '1.23',
11276             'ExtUtils::Miniperl'    => '1.04',
11277             'HTTP::Tiny'            => '0.054',
11278             'Module::CoreList'      => '5.20150220',
11279             'Module::CoreList::TieHashDelta'=> '5.20150220',
11280             'Module::CoreList::Utils'=> '5.20150220',
11281             'Opcode'                => '1.32',
11282             'POSIX'                 => '1.51',
11283             'Perl::OSType'          => '1.008',
11284             'PerlIO::scalar'        => '0.22',
11285             'Pod::Find'             => '1.63',
11286             'Pod::InputObjects'     => '1.63',
11287             'Pod::ParseUtils'       => '1.63',
11288             'Pod::Parser'           => '1.63',
11289             'Pod::Perldoc'          => '3.25',
11290             'Pod::Perldoc::BaseTo'  => '3.25',
11291             'Pod::Perldoc::GetOptsOO'=> '3.25',
11292             'Pod::Perldoc::ToANSI'  => '3.25',
11293             'Pod::Perldoc::ToChecker'=> '3.25',
11294             'Pod::Perldoc::ToMan'   => '3.25',
11295             'Pod::Perldoc::ToNroff' => '3.25',
11296             'Pod::Perldoc::ToPod'   => '3.25',
11297             'Pod::Perldoc::ToRtf'   => '3.25',
11298             'Pod::Perldoc::ToTerm'  => '3.25',
11299             'Pod::Perldoc::ToText'  => '3.25',
11300             'Pod::Perldoc::ToTk'    => '3.25',
11301             'Pod::Perldoc::ToXml'   => '3.25',
11302             'Pod::PlainText'        => '2.07',
11303             'Pod::Select'           => '1.63',
11304             'Socket'                => '2.018',
11305             'Storable'              => '2.53',
11306             'Test::Builder'         => '1.301001_098',
11307             'Test::Builder::Module' => '1.301001_098',
11308             'Test::Builder::Tester' => '1.301001_098',
11309             'Test::Builder::Tester::Color'=> '1.301001_098',
11310             'Test::More'            => '1.301001_098',
11311             'Test::Simple'          => '1.301001_098',
11312             'Test::Stream'          => '1.301001_098',
11313             'Test::Tester'          => '1.301001_098',
11314             'Test::use::ok'         => '1.301001_098',
11315             'Unicode::Collate'      => '1.11',
11316             'Unicode::Collate::CJK::Big5'=> '1.11',
11317             'Unicode::Collate::CJK::GB2312'=> '1.11',
11318             'Unicode::Collate::CJK::JISX0208'=> '1.11',
11319             'Unicode::Collate::CJK::Korean'=> '1.11',
11320             'Unicode::Collate::CJK::Pinyin'=> '1.11',
11321             'Unicode::Collate::CJK::Stroke'=> '1.11',
11322             'Unicode::Collate::CJK::Zhuyin'=> '1.11',
11323             'Unicode::Collate::Locale'=> '1.11',
11324             'Unicode::UCD'          => '0.61',
11325             'VMS::Stdio'            => '2.41',
11326             'Win32'                 => '0.51',
11327             'Win32API::File'        => '0.1202',
11328             'attributes'            => '0.26',
11329             'bigint'                => '0.39',
11330             'bignum'                => '0.39',
11331             'bigrat'                => '0.39',
11332             'constant'              => '1.33',
11333             'encoding'              => '2.13',
11334             'feature'               => '1.40',
11335             'ok'                    => '1.301001_098',
11336             'overload'              => '1.25',
11337             'perlfaq'               => '5.021009',
11338             're'                    => '0.31',
11339             'threads::shared'       => '1.48',
11340             'warnings'              => '1.31',
11341         },
11342         removed => {
11343         }
11344     },
11345     5.021010 => {
11346         delta_from => 5.021009,
11347         changed => {
11348             'App::Cpan'             => '1.63',
11349             'B'                     => '1.57',
11350             'B::Deparse'            => '1.34',
11351             'B::Op_private'         => '5.021010',
11352             'Benchmark'             => '1.2',
11353             'CPAN'                  => '2.10',
11354             'CPAN::Distribution'    => '2.04',
11355             'CPAN::FirstTime'       => '5.5307',
11356             'CPAN::HTTP::Credentials'=> '1.9601',
11357             'CPAN::HandleConfig'    => '5.5006',
11358             'CPAN::Meta'            => '2.150001',
11359             'CPAN::Meta::Converter' => '2.150001',
11360             'CPAN::Meta::Feature'   => '2.150001',
11361             'CPAN::Meta::History'   => '2.150001',
11362             'CPAN::Meta::Merge'     => '2.150001',
11363             'CPAN::Meta::Prereqs'   => '2.150001',
11364             'CPAN::Meta::Spec'      => '2.150001',
11365             'CPAN::Meta::Validator' => '2.150001',
11366             'CPAN::Module'          => '5.5002',
11367             'CPAN::Plugin'          => '0.95',
11368             'CPAN::Plugin::Specfile'=> '0.01',
11369             'CPAN::Shell'           => '5.5005',
11370             'Carp'                  => '1.36',
11371             'Carp::Heavy'           => '1.36',
11372             'Config'                => '5.02101',
11373             'Cwd'                   => '3.55',
11374             'DB'                    => '1.08',
11375             'Data::Dumper'          => '2.158',
11376             'Devel::PPPort'         => '3.31',
11377             'DynaLoader'            => '1.32',
11378             'Encode'                => '2.72',
11379             'Encode::Alias'         => '2.19',
11380             'File::Spec'            => '3.55',
11381             'File::Spec::Cygwin'    => '3.55',
11382             'File::Spec::Epoc'      => '3.55',
11383             'File::Spec::Functions' => '3.55',
11384             'File::Spec::Mac'       => '3.55',
11385             'File::Spec::OS2'       => '3.55',
11386             'File::Spec::Unix'      => '3.55',
11387             'File::Spec::VMS'       => '3.55',
11388             'File::Spec::Win32'     => '3.55',
11389             'Getopt::Long'          => '2.45',
11390             'Locale::Codes'         => '3.34',
11391             'Locale::Codes::Constants'=> '3.34',
11392             'Locale::Codes::Country'=> '3.34',
11393             'Locale::Codes::Country_Codes'=> '3.34',
11394             'Locale::Codes::Country_Retired'=> '3.34',
11395             'Locale::Codes::Currency'=> '3.34',
11396             'Locale::Codes::Currency_Codes'=> '3.34',
11397             'Locale::Codes::Currency_Retired'=> '3.34',
11398             'Locale::Codes::LangExt'=> '3.34',
11399             'Locale::Codes::LangExt_Codes'=> '3.34',
11400             'Locale::Codes::LangExt_Retired'=> '3.34',
11401             'Locale::Codes::LangFam'=> '3.34',
11402             'Locale::Codes::LangFam_Codes'=> '3.34',
11403             'Locale::Codes::LangFam_Retired'=> '3.34',
11404             'Locale::Codes::LangVar'=> '3.34',
11405             'Locale::Codes::LangVar_Codes'=> '3.34',
11406             'Locale::Codes::LangVar_Retired'=> '3.34',
11407             'Locale::Codes::Language'=> '3.34',
11408             'Locale::Codes::Language_Codes'=> '3.34',
11409             'Locale::Codes::Language_Retired'=> '3.34',
11410             'Locale::Codes::Script' => '3.34',
11411             'Locale::Codes::Script_Codes'=> '3.34',
11412             'Locale::Codes::Script_Retired'=> '3.34',
11413             'Locale::Country'       => '3.34',
11414             'Locale::Currency'      => '3.34',
11415             'Locale::Language'      => '3.34',
11416             'Locale::Script'        => '3.34',
11417             'Module::CoreList'      => '5.20150320',
11418             'Module::CoreList::TieHashDelta'=> '5.20150320',
11419             'Module::CoreList::Utils'=> '5.20150320',
11420             'POSIX'                 => '1.52',
11421             'Pod::Functions'        => '1.09',
11422             'Pod::Functions::Functions'=> '1.09',
11423             'Term::Complete'        => '1.403',
11424             'Test::Builder'         => '1.001014',
11425             'Test::Builder::IO::Scalar'=> '2.113',
11426             'Test::Builder::Module' => '1.001014',
11427             'Test::Builder::Tester' => '1.28',
11428             'Test::Builder::Tester::Color'=> '1.290001',
11429             'Test::More'            => '1.001014',
11430             'Test::Simple'          => '1.001014',
11431             'Test::Tester'          => '0.114',
11432             'Test::use::ok'         => '0.16',
11433             'Text::Balanced'        => '2.03',
11434             'Text::ParseWords'      => '3.30',
11435             'Unicode::Collate'      => '1.12',
11436             'Unicode::Collate::CJK::Big5'=> '1.12',
11437             'Unicode::Collate::CJK::GB2312'=> '1.12',
11438             'Unicode::Collate::CJK::JISX0208'=> '1.12',
11439             'Unicode::Collate::CJK::Korean'=> '1.12',
11440             'Unicode::Collate::CJK::Pinyin'=> '1.12',
11441             'Unicode::Collate::CJK::Stroke'=> '1.12',
11442             'Unicode::Collate::CJK::Zhuyin'=> '1.12',
11443             'Unicode::Collate::Locale'=> '1.12',
11444             'XS::APItest'           => '0.71',
11445             'encoding'              => '2.14',
11446             'locale'                => '1.06',
11447             'meta_notation'         => undef,
11448             'ok'                    => '0.16',
11449             'parent'                => '0.232',
11450             're'                    => '0.32',
11451             'sigtrap'               => '1.08',
11452             'threads'               => '2.01',
11453             'utf8'                  => '1.15',
11454         },
11455         removed => {
11456             'Test::CanFork'         => 1,
11457             'Test::CanThread'       => 1,
11458             'Test::More::DeepCheck' => 1,
11459             'Test::More::DeepCheck::Strict'=> 1,
11460             'Test::More::DeepCheck::Tolerant'=> 1,
11461             'Test::More::Tools'     => 1,
11462             'Test::MostlyLike'      => 1,
11463             'Test::Stream'          => 1,
11464             'Test::Stream::API'     => 1,
11465             'Test::Stream::ArrayBase'=> 1,
11466             'Test::Stream::ArrayBase::Meta'=> 1,
11467             'Test::Stream::Block'   => 1,
11468             'Test::Stream::Carp'    => 1,
11469             'Test::Stream::Context' => 1,
11470             'Test::Stream::Event'   => 1,
11471             'Test::Stream::Event::Bail'=> 1,
11472             'Test::Stream::Event::Child'=> 1,
11473             'Test::Stream::Event::Diag'=> 1,
11474             'Test::Stream::Event::Finish'=> 1,
11475             'Test::Stream::Event::Note'=> 1,
11476             'Test::Stream::Event::Ok'=> 1,
11477             'Test::Stream::Event::Plan'=> 1,
11478             'Test::Stream::Event::Subtest'=> 1,
11479             'Test::Stream::ExitMagic'=> 1,
11480             'Test::Stream::ExitMagic::Context'=> 1,
11481             'Test::Stream::Exporter'=> 1,
11482             'Test::Stream::Exporter::Meta'=> 1,
11483             'Test::Stream::ForceExit'=> 1,
11484             'Test::Stream::IOSets'  => 1,
11485             'Test::Stream::Meta'    => 1,
11486             'Test::Stream::PackageUtil'=> 1,
11487             'Test::Stream::Subtest' => 1,
11488             'Test::Stream::Tester'  => 1,
11489             'Test::Stream::Tester::Checks'=> 1,
11490             'Test::Stream::Tester::Checks::Event'=> 1,
11491             'Test::Stream::Tester::Events'=> 1,
11492             'Test::Stream::Tester::Events::Event'=> 1,
11493             'Test::Stream::Tester::Grab'=> 1,
11494             'Test::Stream::Threads' => 1,
11495             'Test::Stream::Toolset' => 1,
11496             'Test::Stream::Util'    => 1,
11497         }
11498     },
11499     5.021011 => {
11500         delta_from => 5.021010,
11501         changed => {
11502             'B'                     => '1.58',
11503             'B::Deparse'            => '1.35',
11504             'B::Op_private'         => '5.021011',
11505             'CPAN'                  => '2.11',
11506             'Config'                => '5.021011',
11507             'Config::Perl::V'       => '0.24',
11508             'Cwd'                   => '3.56',
11509             'ExtUtils::Miniperl'    => '1.05',
11510             'ExtUtils::ParseXS'     => '3.28',
11511             'ExtUtils::ParseXS::Constants'=> '3.28',
11512             'ExtUtils::ParseXS::CountLines'=> '3.28',
11513             'ExtUtils::ParseXS::Eval'=> '3.28',
11514             'ExtUtils::ParseXS::Utilities'=> '3.28',
11515             'ExtUtils::Typemaps'    => '3.28',
11516             'ExtUtils::Typemaps::Cmd'=> '3.28',
11517             'ExtUtils::Typemaps::InputMap'=> '3.28',
11518             'ExtUtils::Typemaps::OutputMap'=> '3.28',
11519             'ExtUtils::Typemaps::Type'=> '3.28',
11520             'File::Spec'            => '3.56',
11521             'File::Spec::Cygwin'    => '3.56',
11522             'File::Spec::Epoc'      => '3.56',
11523             'File::Spec::Functions' => '3.56',
11524             'File::Spec::Mac'       => '3.56',
11525             'File::Spec::OS2'       => '3.56',
11526             'File::Spec::Unix'      => '3.56',
11527             'File::Spec::VMS'       => '3.56',
11528             'File::Spec::Win32'     => '3.56',
11529             'IO::Socket::IP'        => '0.37',
11530             'Module::CoreList'      => '5.20150420',
11531             'Module::CoreList::TieHashDelta'=> '5.20150420',
11532             'Module::CoreList::Utils'=> '5.20150420',
11533             'PerlIO::mmap'          => '0.014',
11534             'XS::APItest'           => '0.72',
11535             'attributes'            => '0.27',
11536             'if'                    => '0.0604',
11537             'utf8'                  => '1.16',
11538             'warnings'              => '1.32',
11539         },
11540         removed => {
11541         }
11542     },
11543     5.022000 => {
11544         delta_from => 5.021011,
11545         changed => {
11546             'B::Op_private'         => '5.022000',
11547             'Config'                => '5.022',
11548             'ExtUtils::Command::MM' => '7.04_01',
11549             'ExtUtils::Liblist'     => '7.04_01',
11550             'ExtUtils::Liblist::Kid'=> '7.04_01',
11551             'ExtUtils::MM'          => '7.04_01',
11552             'ExtUtils::MM_AIX'      => '7.04_01',
11553             'ExtUtils::MM_Any'      => '7.04_01',
11554             'ExtUtils::MM_BeOS'     => '7.04_01',
11555             'ExtUtils::MM_Cygwin'   => '7.04_01',
11556             'ExtUtils::MM_DOS'      => '7.04_01',
11557             'ExtUtils::MM_Darwin'   => '7.04_01',
11558             'ExtUtils::MM_MacOS'    => '7.04_01',
11559             'ExtUtils::MM_NW5'      => '7.04_01',
11560             'ExtUtils::MM_OS2'      => '7.04_01',
11561             'ExtUtils::MM_QNX'      => '7.04_01',
11562             'ExtUtils::MM_UWIN'     => '7.04_01',
11563             'ExtUtils::MM_Unix'     => '7.04_01',
11564             'ExtUtils::MM_VMS'      => '7.04_01',
11565             'ExtUtils::MM_VOS'      => '7.04_01',
11566             'ExtUtils::MM_Win32'    => '7.04_01',
11567             'ExtUtils::MM_Win95'    => '7.04_01',
11568             'ExtUtils::MY'          => '7.04_01',
11569             'ExtUtils::MakeMaker'   => '7.04_01',
11570             'ExtUtils::MakeMaker::Config'=> '7.04_01',
11571             'ExtUtils::MakeMaker::Locale'=> '7.04_01',
11572             'ExtUtils::MakeMaker::version'=> '7.04_01',
11573             'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
11574             'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
11575             'ExtUtils::Mkbootstrap' => '7.04_01',
11576             'ExtUtils::Mksymlists'  => '7.04_01',
11577             'ExtUtils::testlib'     => '7.04_01',
11578             'Module::CoreList'      => '5.20150520',
11579             'Module::CoreList::TieHashDelta'=> '5.20150520',
11580             'Module::CoreList::Utils'=> '5.20150520',
11581             'POSIX'                 => '1.53',
11582             'PerlIO::via::QuotedPrint'=> '0.08',
11583             'overload'              => '1.26',
11584             'utf8'                  => '1.17',
11585         },
11586         removed => {
11587         }
11588     },
11589     5.023000 => {
11590         delta_from => 5.022000,
11591         changed => {
11592             'B::Op_private'         => '5.023000',
11593             'CPAN::Meta'            => '2.150005',
11594             'CPAN::Meta::Converter' => '2.150005',
11595             'CPAN::Meta::Feature'   => '2.150005',
11596             'CPAN::Meta::History'   => '2.150005',
11597             'CPAN::Meta::Merge'     => '2.150005',
11598             'CPAN::Meta::Prereqs'   => '2.150005',
11599             'CPAN::Meta::Requirements'=> '2.133',
11600             'CPAN::Meta::Spec'      => '2.150005',
11601             'CPAN::Meta::Validator' => '2.150005',
11602             'CPAN::Meta::YAML'      => '0.016',
11603             'Config'                => '5.023',
11604             'Encode'                => '2.73',
11605             'ExtUtils::CBuilder'    => '0.280223',
11606             'ExtUtils::CBuilder::Base'=> '0.280223',
11607             'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
11608             'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
11609             'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
11610             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
11611             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
11612             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
11613             'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
11614             'ExtUtils::CBuilder::Platform::android'=> '0.280223',
11615             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
11616             'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
11617             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
11618             'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
11619             'Fatal'                 => '2.27',
11620             'Getopt::Long'          => '2.46',
11621             'HTTP::Tiny'            => '0.056',
11622             'List::Util'            => '1.42_01',
11623             'List::Util::XS'        => '1.42_01',
11624             'Locale::Codes'         => '3.35',
11625             'Locale::Codes::Constants'=> '3.35',
11626             'Locale::Codes::Country'=> '3.35',
11627             'Locale::Codes::Country_Codes'=> '3.35',
11628             'Locale::Codes::Country_Retired'=> '3.35',
11629             'Locale::Codes::Currency'=> '3.35',
11630             'Locale::Codes::Currency_Codes'=> '3.35',
11631             'Locale::Codes::Currency_Retired'=> '3.35',
11632             'Locale::Codes::LangExt'=> '3.35',
11633             'Locale::Codes::LangExt_Codes'=> '3.35',
11634             'Locale::Codes::LangExt_Retired'=> '3.35',
11635             'Locale::Codes::LangFam'=> '3.35',
11636             'Locale::Codes::LangFam_Codes'=> '3.35',
11637             'Locale::Codes::LangFam_Retired'=> '3.35',
11638             'Locale::Codes::LangVar'=> '3.35',
11639             'Locale::Codes::LangVar_Codes'=> '3.35',
11640             'Locale::Codes::LangVar_Retired'=> '3.35',
11641             'Locale::Codes::Language'=> '3.35',
11642             'Locale::Codes::Language_Codes'=> '3.35',
11643             'Locale::Codes::Language_Retired'=> '3.35',
11644             'Locale::Codes::Script' => '3.35',
11645             'Locale::Codes::Script_Codes'=> '3.35',
11646             'Locale::Codes::Script_Retired'=> '3.35',
11647             'Locale::Country'       => '3.35',
11648             'Locale::Currency'      => '3.35',
11649             'Locale::Language'      => '3.35',
11650             'Locale::Script'        => '3.35',
11651             'Math::BigFloat'        => '1.999701',
11652             'Math::BigInt'          => '1.999701',
11653             'Math::BigInt::Calc'    => '1.999701',
11654             'Math::BigInt::CalcEmu' => '1.999701',
11655             'Math::BigRat'          => '0.260801',
11656             'Module::CoreList'      => '5.20150620',
11657             'Module::CoreList::TieHashDelta'=> '5.20150620',
11658             'Module::CoreList::Utils'=> '5.20150620',
11659             'Module::Metadata'      => '1.000027',
11660             'Net::Cmd'              => '3.06',
11661             'Net::Config'           => '3.06',
11662             'Net::Domain'           => '3.06',
11663             'Net::FTP'              => '3.06',
11664             'Net::FTP::A'           => '3.06',
11665             'Net::FTP::E'           => '3.06',
11666             'Net::FTP::I'           => '3.06',
11667             'Net::FTP::L'           => '3.06',
11668             'Net::FTP::dataconn'    => '3.06',
11669             'Net::NNTP'             => '3.06',
11670             'Net::Netrc'            => '3.06',
11671             'Net::POP3'             => '3.06',
11672             'Net::SMTP'             => '3.06',
11673             'Net::Time'             => '3.06',
11674             'POSIX'                 => '1.54',
11675             'Parse::CPAN::Meta'     => '1.4417',
11676             'Pod::Simple'           => '3.30',
11677             'Pod::Simple::BlackBox' => '3.30',
11678             'Pod::Simple::Checker'  => '3.30',
11679             'Pod::Simple::Debug'    => '3.30',
11680             'Pod::Simple::DumpAsText'=> '3.30',
11681             'Pod::Simple::DumpAsXML'=> '3.30',
11682             'Pod::Simple::HTML'     => '3.30',
11683             'Pod::Simple::HTMLBatch'=> '3.30',
11684             'Pod::Simple::LinkSection'=> '3.30',
11685             'Pod::Simple::Methody'  => '3.30',
11686             'Pod::Simple::Progress' => '3.30',
11687             'Pod::Simple::PullParser'=> '3.30',
11688             'Pod::Simple::PullParserEndToken'=> '3.30',
11689             'Pod::Simple::PullParserStartToken'=> '3.30',
11690             'Pod::Simple::PullParserTextToken'=> '3.30',
11691             'Pod::Simple::PullParserToken'=> '3.30',
11692             'Pod::Simple::RTF'      => '3.30',
11693             'Pod::Simple::Search'   => '3.30',
11694             'Pod::Simple::SimpleTree'=> '3.30',
11695             'Pod::Simple::Text'     => '3.30',
11696             'Pod::Simple::TextContent'=> '3.30',
11697             'Pod::Simple::TiedOutFH'=> '3.30',
11698             'Pod::Simple::Transcode'=> '3.30',
11699             'Pod::Simple::TranscodeDumb'=> '3.30',
11700             'Pod::Simple::TranscodeSmart'=> '3.30',
11701             'Pod::Simple::XHTML'    => '3.30',
11702             'Pod::Simple::XMLOutStream'=> '3.30',
11703             'Pod::Usage'            => '1.67',
11704             'Scalar::Util'          => '1.42_01',
11705             'Socket'                => '2.019',
11706             'Sub::Util'             => '1.42_01',
11707             'Time::Piece'           => '1.30',
11708             'Time::Seconds'         => '1.30',
11709             'UNIVERSAL'             => '1.13',
11710             'Unicode'               => '8.0.0',
11711             'XS::APItest'           => '0.73',
11712             'autodie'               => '2.27',
11713             'autodie::Scope::Guard' => '2.27',
11714             'autodie::Scope::GuardStack'=> '2.27',
11715             'autodie::Util'         => '2.27',
11716             'autodie::exception'    => '2.27',
11717             'autodie::exception::system'=> '2.27',
11718             'autodie::hints'        => '2.27',
11719             'autodie::skip'         => '2.27',
11720             'encoding'              => '2.15',
11721             'feature'               => '1.41',
11722             'parent'                => '0.234',
11723             'threads'               => '2.02',
11724         },
11725         removed => {
11726         }
11727     },
11728     5.023001 => {
11729         delta_from => 5.023000,
11730         changed => {
11731             'B::Op_private'         => '5.023001',
11732             'Config'                => '5.023001',
11733             'DynaLoader'            => '1.33',
11734             'Encode'                => '2.75',
11735             'Encode::MIME::Header'  => '2.17',
11736             'Encode::Unicode'       => '2.13',
11737             'Fatal'                 => '2.29',
11738             'File::Path'            => '2.11',
11739             'Getopt::Long'          => '2.47',
11740             'I18N::Langinfo'        => '0.13',
11741             'IPC::Open3'            => '1.19',
11742             'Module::CoreList'      => '5.20150720',
11743             'Module::CoreList::TieHashDelta'=> '5.20150720',
11744             'Module::CoreList::Utils'=> '5.20150720',
11745             'Net::Cmd'              => '3.07',
11746             'Net::Config'           => '3.07',
11747             'Net::Domain'           => '3.07',
11748             'Net::FTP'              => '3.07',
11749             'Net::FTP::A'           => '3.07',
11750             'Net::FTP::E'           => '3.07',
11751             'Net::FTP::I'           => '3.07',
11752             'Net::FTP::L'           => '3.07',
11753             'Net::FTP::dataconn'    => '3.07',
11754             'Net::NNTP'             => '3.07',
11755             'Net::Netrc'            => '3.07',
11756             'Net::POP3'             => '3.07',
11757             'Net::SMTP'             => '3.07',
11758             'Net::Time'             => '3.07',
11759             'Opcode'                => '1.33',
11760             'POSIX'                 => '1.55',
11761             'PerlIO::scalar'        => '0.23',
11762             'Socket'                => '2.020',
11763             'Storable'              => '2.54',
11764             'Unicode::Collate'      => '1.14',
11765             'Unicode::Collate::CJK::Big5'=> '1.14',
11766             'Unicode::Collate::CJK::GB2312'=> '1.14',
11767             'Unicode::Collate::CJK::JISX0208'=> '1.14',
11768             'Unicode::Collate::CJK::Korean'=> '1.14',
11769             'Unicode::Collate::CJK::Pinyin'=> '1.14',
11770             'Unicode::Collate::CJK::Stroke'=> '1.14',
11771             'Unicode::Collate::CJK::Zhuyin'=> '1.14',
11772             'Unicode::Collate::Locale'=> '1.14',
11773             'Unicode::Normalize'    => '1.19',
11774             'XS::APItest'           => '0.74',
11775             'XS::Typemap'           => '0.14',
11776             'autodie'               => '2.29',
11777             'autodie::Scope::Guard' => '2.29',
11778             'autodie::Scope::GuardStack'=> '2.29',
11779             'autodie::Util'         => '2.29',
11780             'autodie::exception'    => '2.29',
11781             'autodie::exception::system'=> '2.29',
11782             'autodie::hints'        => '2.29',
11783             'autodie::skip'         => '2.29',
11784             'encoding'              => '2.16',
11785             'feature'               => '1.42',
11786             'warnings'              => '1.33',
11787         },
11788         removed => {
11789             'autodie::ScopeUtil'    => 1,
11790         }
11791     },
11792     5.023002 => {
11793         delta_from => 5.023001,
11794         changed => {
11795             'Attribute::Handlers'   => '0.99',
11796             'B::Op_private'         => '5.023002',
11797             'CPAN::Meta::YAML'      => '0.017',
11798             'Config'                => '5.023002',
11799             'Cwd'                   => '3.57',
11800             'Encode'                => '2.76',
11801             'ExtUtils::ParseXS'     => '3.29',
11802             'ExtUtils::ParseXS::Constants'=> '3.29',
11803             'ExtUtils::ParseXS::CountLines'=> '3.29',
11804             'ExtUtils::ParseXS::Eval'=> '3.29',
11805             'ExtUtils::ParseXS::Utilities'=> '3.29',
11806             'ExtUtils::Typemaps'    => '3.29',
11807             'File::Find'            => '1.30',
11808             'File::Spec'            => '3.57',
11809             'File::Spec::Cygwin'    => '3.57',
11810             'File::Spec::Epoc'      => '3.57',
11811             'File::Spec::Functions' => '3.57',
11812             'File::Spec::Mac'       => '3.57',
11813             'File::Spec::OS2'       => '3.57',
11814             'File::Spec::Unix'      => '3.57',
11815             'File::Spec::VMS'       => '3.57',
11816             'File::Spec::Win32'     => '3.57',
11817             'Filter::Util::Call'    => '1.55',
11818             'Hash::Util'            => '0.19',
11819             'Module::CoreList'      => '5.20150820',
11820             'Module::CoreList::TieHashDelta'=> '5.20150820',
11821             'Module::CoreList::Utils'=> '5.20150820',
11822             'POSIX'                 => '1.56',
11823             'Term::Cap'             => '1.17',
11824             'Unicode::UCD'          => '0.62',
11825             'perlfaq'               => '5.021010',
11826         },
11827         removed => {
11828         }
11829     },
11830     5.020003 => {
11831         delta_from => 5.020002,
11832         changed => {
11833             'Config'                => '5.020003',
11834             'Errno'                 => '1.20_06',
11835             'Module::CoreList'      => '5.20150912',
11836             'Module::CoreList::TieHashDelta'=> '5.20150912',
11837             'Module::CoreList::Utils'=> '5.20150912',
11838         },
11839         removed => {
11840         }
11841     },
11842     5.023003 => {
11843         delta_from => 5.023002,
11844         changed => {
11845             'Amiga::ARexx'          => '0.02',
11846             'Amiga::Exec'           => '0.01',
11847             'B'                     => '1.59',
11848             'B::Op_private'         => '5.023003',
11849             'Carp'                  => '1.37',
11850             'Carp::Heavy'           => '1.37',
11851             'Compress::Raw::Zlib'   => '2.068_01',
11852             'Config'                => '5.023003',
11853             'Cwd'                   => '3.58',
11854             'DynaLoader'            => '1.34',
11855             'Encode'                => '2.77',
11856             'Encode::Unicode'       => '2.14',
11857             'English'               => '1.10',
11858             'Errno'                 => '1.24',
11859             'ExtUtils::Command'     => '7.10',
11860             'ExtUtils::Command::MM' => '7.10',
11861             'ExtUtils::Liblist'     => '7.10',
11862             'ExtUtils::Liblist::Kid'=> '7.10',
11863             'ExtUtils::MM'          => '7.10',
11864             'ExtUtils::MM_AIX'      => '7.10',
11865             'ExtUtils::MM_Any'      => '7.10',
11866             'ExtUtils::MM_BeOS'     => '7.10',
11867             'ExtUtils::MM_Cygwin'   => '7.10',
11868             'ExtUtils::MM_DOS'      => '7.10',
11869             'ExtUtils::MM_Darwin'   => '7.10',
11870             'ExtUtils::MM_MacOS'    => '7.10',
11871             'ExtUtils::MM_NW5'      => '7.10',
11872             'ExtUtils::MM_OS2'      => '7.10',
11873             'ExtUtils::MM_QNX'      => '7.10',
11874             'ExtUtils::MM_UWIN'     => '7.10',
11875             'ExtUtils::MM_Unix'     => '7.10',
11876             'ExtUtils::MM_VMS'      => '7.10',
11877             'ExtUtils::MM_VOS'      => '7.10',
11878             'ExtUtils::MM_Win32'    => '7.10',
11879             'ExtUtils::MM_Win95'    => '7.10',
11880             'ExtUtils::MY'          => '7.10',
11881             'ExtUtils::MakeMaker'   => '7.10',
11882             'ExtUtils::MakeMaker::Config'=> '7.10',
11883             'ExtUtils::MakeMaker::Locale'=> '7.10',
11884             'ExtUtils::MakeMaker::version'=> '7.10',
11885             'ExtUtils::MakeMaker::version::regex'=> '7.10',
11886             'ExtUtils::MakeMaker::version::vpp'=> '7.10',
11887             'ExtUtils::Mkbootstrap' => '7.10',
11888             'ExtUtils::Mksymlists'  => '7.10',
11889             'ExtUtils::ParseXS'     => '3.30',
11890             'ExtUtils::ParseXS::Constants'=> '3.30',
11891             'ExtUtils::ParseXS::CountLines'=> '3.30',
11892             'ExtUtils::ParseXS::Eval'=> '3.30',
11893             'ExtUtils::ParseXS::Utilities'=> '3.30',
11894             'ExtUtils::Typemaps'    => '3.30',
11895             'ExtUtils::Typemaps::Cmd'=> '3.30',
11896             'ExtUtils::Typemaps::InputMap'=> '3.30',
11897             'ExtUtils::Typemaps::OutputMap'=> '3.30',
11898             'ExtUtils::Typemaps::Type'=> '3.30',
11899             'ExtUtils::testlib'     => '7.10',
11900             'File::Find'            => '1.31',
11901             'File::Glob'            => '1.25',
11902             'File::Spec'            => '3.58',
11903             'File::Spec::AmigaOS'   => '3.58',
11904             'File::Spec::Cygwin'    => '3.58',
11905             'File::Spec::Epoc'      => '3.58',
11906             'File::Spec::Functions' => '3.58',
11907             'File::Spec::Mac'       => '3.58',
11908             'File::Spec::OS2'       => '3.58',
11909             'File::Spec::Unix'      => '3.58',
11910             'File::Spec::VMS'       => '3.58',
11911             'File::Spec::Win32'     => '3.58',
11912             'Hash::Util::FieldHash' => '1.17',
11913             'Locale::Codes'         => '3.36',
11914             'Locale::Codes::Constants'=> '3.36',
11915             'Locale::Codes::Country'=> '3.36',
11916             'Locale::Codes::Country_Codes'=> '3.36',
11917             'Locale::Codes::Country_Retired'=> '3.36',
11918             'Locale::Codes::Currency'=> '3.36',
11919             'Locale::Codes::Currency_Codes'=> '3.36',
11920             'Locale::Codes::Currency_Retired'=> '3.36',
11921             'Locale::Codes::LangExt'=> '3.36',
11922             'Locale::Codes::LangExt_Codes'=> '3.36',
11923             'Locale::Codes::LangExt_Retired'=> '3.36',
11924             'Locale::Codes::LangFam'=> '3.36',
11925             'Locale::Codes::LangFam_Codes'=> '3.36',
11926             'Locale::Codes::LangFam_Retired'=> '3.36',
11927             'Locale::Codes::LangVar'=> '3.36',
11928             'Locale::Codes::LangVar_Codes'=> '3.36',
11929             'Locale::Codes::LangVar_Retired'=> '3.36',
11930             'Locale::Codes::Language'=> '3.36',
11931             'Locale::Codes::Language_Codes'=> '3.36',
11932             'Locale::Codes::Language_Retired'=> '3.36',
11933             'Locale::Codes::Script' => '3.36',
11934             'Locale::Codes::Script_Codes'=> '3.36',
11935             'Locale::Codes::Script_Retired'=> '3.36',
11936             'Locale::Country'       => '3.36',
11937             'Locale::Currency'      => '3.36',
11938             'Locale::Language'      => '3.36',
11939             'Locale::Script'        => '3.36',
11940             'Math::BigFloat::Trace' => '0.40',
11941             'Math::BigInt::Trace'   => '0.40',
11942             'Module::CoreList'      => '5.20150920',
11943             'Module::CoreList::TieHashDelta'=> '5.20150920',
11944             'Module::CoreList::Utils'=> '5.20150920',
11945             'OS2::DLL'              => '1.06',
11946             'OS2::ExtAttr'          => '0.04',
11947             'OS2::Process'          => '1.11',
11948             'OS2::REXX'             => '1.05',
11949             'POSIX'                 => '1.57',
11950             'Pod::Perldoc'          => '3.25_01',
11951             'Socket'                => '2.020_01',
11952             'Test'                  => '1.27',
11953             'Thread::Queue'         => '3.06',
11954             'Time::HiRes'           => '1.9727_02',
11955             'Unicode::UCD'          => '0.63',
11956             'Win32'                 => '0.52',
11957             'XS::APItest'           => '0.75',
11958             'bigint'                => '0.40',
11959             'bignum'                => '0.40',
11960             'bigrat'                => '0.40',
11961             'encoding'              => '2.17',
11962             'experimental'          => '0.014',
11963             'if'                    => '0.0605',
11964             'locale'                => '1.07',
11965             'mro'                   => '1.18',
11966             'threads'               => '2.03',
11967         },
11968         removed => {
11969         }
11970     },
11971     5.023004 => {
11972         delta_from => 5.023003,
11973         changed => {
11974             'B'                     => '1.60',
11975             'B::Op_private'         => '5.023004',
11976             'Compress::Raw::Bzip2'  => '2.069',
11977             'Compress::Raw::Zlib'   => '2.069',
11978             'Compress::Zlib'        => '2.069',
11979             'Config'                => '5.023004',
11980             'Devel::PPPort'         => '3.32',
11981             'DynaLoader'            => '1.35',
11982             'Encode'                => '2.78',
11983             'ExtUtils::CBuilder'    => '0.280224',
11984             'ExtUtils::CBuilder::Base'=> '0.280224',
11985             'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
11986             'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
11987             'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
11988             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
11989             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
11990             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
11991             'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
11992             'ExtUtils::CBuilder::Platform::android'=> '0.280224',
11993             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
11994             'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
11995             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
11996             'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
11997             'File::Path'            => '2.12',
11998             'IO'                    => '1.36',
11999             'IO::Compress::Adapter::Bzip2'=> '2.069',
12000             'IO::Compress::Adapter::Deflate'=> '2.069',
12001             'IO::Compress::Adapter::Identity'=> '2.069',
12002             'IO::Compress::Base'    => '2.069',
12003             'IO::Compress::Base::Common'=> '2.069',
12004             'IO::Compress::Bzip2'   => '2.069',
12005             'IO::Compress::Deflate' => '2.069',
12006             'IO::Compress::Gzip'    => '2.069',
12007             'IO::Compress::Gzip::Constants'=> '2.069',
12008             'IO::Compress::RawDeflate'=> '2.069',
12009             'IO::Compress::Zip'     => '2.069',
12010             'IO::Compress::Zip::Constants'=> '2.069',
12011             'IO::Compress::Zlib::Constants'=> '2.069',
12012             'IO::Compress::Zlib::Extra'=> '2.069',
12013             'IO::Poll'              => '0.10',
12014             'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
12015             'IO::Uncompress::Adapter::Identity'=> '2.069',
12016             'IO::Uncompress::Adapter::Inflate'=> '2.069',
12017             'IO::Uncompress::AnyInflate'=> '2.069',
12018             'IO::Uncompress::AnyUncompress'=> '2.069',
12019             'IO::Uncompress::Base'  => '2.069',
12020             'IO::Uncompress::Bunzip2'=> '2.069',
12021             'IO::Uncompress::Gunzip'=> '2.069',
12022             'IO::Uncompress::Inflate'=> '2.069',
12023             'IO::Uncompress::RawInflate'=> '2.069',
12024             'IO::Uncompress::Unzip' => '2.069',
12025             'Math::BigFloat'        => '1.999704',
12026             'Math::BigFloat::Trace' => '0.41',
12027             'Math::BigInt'          => '1.999704',
12028             'Math::BigInt::Calc'    => '1.999704',
12029             'Math::BigInt::CalcEmu' => '1.999704',
12030             'Math::BigInt::FastCalc'=> '0.34',
12031             'Math::BigInt::Trace'   => '0.41',
12032             'Module::CoreList'      => '5.20151020',
12033             'Module::CoreList::TieHashDelta'=> '5.20151020',
12034             'Module::CoreList::Utils'=> '5.20151020',
12035             'Module::Metadata'      => '1.000029',
12036             'POSIX'                 => '1.58',
12037             'Perl::OSType'          => '1.009',
12038             'PerlIO::encoding'      => '0.22',
12039             'Socket'                => '2.020_02',
12040             'Unicode::Normalize'    => '1.21',
12041             'XS::APItest'           => '0.76',
12042             'bigint'                => '0.41',
12043             'bignum'                => '0.41',
12044             'bigrat'                => '0.41',
12045             'experimental'          => '0.016',
12046             'if'                    => '0.0606',
12047             'warnings'              => '1.35',
12048         },
12049         removed => {
12050         }
12051     },
12052     5.023005 => {
12053         delta_from => 5.023004,
12054         changed => {
12055             'B'                     => '1.61',
12056             'B::Op_private'         => '5.023005',
12057             'Carp'                  => '1.38',
12058             'Carp::Heavy'           => '1.38',
12059             'Config'                => '5.023005',
12060             'Config::Perl::V'       => '0.25',
12061             'Cwd'                   => '3.59',
12062             'Devel::Peek'           => '1.23',
12063             'Dumpvalue'             => '1.18',
12064             'DynaLoader'            => '1.36',
12065             'File::Find'            => '1.32',
12066             'File::Spec'            => '3.59',
12067             'File::Spec::AmigaOS'   => '3.59',
12068             'File::Spec::Cygwin'    => '3.59',
12069             'File::Spec::Epoc'      => '3.59',
12070             'File::Spec::Functions' => '3.59',
12071             'File::Spec::Mac'       => '3.59',
12072             'File::Spec::OS2'       => '3.59',
12073             'File::Spec::Unix'      => '3.59',
12074             'File::Spec::VMS'       => '3.59',
12075             'File::Spec::Win32'     => '3.59',
12076             'Getopt::Long'          => '2.48',
12077             'Hash::Util::FieldHash' => '1.18',
12078             'IPC::Open3'            => '1.20',
12079             'Math::BigFloat'        => '1.999710',
12080             'Math::BigInt'          => '1.999710',
12081             'Math::BigInt::Calc'    => '1.999710',
12082             'Math::BigInt::CalcEmu' => '1.999710',
12083             'Math::BigInt::FastCalc'=> '0.37',
12084             'Module::CoreList'      => '5.20151120',
12085             'Module::CoreList::TieHashDelta'=> '5.20151120',
12086             'Module::CoreList::Utils'=> '5.20151120',
12087             'Module::Metadata'      => '1.000030',
12088             'POSIX'                 => '1.59',
12089             'PerlIO::encoding'      => '0.23',
12090             'PerlIO::mmap'          => '0.015',
12091             'PerlIO::scalar'        => '0.24',
12092             'PerlIO::via'           => '0.16',
12093             'Pod::Simple'           => '3.32',
12094             'Pod::Simple::BlackBox' => '3.32',
12095             'Pod::Simple::Checker'  => '3.32',
12096             'Pod::Simple::Debug'    => '3.32',
12097             'Pod::Simple::DumpAsText'=> '3.32',
12098             'Pod::Simple::DumpAsXML'=> '3.32',
12099             'Pod::Simple::HTML'     => '3.32',
12100             'Pod::Simple::HTMLBatch'=> '3.32',
12101             'Pod::Simple::LinkSection'=> '3.32',
12102             'Pod::Simple::Methody'  => '3.32',
12103             'Pod::Simple::Progress' => '3.32',
12104             'Pod::Simple::PullParser'=> '3.32',
12105             'Pod::Simple::PullParserEndToken'=> '3.32',
12106             'Pod::Simple::PullParserStartToken'=> '3.32',
12107             'Pod::Simple::PullParserTextToken'=> '3.32',
12108             'Pod::Simple::PullParserToken'=> '3.32',
12109             'Pod::Simple::RTF'      => '3.32',
12110             'Pod::Simple::Search'   => '3.32',
12111             'Pod::Simple::SimpleTree'=> '3.32',
12112             'Pod::Simple::Text'     => '3.32',
12113             'Pod::Simple::TextContent'=> '3.32',
12114             'Pod::Simple::TiedOutFH'=> '3.32',
12115             'Pod::Simple::Transcode'=> '3.32',
12116             'Pod::Simple::TranscodeDumb'=> '3.32',
12117             'Pod::Simple::TranscodeSmart'=> '3.32',
12118             'Pod::Simple::XHTML'    => '3.32',
12119             'Pod::Simple::XMLOutStream'=> '3.32',
12120             'Thread::Queue'         => '3.07',
12121             'Tie::Scalar'           => '1.04',
12122             'Time::HiRes'           => '1.9728',
12123             'Time::Piece'           => '1.31',
12124             'Time::Seconds'         => '1.31',
12125             'Unicode::Normalize'    => '1.23',
12126             'XSLoader'              => '0.21',
12127             'arybase'               => '0.11',
12128             'base'                  => '2.22_01',
12129             'fields'                => '2.22_01',
12130             'threads'               => '2.04',
12131             'threads::shared'       => '1.49',
12132         },
12133         removed => {
12134             'ExtUtils::MakeMaker::version::vpp'=> 1,
12135             'version::vpp'          => 1,
12136         }
12137     },
12138     5.022001 => {
12139         delta_from => 5.022,
12140         changed => {
12141             'B::Op_private'         => '5.022001',
12142             'Config'                => '5.022001',
12143             'Module::CoreList'      => '5.20151213',
12144             'Module::CoreList::TieHashDelta'=> '5.20151213',
12145             'Module::CoreList::Utils'=> '5.20151213',
12146             'POSIX'                 => '1.53_01',
12147             'PerlIO::scalar'        => '0.23',
12148             'Storable'              => '2.53_01',
12149             'Win32'                 => '0.52',
12150             'warnings'              => '1.34',
12151         },
12152         removed => {
12153         }
12154     },
12155     5.023006 => {
12156         delta_from => 5.023005,
12157         changed => {
12158             'B::Deparse'            => '1.36',
12159             'B::Op_private'         => '5.023006',
12160             'Benchmark'             => '1.21',
12161             'CPAN::Meta::Requirements'=> '2.140',
12162             'CPAN::Meta::YAML'      => '0.018',
12163             'Config'                => '5.023006',
12164             'Cwd'                   => '3.60',
12165             'Data::Dumper'          => '2.159',
12166             'DynaLoader'            => '1.37',
12167             'File::Spec'            => '3.60',
12168             'File::Spec::AmigaOS'   => '3.60',
12169             'File::Spec::Cygwin'    => '3.60',
12170             'File::Spec::Epoc'      => '3.60',
12171             'File::Spec::Functions' => '3.60',
12172             'File::Spec::Mac'       => '3.60',
12173             'File::Spec::OS2'       => '3.60',
12174             'File::Spec::Unix'      => '3.60',
12175             'File::Spec::VMS'       => '3.60',
12176             'File::Spec::Win32'     => '3.60',
12177             'Hash::Util::FieldHash' => '1.19',
12178             'Locale::Codes'         => '3.37',
12179             'Locale::Codes::Constants'=> '3.37',
12180             'Locale::Codes::Country'=> '3.37',
12181             'Locale::Codes::Country_Codes'=> '3.37',
12182             'Locale::Codes::Country_Retired'=> '3.37',
12183             'Locale::Codes::Currency'=> '3.37',
12184             'Locale::Codes::Currency_Codes'=> '3.37',
12185             'Locale::Codes::Currency_Retired'=> '3.37',
12186             'Locale::Codes::LangExt'=> '3.37',
12187             'Locale::Codes::LangExt_Codes'=> '3.37',
12188             'Locale::Codes::LangExt_Retired'=> '3.37',
12189             'Locale::Codes::LangFam'=> '3.37',
12190             'Locale::Codes::LangFam_Codes'=> '3.37',
12191             'Locale::Codes::LangFam_Retired'=> '3.37',
12192             'Locale::Codes::LangVar'=> '3.37',
12193             'Locale::Codes::LangVar_Codes'=> '3.37',
12194             'Locale::Codes::LangVar_Retired'=> '3.37',
12195             'Locale::Codes::Language'=> '3.37',
12196             'Locale::Codes::Language_Codes'=> '3.37',
12197             'Locale::Codes::Language_Retired'=> '3.37',
12198             'Locale::Codes::Script' => '3.37',
12199             'Locale::Codes::Script_Codes'=> '3.37',
12200             'Locale::Codes::Script_Retired'=> '3.37',
12201             'Locale::Country'       => '3.37',
12202             'Locale::Currency'      => '3.37',
12203             'Locale::Language'      => '3.37',
12204             'Locale::Script'        => '3.37',
12205             'Math::BigInt::FastCalc'=> '0.38',
12206             'Module::CoreList'      => '5.20151220',
12207             'Module::CoreList::TieHashDelta'=> '5.20151220',
12208             'Module::CoreList::Utils'=> '5.20151220',
12209             'Module::Metadata'      => '1.000031',
12210             'Opcode'                => '1.34',
12211             'PerlIO::mmap'          => '0.016',
12212             'Pod::Perldoc'          => '3.25_02',
12213             'SDBM_File'             => '1.14',
12214             'Term::ANSIColor'       => '4.04',
12215             'Test'                  => '1.28',
12216             'Unicode::Normalize'    => '1.24',
12217             'XS::APItest'           => '0.77',
12218             'base'                  => '2.23',
12219             'encoding::warnings'    => '0.12',
12220             'fields'                => '2.23',
12221             'locale'                => '1.08',
12222             'strict'                => '1.10',
12223             'threads'               => '2.05',
12224             'threads::shared'       => '1.50',
12225             'utf8'                  => '1.18',
12226         },
12227         removed => {
12228         }
12229     },
12230     5.023007 => {
12231         delta_from => 5.023006,
12232         changed => {
12233             'App::Prove'            => '3.36',
12234             'App::Prove::State'     => '3.36',
12235             'App::Prove::State::Result'=> '3.36',
12236             'App::Prove::State::Result::Test'=> '3.36',
12237             'B'                     => '1.62',
12238             'B::Deparse'            => '1.37',
12239             'B::Op_private'         => '5.023007',
12240             'Benchmark'             => '1.22',
12241             'Config'                => '5.023007',
12242             'Cwd'                   => '3.62',
12243             'Data::Dumper'          => '2.160',
12244             'ExtUtils::ParseXS'     => '3.31',
12245             'ExtUtils::ParseXS::Constants'=> '3.31',
12246             'ExtUtils::ParseXS::CountLines'=> '3.31',
12247             'ExtUtils::ParseXS::Eval'=> '3.31',
12248             'ExtUtils::ParseXS::Utilities'=> '3.31',
12249             'ExtUtils::Typemaps'    => '3.31',
12250             'ExtUtils::Typemaps::Cmd'=> '3.31',
12251             'ExtUtils::Typemaps::InputMap'=> '3.31',
12252             'ExtUtils::Typemaps::OutputMap'=> '3.31',
12253             'ExtUtils::Typemaps::Type'=> '3.31',
12254             'File::Find'            => '1.33',
12255             'File::Spec'            => '3.62',
12256             'File::Spec::AmigaOS'   => '3.62',
12257             'File::Spec::Cygwin'    => '3.62',
12258             'File::Spec::Epoc'      => '3.62',
12259             'File::Spec::Functions' => '3.62',
12260             'File::Spec::Mac'       => '3.62',
12261             'File::Spec::OS2'       => '3.62',
12262             'File::Spec::Unix'      => '3.62',
12263             'File::Spec::VMS'       => '3.62',
12264             'File::Spec::Win32'     => '3.62',
12265             'Math::BigFloat'        => '1.999715',
12266             'Math::BigFloat::Trace' => '0.42',
12267             'Math::BigInt'          => '1.999715',
12268             'Math::BigInt::Calc'    => '1.999715',
12269             'Math::BigInt::CalcEmu' => '1.999715',
12270             'Math::BigInt::FastCalc'=> '0.40',
12271             'Math::BigInt::Trace'   => '0.42',
12272             'Math::BigRat'          => '0.260802',
12273             'Module::CoreList'      => '5.20160120',
12274             'Module::CoreList::TieHashDelta'=> '5.20160120',
12275             'Module::CoreList::Utils'=> '5.20160120',
12276             'Net::Cmd'              => '3.08',
12277             'Net::Config'           => '3.08',
12278             'Net::Domain'           => '3.08',
12279             'Net::FTP'              => '3.08',
12280             'Net::FTP::A'           => '3.08',
12281             'Net::FTP::E'           => '3.08',
12282             'Net::FTP::I'           => '3.08',
12283             'Net::FTP::L'           => '3.08',
12284             'Net::FTP::dataconn'    => '3.08',
12285             'Net::NNTP'             => '3.08',
12286             'Net::Netrc'            => '3.08',
12287             'Net::POP3'             => '3.08',
12288             'Net::SMTP'             => '3.08',
12289             'Net::Time'             => '3.08',
12290             'Pod::Man'              => '4.04',
12291             'Pod::ParseLink'        => '4.04',
12292             'Pod::Text'             => '4.04',
12293             'Pod::Text::Color'      => '4.04',
12294             'Pod::Text::Overstrike' => '4.04',
12295             'Pod::Text::Termcap'    => '4.04',
12296             'Pod::Usage'            => '1.68',
12297             'TAP::Base'             => '3.36',
12298             'TAP::Formatter::Base'  => '3.36',
12299             'TAP::Formatter::Color' => '3.36',
12300             'TAP::Formatter::Console'=> '3.36',
12301             'TAP::Formatter::Console::ParallelSession'=> '3.36',
12302             'TAP::Formatter::Console::Session'=> '3.36',
12303             'TAP::Formatter::File'  => '3.36',
12304             'TAP::Formatter::File::Session'=> '3.36',
12305             'TAP::Formatter::Session'=> '3.36',
12306             'TAP::Harness'          => '3.36',
12307             'TAP::Harness::Env'     => '3.36',
12308             'TAP::Object'           => '3.36',
12309             'TAP::Parser'           => '3.36',
12310             'TAP::Parser::Aggregator'=> '3.36',
12311             'TAP::Parser::Grammar'  => '3.36',
12312             'TAP::Parser::Iterator' => '3.36',
12313             'TAP::Parser::Iterator::Array'=> '3.36',
12314             'TAP::Parser::Iterator::Process'=> '3.36',
12315             'TAP::Parser::Iterator::Stream'=> '3.36',
12316             'TAP::Parser::IteratorFactory'=> '3.36',
12317             'TAP::Parser::Multiplexer'=> '3.36',
12318             'TAP::Parser::Result'   => '3.36',
12319             'TAP::Parser::Result::Bailout'=> '3.36',
12320             'TAP::Parser::Result::Comment'=> '3.36',
12321             'TAP::Parser::Result::Plan'=> '3.36',
12322             'TAP::Parser::Result::Pragma'=> '3.36',
12323             'TAP::Parser::Result::Test'=> '3.36',
12324             'TAP::Parser::Result::Unknown'=> '3.36',
12325             'TAP::Parser::Result::Version'=> '3.36',
12326             'TAP::Parser::Result::YAML'=> '3.36',
12327             'TAP::Parser::ResultFactory'=> '3.36',
12328             'TAP::Parser::Scheduler'=> '3.36',
12329             'TAP::Parser::Scheduler::Job'=> '3.36',
12330             'TAP::Parser::Scheduler::Spinner'=> '3.36',
12331             'TAP::Parser::Source'   => '3.36',
12332             'TAP::Parser::SourceHandler'=> '3.36',
12333             'TAP::Parser::SourceHandler::Executable'=> '3.36',
12334             'TAP::Parser::SourceHandler::File'=> '3.36',
12335             'TAP::Parser::SourceHandler::Handle'=> '3.36',
12336             'TAP::Parser::SourceHandler::Perl'=> '3.36',
12337             'TAP::Parser::SourceHandler::RawTAP'=> '3.36',
12338             'TAP::Parser::YAMLish::Reader'=> '3.36',
12339             'TAP::Parser::YAMLish::Writer'=> '3.36',
12340             'Test::Harness'         => '3.36',
12341             'Unicode::Normalize'    => '1.25',
12342             'Unicode::UCD'          => '0.64',
12343             'XS::APItest'           => '0.78',
12344             'bigint'                => '0.42',
12345             'bignum'                => '0.42',
12346             'bigrat'                => '0.42',
12347             'utf8'                  => '1.19',
12348         },
12349         removed => {
12350         }
12351     },
12352     5.023008 => {
12353         delta_from => 5.023007,
12354         changed => {
12355             'B::Op_private'         => '5.023008',
12356             'Config'                => '5.023008',
12357             'Cwd'                   => '3.63',
12358             'DynaLoader'            => '1.38',
12359             'Encode'                => '2.80',
12360             'Encode::Alias'         => '2.20',
12361             'Encode::MIME::Header'  => '2.19',
12362             'Encode::Unicode'       => '2.15',
12363             'ExtUtils::CBuilder'    => '0.280225',
12364             'ExtUtils::CBuilder::Base'=> '0.280225',
12365             'ExtUtils::CBuilder::Platform::Unix'=> '0.280225',
12366             'ExtUtils::CBuilder::Platform::VMS'=> '0.280225',
12367             'ExtUtils::CBuilder::Platform::Windows'=> '0.280225',
12368             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225',
12369             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225',
12370             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225',
12371             'ExtUtils::CBuilder::Platform::aix'=> '0.280225',
12372             'ExtUtils::CBuilder::Platform::android'=> '0.280225',
12373             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225',
12374             'ExtUtils::CBuilder::Platform::darwin'=> '0.280225',
12375             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225',
12376             'ExtUtils::CBuilder::Platform::os2'=> '0.280225',
12377             'ExtUtils::Command::MM' => '7.10_01',
12378             'ExtUtils::Liblist'     => '7.10_01',
12379             'ExtUtils::Liblist::Kid'=> '7.10_01',
12380             'ExtUtils::MM'          => '7.10_01',
12381             'ExtUtils::MM_AIX'      => '7.10_01',
12382             'ExtUtils::MM_Any'      => '7.10_01',
12383             'ExtUtils::MM_BeOS'     => '7.10_01',
12384             'ExtUtils::MM_Cygwin'   => '7.10_01',
12385             'ExtUtils::MM_DOS'      => '7.10_01',
12386             'ExtUtils::MM_Darwin'   => '7.10_01',
12387             'ExtUtils::MM_MacOS'    => '7.10_01',
12388             'ExtUtils::MM_NW5'      => '7.10_01',
12389             'ExtUtils::MM_OS2'      => '7.10_01',
12390             'ExtUtils::MM_QNX'      => '7.10_01',
12391             'ExtUtils::MM_UWIN'     => '7.10_01',
12392             'ExtUtils::MM_Unix'     => '7.10_01',
12393             'ExtUtils::MM_VMS'      => '7.10_01',
12394             'ExtUtils::MM_VOS'      => '7.10_01',
12395             'ExtUtils::MM_Win32'    => '7.10_01',
12396             'ExtUtils::MM_Win95'    => '7.10_01',
12397             'ExtUtils::MY'          => '7.10_01',
12398             'ExtUtils::MakeMaker'   => '7.10_01',
12399             'ExtUtils::MakeMaker::Config'=> '7.10_01',
12400             'ExtUtils::MakeMaker::version'=> '7.10_01',
12401             'ExtUtils::MakeMaker::version::regex'=> '7.10_01',
12402             'ExtUtils::Mkbootstrap' => '7.10_01',
12403             'ExtUtils::Mksymlists'  => '7.10_01',
12404             'ExtUtils::testlib'     => '7.10_01',
12405             'File::Spec'            => '3.63',
12406             'File::Spec::AmigaOS'   => '3.63',
12407             'File::Spec::Cygwin'    => '3.63',
12408             'File::Spec::Epoc'      => '3.63',
12409             'File::Spec::Functions' => '3.63',
12410             'File::Spec::Mac'       => '3.63',
12411             'File::Spec::OS2'       => '3.63',
12412             'File::Spec::Unix'      => '3.63',
12413             'File::Spec::VMS'       => '3.63',
12414             'File::Spec::Win32'     => '3.63',
12415             'IPC::Msg'              => '2.05',
12416             'IPC::Semaphore'        => '2.05',
12417             'IPC::SharedMem'        => '2.05',
12418             'IPC::SysV'             => '2.05',
12419             'Module::CoreList'      => '5.20160121',
12420             'Module::CoreList::TieHashDelta'=> '5.20160121',
12421             'Module::CoreList::Utils'=> '5.20160121',
12422             'ODBM_File'             => '1.13',
12423             'POSIX'                 => '1.63',
12424             'PerlIO::encoding'      => '0.24',
12425             'Pod::Man'              => '4.06',
12426             'Pod::ParseLink'        => '4.06',
12427             'Pod::Text'             => '4.06',
12428             'Pod::Text::Color'      => '4.06',
12429             'Pod::Text::Overstrike' => '4.06',
12430             'Pod::Text::Termcap'    => '4.06',
12431             'Storable'              => '2.55',
12432             'Time::HiRes'           => '1.9730',
12433             'XS::APItest'           => '0.79',
12434         },
12435         removed => {
12436         }
12437     },
12438     5.023009 => {
12439         delta_from => 5.023008,
12440         changed => {
12441             'Amiga::ARexx'          => '0.04',
12442             'Amiga::Exec'           => '0.02',
12443             'B::Op_private'         => '5.023009',
12444             'Carp'                  => '1.40',
12445             'Carp::Heavy'           => '1.40',
12446             'Config'                => '5.023009',
12447             'Errno'                 => '1.25',
12448             'ExtUtils::Embed'       => '1.33',
12449             'File::Find'            => '1.34',
12450             'File::Glob'            => '1.26',
12451             'File::Spec::AmigaOS'   => ';.64',
12452             'IPC::Msg'              => '2.06_01',
12453             'IPC::Semaphore'        => '2.06_01',
12454             'IPC::SharedMem'        => '2.06_01',
12455             'IPC::SysV'             => '2.06_01',
12456             'List::Util'            => '1.42_02',
12457             'List::Util::XS'        => '1.42_02',
12458             'Module::CoreList'      => '5.20160320',
12459             'Module::CoreList::TieHashDelta'=> '5.20160320',
12460             'Module::CoreList::Utils'=> '5.20160320',
12461             'POSIX'                 => '1.64',
12462             'Pod::Functions'        => '1.10',
12463             'Pod::Functions::Functions'=> '1.10',
12464             'Scalar::Util'          => '1.42_02',
12465             'SelfLoader'            => '1.23',
12466             'Socket'                => '2.020_03',
12467             'Storable'              => '2.56',
12468             'Sub::Util'             => '1.42_02',
12469             'Thread::Queue'         => '3.08',
12470             'Tie::File'             => '1.02',
12471             'Time::HiRes'           => '1.9732',
12472             'Win32API::File'        => '0.1203',
12473             'XS::APItest'           => '0.80',
12474             'autouse'               => '1.11',
12475             'bytes'                 => '1.05',
12476             'strict'                => '1.11',
12477             'threads'               => '2.06',
12478             'version'               => '0.9916',
12479             'version::regex'        => '0.9916',
12480             'warnings'              => '1.36',
12481         },
12482         removed => {
12483             'Win32API::File::ExtUtils::Myconst2perl'=> 1,
12484         }
12485     },
12486     5.022002 => {
12487         delta_from => 5.022001,
12488         changed => {
12489             'B::Op_private'         => '5.022002',
12490             'Config'                => '5.022002',
12491             'Cwd'                   => '3.56_01',
12492             'File::Spec'            => '3.56_01',
12493             'File::Spec::Cygwin'    => '3.56_01',
12494             'File::Spec::Epoc'      => '3.56_01',
12495             'File::Spec::Functions' => '3.56_01',
12496             'File::Spec::Mac'       => '3.56_01',
12497             'File::Spec::OS2'       => '3.56_01',
12498             'File::Spec::Unix'      => '3.56_01',
12499             'File::Spec::VMS'       => '3.56_01',
12500             'File::Spec::Win32'     => '3.56_01',
12501             'Module::CoreList'      => '5.20160429',
12502             'Module::CoreList::TieHashDelta'=> '5.20160429',
12503             'Module::CoreList::Utils'=> '5.20160429',
12504             'XS::APItest'           => '0.72_01',
12505         },
12506         removed => {
12507         }
12508     },
12509     5.024000 => {
12510         delta_from => 5.023009,
12511         changed => {
12512             'B::Op_private'         => '5.024000',
12513             'Config'                => '5.024',
12514             'File::Copy'            => '2.31',
12515             'File::Path'            => '2.12_01',
12516             'File::Spec::AmigaOS'   => '3.64',
12517             'IO::Handle'            => '1.36',
12518             'Module::CoreList'      => '5.20160506',
12519             'Module::CoreList::TieHashDelta'=> '5.20160506',
12520             'Module::CoreList::Utils'=> '5.20160506',
12521             'ODBM_File'             => '1.14',
12522             'POSIX'                 => '1.65',
12523             'Pod::Man'              => '4.07',
12524             'Pod::ParseLink'        => '4.07',
12525             'Pod::Text'             => '4.07',
12526             'Pod::Text::Color'      => '4.07',
12527             'Pod::Text::Overstrike' => '4.07',
12528             'Pod::Text::Termcap'    => '4.07',
12529             'Thread::Queue'         => '3.09',
12530             'Time::HiRes'           => '1.9733',
12531             'threads'               => '2.07',
12532             'threads::shared'       => '1.51',
12533             'locale'                => '1.09',
12534         },
12535         removed => {
12536         }
12537     },
12538     5.025000 => {
12539         delta_from => 5.024,
12540         changed => {
12541             'B::Op_private'         => '5.025000',
12542             'Config'                => '5.025',
12543             'Module::CoreList'      => '5.20160507',
12544             'Module::CoreList::TieHashDelta'=> '5.20160507',
12545             'Module::CoreList::Utils'=> '5.20160507',
12546             'feature'               => '1.43',
12547         },
12548         removed => {
12549         }
12550     },
12551     5.025001 => {
12552         delta_from => 5.025,
12553         changed => {
12554             'Archive::Tar'          => '2.08',
12555             'Archive::Tar::Constant'=> '2.08',
12556             'Archive::Tar::File'    => '2.08',
12557             'B::Op_private'         => '5.025001',
12558             'Carp'                  => '1.41',
12559             'Carp::Heavy'           => '1.41',
12560             'Config'                => '5.025001',
12561             'Config::Perl::V'       => '0.26',
12562             'DB_File'               => '1.838',
12563             'Digest::MD5'           => '2.55',
12564             'IPC::Cmd'              => '0.94',
12565             'IPC::Msg'              => '2.07',
12566             'IPC::Semaphore'        => '2.07',
12567             'IPC::SharedMem'        => '2.07',
12568             'IPC::SysV'             => '2.07',
12569             'List::Util'            => '1.45_01',
12570             'List::Util::XS'        => '1.45_01',
12571             'Locale::Codes'         => '3.38',
12572             'Locale::Codes::Constants'=> '3.38',
12573             'Locale::Codes::Country'=> '3.38',
12574             'Locale::Codes::Country_Codes'=> '3.38',
12575             'Locale::Codes::Country_Retired'=> '3.38',
12576             'Locale::Codes::Currency'=> '3.38',
12577             'Locale::Codes::Currency_Codes'=> '3.38',
12578             'Locale::Codes::Currency_Retired'=> '3.38',
12579             'Locale::Codes::LangExt'=> '3.38',
12580             'Locale::Codes::LangExt_Codes'=> '3.38',
12581             'Locale::Codes::LangExt_Retired'=> '3.38',
12582             'Locale::Codes::LangFam'=> '3.38',
12583             'Locale::Codes::LangFam_Codes'=> '3.38',
12584             'Locale::Codes::LangFam_Retired'=> '3.38',
12585             'Locale::Codes::LangVar'=> '3.38',
12586             'Locale::Codes::LangVar_Codes'=> '3.38',
12587             'Locale::Codes::LangVar_Retired'=> '3.38',
12588             'Locale::Codes::Language'=> '3.38',
12589             'Locale::Codes::Language_Codes'=> '3.38',
12590             'Locale::Codes::Language_Retired'=> '3.38',
12591             'Locale::Codes::Script' => '3.38',
12592             'Locale::Codes::Script_Codes'=> '3.38',
12593             'Locale::Codes::Script_Retired'=> '3.38',
12594             'Locale::Country'       => '3.38',
12595             'Locale::Currency'      => '3.38',
12596             'Locale::Language'      => '3.38',
12597             'Locale::Maketext'      => '1.27',
12598             'Locale::Script'        => '3.38',
12599             'Module::CoreList'      => '5.20160520',
12600             'Module::CoreList::TieHashDelta'=> '5.20160520',
12601             'Module::CoreList::Utils'=> '5.20160520',
12602             'Module::Metadata'      => '1.000032',
12603             'POSIX'                 => '1.69',
12604             'Scalar::Util'          => '1.45_01',
12605             'Sub::Util'             => '1.45_01',
12606             'Sys::Syslog'           => '0.34',
12607             'Term::ANSIColor'       => '4.05',
12608             'Test2'                 => '1.302015',
12609             'Test2::API'            => '1.302015',
12610             'Test2::API::Breakage'  => '1.302015',
12611             'Test2::API::Context'   => '1.302015',
12612             'Test2::API::Instance'  => '1.302015',
12613             'Test2::API::Stack'     => '1.302015',
12614             'Test2::Event'          => '1.302015',
12615             'Test2::Event::Bail'    => '1.302015',
12616             'Test2::Event::Diag'    => '1.302015',
12617             'Test2::Event::Exception'=> '1.302015',
12618             'Test2::Event::Note'    => '1.302015',
12619             'Test2::Event::Ok'      => '1.302015',
12620             'Test2::Event::Plan'    => '1.302015',
12621             'Test2::Event::Skip'    => '1.302015',
12622             'Test2::Event::Subtest' => '1.302015',
12623             'Test2::Event::Waiting' => '1.302015',
12624             'Test2::Formatter'      => '1.302015',
12625             'Test2::Formatter::TAP' => '1.302015',
12626             'Test2::Hub'            => '1.302015',
12627             'Test2::Hub::Interceptor'=> '1.302015',
12628             'Test2::Hub::Interceptor::Terminator'=> '1.302015',
12629             'Test2::Hub::Subtest'   => '1.302015',
12630             'Test2::IPC'            => '1.302015',
12631             'Test2::IPC::Driver'    => '1.302015',
12632             'Test2::IPC::Driver::Files'=> '1.302015',
12633             'Test2::Util'           => '1.302015',
12634             'Test2::Util::ExternalMeta'=> '1.302015',
12635             'Test2::Util::HashBase' => '1.302015',
12636             'Test2::Util::Trace'    => '1.302015',
12637             'Test::Builder'         => '1.302015',
12638             'Test::Builder::Formatter'=> '1.302015',
12639             'Test::Builder::Module' => '1.302015',
12640             'Test::Builder::Tester' => '1.302015',
12641             'Test::Builder::Tester::Color'=> '1.302015',
12642             'Test::Builder::TodoDiag'=> '1.302015',
12643             'Test::More'            => '1.302015',
12644             'Test::Simple'          => '1.302015',
12645             'Test::Tester'          => '1.302015',
12646             'Test::Tester::Capture' => '1.302015',
12647             'Test::Tester::CaptureRunner'=> '1.302015',
12648             'Test::Tester::Delegate'=> '1.302015',
12649             'Test::use::ok'         => '1.302015',
12650             'XS::APItest'           => '0.81',
12651             '_charnames'            => '1.44',
12652             'charnames'             => '1.44',
12653             'ok'                    => '1.302015',
12654             'perlfaq'               => '5.021011',
12655             're'                    => '0.33',
12656             'threads'               => '2.08',
12657             'threads::shared'       => '1.52',
12658         },
12659         removed => {
12660         }
12661     },
12662     5.025002 => {
12663         delta_from => 5.025001,
12664         changed => {
12665             'App::Cpan'             => '1.64',
12666             'B::Op_private'         => '5.025002',
12667             'CPAN'                  => '2.14',
12668             'CPAN::Distribution'    => '2.12',
12669             'CPAN::FTP'             => '5.5007',
12670             'CPAN::FirstTime'       => '5.5309',
12671             'CPAN::HandleConfig'    => '5.5007',
12672             'CPAN::Index'           => '2.12',
12673             'CPAN::Mirrors'         => '2.12',
12674             'CPAN::Plugin'          => '0.96',
12675             'CPAN::Shell'           => '5.5006',
12676             'Config'                => '5.025002',
12677             'Cwd'                   => '3.64',
12678             'Devel::Peek'           => '1.24',
12679             'DynaLoader'            => '1.39',
12680             'ExtUtils::Command'     => '7.18',
12681             'ExtUtils::Command::MM' => '7.18',
12682             'ExtUtils::Liblist'     => '7.18',
12683             'ExtUtils::Liblist::Kid'=> '7.18',
12684             'ExtUtils::MM'          => '7.18',
12685             'ExtUtils::MM_AIX'      => '7.18',
12686             'ExtUtils::MM_Any'      => '7.18',
12687             'ExtUtils::MM_BeOS'     => '7.18',
12688             'ExtUtils::MM_Cygwin'   => '7.18',
12689             'ExtUtils::MM_DOS'      => '7.18',
12690             'ExtUtils::MM_Darwin'   => '7.18',
12691             'ExtUtils::MM_MacOS'    => '7.18',
12692             'ExtUtils::MM_NW5'      => '7.18',
12693             'ExtUtils::MM_OS2'      => '7.18',
12694             'ExtUtils::MM_QNX'      => '7.18',
12695             'ExtUtils::MM_UWIN'     => '7.18',
12696             'ExtUtils::MM_Unix'     => '7.18',
12697             'ExtUtils::MM_VMS'      => '7.18',
12698             'ExtUtils::MM_VOS'      => '7.18',
12699             'ExtUtils::MM_Win32'    => '7.18',
12700             'ExtUtils::MM_Win95'    => '7.18',
12701             'ExtUtils::MY'          => '7.18',
12702             'ExtUtils::MakeMaker'   => '7.18',
12703             'ExtUtils::MakeMaker::Config'=> '7.18',
12704             'ExtUtils::MakeMaker::Locale'=> '7.18',
12705             'ExtUtils::MakeMaker::version'=> '7.18',
12706             'ExtUtils::MakeMaker::version::regex'=> '7.18',
12707             'ExtUtils::Miniperl'    => '1.06',
12708             'ExtUtils::Mkbootstrap' => '7.18',
12709             'ExtUtils::Mksymlists'  => '7.18',
12710             'ExtUtils::ParseXS'     => '3.32',
12711             'ExtUtils::ParseXS::Constants'=> '3.32',
12712             'ExtUtils::ParseXS::CountLines'=> '3.32',
12713             'ExtUtils::ParseXS::Eval'=> '3.32',
12714             'ExtUtils::ParseXS::Utilities'=> '3.32',
12715             'ExtUtils::Typemaps'    => '3.32',
12716             'ExtUtils::Typemaps::Cmd'=> '3.32',
12717             'ExtUtils::Typemaps::InputMap'=> '3.32',
12718             'ExtUtils::Typemaps::OutputMap'=> '3.32',
12719             'ExtUtils::Typemaps::Type'=> '3.32',
12720             'ExtUtils::testlib'     => '7.18',
12721             'File::Copy'            => '2.32',
12722             'File::Glob'            => '1.27',
12723             'File::Spec'            => '3.64',
12724             'File::Spec::Cygwin'    => '3.64',
12725             'File::Spec::Epoc'      => '3.64',
12726             'File::Spec::Functions' => '3.64',
12727             'File::Spec::Mac'       => '3.64',
12728             'File::Spec::OS2'       => '3.64',
12729             'File::Spec::Unix'      => '3.64',
12730             'File::Spec::VMS'       => '3.64',
12731             'File::Spec::Win32'     => '3.64',
12732             'FileHandle'            => '2.03',
12733             'Getopt::Long'          => '2.49',
12734             'HTTP::Tiny'            => '0.058',
12735             'JSON::PP'              => '2.27400',
12736             'Locale::Codes'         => '3.39',
12737             'Locale::Codes::Constants'=> '3.39',
12738             'Locale::Codes::Country'=> '3.39',
12739             'Locale::Codes::Country_Codes'=> '3.39',
12740             'Locale::Codes::Country_Retired'=> '3.39',
12741             'Locale::Codes::Currency'=> '3.39',
12742             'Locale::Codes::Currency_Codes'=> '3.39',
12743             'Locale::Codes::Currency_Retired'=> '3.39',
12744             'Locale::Codes::LangExt'=> '3.39',
12745             'Locale::Codes::LangExt_Codes'=> '3.39',
12746             'Locale::Codes::LangExt_Retired'=> '3.39',
12747             'Locale::Codes::LangFam'=> '3.39',
12748             'Locale::Codes::LangFam_Codes'=> '3.39',
12749             'Locale::Codes::LangFam_Retired'=> '3.39',
12750             'Locale::Codes::LangVar'=> '3.39',
12751             'Locale::Codes::LangVar_Codes'=> '3.39',
12752             'Locale::Codes::LangVar_Retired'=> '3.39',
12753             'Locale::Codes::Language'=> '3.39',
12754             'Locale::Codes::Language_Codes'=> '3.39',
12755             'Locale::Codes::Language_Retired'=> '3.39',
12756             'Locale::Codes::Script' => '3.39',
12757             'Locale::Codes::Script_Codes'=> '3.39',
12758             'Locale::Codes::Script_Retired'=> '3.39',
12759             'Locale::Country'       => '3.39',
12760             'Locale::Currency'      => '3.39',
12761             'Locale::Language'      => '3.39',
12762             'Locale::Script'        => '3.39',
12763             'Module::CoreList'      => '5.20160620',
12764             'Module::CoreList::TieHashDelta'=> '5.20160620',
12765             'Module::CoreList::Utils'=> '5.20160620',
12766             'Opcode'                => '1.35',
12767             'POSIX'                 => '1.70',
12768             'Pod::Checker'          => '1.73',
12769             'Pod::Functions'        => '1.11',
12770             'Pod::Functions::Functions'=> '1.11',
12771             'Pod::Usage'            => '1.69',
12772             'Test2'                 => '1.302026',
12773             'Test2::API'            => '1.302026',
12774             'Test2::API::Breakage'  => '1.302026',
12775             'Test2::API::Context'   => '1.302026',
12776             'Test2::API::Instance'  => '1.302026',
12777             'Test2::API::Stack'     => '1.302026',
12778             'Test2::Event'          => '1.302026',
12779             'Test2::Event::Bail'    => '1.302026',
12780             'Test2::Event::Diag'    => '1.302026',
12781             'Test2::Event::Exception'=> '1.302026',
12782             'Test2::Event::Generic' => '1.302026',
12783             'Test2::Event::Note'    => '1.302026',
12784             'Test2::Event::Ok'      => '1.302026',
12785             'Test2::Event::Plan'    => '1.302026',
12786             'Test2::Event::Skip'    => '1.302026',
12787             'Test2::Event::Subtest' => '1.302026',
12788             'Test2::Event::Waiting' => '1.302026',
12789             'Test2::Formatter'      => '1.302026',
12790             'Test2::Formatter::TAP' => '1.302026',
12791             'Test2::Hub'            => '1.302026',
12792             'Test2::Hub::Interceptor'=> '1.302026',
12793             'Test2::Hub::Interceptor::Terminator'=> '1.302026',
12794             'Test2::Hub::Subtest'   => '1.302026',
12795             'Test2::IPC'            => '1.302026',
12796             'Test2::IPC::Driver'    => '1.302026',
12797             'Test2::IPC::Driver::Files'=> '1.302026',
12798             'Test2::Util'           => '1.302026',
12799             'Test2::Util::ExternalMeta'=> '1.302026',
12800             'Test2::Util::HashBase' => '1.302026',
12801             'Test2::Util::Trace'    => '1.302026',
12802             'Test::Builder'         => '1.302026',
12803             'Test::Builder::Formatter'=> '1.302026',
12804             'Test::Builder::Module' => '1.302026',
12805             'Test::Builder::Tester' => '1.302026',
12806             'Test::Builder::Tester::Color'=> '1.302026',
12807             'Test::Builder::TodoDiag'=> '1.302026',
12808             'Test::More'            => '1.302026',
12809             'Test::Simple'          => '1.302026',
12810             'Test::Tester'          => '1.302026',
12811             'Test::Tester::Capture' => '1.302026',
12812             'Test::Tester::CaptureRunner'=> '1.302026',
12813             'Test::Tester::Delegate'=> '1.302026',
12814             'Test::use::ok'         => '1.302026',
12815             'Thread::Queue'         => '3.11',
12816             'Time::HiRes'           => '1.9734',
12817             'Unicode::UCD'          => '0.65',
12818             'VMS::DCLsym'           => '1.07',
12819             'XS::APItest'           => '0.82',
12820             'diagnostics'           => '1.35',
12821             'feature'               => '1.44',
12822             'ok'                    => '1.302026',
12823             'threads'               => '2.09',
12824         },
12825         removed => {
12826         }
12827     },
12828     5.025003 => {
12829         delta_from => 5.025002,
12830         changed => {
12831             'B::Op_private'         => '5.025003',
12832             'Config'                => '5.025003',
12833             'Data::Dumper'          => '2.161',
12834             'Devel::PPPort'         => '3.35',
12835             'Encode'                => '2.84',
12836             'Encode::MIME::Header'  => '2.23',
12837             'Encode::MIME::Header::ISO_2022_JP'=> '1.07',
12838             'ExtUtils::ParseXS'     => '3.33',
12839             'ExtUtils::ParseXS::Constants'=> '3.33',
12840             'ExtUtils::ParseXS::CountLines'=> '3.33',
12841             'ExtUtils::ParseXS::Eval'=> '3.33',
12842             'ExtUtils::ParseXS::Utilities'=> '3.33',
12843             'ExtUtils::Typemaps'    => '3.33',
12844             'ExtUtils::Typemaps::Cmd'=> '3.33',
12845             'ExtUtils::Typemaps::InputMap'=> '3.33',
12846             'ExtUtils::Typemaps::OutputMap'=> '3.33',
12847             'ExtUtils::Typemaps::Type'=> '3.33',
12848             'Hash::Util'            => '0.20',
12849             'Math::BigFloat'        => '1.999726',
12850             'Math::BigFloat::Trace' => '0.43',
12851             'Math::BigInt'          => '1.999726',
12852             'Math::BigInt::Calc'    => '1.999726',
12853             'Math::BigInt::CalcEmu' => '1.999726',
12854             'Math::BigInt::FastCalc'=> '0.42',
12855             'Math::BigInt::Trace'   => '0.43',
12856             'Math::BigRat'          => '0.260804',
12857             'Module::CoreList'      => '5.20160720',
12858             'Module::CoreList::TieHashDelta'=> '5.20160720',
12859             'Module::CoreList::Utils'=> '5.20160720',
12860             'Net::Cmd'              => '3.09',
12861             'Net::Config'           => '3.09',
12862             'Net::Domain'           => '3.09',
12863             'Net::FTP'              => '3.09',
12864             'Net::FTP::A'           => '3.09',
12865             'Net::FTP::E'           => '3.09',
12866             'Net::FTP::I'           => '3.09',
12867             'Net::FTP::L'           => '3.09',
12868             'Net::FTP::dataconn'    => '3.09',
12869             'Net::NNTP'             => '3.09',
12870             'Net::Netrc'            => '3.09',
12871             'Net::POP3'             => '3.09',
12872             'Net::SMTP'             => '3.09',
12873             'Net::Time'             => '3.09',
12874             'Parse::CPAN::Meta'     => '1.4422',
12875             'Perl::OSType'          => '1.010',
12876             'Test2'                 => '1.302045',
12877             'Test2::API'            => '1.302045',
12878             'Test2::API::Breakage'  => '1.302045',
12879             'Test2::API::Context'   => '1.302045',
12880             'Test2::API::Instance'  => '1.302045',
12881             'Test2::API::Stack'     => '1.302045',
12882             'Test2::Event'          => '1.302045',
12883             'Test2::Event::Bail'    => '1.302045',
12884             'Test2::Event::Diag'    => '1.302045',
12885             'Test2::Event::Exception'=> '1.302045',
12886             'Test2::Event::Generic' => '1.302045',
12887             'Test2::Event::Info'    => '1.302045',
12888             'Test2::Event::Note'    => '1.302045',
12889             'Test2::Event::Ok'      => '1.302045',
12890             'Test2::Event::Plan'    => '1.302045',
12891             'Test2::Event::Skip'    => '1.302045',
12892             'Test2::Event::Subtest' => '1.302045',
12893             'Test2::Event::Waiting' => '1.302045',
12894             'Test2::Formatter'      => '1.302045',
12895             'Test2::Formatter::TAP' => '1.302045',
12896             'Test2::Hub'            => '1.302045',
12897             'Test2::Hub::Interceptor'=> '1.302045',
12898             'Test2::Hub::Interceptor::Terminator'=> '1.302045',
12899             'Test2::Hub::Subtest'   => '1.302045',
12900             'Test2::IPC'            => '1.302045',
12901             'Test2::IPC::Driver'    => '1.302045',
12902             'Test2::IPC::Driver::Files'=> '1.302045',
12903             'Test2::Util'           => '1.302045',
12904             'Test2::Util::ExternalMeta'=> '1.302045',
12905             'Test2::Util::HashBase' => '1.302045',
12906             'Test2::Util::Trace'    => '1.302045',
12907             'Test::Builder'         => '1.302045',
12908             'Test::Builder::Formatter'=> '1.302045',
12909             'Test::Builder::Module' => '1.302045',
12910             'Test::Builder::Tester' => '1.302045',
12911             'Test::Builder::Tester::Color'=> '1.302045',
12912             'Test::Builder::TodoDiag'=> '1.302045',
12913             'Test::More'            => '1.302045',
12914             'Test::Simple'          => '1.302045',
12915             'Test::Tester'          => '1.302045',
12916             'Test::Tester::Capture' => '1.302045',
12917             'Test::Tester::CaptureRunner'=> '1.302045',
12918             'Test::Tester::Delegate'=> '1.302045',
12919             'Test::use::ok'         => '1.302045',
12920             'Time::HiRes'           => '1.9739',
12921             'Unicode'               => '9.0.0',
12922             'Unicode::UCD'          => '0.66',
12923             'XSLoader'              => '0.22',
12924             'bigint'                => '0.43',
12925             'bignum'                => '0.43',
12926             'bigrat'                => '0.43',
12927             'encoding'              => '2.17_01',
12928             'encoding::warnings'    => '0.13',
12929             'feature'               => '1.45',
12930             'ok'                    => '1.302045',
12931             'version'               => '0.9917',
12932             'version::regex'        => '0.9917',
12933             'warnings'              => '1.37',
12934         },
12935         removed => {
12936         }
12937     },
12938     5.025004 => {
12939         delta_from => 5.025003,
12940         changed => {
12941             'App::Cpan'             => '1.64_01',
12942             'App::Prove'            => '3.36_01',
12943             'App::Prove::State'     => '3.36_01',
12944             'App::Prove::State::Result'=> '3.36_01',
12945             'App::Prove::State::Result::Test'=> '3.36_01',
12946             'Archive::Tar'          => '2.10',
12947             'Archive::Tar::Constant'=> '2.10',
12948             'Archive::Tar::File'    => '2.10',
12949             'B'                     => '1.63',
12950             'B::Concise'            => '0.998',
12951             'B::Deparse'            => '1.38',
12952             'B::Op_private'         => '5.025004',
12953             'CPAN'                  => '2.14_01',
12954             'CPAN::Meta'            => '2.150010',
12955             'CPAN::Meta::Converter' => '2.150010',
12956             'CPAN::Meta::Feature'   => '2.150010',
12957             'CPAN::Meta::History'   => '2.150010',
12958             'CPAN::Meta::Merge'     => '2.150010',
12959             'CPAN::Meta::Prereqs'   => '2.150010',
12960             'CPAN::Meta::Spec'      => '2.150010',
12961             'CPAN::Meta::Validator' => '2.150010',
12962             'Carp'                  => '1.42',
12963             'Carp::Heavy'           => '1.42',
12964             'Compress::Zlib'        => '2.069_01',
12965             'Config'                => '5.025004',
12966             'Config::Perl::V'       => '0.27',
12967             'Cwd'                   => '3.65',
12968             'Digest'                => '1.17_01',
12969             'Digest::SHA'           => '5.96',
12970             'Encode'                => '2.86',
12971             'Errno'                 => '1.26',
12972             'ExtUtils::Command'     => '7.24',
12973             'ExtUtils::Command::MM' => '7.24',
12974             'ExtUtils::Liblist'     => '7.24',
12975             'ExtUtils::Liblist::Kid'=> '7.24',
12976             'ExtUtils::MM'          => '7.24',
12977             'ExtUtils::MM_AIX'      => '7.24',
12978             'ExtUtils::MM_Any'      => '7.24',
12979             'ExtUtils::MM_BeOS'     => '7.24',
12980             'ExtUtils::MM_Cygwin'   => '7.24',
12981             'ExtUtils::MM_DOS'      => '7.24',
12982             'ExtUtils::MM_Darwin'   => '7.24',
12983             'ExtUtils::MM_MacOS'    => '7.24',
12984             'ExtUtils::MM_NW5'      => '7.24',
12985             'ExtUtils::MM_OS2'      => '7.24',
12986             'ExtUtils::MM_QNX'      => '7.24',
12987             'ExtUtils::MM_UWIN'     => '7.24',
12988             'ExtUtils::MM_Unix'     => '7.24',
12989             'ExtUtils::MM_VMS'      => '7.24',
12990             'ExtUtils::MM_VOS'      => '7.24',
12991             'ExtUtils::MM_Win32'    => '7.24',
12992             'ExtUtils::MM_Win95'    => '7.24',
12993             'ExtUtils::MY'          => '7.24',
12994             'ExtUtils::MakeMaker'   => '7.24',
12995             'ExtUtils::MakeMaker::Config'=> '7.24',
12996             'ExtUtils::MakeMaker::Locale'=> '7.24',
12997             'ExtUtils::MakeMaker::version'=> '7.24',
12998             'ExtUtils::MakeMaker::version::regex'=> '7.24',
12999             'ExtUtils::Mkbootstrap' => '7.24',
13000             'ExtUtils::Mksymlists'  => '7.24',
13001             'ExtUtils::testlib'     => '7.24',
13002             'File::Fetch'           => '0.52',
13003             'File::Spec'            => '3.65',
13004             'File::Spec::AmigaOS'   => '3.65',
13005             'File::Spec::Cygwin'    => '3.65',
13006             'File::Spec::Epoc'      => '3.65',
13007             'File::Spec::Functions' => '3.65',
13008             'File::Spec::Mac'       => '3.65',
13009             'File::Spec::OS2'       => '3.65',
13010             'File::Spec::Unix'      => '3.65',
13011             'File::Spec::VMS'       => '3.65',
13012             'File::Spec::Win32'     => '3.65',
13013             'HTTP::Tiny'            => '0.064',
13014             'Hash::Util'            => '0.21',
13015             'I18N::LangTags'        => '0.41',
13016             'I18N::LangTags::Detect'=> '1.06',
13017             'IO'                    => '1.37',
13018             'IO::Compress::Adapter::Bzip2'=> '2.069_01',
13019             'IO::Compress::Adapter::Deflate'=> '2.069_01',
13020             'IO::Compress::Adapter::Identity'=> '2.069_01',
13021             'IO::Compress::Base'    => '2.069_01',
13022             'IO::Compress::Base::Common'=> '2.069_01',
13023             'IO::Compress::Bzip2'   => '2.069_01',
13024             'IO::Compress::Deflate' => '2.069_01',
13025             'IO::Compress::Gzip'    => '2.069_01',
13026             'IO::Compress::Gzip::Constants'=> '2.069_01',
13027             'IO::Compress::RawDeflate'=> '2.069_01',
13028             'IO::Compress::Zip'     => '2.069_01',
13029             'IO::Compress::Zip::Constants'=> '2.069_01',
13030             'IO::Compress::Zlib::Constants'=> '2.069_01',
13031             'IO::Compress::Zlib::Extra'=> '2.069_01',
13032             'IO::Socket::IP'        => '0.38',
13033             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_01',
13034             'IO::Uncompress::Adapter::Identity'=> '2.069_01',
13035             'IO::Uncompress::Adapter::Inflate'=> '2.069_01',
13036             'IO::Uncompress::AnyInflate'=> '2.069_01',
13037             'IO::Uncompress::AnyUncompress'=> '2.069_01',
13038             'IO::Uncompress::Base'  => '2.069_01',
13039             'IO::Uncompress::Bunzip2'=> '2.069_01',
13040             'IO::Uncompress::Gunzip'=> '2.069_01',
13041             'IO::Uncompress::Inflate'=> '2.069_01',
13042             'IO::Uncompress::RawInflate'=> '2.069_01',
13043             'IO::Uncompress::Unzip' => '2.069_01',
13044             'IPC::Cmd'              => '0.96',
13045             'JSON::PP'              => '2.27400_01',
13046             'Locale::Maketext'      => '1.28',
13047             'Locale::Maketext::Simple'=> '0.21_01',
13048             'Math::BigFloat::Trace' => '0.43_01',
13049             'Math::BigInt::Trace'   => '0.43_01',
13050             'Memoize'               => '1.03_01',
13051             'Module::CoreList'      => '5.20160820',
13052             'Module::CoreList::TieHashDelta'=> '5.20160820',
13053             'Module::CoreList::Utils'=> '5.20160820',
13054             'Module::Load::Conditional'=> '0.68',
13055             'Module::Metadata'      => '1.000033',
13056             'NEXT'                  => '0.67',
13057             'Net::Cmd'              => '3.10',
13058             'Net::Config'           => '3.10',
13059             'Net::Domain'           => '3.10',
13060             'Net::FTP'              => '3.10',
13061             'Net::FTP::A'           => '3.10',
13062             'Net::FTP::E'           => '3.10',
13063             'Net::FTP::I'           => '3.10',
13064             'Net::FTP::L'           => '3.10',
13065             'Net::FTP::dataconn'    => '3.10',
13066             'Net::NNTP'             => '3.10',
13067             'Net::Netrc'            => '3.10',
13068             'Net::POP3'             => '3.10',
13069             'Net::Ping'             => '2.44',
13070             'Net::SMTP'             => '3.10',
13071             'Net::Time'             => '3.10',
13072             'Opcode'                => '1.37',
13073             'POSIX'                 => '1.71',
13074             'Parse::CPAN::Meta'     => '2.150010',
13075             'Pod::Html'             => '1.2201',
13076             'Pod::Perldoc'          => '3.27',
13077             'Pod::Perldoc::BaseTo'  => '3.27',
13078             'Pod::Perldoc::GetOptsOO'=> '3.27',
13079             'Pod::Perldoc::ToANSI'  => '3.27',
13080             'Pod::Perldoc::ToChecker'=> '3.27',
13081             'Pod::Perldoc::ToMan'   => '3.27',
13082             'Pod::Perldoc::ToNroff' => '3.27',
13083             'Pod::Perldoc::ToPod'   => '3.27',
13084             'Pod::Perldoc::ToRtf'   => '3.27',
13085             'Pod::Perldoc::ToTerm'  => '3.27',
13086             'Pod::Perldoc::ToText'  => '3.27',
13087             'Pod::Perldoc::ToTk'    => '3.27',
13088             'Pod::Perldoc::ToXml'   => '3.27',
13089             'Storable'              => '2.57',
13090             'Sys::Syslog'           => '0.34_01',
13091             'TAP::Base'             => '3.36_01',
13092             'TAP::Formatter::Base'  => '3.36_01',
13093             'TAP::Formatter::Color' => '3.36_01',
13094             'TAP::Formatter::Console'=> '3.36_01',
13095             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13096             'TAP::Formatter::Console::Session'=> '3.36_01',
13097             'TAP::Formatter::File'  => '3.36_01',
13098             'TAP::Formatter::File::Session'=> '3.36_01',
13099             'TAP::Formatter::Session'=> '3.36_01',
13100             'TAP::Harness'          => '3.36_01',
13101             'TAP::Harness::Env'     => '3.36_01',
13102             'TAP::Object'           => '3.36_01',
13103             'TAP::Parser'           => '3.36_01',
13104             'TAP::Parser::Aggregator'=> '3.36_01',
13105             'TAP::Parser::Grammar'  => '3.36_01',
13106             'TAP::Parser::Iterator' => '3.36_01',
13107             'TAP::Parser::Iterator::Array'=> '3.36_01',
13108             'TAP::Parser::Iterator::Process'=> '3.36_01',
13109             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13110             'TAP::Parser::IteratorFactory'=> '3.36_01',
13111             'TAP::Parser::Multiplexer'=> '3.36_01',
13112             'TAP::Parser::Result'   => '3.36_01',
13113             'TAP::Parser::Result::Bailout'=> '3.36_01',
13114             'TAP::Parser::Result::Comment'=> '3.36_01',
13115             'TAP::Parser::Result::Plan'=> '3.36_01',
13116             'TAP::Parser::Result::Pragma'=> '3.36_01',
13117             'TAP::Parser::Result::Test'=> '3.36_01',
13118             'TAP::Parser::Result::Unknown'=> '3.36_01',
13119             'TAP::Parser::Result::Version'=> '3.36_01',
13120             'TAP::Parser::Result::YAML'=> '3.36_01',
13121             'TAP::Parser::ResultFactory'=> '3.36_01',
13122             'TAP::Parser::Scheduler'=> '3.36_01',
13123             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13124             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13125             'TAP::Parser::Source'   => '3.36_01',
13126             'TAP::Parser::SourceHandler'=> '3.36_01',
13127             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13128             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13129             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13130             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13131             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13132             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13133             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13134             'Test'                  => '1.29',
13135             'Test2'                 => '1.302052',
13136             'Test2::API'            => '1.302052',
13137             'Test2::API::Breakage'  => '1.302052',
13138             'Test2::API::Context'   => '1.302052',
13139             'Test2::API::Instance'  => '1.302052',
13140             'Test2::API::Stack'     => '1.302052',
13141             'Test2::Event'          => '1.302052',
13142             'Test2::Event::Bail'    => '1.302052',
13143             'Test2::Event::Diag'    => '1.302052',
13144             'Test2::Event::Exception'=> '1.302052',
13145             'Test2::Event::Generic' => '1.302052',
13146             'Test2::Event::Info'    => '1.302052',
13147             'Test2::Event::Note'    => '1.302052',
13148             'Test2::Event::Ok'      => '1.302052',
13149             'Test2::Event::Plan'    => '1.302052',
13150             'Test2::Event::Skip'    => '1.302052',
13151             'Test2::Event::Subtest' => '1.302052',
13152             'Test2::Event::Waiting' => '1.302052',
13153             'Test2::Formatter'      => '1.302052',
13154             'Test2::Formatter::TAP' => '1.302052',
13155             'Test2::Hub'            => '1.302052',
13156             'Test2::Hub::Interceptor'=> '1.302052',
13157             'Test2::Hub::Interceptor::Terminator'=> '1.302052',
13158             'Test2::Hub::Subtest'   => '1.302052',
13159             'Test2::IPC'            => '1.302052',
13160             'Test2::IPC::Driver'    => '1.302052',
13161             'Test2::IPC::Driver::Files'=> '1.302052',
13162             'Test2::Util'           => '1.302052',
13163             'Test2::Util::ExternalMeta'=> '1.302052',
13164             'Test2::Util::HashBase' => '1.302052',
13165             'Test2::Util::Trace'    => '1.302052',
13166             'Test::Builder'         => '1.302052',
13167             'Test::Builder::Formatter'=> '1.302052',
13168             'Test::Builder::Module' => '1.302052',
13169             'Test::Builder::Tester' => '1.302052',
13170             'Test::Builder::Tester::Color'=> '1.302052',
13171             'Test::Builder::TodoDiag'=> '1.302052',
13172             'Test::Harness'         => '3.36_01',
13173             'Test::More'            => '1.302052',
13174             'Test::Simple'          => '1.302052',
13175             'Test::Tester'          => '1.302052',
13176             'Test::Tester::Capture' => '1.302052',
13177             'Test::Tester::CaptureRunner'=> '1.302052',
13178             'Test::Tester::Delegate'=> '1.302052',
13179             'Test::use::ok'         => '1.302052',
13180             'Tie::Hash::NamedCapture'=> '0.10',
13181             'Time::Local'           => '1.24',
13182             'XS::APItest'           => '0.83',
13183             'arybase'               => '0.12',
13184             'base'                  => '2.24',
13185             'bigint'                => '0.43_01',
13186             'bignum'                => '0.43_01',
13187             'bigrat'                => '0.43_01',
13188             'encoding'              => '2.18',
13189             'ok'                    => '1.302052',
13190         },
13191         removed => {
13192         }
13193     },
13194     5.025005 => {
13195         delta_from => 5.025004,
13196         changed => {
13197             'B::Op_private'         => '5.025005',
13198             'Config'                => '5.025005',
13199             'Filter::Simple'        => '0.93',
13200             'Locale::Codes'         => '3.40',
13201             'Locale::Codes::Constants'=> '3.40',
13202             'Locale::Codes::Country'=> '3.40',
13203             'Locale::Codes::Country_Codes'=> '3.40',
13204             'Locale::Codes::Country_Retired'=> '3.40',
13205             'Locale::Codes::Currency'=> '3.40',
13206             'Locale::Codes::Currency_Codes'=> '3.40',
13207             'Locale::Codes::Currency_Retired'=> '3.40',
13208             'Locale::Codes::LangExt'=> '3.40',
13209             'Locale::Codes::LangExt_Codes'=> '3.40',
13210             'Locale::Codes::LangExt_Retired'=> '3.40',
13211             'Locale::Codes::LangFam'=> '3.40',
13212             'Locale::Codes::LangFam_Codes'=> '3.40',
13213             'Locale::Codes::LangFam_Retired'=> '3.40',
13214             'Locale::Codes::LangVar'=> '3.40',
13215             'Locale::Codes::LangVar_Codes'=> '3.40',
13216             'Locale::Codes::LangVar_Retired'=> '3.40',
13217             'Locale::Codes::Language'=> '3.40',
13218             'Locale::Codes::Language_Codes'=> '3.40',
13219             'Locale::Codes::Language_Retired'=> '3.40',
13220             'Locale::Codes::Script' => '3.40',
13221             'Locale::Codes::Script_Codes'=> '3.40',
13222             'Locale::Codes::Script_Retired'=> '3.40',
13223             'Locale::Country'       => '3.40',
13224             'Locale::Currency'      => '3.40',
13225             'Locale::Language'      => '3.40',
13226             'Locale::Script'        => '3.40',
13227             'Module::CoreList'      => '5.20160920',
13228             'Module::CoreList::TieHashDelta'=> '5.20160920',
13229             'Module::CoreList::Utils'=> '5.20160920',
13230             'POSIX'                 => '1.72',
13231             'Sys::Syslog'           => '0.35',
13232             'Test2'                 => '1.302056',
13233             'Test2::API'            => '1.302056',
13234             'Test2::API::Breakage'  => '1.302056',
13235             'Test2::API::Context'   => '1.302056',
13236             'Test2::API::Instance'  => '1.302056',
13237             'Test2::API::Stack'     => '1.302056',
13238             'Test2::Event'          => '1.302056',
13239             'Test2::Event::Bail'    => '1.302056',
13240             'Test2::Event::Diag'    => '1.302056',
13241             'Test2::Event::Exception'=> '1.302056',
13242             'Test2::Event::Generic' => '1.302056',
13243             'Test2::Event::Info'    => '1.302056',
13244             'Test2::Event::Note'    => '1.302056',
13245             'Test2::Event::Ok'      => '1.302056',
13246             'Test2::Event::Plan'    => '1.302056',
13247             'Test2::Event::Skip'    => '1.302056',
13248             'Test2::Event::Subtest' => '1.302056',
13249             'Test2::Event::Waiting' => '1.302056',
13250             'Test2::Formatter'      => '1.302056',
13251             'Test2::Formatter::TAP' => '1.302056',
13252             'Test2::Hub'            => '1.302056',
13253             'Test2::Hub::Interceptor'=> '1.302056',
13254             'Test2::Hub::Interceptor::Terminator'=> '1.302056',
13255             'Test2::Hub::Subtest'   => '1.302056',
13256             'Test2::IPC'            => '1.302056',
13257             'Test2::IPC::Driver'    => '1.302056',
13258             'Test2::IPC::Driver::Files'=> '1.302056',
13259             'Test2::Util'           => '1.302056',
13260             'Test2::Util::ExternalMeta'=> '1.302056',
13261             'Test2::Util::HashBase' => '1.302056',
13262             'Test2::Util::Trace'    => '1.302056',
13263             'Test::Builder'         => '1.302056',
13264             'Test::Builder::Formatter'=> '1.302056',
13265             'Test::Builder::Module' => '1.302056',
13266             'Test::Builder::Tester' => '1.302056',
13267             'Test::Builder::Tester::Color'=> '1.302056',
13268             'Test::Builder::TodoDiag'=> '1.302056',
13269             'Test::More'            => '1.302056',
13270             'Test::Simple'          => '1.302056',
13271             'Test::Tester'          => '1.302056',
13272             'Test::Tester::Capture' => '1.302056',
13273             'Test::Tester::CaptureRunner'=> '1.302056',
13274             'Test::Tester::Delegate'=> '1.302056',
13275             'Test::use::ok'         => '1.302056',
13276             'Thread::Semaphore'     => '2.13',
13277             'XS::APItest'           => '0.84',
13278             'XSLoader'              => '0.24',
13279             'ok'                    => '1.302056',
13280         },
13281         removed => {
13282         }
13283     },
13284     5.025006 => {
13285         delta_from => 5.025005,
13286         changed => {
13287             'Archive::Tar'          => '2.14',
13288             'Archive::Tar::Constant'=> '2.14',
13289             'Archive::Tar::File'    => '2.14',
13290             'B'                     => '1.64',
13291             'B::Concise'            => '0.999',
13292             'B::Deparse'            => '1.39',
13293             'B::Op_private'         => '5.025006',
13294             'Config'                => '5.025006',
13295             'Data::Dumper'          => '2.162',
13296             'Devel::Peek'           => '1.25',
13297             'HTTP::Tiny'            => '0.070',
13298             'List::Util'            => '1.46',
13299             'List::Util::XS'        => '1.46',
13300             'Module::CoreList'      => '5.20161020',
13301             'Module::CoreList::TieHashDelta'=> '5.20161020',
13302             'Module::CoreList::Utils'=> '5.20161020',
13303             'Net::Ping'             => '2.51',
13304             'OS2::DLL'              => '1.07',
13305             'Opcode'                => '1.38',
13306             'POSIX'                 => '1.73',
13307             'PerlIO::encoding'      => '0.25',
13308             'Pod::Man'              => '4.08',
13309             'Pod::ParseLink'        => '4.08',
13310             'Pod::Text'             => '4.08',
13311             'Pod::Text::Color'      => '4.08',
13312             'Pod::Text::Overstrike' => '4.08',
13313             'Pod::Text::Termcap'    => '4.08',
13314             'Scalar::Util'          => '1.46',
13315             'Storable'              => '2.58',
13316             'Sub::Util'             => '1.46',
13317             'Test2'                 => '1.302059',
13318             'Test2::API'            => '1.302059',
13319             'Test2::API::Breakage'  => '1.302059',
13320             'Test2::API::Context'   => '1.302059',
13321             'Test2::API::Instance'  => '1.302059',
13322             'Test2::API::Stack'     => '1.302059',
13323             'Test2::Event'          => '1.302059',
13324             'Test2::Event::Bail'    => '1.302059',
13325             'Test2::Event::Diag'    => '1.302059',
13326             'Test2::Event::Exception'=> '1.302059',
13327             'Test2::Event::Generic' => '1.302059',
13328             'Test2::Event::Info'    => '1.302059',
13329             'Test2::Event::Note'    => '1.302059',
13330             'Test2::Event::Ok'      => '1.302059',
13331             'Test2::Event::Plan'    => '1.302059',
13332             'Test2::Event::Skip'    => '1.302059',
13333             'Test2::Event::Subtest' => '1.302059',
13334             'Test2::Event::Waiting' => '1.302059',
13335             'Test2::Formatter'      => '1.302059',
13336             'Test2::Formatter::TAP' => '1.302059',
13337             'Test2::Hub'            => '1.302059',
13338             'Test2::Hub::Interceptor'=> '1.302059',
13339             'Test2::Hub::Interceptor::Terminator'=> '1.302059',
13340             'Test2::Hub::Subtest'   => '1.302059',
13341             'Test2::IPC'            => '1.302059',
13342             'Test2::IPC::Driver'    => '1.302059',
13343             'Test2::IPC::Driver::Files'=> '1.302059',
13344             'Test2::Util'           => '1.302059',
13345             'Test2::Util::ExternalMeta'=> '1.302059',
13346             'Test2::Util::HashBase' => '1.302059',
13347             'Test2::Util::Trace'    => '1.302059',
13348             'Test::Builder'         => '1.302059',
13349             'Test::Builder::Formatter'=> '1.302059',
13350             'Test::Builder::Module' => '1.302059',
13351             'Test::Builder::Tester' => '1.302059',
13352             'Test::Builder::Tester::Color'=> '1.302059',
13353             'Test::Builder::TodoDiag'=> '1.302059',
13354             'Test::More'            => '1.302059',
13355             'Test::Simple'          => '1.302059',
13356             'Test::Tester'          => '1.302059',
13357             'Test::Tester::Capture' => '1.302059',
13358             'Test::Tester::CaptureRunner'=> '1.302059',
13359             'Test::Tester::Delegate'=> '1.302059',
13360             'Test::use::ok'         => '1.302059',
13361             'Time::HiRes'           => '1.9740_01',
13362             'VMS::Stdio'            => '2.42',
13363             'XS::APItest'           => '0.86',
13364             'attributes'            => '0.28',
13365             'mro'                   => '1.19',
13366             'ok'                    => '1.302059',
13367             'overload'              => '1.27',
13368             'parent'                => '0.236',
13369         },
13370         removed => {
13371         }
13372     },
13373     5.025007 => {
13374         delta_from => 5.025006,
13375         changed => {
13376             'Archive::Tar'          => '2.18',
13377             'Archive::Tar::Constant'=> '2.18',
13378             'Archive::Tar::File'    => '2.18',
13379             'B'                     => '1.65',
13380             'B::Op_private'         => '5.025007',
13381             'Config'                => '5.025007',
13382             'Cwd'                   => '3.66',
13383             'Data::Dumper'          => '2.165',
13384             'Devel::Peek'           => '1.26',
13385             'DynaLoader'            => '1.40',
13386             'Errno'                 => '1.27',
13387             'ExtUtils::ParseXS::Utilities'=> '3.34',
13388             'File::Spec'            => '3.66',
13389             'File::Spec::AmigaOS'   => '3.66',
13390             'File::Spec::Cygwin'    => '3.66',
13391             'File::Spec::Epoc'      => '3.66',
13392             'File::Spec::Functions' => '3.66',
13393             'File::Spec::Mac'       => '3.66',
13394             'File::Spec::OS2'       => '3.66',
13395             'File::Spec::Unix'      => '3.66',
13396             'File::Spec::VMS'       => '3.66',
13397             'File::Spec::Win32'     => '3.66',
13398             'Hash::Util'            => '0.22',
13399             'JSON::PP'              => '2.27400_02',
13400             'List::Util'            => '1.46_02',
13401             'List::Util::XS'        => '1.46_02',
13402             'Math::BigFloat'        => '1.999727',
13403             'Math::BigInt'          => '1.999727',
13404             'Math::BigInt::Calc'    => '1.999727',
13405             'Math::BigInt::CalcEmu' => '1.999727',
13406             'Math::Complex'         => '1.5901',
13407             'Module::CoreList'      => '5.20161120',
13408             'Module::CoreList::TieHashDelta'=> '5.20161120',
13409             'Module::CoreList::Utils'=> '5.20161120',
13410             'Net::Ping'             => '2.55',
13411             'Opcode'                => '1.39',
13412             'POSIX'                 => '1.75',
13413             'Pod::Man'              => '4.09',
13414             'Pod::ParseLink'        => '4.09',
13415             'Pod::Text'             => '4.09',
13416             'Pod::Text::Color'      => '4.09',
13417             'Pod::Text::Overstrike' => '4.09',
13418             'Pod::Text::Termcap'    => '4.09',
13419             'Scalar::Util'          => '1.46_02',
13420             'Storable'              => '2.59',
13421             'Sub::Util'             => '1.46_02',
13422             'Term::ANSIColor'       => '4.06',
13423             'Test2'                 => '1.302062',
13424             'Test2::API'            => '1.302062',
13425             'Test2::API::Breakage'  => '1.302062',
13426             'Test2::API::Context'   => '1.302062',
13427             'Test2::API::Instance'  => '1.302062',
13428             'Test2::API::Stack'     => '1.302062',
13429             'Test2::Event'          => '1.302062',
13430             'Test2::Event::Bail'    => '1.302062',
13431             'Test2::Event::Diag'    => '1.302062',
13432             'Test2::Event::Exception'=> '1.302062',
13433             'Test2::Event::Generic' => '1.302062',
13434             'Test2::Event::Info'    => '1.302062',
13435             'Test2::Event::Note'    => '1.302062',
13436             'Test2::Event::Ok'      => '1.302062',
13437             'Test2::Event::Plan'    => '1.302062',
13438             'Test2::Event::Skip'    => '1.302062',
13439             'Test2::Event::Subtest' => '1.302062',
13440             'Test2::Event::Waiting' => '1.302062',
13441             'Test2::Formatter'      => '1.302062',
13442             'Test2::Formatter::TAP' => '1.302062',
13443             'Test2::Hub'            => '1.302062',
13444             'Test2::Hub::Interceptor'=> '1.302062',
13445             'Test2::Hub::Interceptor::Terminator'=> '1.302062',
13446             'Test2::Hub::Subtest'   => '1.302062',
13447             'Test2::IPC'            => '1.302062',
13448             'Test2::IPC::Driver'    => '1.302062',
13449             'Test2::IPC::Driver::Files'=> '1.302062',
13450             'Test2::Util'           => '1.302062',
13451             'Test2::Util::ExternalMeta'=> '1.302062',
13452             'Test2::Util::HashBase' => '1.302062',
13453             'Test2::Util::Trace'    => '1.302062',
13454             'Test::Builder'         => '1.302062',
13455             'Test::Builder::Formatter'=> '1.302062',
13456             'Test::Builder::Module' => '1.302062',
13457             'Test::Builder::Tester' => '1.302062',
13458             'Test::Builder::Tester::Color'=> '1.302062',
13459             'Test::Builder::TodoDiag'=> '1.302062',
13460             'Test::More'            => '1.302062',
13461             'Test::Simple'          => '1.302062',
13462             'Test::Tester'          => '1.302062',
13463             'Test::Tester::Capture' => '1.302062',
13464             'Test::Tester::CaptureRunner'=> '1.302062',
13465             'Test::Tester::Delegate'=> '1.302062',
13466             'Test::use::ok'         => '1.302062',
13467             'Time::HiRes'           => '1.9740_03',
13468             'Unicode::Collate'      => '1.18',
13469             'Unicode::Collate::CJK::Big5'=> '1.18',
13470             'Unicode::Collate::CJK::GB2312'=> '1.18',
13471             'Unicode::Collate::CJK::JISX0208'=> '1.18',
13472             'Unicode::Collate::CJK::Korean'=> '1.18',
13473             'Unicode::Collate::CJK::Pinyin'=> '1.18',
13474             'Unicode::Collate::CJK::Stroke'=> '1.18',
13475             'Unicode::Collate::CJK::Zhuyin'=> '1.18',
13476             'Unicode::Collate::Locale'=> '1.18',
13477             'Unicode::UCD'          => '0.67',
13478             'XS::APItest'           => '0.87',
13479             'XS::Typemap'           => '0.15',
13480             'mro'                   => '1.20',
13481             'ok'                    => '1.302062',
13482             'threads'               => '2.10',
13483         },
13484         removed => {
13485         }
13486     },
13487     5.025008 => {
13488         delta_from => 5.025007,
13489         changed => {
13490             'Archive::Tar'          => '2.24',
13491             'Archive::Tar::Constant'=> '2.24',
13492             'Archive::Tar::File'    => '2.24',
13493             'B::Debug'              => '1.24',
13494             'B::Op_private'         => '5.025008',
13495             'Config'                => '5.025008',
13496             'Data::Dumper'          => '2.166',
13497             'Encode'                => '2.88',
13498             'Encode::Alias'         => '2.21',
13499             'Encode::CN::HZ'        => '2.08',
13500             'Encode::MIME::Header'  => '2.24',
13501             'Encode::MIME::Name'    => '1.02',
13502             'Encode::Unicode'       => '2.1501',
13503             'IO'                    => '1.38',
13504             'Locale::Codes'         => '3.42',
13505             'Locale::Codes::Constants'=> '3.42',
13506             'Locale::Codes::Country'=> '3.42',
13507             'Locale::Codes::Country_Codes'=> '3.42',
13508             'Locale::Codes::Country_Retired'=> '3.42',
13509             'Locale::Codes::Currency'=> '3.42',
13510             'Locale::Codes::Currency_Codes'=> '3.42',
13511             'Locale::Codes::Currency_Retired'=> '3.42',
13512             'Locale::Codes::LangExt'=> '3.42',
13513             'Locale::Codes::LangExt_Codes'=> '3.42',
13514             'Locale::Codes::LangExt_Retired'=> '3.42',
13515             'Locale::Codes::LangFam'=> '3.42',
13516             'Locale::Codes::LangFam_Codes'=> '3.42',
13517             'Locale::Codes::LangFam_Retired'=> '3.42',
13518             'Locale::Codes::LangVar'=> '3.42',
13519             'Locale::Codes::LangVar_Codes'=> '3.42',
13520             'Locale::Codes::LangVar_Retired'=> '3.42',
13521             'Locale::Codes::Language'=> '3.42',
13522             'Locale::Codes::Language_Codes'=> '3.42',
13523             'Locale::Codes::Language_Retired'=> '3.42',
13524             'Locale::Codes::Script' => '3.42',
13525             'Locale::Codes::Script_Codes'=> '3.42',
13526             'Locale::Codes::Script_Retired'=> '3.42',
13527             'Locale::Country'       => '3.42',
13528             'Locale::Currency'      => '3.42',
13529             'Locale::Language'      => '3.42',
13530             'Locale::Script'        => '3.42',
13531             'Math::BigFloat'        => '1.999806',
13532             'Math::BigFloat::Trace' => '0.47',
13533             'Math::BigInt'          => '1.999806',
13534             'Math::BigInt::Calc'    => '1.999806',
13535             'Math::BigInt::CalcEmu' => '1.999806',
13536             'Math::BigInt::FastCalc'=> '0.5005',
13537             'Math::BigInt::Lib'     => '1.999806',
13538             'Math::BigInt::Trace'   => '0.47',
13539             'Math::BigRat'          => '0.2611',
13540             'Module::CoreList'      => '5.20161220',
13541             'Module::CoreList::TieHashDelta'=> '5.20161220',
13542             'Module::CoreList::Utils'=> '5.20161220',
13543             'POSIX'                 => '1.76',
13544             'PerlIO::scalar'        => '0.25',
13545             'Pod::Simple'           => '3.35',
13546             'Pod::Simple::BlackBox' => '3.35',
13547             'Pod::Simple::Checker'  => '3.35',
13548             'Pod::Simple::Debug'    => '3.35',
13549             'Pod::Simple::DumpAsText'=> '3.35',
13550             'Pod::Simple::DumpAsXML'=> '3.35',
13551             'Pod::Simple::HTML'     => '3.35',
13552             'Pod::Simple::HTMLBatch'=> '3.35',
13553             'Pod::Simple::LinkSection'=> '3.35',
13554             'Pod::Simple::Methody'  => '3.35',
13555             'Pod::Simple::Progress' => '3.35',
13556             'Pod::Simple::PullParser'=> '3.35',
13557             'Pod::Simple::PullParserEndToken'=> '3.35',
13558             'Pod::Simple::PullParserStartToken'=> '3.35',
13559             'Pod::Simple::PullParserTextToken'=> '3.35',
13560             'Pod::Simple::PullParserToken'=> '3.35',
13561             'Pod::Simple::RTF'      => '3.35',
13562             'Pod::Simple::Search'   => '3.35',
13563             'Pod::Simple::SimpleTree'=> '3.35',
13564             'Pod::Simple::Text'     => '3.35',
13565             'Pod::Simple::TextContent'=> '3.35',
13566             'Pod::Simple::TiedOutFH'=> '3.35',
13567             'Pod::Simple::Transcode'=> '3.35',
13568             'Pod::Simple::TranscodeDumb'=> '3.35',
13569             'Pod::Simple::TranscodeSmart'=> '3.35',
13570             'Pod::Simple::XHTML'    => '3.35',
13571             'Pod::Simple::XMLOutStream'=> '3.35',
13572             'Test2'                 => '1.302073',
13573             'Test2::API'            => '1.302073',
13574             'Test2::API::Breakage'  => '1.302073',
13575             'Test2::API::Context'   => '1.302073',
13576             'Test2::API::Instance'  => '1.302073',
13577             'Test2::API::Stack'     => '1.302073',
13578             'Test2::Event'          => '1.302073',
13579             'Test2::Event::Bail'    => '1.302073',
13580             'Test2::Event::Diag'    => '1.302073',
13581             'Test2::Event::Encoding'=> '1.302073',
13582             'Test2::Event::Exception'=> '1.302073',
13583             'Test2::Event::Generic' => '1.302073',
13584             'Test2::Event::Info'    => '1.302073',
13585             'Test2::Event::Note'    => '1.302073',
13586             'Test2::Event::Ok'      => '1.302073',
13587             'Test2::Event::Plan'    => '1.302073',
13588             'Test2::Event::Skip'    => '1.302073',
13589             'Test2::Event::Subtest' => '1.302073',
13590             'Test2::Event::TAP::Version'=> '1.302073',
13591             'Test2::Event::Waiting' => '1.302073',
13592             'Test2::Formatter'      => '1.302073',
13593             'Test2::Formatter::TAP' => '1.302073',
13594             'Test2::Hub'            => '1.302073',
13595             'Test2::Hub::Interceptor'=> '1.302073',
13596             'Test2::Hub::Interceptor::Terminator'=> '1.302073',
13597             'Test2::Hub::Subtest'   => '1.302073',
13598             'Test2::IPC'            => '1.302073',
13599             'Test2::IPC::Driver'    => '1.302073',
13600             'Test2::IPC::Driver::Files'=> '1.302073',
13601             'Test2::Tools::Tiny'    => '1.302073',
13602             'Test2::Util'           => '1.302073',
13603             'Test2::Util::ExternalMeta'=> '1.302073',
13604             'Test2::Util::HashBase' => '0.002',
13605             'Test2::Util::Trace'    => '1.302073',
13606             'Test::Builder'         => '1.302073',
13607             'Test::Builder::Formatter'=> '1.302073',
13608             'Test::Builder::Module' => '1.302073',
13609             'Test::Builder::Tester' => '1.302073',
13610             'Test::Builder::Tester::Color'=> '1.302073',
13611             'Test::Builder::TodoDiag'=> '1.302073',
13612             'Test::More'            => '1.302073',
13613             'Test::Simple'          => '1.302073',
13614             'Test::Tester'          => '1.302073',
13615             'Test::Tester::Capture' => '1.302073',
13616             'Test::Tester::CaptureRunner'=> '1.302073',
13617             'Test::Tester::Delegate'=> '1.302073',
13618             'Test::use::ok'         => '1.302073',
13619             'Time::HiRes'           => '1.9741',
13620             'Time::Local'           => '1.25',
13621             'Unicode::Collate'      => '1.19',
13622             'Unicode::Collate::CJK::Big5'=> '1.19',
13623             'Unicode::Collate::CJK::GB2312'=> '1.19',
13624             'Unicode::Collate::CJK::JISX0208'=> '1.19',
13625             'Unicode::Collate::CJK::Korean'=> '1.19',
13626             'Unicode::Collate::CJK::Pinyin'=> '1.19',
13627             'Unicode::Collate::CJK::Stroke'=> '1.19',
13628             'Unicode::Collate::CJK::Zhuyin'=> '1.19',
13629             'Unicode::Collate::Locale'=> '1.19',
13630             'bigint'                => '0.47',
13631             'bignum'                => '0.47',
13632             'bigrat'                => '0.47',
13633             'encoding'              => '2.19',
13634             'ok'                    => '1.302073',
13635         },
13636         removed => {
13637         }
13638     },
13639     5.022003 => {
13640         delta_from => 5.022002,
13641         changed => {
13642             'App::Cpan'             => '1.63_01',
13643             'App::Prove'            => '3.35_01',
13644             'App::Prove::State'     => '3.35_01',
13645             'App::Prove::State::Result'=> '3.35_01',
13646             'App::Prove::State::Result::Test'=> '3.35_01',
13647             'Archive::Tar'          => '2.04_01',
13648             'Archive::Tar::Constant'=> '2.04_01',
13649             'Archive::Tar::File'    => '2.04_01',
13650             'B::Op_private'         => '5.022003',
13651             'CPAN'                  => '2.11_01',
13652             'Compress::Zlib'        => '2.068_001',
13653             'Config'                => '5.022003',
13654             'Cwd'                   => '3.56_02',
13655             'Digest'                => '1.17_01',
13656             'Digest::SHA'           => '5.95_01',
13657             'Encode'                => '2.72_01',
13658             'ExtUtils::Command'     => '1.20_01',
13659             'ExtUtils::Command::MM' => '7.04_02',
13660             'ExtUtils::Liblist'     => '7.04_02',
13661             'ExtUtils::Liblist::Kid'=> '7.04_02',
13662             'ExtUtils::MM'          => '7.04_02',
13663             'ExtUtils::MM_AIX'      => '7.04_02',
13664             'ExtUtils::MM_Any'      => '7.04_02',
13665             'ExtUtils::MM_BeOS'     => '7.04_02',
13666             'ExtUtils::MM_Cygwin'   => '7.04_02',
13667             'ExtUtils::MM_DOS'      => '7.04_02',
13668             'ExtUtils::MM_Darwin'   => '7.04_02',
13669             'ExtUtils::MM_MacOS'    => '7.04_02',
13670             'ExtUtils::MM_NW5'      => '7.04_02',
13671             'ExtUtils::MM_OS2'      => '7.04_02',
13672             'ExtUtils::MM_QNX'      => '7.04_02',
13673             'ExtUtils::MM_UWIN'     => '7.04_02',
13674             'ExtUtils::MM_Unix'     => '7.04_02',
13675             'ExtUtils::MM_VMS'      => '7.04_02',
13676             'ExtUtils::MM_VOS'      => '7.04_02',
13677             'ExtUtils::MM_Win32'    => '7.04_02',
13678             'ExtUtils::MM_Win95'    => '7.04_02',
13679             'ExtUtils::MY'          => '7.04_02',
13680             'ExtUtils::MakeMaker'   => '7.04_02',
13681             'ExtUtils::MakeMaker::Config'=> '7.04_02',
13682             'ExtUtils::Mkbootstrap' => '7.04_02',
13683             'ExtUtils::Mksymlists'  => '7.04_02',
13684             'ExtUtils::testlib'     => '7.04_02',
13685             'File::Fetch'           => '0.48_01',
13686             'File::Spec'            => '3.56_02',
13687             'File::Spec::Cygwin'    => '3.56_02',
13688             'File::Spec::Epoc'      => '3.56_02',
13689             'File::Spec::Functions' => '3.56_02',
13690             'File::Spec::Mac'       => '3.56_02',
13691             'File::Spec::OS2'       => '3.56_02',
13692             'File::Spec::Unix'      => '3.56_02',
13693             'File::Spec::VMS'       => '3.56_02',
13694             'File::Spec::Win32'     => '3.56_02',
13695             'HTTP::Tiny'            => '0.054_01',
13696             'I18N::LangTags::Detect'=> '1.05_01',
13697             'IO'                    => '1.35_01',
13698             'IO::Compress::Adapter::Bzip2'=> '2.068_001',
13699             'IO::Compress::Adapter::Deflate'=> '2.068_001',
13700             'IO::Compress::Adapter::Identity'=> '2.068_001',
13701             'IO::Compress::Base'    => '2.068_001',
13702             'IO::Compress::Base::Common'=> '2.068_001',
13703             'IO::Compress::Bzip2'   => '2.068_001',
13704             'IO::Compress::Deflate' => '2.068_001',
13705             'IO::Compress::Gzip'    => '2.068_001',
13706             'IO::Compress::Gzip::Constants'=> '2.068_001',
13707             'IO::Compress::RawDeflate'=> '2.068_001',
13708             'IO::Compress::Zip'     => '2.068_001',
13709             'IO::Compress::Zip::Constants'=> '2.068_001',
13710             'IO::Compress::Zlib::Constants'=> '2.068_001',
13711             'IO::Compress::Zlib::Extra'=> '2.068_001',
13712             'IO::Uncompress::Adapter::Bunzip2'=> '2.068_001',
13713             'IO::Uncompress::Adapter::Identity'=> '2.068_001',
13714             'IO::Uncompress::Adapter::Inflate'=> '2.068_001',
13715             'IO::Uncompress::AnyInflate'=> '2.068_001',
13716             'IO::Uncompress::AnyUncompress'=> '2.068_001',
13717             'IO::Uncompress::Base'  => '2.068_001',
13718             'IO::Uncompress::Bunzip2'=> '2.068_001',
13719             'IO::Uncompress::Gunzip'=> '2.068_001',
13720             'IO::Uncompress::Inflate'=> '2.068_001',
13721             'IO::Uncompress::RawInflate'=> '2.068_001',
13722             'IO::Uncompress::Unzip' => '2.068_001',
13723             'IPC::Cmd'              => '0.92_01',
13724             'JSON::PP'              => '2.27300_01',
13725             'Locale::Maketext'      => '1.26_01',
13726             'Locale::Maketext::Simple'=> '0.21_01',
13727             'Memoize'               => '1.03_01',
13728             'Module::CoreList'      => '5.20170114_22',
13729             'Module::CoreList::TieHashDelta'=> '5.20170114_22',
13730             'Module::CoreList::Utils'=> '5.20170114_22',
13731             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13732             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13733             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13734             'Net::Cmd'              => '3.05_01',
13735             'Net::Config'           => '3.05_01',
13736             'Net::Domain'           => '3.05_01',
13737             'Net::FTP'              => '3.05_01',
13738             'Net::FTP::A'           => '3.05_01',
13739             'Net::FTP::E'           => '3.05_01',
13740             'Net::FTP::I'           => '3.05_01',
13741             'Net::FTP::L'           => '3.05_01',
13742             'Net::FTP::dataconn'    => '3.05_01',
13743             'Net::NNTP'             => '3.05_01',
13744             'Net::Netrc'            => '3.05_01',
13745             'Net::POP3'             => '3.05_01',
13746             'Net::Ping'             => '2.43_01',
13747             'Net::SMTP'             => '3.05_01',
13748             'Net::Time'             => '3.05_01',
13749             'Parse::CPAN::Meta'     => '1.4414_001',
13750             'Pod::Html'             => '1.2201',
13751             'Pod::Perldoc'          => '3.25_01',
13752             'Storable'              => '2.53_02',
13753             'Sys::Syslog'           => '0.33_01',
13754             'TAP::Base'             => '3.35_01',
13755             'TAP::Formatter::Base'  => '3.35_01',
13756             'TAP::Formatter::Color' => '3.35_01',
13757             'TAP::Formatter::Console'=> '3.35_01',
13758             'TAP::Formatter::Console::ParallelSession'=> '3.35_01',
13759             'TAP::Formatter::Console::Session'=> '3.35_01',
13760             'TAP::Formatter::File'  => '3.35_01',
13761             'TAP::Formatter::File::Session'=> '3.35_01',
13762             'TAP::Formatter::Session'=> '3.35_01',
13763             'TAP::Harness'          => '3.35_01',
13764             'TAP::Harness::Env'     => '3.35_01',
13765             'TAP::Object'           => '3.35_01',
13766             'TAP::Parser'           => '3.35_01',
13767             'TAP::Parser::Aggregator'=> '3.35_01',
13768             'TAP::Parser::Grammar'  => '3.35_01',
13769             'TAP::Parser::Iterator' => '3.35_01',
13770             'TAP::Parser::Iterator::Array'=> '3.35_01',
13771             'TAP::Parser::Iterator::Process'=> '3.35_01',
13772             'TAP::Parser::Iterator::Stream'=> '3.35_01',
13773             'TAP::Parser::IteratorFactory'=> '3.35_01',
13774             'TAP::Parser::Multiplexer'=> '3.35_01',
13775             'TAP::Parser::Result'   => '3.35_01',
13776             'TAP::Parser::Result::Bailout'=> '3.35_01',
13777             'TAP::Parser::Result::Comment'=> '3.35_01',
13778             'TAP::Parser::Result::Plan'=> '3.35_01',
13779             'TAP::Parser::Result::Pragma'=> '3.35_01',
13780             'TAP::Parser::Result::Test'=> '3.35_01',
13781             'TAP::Parser::Result::Unknown'=> '3.35_01',
13782             'TAP::Parser::Result::Version'=> '3.35_01',
13783             'TAP::Parser::Result::YAML'=> '3.35_01',
13784             'TAP::Parser::ResultFactory'=> '3.35_01',
13785             'TAP::Parser::Scheduler'=> '3.35_01',
13786             'TAP::Parser::Scheduler::Job'=> '3.35_01',
13787             'TAP::Parser::Scheduler::Spinner'=> '3.35_01',
13788             'TAP::Parser::Source'   => '3.35_01',
13789             'TAP::Parser::SourceHandler'=> '3.35_01',
13790             'TAP::Parser::SourceHandler::Executable'=> '3.35_01',
13791             'TAP::Parser::SourceHandler::File'=> '3.35_01',
13792             'TAP::Parser::SourceHandler::Handle'=> '3.35_01',
13793             'TAP::Parser::SourceHandler::Perl'=> '3.35_01',
13794             'TAP::Parser::SourceHandler::RawTAP'=> '3.35_01',
13795             'TAP::Parser::YAMLish::Reader'=> '3.35_01',
13796             'TAP::Parser::YAMLish::Writer'=> '3.35_01',
13797             'Test'                  => '1.26_01',
13798             'Test::Harness'         => '3.35_01',
13799             'XSLoader'              => '0.20_01',
13800             'bigint'                => '0.39_01',
13801             'bignum'                => '0.39_01',
13802             'bigrat'                => '0.39_01',
13803         },
13804         removed => {
13805         }
13806     },
13807     5.024001 => {
13808         delta_from => 5.024000,
13809         changed => {
13810             'App::Cpan'             => '1.63_01',
13811             'App::Prove'            => '3.36_01',
13812             'App::Prove::State'     => '3.36_01',
13813             'App::Prove::State::Result'=> '3.36_01',
13814             'App::Prove::State::Result::Test'=> '3.36_01',
13815             'Archive::Tar'          => '2.04_01',
13816             'Archive::Tar::Constant'=> '2.04_01',
13817             'Archive::Tar::File'    => '2.04_01',
13818             'B::Op_private'         => '5.024001',
13819             'CPAN'                  => '2.11_01',
13820             'Compress::Zlib'        => '2.069_001',
13821             'Config'                => '5.024001',
13822             'Cwd'                   => '3.63_01',
13823             'Digest'                => '1.17_01',
13824             'Digest::SHA'           => '5.95_01',
13825             'Encode'                => '2.80_01',
13826             'ExtUtils::Command'     => '7.10_02',
13827             'ExtUtils::Command::MM' => '7.10_02',
13828             'ExtUtils::Liblist'     => '7.10_02',
13829             'ExtUtils::Liblist::Kid'=> '7.10_02',
13830             'ExtUtils::MM'          => '7.10_02',
13831             'ExtUtils::MM_AIX'      => '7.10_02',
13832             'ExtUtils::MM_Any'      => '7.10_02',
13833             'ExtUtils::MM_BeOS'     => '7.10_02',
13834             'ExtUtils::MM_Cygwin'   => '7.10_02',
13835             'ExtUtils::MM_DOS'      => '7.10_02',
13836             'ExtUtils::MM_Darwin'   => '7.10_02',
13837             'ExtUtils::MM_MacOS'    => '7.10_02',
13838             'ExtUtils::MM_NW5'      => '7.10_02',
13839             'ExtUtils::MM_OS2'      => '7.10_02',
13840             'ExtUtils::MM_QNX'      => '7.10_02',
13841             'ExtUtils::MM_UWIN'     => '7.10_02',
13842             'ExtUtils::MM_Unix'     => '7.10_02',
13843             'ExtUtils::MM_VMS'      => '7.10_02',
13844             'ExtUtils::MM_VOS'      => '7.10_02',
13845             'ExtUtils::MM_Win32'    => '7.10_02',
13846             'ExtUtils::MM_Win95'    => '7.10_02',
13847             'ExtUtils::MY'          => '7.10_02',
13848             'ExtUtils::MakeMaker'   => '7.10_02',
13849             'ExtUtils::MakeMaker::Config'=> '7.10_02',
13850             'ExtUtils::Mkbootstrap' => '7.10_02',
13851             'ExtUtils::Mksymlists'  => '7.10_02',
13852             'ExtUtils::testlib'     => '7.10_02',
13853             'File::Fetch'           => '0.48_01',
13854             'File::Spec'            => '3.63_01',
13855             'File::Spec::Cygwin'    => '3.63_01',
13856             'File::Spec::Epoc'      => '3.63_01',
13857             'File::Spec::Functions' => '3.63_01',
13858             'File::Spec::Mac'       => '3.63_01',
13859             'File::Spec::OS2'       => '3.63_01',
13860             'File::Spec::Unix'      => '3.63_01',
13861             'File::Spec::VMS'       => '3.63_01',
13862             'File::Spec::Win32'     => '3.63_01',
13863             'HTTP::Tiny'            => '0.056_001',
13864             'I18N::LangTags::Detect'=> '1.05_01',
13865             'IO'                    => '1.36_01',
13866             'IO::Compress::Adapter::Bzip2'=> '2.069_001',
13867             'IO::Compress::Adapter::Deflate'=> '2.069_001',
13868             'IO::Compress::Adapter::Identity'=> '2.069_001',
13869             'IO::Compress::Base'    => '2.069_001',
13870             'IO::Compress::Base::Common'=> '2.069_001',
13871             'IO::Compress::Bzip2'   => '2.069_001',
13872             'IO::Compress::Deflate' => '2.069_001',
13873             'IO::Compress::Gzip'    => '2.069_001',
13874             'IO::Compress::Gzip::Constants'=> '2.069_001',
13875             'IO::Compress::RawDeflate'=> '2.069_001',
13876             'IO::Compress::Zip'     => '2.069_001',
13877             'IO::Compress::Zip::Constants'=> '2.069_001',
13878             'IO::Compress::Zlib::Constants'=> '2.069_001',
13879             'IO::Compress::Zlib::Extra'=> '2.069_001',
13880             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_001',
13881             'IO::Uncompress::Adapter::Identity'=> '2.069_001',
13882             'IO::Uncompress::Adapter::Inflate'=> '2.069_001',
13883             'IO::Uncompress::AnyInflate'=> '2.069_001',
13884             'IO::Uncompress::AnyUncompress'=> '2.069_001',
13885             'IO::Uncompress::Base'  => '2.069_001',
13886             'IO::Uncompress::Bunzip2'=> '2.069_001',
13887             'IO::Uncompress::Gunzip'=> '2.069_001',
13888             'IO::Uncompress::Inflate'=> '2.069_001',
13889             'IO::Uncompress::RawInflate'=> '2.069_001',
13890             'IO::Uncompress::Unzip' => '2.069_001',
13891             'IPC::Cmd'              => '0.92_01',
13892             'JSON::PP'              => '2.27300_01',
13893             'Locale::Maketext'      => '1.26_01',
13894             'Locale::Maketext::Simple'=> '0.21_01',
13895             'Math::BigFloat::Trace' => '0.42_01',
13896             'Math::BigInt::Trace'   => '0.42_01',
13897             'Memoize'               => '1.03_01',
13898             'Module::CoreList'      => '5.20170114_24',
13899             'Module::CoreList::TieHashDelta'=> '5.20170114_24',
13900             'Module::CoreList::Utils'=> '5.20170114_24',
13901             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13902             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13903             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13904             'Net::Cmd'              => '3.08_01',
13905             'Net::Config'           => '3.08_01',
13906             'Net::Domain'           => '3.08_01',
13907             'Net::FTP'              => '3.08_01',
13908             'Net::FTP::A'           => '3.08_01',
13909             'Net::FTP::E'           => '3.08_01',
13910             'Net::FTP::I'           => '3.08_01',
13911             'Net::FTP::L'           => '3.08_01',
13912             'Net::FTP::dataconn'    => '3.08_01',
13913             'Net::NNTP'             => '3.08_01',
13914             'Net::Netrc'            => '3.08_01',
13915             'Net::POP3'             => '3.08_01',
13916             'Net::Ping'             => '2.43_01',
13917             'Net::SMTP'             => '3.08_01',
13918             'Net::Time'             => '3.08_01',
13919             'Parse::CPAN::Meta'     => '1.4417_001',
13920             'Pod::Html'             => '1.2201',
13921             'Pod::Perldoc'          => '3.25_03',
13922             'Storable'              => '2.56_01',
13923             'Sys::Syslog'           => '0.33_01',
13924             'TAP::Base'             => '3.36_01',
13925             'TAP::Formatter::Base'  => '3.36_01',
13926             'TAP::Formatter::Color' => '3.36_01',
13927             'TAP::Formatter::Console'=> '3.36_01',
13928             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13929             'TAP::Formatter::Console::Session'=> '3.36_01',
13930             'TAP::Formatter::File'  => '3.36_01',
13931             'TAP::Formatter::File::Session'=> '3.36_01',
13932             'TAP::Formatter::Session'=> '3.36_01',
13933             'TAP::Harness'          => '3.36_01',
13934             'TAP::Harness::Env'     => '3.36_01',
13935             'TAP::Object'           => '3.36_01',
13936             'TAP::Parser'           => '3.36_01',
13937             'TAP::Parser::Aggregator'=> '3.36_01',
13938             'TAP::Parser::Grammar'  => '3.36_01',
13939             'TAP::Parser::Iterator' => '3.36_01',
13940             'TAP::Parser::Iterator::Array'=> '3.36_01',
13941             'TAP::Parser::Iterator::Process'=> '3.36_01',
13942             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13943             'TAP::Parser::IteratorFactory'=> '3.36_01',
13944             'TAP::Parser::Multiplexer'=> '3.36_01',
13945             'TAP::Parser::Result'   => '3.36_01',
13946             'TAP::Parser::Result::Bailout'=> '3.36_01',
13947             'TAP::Parser::Result::Comment'=> '3.36_01',
13948             'TAP::Parser::Result::Plan'=> '3.36_01',
13949             'TAP::Parser::Result::Pragma'=> '3.36_01',
13950             'TAP::Parser::Result::Test'=> '3.36_01',
13951             'TAP::Parser::Result::Unknown'=> '3.36_01',
13952             'TAP::Parser::Result::Version'=> '3.36_01',
13953             'TAP::Parser::Result::YAML'=> '3.36_01',
13954             'TAP::Parser::ResultFactory'=> '3.36_01',
13955             'TAP::Parser::Scheduler'=> '3.36_01',
13956             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13957             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13958             'TAP::Parser::Source'   => '3.36_01',
13959             'TAP::Parser::SourceHandler'=> '3.36_01',
13960             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13961             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13962             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13963             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13964             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13965             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13966             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13967             'Test'                  => '1.28_01',
13968             'Test::Harness'         => '3.36_01',
13969             'XSLoader'              => '0.22',
13970             'bigint'                => '0.42_01',
13971             'bignum'                => '0.42_01',
13972             'bigrat'                => '0.42_01',
13973         },
13974         removed => {
13975         }
13976     },
13977     5.025009 => {
13978         delta_from => 5.025008,
13979         changed => {
13980             'App::Cpan'             => '1.66',
13981             'B::Deparse'            => '1.40',
13982             'B::Op_private'         => '5.025009',
13983             'B::Terse'              => '1.07',
13984             'B::Xref'               => '1.06',
13985             'CPAN'                  => '2.16',
13986             'CPAN::Bundle'          => '5.5002',
13987             'CPAN::Distribution'    => '2.16',
13988             'CPAN::Exception::RecursiveDependency'=> '5.5001',
13989             'CPAN::FTP'             => '5.5008',
13990             'CPAN::FirstTime'       => '5.5310',
13991             'CPAN::HandleConfig'    => '5.5008',
13992             'CPAN::Module'          => '5.5003',
13993             'Compress::Raw::Bzip2'  => '2.070',
13994             'Compress::Raw::Zlib'   => '2.070',
13995             'Config'                => '5.025009',
13996             'DB_File'               => '1.840',
13997             'Data::Dumper'          => '2.167',
13998             'Devel::SelfStubber'    => '1.06',
13999             'DynaLoader'            => '1.41',
14000             'Errno'                 => '1.28',
14001             'ExtUtils::Embed'       => '1.34',
14002             'File::Glob'            => '1.28',
14003             'I18N::LangTags'        => '0.42',
14004             'Module::CoreList'      => '5.20170120',
14005             'Module::CoreList::TieHashDelta'=> '5.20170120',
14006             'Module::CoreList::Utils'=> '5.20170120',
14007             'OS2::Process'          => '1.12',
14008             'PerlIO::scalar'        => '0.26',
14009             'Pod::Html'             => '1.2202',
14010             'Storable'              => '2.61',
14011             'Symbol'                => '1.08',
14012             'Term::ReadLine'        => '1.16',
14013             'Test'                  => '1.30',
14014             'Unicode::UCD'          => '0.68',
14015             'VMS::DCLsym'           => '1.08',
14016             'XS::APItest'           => '0.88',
14017             'XSLoader'              => '0.26',
14018             'attributes'            => '0.29',
14019             'diagnostics'           => '1.36',
14020             'feature'               => '1.46',
14021             'lib'                   => '0.64',
14022             'overload'              => '1.28',
14023             're'                    => '0.34',
14024             'threads'               => '2.12',
14025             'threads::shared'       => '1.54',
14026         },
14027         removed => {
14028         }
14029     },
14030     5.025010 => {
14031         delta_from => 5.025009,
14032         changed => {
14033             'B'                     => '1.68',
14034             'B::Op_private'         => '5.025010',
14035             'CPAN'                  => '2.17',
14036             'CPAN::Distribution'    => '2.17',
14037             'Config'                => '5.02501',
14038             'Getopt::Std'           => '1.12',
14039             'Module::CoreList'      => '5.20170220',
14040             'Module::CoreList::TieHashDelta'=> '5.20170220',
14041             'Module::CoreList::Utils'=> '5.20170220',
14042             'PerlIO'                => '1.10',
14043             'Storable'              => '2.62',
14044             'Thread::Queue'         => '3.12',
14045             'feature'               => '1.47',
14046             'open'                  => '1.11',
14047             'threads'               => '2.13',
14048         },
14049         removed => {
14050         }
14051     },
14052     5.025011 => {
14053         delta_from => 5.025010,
14054         changed => {
14055             'App::Prove'            => '3.38',
14056             'App::Prove::State'     => '3.38',
14057             'App::Prove::State::Result'=> '3.38',
14058             'App::Prove::State::Result::Test'=> '3.38',
14059             'B::Op_private'         => '5.025011',
14060             'Compress::Raw::Bzip2'  => '2.074',
14061             'Compress::Raw::Zlib'   => '2.074',
14062             'Compress::Zlib'        => '2.074',
14063             'Config'                => '5.025011',
14064             'Config::Perl::V'       => '0.28',
14065             'Cwd'                   => '3.67',
14066             'ExtUtils::ParseXS'     => '3.34',
14067             'ExtUtils::ParseXS::Constants'=> '3.34',
14068             'ExtUtils::ParseXS::CountLines'=> '3.34',
14069             'ExtUtils::ParseXS::Eval'=> '3.34',
14070             'ExtUtils::Typemaps'    => '3.34',
14071             'ExtUtils::Typemaps::Cmd'=> '3.34',
14072             'ExtUtils::Typemaps::InputMap'=> '3.34',
14073             'ExtUtils::Typemaps::OutputMap'=> '3.34',
14074             'ExtUtils::Typemaps::Type'=> '3.34',
14075             'File::Spec'            => '3.67',
14076             'File::Spec::AmigaOS'   => '3.67',
14077             'File::Spec::Cygwin'    => '3.67',
14078             'File::Spec::Epoc'      => '3.67',
14079             'File::Spec::Functions' => '3.67',
14080             'File::Spec::Mac'       => '3.67',
14081             'File::Spec::OS2'       => '3.67',
14082             'File::Spec::Unix'      => '3.67',
14083             'File::Spec::VMS'       => '3.67',
14084             'File::Spec::Win32'     => '3.67',
14085             'IO::Compress::Adapter::Bzip2'=> '2.074',
14086             'IO::Compress::Adapter::Deflate'=> '2.074',
14087             'IO::Compress::Adapter::Identity'=> '2.074',
14088             'IO::Compress::Base'    => '2.074',
14089             'IO::Compress::Base::Common'=> '2.074',
14090             'IO::Compress::Bzip2'   => '2.074',
14091             'IO::Compress::Deflate' => '2.074',
14092             'IO::Compress::Gzip'    => '2.074',
14093             'IO::Compress::Gzip::Constants'=> '2.074',
14094             'IO::Compress::RawDeflate'=> '2.074',
14095             'IO::Compress::Zip'     => '2.074',
14096             'IO::Compress::Zip::Constants'=> '2.074',
14097             'IO::Compress::Zlib::Constants'=> '2.074',
14098             'IO::Compress::Zlib::Extra'=> '2.074',
14099             'IO::Uncompress::Adapter::Bunzip2'=> '2.074',
14100             'IO::Uncompress::Adapter::Identity'=> '2.074',
14101             'IO::Uncompress::Adapter::Inflate'=> '2.074',
14102             'IO::Uncompress::AnyInflate'=> '2.074',
14103             'IO::Uncompress::AnyUncompress'=> '2.074',
14104             'IO::Uncompress::Base'  => '2.074',
14105             'IO::Uncompress::Bunzip2'=> '2.074',
14106             'IO::Uncompress::Gunzip'=> '2.074',
14107             'IO::Uncompress::Inflate'=> '2.074',
14108             'IO::Uncompress::RawInflate'=> '2.074',
14109             'IO::Uncompress::Unzip' => '2.074',
14110             'Module::CoreList'      => '5.20170320',
14111             'Module::CoreList::TieHashDelta'=> '5.20170230',
14112             'Module::CoreList::Utils'=> '5.20170320',
14113             'Pod::Perldoc'          => '3.28',
14114             'Pod::Perldoc::BaseTo'  => '3.28',
14115             'Pod::Perldoc::GetOptsOO'=> '3.28',
14116             'Pod::Perldoc::ToANSI'  => '3.28',
14117             'Pod::Perldoc::ToChecker'=> '3.28',
14118             'Pod::Perldoc::ToMan'   => '3.28',
14119             'Pod::Perldoc::ToNroff' => '3.28',
14120             'Pod::Perldoc::ToPod'   => '3.28',
14121             'Pod::Perldoc::ToRtf'   => '3.28',
14122             'Pod::Perldoc::ToTerm'  => '3.28',
14123             'Pod::Perldoc::ToText'  => '3.28',
14124             'Pod::Perldoc::ToTk'    => '3.28',
14125             'Pod::Perldoc::ToXml'   => '3.28',
14126             'TAP::Base'             => '3.38',
14127             'TAP::Formatter::Base'  => '3.38',
14128             'TAP::Formatter::Color' => '3.38',
14129             'TAP::Formatter::Console'=> '3.38',
14130             'TAP::Formatter::Console::ParallelSession'=> '3.38',
14131             'TAP::Formatter::Console::Session'=> '3.38',
14132             'TAP::Formatter::File'  => '3.38',
14133             'TAP::Formatter::File::Session'=> '3.38',
14134             'TAP::Formatter::Session'=> '3.38',
14135             'TAP::Harness'          => '3.38',
14136             'TAP::Harness::Env'     => '3.38',
14137             'TAP::Object'           => '3.38',
14138             'TAP::Parser'           => '3.38',
14139             'TAP::Parser::Aggregator'=> '3.38',
14140             'TAP::Parser::Grammar'  => '3.38',
14141             'TAP::Parser::Iterator' => '3.38',
14142             'TAP::Parser::Iterator::Array'=> '3.38',
14143             'TAP::Parser::Iterator::Process'=> '3.38',
14144             'TAP::Parser::Iterator::Stream'=> '3.38',
14145             'TAP::Parser::IteratorFactory'=> '3.38',
14146             'TAP::Parser::Multiplexer'=> '3.38',
14147             'TAP::Parser::Result'   => '3.38',
14148             'TAP::Parser::Result::Bailout'=> '3.38',
14149             'TAP::Parser::Result::Comment'=> '3.38',
14150             'TAP::Parser::Result::Plan'=> '3.38',
14151             'TAP::Parser::Result::Pragma'=> '3.38',
14152             'TAP::Parser::Result::Test'=> '3.38',
14153             'TAP::Parser::Result::Unknown'=> '3.38',
14154             'TAP::Parser::Result::Version'=> '3.38',
14155             'TAP::Parser::Result::YAML'=> '3.38',
14156             'TAP::Parser::ResultFactory'=> '3.38',
14157             'TAP::Parser::Scheduler'=> '3.38',
14158             'TAP::Parser::Scheduler::Job'=> '3.38',
14159             'TAP::Parser::Scheduler::Spinner'=> '3.38',
14160             'TAP::Parser::Source'   => '3.38',
14161             'TAP::Parser::SourceHandler'=> '3.38',
14162             'TAP::Parser::SourceHandler::Executable'=> '3.38',
14163             'TAP::Parser::SourceHandler::File'=> '3.38',
14164             'TAP::Parser::SourceHandler::Handle'=> '3.38',
14165             'TAP::Parser::SourceHandler::Perl'=> '3.38',
14166             'TAP::Parser::SourceHandler::RawTAP'=> '3.38',
14167             'TAP::Parser::YAMLish::Reader'=> '3.38',
14168             'TAP::Parser::YAMLish::Writer'=> '3.38',
14169             'Test::Harness'         => '3.38',
14170             'VMS::Stdio'            => '2.41',
14171             'threads'               => '2.15',
14172             'threads::shared'       => '1.55',
14173         },
14174         removed => {
14175         }
14176     },
14177     5.025012 => {
14178         delta_from => 5.025011,
14179         changed => {
14180             'B::Op_private'         => '5.025012',
14181             'CPAN'                  => '2.18',
14182             'CPAN::Bundle'          => '5.5003',
14183             'CPAN::Distribution'    => '2.18',
14184             'Config'                => '5.025012',
14185             'DynaLoader'            => '1.42',
14186             'Module::CoreList'      => '5.20170420',
14187             'Module::CoreList::TieHashDelta'=> '5.20170420',
14188             'Module::CoreList::Utils'=> '5.20170420',
14189             'Safe'                  => '2.40',
14190             'XSLoader'              => '0.27',
14191             'base'                  => '2.25',
14192             'threads::shared'       => '1.56',
14193         },
14194         removed => {
14195         }
14196     },
14197     5.026000 => {
14198         delta_from => 5.025012,
14199         changed => {
14200             'B::Op_private'         => '5.026000',
14201             'Config'                => '5.026',
14202             'Module::CoreList'      => '5.20170530',
14203             'Module::CoreList::TieHashDelta'=> '5.20170530',
14204             'Module::CoreList::Utils'=> '5.20170530',
14205         },
14206         removed => {
14207         }
14208     },
14209     5.027000 => {
14210         delta_from => 5.026000,
14211         changed => {
14212             'Attribute::Handlers'   => '1.00',
14213             'B::Concise'            => '1.000',
14214             'B::Deparse'            => '1.41',
14215             'B::Op_private'         => '5.027000',
14216             'Config'                => '5.027',
14217             'Module::CoreList'      => '5.20170531',
14218             'Module::CoreList::TieHashDelta'=> '5.20170531',
14219             'Module::CoreList::Utils'=> '5.20170531',
14220             'O'                     => '1.02',
14221             'attributes'            => '0.3',
14222             'feature'               => '1.48',
14223         },
14224         removed => {
14225         }
14226     },
14227     5.027001 => {
14228         delta_from => 5.027,
14229         changed => {
14230             'App::Prove'            => '3.39',
14231             'App::Prove::State'     => '3.39',
14232             'App::Prove::State::Result'=> '3.39',
14233             'App::Prove::State::Result::Test'=> '3.39',
14234             'Archive::Tar'          => '2.26',
14235             'Archive::Tar::Constant'=> '2.26',
14236             'Archive::Tar::File'    => '2.26',
14237             'B::Op_private'         => '5.027001',
14238             'B::Terse'              => '1.08',
14239             'Config'                => '5.027001',
14240             'Devel::PPPort'         => '3.36',
14241             'DirHandle'             => '1.05',
14242             'ExtUtils::Command'     => '7.30',
14243             'ExtUtils::Command::MM' => '7.30',
14244             'ExtUtils::Install'     => '2.14',
14245             'ExtUtils::Installed'   => '2.14',
14246             'ExtUtils::Liblist'     => '7.30',
14247             'ExtUtils::Liblist::Kid'=> '7.30',
14248             'ExtUtils::MM'          => '7.30',
14249             'ExtUtils::MM_AIX'      => '7.30',
14250             'ExtUtils::MM_Any'      => '7.30',
14251             'ExtUtils::MM_BeOS'     => '7.30',
14252             'ExtUtils::MM_Cygwin'   => '7.30',
14253             'ExtUtils::MM_DOS'      => '7.30',
14254             'ExtUtils::MM_Darwin'   => '7.30',
14255             'ExtUtils::MM_MacOS'    => '7.30',
14256             'ExtUtils::MM_NW5'      => '7.30',
14257             'ExtUtils::MM_OS2'      => '7.30',
14258             'ExtUtils::MM_QNX'      => '7.30',
14259             'ExtUtils::MM_UWIN'     => '7.30',
14260             'ExtUtils::MM_Unix'     => '7.30',
14261             'ExtUtils::MM_VMS'      => '7.30',
14262             'ExtUtils::MM_VOS'      => '7.30',
14263             'ExtUtils::MM_Win32'    => '7.30',
14264             'ExtUtils::MM_Win95'    => '7.30',
14265             'ExtUtils::MY'          => '7.30',
14266             'ExtUtils::MakeMaker'   => '7.30',
14267             'ExtUtils::MakeMaker::Config'=> '7.30',
14268             'ExtUtils::MakeMaker::Locale'=> '7.30',
14269             'ExtUtils::MakeMaker::version'=> '7.30',
14270             'ExtUtils::MakeMaker::version::regex'=> '7.30',
14271             'ExtUtils::Mkbootstrap' => '7.30',
14272             'ExtUtils::Mksymlists'  => '7.30',
14273             'ExtUtils::Packlist'    => '2.14',
14274             'ExtUtils::testlib'     => '7.30',
14275             'File::Path'            => '2.14',
14276             'Filter::Util::Call'    => '1.57',
14277             'GDBM_File'             => '1.16',
14278             'Getopt::Long'          => '2.5',
14279             'IO::Socket::IP'        => '0.39',
14280             'IPC::Cmd'              => '0.98',
14281             'JSON::PP'              => '2.94',
14282             'JSON::PP::Boolean'     => '2.94',
14283             'Locale::Codes'         => '3.52',
14284             'Locale::Codes::Constants'=> '3.52',
14285             'Locale::Codes::Country'=> '3.52',
14286             'Locale::Codes::Country_Codes'=> '3.52',
14287             'Locale::Codes::Country_Retired'=> '3.52',
14288             'Locale::Codes::Currency'=> '3.52',
14289             'Locale::Codes::Currency_Codes'=> '3.52',
14290             'Locale::Codes::Currency_Retired'=> '3.52',
14291             'Locale::Codes::LangExt'=> '3.52',
14292             'Locale::Codes::LangExt_Codes'=> '3.52',
14293             'Locale::Codes::LangExt_Retired'=> '3.52',
14294             'Locale::Codes::LangFam'=> '3.52',
14295             'Locale::Codes::LangFam_Codes'=> '3.52',
14296             'Locale::Codes::LangFam_Retired'=> '3.52',
14297             'Locale::Codes::LangVar'=> '3.52',
14298             'Locale::Codes::LangVar_Codes'=> '3.52',
14299             'Locale::Codes::LangVar_Retired'=> '3.52',
14300             'Locale::Codes::Language'=> '3.52',
14301             'Locale::Codes::Language_Codes'=> '3.52',
14302             'Locale::Codes::Language_Retired'=> '3.52',
14303             'Locale::Codes::Script' => '3.52',
14304             'Locale::Codes::Script_Codes'=> '3.52',
14305             'Locale::Codes::Script_Retired'=> '3.52',
14306             'Locale::Country'       => '3.52',
14307             'Locale::Currency'      => '3.52',
14308             'Locale::Language'      => '3.52',
14309             'Locale::Script'        => '3.52',
14310             'Module::CoreList'      => '5.20170621',
14311             'Module::CoreList::TieHashDelta'=> '5.20170621',
14312             'Module::CoreList::Utils'=> '5.20170621',
14313             'PerlIO::scalar'        => '0.27',
14314             'PerlIO::via'           => '0.17',
14315             'Storable'              => '2.63',
14316             'TAP::Base'             => '3.39',
14317             'TAP::Formatter::Base'  => '3.39',
14318             'TAP::Formatter::Color' => '3.39',
14319             'TAP::Formatter::Console'=> '3.39',
14320             'TAP::Formatter::Console::ParallelSession'=> '3.39',
14321             'TAP::Formatter::Console::Session'=> '3.39',
14322             'TAP::Formatter::File'  => '3.39',
14323             'TAP::Formatter::File::Session'=> '3.39',
14324             'TAP::Formatter::Session'=> '3.39',
14325             'TAP::Harness'          => '3.39',
14326             'TAP::Harness::Env'     => '3.39',
14327             'TAP::Object'           => '3.39',
14328             'TAP::Parser'           => '3.39',
14329             'TAP::Parser::Aggregator'=> '3.39',
14330             'TAP::Parser::Grammar'  => '3.39',
14331             'TAP::Parser::Iterator' => '3.39',
14332             'TAP::Parser::Iterator::Array'=> '3.39',
14333             'TAP::Parser::Iterator::Process'=> '3.39',
14334             'TAP::Parser::Iterator::Stream'=> '3.39',
14335             'TAP::Parser::IteratorFactory'=> '3.39',
14336             'TAP::Parser::Multiplexer'=> '3.39',
14337             'TAP::Parser::Result'   => '3.39',
14338             'TAP::Parser::Result::Bailout'=> '3.39',
14339             'TAP::Parser::Result::Comment'=> '3.39',
14340             'TAP::Parser::Result::Plan'=> '3.39',
14341             'TAP::Parser::Result::Pragma'=> '3.39',
14342             'TAP::Parser::Result::Test'=> '3.39',
14343             'TAP::Parser::Result::Unknown'=> '3.39',
14344             'TAP::Parser::Result::Version'=> '3.39',
14345             'TAP::Parser::Result::YAML'=> '3.39',
14346             'TAP::Parser::ResultFactory'=> '3.39',
14347             'TAP::Parser::Scheduler'=> '3.39',
14348             'TAP::Parser::Scheduler::Job'=> '3.39',
14349             'TAP::Parser::Scheduler::Spinner'=> '3.39',
14350             'TAP::Parser::Source'   => '3.39',
14351             'TAP::Parser::SourceHandler'=> '3.39',
14352             'TAP::Parser::SourceHandler::Executable'=> '3.39',
14353             'TAP::Parser::SourceHandler::File'=> '3.39',
14354             'TAP::Parser::SourceHandler::Handle'=> '3.39',
14355             'TAP::Parser::SourceHandler::Perl'=> '3.39',
14356             'TAP::Parser::SourceHandler::RawTAP'=> '3.39',
14357             'TAP::Parser::YAMLish::Reader'=> '3.39',
14358             'TAP::Parser::YAMLish::Writer'=> '3.39',
14359             'Test::Harness'         => '3.39',
14360             'XS::APItest'           => '0.89',
14361             '_charnames'            => '1.45',
14362             'charnames'             => '1.45',
14363             'if'                    => '0.0607',
14364             'mro'                   => '1.21',
14365             'threads'               => '2.16',
14366             'threads::shared'       => '1.57',
14367             'version'               => '0.9918',
14368             'version::regex'        => '0.9918',
14369         },
14370         removed => {
14371         }
14372     },
14373     5.022004 => {
14374         delta_from => 5.022003,
14375         changed => {
14376             'B::Op_private'         => '5.022004',
14377             'Config'                => '5.022004',
14378             'Module::CoreList'      => '5.20170715_22',
14379             'Module::CoreList::TieHashDelta'=> '5.20170715_22',
14380             'Module::CoreList::Utils'=> '5.20170715_22',
14381             'base'                  => '2.22_01',
14382         },
14383         removed => {
14384         }
14385     },
14386     5.024002 => {
14387         delta_from => 5.024001,
14388         changed => {
14389             'B::Op_private'         => '5.024002',
14390             'Config'                => '5.024002',
14391             'Module::CoreList'      => '5.20170715_24',
14392             'Module::CoreList::TieHashDelta'=> '5.20170715_24',
14393             'Module::CoreList::Utils'=> '5.20170715_24',
14394             'base'                  => '2.23_01',
14395         },
14396         removed => {
14397         }
14398     },
14399     5.027002 => {
14400         delta_from => 5.027001,
14401         changed => {
14402             'B::Op_private'         => '5.027002',
14403             'Carp'                  => '1.43',
14404             'Carp::Heavy'           => '1.43',
14405             'Config'                => '5.027002',
14406             'Cwd'                   => '3.68',
14407             'Encode'                => '2.92',
14408             'Encode::Alias'         => '2.23',
14409             'Encode::CN::HZ'        => '2.09',
14410             'Encode::Encoding'      => '2.08',
14411             'Encode::GSM0338'       => '2.07',
14412             'Encode::Guess'         => '2.07',
14413             'Encode::JP::JIS7'      => '2.07',
14414             'Encode::KR::2022_KR'   => '2.04',
14415             'Encode::MIME::Header'  => '2.27',
14416             'Encode::MIME::Header::ISO_2022_JP'=> '1.09',
14417             'Encode::Unicode'       => '2.16',
14418             'Encode::Unicode::UTF7' => '2.10',
14419             'ExtUtils::CBuilder'    => '0.280228',
14420             'ExtUtils::CBuilder::Base'=> '0.280228',
14421             'ExtUtils::CBuilder::Platform::Unix'=> '0.280228',
14422             'ExtUtils::CBuilder::Platform::VMS'=> '0.280228',
14423             'ExtUtils::CBuilder::Platform::Windows'=> '0.280228',
14424             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228',
14425             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228',
14426             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228',
14427             'ExtUtils::CBuilder::Platform::aix'=> '0.280228',
14428             'ExtUtils::CBuilder::Platform::android'=> '0.280228',
14429             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228',
14430             'ExtUtils::CBuilder::Platform::darwin'=> '0.280228',
14431             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228',
14432             'ExtUtils::CBuilder::Platform::os2'=> '0.280228',
14433             'File::Glob'            => '1.29',
14434             'File::Spec'            => '3.68',
14435             'File::Spec::AmigaOS'   => '3.68',
14436             'File::Spec::Cygwin'    => '3.68',
14437             'File::Spec::Epoc'      => '3.68',
14438             'File::Spec::Functions' => '3.68',
14439             'File::Spec::Mac'       => '3.68',
14440             'File::Spec::OS2'       => '3.68',
14441             'File::Spec::Unix'      => '3.68',
14442             'File::Spec::VMS'       => '3.68',
14443             'File::Spec::Win32'     => '3.68',
14444             'List::Util'            => '1.48',
14445             'List::Util::XS'        => '1.48',
14446             'Math::BigRat'          => '0.2613',
14447             'Module::CoreList'      => '5.20170720',
14448             'Module::CoreList::TieHashDelta'=> '5.20170720',
14449             'Module::CoreList::Utils'=> '5.20170720',
14450             'Opcode'                => '1.40',
14451             'POSIX'                 => '1.77',
14452             'PerlIO::scalar'        => '0.29',
14453             'Scalar::Util'          => '1.48',
14454             'Sub::Util'             => '1.48',
14455             'Time::HiRes'           => '1.9743',
14456             'Time::Piece'           => '1.3201',
14457             'Time::Seconds'         => '1.3201',
14458             'Unicode'               => '10.0.0',
14459             'XS::APItest'           => '0.90',
14460             'arybase'               => '0.13',
14461             'encoding'              => '2.20',
14462             'feature'               => '1.49',
14463             're'                    => '0.35',
14464         },
14465         removed => {
14466         }
14467     },
14468     5.027003 => {
14469         delta_from => 5.027002,
14470         changed => {
14471             'B'                     => '1.69',
14472             'B::Concise'            => '1.001',
14473             'B::Debug'              => '1.25',
14474             'B::Deparse'            => '1.42',
14475             'B::Op_private'         => '5.027003',
14476             'Config'                => '5.027003',
14477             'Data::Dumper'          => '2.167_02',
14478             'Devel::Peek'           => '1.27',
14479             'ExtUtils::Constant'    => '0.24',
14480             'ExtUtils::Constant::Base'=> '0.06',
14481             'ExtUtils::Constant::ProxySubs'=> '0.09',
14482             'ExtUtils::Constant::Utils'=> '0.04',
14483             'ExtUtils::ParseXS'     => '3.35',
14484             'ExtUtils::ParseXS::Constants'=> '3.35',
14485             'ExtUtils::ParseXS::CountLines'=> '3.35',
14486             'ExtUtils::ParseXS::Eval'=> '3.35',
14487             'ExtUtils::ParseXS::Utilities'=> '3.35',
14488             'ExtUtils::Typemaps'    => '3.35',
14489             'ExtUtils::Typemaps::Cmd'=> '3.35',
14490             'ExtUtils::Typemaps::InputMap'=> '3.35',
14491             'ExtUtils::Typemaps::OutputMap'=> '3.35',
14492             'ExtUtils::Typemaps::Type'=> '3.35',
14493             'Filter::Simple'        => '0.94',
14494             'Module::CoreList'      => '5.20170821',
14495             'Module::CoreList::TieHashDelta'=> '5.20170821',
14496             'Module::CoreList::Utils'=> '5.20170821',
14497             'SelfLoader'            => '1.24',
14498             'Storable'              => '2.64',
14499             'XS::APItest'           => '0.91',
14500             'base'                  => '2.26',
14501             'threads'               => '2.17',
14502             'utf8'                  => '1.20',
14503         },
14504         removed => {
14505         }
14506     },
14507     5.027004 => {
14508         delta_from => 5.027003,
14509         changed => {
14510             'B::Op_private'         => '5.027004',
14511             'Config'                => '5.027004',
14512             'File::Glob'            => '1.30',
14513             'I18N::Langinfo'        => '0.14',
14514             'Module::CoreList'      => '5.20170920',
14515             'Module::CoreList::TieHashDelta'=> '5.20170920',
14516             'Module::CoreList::Utils'=> '5.20170920',
14517             'Term::ReadLine'        => '1.17',
14518             'VMS::Stdio'            => '2.42',
14519             'XS::APItest'           => '0.92',
14520             'attributes'            => '0.31',
14521             'sort'                  => '2.03',
14522             'threads'               => '2.18',
14523         },
14524         removed => {
14525         }
14526     },
14527     5.024003 => {
14528         delta_from => 5.024002,
14529         changed => {
14530             'B::Op_private'         => '5.024003',
14531             'Config'                => '5.024003',
14532             'Module::CoreList'      => '5.20170922_24',
14533             'Module::CoreList::TieHashDelta'=> '5.20170922_24',
14534             'Module::CoreList::Utils'=> '5.20170922_24',
14535             'POSIX'                 => '1.65_01',
14536             'Time::HiRes'           => '1.9741',
14537         },
14538         removed => {
14539         }
14540     },
14541     5.026001 => {
14542         delta_from => 5.026000,
14543         changed => {
14544             'B::Op_private'         => '5.026001',
14545             'Config'                => '5.026001',
14546             'Module::CoreList'      => '5.20170922_26',
14547             'Module::CoreList::TieHashDelta'=> '5.20170922_26',
14548             'Module::CoreList::Utils'=> '5.20170922_26',
14549             '_charnames'            => '1.45',
14550             'base'                  => '2.26',
14551             'charnames'             => '1.45',
14552         },
14553         removed => {
14554         }
14555     },
14556     5.027005 => {
14557         delta_from => 5.027004,
14558         changed => {
14559             'B'                     => '1.70',
14560             'B::Concise'            => '1.002',
14561             'B::Deparse'            => '1.43',
14562             'B::Op_private'         => '5.027005',
14563             'B::Xref'               => '1.07',
14564             'Config'                => '5.027005',
14565             'Config::Perl::V'       => '0.29',
14566             'Digest::SHA'           => '5.98',
14567             'Encode'                => '2.93',
14568             'Encode::CN::HZ'        => '2.10',
14569             'Encode::JP::JIS7'      => '2.08',
14570             'Encode::MIME::Header'  => '2.28',
14571             'Encode::MIME::Name'    => '1.03',
14572             'File::Fetch'           => '0.54',
14573             'File::Path'            => '2.15',
14574             'List::Util'            => '1.49',
14575             'List::Util::XS'        => '1.49',
14576             'Locale::Codes'         => '3.54',
14577             'Locale::Codes::Constants'=> '3.54',
14578             'Locale::Codes::Country'=> '3.54',
14579             'Locale::Codes::Country_Codes'=> '3.54',
14580             'Locale::Codes::Country_Retired'=> '3.54',
14581             'Locale::Codes::Currency'=> '3.54',
14582             'Locale::Codes::Currency_Codes'=> '3.54',
14583             'Locale::Codes::Currency_Retired'=> '3.54',
14584             'Locale::Codes::LangExt'=> '3.54',
14585             'Locale::Codes::LangExt_Codes'=> '3.54',
14586             'Locale::Codes::LangExt_Retired'=> '3.54',
14587             'Locale::Codes::LangFam'=> '3.54',
14588             'Locale::Codes::LangFam_Codes'=> '3.54',
14589             'Locale::Codes::LangFam_Retired'=> '3.54',
14590             'Locale::Codes::LangVar'=> '3.54',
14591             'Locale::Codes::LangVar_Codes'=> '3.54',
14592             'Locale::Codes::LangVar_Retired'=> '3.54',
14593             'Locale::Codes::Language'=> '3.54',
14594             'Locale::Codes::Language_Codes'=> '3.54',
14595             'Locale::Codes::Language_Retired'=> '3.54',
14596             'Locale::Codes::Script' => '3.54',
14597             'Locale::Codes::Script_Codes'=> '3.54',
14598             'Locale::Codes::Script_Retired'=> '3.54',
14599             'Locale::Country'       => '3.54',
14600             'Locale::Currency'      => '3.54',
14601             'Locale::Language'      => '3.54',
14602             'Locale::Script'        => '3.54',
14603             'Math::BigFloat'        => '1.999811',
14604             'Math::BigInt'          => '1.999811',
14605             'Math::BigInt::Calc'    => '1.999811',
14606             'Math::BigInt::CalcEmu' => '1.999811',
14607             'Math::BigInt::FastCalc'=> '0.5006',
14608             'Math::BigInt::Lib'     => '1.999811',
14609             'Module::CoreList'      => '5.20171020',
14610             'Module::CoreList::TieHashDelta'=> '5.20171020',
14611             'Module::CoreList::Utils'=> '5.20171020',
14612             'NEXT'                  => '0.67_01',
14613             'POSIX'                 => '1.78',
14614             'Pod::Perldoc'          => '3.2801',
14615             'Scalar::Util'          => '1.49',
14616             'Sub::Util'             => '1.49',
14617             'Sys::Hostname'         => '1.21',
14618             'Test2'                 => '1.302103',
14619             'Test2::API'            => '1.302103',
14620             'Test2::API::Breakage'  => '1.302103',
14621             'Test2::API::Context'   => '1.302103',
14622             'Test2::API::Instance'  => '1.302103',
14623             'Test2::API::Stack'     => '1.302103',
14624             'Test2::Event'          => '1.302103',
14625             'Test2::Event::Bail'    => '1.302103',
14626             'Test2::Event::Diag'    => '1.302103',
14627             'Test2::Event::Encoding'=> '1.302103',
14628             'Test2::Event::Exception'=> '1.302103',
14629             'Test2::Event::Fail'    => '1.302103',
14630             'Test2::Event::Generic' => '1.302103',
14631             'Test2::Event::Note'    => '1.302103',
14632             'Test2::Event::Ok'      => '1.302103',
14633             'Test2::Event::Pass'    => '1.302103',
14634             'Test2::Event::Plan'    => '1.302103',
14635             'Test2::Event::Skip'    => '1.302103',
14636             'Test2::Event::Subtest' => '1.302103',
14637             'Test2::Event::TAP::Version'=> '1.302103',
14638             'Test2::Event::Waiting' => '1.302103',
14639             'Test2::EventFacet'     => '1.302103',
14640             'Test2::EventFacet::About'=> '1.302103',
14641             'Test2::EventFacet::Amnesty'=> '1.302103',
14642             'Test2::EventFacet::Assert'=> '1.302103',
14643             'Test2::EventFacet::Control'=> '1.302103',
14644             'Test2::EventFacet::Error'=> '1.302103',
14645             'Test2::EventFacet::Info'=> '1.302103',
14646             'Test2::EventFacet::Meta'=> '1.302103',
14647             'Test2::EventFacet::Parent'=> '1.302103',
14648             'Test2::EventFacet::Plan'=> '1.302103',
14649             'Test2::EventFacet::Trace'=> '1.302103',
14650             'Test2::Formatter'      => '1.302103',
14651             'Test2::Formatter::TAP' => '1.302103',
14652             'Test2::Hub'            => '1.302103',
14653             'Test2::Hub::Interceptor'=> '1.302103',
14654             'Test2::Hub::Interceptor::Terminator'=> '1.302103',
14655             'Test2::Hub::Subtest'   => '1.302103',
14656             'Test2::IPC'            => '1.302103',
14657             'Test2::IPC::Driver'    => '1.302103',
14658             'Test2::IPC::Driver::Files'=> '1.302103',
14659             'Test2::Tools::Tiny'    => '1.302103',
14660             'Test2::Util'           => '1.302103',
14661             'Test2::Util::ExternalMeta'=> '1.302103',
14662             'Test2::Util::Facets2Legacy'=> '1.302103',
14663             'Test2::Util::HashBase' => '0.005',
14664             'Test2::Util::Trace'    => '1.302103',
14665             'Test::Builder'         => '1.302103',
14666             'Test::Builder::Formatter'=> '1.302103',
14667             'Test::Builder::IO::Scalar'=> '2.114',
14668             'Test::Builder::Module' => '1.302103',
14669             'Test::Builder::Tester' => '1.302103',
14670             'Test::Builder::Tester::Color'=> '1.302103',
14671             'Test::Builder::TodoDiag'=> '1.302103',
14672             'Test::More'            => '1.302103',
14673             'Test::Simple'          => '1.302103',
14674             'Test::Tester'          => '1.302103',
14675             'Test::Tester::Capture' => '1.302103',
14676             'Test::Tester::CaptureRunner'=> '1.302103',
14677             'Test::Tester::Delegate'=> '1.302103',
14678             'Test::use::ok'         => '1.302103',
14679             'Time::HiRes'           => '1.9746',
14680             'Time::Piece'           => '1.3202',
14681             'Time::Seconds'         => '1.3202',
14682             'arybase'               => '0.14',
14683             'encoding'              => '2.21',
14684             'ok'                    => '1.302103',
14685         },
14686         removed => {
14687             'Test2::Event::Info'    => 1,
14688         }
14689     },
14690     5.027006 => {
14691         delta_from => 5.027005,
14692         changed => {
14693             'Attribute::Handlers'   => '1.01',
14694             'B'                     => '1.72',
14695             'B::Concise'            => '1.003',
14696             'B::Deparse'            => '1.45',
14697             'B::Op_private'         => '5.027006',
14698             'Carp'                  => '1.44',
14699             'Carp::Heavy'           => '1.44',
14700             'Compress::Raw::Zlib'   => '2.075',
14701             'Config'                => '5.027006',
14702             'Config::Extensions'    => '0.02',
14703             'Cwd'                   => '3.70',
14704             'DynaLoader'            => '1.44',
14705             'ExtUtils::CBuilder'    => '0.280229',
14706             'ExtUtils::CBuilder::Platform::Unix'=> '0.280229',
14707             'ExtUtils::CBuilder::Platform::VMS'=> '0.280229',
14708             'ExtUtils::CBuilder::Platform::Windows'=> '0.280229',
14709             'ExtUtils::CBuilder::Platform::aix'=> '0.280229',
14710             'ExtUtils::CBuilder::Platform::android'=> '0.280229',
14711             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280229',
14712             'ExtUtils::CBuilder::Platform::darwin'=> '0.280229',
14713             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280229',
14714             'ExtUtils::CBuilder::Platform::os2'=> '0.280229',
14715             'ExtUtils::Embed'       => '1.35',
14716             'ExtUtils::Miniperl'    => '1.07',
14717             'ExtUtils::ParseXS'     => '3.36',
14718             'ExtUtils::ParseXS::Constants'=> '3.36',
14719             'ExtUtils::ParseXS::CountLines'=> '3.36',
14720             'ExtUtils::ParseXS::Eval'=> '3.36',
14721             'ExtUtils::ParseXS::Utilities'=> '3.36',
14722             'ExtUtils::Typemaps'    => '3.36',
14723             'ExtUtils::Typemaps::Cmd'=> '3.36',
14724             'ExtUtils::Typemaps::InputMap'=> '3.36',
14725             'ExtUtils::Typemaps::OutputMap'=> '3.36',
14726             'ExtUtils::Typemaps::Type'=> '3.36',
14727             'ExtUtils::XSSymSet'    => '1.4',
14728             'File::Copy'            => '2.33',
14729             'File::Spec'            => '3.69',
14730             'File::Spec::AmigaOS'   => '3.69',
14731             'File::Spec::Cygwin'    => '3.69',
14732             'File::Spec::Epoc'      => '3.69',
14733             'File::Spec::Functions' => '3.69',
14734             'File::Spec::Mac'       => '3.69',
14735             'File::Spec::OS2'       => '3.69',
14736             'File::Spec::Unix'      => '3.69',
14737             'File::Spec::VMS'       => '3.69',
14738             'File::Spec::Win32'     => '3.69',
14739             'File::stat'            => '1.08',
14740             'FileCache'             => '1.10',
14741             'Filter::Simple'        => '0.95',
14742             'Hash::Util::FieldHash' => '1.20',
14743             'I18N::LangTags'        => '0.43',
14744             'I18N::LangTags::Detect'=> '1.07',
14745             'I18N::LangTags::List'  => '0.40',
14746             'I18N::Langinfo'        => '0.15',
14747             'IO::Handle'            => '1.37',
14748             'IO::Select'            => '1.23',
14749             'Locale::Maketext'      => '1.29',
14750             'Module::CoreList'      => '5.20171120',
14751             'Module::CoreList::TieHashDelta'=> '5.20171120',
14752             'Module::CoreList::Utils'=> '5.20171120',
14753             'Net::Cmd'              => '3.11',
14754             'Net::Config'           => '3.11',
14755             'Net::Domain'           => '3.11',
14756             'Net::FTP'              => '3.11',
14757             'Net::FTP::A'           => '3.11',
14758             'Net::FTP::E'           => '3.11',
14759             'Net::FTP::I'           => '3.11',
14760             'Net::FTP::L'           => '3.11',
14761             'Net::FTP::dataconn'    => '3.11',
14762             'Net::NNTP'             => '3.11',
14763             'Net::Netrc'            => '3.11',
14764             'Net::POP3'             => '3.11',
14765             'Net::Ping'             => '2.62',
14766             'Net::SMTP'             => '3.11',
14767             'Net::Time'             => '3.11',
14768             'Net::hostent'          => '1.02',
14769             'Net::netent'           => '1.01',
14770             'Net::protoent'         => '1.01',
14771             'Net::servent'          => '1.02',
14772             'O'                     => '1.03',
14773             'ODBM_File'             => '1.15',
14774             'Opcode'                => '1.41',
14775             'POSIX'                 => '1.80',
14776             'Pod::Html'             => '1.2203',
14777             'SelfLoader'            => '1.25',
14778             'Socket'                => '2.020_04',
14779             'Storable'              => '2.65',
14780             'Test'                  => '1.31',
14781             'Test2'                 => '1.302111',
14782             'Test2::API'            => '1.302111',
14783             'Test2::API::Breakage'  => '1.302111',
14784             'Test2::API::Context'   => '1.302111',
14785             'Test2::API::Instance'  => '1.302111',
14786             'Test2::API::Stack'     => '1.302111',
14787             'Test2::Event'          => '1.302111',
14788             'Test2::Event::Bail'    => '1.302111',
14789             'Test2::Event::Diag'    => '1.302111',
14790             'Test2::Event::Encoding'=> '1.302111',
14791             'Test2::Event::Exception'=> '1.302111',
14792             'Test2::Event::Fail'    => '1.302111',
14793             'Test2::Event::Generic' => '1.302111',
14794             'Test2::Event::Note'    => '1.302111',
14795             'Test2::Event::Ok'      => '1.302111',
14796             'Test2::Event::Pass'    => '1.302111',
14797             'Test2::Event::Plan'    => '1.302111',
14798             'Test2::Event::Skip'    => '1.302111',
14799             'Test2::Event::Subtest' => '1.302111',
14800             'Test2::Event::TAP::Version'=> '1.302111',
14801             'Test2::Event::Waiting' => '1.302111',
14802             'Test2::EventFacet'     => '1.302111',
14803             'Test2::EventFacet::About'=> '1.302111',
14804             'Test2::EventFacet::Amnesty'=> '1.302111',
14805             'Test2::EventFacet::Assert'=> '1.302111',
14806             'Test2::EventFacet::Control'=> '1.302111',
14807             'Test2::EventFacet::Error'=> '1.302111',
14808             'Test2::EventFacet::Info'=> '1.302111',
14809             'Test2::EventFacet::Meta'=> '1.302111',
14810             'Test2::EventFacet::Parent'=> '1.302111',
14811             'Test2::EventFacet::Plan'=> '1.302111',
14812             'Test2::EventFacet::Trace'=> '1.302111',
14813             'Test2::Formatter'      => '1.302111',
14814             'Test2::Formatter::TAP' => '1.302111',
14815             'Test2::Hub'            => '1.302111',
14816             'Test2::Hub::Interceptor'=> '1.302111',
14817             'Test2::Hub::Interceptor::Terminator'=> '1.302111',
14818             'Test2::Hub::Subtest'   => '1.302111',
14819             'Test2::IPC'            => '1.302111',
14820             'Test2::IPC::Driver'    => '1.302111',
14821             'Test2::IPC::Driver::Files'=> '1.302111',
14822             'Test2::Tools::Tiny'    => '1.302111',
14823             'Test2::Util'           => '1.302111',
14824             'Test2::Util::ExternalMeta'=> '1.302111',
14825             'Test2::Util::Facets2Legacy'=> '1.302111',
14826             'Test2::Util::HashBase' => '1.302111',
14827             'Test2::Util::Trace'    => '1.302111',
14828             'Test::Builder'         => '1.302111',
14829             'Test::Builder::Formatter'=> '1.302111',
14830             'Test::Builder::Module' => '1.302111',
14831             'Test::Builder::Tester' => '1.302111',
14832             'Test::Builder::Tester::Color'=> '1.302111',
14833             'Test::Builder::TodoDiag'=> '1.302111',
14834             'Test::More'            => '1.302111',
14835             'Test::Simple'          => '1.302111',
14836             'Test::Tester'          => '1.302111',
14837             'Test::Tester::Capture' => '1.302111',
14838             'Test::Tester::CaptureRunner'=> '1.302111',
14839             'Test::Tester::Delegate'=> '1.302111',
14840             'Test::use::ok'         => '1.302111',
14841             'Tie::Array'            => '1.07',
14842             'Tie::StdHandle'        => '4.5',
14843             'Time::HiRes'           => '1.9747',
14844             'Time::gmtime'          => '1.04',
14845             'Time::localtime'       => '1.03',
14846             'Unicode::Collate'      => '1.23',
14847             'Unicode::Collate::CJK::Big5'=> '1.23',
14848             'Unicode::Collate::CJK::GB2312'=> '1.23',
14849             'Unicode::Collate::CJK::JISX0208'=> '1.23',
14850             'Unicode::Collate::CJK::Korean'=> '1.23',
14851             'Unicode::Collate::CJK::Pinyin'=> '1.23',
14852             'Unicode::Collate::CJK::Stroke'=> '1.23',
14853             'Unicode::Collate::CJK::Zhuyin'=> '1.23',
14854             'Unicode::Collate::Locale'=> '1.23',
14855             'Unicode::Normalize'    => '1.26',
14856             'User::grent'           => '1.02',
14857             'User::pwent'           => '1.01',
14858             'VMS::DCLsym'           => '1.09',
14859             'VMS::Stdio'            => '2.44',
14860             'XS::APItest'           => '0.93',
14861             'XS::Typemap'           => '0.16',
14862             'XSLoader'              => '0.28',
14863             'attributes'            => '0.32',
14864             'base'                  => '2.27',
14865             'blib'                  => '1.07',
14866             'experimental'          => '0.017',
14867             'fields'                => '2.24',
14868             'ok'                    => '1.302111',
14869             're'                    => '0.36',
14870             'sort'                  => '2.04',
14871             'threads'               => '2.19',
14872             'warnings'              => '1.38',
14873         },
14874         removed => {
14875         }
14876     },
14877     5.027007 => {
14878         delta_from => 5.027006,
14879         changed => {
14880             'App::Cpan'             => '1.67',
14881             'B'                     => '1.73',
14882             'B::Debug'              => '1.26',
14883             'B::Deparse'            => '1.46',
14884             'B::Op_private'         => '5.027007',
14885             'CPAN'                  => '2.20',
14886             'CPAN::Distribution'    => '2.19',
14887             'CPAN::FTP'             => '5.5011',
14888             'CPAN::FirstTime'       => '5.5311',
14889             'CPAN::Shell'           => '5.5007',
14890             'Carp'                  => '1.45',
14891             'Carp::Heavy'           => '1.45',
14892             'Compress::Raw::Zlib'   => '2.076',
14893             'Config'                => '5.027007',
14894             'Cwd'                   => '3.71',
14895             'Data::Dumper'          => '2.169',
14896             'Devel::PPPort'         => '3.37',
14897             'Digest::SHA'           => '6.00',
14898             'DynaLoader'            => '1.45',
14899             'ExtUtils::CBuilder'    => '0.280230',
14900             'ExtUtils::CBuilder::Base'=> '0.280230',
14901             'ExtUtils::CBuilder::Platform::Unix'=> '0.280230',
14902             'ExtUtils::CBuilder::Platform::VMS'=> '0.280230',
14903             'ExtUtils::CBuilder::Platform::Windows'=> '0.280230',
14904             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280230',
14905             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280230',
14906             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280230',
14907             'ExtUtils::CBuilder::Platform::aix'=> '0.280230',
14908             'ExtUtils::CBuilder::Platform::android'=> '0.280230',
14909             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280230',
14910             'ExtUtils::CBuilder::Platform::darwin'=> '0.280230',
14911             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280230',
14912             'ExtUtils::CBuilder::Platform::os2'=> '0.280230',
14913             'ExtUtils::Typemaps'    => '3.37',
14914             'File::Fetch'           => '0.56',
14915             'File::Spec'            => '3.71',
14916             'File::Spec::AmigaOS'   => '3.71',
14917             'File::Spec::Cygwin'    => '3.71',
14918             'File::Spec::Epoc'      => '3.71',
14919             'File::Spec::Functions' => '3.71',
14920             'File::Spec::Mac'       => '3.71',
14921             'File::Spec::OS2'       => '3.71',
14922             'File::Spec::Unix'      => '3.71',
14923             'File::Spec::VMS'       => '3.71',
14924             'File::Spec::Win32'     => '3.71',
14925             'Filter::Util::Call'    => '1.58',
14926             'GDBM_File'             => '1.17',
14927             'JSON::PP'              => '2.97000',
14928             'JSON::PP::Boolean'     => '2.97000',
14929             'Locale::Codes'         => '3.55',
14930             'Locale::Codes::Constants'=> '3.55',
14931             'Locale::Codes::Country'=> '3.55',
14932             'Locale::Codes::Country_Codes'=> '3.55',
14933             'Locale::Codes::Country_Retired'=> '3.55',
14934             'Locale::Codes::Currency'=> '3.55',
14935             'Locale::Codes::Currency_Codes'=> '3.55',
14936             'Locale::Codes::Currency_Retired'=> '3.55',
14937             'Locale::Codes::LangExt'=> '3.55',
14938             'Locale::Codes::LangExt_Codes'=> '3.55',
14939             'Locale::Codes::LangExt_Retired'=> '3.55',
14940             'Locale::Codes::LangFam'=> '3.55',
14941             'Locale::Codes::LangFam_Codes'=> '3.55',
14942             'Locale::Codes::LangFam_Retired'=> '3.55',
14943             'Locale::Codes::LangVar'=> '3.55',
14944             'Locale::Codes::LangVar_Codes'=> '3.55',
14945             'Locale::Codes::LangVar_Retired'=> '3.55',
14946             'Locale::Codes::Language'=> '3.55',
14947             'Locale::Codes::Language_Codes'=> '3.55',
14948             'Locale::Codes::Language_Retired'=> '3.55',
14949             'Locale::Codes::Script' => '3.55',
14950             'Locale::Codes::Script_Codes'=> '3.55',
14951             'Locale::Codes::Script_Retired'=> '3.55',
14952             'Locale::Country'       => '3.55',
14953             'Locale::Currency'      => '3.55',
14954             'Locale::Language'      => '3.55',
14955             'Locale::Script'        => '3.55',
14956             'Module::CoreList'      => '5.20171220',
14957             'Module::CoreList::TieHashDelta'=> '5.20171220',
14958             'Module::CoreList::Utils'=> '5.20171220',
14959             'Opcode'                => '1.42',
14960             'POSIX'                 => '1.81',
14961             'Pod::Functions'        => '1.12',
14962             'Pod::Functions::Functions'=> '1.12',
14963             'Pod::Html'             => '1.23',
14964             'Sys::Hostname'         => '1.22',
14965             'Test2'                 => '1.302120',
14966             'Test2::API'            => '1.302120',
14967             'Test2::API::Breakage'  => '1.302120',
14968             'Test2::API::Context'   => '1.302120',
14969             'Test2::API::Instance'  => '1.302120',
14970             'Test2::API::Stack'     => '1.302120',
14971             'Test2::Event'          => '1.302120',
14972             'Test2::Event::Bail'    => '1.302120',
14973             'Test2::Event::Diag'    => '1.302120',
14974             'Test2::Event::Encoding'=> '1.302120',
14975             'Test2::Event::Exception'=> '1.302120',
14976             'Test2::Event::Fail'    => '1.302120',
14977             'Test2::Event::Generic' => '1.302120',
14978             'Test2::Event::Note'    => '1.302120',
14979             'Test2::Event::Ok'      => '1.302120',
14980             'Test2::Event::Pass'    => '1.302120',
14981             'Test2::Event::Plan'    => '1.302120',
14982             'Test2::Event::Skip'    => '1.302120',
14983             'Test2::Event::Subtest' => '1.302120',
14984             'Test2::Event::TAP::Version'=> '1.302120',
14985             'Test2::Event::Waiting' => '1.302120',
14986             'Test2::EventFacet'     => '1.302120',
14987             'Test2::EventFacet::About'=> '1.302120',
14988             'Test2::EventFacet::Amnesty'=> '1.302120',
14989             'Test2::EventFacet::Assert'=> '1.302120',
14990             'Test2::EventFacet::Control'=> '1.302120',
14991             'Test2::EventFacet::Error'=> '1.302120',
14992             'Test2::EventFacet::Info'=> '1.302120',
14993             'Test2::EventFacet::Meta'=> '1.302120',
14994             'Test2::EventFacet::Parent'=> '1.302120',
14995             'Test2::EventFacet::Plan'=> '1.302120',
14996             'Test2::EventFacet::Trace'=> '1.302120',
14997             'Test2::Formatter'      => '1.302120',
14998             'Test2::Formatter::TAP' => '1.302120',
14999             'Test2::Hub'            => '1.302120',
15000             'Test2::Hub::Interceptor'=> '1.302120',
15001             'Test2::Hub::Interceptor::Terminator'=> '1.302120',
15002             'Test2::Hub::Subtest'   => '1.302120',
15003             'Test2::IPC'            => '1.302120',
15004             'Test2::IPC::Driver'    => '1.302120',
15005             'Test2::IPC::Driver::Files'=> '1.302120',
15006             'Test2::Tools::Tiny'    => '1.302120',
15007             'Test2::Util'           => '1.302120',
15008             'Test2::Util::ExternalMeta'=> '1.302120',
15009             'Test2::Util::Facets2Legacy'=> '1.302120',
15010             'Test2::Util::HashBase' => '1.302120',
15011             'Test2::Util::Trace'    => '1.302120',
15012             'Test::Builder'         => '1.302120',
15013             'Test::Builder::Formatter'=> '1.302120',
15014             'Test::Builder::Module' => '1.302120',
15015             'Test::Builder::Tester' => '1.302120',
15016             'Test::Builder::Tester::Color'=> '1.302120',
15017             'Test::Builder::TodoDiag'=> '1.302120',
15018             'Test::More'            => '1.302120',
15019             'Test::Simple'          => '1.302120',
15020             'Test::Tester'          => '1.302120',
15021             'Test::Tester::Capture' => '1.302120',
15022             'Test::Tester::CaptureRunner'=> '1.302120',
15023             'Test::Tester::Delegate'=> '1.302120',
15024             'Test::use::ok'         => '1.302120',
15025             'Time::HiRes'           => '1.9748',
15026             'Time::Piece'           => '1.3203',
15027             'Time::Seconds'         => '1.3203',
15028             'Unicode::Collate'      => '1.25',
15029             'Unicode::Collate::CJK::Big5'=> '1.25',
15030             'Unicode::Collate::CJK::GB2312'=> '1.25',
15031             'Unicode::Collate::CJK::JISX0208'=> '1.25',
15032             'Unicode::Collate::CJK::Korean'=> '1.25',
15033             'Unicode::Collate::CJK::Pinyin'=> '1.25',
15034             'Unicode::Collate::CJK::Stroke'=> '1.25',
15035             'Unicode::Collate::CJK::Zhuyin'=> '1.25',
15036             'Unicode::Collate::Locale'=> '1.25',
15037             'Unicode::UCD'          => '0.69',
15038             'XS::APItest'           => '0.94',
15039             'XSLoader'              => '0.29',
15040             'arybase'               => '0.15',
15041             'autodie::exception'    => '2.29001',
15042             'autodie::hints'        => '2.29001',
15043             'experimental'          => '0.019',
15044             'feature'               => '1.50',
15045             'ok'                    => '1.302120',
15046             'overload'              => '1.29',
15047             'threads'               => '2.21',
15048             'threads::shared'       => '1.58',
15049             'warnings'              => '1.39',
15050         },
15051         removed => {
15052         }
15053     },
15054     5.027008 => {
15055         delta_from => 5.027007,
15056         changed => {
15057             'B'                     => '1.74',
15058             'B::Deparse'            => '1.47',
15059             'B::Op_private'         => '5.027008',
15060             'Config'                => '5.027008',
15061             'Cwd'                   => '3.72',
15062             'Data::Dumper'          => '2.170',
15063             'Devel::PPPort'         => '3.38',
15064             'Digest::SHA'           => '6.01',
15065             'Encode'                => '2.94',
15066             'Encode::Alias'         => '2.24',
15067             'ExtUtils::Miniperl'    => '1.08',
15068             'File::Spec'            => '3.72',
15069             'File::Spec::AmigaOS'   => '3.72',
15070             'File::Spec::Cygwin'    => '3.72',
15071             'File::Spec::Epoc'      => '3.72',
15072             'File::Spec::Functions' => '3.72',
15073             'File::Spec::Mac'       => '3.72',
15074             'File::Spec::OS2'       => '3.72',
15075             'File::Spec::Unix'      => '3.72',
15076             'File::Spec::VMS'       => '3.72',
15077             'File::Spec::Win32'     => '3.72',
15078             'JSON::PP'              => '2.97001',
15079             'JSON::PP::Boolean'     => '2.97001',
15080             'Module::CoreList'      => '5.20180120',
15081             'Module::CoreList::TieHashDelta'=> '5.20180120',
15082             'Module::CoreList::Utils'=> '5.20180120',
15083             'Opcode'                => '1.43',
15084             'Pod::Functions'        => '1.13',
15085             'Pod::Functions::Functions'=> '1.13',
15086             'Pod::Html'             => '1.24',
15087             'Pod::Man'              => '4.10',
15088             'Pod::ParseLink'        => '4.10',
15089             'Pod::Text'             => '4.10',
15090             'Pod::Text::Color'      => '4.10',
15091             'Pod::Text::Overstrike' => '4.10',
15092             'Pod::Text::Termcap'    => '4.10',
15093             'Socket'                => '2.027',
15094             'Time::HiRes'           => '1.9752',
15095             'Unicode::UCD'          => '0.70',
15096             'XS::APItest'           => '0.95',
15097             'XSLoader'              => '0.30',
15098             'autodie::exception'    => '2.29002',
15099             'feature'               => '1.51',
15100             'overload'              => '1.30',
15101             'utf8'                  => '1.21',
15102             'warnings'              => '1.40',
15103         },
15104         removed => {
15105         }
15106     },
15107     5.027009 => {
15108         delta_from => 5.027008,
15109         changed => {
15110             'B::Op_private'         => '5.027009',
15111             'Carp'                  => '1.46',
15112             'Carp::Heavy'           => '1.46',
15113             'Config'                => '5.027009',
15114             'Cwd'                   => '3.74',
15115             'Devel::PPPort'         => '3.39',
15116             'Encode'                => '2.96',
15117             'Encode::Unicode'       => '2.17',
15118             'Errno'                 => '1.29',
15119             'ExtUtils::Command'     => '7.32',
15120             'ExtUtils::Command::MM' => '7.32',
15121             'ExtUtils::Liblist'     => '7.32',
15122             'ExtUtils::Liblist::Kid'=> '7.32',
15123             'ExtUtils::MM'          => '7.32',
15124             'ExtUtils::MM_AIX'      => '7.32',
15125             'ExtUtils::MM_Any'      => '7.32',
15126             'ExtUtils::MM_BeOS'     => '7.32',
15127             'ExtUtils::MM_Cygwin'   => '7.32',
15128             'ExtUtils::MM_DOS'      => '7.32',
15129             'ExtUtils::MM_Darwin'   => '7.32',
15130             'ExtUtils::MM_MacOS'    => '7.32',
15131             'ExtUtils::MM_NW5'      => '7.32',
15132             'ExtUtils::MM_OS2'      => '7.32',
15133             'ExtUtils::MM_QNX'      => '7.32',
15134             'ExtUtils::MM_UWIN'     => '7.32',
15135             'ExtUtils::MM_Unix'     => '7.32',
15136             'ExtUtils::MM_VMS'      => '7.32',
15137             'ExtUtils::MM_VOS'      => '7.32',
15138             'ExtUtils::MM_Win32'    => '7.32',
15139             'ExtUtils::MM_Win95'    => '7.32',
15140             'ExtUtils::MY'          => '7.32',
15141             'ExtUtils::MakeMaker'   => '7.32',
15142             'ExtUtils::MakeMaker::Config'=> '7.32',
15143             'ExtUtils::MakeMaker::Locale'=> '7.32',
15144             'ExtUtils::MakeMaker::version'=> '7.32',
15145             'ExtUtils::MakeMaker::version::regex'=> '7.32',
15146             'ExtUtils::Mkbootstrap' => '7.32',
15147             'ExtUtils::Mksymlists'  => '7.32',
15148             'ExtUtils::ParseXS'     => '3.38',
15149             'ExtUtils::ParseXS::Constants'=> '3.38',
15150             'ExtUtils::ParseXS::CountLines'=> '3.38',
15151             'ExtUtils::ParseXS::Eval'=> '3.38',
15152             'ExtUtils::ParseXS::Utilities'=> '3.38',
15153             'ExtUtils::Typemaps'    => '3.38',
15154             'ExtUtils::Typemaps::Cmd'=> '3.38',
15155             'ExtUtils::Typemaps::InputMap'=> '3.38',
15156             'ExtUtils::Typemaps::OutputMap'=> '3.38',
15157             'ExtUtils::Typemaps::Type'=> '3.38',
15158             'ExtUtils::testlib'     => '7.32',
15159             'File::Spec'            => '3.74',
15160             'File::Spec::AmigaOS'   => '3.74',
15161             'File::Spec::Cygwin'    => '3.74',
15162             'File::Spec::Epoc'      => '3.74',
15163             'File::Spec::Functions' => '3.74',
15164             'File::Spec::Mac'       => '3.74',
15165             'File::Spec::OS2'       => '3.74',
15166             'File::Spec::Unix'      => '3.74',
15167             'File::Spec::VMS'       => '3.74',
15168             'File::Spec::Win32'     => '3.74',
15169             'IPC::Cmd'              => '1.00',
15170             'Math::BigFloat::Trace' => '0.49',
15171             'Math::BigInt::Trace'   => '0.49',
15172             'Module::CoreList'      => '5.20180220',
15173             'Module::CoreList::Utils'=> '5.20180220',
15174             'POSIX'                 => '1.82',
15175             'PerlIO::encoding'      => '0.26',
15176             'Storable'              => '3.06',
15177             'Storable::Limit'       => undef,
15178             'Test2'                 => '1.302122',
15179             'Test2::API'            => '1.302122',
15180             'Test2::API::Breakage'  => '1.302122',
15181             'Test2::API::Context'   => '1.302122',
15182             'Test2::API::Instance'  => '1.302122',
15183             'Test2::API::Stack'     => '1.302122',
15184             'Test2::Event'          => '1.302122',
15185             'Test2::Event::Bail'    => '1.302122',
15186             'Test2::Event::Diag'    => '1.302122',
15187             'Test2::Event::Encoding'=> '1.302122',
15188             'Test2::Event::Exception'=> '1.302122',
15189             'Test2::Event::Fail'    => '1.302122',
15190             'Test2::Event::Generic' => '1.302122',
15191             'Test2::Event::Note'    => '1.302122',
15192             'Test2::Event::Ok'      => '1.302122',
15193             'Test2::Event::Pass'    => '1.302122',
15194             'Test2::Event::Plan'    => '1.302122',
15195             'Test2::Event::Skip'    => '1.302122',
15196             'Test2::Event::Subtest' => '1.302122',
15197             'Test2::Event::TAP::Version'=> '1.302122',
15198             'Test2::Event::Waiting' => '1.302122',
15199             'Test2::EventFacet'     => '1.302122',
15200             'Test2::EventFacet::About'=> '1.302122',
15201             'Test2::EventFacet::Amnesty'=> '1.302122',
15202             'Test2::EventFacet::Assert'=> '1.302122',
15203             'Test2::EventFacet::Control'=> '1.302122',
15204             'Test2::EventFacet::Error'=> '1.302122',
15205             'Test2::EventFacet::Info'=> '1.302122',
15206             'Test2::EventFacet::Meta'=> '1.302122',
15207             'Test2::EventFacet::Parent'=> '1.302122',
15208             'Test2::EventFacet::Plan'=> '1.302122',
15209             'Test2::EventFacet::Render'=> '1.302122',
15210             'Test2::EventFacet::Trace'=> '1.302122',
15211             'Test2::Formatter'      => '1.302122',
15212             'Test2::Formatter::TAP' => '1.302122',
15213             'Test2::Hub'            => '1.302122',
15214             'Test2::Hub::Interceptor'=> '1.302122',
15215             'Test2::Hub::Interceptor::Terminator'=> '1.302122',
15216             'Test2::Hub::Subtest'   => '1.302122',
15217             'Test2::IPC'            => '1.302122',
15218             'Test2::IPC::Driver'    => '1.302122',
15219             'Test2::IPC::Driver::Files'=> '1.302122',
15220             'Test2::Tools::Tiny'    => '1.302122',
15221             'Test2::Util'           => '1.302122',
15222             'Test2::Util::ExternalMeta'=> '1.302122',
15223             'Test2::Util::Facets2Legacy'=> '1.302122',
15224             'Test2::Util::HashBase' => '1.302122',
15225             'Test2::Util::Trace'    => '1.302122',
15226             'Test::Builder'         => '1.302122',
15227             'Test::Builder::Formatter'=> '1.302122',
15228             'Test::Builder::Module' => '1.302122',
15229             'Test::Builder::Tester' => '1.302122',
15230             'Test::Builder::Tester::Color'=> '1.302122',
15231             'Test::Builder::TodoDiag'=> '1.302122',
15232             'Test::More'            => '1.302122',
15233             'Test::Simple'          => '1.302122',
15234             'Test::Tester'          => '1.302122',
15235             'Test::Tester::Capture' => '1.302122',
15236             'Test::Tester::CaptureRunner'=> '1.302122',
15237             'Test::Tester::Delegate'=> '1.302122',
15238             'Test::use::ok'         => '1.302122',
15239             'Time::HiRes'           => '1.9753',
15240             'XS::APItest'           => '0.96',
15241             'bigint'                => '0.49',
15242             'bignum'                => '0.49',
15243             'bigrat'                => '0.49',
15244             'encoding'              => '2.22',
15245             'if'                    => '0.0608',
15246             'mro'                   => '1.22',
15247             'ok'                    => '1.302122',
15248             'threads'               => '2.22',
15249             'warnings'              => '1.41',
15250         },
15251         removed => {
15252             'Module::CoreList::TieHashDelta'=> 1,
15253         }
15254     },
15255     5.027010 => {
15256         delta_from => 5.027009,
15257         changed => {
15258             'App::Prove'            => '3.42',
15259             'App::Prove::State'     => '3.42',
15260             'App::Prove::State::Result'=> '3.42',
15261             'App::Prove::State::Result::Test'=> '3.42',
15262             'B::Deparse'            => '1.48',
15263             'B::Op_private'         => '5.027010',
15264             'Carp'                  => '1.49',
15265             'Carp::Heavy'           => '1.49',
15266             'Config'                => '5.02701',
15267             'Encode'                => '2.97',
15268             'ExtUtils::Command'     => '7.34',
15269             'ExtUtils::Command::MM' => '7.34',
15270             'ExtUtils::Liblist'     => '7.34',
15271             'ExtUtils::Liblist::Kid'=> '7.34',
15272             'ExtUtils::MM'          => '7.34',
15273             'ExtUtils::MM_AIX'      => '7.34',
15274             'ExtUtils::MM_Any'      => '7.34',
15275             'ExtUtils::MM_BeOS'     => '7.34',
15276             'ExtUtils::MM_Cygwin'   => '7.34',
15277             'ExtUtils::MM_DOS'      => '7.34',
15278             'ExtUtils::MM_Darwin'   => '7.34',
15279             'ExtUtils::MM_MacOS'    => '7.34',
15280             'ExtUtils::MM_NW5'      => '7.34',
15281             'ExtUtils::MM_OS2'      => '7.34',
15282             'ExtUtils::MM_QNX'      => '7.34',
15283             'ExtUtils::MM_UWIN'     => '7.34',
15284             'ExtUtils::MM_Unix'     => '7.34',
15285             'ExtUtils::MM_VMS'      => '7.34',
15286             'ExtUtils::MM_VOS'      => '7.34',
15287             'ExtUtils::MM_Win32'    => '7.34',
15288             'ExtUtils::MM_Win95'    => '7.34',
15289             'ExtUtils::MY'          => '7.34',
15290             'ExtUtils::MakeMaker'   => '7.34',
15291             'ExtUtils::MakeMaker::Config'=> '7.34',
15292             'ExtUtils::MakeMaker::Locale'=> '7.34',
15293             'ExtUtils::MakeMaker::version'=> '7.34',
15294             'ExtUtils::MakeMaker::version::regex'=> '7.34',
15295             'ExtUtils::Mkbootstrap' => '7.34',
15296             'ExtUtils::Mksymlists'  => '7.34',
15297             'ExtUtils::ParseXS'     => '3.39',
15298             'ExtUtils::ParseXS::Constants'=> '3.39',
15299             'ExtUtils::ParseXS::CountLines'=> '3.39',
15300             'ExtUtils::ParseXS::Eval'=> '3.39',
15301             'ExtUtils::ParseXS::Utilities'=> '3.39',
15302             'ExtUtils::testlib'     => '7.34',
15303             'File::Glob'            => '1.31',
15304             'I18N::Langinfo'        => '0.16',
15305             'List::Util'            => '1.50',
15306             'List::Util::XS'        => '1.50',
15307             'Locale::Codes'         => '3.56',
15308             'Locale::Codes::Constants'=> '3.56',
15309             'Locale::Codes::Country'=> '3.56',
15310             'Locale::Codes::Country_Codes'=> '3.56',
15311             'Locale::Codes::Country_Retired'=> '3.56',
15312             'Locale::Codes::Currency'=> '3.56',
15313             'Locale::Codes::Currency_Codes'=> '3.56',
15314             'Locale::Codes::Currency_Retired'=> '3.56',
15315             'Locale::Codes::LangExt'=> '3.56',
15316             'Locale::Codes::LangExt_Codes'=> '3.56',
15317             'Locale::Codes::LangExt_Retired'=> '3.56',
15318             'Locale::Codes::LangFam'=> '3.56',
15319             'Locale::Codes::LangFam_Codes'=> '3.56',
15320             'Locale::Codes::LangFam_Retired'=> '3.56',
15321             'Locale::Codes::LangVar'=> '3.56',
15322             'Locale::Codes::LangVar_Codes'=> '3.56',
15323             'Locale::Codes::LangVar_Retired'=> '3.56',
15324             'Locale::Codes::Language'=> '3.56',
15325             'Locale::Codes::Language_Codes'=> '3.56',
15326             'Locale::Codes::Language_Retired'=> '3.56',
15327             'Locale::Codes::Script' => '3.56',
15328             'Locale::Codes::Script_Codes'=> '3.56',
15329             'Locale::Codes::Script_Retired'=> '3.56',
15330             'Locale::Country'       => '3.56',
15331             'Locale::Currency'      => '3.56',
15332             'Locale::Language'      => '3.56',
15333             'Locale::Script'        => '3.56',
15334             'Module::CoreList'      => '5.20180221',
15335             'Module::CoreList::Utils'=> '5.20180221',
15336             'POSIX'                 => '1.83',
15337             'Scalar::Util'          => '1.50',
15338             'Sub::Util'             => '1.50',
15339             'TAP::Base'             => '3.42',
15340             'TAP::Formatter::Base'  => '3.42',
15341             'TAP::Formatter::Color' => '3.42',
15342             'TAP::Formatter::Console'=> '3.42',
15343             'TAP::Formatter::Console::ParallelSession'=> '3.42',
15344             'TAP::Formatter::Console::Session'=> '3.42',
15345             'TAP::Formatter::File'  => '3.42',
15346             'TAP::Formatter::File::Session'=> '3.42',
15347             'TAP::Formatter::Session'=> '3.42',
15348             'TAP::Harness'          => '3.42',
15349             'TAP::Harness::Env'     => '3.42',
15350             'TAP::Object'           => '3.42',
15351             'TAP::Parser'           => '3.42',
15352             'TAP::Parser::Aggregator'=> '3.42',
15353             'TAP::Parser::Grammar'  => '3.42',
15354             'TAP::Parser::Iterator' => '3.42',
15355             'TAP::Parser::Iterator::Array'=> '3.42',
15356             'TAP::Parser::Iterator::Process'=> '3.42',
15357             'TAP::Parser::Iterator::Stream'=> '3.42',
15358             'TAP::Parser::IteratorFactory'=> '3.42',
15359             'TAP::Parser::Multiplexer'=> '3.42',
15360             'TAP::Parser::Result'   => '3.42',
15361             'TAP::Parser::Result::Bailout'=> '3.42',
15362             'TAP::Parser::Result::Comment'=> '3.42',
15363             'TAP::Parser::Result::Plan'=> '3.42',
15364             'TAP::Parser::Result::Pragma'=> '3.42',
15365             'TAP::Parser::Result::Test'=> '3.42',
15366             'TAP::Parser::Result::Unknown'=> '3.42',
15367             'TAP::Parser::Result::Version'=> '3.42',
15368             'TAP::Parser::Result::YAML'=> '3.42',
15369             'TAP::Parser::ResultFactory'=> '3.42',
15370             'TAP::Parser::Scheduler'=> '3.42',
15371             'TAP::Parser::Scheduler::Job'=> '3.42',
15372             'TAP::Parser::Scheduler::Spinner'=> '3.42',
15373             'TAP::Parser::Source'   => '3.42',
15374             'TAP::Parser::SourceHandler'=> '3.42',
15375             'TAP::Parser::SourceHandler::Executable'=> '3.42',
15376             'TAP::Parser::SourceHandler::File'=> '3.42',
15377             'TAP::Parser::SourceHandler::Handle'=> '3.42',
15378             'TAP::Parser::SourceHandler::Perl'=> '3.42',
15379             'TAP::Parser::SourceHandler::RawTAP'=> '3.42',
15380             'TAP::Parser::YAMLish::Reader'=> '3.42',
15381             'TAP::Parser::YAMLish::Writer'=> '3.42',
15382             'Test2'                 => '1.302133',
15383             'Test2::API'            => '1.302133',
15384             'Test2::API::Breakage'  => '1.302133',
15385             'Test2::API::Context'   => '1.302133',
15386             'Test2::API::Instance'  => '1.302133',
15387             'Test2::API::Stack'     => '1.302133',
15388             'Test2::Event'          => '1.302133',
15389             'Test2::Event::Bail'    => '1.302133',
15390             'Test2::Event::Diag'    => '1.302133',
15391             'Test2::Event::Encoding'=> '1.302133',
15392             'Test2::Event::Exception'=> '1.302133',
15393             'Test2::Event::Fail'    => '1.302133',
15394             'Test2::Event::Generic' => '1.302133',
15395             'Test2::Event::Note'    => '1.302133',
15396             'Test2::Event::Ok'      => '1.302133',
15397             'Test2::Event::Pass'    => '1.302133',
15398             'Test2::Event::Plan'    => '1.302133',
15399             'Test2::Event::Skip'    => '1.302133',
15400             'Test2::Event::Subtest' => '1.302133',
15401             'Test2::Event::TAP::Version'=> '1.302133',
15402             'Test2::Event::V2'      => '1.302133',
15403             'Test2::Event::Waiting' => '1.302133',
15404             'Test2::EventFacet'     => '1.302133',
15405             'Test2::EventFacet::About'=> '1.302133',
15406             'Test2::EventFacet::Amnesty'=> '1.302133',
15407             'Test2::EventFacet::Assert'=> '1.302133',
15408             'Test2::EventFacet::Control'=> '1.302133',
15409             'Test2::EventFacet::Error'=> '1.302133',
15410             'Test2::EventFacet::Hub'=> '1.302133',
15411             'Test2::EventFacet::Info'=> '1.302133',
15412             'Test2::EventFacet::Meta'=> '1.302133',
15413             'Test2::EventFacet::Parent'=> '1.302133',
15414             'Test2::EventFacet::Plan'=> '1.302133',
15415             'Test2::EventFacet::Render'=> '1.302133',
15416             'Test2::EventFacet::Trace'=> '1.302133',
15417             'Test2::Formatter'      => '1.302133',
15418             'Test2::Formatter::TAP' => '1.302133',
15419             'Test2::Hub'            => '1.302133',
15420             'Test2::Hub::Interceptor'=> '1.302133',
15421             'Test2::Hub::Interceptor::Terminator'=> '1.302133',
15422             'Test2::Hub::Subtest'   => '1.302133',
15423             'Test2::IPC'            => '1.302133',
15424             'Test2::IPC::Driver'    => '1.302133',
15425             'Test2::IPC::Driver::Files'=> '1.302133',
15426             'Test2::Tools::Tiny'    => '1.302133',
15427             'Test2::Util'           => '1.302133',
15428             'Test2::Util::ExternalMeta'=> '1.302133',
15429             'Test2::Util::Facets2Legacy'=> '1.302133',
15430             'Test2::Util::HashBase' => '1.302133',
15431             'Test2::Util::Trace'    => '1.302133',
15432             'Test::Builder'         => '1.302133',
15433             'Test::Builder::Formatter'=> '1.302133',
15434             'Test::Builder::Module' => '1.302133',
15435             'Test::Builder::Tester' => '1.302133',
15436             'Test::Builder::Tester::Color'=> '1.302133',
15437             'Test::Builder::TodoDiag'=> '1.302133',
15438             'Test::Harness'         => '3.42',
15439             'Test::More'            => '1.302133',
15440             'Test::Simple'          => '1.302133',
15441             'Test::Tester'          => '1.302133',
15442             'Test::Tester::Capture' => '1.302133',
15443             'Test::Tester::CaptureRunner'=> '1.302133',
15444             'Test::Tester::Delegate'=> '1.302133',
15445             'Test::use::ok'         => '1.302133',
15446             'Time::HiRes'           => '1.9757',
15447             'Time::Piece'           => '1.3204',
15448             'Time::Seconds'         => '1.3204',
15449             'attributes'            => '0.33',
15450             'ok'                    => '1.302133',
15451             'warnings'              => '1.42',
15452         },
15453         removed => {
15454         }
15455     },
15456     5.024004 => {
15457         delta_from => 5.024003,
15458         changed => {
15459             'B::Op_private'         => '5.024004',
15460             'Config'                => '5.024004',
15461             'Module::CoreList'      => '5.20180414_24',
15462             'Module::CoreList::TieHashDelta'=> '5.20180414_24',
15463             'Module::CoreList::Utils'=> '5.20180414_24',
15464         },
15465         removed => {
15466         }
15467     },
15468     5.026002 => {
15469         delta_from => 5.026001,
15470         changed => {
15471             'B::Op_private'         => '5.026002',
15472             'Config'                => '5.026002',
15473             'Module::CoreList'      => '5.20180414_26',
15474             'Module::CoreList::TieHashDelta'=> '5.20180414_26',
15475             'Module::CoreList::Utils'=> '5.20180414_26',
15476             'PerlIO::via'           => '0.17',
15477             'Term::ReadLine'        => '1.17',
15478             'Unicode::UCD'          => '0.69',
15479         },
15480         removed => {
15481         }
15482     },
15483     5.027011 => {
15484         delta_from => 5.027010,
15485         changed => {
15486             'B::Op_private'         => '5.027011',
15487             'Carp'                  => '1.50',
15488             'Carp::Heavy'           => '1.50',
15489             'Config'                => '5.027011',
15490             'Devel::PPPort'         => '3.40',
15491             'Exporter'              => '5.73',
15492             'Exporter::Heavy'       => '5.73',
15493             'ExtUtils::Constant'    => '0.25',
15494             'I18N::Langinfo'        => '0.17',
15495             'IO'                    => '1.39',
15496             'IO::Dir'               => '1.39',
15497             'IO::File'              => '1.39',
15498             'IO::Handle'            => '1.39',
15499             'IO::Pipe'              => '1.39',
15500             'IO::Poll'              => '1.39',
15501             'IO::Seekable'          => '1.39',
15502             'IO::Select'            => '1.39',
15503             'IO::Socket'            => '1.39',
15504             'IO::Socket::INET'      => '1.39',
15505             'IO::Socket::UNIX'      => '1.39',
15506             'Module::CoreList'      => '5.20180420',
15507             'Module::CoreList::Utils'=> '5.20180420',
15508             'POSIX'                 => '1.84',
15509             'Time::HiRes'           => '1.9759',
15510             'XS::APItest'           => '0.97',
15511             'bytes'                 => '1.06',
15512             'subs'                  => '1.03',
15513             'vars'                  => '1.04',
15514             'version'               => '0.9923',
15515             'version::regex'        => '0.9923',
15516         },
15517         removed => {
15518         }
15519     },
15520     5.028000 => {
15521         delta_from => 5.027011,
15522         changed => {
15523             'Archive::Tar'          => '2.30',
15524             'Archive::Tar::Constant'=> '2.30',
15525             'Archive::Tar::File'    => '2.30',
15526             'B::Op_private'         => '5.028000',
15527             'Config'                => '5.028',
15528             'Module::CoreList'      => '5.20180622',
15529             'Module::CoreList::Utils'=> '5.20180622',
15530             'Storable'              => '3.08',
15531             'XS::APItest'           => '0.98',
15532             'feature'               => '1.52',
15533         },
15534         removed => {
15535         }
15536     },
15537     5.029000 => {
15538         delta_from => 5.028,
15539         changed => {
15540             'B::Op_private'         => '5.029000',
15541             'Config'                => '5.029',
15542             'Module::CoreList'      => '5.20180626',
15543             'Module::CoreList::Utils'=> '5.20180626',
15544             'Unicode::UCD'          => '0.71',
15545             'XS::APItest'           => '0.99',
15546             'feature'               => '1.53',
15547         },
15548         removed => {
15549         }
15550     },
15551     5.029001 => {
15552         delta_from => 5.029000,
15553         changed => {
15554             'B::Op_private'         => '5.029001',
15555             'Compress::Raw::Bzip2'  => '2.081',
15556             'Compress::Raw::Zlib'   => '2.081',
15557             'Compress::Zlib'        => '2.081',
15558             'Config'                => '5.029001',
15559             'Config::Perl::V'       => '0.30',
15560             'DB_File'               => '1.842',
15561             'Devel::PPPort'         => '3.42',
15562             'Digest::SHA'           => '6.02',
15563             'ExtUtils::Manifest'    => '1.71',
15564             'File::GlobMapper'      => '1.001',
15565             'File::Temp'            => '0.2308',
15566             'IO::Compress::Adapter::Bzip2'=> '2.081',
15567             'IO::Compress::Adapter::Deflate'=> '2.081',
15568             'IO::Compress::Adapter::Identity'=> '2.081',
15569             'IO::Compress::Base'    => '2.081',
15570             'IO::Compress::Base::Common'=> '2.081',
15571             'IO::Compress::Bzip2'   => '2.081',
15572             'IO::Compress::Deflate' => '2.081',
15573             'IO::Compress::Gzip'    => '2.081',
15574             'IO::Compress::Gzip::Constants'=> '2.081',
15575             'IO::Compress::RawDeflate'=> '2.081',
15576             'IO::Compress::Zip'     => '2.081',
15577             'IO::Compress::Zip::Constants'=> '2.081',
15578             'IO::Compress::Zlib::Constants'=> '2.081',
15579             'IO::Compress::Zlib::Extra'=> '2.081',
15580             'IO::Uncompress::Adapter::Bunzip2'=> '2.081',
15581             'IO::Uncompress::Adapter::Identity'=> '2.081',
15582             'IO::Uncompress::Adapter::Inflate'=> '2.081',
15583             'IO::Uncompress::AnyInflate'=> '2.081',
15584             'IO::Uncompress::AnyUncompress'=> '2.081',
15585             'IO::Uncompress::Base'  => '2.081',
15586             'IO::Uncompress::Bunzip2'=> '2.081',
15587             'IO::Uncompress::Gunzip'=> '2.081',
15588             'IO::Uncompress::Inflate'=> '2.081',
15589             'IO::Uncompress::RawInflate'=> '2.081',
15590             'IO::Uncompress::Unzip' => '2.081',
15591             'IPC::Cmd'              => '1.02',
15592             'Locale::Codes'         => '3.57',
15593             'Locale::Codes::Constants'=> '3.57',
15594             'Locale::Codes::Country'=> '3.57',
15595             'Locale::Codes::Country_Codes'=> '3.57',
15596             'Locale::Codes::Country_Retired'=> '3.57',
15597             'Locale::Codes::Currency'=> '3.57',
15598             'Locale::Codes::Currency_Codes'=> '3.57',
15599             'Locale::Codes::Currency_Retired'=> '3.57',
15600             'Locale::Codes::LangExt'=> '3.57',
15601             'Locale::Codes::LangExt_Codes'=> '3.57',
15602             'Locale::Codes::LangExt_Retired'=> '3.57',
15603             'Locale::Codes::LangFam'=> '3.57',
15604             'Locale::Codes::LangFam_Codes'=> '3.57',
15605             'Locale::Codes::LangFam_Retired'=> '3.57',
15606             'Locale::Codes::LangVar'=> '3.57',
15607             'Locale::Codes::LangVar_Codes'=> '3.57',
15608             'Locale::Codes::LangVar_Retired'=> '3.57',
15609             'Locale::Codes::Language'=> '3.57',
15610             'Locale::Codes::Language_Codes'=> '3.57',
15611             'Locale::Codes::Language_Retired'=> '3.57',
15612             'Locale::Codes::Script' => '3.57',
15613             'Locale::Codes::Script_Codes'=> '3.57',
15614             'Locale::Codes::Script_Retired'=> '3.57',
15615             'Locale::Country'       => '3.57',
15616             'Locale::Currency'      => '3.57',
15617             'Locale::Language'      => '3.57',
15618             'Locale::Script'        => '3.57',
15619             'Math::BigFloat'        => '1.999813',
15620             'Math::BigFloat::Trace' => '0.50',
15621             'Math::BigInt'          => '1.999813',
15622             'Math::BigInt::Calc'    => '1.999813',
15623             'Math::BigInt::CalcEmu' => '1.999813',
15624             'Math::BigInt::FastCalc'=> '0.5007',
15625             'Math::BigInt::Lib'     => '1.999813',
15626             'Math::BigInt::Trace'   => '0.50',
15627             'Math::BigRat'          => '0.2614',
15628             'Module::CoreList'      => '5.20180720',
15629             'Module::CoreList::Utils'=> '5.20180720',
15630             'Pod::Man'              => '4.11',
15631             'Pod::ParseLink'        => '4.11',
15632             'Pod::Text'             => '4.11',
15633             'Pod::Text::Color'      => '4.11',
15634             'Pod::Text::Overstrike' => '4.11',
15635             'Pod::Text::Termcap'    => '4.11',
15636             'Storable'              => '3.11',
15637             'Test2'                 => '1.302138',
15638             'Test2::API'            => '1.302138',
15639             'Test2::API::Breakage'  => '1.302138',
15640             'Test2::API::Context'   => '1.302138',
15641             'Test2::API::Instance'  => '1.302138',
15642             'Test2::API::Stack'     => '1.302138',
15643             'Test2::Event'          => '1.302138',
15644             'Test2::Event::Bail'    => '1.302138',
15645             'Test2::Event::Diag'    => '1.302138',
15646             'Test2::Event::Encoding'=> '1.302138',
15647             'Test2::Event::Exception'=> '1.302138',
15648             'Test2::Event::Fail'    => '1.302138',
15649             'Test2::Event::Generic' => '1.302138',
15650             'Test2::Event::Note'    => '1.302138',
15651             'Test2::Event::Ok'      => '1.302138',
15652             'Test2::Event::Pass'    => '1.302138',
15653             'Test2::Event::Plan'    => '1.302138',
15654             'Test2::Event::Skip'    => '1.302138',
15655             'Test2::Event::Subtest' => '1.302138',
15656             'Test2::Event::TAP::Version'=> '1.302138',
15657             'Test2::Event::V2'      => '1.302138',
15658             'Test2::Event::Waiting' => '1.302138',
15659             'Test2::EventFacet'     => '1.302138',
15660             'Test2::EventFacet::About'=> '1.302138',
15661             'Test2::EventFacet::Amnesty'=> '1.302138',
15662             'Test2::EventFacet::Assert'=> '1.302138',
15663             'Test2::EventFacet::Control'=> '1.302138',
15664             'Test2::EventFacet::Error'=> '1.302138',
15665             'Test2::EventFacet::Hub'=> '1.302138',
15666             'Test2::EventFacet::Info'=> '1.302138',
15667             'Test2::EventFacet::Meta'=> '1.302138',
15668             'Test2::EventFacet::Parent'=> '1.302138',
15669             'Test2::EventFacet::Plan'=> '1.302138',
15670             'Test2::EventFacet::Render'=> '1.302138',
15671             'Test2::EventFacet::Trace'=> '1.302138',
15672             'Test2::Formatter'      => '1.302138',
15673             'Test2::Formatter::TAP' => '1.302138',
15674             'Test2::Hub'            => '1.302138',
15675             'Test2::Hub::Interceptor'=> '1.302138',
15676             'Test2::Hub::Interceptor::Terminator'=> '1.302138',
15677             'Test2::Hub::Subtest'   => '1.302138',
15678             'Test2::IPC'            => '1.302138',
15679             'Test2::IPC::Driver'    => '1.302138',
15680             'Test2::IPC::Driver::Files'=> '1.302138',
15681             'Test2::Tools::Tiny'    => '1.302138',
15682             'Test2::Util'           => '1.302138',
15683             'Test2::Util::ExternalMeta'=> '1.302138',
15684             'Test2::Util::Facets2Legacy'=> '1.302138',
15685             'Test2::Util::HashBase' => '1.302138',
15686             'Test2::Util::Trace'    => '1.302138',
15687             'Test::Builder'         => '1.302138',
15688             'Test::Builder::Formatter'=> '1.302138',
15689             'Test::Builder::Module' => '1.302138',
15690             'Test::Builder::Tester' => '1.302138',
15691             'Test::Builder::Tester::Color'=> '1.302138',
15692             'Test::Builder::TodoDiag'=> '1.302138',
15693             'Test::More'            => '1.302138',
15694             'Test::Simple'          => '1.302138',
15695             'Test::Tester'          => '1.302138',
15696             'Test::Tester::Capture' => '1.302138',
15697             'Test::Tester::CaptureRunner'=> '1.302138',
15698             'Test::Tester::Delegate'=> '1.302138',
15699             'Test::use::ok'         => '1.302138',
15700             'Thread::Queue'         => '3.13',
15701             'Time::Local'           => '1.28',
15702             'bigint'                => '0.50',
15703             'bignum'                => '0.50',
15704             'bigrat'                => '0.50',
15705             'experimental'          => '0.020',
15706             'ok'                    => '1.302138',
15707             'parent'                => '0.237',
15708             'perlfaq'               => '5.20180605',
15709             'version'               => '0.9924',
15710             'version::regex'        => '0.9924',
15711         },
15712         removed => {
15713         }
15714     },
15715     5.029002 => {
15716         delta_from => 5.029001,
15717         changed => {
15718             'B::Op_private'         => '5.029002',
15719             'Config'                => '5.029002',
15720             'Config::Extensions'    => '0.03',
15721             'Cwd'                   => '3.75',
15722             'Data::Dumper'          => '2.171',
15723             'Filter::Util::Call'    => '1.59',
15724             'HTTP::Tiny'            => '0.076',
15725             'Module::CoreList'      => '5.20180820',
15726             'Module::CoreList::Utils'=> '5.20180820',
15727             'PerlIO::scalar'        => '0.30',
15728             'Storable'              => '3.12',
15729             'Test2'                 => '1.302140',
15730             'Test2::API'            => '1.302140',
15731             'Test2::API::Breakage'  => '1.302140',
15732             'Test2::API::Context'   => '1.302140',
15733             'Test2::API::Instance'  => '1.302140',
15734             'Test2::API::Stack'     => '1.302140',
15735             'Test2::Event'          => '1.302140',
15736             'Test2::Event::Bail'    => '1.302140',
15737             'Test2::Event::Diag'    => '1.302140',
15738             'Test2::Event::Encoding'=> '1.302140',
15739             'Test2::Event::Exception'=> '1.302140',
15740             'Test2::Event::Fail'    => '1.302140',
15741             'Test2::Event::Generic' => '1.302140',
15742             'Test2::Event::Note'    => '1.302140',
15743             'Test2::Event::Ok'      => '1.302140',
15744             'Test2::Event::Pass'    => '1.302140',
15745             'Test2::Event::Plan'    => '1.302140',
15746             'Test2::Event::Skip'    => '1.302140',
15747             'Test2::Event::Subtest' => '1.302140',
15748             'Test2::Event::TAP::Version'=> '1.302140',
15749             'Test2::Event::V2'      => '1.302140',
15750             'Test2::Event::Waiting' => '1.302140',
15751             'Test2::EventFacet'     => '1.302140',
15752             'Test2::EventFacet::About'=> '1.302140',
15753             'Test2::EventFacet::Amnesty'=> '1.302140',
15754             'Test2::EventFacet::Assert'=> '1.302140',
15755             'Test2::EventFacet::Control'=> '1.302140',
15756             'Test2::EventFacet::Error'=> '1.302140',
15757             'Test2::EventFacet::Hub'=> '1.302140',
15758             'Test2::EventFacet::Info'=> '1.302140',
15759             'Test2::EventFacet::Meta'=> '1.302140',
15760             'Test2::EventFacet::Parent'=> '1.302140',
15761             'Test2::EventFacet::Plan'=> '1.302140',
15762             'Test2::EventFacet::Render'=> '1.302140',
15763             'Test2::EventFacet::Trace'=> '1.302140',
15764             'Test2::Formatter'      => '1.302140',
15765             'Test2::Formatter::TAP' => '1.302140',
15766             'Test2::Hub'            => '1.302140',
15767             'Test2::Hub::Interceptor'=> '1.302140',
15768             'Test2::Hub::Interceptor::Terminator'=> '1.302140',
15769             'Test2::Hub::Subtest'   => '1.302140',
15770             'Test2::IPC'            => '1.302140',
15771             'Test2::IPC::Driver'    => '1.302140',
15772             'Test2::IPC::Driver::Files'=> '1.302140',
15773             'Test2::Tools::Tiny'    => '1.302140',
15774             'Test2::Util'           => '1.302140',
15775             'Test2::Util::ExternalMeta'=> '1.302140',
15776             'Test2::Util::Facets2Legacy'=> '1.302140',
15777             'Test2::Util::HashBase' => '1.302140',
15778             'Test2::Util::Trace'    => '1.302140',
15779             'Test::Builder'         => '1.302140',
15780             'Test::Builder::Formatter'=> '1.302140',
15781             'Test::Builder::Module' => '1.302140',
15782             'Test::Builder::Tester' => '1.302140',
15783             'Test::Builder::Tester::Color'=> '1.302140',
15784             'Test::Builder::TodoDiag'=> '1.302140',
15785             'Test::More'            => '1.302140',
15786             'Test::Simple'          => '1.302140',
15787             'Test::Tester'          => '1.302140',
15788             'Test::Tester::Capture' => '1.302140',
15789             'Test::Tester::CaptureRunner'=> '1.302140',
15790             'Test::Tester::Delegate'=> '1.302140',
15791             'Test::use::ok'         => '1.302140',
15792             'Time::HiRes'           => '1.9760',
15793             'Time::Piece'           => '1.33',
15794             'Time::Seconds'         => '1.33',
15795             'Unicode'               => '11.0.0',
15796             'ok'                    => '1.302140',
15797             'warnings'              => '1.43',
15798         },
15799         removed => {
15800         }
15801     },
15802     5.029003 => {
15803         delta_from => 5.029002,
15804         changed => {
15805             'Archive::Tar'          => '2.32',
15806             'Archive::Tar::Constant'=> '2.32',
15807             'Archive::Tar::File'    => '2.32',
15808             'B::Op_private'         => '5.029003',
15809             'Config'                => '5.029003',
15810             'Data::Dumper'          => '2.172',
15811             'Devel::PPPort'         => '3.43',
15812             'File::Path'            => '2.16',
15813             'File::Spec'            => '3.75',
15814             'File::Spec::AmigaOS'   => '3.75',
15815             'File::Spec::Cygwin'    => '3.75',
15816             'File::Spec::Epoc'      => '3.75',
15817             'File::Spec::Functions' => '3.75',
15818             'File::Spec::Mac'       => '3.75',
15819             'File::Spec::OS2'       => '3.75',
15820             'File::Spec::Unix'      => '3.75',
15821             'File::Spec::VMS'       => '3.75',
15822             'File::Spec::Win32'     => '3.75',
15823             'Module::CoreList'      => '5.20180920',
15824             'Module::CoreList::Utils'=> '5.20180920',
15825             'POSIX'                 => '1.85',
15826             'Storable'              => '3.13',
15827             'User::grent'           => '1.03',
15828             'perlfaq'               => '5.20180915',
15829         },
15830         removed => {
15831             'Locale::Codes'         => 1,
15832             'Locale::Codes::Constants'=> 1,
15833             'Locale::Codes::Country'=> 1,
15834             'Locale::Codes::Country_Codes'=> 1,
15835             'Locale::Codes::Country_Retired'=> 1,
15836             'Locale::Codes::Currency'=> 1,
15837             'Locale::Codes::Currency_Codes'=> 1,
15838             'Locale::Codes::Currency_Retired'=> 1,
15839             'Locale::Codes::LangExt'=> 1,
15840             'Locale::Codes::LangExt_Codes'=> 1,
15841             'Locale::Codes::LangExt_Retired'=> 1,
15842             'Locale::Codes::LangFam'=> 1,
15843             'Locale::Codes::LangFam_Codes'=> 1,
15844             'Locale::Codes::LangFam_Retired'=> 1,
15845             'Locale::Codes::LangVar'=> 1,
15846             'Locale::Codes::LangVar_Codes'=> 1,
15847             'Locale::Codes::LangVar_Retired'=> 1,
15848             'Locale::Codes::Language'=> 1,
15849             'Locale::Codes::Language_Codes'=> 1,
15850             'Locale::Codes::Language_Retired'=> 1,
15851             'Locale::Codes::Script' => 1,
15852             'Locale::Codes::Script_Codes'=> 1,
15853             'Locale::Codes::Script_Retired'=> 1,
15854             'Locale::Country'       => 1,
15855             'Locale::Currency'      => 1,
15856             'Locale::Language'      => 1,
15857             'Locale::Script'        => 1,
15858         }
15859     },
15860     5.029004 => {
15861         delta_from => 5.029003,
15862         changed => {
15863             'App::Cpan'             => '1.671',
15864             'B'                     => '1.75',
15865             'B::Concise'            => '1.004',
15866             'B::Deparse'            => '1.49',
15867             'B::Op_private'         => '5.029004',
15868             'B::Terse'              => '1.09',
15869             'CPAN'                  => '2.21',
15870             'CPAN::Distribution'    => '2.21',
15871             'CPAN::Mirrors'         => '2.21',
15872             'CPAN::Plugin'          => '0.97',
15873             'CPAN::Shell'           => '5.5008',
15874             'Config'                => '5.029004',
15875             'Devel::Peek'           => '1.28',
15876             'File::Copy'            => '2.34',
15877             'File::Glob'            => '1.32',
15878             'Math::BigFloat::Trace' => '0.51',
15879             'Math::BigInt::Trace'   => '0.51',
15880             'Module::CoreList'      => '5.20181020',
15881             'Module::CoreList::Utils'=> '5.20181020',
15882             'Unicode::UCD'          => '0.72',
15883             'bigint'                => '0.51',
15884             'bignum'                => '0.51',
15885             'bigrat'                => '0.51',
15886             'bytes'                 => '1.07',
15887             'feature'               => '1.54',
15888             'sigtrap'               => '1.09',
15889             'vars'                  => '1.05',
15890         },
15891         removed => {
15892             'B::Debug'              => 1,
15893             'arybase'               => 1,
15894         }
15895     },
15896     5.029005 => {
15897         delta_from => 5.029004,
15898         changed => {
15899             'B::Op_private'         => '5.029005',
15900             'Config'                => '5.029005',
15901             'Cwd'                   => '3.76',
15902             'Data::Dumper'          => '2.173',
15903             'Errno'                 => '1.30',
15904             'File::Spec'            => '3.76',
15905             'File::Spec::AmigaOS'   => '3.76',
15906             'File::Spec::Cygwin'    => '3.76',
15907             'File::Spec::Epoc'      => '3.76',
15908             'File::Spec::Functions' => '3.76',
15909             'File::Spec::Mac'       => '3.76',
15910             'File::Spec::OS2'       => '3.76',
15911             'File::Spec::Unix'      => '3.76',
15912             'File::Spec::VMS'       => '3.76',
15913             'File::Spec::Win32'     => '3.76',
15914             'GDBM_File'             => '1.18',
15915             'Module::CoreList'      => '5.20181120',
15916             'Module::CoreList::Utils'=> '5.20181120',
15917             'NDBM_File'             => '1.15',
15918             'ODBM_File'             => '1.16',
15919             'SDBM_File'             => '1.15',
15920             're'                    => '0.37',
15921         },
15922         removed => {
15923         }
15924     },
15925     5.026003 => {
15926         delta_from => 5.026002,
15927         changed => {
15928             'Archive::Tar'          => '2.24_01',
15929             'B::Op_private'         => '5.026003',
15930             'Config'                => '5.026003',
15931             'Module::CoreList'      => '5.20181129_26',
15932             'Module::CoreList::TieHashDelta'=> '5.20181129_26',
15933             'Module::CoreList::Utils'=> '5.20181129_26',
15934         },
15935         removed => {
15936         }
15937     },
15938     5.028001 => {
15939         delta_from => 5.028,
15940         changed => {
15941             'B::Op_private'         => '5.028001',
15942             'Config'                => '5.028001',
15943             'Module::CoreList'      => '5.20181129_28',
15944             'Module::CoreList::Utils'=> '5.20181129_28',
15945         },
15946         removed => {
15947         }
15948     },
15949     5.029006 => {
15950         delta_from => 5.029005,
15951         changed => {
15952             'B::Op_private'         => '5.029006',
15953             'Config'                => '5.029006',
15954             'Config::Perl::V'       => '0.32',
15955             'ExtUtils::ParseXS'     => '3.40',
15956             'ExtUtils::ParseXS::Constants'=> '3.40',
15957             'ExtUtils::ParseXS::CountLines'=> '3.40',
15958             'ExtUtils::ParseXS::Eval'=> '3.40',
15959             'ExtUtils::ParseXS::Utilities'=> '3.40',
15960             'File::Find'            => '1.35',
15961             'Module::CoreList'      => '5.20181218',
15962             'Module::CoreList::Utils'=> '5.20181218',
15963             'POSIX'                 => '1.86',
15964             'Storable'              => '3.14',
15965             'Test2'                 => '1.302141',
15966             'Test2::API'            => '1.302141',
15967             'Test2::API::Breakage'  => '1.302141',
15968             'Test2::API::Context'   => '1.302141',
15969             'Test2::API::Instance'  => '1.302141',
15970             'Test2::API::Stack'     => '1.302141',
15971             'Test2::Event'          => '1.302141',
15972             'Test2::Event::Bail'    => '1.302141',
15973             'Test2::Event::Diag'    => '1.302141',
15974             'Test2::Event::Encoding'=> '1.302141',
15975             'Test2::Event::Exception'=> '1.302141',
15976             'Test2::Event::Fail'    => '1.302141',
15977             'Test2::Event::Generic' => '1.302141',
15978             'Test2::Event::Note'    => '1.302141',
15979             'Test2::Event::Ok'      => '1.302141',
15980             'Test2::Event::Pass'    => '1.302141',
15981             'Test2::Event::Plan'    => '1.302141',
15982             'Test2::Event::Skip'    => '1.302141',
15983             'Test2::Event::Subtest' => '1.302141',
15984             'Test2::Event::TAP::Version'=> '1.302141',
15985             'Test2::Event::V2'      => '1.302141',
15986             'Test2::Event::Waiting' => '1.302141',
15987             'Test2::EventFacet'     => '1.302141',
15988             'Test2::EventFacet::About'=> '1.302141',
15989             'Test2::EventFacet::Amnesty'=> '1.302141',
15990             'Test2::EventFacet::Assert'=> '1.302141',
15991             'Test2::EventFacet::Control'=> '1.302141',
15992             'Test2::EventFacet::Error'=> '1.302141',
15993             'Test2::EventFacet::Hub'=> '1.302141',
15994             'Test2::EventFacet::Info'=> '1.302141',
15995             'Test2::EventFacet::Meta'=> '1.302141',
15996             'Test2::EventFacet::Parent'=> '1.302141',
15997             'Test2::EventFacet::Plan'=> '1.302141',
15998             'Test2::EventFacet::Render'=> '1.302141',
15999             'Test2::EventFacet::Trace'=> '1.302141',
16000             'Test2::Formatter'      => '1.302141',
16001             'Test2::Formatter::TAP' => '1.302141',
16002             'Test2::Hub'            => '1.302141',
16003             'Test2::Hub::Interceptor'=> '1.302141',
16004             'Test2::Hub::Interceptor::Terminator'=> '1.302141',
16005             'Test2::Hub::Subtest'   => '1.302141',
16006             'Test2::IPC'            => '1.302141',
16007             'Test2::IPC::Driver'    => '1.302141',
16008             'Test2::IPC::Driver::Files'=> '1.302141',
16009             'Test2::Tools::Tiny'    => '1.302141',
16010             'Test2::Util'           => '1.302141',
16011             'Test2::Util::ExternalMeta'=> '1.302141',
16012             'Test2::Util::Facets2Legacy'=> '1.302141',
16013             'Test2::Util::HashBase' => '1.302141',
16014             'Test2::Util::Trace'    => '1.302141',
16015             'Test::Builder'         => '1.302141',
16016             'Test::Builder::Formatter'=> '1.302141',
16017             'Test::Builder::Module' => '1.302141',
16018             'Test::Builder::Tester' => '1.302141',
16019             'Test::Builder::Tester::Color'=> '1.302141',
16020             'Test::Builder::TodoDiag'=> '1.302141',
16021             'Test::More'            => '1.302141',
16022             'Test::Simple'          => '1.302141',
16023             'Test::Tester'          => '1.302141',
16024             'Test::Tester::Capture' => '1.302141',
16025             'Test::Tester::CaptureRunner'=> '1.302141',
16026             'Test::Tester::Delegate'=> '1.302141',
16027             'Test::use::ok'         => '1.302141',
16028             'ok'                    => '1.302141',
16029             'threads::shared'       => '1.59',
16030         },
16031         removed => {
16032             'Storable::Limit'       => 1,
16033         }
16034     },
16035     5.029007 => {
16036         delta_from => 5.029006,
16037         changed => {
16038             'App::Cpan'             => '1.672',
16039             'B::Op_private'         => '5.029007',
16040             'CPAN'                  => '2.22',
16041             'CPAN::Distribution'    => '2.22',
16042             'CPAN::Plugin::Specfile'=> '0.02',
16043             'Compress::Raw::Bzip2'  => '2.084',
16044             'Compress::Raw::Zlib'   => '2.084',
16045             'Compress::Zlib'        => '2.084',
16046             'Config'                => '5.029007',
16047             'Cwd'                   => '3.77',
16048             'DB_File'               => '1.843',
16049             'File::Find'            => '1.36',
16050             'File::Spec'            => '3.77',
16051             'File::Spec::AmigaOS'   => '3.77',
16052             'File::Spec::Cygwin'    => '3.77',
16053             'File::Spec::Epoc'      => '3.77',
16054             'File::Spec::Functions' => '3.77',
16055             'File::Spec::Mac'       => '3.77',
16056             'File::Spec::OS2'       => '3.77',
16057             'File::Spec::Unix'      => '3.77',
16058             'File::Spec::VMS'       => '3.77',
16059             'File::Spec::Win32'     => '3.77',
16060             'File::Temp'            => '0.2309',
16061             'IO::Compress::Adapter::Bzip2'=> '2.084',
16062             'IO::Compress::Adapter::Deflate'=> '2.084',
16063             'IO::Compress::Adapter::Identity'=> '2.084',
16064             'IO::Compress::Base'    => '2.084',
16065             'IO::Compress::Base::Common'=> '2.084',
16066             'IO::Compress::Bzip2'   => '2.084',
16067             'IO::Compress::Deflate' => '2.084',
16068             'IO::Compress::Gzip'    => '2.084',
16069             'IO::Compress::Gzip::Constants'=> '2.084',
16070             'IO::Compress::RawDeflate'=> '2.084',
16071             'IO::Compress::Zip'     => '2.084',
16072             'IO::Compress::Zip::Constants'=> '2.084',
16073             'IO::Compress::Zlib::Constants'=> '2.084',
16074             'IO::Compress::Zlib::Extra'=> '2.084',
16075             'IO::Uncompress::Adapter::Bunzip2'=> '2.084',
16076             'IO::Uncompress::Adapter::Identity'=> '2.084',
16077             'IO::Uncompress::Adapter::Inflate'=> '2.084',
16078             'IO::Uncompress::AnyInflate'=> '2.084',
16079             'IO::Uncompress::AnyUncompress'=> '2.084',
16080             'IO::Uncompress::Base'  => '2.084',
16081             'IO::Uncompress::Bunzip2'=> '2.084',
16082             'IO::Uncompress::Gunzip'=> '2.084',
16083             'IO::Uncompress::Inflate'=> '2.084',
16084             'IO::Uncompress::RawInflate'=> '2.084',
16085             'IO::Uncompress::Unzip' => '2.084',
16086             'Math::BigFloat'        => '1.999816',
16087             'Math::BigInt'          => '1.999816',
16088             'Math::BigInt::Calc'    => '1.999816',
16089             'Math::BigInt::FastCalc'=> '0.5008',
16090             'Math::BigInt::Lib'     => '1.999816',
16091             'Module::CoreList'      => '5.20190120',
16092             'Module::CoreList::Utils'=> '5.20190120',
16093             'Test2'                 => '1.302160',
16094             'Test2::API'            => '1.302160',
16095             'Test2::API::Breakage'  => '1.302160',
16096             'Test2::API::Context'   => '1.302160',
16097             'Test2::API::Instance'  => '1.302160',
16098             'Test2::API::Stack'     => '1.302160',
16099             'Test2::Event'          => '1.302160',
16100             'Test2::Event::Bail'    => '1.302160',
16101             'Test2::Event::Diag'    => '1.302160',
16102             'Test2::Event::Encoding'=> '1.302160',
16103             'Test2::Event::Exception'=> '1.302160',
16104             'Test2::Event::Fail'    => '1.302160',
16105             'Test2::Event::Generic' => '1.302160',
16106             'Test2::Event::Note'    => '1.302160',
16107             'Test2::Event::Ok'      => '1.302160',
16108             'Test2::Event::Pass'    => '1.302160',
16109             'Test2::Event::Plan'    => '1.302160',
16110             'Test2::Event::Skip'    => '1.302160',
16111             'Test2::Event::Subtest' => '1.302160',
16112             'Test2::Event::TAP::Version'=> '1.302160',
16113             'Test2::Event::V2'      => '1.302160',
16114             'Test2::Event::Waiting' => '1.302160',
16115             'Test2::EventFacet'     => '1.302160',
16116             'Test2::EventFacet::About'=> '1.302160',
16117             'Test2::EventFacet::Amnesty'=> '1.302160',
16118             'Test2::EventFacet::Assert'=> '1.302160',
16119             'Test2::EventFacet::Control'=> '1.302160',
16120             'Test2::EventFacet::Error'=> '1.302160',
16121             'Test2::EventFacet::Hub'=> '1.302160',
16122             'Test2::EventFacet::Info'=> '1.302160',
16123             'Test2::EventFacet::Info::Table'=> undef,
16124             'Test2::EventFacet::Meta'=> '1.302160',
16125             'Test2::EventFacet::Parent'=> '1.302160',
16126             'Test2::EventFacet::Plan'=> '1.302160',
16127             'Test2::EventFacet::Render'=> '1.302160',
16128             'Test2::EventFacet::Trace'=> '1.302160',
16129             'Test2::Formatter'      => '1.302160',
16130             'Test2::Formatter::TAP' => '1.302160',
16131             'Test2::Hub'            => '1.302160',
16132             'Test2::Hub::Interceptor'=> '1.302160',
16133             'Test2::Hub::Interceptor::Terminator'=> '1.302160',
16134             'Test2::Hub::Subtest'   => '1.302160',
16135             'Test2::IPC'            => '1.302160',
16136             'Test2::IPC::Driver'    => '1.302160',
16137             'Test2::IPC::Driver::Files'=> '1.302160',
16138             'Test2::Tools::Tiny'    => '1.302160',
16139             'Test2::Util'           => '1.302160',
16140             'Test2::Util::ExternalMeta'=> '1.302160',
16141             'Test2::Util::Facets2Legacy'=> '1.302160',
16142             'Test2::Util::HashBase' => '1.302160',
16143             'Test2::Util::Trace'    => '1.302160',
16144             'Test::Builder'         => '1.302160',
16145             'Test::Builder::Formatter'=> '1.302160',
16146             'Test::Builder::Module' => '1.302160',
16147             'Test::Builder::Tester' => '1.302160',
16148             'Test::Builder::Tester::Color'=> '1.302160',
16149             'Test::Builder::TodoDiag'=> '1.302160',
16150             'Test::More'            => '1.302160',
16151             'Test::Simple'          => '1.302160',
16152             'Test::Tester'          => '1.302160',
16153             'Test::Tester::Capture' => '1.302160',
16154             'Test::Tester::CaptureRunner'=> '1.302160',
16155             'Test::Tester::Delegate'=> '1.302160',
16156             'Test::use::ok'         => '1.302160',
16157             'Unicode::Collate'      => '1.27',
16158             'Unicode::Collate::CJK::Big5'=> '1.27',
16159             'Unicode::Collate::CJK::GB2312'=> '1.27',
16160             'Unicode::Collate::CJK::JISX0208'=> '1.27',
16161             'Unicode::Collate::CJK::Korean'=> '1.27',
16162             'Unicode::Collate::CJK::Pinyin'=> '1.27',
16163             'Unicode::Collate::CJK::Stroke'=> '1.27',
16164             'Unicode::Collate::CJK::Zhuyin'=> '1.27',
16165             'Unicode::Collate::Locale'=> '1.27',
16166             'lib'                   => '0.65',
16167             'ok'                    => '1.302160',
16168         },
16169         removed => {
16170             'Math::BigInt::CalcEmu' => 1,
16171         }
16172     },
16173     5.029008 => {
16174         delta_from => 5.029007,
16175         changed => {
16176             'B'                     => '1.76',
16177             'B::Op_private'         => '5.029008',
16178             'Config'                => '5.029008',
16179             'Devel::PPPort'         => '3.44',
16180             'Encode'                => '3.00',
16181             'Encode::Unicode'       => '2.18',
16182             'ExtUtils::Miniperl'    => '1.09',
16183             'IO'                    => '1.40',
16184             'IO::Dir'               => '1.40',
16185             'IO::File'              => '1.40',
16186             'IO::Handle'            => '1.40',
16187             'IO::Pipe'              => '1.40',
16188             'IO::Poll'              => '1.40',
16189             'IO::Seekable'          => '1.40',
16190             'IO::Select'            => '1.40',
16191             'IO::Socket'            => '1.40',
16192             'IO::Socket::INET'      => '1.40',
16193             'IO::Socket::UNIX'      => '1.40',
16194             'JSON::PP'              => '4.00',
16195             'JSON::PP::Boolean'     => '4.00',
16196             'Module::CoreList'      => '5.20190220',
16197             'Module::CoreList::Utils'=> '5.20190220',
16198             'Module::Load'          => '0.34',
16199             'Net::Ping'             => '2.71',
16200             'POSIX'                 => '1.87',
16201             'Test2'                 => '1.302162',
16202             'Test2::API'            => '1.302162',
16203             'Test2::API::Breakage'  => '1.302162',
16204             'Test2::API::Context'   => '1.302162',
16205             'Test2::API::Instance'  => '1.302162',
16206             'Test2::API::Stack'     => '1.302162',
16207             'Test2::Event'          => '1.302162',
16208             'Test2::Event::Bail'    => '1.302162',
16209             'Test2::Event::Diag'    => '1.302162',
16210             'Test2::Event::Encoding'=> '1.302162',
16211             'Test2::Event::Exception'=> '1.302162',
16212             'Test2::Event::Fail'    => '1.302162',
16213             'Test2::Event::Generic' => '1.302162',
16214             'Test2::Event::Note'    => '1.302162',
16215             'Test2::Event::Ok'      => '1.302162',
16216             'Test2::Event::Pass'    => '1.302162',
16217             'Test2::Event::Plan'    => '1.302162',
16218             'Test2::Event::Skip'    => '1.302162',
16219             'Test2::Event::Subtest' => '1.302162',
16220             'Test2::Event::TAP::Version'=> '1.302162',
16221             'Test2::Event::V2'      => '1.302162',
16222             'Test2::Event::Waiting' => '1.302162',
16223             'Test2::EventFacet'     => '1.302162',
16224             'Test2::EventFacet::About'=> '1.302162',
16225             'Test2::EventFacet::Amnesty'=> '1.302162',
16226             'Test2::EventFacet::Assert'=> '1.302162',
16227             'Test2::EventFacet::Control'=> '1.302162',
16228             'Test2::EventFacet::Error'=> '1.302162',
16229             'Test2::EventFacet::Hub'=> '1.302162',
16230             'Test2::EventFacet::Info'=> '1.302162',
16231             'Test2::EventFacet::Meta'=> '1.302162',
16232             'Test2::EventFacet::Parent'=> '1.302162',
16233             'Test2::EventFacet::Plan'=> '1.302162',
16234             'Test2::EventFacet::Render'=> '1.302162',
16235             'Test2::EventFacet::Trace'=> '1.302162',
16236             'Test2::Formatter'      => '1.302162',
16237             'Test2::Formatter::TAP' => '1.302162',
16238             'Test2::Hub'            => '1.302162',
16239             'Test2::Hub::Interceptor'=> '1.302162',
16240             'Test2::Hub::Interceptor::Terminator'=> '1.302162',
16241             'Test2::Hub::Subtest'   => '1.302162',
16242             'Test2::IPC'            => '1.302162',
16243             'Test2::IPC::Driver'    => '1.302162',
16244             'Test2::IPC::Driver::Files'=> '1.302162',
16245             'Test2::Tools::Tiny'    => '1.302162',
16246             'Test2::Util'           => '1.302162',
16247             'Test2::Util::ExternalMeta'=> '1.302162',
16248             'Test2::Util::Facets2Legacy'=> '1.302162',
16249             'Test2::Util::HashBase' => '1.302162',
16250             'Test2::Util::Trace'    => '1.302162',
16251             'Test::Builder'         => '1.302162',
16252             'Test::Builder::Formatter'=> '1.302162',
16253             'Test::Builder::Module' => '1.302162',
16254             'Test::Builder::Tester' => '1.302162',
16255             'Test::Builder::Tester::Color'=> '1.302162',
16256             'Test::Builder::TodoDiag'=> '1.302162',
16257             'Test::More'            => '1.302162',
16258             'Test::Simple'          => '1.302162',
16259             'Test::Tester'          => '1.302162',
16260             'Test::Tester::Capture' => '1.302162',
16261             'Test::Tester::CaptureRunner'=> '1.302162',
16262             'Test::Tester::Delegate'=> '1.302162',
16263             'Test::use::ok'         => '1.302162',
16264             'XS::APItest'           => '1.00',
16265             'deprecate'             => '0.04',
16266             'ok'                    => '1.302162',
16267             'perlfaq'               => '5.20190126',
16268         },
16269         removed => {
16270         }
16271     },
16272     5.029009 => {
16273         delta_from => 5.029008,
16274         changed => {
16275             'B::Op_private'         => '5.029009',
16276             'Config'                => '5.029009',
16277             'Devel::PPPort'         => '3.45',
16278             'Encode'                => '3.01',
16279             'ExtUtils::Manifest'    => '1.72',
16280             'JSON::PP'              => '4.02',
16281             'JSON::PP::Boolean'     => '4.02',
16282             'Module::CoreList'      => '5.20190320',
16283             'Module::CoreList::Utils'=> '5.20190320',
16284             'PerlIO::encoding'      => '0.27',
16285             'Unicode'               => '12.0.0',
16286             'threads::shared'       => '1.60',
16287             'utf8'                  => '1.22',
16288             'warnings'              => '1.44',
16289         },
16290         removed => {
16291         }
16292     },
16293     5.028002 => {
16294         delta_from => 5.028001,
16295         changed => {
16296             'B::Op_private'         => '5.028002',
16297             'Config'                => '5.028002',
16298             'Module::CoreList'      => '5.20190419',
16299             'Module::CoreList::Utils'=> '5.20190419',
16300             'PerlIO::scalar'        => '0.30',
16301             'Storable'              => '3.08_01',
16302         },
16303         removed => {
16304         }
16305     },
16306     5.029010 => {
16307         delta_from => 5.029009,
16308         changed => {
16309             'B::Op_private'         => '5.029010',
16310             'Config'                => '5.02901',
16311             'Cwd'                   => '3.78',
16312             'Data::Dumper'          => '2.174',
16313             'ExtUtils::CBuilder'    => '0.280231',
16314             'ExtUtils::CBuilder::Base'=> '0.280231',
16315             'ExtUtils::CBuilder::Platform::Unix'=> '0.280231',
16316             'ExtUtils::CBuilder::Platform::VMS'=> '0.280231',
16317             'ExtUtils::CBuilder::Platform::Windows'=> '0.280231',
16318             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280231',
16319             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280231',
16320             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280231',
16321             'ExtUtils::CBuilder::Platform::aix'=> '0.280231',
16322             'ExtUtils::CBuilder::Platform::android'=> '0.280231',
16323             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280231',
16324             'ExtUtils::CBuilder::Platform::darwin'=> '0.280231',
16325             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280231',
16326             'ExtUtils::CBuilder::Platform::os2'=> '0.280231',
16327             'File::Spec'            => '3.78',
16328             'File::Spec::AmigaOS'   => '3.78',
16329             'File::Spec::Cygwin'    => '3.78',
16330             'File::Spec::Epoc'      => '3.78',
16331             'File::Spec::Functions' => '3.78',
16332             'File::Spec::Mac'       => '3.78',
16333             'File::Spec::OS2'       => '3.78',
16334             'File::Spec::Unix'      => '3.78',
16335             'File::Spec::VMS'       => '3.78',
16336             'File::Spec::Win32'     => '3.78',
16337             'I18N::Langinfo'        => '0.18',
16338             'Module::CoreList'      => '5.20190420',
16339             'Module::CoreList::Utils'=> '5.20190420',
16340             'Module::Metadata'      => '1.000036',
16341             'POSIX'                 => '1.88',
16342             'Storable'              => '3.15',
16343             'Unicode'               => '12.1.0',
16344         },
16345         removed => {
16346         }
16347     },
16348     5.030000 => {
16349         delta_from => 5.02901,
16350         changed => {
16351             'B::Op_private'         => '5.030000',
16352             'Config'                => '5.03',
16353             'Devel::PPPort'         => '3.52',
16354             'Module::CoreList'      => '5.20190522',
16355             'Module::CoreList::Utils'=> '5.20190522',
16356             'XS::Typemap'           => '0.17',
16357         },
16358         removed => {
16359         }
16360     },
16361     5.031000 => {
16362         delta_from => 5.03,
16363         changed => {
16364             'B::Op_private'         => '5.031000',
16365             'Config'                => '5.031',
16366             'Module::CoreList'      => '5.20190524',
16367             'Module::CoreList::Utils'=> '5.20190524',
16368             'Pod::Simple'           => '3.36',
16369             'Pod::Simple::BlackBox' => '3.36',
16370             'Pod::Simple::Checker'  => '3.36',
16371             'Pod::Simple::Debug'    => '3.36',
16372             'Pod::Simple::DumpAsText'=> '3.36',
16373             'Pod::Simple::DumpAsXML'=> '3.36',
16374             'Pod::Simple::HTML'     => '3.36',
16375             'Pod::Simple::HTMLBatch'=> '3.36',
16376             'Pod::Simple::JustPod'  => undef,
16377             'Pod::Simple::LinkSection'=> '3.36',
16378             'Pod::Simple::Methody'  => '3.36',
16379             'Pod::Simple::Progress' => '3.36',
16380             'Pod::Simple::PullParser'=> '3.36',
16381             'Pod::Simple::PullParserEndToken'=> '3.36',
16382             'Pod::Simple::PullParserStartToken'=> '3.36',
16383             'Pod::Simple::PullParserTextToken'=> '3.36',
16384             'Pod::Simple::PullParserToken'=> '3.36',
16385             'Pod::Simple::RTF'      => '3.36',
16386             'Pod::Simple::Search'   => '3.36',
16387             'Pod::Simple::SimpleTree'=> '3.36',
16388             'Pod::Simple::Text'     => '3.36',
16389             'Pod::Simple::TextContent'=> '3.36',
16390             'Pod::Simple::TiedOutFH'=> '3.36',
16391             'Pod::Simple::Transcode'=> '3.36',
16392             'Pod::Simple::TranscodeDumb'=> '3.36',
16393             'Pod::Simple::TranscodeSmart'=> '3.36',
16394             'Pod::Simple::XHTML'    => '3.36',
16395             'Pod::Simple::XMLOutStream'=> '3.36',
16396             'Socket'                => '2.029',
16397             'feature'               => '1.55',
16398         },
16399         removed => {
16400         }
16401     },
16402     5.031001 => {
16403         delta_from => 5.031000,
16404         changed => {
16405             'App::Cpan'             => '1.675',
16406             'B::Op_private'         => '5.031001',
16407             'CPAN'                  => '2.27',
16408             'CPAN::Bundle'          => '5.5005',
16409             'CPAN::Distribution'    => '2.27',
16410             'CPAN::FTP'             => '5.5012',
16411             'CPAN::FirstTime'       => '5.5314',
16412             'CPAN::HandleConfig'    => '5.5011',
16413             'CPAN::Mirrors'         => '2.27',
16414             'CPAN::Queue'           => '5.5003',
16415             'CPAN::Shell'           => '5.5009',
16416             'CPAN::Tarzip'          => '5.5013',
16417             'Class::Struct'         => '0.66',
16418             'Compress::Raw::Bzip2'  => '2.086',
16419             'Compress::Raw::Zlib'   => '2.086',
16420             'Compress::Zlib'        => '2.086',
16421             'Config'                => '5.031001',
16422             'DB_File'               => '1.852',
16423             'Devel::PPPort'         => '3.53',
16424             'ExtUtils::CBuilder'    => '0.280232',
16425             'ExtUtils::Command'     => '7.36',
16426             'ExtUtils::Command::MM' => '7.36',
16427             'ExtUtils::Liblist'     => '7.36',
16428             'ExtUtils::Liblist::Kid'=> '7.36',
16429             'ExtUtils::MM'          => '7.36',
16430             'ExtUtils::MM_AIX'      => '7.36',
16431             'ExtUtils::MM_Any'      => '7.36',
16432             'ExtUtils::MM_BeOS'     => '7.36',
16433             'ExtUtils::MM_Cygwin'   => '7.36',
16434             'ExtUtils::MM_DOS'      => '7.36',
16435             'ExtUtils::MM_Darwin'   => '7.36',
16436             'ExtUtils::MM_MacOS'    => '7.36',
16437             'ExtUtils::MM_NW5'      => '7.36',
16438             'ExtUtils::MM_OS2'      => '7.36',
16439             'ExtUtils::MM_QNX'      => '7.36',
16440             'ExtUtils::MM_UWIN'     => '7.36',
16441             'ExtUtils::MM_Unix'     => '7.36',
16442             'ExtUtils::MM_VMS'      => '7.36',
16443             'ExtUtils::MM_VOS'      => '7.36',
16444             'ExtUtils::MM_Win32'    => '7.36',
16445             'ExtUtils::MM_Win95'    => '7.36',
16446             'ExtUtils::MY'          => '7.36',
16447             'ExtUtils::MakeMaker'   => '7.36',
16448             'ExtUtils::MakeMaker::Config'=> '7.36',
16449             'ExtUtils::MakeMaker::Locale'=> '7.36',
16450             'ExtUtils::MakeMaker::version'=> '7.36',
16451             'ExtUtils::MakeMaker::version::regex'=> '7.36',
16452             'ExtUtils::Mkbootstrap' => '7.36',
16453             'ExtUtils::Mksymlists'  => '7.36',
16454             'ExtUtils::testlib'     => '7.36',
16455             'File::Spec::Win32'     => '3.79',
16456             'I18N::LangTags'        => '0.44',
16457             'IO'                    => '1.41',
16458             'IO::Compress::Adapter::Bzip2'=> '2.086',
16459             'IO::Compress::Adapter::Deflate'=> '2.086',
16460             'IO::Compress::Adapter::Identity'=> '2.086',
16461             'IO::Compress::Base'    => '2.086',
16462             'IO::Compress::Base::Common'=> '2.086',
16463             'IO::Compress::Bzip2'   => '2.086',
16464             'IO::Compress::Deflate' => '2.086',
16465             'IO::Compress::Gzip'    => '2.086',
16466             'IO::Compress::Gzip::Constants'=> '2.086',
16467             'IO::Compress::RawDeflate'=> '2.086',
16468             'IO::Compress::Zip'     => '2.086',
16469             'IO::Compress::Zip::Constants'=> '2.086',
16470             'IO::Compress::Zlib::Constants'=> '2.086',
16471             'IO::Compress::Zlib::Extra'=> '2.086',
16472             'IO::Dir'               => '1.41',
16473             'IO::File'              => '1.41',
16474             'IO::Handle'            => '1.41',
16475             'IO::Pipe'              => '1.41',
16476             'IO::Poll'              => '1.41',
16477             'IO::Seekable'          => '1.41',
16478             'IO::Select'            => '1.41',
16479             'IO::Socket'            => '1.41',
16480             'IO::Socket::INET'      => '1.41',
16481             'IO::Socket::UNIX'      => '1.41',
16482             'IO::Uncompress::Adapter::Bunzip2'=> '2.086',
16483             'IO::Uncompress::Adapter::Identity'=> '2.086',
16484             'IO::Uncompress::Adapter::Inflate'=> '2.086',
16485             'IO::Uncompress::AnyInflate'=> '2.086',
16486             'IO::Uncompress::AnyUncompress'=> '2.086',
16487             'IO::Uncompress::Base'  => '2.086',
16488             'IO::Uncompress::Bunzip2'=> '2.086',
16489             'IO::Uncompress::Gunzip'=> '2.086',
16490             'IO::Uncompress::Inflate'=> '2.086',
16491             'IO::Uncompress::RawInflate'=> '2.086',
16492             'IO::Uncompress::Unzip' => '2.086',
16493             'Module::CoreList'      => '5.20190620',
16494             'Module::CoreList::Utils'=> '5.20190620',
16495             'POSIX'                 => '1.89',
16496             'Pod::Man'              => '4.12',
16497             'Pod::ParseLink'        => '4.12',
16498             'Pod::Simple'           => '3.38',
16499             'Pod::Simple::BlackBox' => '3.38',
16500             'Pod::Simple::Checker'  => '3.38',
16501             'Pod::Simple::Debug'    => '3.38',
16502             'Pod::Simple::DumpAsText'=> '3.38',
16503             'Pod::Simple::DumpAsXML'=> '3.38',
16504             'Pod::Simple::HTML'     => '3.38',
16505             'Pod::Simple::HTMLBatch'=> '3.38',
16506             'Pod::Simple::LinkSection'=> '3.38',
16507             'Pod::Simple::Methody'  => '3.38',
16508             'Pod::Simple::Progress' => '3.38',
16509             'Pod::Simple::PullParser'=> '3.38',
16510             'Pod::Simple::PullParserEndToken'=> '3.38',
16511             'Pod::Simple::PullParserStartToken'=> '3.38',
16512             'Pod::Simple::PullParserTextToken'=> '3.38',
16513             'Pod::Simple::PullParserToken'=> '3.38',
16514             'Pod::Simple::RTF'      => '3.38',
16515             'Pod::Simple::Search'   => '3.38',
16516             'Pod::Simple::SimpleTree'=> '3.38',
16517             'Pod::Simple::Text'     => '3.38',
16518             'Pod::Simple::TextContent'=> '3.38',
16519             'Pod::Simple::TiedOutFH'=> '3.38',
16520             'Pod::Simple::Transcode'=> '3.38',
16521             'Pod::Simple::TranscodeDumb'=> '3.38',
16522             'Pod::Simple::TranscodeSmart'=> '3.38',
16523             'Pod::Simple::XHTML'    => '3.38',
16524             'Pod::Simple::XMLOutStream'=> '3.38',
16525             'Pod::Text'             => '4.12',
16526             'Pod::Text::Color'      => '4.12',
16527             'Pod::Text::Overstrike' => '4.12',
16528             'Pod::Text::Termcap'    => '4.12',
16529             'SelfLoader'            => '1.26',
16530             'Storable'              => '3.16',
16531             'Sys::Hostname'         => '1.23',
16532             'Test2'                 => '1.302164',
16533             'Test2::API'            => '1.302164',
16534             'Test2::API::Breakage'  => '1.302164',
16535             'Test2::API::Context'   => '1.302164',
16536             'Test2::API::Instance'  => '1.302164',
16537             'Test2::API::Stack'     => '1.302164',
16538             'Test2::Event'          => '1.302164',
16539             'Test2::Event::Bail'    => '1.302164',
16540             'Test2::Event::Diag'    => '1.302164',
16541             'Test2::Event::Encoding'=> '1.302164',
16542             'Test2::Event::Exception'=> '1.302164',
16543             'Test2::Event::Fail'    => '1.302164',
16544             'Test2::Event::Generic' => '1.302164',
16545             'Test2::Event::Note'    => '1.302164',
16546             'Test2::Event::Ok'      => '1.302164',
16547             'Test2::Event::Pass'    => '1.302164',
16548             'Test2::Event::Plan'    => '1.302164',
16549             'Test2::Event::Skip'    => '1.302164',
16550             'Test2::Event::Subtest' => '1.302164',
16551             'Test2::Event::TAP::Version'=> '1.302164',
16552             'Test2::Event::V2'      => '1.302164',
16553             'Test2::Event::Waiting' => '1.302164',
16554             'Test2::EventFacet'     => '1.302164',
16555             'Test2::EventFacet::About'=> '1.302164',
16556             'Test2::EventFacet::Amnesty'=> '1.302164',
16557             'Test2::EventFacet::Assert'=> '1.302164',
16558             'Test2::EventFacet::Control'=> '1.302164',
16559             'Test2::EventFacet::Error'=> '1.302164',
16560             'Test2::EventFacet::Hub'=> '1.302164',
16561             'Test2::EventFacet::Info'=> '1.302164',
16562             'Test2::EventFacet::Info::Table'=> '1.302164',
16563             'Test2::EventFacet::Meta'=> '1.302164',
16564             'Test2::EventFacet::Parent'=> '1.302164',
16565             'Test2::EventFacet::Plan'=> '1.302164',
16566             'Test2::EventFacet::Render'=> '1.302164',
16567             'Test2::EventFacet::Trace'=> '1.302164',
16568             'Test2::Formatter'      => '1.302164',
16569             'Test2::Formatter::TAP' => '1.302164',
16570             'Test2::Hub'            => '1.302164',
16571             'Test2::Hub::Interceptor'=> '1.302164',
16572             'Test2::Hub::Interceptor::Terminator'=> '1.302164',
16573             'Test2::Hub::Subtest'   => '1.302164',
16574             'Test2::IPC'            => '1.302164',
16575             'Test2::IPC::Driver'    => '1.302164',
16576             'Test2::IPC::Driver::Files'=> '1.302164',
16577             'Test2::Tools::Tiny'    => '1.302164',
16578             'Test2::Util'           => '1.302164',
16579             'Test2::Util::ExternalMeta'=> '1.302164',
16580             'Test2::Util::Facets2Legacy'=> '1.302164',
16581             'Test2::Util::HashBase' => '1.302164',
16582             'Test2::Util::Trace'    => '1.302164',
16583             'Test::Builder'         => '1.302164',
16584             'Test::Builder::Formatter'=> '1.302164',
16585             'Test::Builder::Module' => '1.302164',
16586             'Test::Builder::Tester' => '1.302164',
16587             'Test::Builder::Tester::Color'=> '1.302164',
16588             'Test::Builder::TodoDiag'=> '1.302164',
16589             'Test::More'            => '1.302164',
16590             'Test::Simple'          => '1.302164',
16591             'Test::Tester'          => '1.302164',
16592             'Test::Tester::Capture' => '1.302164',
16593             'Test::Tester::CaptureRunner'=> '1.302164',
16594             'Test::Tester::Delegate'=> '1.302164',
16595             'Test::use::ok'         => '1.302164',
16596             'Tie::File'             => '1.03',
16597             'Tie::Hash::NamedCapture'=> '0.11',
16598             'Time::HiRes'           => '1.9761',
16599             'Unicode::Normalize'    => '1.27',
16600             'Unicode::UCD'          => '0.73',
16601             'XS::APItest'           => '1.01',
16602             'ok'                    => '1.302164',
16603             'overload'              => '1.31',
16604             'warnings'              => '1.45',
16605         },
16606         removed => {
16607             'Pod::Find'             => 1,
16608             'Pod::InputObjects'     => 1,
16609             'Pod::ParseUtils'       => 1,
16610             'Pod::Parser'           => 1,
16611             'Pod::PlainText'        => 1,
16612             'Pod::Select'           => 1,
16613         }
16614     },
16615     5.031002 => {
16616         delta_from => 5.031001,
16617         changed => {
16618             'B::Op_private'         => '5.031002',
16619             'Config'                => '5.031002',
16620             'Devel::PPPort'         => '3.54',
16621             'Exporter'              => '5.74',
16622             'Exporter::Heavy'       => '5.74',
16623             'IPC::Cmd'              => '1.04',
16624             'JSON::PP'              => '4.04',
16625             'JSON::PP::Boolean'     => '4.04',
16626             'Module::CoreList'      => '5.20190720',
16627             'Module::CoreList::Utils'=> '5.20190720',
16628             'Opcode'                => '1.44',
16629             'PerlIO::encoding'      => '0.28',
16630             'Pod::Simple'           => '3.39',
16631             'Pod::Simple::BlackBox' => '3.39',
16632             'Pod::Simple::Checker'  => '3.39',
16633             'Pod::Simple::Debug'    => '3.39',
16634             'Pod::Simple::DumpAsText'=> '3.39',
16635             'Pod::Simple::DumpAsXML'=> '3.39',
16636             'Pod::Simple::HTML'     => '3.39',
16637             'Pod::Simple::HTMLBatch'=> '3.39',
16638             'Pod::Simple::LinkSection'=> '3.39',
16639             'Pod::Simple::Methody'  => '3.39',
16640             'Pod::Simple::Progress' => '3.39',
16641             'Pod::Simple::PullParser'=> '3.39',
16642             'Pod::Simple::PullParserEndToken'=> '3.39',
16643             'Pod::Simple::PullParserStartToken'=> '3.39',
16644             'Pod::Simple::PullParserTextToken'=> '3.39',
16645             'Pod::Simple::PullParserToken'=> '3.39',
16646             'Pod::Simple::RTF'      => '3.39',
16647             'Pod::Simple::Search'   => '3.39',
16648             'Pod::Simple::SimpleTree'=> '3.39',
16649             'Pod::Simple::Text'     => '3.39',
16650             'Pod::Simple::TextContent'=> '3.39',
16651             'Pod::Simple::TiedOutFH'=> '3.39',
16652             'Pod::Simple::Transcode'=> '3.39',
16653             'Pod::Simple::TranscodeDumb'=> '3.39',
16654             'Pod::Simple::TranscodeSmart'=> '3.39',
16655             'Pod::Simple::XHTML'    => '3.39',
16656             'Pod::Simple::XMLOutStream'=> '3.39',
16657             'threads::shared'       => '1.61',
16658         },
16659         removed => {
16660         }
16661     },
16662     5.031003 => {
16663         delta_from => 5.031002,
16664         changed => {
16665             'B::Op_private'         => '5.031003',
16666             'Compress::Raw::Bzip2'  => '2.087',
16667             'Compress::Raw::Zlib'   => '2.087',
16668             'Compress::Zlib'        => '2.087',
16669             'Config'                => '5.031003',
16670             'Devel::PPPort'         => '3.55',
16671             'File::Find'            => '1.37',
16672             'Getopt::Long'          => '2.51',
16673             'I18N::LangTags::Detect'=> '1.08',
16674             'IO::Compress::Adapter::Bzip2'=> '2.087',
16675             'IO::Compress::Adapter::Deflate'=> '2.087',
16676             'IO::Compress::Adapter::Identity'=> '2.087',
16677             'IO::Compress::Base'    => '2.087',
16678             'IO::Compress::Base::Common'=> '2.087',
16679             'IO::Compress::Bzip2'   => '2.087',
16680             'IO::Compress::Deflate' => '2.087',
16681             'IO::Compress::Gzip'    => '2.087',
16682             'IO::Compress::Gzip::Constants'=> '2.087',
16683             'IO::Compress::RawDeflate'=> '2.087',
16684             'IO::Compress::Zip'     => '2.087',
16685             'IO::Compress::Zip::Constants'=> '2.087',
16686             'IO::Compress::Zlib::Constants'=> '2.087',
16687             'IO::Compress::Zlib::Extra'=> '2.087',
16688             'IO::Uncompress::Adapter::Bunzip2'=> '2.087',
16689             'IO::Uncompress::Adapter::Identity'=> '2.087',
16690             'IO::Uncompress::Adapter::Inflate'=> '2.087',
16691             'IO::Uncompress::AnyInflate'=> '2.087',
16692             'IO::Uncompress::AnyUncompress'=> '2.087',
16693             'IO::Uncompress::Base'  => '2.087',
16694             'IO::Uncompress::Bunzip2'=> '2.087',
16695             'IO::Uncompress::Gunzip'=> '2.087',
16696             'IO::Uncompress::Inflate'=> '2.087',
16697             'IO::Uncompress::RawInflate'=> '2.087',
16698             'IO::Uncompress::Unzip' => '2.087',
16699             'Module::CoreList'      => '5.20190820',
16700             'Module::CoreList::Utils'=> '5.20190820',
16701             'PerlIO::via'           => '0.18',
16702             'Storable'              => '3.17',
16703             'Test2'                 => '1.302166',
16704             'Test2::API'            => '1.302166',
16705             'Test2::API::Breakage'  => '1.302166',
16706             'Test2::API::Context'   => '1.302166',
16707             'Test2::API::Instance'  => '1.302166',
16708             'Test2::API::Stack'     => '1.302166',
16709             'Test2::Event'          => '1.302166',
16710             'Test2::Event::Bail'    => '1.302166',
16711             'Test2::Event::Diag'    => '1.302166',
16712             'Test2::Event::Encoding'=> '1.302166',
16713             'Test2::Event::Exception'=> '1.302166',
16714             'Test2::Event::Fail'    => '1.302166',
16715             'Test2::Event::Generic' => '1.302166',
16716             'Test2::Event::Note'    => '1.302166',
16717             'Test2::Event::Ok'      => '1.302166',
16718             'Test2::Event::Pass'    => '1.302166',
16719             'Test2::Event::Plan'    => '1.302166',
16720             'Test2::Event::Skip'    => '1.302166',
16721             'Test2::Event::Subtest' => '1.302166',
16722             'Test2::Event::TAP::Version'=> '1.302166',
16723             'Test2::Event::V2'      => '1.302166',
16724             'Test2::Event::Waiting' => '1.302166',
16725             'Test2::EventFacet'     => '1.302166',
16726             'Test2::EventFacet::About'=> '1.302166',
16727             'Test2::EventFacet::Amnesty'=> '1.302166',
16728             'Test2::EventFacet::Assert'=> '1.302166',
16729             'Test2::EventFacet::Control'=> '1.302166',
16730             'Test2::EventFacet::Error'=> '1.302166',
16731             'Test2::EventFacet::Hub'=> '1.302166',
16732             'Test2::EventFacet::Info'=> '1.302166',
16733             'Test2::EventFacet::Info::Table'=> '1.302166',
16734             'Test2::EventFacet::Meta'=> '1.302166',
16735             'Test2::EventFacet::Parent'=> '1.302166',
16736             'Test2::EventFacet::Plan'=> '1.302166',
16737             'Test2::EventFacet::Render'=> '1.302166',
16738             'Test2::EventFacet::Trace'=> '1.302166',
16739             'Test2::Formatter'      => '1.302166',
16740             'Test2::Formatter::TAP' => '1.302166',
16741             'Test2::Hub'            => '1.302166',
16742             'Test2::Hub::Interceptor'=> '1.302166',
16743             'Test2::Hub::Interceptor::Terminator'=> '1.302166',
16744             'Test2::Hub::Subtest'   => '1.302166',
16745             'Test2::IPC'            => '1.302166',
16746             'Test2::IPC::Driver'    => '1.302166',
16747             'Test2::IPC::Driver::Files'=> '1.302166',
16748             'Test2::Tools::Tiny'    => '1.302166',
16749             'Test2::Util'           => '1.302166',
16750             'Test2::Util::ExternalMeta'=> '1.302166',
16751             'Test2::Util::Facets2Legacy'=> '1.302166',
16752             'Test2::Util::HashBase' => '1.302166',
16753             'Test2::Util::Trace'    => '1.302166',
16754             'Test::Builder'         => '1.302166',
16755             'Test::Builder::Formatter'=> '1.302166',
16756             'Test::Builder::Module' => '1.302166',
16757             'Test::Builder::Tester' => '1.302166',
16758             'Test::Builder::Tester::Color'=> '1.302166',
16759             'Test::Builder::TodoDiag'=> '1.302166',
16760             'Test::More'            => '1.302166',
16761             'Test::Simple'          => '1.302166',
16762             'Test::Tester'          => '1.302166',
16763             'Test::Tester::Capture' => '1.302166',
16764             'Test::Tester::CaptureRunner'=> '1.302166',
16765             'Test::Tester::Delegate'=> '1.302166',
16766             'Test::use::ok'         => '1.302166',
16767             'Thread'                => '3.05',
16768             'Time::HiRes'           => '1.9762',
16769             'Win32'                 => '0.53',
16770             'XS::APItest'           => '1.02',
16771             'ok'                    => '1.302166',
16772         },
16773         removed => {
16774         }
16775     },
16776     5.031004 => {
16777         delta_from => 5.031003,
16778         changed => {
16779             'B::Op_private'         => '5.031004',
16780             'Config'                => '5.031004',
16781             'ExtUtils::Command'     => '7.38',
16782             'ExtUtils::Command::MM' => '7.38',
16783             'ExtUtils::Liblist'     => '7.38',
16784             'ExtUtils::Liblist::Kid'=> '7.38',
16785             'ExtUtils::MM'          => '7.38',
16786             'ExtUtils::MM_AIX'      => '7.38',
16787             'ExtUtils::MM_Any'      => '7.38',
16788             'ExtUtils::MM_BeOS'     => '7.38',
16789             'ExtUtils::MM_Cygwin'   => '7.38',
16790             'ExtUtils::MM_DOS'      => '7.38',
16791             'ExtUtils::MM_Darwin'   => '7.38',
16792             'ExtUtils::MM_MacOS'    => '7.38',
16793             'ExtUtils::MM_NW5'      => '7.38',
16794             'ExtUtils::MM_OS2'      => '7.38',
16795             'ExtUtils::MM_QNX'      => '7.38',
16796             'ExtUtils::MM_UWIN'     => '7.38',
16797             'ExtUtils::MM_Unix'     => '7.38',
16798             'ExtUtils::MM_VMS'      => '7.38',
16799             'ExtUtils::MM_VOS'      => '7.38',
16800             'ExtUtils::MM_Win32'    => '7.38',
16801             'ExtUtils::MM_Win95'    => '7.38',
16802             'ExtUtils::MY'          => '7.38',
16803             'ExtUtils::MakeMaker'   => '7.38',
16804             'ExtUtils::MakeMaker::Config'=> '7.38',
16805             'ExtUtils::MakeMaker::Locale'=> '7.38',
16806             'ExtUtils::MakeMaker::version'=> '7.38',
16807             'ExtUtils::MakeMaker::version::regex'=> '7.38',
16808             'ExtUtils::Mkbootstrap' => '7.38',
16809             'ExtUtils::Mksymlists'  => '7.38',
16810             'ExtUtils::testlib'     => '7.38',
16811             'I18N::Langinfo'        => '0.19',
16812             'List::Util'            => '1.52',
16813             'List::Util::XS'        => '1.52',
16814             'Module::CoreList'      => '5.20190920',
16815             'Module::CoreList::Utils'=> '5.20190920',
16816             'Module::Metadata'      => '1.000037',
16817             'Scalar::Util'          => '1.52',
16818             'Sub::Util'             => '1.52',
16819             'Test2'                 => '1.302168',
16820             'Test2::API'            => '1.302168',
16821             'Test2::API::Breakage'  => '1.302168',
16822             'Test2::API::Context'   => '1.302168',
16823             'Test2::API::Instance'  => '1.302168',
16824             'Test2::API::Stack'     => '1.302168',
16825             'Test2::Event'          => '1.302168',
16826             'Test2::Event::Bail'    => '1.302168',
16827             'Test2::Event::Diag'    => '1.302168',
16828             'Test2::Event::Encoding'=> '1.302168',
16829             'Test2::Event::Exception'=> '1.302168',
16830             'Test2::Event::Fail'    => '1.302168',
16831             'Test2::Event::Generic' => '1.302168',
16832             'Test2::Event::Note'    => '1.302168',
16833             'Test2::Event::Ok'      => '1.302168',
16834             'Test2::Event::Pass'    => '1.302168',
16835             'Test2::Event::Plan'    => '1.302168',
16836             'Test2::Event::Skip'    => '1.302168',
16837             'Test2::Event::Subtest' => '1.302168',
16838             'Test2::Event::TAP::Version'=> '1.302168',
16839             'Test2::Event::V2'      => '1.302168',
16840             'Test2::Event::Waiting' => '1.302168',
16841             'Test2::EventFacet'     => '1.302168',
16842             'Test2::EventFacet::About'=> '1.302168',
16843             'Test2::EventFacet::Amnesty'=> '1.302168',
16844             'Test2::EventFacet::Assert'=> '1.302168',
16845             'Test2::EventFacet::Control'=> '1.302168',
16846             'Test2::EventFacet::Error'=> '1.302168',
16847             'Test2::EventFacet::Hub'=> '1.302168',
16848             'Test2::EventFacet::Info'=> '1.302168',
16849             'Test2::EventFacet::Info::Table'=> '1.302168',
16850             'Test2::EventFacet::Meta'=> '1.302168',
16851             'Test2::EventFacet::Parent'=> '1.302168',
16852             'Test2::EventFacet::Plan'=> '1.302168',
16853             'Test2::EventFacet::Render'=> '1.302168',
16854             'Test2::EventFacet::Trace'=> '1.302168',
16855             'Test2::Formatter'      => '1.302168',
16856             'Test2::Formatter::TAP' => '1.302168',
16857             'Test2::Hub'            => '1.302168',
16858             'Test2::Hub::Interceptor'=> '1.302168',
16859             'Test2::Hub::Interceptor::Terminator'=> '1.302168',
16860             'Test2::Hub::Subtest'   => '1.302168',
16861             'Test2::IPC'            => '1.302168',
16862             'Test2::IPC::Driver'    => '1.302168',
16863             'Test2::IPC::Driver::Files'=> '1.302168',
16864             'Test2::Tools::Tiny'    => '1.302168',
16865             'Test2::Util'           => '1.302168',
16866             'Test2::Util::ExternalMeta'=> '1.302168',
16867             'Test2::Util::Facets2Legacy'=> '1.302168',
16868             'Test2::Util::HashBase' => '1.302168',
16869             'Test2::Util::Trace'    => '1.302168',
16870             'Test::Builder'         => '1.302168',
16871             'Test::Builder::Formatter'=> '1.302168',
16872             'Test::Builder::Module' => '1.302168',
16873             'Test::Builder::Tester' => '1.302168',
16874             'Test::Builder::Tester::Color'=> '1.302168',
16875             'Test::Builder::TodoDiag'=> '1.302168',
16876             'Test::More'            => '1.302168',
16877             'Test::Simple'          => '1.302168',
16878             'Test::Tester'          => '1.302168',
16879             'Test::Tester::Capture' => '1.302168',
16880             'Test::Tester::CaptureRunner'=> '1.302168',
16881             'Test::Tester::Delegate'=> '1.302168',
16882             'Test::use::ok'         => '1.302168',
16883             'Time::HiRes'           => '1.9763',
16884             'XS::APItest'           => '1.03',
16885             'ok'                    => '1.302168',
16886             're'                    => '0.38',
16887         },
16888         removed => {
16889         }
16890     },
16891     5.031005 => {
16892         delta_from => 5.031004,
16893         changed => {
16894             'B'                     => '1.77',
16895             'B::Deparse'            => '1.50',
16896             'B::Op_private'         => '5.031005',
16897             'Config'                => '5.031005',
16898             'Devel::PPPort'         => '3.54',
16899             'Digest::MD5'           => '2.55_01',
16900             'Dumpvalue'             => '1.21',
16901             'ExtUtils::CBuilder'    => '0.280233',
16902             'Math::BigFloat'        => '1.999817_01',
16903             'Math::BigInt'          => '1.999817_01',
16904             'Math::BigInt::Calc'    => '1.999817_01',
16905             'Math::BigInt::FastCalc'=> '0.5009',
16906             'Math::BigInt::Lib'     => '1.999817_01',
16907             'Module::CoreList'      => '5.20191020',
16908             'Module::CoreList::Utils'=> '5.20191020',
16909             'Safe'                  => '2.41',
16910             'Time::HiRes'           => '1.9764',
16911             'XS::APItest'           => '1.04',
16912             'threads'               => '2.23',
16913         },
16914         removed => {
16915         }
16916     },
16917     5.030001 => {
16918         delta_from => 5.030000,
16919         changed => {
16920             'B::Op_private'         => '5.030001',
16921             'Config'                => '5.030001',
16922             'Module::CoreList'      => '5.20191110',
16923             'Module::CoreList::Utils'=> '5.20191110',
16924         },
16925         removed => {
16926         }
16927     },
16928     5.031006 => {
16929         delta_from => 5.031005,
16930         changed => {
16931             'B::Deparse'            => '1.51',
16932             'B::Op_private'         => '5.031006',
16933             'Compress::Raw::Bzip2'  => '2.090',
16934             'Compress::Raw::Zlib'   => '2.090',
16935             'Compress::Zlib'        => '2.090',
16936             'Config'                => '5.031006',
16937             'Devel::PPPort'         => '3.55',
16938             'DynaLoader'            => '1.46',
16939             'IO::Compress::Adapter::Bzip2'=> '2.090',
16940             'IO::Compress::Adapter::Deflate'=> '2.090',
16941             'IO::Compress::Adapter::Identity'=> '2.090',
16942             'IO::Compress::Base'    => '2.090',
16943             'IO::Compress::Base::Common'=> '2.090',
16944             'IO::Compress::Bzip2'   => '2.090',
16945             'IO::Compress::Deflate' => '2.090',
16946             'IO::Compress::Gzip'    => '2.090',
16947             'IO::Compress::Gzip::Constants'=> '2.090',
16948             'IO::Compress::RawDeflate'=> '2.090',
16949             'IO::Compress::Zip'     => '2.090',
16950             'IO::Compress::Zip::Constants'=> '2.090',
16951             'IO::Compress::Zlib::Constants'=> '2.090',
16952             'IO::Compress::Zlib::Extra'=> '2.090',
16953             'IO::Uncompress::Adapter::Bunzip2'=> '2.090',
16954             'IO::Uncompress::Adapter::Identity'=> '2.090',
16955             'IO::Uncompress::Adapter::Inflate'=> '2.090',
16956             'IO::Uncompress::AnyInflate'=> '2.090',
16957             'IO::Uncompress::AnyUncompress'=> '2.090',
16958             'IO::Uncompress::Base'  => '2.090',
16959             'IO::Uncompress::Bunzip2'=> '2.090',
16960             'IO::Uncompress::Gunzip'=> '2.090',
16961             'IO::Uncompress::Inflate'=> '2.090',
16962             'IO::Uncompress::RawInflate'=> '2.090',
16963             'IO::Uncompress::Unzip' => '2.090',
16964             'List::Util'            => '1.53',
16965             'List::Util::XS'        => '1.53',
16966             'Math::BigFloat'        => '1.999818',
16967             'Math::BigInt'          => '1.999818',
16968             'Math::BigInt::Calc'    => '1.999818',
16969             'Math::BigInt::Lib'     => '1.999818',
16970             'Module::CoreList'      => '5.20191120',
16971             'Module::CoreList::Utils'=> '5.20191120',
16972             'Module::Load::Conditional'=> '0.70',
16973             'POSIX'                 => '1.90',
16974             'Pod::Simple'           => '3.40',
16975             'Pod::Simple::BlackBox' => '3.40',
16976             'Pod::Simple::Checker'  => '3.40',
16977             'Pod::Simple::Debug'    => '3.40',
16978             'Pod::Simple::DumpAsText'=> '3.40',
16979             'Pod::Simple::DumpAsXML'=> '3.40',
16980             'Pod::Simple::HTML'     => '3.40',
16981             'Pod::Simple::HTMLBatch'=> '3.40',
16982             'Pod::Simple::LinkSection'=> '3.40',
16983             'Pod::Simple::Methody'  => '3.40',
16984             'Pod::Simple::Progress' => '3.40',
16985             'Pod::Simple::PullParser'=> '3.40',
16986             'Pod::Simple::PullParserEndToken'=> '3.40',
16987             'Pod::Simple::PullParserStartToken'=> '3.40',
16988             'Pod::Simple::PullParserTextToken'=> '3.40',
16989             'Pod::Simple::PullParserToken'=> '3.40',
16990             'Pod::Simple::RTF'      => '3.40',
16991             'Pod::Simple::Search'   => '3.40',
16992             'Pod::Simple::SimpleTree'=> '3.40',
16993             'Pod::Simple::Text'     => '3.40',
16994             'Pod::Simple::TextContent'=> '3.40',
16995             'Pod::Simple::TiedOutFH'=> '3.40',
16996             'Pod::Simple::Transcode'=> '3.40',
16997             'Pod::Simple::TranscodeDumb'=> '3.40',
16998             'Pod::Simple::TranscodeSmart'=> '3.40',
16999             'Pod::Simple::XHTML'    => '3.40',
17000             'Pod::Simple::XMLOutStream'=> '3.40',
17001             'Scalar::Util'          => '1.53',
17002             'Sub::Util'             => '1.53',
17003             'Sys::Syslog'           => '0.36',
17004             'Test2'                 => '1.302169',
17005             'Test2::API'            => '1.302169',
17006             'Test2::API::Breakage'  => '1.302169',
17007             'Test2::API::Context'   => '1.302169',
17008             'Test2::API::Instance'  => '1.302169',
17009             'Test2::API::Stack'     => '1.302169',
17010             'Test2::Event'          => '1.302169',
17011             'Test2::Event::Bail'    => '1.302169',
17012             'Test2::Event::Diag'    => '1.302169',
17013             'Test2::Event::Encoding'=> '1.302169',
17014             'Test2::Event::Exception'=> '1.302169',
17015             'Test2::Event::Fail'    => '1.302169',
17016             'Test2::Event::Generic' => '1.302169',
17017             'Test2::Event::Note'    => '1.302169',
17018             'Test2::Event::Ok'      => '1.302169',
17019             'Test2::Event::Pass'    => '1.302169',
17020             'Test2::Event::Plan'    => '1.302169',
17021             'Test2::Event::Skip'    => '1.302169',
17022             'Test2::Event::Subtest' => '1.302169',
17023             'Test2::Event::TAP::Version'=> '1.302169',
17024             'Test2::Event::V2'      => '1.302169',
17025             'Test2::Event::Waiting' => '1.302169',
17026             'Test2::EventFacet'     => '1.302169',
17027             'Test2::EventFacet::About'=> '1.302169',
17028             'Test2::EventFacet::Amnesty'=> '1.302169',
17029             'Test2::EventFacet::Assert'=> '1.302169',
17030             'Test2::EventFacet::Control'=> '1.302169',
17031             'Test2::EventFacet::Error'=> '1.302169',
17032             'Test2::EventFacet::Hub'=> '1.302169',
17033             'Test2::EventFacet::Info'=> '1.302169',
17034             'Test2::EventFacet::Info::Table'=> '1.302169',
17035             'Test2::EventFacet::Meta'=> '1.302169',
17036             'Test2::EventFacet::Parent'=> '1.302169',
17037             'Test2::EventFacet::Plan'=> '1.302169',
17038             'Test2::EventFacet::Render'=> '1.302169',
17039             'Test2::EventFacet::Trace'=> '1.302169',
17040             'Test2::Formatter'      => '1.302169',
17041             'Test2::Formatter::TAP' => '1.302169',
17042             'Test2::Hub'            => '1.302169',
17043             'Test2::Hub::Interceptor'=> '1.302169',
17044             'Test2::Hub::Interceptor::Terminator'=> '1.302169',
17045             'Test2::Hub::Subtest'   => '1.302169',
17046             'Test2::IPC'            => '1.302169',
17047             'Test2::IPC::Driver'    => '1.302169',
17048             'Test2::IPC::Driver::Files'=> '1.302169',
17049             'Test2::Tools::Tiny'    => '1.302169',
17050             'Test2::Util'           => '1.302169',
17051             'Test2::Util::ExternalMeta'=> '1.302169',
17052             'Test2::Util::Facets2Legacy'=> '1.302169',
17053             'Test2::Util::HashBase' => '1.302169',
17054             'Test2::Util::Trace'    => '1.302169',
17055             'Test::Builder'         => '1.302169',
17056             'Test::Builder::Formatter'=> '1.302169',
17057             'Test::Builder::Module' => '1.302169',
17058             'Test::Builder::Tester' => '1.302169',
17059             'Test::Builder::Tester::Color'=> '1.302169',
17060             'Test::Builder::TodoDiag'=> '1.302169',
17061             'Test::More'            => '1.302169',
17062             'Test::Simple'          => '1.302169',
17063             'Test::Tester'          => '1.302169',
17064             'Test::Tester::Capture' => '1.302169',
17065             'Test::Tester::CaptureRunner'=> '1.302169',
17066             'Test::Tester::Delegate'=> '1.302169',
17067             'Test::use::ok'         => '1.302169',
17068             'Tie::StdHandle'        => '4.6',
17069             'Unicode::UCD'          => '0.74',
17070             'Win32API::File'        => '0.1203_01',
17071             'feature'               => '1.56',
17072             'mro'                   => '1.23',
17073             'ok'                    => '1.302169',
17074             'perlfaq'               => '5.20191102',
17075         },
17076         removed => {
17077         }
17078     },
17079     5.031007 => {
17080         delta_from => 5.031006,
17081         changed => {
17082             'B'                     => '1.78',
17083             'B::Deparse'            => '1.52',
17084             'B::Op_private'         => '5.031007',
17085             'Compress::Raw::Bzip2'  => '2.093',
17086             'Compress::Raw::Zlib'   => '2.093',
17087             'Compress::Zlib'        => '2.093',
17088             'Config'                => '5.031007',
17089             'Devel::PPPort'         => '3.56',
17090             'English'               => '1.11',
17091             'ExtUtils::Command'     => '7.42',
17092             'ExtUtils::Command::MM' => '7.42',
17093             'ExtUtils::Liblist'     => '7.42',
17094             'ExtUtils::Liblist::Kid'=> '7.42',
17095             'ExtUtils::MM'          => '7.42',
17096             'ExtUtils::MM_AIX'      => '7.42',
17097             'ExtUtils::MM_Any'      => '7.42',
17098             'ExtUtils::MM_BeOS'     => '7.42',
17099             'ExtUtils::MM_Cygwin'   => '7.42',
17100             'ExtUtils::MM_DOS'      => '7.42',
17101             'ExtUtils::MM_Darwin'   => '7.42',
17102             'ExtUtils::MM_MacOS'    => '7.42',
17103             'ExtUtils::MM_NW5'      => '7.42',
17104             'ExtUtils::MM_OS2'      => '7.42',
17105             'ExtUtils::MM_QNX'      => '7.42',
17106             'ExtUtils::MM_UWIN'     => '7.42',
17107             'ExtUtils::MM_Unix'     => '7.42',
17108             'ExtUtils::MM_VMS'      => '7.42',
17109             'ExtUtils::MM_VOS'      => '7.42',
17110             'ExtUtils::MM_Win32'    => '7.42',
17111             'ExtUtils::MM_Win95'    => '7.42',
17112             'ExtUtils::MY'          => '7.42',
17113             'ExtUtils::MakeMaker'   => '7.42',
17114             'ExtUtils::MakeMaker::Config'=> '7.42',
17115             'ExtUtils::MakeMaker::Locale'=> '7.42',
17116             'ExtUtils::MakeMaker::version'=> '7.42',
17117             'ExtUtils::MakeMaker::version::regex'=> '7.42',
17118             'ExtUtils::Mkbootstrap' => '7.42',
17119             'ExtUtils::Mksymlists'  => '7.42',
17120             'ExtUtils::testlib'     => '7.42',
17121             'File::stat'            => '1.09',
17122             'Filter::Simple'        => '0.96',
17123             'IO::Compress::Adapter::Bzip2'=> '2.093',
17124             'IO::Compress::Adapter::Deflate'=> '2.093',
17125             'IO::Compress::Adapter::Identity'=> '2.093',
17126             'IO::Compress::Base'    => '2.093',
17127             'IO::Compress::Base::Common'=> '2.093',
17128             'IO::Compress::Bzip2'   => '2.093',
17129             'IO::Compress::Deflate' => '2.093',
17130             'IO::Compress::Gzip'    => '2.093',
17131             'IO::Compress::Gzip::Constants'=> '2.093',
17132             'IO::Compress::RawDeflate'=> '2.093',
17133             'IO::Compress::Zip'     => '2.093',
17134             'IO::Compress::Zip::Constants'=> '2.093',
17135             'IO::Compress::Zlib::Constants'=> '2.093',
17136             'IO::Compress::Zlib::Extra'=> '2.093',
17137             'IO::Uncompress::Adapter::Bunzip2'=> '2.093',
17138             'IO::Uncompress::Adapter::Identity'=> '2.093',
17139             'IO::Uncompress::Adapter::Inflate'=> '2.093',
17140             'IO::Uncompress::AnyInflate'=> '2.093',
17141             'IO::Uncompress::AnyUncompress'=> '2.093',
17142             'IO::Uncompress::Base'  => '2.093',
17143             'IO::Uncompress::Bunzip2'=> '2.093',
17144             'IO::Uncompress::Gunzip'=> '2.093',
17145             'IO::Uncompress::Inflate'=> '2.093',
17146             'IO::Uncompress::RawInflate'=> '2.093',
17147             'IO::Uncompress::Unzip' => '2.093',
17148             'Module::CoreList'      => '5.20191220',
17149             'Module::CoreList::Utils'=> '5.20191220',
17150             'Net::Ping'             => '2.72',
17151             'Opcode'                => '1.45',
17152             'Storable'              => '3.18',
17153             'Test2'                 => '1.302170',
17154             'Test2::API'            => '1.302170',
17155             'Test2::API::Breakage'  => '1.302170',
17156             'Test2::API::Context'   => '1.302170',
17157             'Test2::API::Instance'  => '1.302170',
17158             'Test2::API::Stack'     => '1.302170',
17159             'Test2::Event'          => '1.302170',
17160             'Test2::Event::Bail'    => '1.302170',
17161             'Test2::Event::Diag'    => '1.302170',
17162             'Test2::Event::Encoding'=> '1.302170',
17163             'Test2::Event::Exception'=> '1.302170',
17164             'Test2::Event::Fail'    => '1.302170',
17165             'Test2::Event::Generic' => '1.302170',
17166             'Test2::Event::Note'    => '1.302170',
17167             'Test2::Event::Ok'      => '1.302170',
17168             'Test2::Event::Pass'    => '1.302170',
17169             'Test2::Event::Plan'    => '1.302170',
17170             'Test2::Event::Skip'    => '1.302170',
17171             'Test2::Event::Subtest' => '1.302170',
17172             'Test2::Event::TAP::Version'=> '1.302170',
17173             'Test2::Event::V2'      => '1.302170',
17174             'Test2::Event::Waiting' => '1.302170',
17175             'Test2::EventFacet'     => '1.302170',
17176             'Test2::EventFacet::About'=> '1.302170',
17177             'Test2::EventFacet::Amnesty'=> '1.302170',
17178             'Test2::EventFacet::Assert'=> '1.302170',
17179             'Test2::EventFacet::Control'=> '1.302170',
17180             'Test2::EventFacet::Error'=> '1.302170',
17181             'Test2::EventFacet::Hub'=> '1.302170',
17182             'Test2::EventFacet::Info'=> '1.302170',
17183             'Test2::EventFacet::Info::Table'=> '1.302170',
17184             'Test2::EventFacet::Meta'=> '1.302170',
17185             'Test2::EventFacet::Parent'=> '1.302170',
17186             'Test2::EventFacet::Plan'=> '1.302170',
17187             'Test2::EventFacet::Render'=> '1.302170',
17188             'Test2::EventFacet::Trace'=> '1.302170',
17189             'Test2::Formatter'      => '1.302170',
17190             'Test2::Formatter::TAP' => '1.302170',
17191             'Test2::Hub'            => '1.302170',
17192             'Test2::Hub::Interceptor'=> '1.302170',
17193             'Test2::Hub::Interceptor::Terminator'=> '1.302170',
17194             'Test2::Hub::Subtest'   => '1.302170',
17195             'Test2::IPC'            => '1.302170',
17196             'Test2::IPC::Driver'    => '1.302170',
17197             'Test2::IPC::Driver::Files'=> '1.302170',
17198             'Test2::Tools::Tiny'    => '1.302170',
17199             'Test2::Util'           => '1.302170',
17200             'Test2::Util::ExternalMeta'=> '1.302170',
17201             'Test2::Util::Facets2Legacy'=> '1.302170',
17202             'Test2::Util::HashBase' => '1.302170',
17203             'Test2::Util::Trace'    => '1.302170',
17204             'Test::Builder'         => '1.302170',
17205             'Test::Builder::Formatter'=> '1.302170',
17206             'Test::Builder::Module' => '1.302170',
17207             'Test::Builder::Tester' => '1.302170',
17208             'Test::Builder::Tester::Color'=> '1.302170',
17209             'Test::Builder::TodoDiag'=> '1.302170',
17210             'Test::More'            => '1.302170',
17211             'Test::Simple'          => '1.302170',
17212             'Test::Tester'          => '1.302170',
17213             'Test::Tester::Capture' => '1.302170',
17214             'Test::Tester::CaptureRunner'=> '1.302170',
17215             'Test::Tester::Delegate'=> '1.302170',
17216             'Test::use::ok'         => '1.302170',
17217             'Tie::Hash::NamedCapture'=> '0.13',
17218             'VMS::Stdio'            => '2.45',
17219             'XS::APItest'           => '1.05',
17220             'feature'               => '1.57',
17221             'ok'                    => '1.302170',
17222             'warnings'              => '1.46',
17223         },
17224         removed => {
17225         }
17226     },
17227     5.031008 => {
17228         delta_from => 5.031007,
17229         changed => {
17230             'B::Op_private'         => '5.031008',
17231             'Config'                => '5.031008',
17232             'DB_File'               => '1.853',
17233             'Encode'                => '3.02',
17234             'ExtUtils::Command'     => '7.44',
17235             'ExtUtils::Command::MM' => '7.44',
17236             'ExtUtils::Liblist'     => '7.44',
17237             'ExtUtils::Liblist::Kid'=> '7.44',
17238             'ExtUtils::MM'          => '7.44',
17239             'ExtUtils::MM_AIX'      => '7.44',
17240             'ExtUtils::MM_Any'      => '7.44',
17241             'ExtUtils::MM_BeOS'     => '7.44',
17242             'ExtUtils::MM_Cygwin'   => '7.44',
17243             'ExtUtils::MM_DOS'      => '7.44',
17244             'ExtUtils::MM_Darwin'   => '7.44',
17245             'ExtUtils::MM_MacOS'    => '7.44',
17246             'ExtUtils::MM_NW5'      => '7.44',
17247             'ExtUtils::MM_OS2'      => '7.44',
17248             'ExtUtils::MM_QNX'      => '7.44',
17249             'ExtUtils::MM_UWIN'     => '7.44',
17250             'ExtUtils::MM_Unix'     => '7.44',
17251             'ExtUtils::MM_VMS'      => '7.44',
17252             'ExtUtils::MM_VOS'      => '7.44',
17253             'ExtUtils::MM_Win32'    => '7.44',
17254             'ExtUtils::MM_Win95'    => '7.44',
17255             'ExtUtils::MY'          => '7.44',
17256             'ExtUtils::MakeMaker'   => '7.44',
17257             'ExtUtils::MakeMaker::Config'=> '7.44',
17258             'ExtUtils::MakeMaker::Locale'=> '7.44',
17259             'ExtUtils::MakeMaker::version'=> '7.44',
17260             'ExtUtils::MakeMaker::version::regex'=> '7.44',
17261             'ExtUtils::Mkbootstrap' => '7.44',
17262             'ExtUtils::Mksymlists'  => '7.44',
17263             'ExtUtils::testlib'     => '7.44',
17264             'Fatal'                 => '2.32',
17265             'Hash::Util'            => '0.23',
17266             'IO'                    => '1.42',
17267             'IO::Handle'            => '1.42',
17268             'IO::Socket'            => '1.42',
17269             'Module::CoreList'      => '5.20200120',
17270             'Module::CoreList::Utils'=> '5.20200120',
17271             'POSIX'                 => '1.91',
17272             'Pod::Man'              => '4.14',
17273             'Pod::ParseLink'        => '4.14',
17274             'Pod::Text'             => '4.14',
17275             'Pod::Text::Color'      => '4.14',
17276             'Pod::Text::Overstrike' => '4.14',
17277             'Pod::Text::Termcap'    => '4.14',
17278             'Term::ANSIColor'       => '5.01',
17279             'Test2'                 => '1.302171',
17280             'Test2::API'            => '1.302171',
17281             'Test2::API::Breakage'  => '1.302171',
17282             'Test2::API::Context'   => '1.302171',
17283             'Test2::API::Instance'  => '1.302171',
17284             'Test2::API::Stack'     => '1.302171',
17285             'Test2::Event'          => '1.302171',
17286             'Test2::Event::Bail'    => '1.302171',
17287             'Test2::Event::Diag'    => '1.302171',
17288             'Test2::Event::Encoding'=> '1.302171',
17289             'Test2::Event::Exception'=> '1.302171',
17290             'Test2::Event::Fail'    => '1.302171',
17291             'Test2::Event::Generic' => '1.302171',
17292             'Test2::Event::Note'    => '1.302171',
17293             'Test2::Event::Ok'      => '1.302171',
17294             'Test2::Event::Pass'    => '1.302171',
17295             'Test2::Event::Plan'    => '1.302171',
17296             'Test2::Event::Skip'    => '1.302171',
17297             'Test2::Event::Subtest' => '1.302171',
17298             'Test2::Event::TAP::Version'=> '1.302171',
17299             'Test2::Event::V2'      => '1.302171',
17300             'Test2::Event::Waiting' => '1.302171',
17301             'Test2::EventFacet'     => '1.302171',
17302             'Test2::EventFacet::About'=> '1.302171',
17303             'Test2::EventFacet::Amnesty'=> '1.302171',
17304             'Test2::EventFacet::Assert'=> '1.302171',
17305             'Test2::EventFacet::Control'=> '1.302171',
17306             'Test2::EventFacet::Error'=> '1.302171',
17307             'Test2::EventFacet::Hub'=> '1.302171',
17308             'Test2::EventFacet::Info'=> '1.302171',
17309             'Test2::EventFacet::Info::Table'=> '1.302171',
17310             'Test2::EventFacet::Meta'=> '1.302171',
17311             'Test2::EventFacet::Parent'=> '1.302171',
17312             'Test2::EventFacet::Plan'=> '1.302171',
17313             'Test2::EventFacet::Render'=> '1.302171',
17314             'Test2::EventFacet::Trace'=> '1.302171',
17315             'Test2::Formatter'      => '1.302171',
17316             'Test2::Formatter::TAP' => '1.302171',
17317             'Test2::Hub'            => '1.302171',
17318             'Test2::Hub::Interceptor'=> '1.302171',
17319             'Test2::Hub::Interceptor::Terminator'=> '1.302171',
17320             'Test2::Hub::Subtest'   => '1.302171',
17321             'Test2::IPC'            => '1.302171',
17322             'Test2::IPC::Driver'    => '1.302171',
17323             'Test2::IPC::Driver::Files'=> '1.302171',
17324             'Test2::Tools::Tiny'    => '1.302171',
17325             'Test2::Util'           => '1.302171',
17326             'Test2::Util::ExternalMeta'=> '1.302171',
17327             'Test2::Util::Facets2Legacy'=> '1.302171',
17328             'Test2::Util::HashBase' => '1.302171',
17329             'Test2::Util::Trace'    => '1.302171',
17330             'Test::Builder'         => '1.302171',
17331             'Test::Builder::Formatter'=> '1.302171',
17332             'Test::Builder::Module' => '1.302171',
17333             'Test::Builder::Tester' => '1.302171',
17334             'Test::Builder::Tester::Color'=> '1.302171',
17335             'Test::Builder::TodoDiag'=> '1.302171',
17336             'Test::More'            => '1.302171',
17337             'Test::Simple'          => '1.302171',
17338             'Test::Tester'          => '1.302171',
17339             'Test::Tester::Capture' => '1.302171',
17340             'Test::Tester::CaptureRunner'=> '1.302171',
17341             'Test::Tester::Delegate'=> '1.302171',
17342             'Test::use::ok'         => '1.302171',
17343             'XS::APItest'           => '1.06',
17344             'autodie'               => '2.32',
17345             'autodie::Scope::Guard' => '2.32',
17346             'autodie::Scope::GuardStack'=> '2.32',
17347             'autodie::Util'         => '2.32',
17348             'autodie::exception'    => '2.32',
17349             'autodie::exception::system'=> '2.32',
17350             'autodie::hints'        => '2.32',
17351             'autodie::skip'         => '2.32',
17352             'ok'                    => '1.302171',
17353         },
17354         removed => {
17355         }
17356     },
17357     5.031009 => {
17358         delta_from => 5.031008,
17359         changed => {
17360             'Archive::Tar'          => '2.36',
17361             'Archive::Tar::Constant'=> '2.36',
17362             'Archive::Tar::File'    => '2.36',
17363             'B'                     => '1.80',
17364             'B::Op_private'         => '5.031009',
17365             'Config'                => '5.031009',
17366             'Devel::PPPort'         => '3.57',
17367             'Encode'                => '3.03',
17368             'ExtUtils::CBuilder'    => '0.280234',
17369             'ExtUtils::CBuilder::Base'=> '0.280234',
17370             'ExtUtils::CBuilder::Platform::Unix'=> '0.280234',
17371             'ExtUtils::CBuilder::Platform::VMS'=> '0.280234',
17372             'ExtUtils::CBuilder::Platform::Windows'=> '0.280234',
17373             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280234',
17374             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280234',
17375             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280234',
17376             'ExtUtils::CBuilder::Platform::aix'=> '0.280234',
17377             'ExtUtils::CBuilder::Platform::android'=> '0.280234',
17378             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280234',
17379             'ExtUtils::CBuilder::Platform::darwin'=> '0.280234',
17380             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280234',
17381             'ExtUtils::CBuilder::Platform::os2'=> '0.280234',
17382             'IO'                    => '1.43',
17383             'IO::Select'            => '1.42',
17384             'IO::Socket'            => '1.43',
17385             'Module::CoreList'      => '5.20200220',
17386             'Module::CoreList::Utils'=> '5.20200220',
17387             'POSIX'                 => '1.92',
17388             'Pod::Html'             => '1.25',
17389             'Storable'              => '3.19',
17390             'Tie::File'             => '1.06',
17391             'Unicode'               => '13.0.0',
17392             'XS::APItest'           => '1.07',
17393             '_charnames'            => '1.46',
17394             'charnames'             => '1.46',
17395             'diagnostics'           => '1.37',
17396             'feature'               => '1.58',
17397             'parent'                => '0.238',
17398             'perlfaq'               => '5.20200125',
17399             'threads'               => '2.24',
17400         },
17401         removed => {
17402         }
17403     },
17404     5.030002 => {
17405         delta_from => 5.030001,
17406         changed => {
17407             'B::Op_private'         => '5.030002',
17408             'Compress::Raw::Bzip2'  => '2.089',
17409             'Config'                => '5.030002',
17410             'Module::CoreList'      => '5.20200314',
17411             'Module::CoreList::Utils'=> '5.20200314',
17412         },
17413         removed => {
17414         }
17415     },
17416     5.031010 => {
17417         delta_from => 5.031009,
17418         changed => {
17419             'B::Op_private'         => '5.031010',
17420             'Config'                => '5.03101',
17421         },
17422         removed => {
17423         }
17424     },
17425     5.031011 => {
17426         delta_from => 5.031010,
17427         changed => {
17428             'B::Deparse'            => '1.53',
17429             'B::Op_private'         => '5.031011',
17430             'Config'                => '5.031011',
17431             'DynaLoader'            => '1.47',
17432             'Encode'                => '3.04',
17433             'IPC::Open2'            => '1.05',
17434             'IPC::Open3'            => '1.21',
17435             'Module::CoreList'      => '5.20200428',
17436             'Module::CoreList::Utils'=> '5.20200428',
17437             'Opcode'                => '1.47',
17438             'POSIX'                 => '1.93',
17439             'PerlIO'                => '1.11',
17440             'Storable'              => '3.20',
17441             'Test2'                 => '1.302175',
17442             'Test2::API'            => '1.302175',
17443             'Test2::API::Breakage'  => '1.302175',
17444             'Test2::API::Context'   => '1.302175',
17445             'Test2::API::Instance'  => '1.302175',
17446             'Test2::API::Stack'     => '1.302175',
17447             'Test2::Event'          => '1.302175',
17448             'Test2::Event::Bail'    => '1.302175',
17449             'Test2::Event::Diag'    => '1.302175',
17450             'Test2::Event::Encoding'=> '1.302175',
17451             'Test2::Event::Exception'=> '1.302175',
17452             'Test2::Event::Fail'    => '1.302175',
17453             'Test2::Event::Generic' => '1.302175',
17454             'Test2::Event::Note'    => '1.302175',
17455             'Test2::Event::Ok'      => '1.302175',
17456             'Test2::Event::Pass'    => '1.302175',
17457             'Test2::Event::Plan'    => '1.302175',
17458             'Test2::Event::Skip'    => '1.302175',
17459             'Test2::Event::Subtest' => '1.302175',
17460             'Test2::Event::TAP::Version'=> '1.302175',
17461             'Test2::Event::V2'      => '1.302175',
17462             'Test2::Event::Waiting' => '1.302175',
17463             'Test2::EventFacet'     => '1.302175',
17464             'Test2::EventFacet::About'=> '1.302175',
17465             'Test2::EventFacet::Amnesty'=> '1.302175',
17466             'Test2::EventFacet::Assert'=> '1.302175',
17467             'Test2::EventFacet::Control'=> '1.302175',
17468             'Test2::EventFacet::Error'=> '1.302175',
17469             'Test2::EventFacet::Hub'=> '1.302175',
17470             'Test2::EventFacet::Info'=> '1.302175',
17471             'Test2::EventFacet::Info::Table'=> '1.302175',
17472             'Test2::EventFacet::Meta'=> '1.302175',
17473             'Test2::EventFacet::Parent'=> '1.302175',
17474             'Test2::EventFacet::Plan'=> '1.302175',
17475             'Test2::EventFacet::Render'=> '1.302175',
17476             'Test2::EventFacet::Trace'=> '1.302175',
17477             'Test2::Formatter'      => '1.302175',
17478             'Test2::Formatter::TAP' => '1.302175',
17479             'Test2::Hub'            => '1.302175',
17480             'Test2::Hub::Interceptor'=> '1.302175',
17481             'Test2::Hub::Interceptor::Terminator'=> '1.302175',
17482             'Test2::Hub::Subtest'   => '1.302175',
17483             'Test2::IPC'            => '1.302175',
17484             'Test2::IPC::Driver'    => '1.302175',
17485             'Test2::IPC::Driver::Files'=> '1.302175',
17486             'Test2::Tools::Tiny'    => '1.302175',
17487             'Test2::Util'           => '1.302175',
17488             'Test2::Util::ExternalMeta'=> '1.302175',
17489             'Test2::Util::Facets2Legacy'=> '1.302175',
17490             'Test2::Util::HashBase' => '1.302175',
17491             'Test2::Util::Trace'    => '1.302175',
17492             'Test::Builder'         => '1.302175',
17493             'Test::Builder::Formatter'=> '1.302175',
17494             'Test::Builder::Module' => '1.302175',
17495             'Test::Builder::Tester' => '1.302175',
17496             'Test::Builder::Tester::Color'=> '1.302175',
17497             'Test::Builder::TodoDiag'=> '1.302175',
17498             'Test::More'            => '1.302175',
17499             'Test::Simple'          => '1.302175',
17500             'Test::Tester'          => '1.302175',
17501             'Test::Tester::Capture' => '1.302175',
17502             'Test::Tester::CaptureRunner'=> '1.302175',
17503             'Test::Tester::Delegate'=> '1.302175',
17504             'Test::use::ok'         => '1.302175',
17505             'Time::Piece'           => '1.3401',
17506             'Time::Seconds'         => '1.3401',
17507             'Unicode::UCD'          => '0.75',
17508             'XS::APItest'           => '1.09',
17509             '_charnames'            => '1.47',
17510             'charnames'             => '1.47',
17511             'ok'                    => '1.302175',
17512             'open'                  => '1.12',
17513             're'                    => '0.39',
17514             'warnings'              => '1.47',
17515         },
17516         removed => {
17517         }
17518     },
17519     5.028003 => {
17520         delta_from => 5.028002,
17521         changed => {
17522             'B::Op_private'         => '5.028003',
17523             'Config'                => '5.028003',
17524             'Module::CoreList'      => '5.20200601_28',
17525             'Module::CoreList::Utils'=> '5.20200601_28',
17526         },
17527         removed => {
17528         }
17529     },
17530     5.030003 => {
17531         delta_from => 5.030002,
17532         changed => {
17533             'B::Op_private'         => '5.030003',
17534             'Config'                => '5.030003',
17535             'Module::CoreList'      => '5.20200601_30',
17536             'Module::CoreList::Utils'=> '5.20200601_30',
17537         },
17538         removed => {
17539         }
17540     },
17541     5.032000 => {
17542         delta_from => 5.031011,
17543         changed => {
17544             'B::Deparse'            => '1.54',
17545             'B::Op_private'         => '5.032000',
17546             'Benchmark'             => '1.23',
17547             'Config'                => '5.032',
17548             'Encode'                => '3.06',
17549             'Encode::Guess'         => '2.08',
17550             'File::Glob'            => '1.33',
17551             'List::Util'            => '1.55',
17552             'List::Util::XS'        => '1.55',
17553             'Module::CoreList'      => '5.20200620',
17554             'Module::CoreList::Utils'=> '5.20200620',
17555             'POSIX'                 => '1.94',
17556             'Scalar::Util'          => '1.55',
17557             'Storable'              => '3.21',
17558             'Sub::Util'             => '1.55',
17559             'Thread::Queue'         => '3.14',
17560             'Tie::Scalar'           => '1.05',
17561             '_charnames'            => '1.48',
17562             'charnames'             => '1.48',
17563             'encoding'              => '3.00',
17564             'perlfaq'               => '5.20200523',
17565             're'                    => '0.40',
17566             'threads'               => '2.25',
17567         },
17568         removed => {
17569         }
17570     },
17571     5.033000 => {
17572         delta_from => 5.032000,
17573         changed => {
17574             'B::Op_private'         => '5.033000',
17575             'Config'                => '5.033',
17576             'Module::CoreList'      => '5.20200717',
17577             'Module::CoreList::Utils'=> '5.20200717',
17578             'feature'               => '1.59',
17579         },
17580         removed => {
17581         }
17582     },
17583     5.033001 => {
17584         delta_from => 5.033,
17585         changed => {
17586             'B'                     => '1.81',
17587             'B::Deparse'            => '1.55',
17588             'B::Op_private'         => '5.033001',
17589             'Config'                => '5.033001',
17590             'Data::Dumper'          => '2.175',
17591             'Devel::PPPort'         => '3.60',
17592             'Devel::Peek'           => '1.29',
17593             'DynaLoader'            => '1.48',
17594             'Errno'                 => '1.31',
17595             'Exporter'              => '5.75',
17596             'Exporter::Heavy'       => '5.75',
17597             'ExtUtils::Miniperl'    => '1.10',
17598             'ExtUtils::PL2Bat'      => '0.002',
17599             'ExtUtils::ParseXS'     => '3.41',
17600             'ExtUtils::ParseXS::Constants'=> '3.41',
17601             'ExtUtils::ParseXS::CountLines'=> '3.41',
17602             'ExtUtils::ParseXS::Eval'=> '3.41',
17603             'ExtUtils::ParseXS::Utilities'=> '3.41',
17604             'Fcntl'                 => '1.14',
17605             'File::Path'            => '2.17',
17606             'Hash::Util'            => '0.24',
17607             'Hash::Util::FieldHash' => '1.21',
17608             'IO'                    => '1.44',
17609             'IO::Socket'            => '1.44',
17610             'IO::Socket::UNIX'      => '1.42',
17611             'IPC::Msg'              => '2.08',
17612             'IPC::Semaphore'        => '2.08',
17613             'IPC::SharedMem'        => '2.08',
17614             'IPC::SysV'             => '2.08',
17615             'JSON::PP'              => '4.05',
17616             'JSON::PP::Boolean'     => '4.05',
17617             'Math::Complex'         => '1.5902',
17618             'Module::CoreList'      => '5.20200820',
17619             'Module::CoreList::Utils'=> '5.20200820',
17620             'Net::Ping'             => '2.73_01',
17621             'POSIX'                 => '1.95',
17622             'PerlIO::mmap'          => '0.017',
17623             'Pod::Usage'            => '1.70',
17624             'Safe'                  => '2.42',
17625             'Socket'                => '2.030',
17626             'Storable'              => '3.22',
17627             'Time::HiRes'           => '1.9765',
17628             'Unicode::Normalize'    => '1.28',
17629             'XS::APItest'           => '1.11',
17630             'XS::Typemap'           => '0.18',
17631             'feature'               => '1.60',
17632             'mro'                   => '1.24',
17633             'strict'                => '1.12',
17634             'threads'               => '2.26',
17635             'threads::shared'       => '1.62',
17636             'warnings'              => '1.48',
17637         },
17638         removed => {
17639             'Moped::Msg'            => 1,
17640         }
17641     },
17642     5.033002 => {
17643         delta_from => 5.033001,
17644         changed => {
17645             'Archive::Tar'          => '2.38',
17646             'Archive::Tar::Constant'=> '2.38',
17647             'Archive::Tar::File'    => '2.38',
17648             'B::Op_private'         => '5.033002',
17649             'Compress::Raw::Bzip2'  => '2.096',
17650             'Compress::Raw::Zlib'   => '2.096',
17651             'Compress::Zlib'        => '2.096',
17652             'Config'                => '5.033002',
17653             'DB_File'               => '1.854',
17654             'Env'                   => '1.05',
17655             'Errno'                 => '1.32',
17656             'ExtUtils::Install'     => '2.18',
17657             'ExtUtils::Installed'   => '2.18',
17658             'ExtUtils::Packlist'    => '2.18',
17659             'Filter::Util::Call'    => '1.60',
17660             'IO::Compress::Adapter::Bzip2'=> '2.096',
17661             'IO::Compress::Adapter::Deflate'=> '2.096',
17662             'IO::Compress::Adapter::Identity'=> '2.096',
17663             'IO::Compress::Base'    => '2.096',
17664             'IO::Compress::Base::Common'=> '2.096',
17665             'IO::Compress::Bzip2'   => '2.096',
17666             'IO::Compress::Deflate' => '2.096',
17667             'IO::Compress::Gzip'    => '2.096',
17668             'IO::Compress::Gzip::Constants'=> '2.096',
17669             'IO::Compress::RawDeflate'=> '2.096',
17670             'IO::Compress::Zip'     => '2.096',
17671             'IO::Compress::Zip::Constants'=> '2.096',
17672             'IO::Compress::Zlib::Constants'=> '2.096',
17673             'IO::Compress::Zlib::Extra'=> '2.096',
17674             'IO::Socket::IP'        => '0.41',
17675             'IO::Uncompress::Adapter::Bunzip2'=> '2.096',
17676             'IO::Uncompress::Adapter::Identity'=> '2.096',
17677             'IO::Uncompress::Adapter::Inflate'=> '2.096',
17678             'IO::Uncompress::AnyInflate'=> '2.096',
17679             'IO::Uncompress::AnyUncompress'=> '2.096',
17680             'IO::Uncompress::Base'  => '2.096',
17681             'IO::Uncompress::Bunzip2'=> '2.096',
17682             'IO::Uncompress::Gunzip'=> '2.096',
17683             'IO::Uncompress::Inflate'=> '2.096',
17684             'IO::Uncompress::RawInflate'=> '2.096',
17685             'IO::Uncompress::Unzip' => '2.096',
17686             'IO::Zlib'              => '1.11',
17687             'Module::CoreList'      => '5.20200920',
17688             'Module::CoreList::Utils'=> '5.20200920',
17689             'Module::Load::Conditional'=> '0.74',
17690             'Opcode'                => '1.48',
17691             'PerlIO::scalar'        => '0.31',
17692             'Safe'                  => '2.43',
17693             'Test2'                 => '1.302181',
17694             'Test2::API'            => '1.302181',
17695             'Test2::API::Breakage'  => '1.302181',
17696             'Test2::API::Context'   => '1.302181',
17697             'Test2::API::Instance'  => '1.302181',
17698             'Test2::API::InterceptResult'=> '1.302181',
17699             'Test2::API::InterceptResult::Event'=> '1.302181',
17700             'Test2::API::InterceptResult::Facet'=> '1.302181',
17701             'Test2::API::InterceptResult::Hub'=> '1.302181',
17702             'Test2::API::InterceptResult::Squasher'=> '1.302181',
17703             'Test2::API::Stack'     => '1.302181',
17704             'Test2::Event'          => '1.302181',
17705             'Test2::Event::Bail'    => '1.302181',
17706             'Test2::Event::Diag'    => '1.302181',
17707             'Test2::Event::Encoding'=> '1.302181',
17708             'Test2::Event::Exception'=> '1.302181',
17709             'Test2::Event::Fail'    => '1.302181',
17710             'Test2::Event::Generic' => '1.302181',
17711             'Test2::Event::Note'    => '1.302181',
17712             'Test2::Event::Ok'      => '1.302181',
17713             'Test2::Event::Pass'    => '1.302181',
17714             'Test2::Event::Plan'    => '1.302181',
17715             'Test2::Event::Skip'    => '1.302181',
17716             'Test2::Event::Subtest' => '1.302181',
17717             'Test2::Event::TAP::Version'=> '1.302181',
17718             'Test2::Event::V2'      => '1.302181',
17719             'Test2::Event::Waiting' => '1.302181',
17720             'Test2::EventFacet'     => '1.302181',
17721             'Test2::EventFacet::About'=> '1.302181',
17722             'Test2::EventFacet::Amnesty'=> '1.302181',
17723             'Test2::EventFacet::Assert'=> '1.302181',
17724             'Test2::EventFacet::Control'=> '1.302181',
17725             'Test2::EventFacet::Error'=> '1.302181',
17726             'Test2::EventFacet::Hub'=> '1.302181',
17727             'Test2::EventFacet::Info'=> '1.302181',
17728             'Test2::EventFacet::Info::Table'=> '1.302181',
17729             'Test2::EventFacet::Meta'=> '1.302181',
17730             'Test2::EventFacet::Parent'=> '1.302181',
17731             'Test2::EventFacet::Plan'=> '1.302181',
17732             'Test2::EventFacet::Render'=> '1.302181',
17733             'Test2::EventFacet::Trace'=> '1.302181',
17734             'Test2::Formatter'      => '1.302181',
17735             'Test2::Formatter::TAP' => '1.302181',
17736             'Test2::Hub'            => '1.302181',
17737             'Test2::Hub::Interceptor'=> '1.302181',
17738             'Test2::Hub::Interceptor::Terminator'=> '1.302181',
17739             'Test2::Hub::Subtest'   => '1.302181',
17740             'Test2::IPC'            => '1.302181',
17741             'Test2::IPC::Driver'    => '1.302181',
17742             'Test2::IPC::Driver::Files'=> '1.302181',
17743             'Test2::Tools::Tiny'    => '1.302181',
17744             'Test2::Util'           => '1.302181',
17745             'Test2::Util::ExternalMeta'=> '1.302181',
17746             'Test2::Util::Facets2Legacy'=> '1.302181',
17747             'Test2::Util::HashBase' => '1.302181',
17748             'Test2::Util::Trace'    => '1.302181',
17749             'Test::Builder'         => '1.302181',
17750             'Test::Builder::Formatter'=> '1.302181',
17751             'Test::Builder::Module' => '1.302181',
17752             'Test::Builder::Tester' => '1.302181',
17753             'Test::Builder::Tester::Color'=> '1.302181',
17754             'Test::Builder::TodoDiag'=> '1.302181',
17755             'Test::More'            => '1.302181',
17756             'Test::Simple'          => '1.302181',
17757             'Test::Tester'          => '1.302181',
17758             'Test::Tester::Capture' => '1.302181',
17759             'Test::Tester::CaptureRunner'=> '1.302181',
17760             'Test::Tester::Delegate'=> '1.302181',
17761             'Test::use::ok'         => '1.302181',
17762             'ok'                    => '1.302181',
17763             'overload'              => '1.32',
17764         },
17765         removed => {
17766         }
17767     },
17768     5.033003 => {
17769         delta_from => 5.033002,
17770         changed => {
17771             'Amiga::ARexx'          => '0.05',
17772             'App::Cpan'             => '1.676',
17773             'B::Op_private'         => '5.033003',
17774             'CPAN'                  => '2.28',
17775             'CPAN::FTP'             => '5.5013',
17776             'CPAN::FirstTime'       => '5.5315',
17777             'Config'                => '5.033003',
17778             'DB_File'               => '1.855',
17779             'Data::Dumper'          => '2.176',
17780             'Devel::PPPort'         => '3.62',
17781             'Devel::Peek'           => '1.30',
17782             'Digest'                => '1.19',
17783             'Digest::MD5'           => '2.58',
17784             'Digest::base'          => '1.19',
17785             'Digest::file'          => '1.19',
17786             'Encode'                => '3.07',
17787             'Encode::GSM0338'       => '2.08',
17788             'Errno'                 => '1.33',
17789             'Exporter'              => '5.76',
17790             'Exporter::Heavy'       => '5.76',
17791             'ExtUtils::Command'     => '7.48',
17792             'ExtUtils::Command::MM' => '7.48',
17793             'ExtUtils::Liblist'     => '7.48',
17794             'ExtUtils::Liblist::Kid'=> '7.48',
17795             'ExtUtils::MM'          => '7.48',
17796             'ExtUtils::MM_AIX'      => '7.48',
17797             'ExtUtils::MM_Any'      => '7.48',
17798             'ExtUtils::MM_BeOS'     => '7.48',
17799             'ExtUtils::MM_Cygwin'   => '7.48',
17800             'ExtUtils::MM_DOS'      => '7.48',
17801             'ExtUtils::MM_Darwin'   => '7.48',
17802             'ExtUtils::MM_MacOS'    => '7.48',
17803             'ExtUtils::MM_NW5'      => '7.48',
17804             'ExtUtils::MM_OS2'      => '7.48',
17805             'ExtUtils::MM_OS390'    => '7.48',
17806             'ExtUtils::MM_QNX'      => '7.48',
17807             'ExtUtils::MM_UWIN'     => '7.48',
17808             'ExtUtils::MM_Unix'     => '7.48',
17809             'ExtUtils::MM_VMS'      => '7.48',
17810             'ExtUtils::MM_VOS'      => '7.48',
17811             'ExtUtils::MM_Win32'    => '7.48',
17812             'ExtUtils::MM_Win95'    => '7.48',
17813             'ExtUtils::MY'          => '7.48',
17814             'ExtUtils::MakeMaker'   => '7.48',
17815             'ExtUtils::MakeMaker::Config'=> '7.48',
17816             'ExtUtils::MakeMaker::Locale'=> '7.48',
17817             'ExtUtils::MakeMaker::version'=> '7.48',
17818             'ExtUtils::MakeMaker::version::regex'=> '7.48',
17819             'ExtUtils::Mkbootstrap' => '7.48',
17820             'ExtUtils::Mksymlists'  => '7.48',
17821             'ExtUtils::PL2Bat'      => '0.003',
17822             'ExtUtils::testlib'     => '7.48',
17823             'File::Temp'            => '0.2311',
17824             'FindBin'               => '1.52',
17825             'Getopt::Long'          => '2.52',
17826             'Getopt::Std'           => '1.13',
17827             'I18N::LangTags'        => '0.45',
17828             'MIME::Base64'          => '3.16',
17829             'MIME::QuotedPrint'     => '3.16',
17830             'Module::CoreList'      => '5.20201020',
17831             'Module::CoreList::Utils'=> '5.20201020',
17832             'Module::Load'          => '0.36',
17833             'Pod::Checker'          => '1.74',
17834             'Pod::Simple'           => '3.41',
17835             'Pod::Simple::BlackBox' => '3.41',
17836             'Pod::Simple::Checker'  => '3.41',
17837             'Pod::Simple::Debug'    => '3.41',
17838             'Pod::Simple::DumpAsText'=> '3.41',
17839             'Pod::Simple::DumpAsXML'=> '3.41',
17840             'Pod::Simple::HTML'     => '3.41',
17841             'Pod::Simple::HTMLBatch'=> '3.41',
17842             'Pod::Simple::LinkSection'=> '3.41',
17843             'Pod::Simple::Methody'  => '3.41',
17844             'Pod::Simple::Progress' => '3.41',
17845             'Pod::Simple::PullParser'=> '3.41',
17846             'Pod::Simple::PullParserEndToken'=> '3.41',
17847             'Pod::Simple::PullParserStartToken'=> '3.41',
17848             'Pod::Simple::PullParserTextToken'=> '3.41',
17849             'Pod::Simple::PullParserToken'=> '3.41',
17850             'Pod::Simple::RTF'      => '3.41',
17851             'Pod::Simple::Search'   => '3.41',
17852             'Pod::Simple::SimpleTree'=> '3.41',
17853             'Pod::Simple::Text'     => '3.41',
17854             'Pod::Simple::TextContent'=> '3.41',
17855             'Pod::Simple::TiedOutFH'=> '3.41',
17856             'Pod::Simple::Transcode'=> '3.41',
17857             'Pod::Simple::TranscodeDumb'=> '3.41',
17858             'Pod::Simple::TranscodeSmart'=> '3.41',
17859             'Pod::Simple::XHTML'    => '3.41',
17860             'Pod::Simple::XMLOutStream'=> '3.41',
17861             'Pod::Usage'            => '2.01',
17862             'Storable'              => '3.23',
17863             'Symbol'                => '1.09',
17864             'Test2'                 => '1.302182',
17865             'Test2::API'            => '1.302182',
17866             'Test2::API::Breakage'  => '1.302182',
17867             'Test2::API::Context'   => '1.302182',
17868             'Test2::API::Instance'  => '1.302182',
17869             'Test2::API::InterceptResult'=> '1.302182',
17870             'Test2::API::InterceptResult::Event'=> '1.302182',
17871             'Test2::API::InterceptResult::Facet'=> '1.302182',
17872             'Test2::API::InterceptResult::Hub'=> '1.302182',
17873             'Test2::API::InterceptResult::Squasher'=> '1.302182',
17874             'Test2::API::Stack'     => '1.302182',
17875             'Test2::Event'          => '1.302182',
17876             'Test2::Event::Bail'    => '1.302182',
17877             'Test2::Event::Diag'    => '1.302182',
17878             'Test2::Event::Encoding'=> '1.302182',
17879             'Test2::Event::Exception'=> '1.302182',
17880             'Test2::Event::Fail'    => '1.302182',
17881             'Test2::Event::Generic' => '1.302182',
17882             'Test2::Event::Note'    => '1.302182',
17883             'Test2::Event::Ok'      => '1.302182',
17884             'Test2::Event::Pass'    => '1.302182',
17885             'Test2::Event::Plan'    => '1.302182',
17886             'Test2::Event::Skip'    => '1.302182',
17887             'Test2::Event::Subtest' => '1.302182',
17888             'Test2::Event::TAP::Version'=> '1.302182',
17889             'Test2::Event::V2'      => '1.302182',
17890             'Test2::Event::Waiting' => '1.302182',
17891             'Test2::EventFacet'     => '1.302182',
17892             'Test2::EventFacet::About'=> '1.302182',
17893             'Test2::EventFacet::Amnesty'=> '1.302182',
17894             'Test2::EventFacet::Assert'=> '1.302182',
17895             'Test2::EventFacet::Control'=> '1.302182',
17896             'Test2::EventFacet::Error'=> '1.302182',
17897             'Test2::EventFacet::Hub'=> '1.302182',
17898             'Test2::EventFacet::Info'=> '1.302182',
17899             'Test2::EventFacet::Info::Table'=> '1.302182',
17900             'Test2::EventFacet::Meta'=> '1.302182',
17901             'Test2::EventFacet::Parent'=> '1.302182',
17902             'Test2::EventFacet::Plan'=> '1.302182',
17903             'Test2::EventFacet::Render'=> '1.302182',
17904             'Test2::EventFacet::Trace'=> '1.302182',
17905             'Test2::Formatter'      => '1.302182',
17906             'Test2::Formatter::TAP' => '1.302182',
17907             'Test2::Hub'            => '1.302182',
17908             'Test2::Hub::Interceptor'=> '1.302182',
17909             'Test2::Hub::Interceptor::Terminator'=> '1.302182',
17910             'Test2::Hub::Subtest'   => '1.302182',
17911             'Test2::IPC'            => '1.302182',
17912             'Test2::IPC::Driver'    => '1.302182',
17913             'Test2::IPC::Driver::Files'=> '1.302182',
17914             'Test2::Tools::Tiny'    => '1.302182',
17915             'Test2::Util'           => '1.302182',
17916             'Test2::Util::ExternalMeta'=> '1.302182',
17917             'Test2::Util::Facets2Legacy'=> '1.302182',
17918             'Test2::Util::HashBase' => '1.302182',
17919             'Test2::Util::Trace'    => '1.302182',
17920             'Test::Builder'         => '1.302182',
17921             'Test::Builder::Formatter'=> '1.302182',
17922             'Test::Builder::Module' => '1.302182',
17923             'Test::Builder::Tester' => '1.302182',
17924             'Test::Builder::Tester::Color'=> '1.302182',
17925             'Test::Builder::TodoDiag'=> '1.302182',
17926             'Test::More'            => '1.302182',
17927             'Test::Simple'          => '1.302182',
17928             'Test::Tester'          => '1.302182',
17929             'Test::Tester::Capture' => '1.302182',
17930             'Test::Tester::CaptureRunner'=> '1.302182',
17931             'Test::Tester::Delegate'=> '1.302182',
17932             'Test::use::ok'         => '1.302182',
17933             'Tie::RefHash'          => '1.40',
17934             'Time::Local'           => '1.30',
17935             'Unicode::Collate'      => '1.29',
17936             'Unicode::Collate::CJK::Big5'=> '1.29',
17937             'Unicode::Collate::CJK::GB2312'=> '1.29',
17938             'Unicode::Collate::CJK::JISX0208'=> '1.29',
17939             'Unicode::Collate::CJK::Korean'=> '1.29',
17940             'Unicode::Collate::CJK::Pinyin'=> '1.29',
17941             'Unicode::Collate::CJK::Stroke'=> '1.29',
17942             'Unicode::Collate::CJK::Zhuyin'=> '1.29',
17943             'Unicode::Collate::Locale'=> '1.29',
17944             'Win32'                 => '0.54',
17945             'XS::APItest'           => '1.12',
17946             'bytes'                 => '1.08',
17947             'experimental'          => '0.022',
17948             'feature'               => '1.61',
17949             'if'                    => '0.0609',
17950             'locale'                => '1.10',
17951             'mro'                   => '1.25',
17952             'ok'                    => '1.302182',
17953             'overload'              => '1.33',
17954             're'                    => '0.41',
17955             'subs'                  => '1.04',
17956             'utf8'                  => '1.24',
17957             'version'               => '0.9928',
17958             'version::regex'        => '0.9928',
17959         },
17960         removed => {
17961         }
17962     },
17963     5.033004 => {
17964         delta_from => 5.033003,
17965         changed => {
17966             'B'                     => '1.82',
17967             'B::Op_private'         => '5.033004',
17968             'Config'                => '5.033004',
17969             'Cwd'                   => '3.79',
17970             'ExtUtils::CBuilder'    => '0.280235',
17971             'ExtUtils::CBuilder::Base'=> '0.280235',
17972             'ExtUtils::CBuilder::Platform::Unix'=> '0.280235',
17973             'ExtUtils::CBuilder::Platform::VMS'=> '0.280235',
17974             'ExtUtils::CBuilder::Platform::Windows'=> '0.280235',
17975             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280235',
17976             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280235',
17977             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280235',
17978             'ExtUtils::CBuilder::Platform::aix'=> '0.280235',
17979             'ExtUtils::CBuilder::Platform::android'=> '0.280235',
17980             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280235',
17981             'ExtUtils::CBuilder::Platform::darwin'=> '0.280235',
17982             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280235',
17983             'ExtUtils::CBuilder::Platform::os2'=> '0.280235',
17984             'ExtUtils::Command'     => '7.56',
17985             'ExtUtils::Command::MM' => '7.56',
17986             'ExtUtils::Liblist'     => '7.56',
17987             'ExtUtils::Liblist::Kid'=> '7.56',
17988             'ExtUtils::MM'          => '7.56',
17989             'ExtUtils::MM_AIX'      => '7.56',
17990             'ExtUtils::MM_Any'      => '7.56',
17991             'ExtUtils::MM_BeOS'     => '7.56',
17992             'ExtUtils::MM_Cygwin'   => '7.56',
17993             'ExtUtils::MM_DOS'      => '7.56',
17994             'ExtUtils::MM_Darwin'   => '7.56',
17995             'ExtUtils::MM_MacOS'    => '7.56',
17996             'ExtUtils::MM_NW5'      => '7.56',
17997             'ExtUtils::MM_OS2'      => '7.56',
17998             'ExtUtils::MM_OS390'    => '7.56',
17999             'ExtUtils::MM_QNX'      => '7.56',
18000             'ExtUtils::MM_UWIN'     => '7.56',
18001             'ExtUtils::MM_Unix'     => '7.56',
18002             'ExtUtils::MM_VMS'      => '7.56',
18003             'ExtUtils::MM_VOS'      => '7.56',
18004             'ExtUtils::MM_Win32'    => '7.56',
18005             'ExtUtils::MM_Win95'    => '7.56',
18006             'ExtUtils::MY'          => '7.56',
18007             'ExtUtils::MakeMaker'   => '7.56',
18008             'ExtUtils::MakeMaker::Config'=> '7.56',
18009             'ExtUtils::MakeMaker::Locale'=> '7.56',
18010             'ExtUtils::MakeMaker::version'=> '7.56',
18011             'ExtUtils::MakeMaker::version::regex'=> '7.56',
18012             'ExtUtils::Mkbootstrap' => '7.56',
18013             'ExtUtils::Mksymlists'  => '7.56',
18014             'ExtUtils::testlib'     => '7.56',
18015             'File::Fetch'           => '1.00',
18016             'File::Path'            => '2.18',
18017             'File::Spec'            => '3.79',
18018             'File::Spec::AmigaOS'   => '3.79',
18019             'File::Spec::Cygwin'    => '3.79',
18020             'File::Spec::Epoc'      => '3.79',
18021             'File::Spec::Functions' => '3.79',
18022             'File::Spec::Mac'       => '3.79',
18023             'File::Spec::OS2'       => '3.79',
18024             'File::Spec::Unix'      => '3.79',
18025             'File::Spec::VMS'       => '3.79',
18026             'IPC::Msg'              => '2.09',
18027             'IPC::Semaphore'        => '2.09',
18028             'IPC::SharedMem'        => '2.09',
18029             'IPC::SysV'             => '2.09',
18030             'Module::CoreList'      => '5.20201120',
18031             'Module::CoreList::Utils'=> '5.20201120',
18032             'Net::Ping'             => '2.74',
18033             'Pod::Html'             => '1.26',
18034             'Pod::Simple'           => '3.42',
18035             'Pod::Simple::BlackBox' => '3.42',
18036             'Pod::Simple::Checker'  => '3.42',
18037             'Pod::Simple::Debug'    => '3.42',
18038             'Pod::Simple::DumpAsText'=> '3.42',
18039             'Pod::Simple::DumpAsXML'=> '3.42',
18040             'Pod::Simple::HTML'     => '3.42',
18041             'Pod::Simple::HTMLBatch'=> '3.42',
18042             'Pod::Simple::LinkSection'=> '3.42',
18043             'Pod::Simple::Methody'  => '3.42',
18044             'Pod::Simple::Progress' => '3.42',
18045             'Pod::Simple::PullParser'=> '3.42',
18046             'Pod::Simple::PullParserEndToken'=> '3.42',
18047             'Pod::Simple::PullParserStartToken'=> '3.42',
18048             'Pod::Simple::PullParserTextToken'=> '3.42',
18049             'Pod::Simple::PullParserToken'=> '3.42',
18050             'Pod::Simple::RTF'      => '3.42',
18051             'Pod::Simple::Search'   => '3.42',
18052             'Pod::Simple::SimpleTree'=> '3.42',
18053             'Pod::Simple::Text'     => '3.42',
18054             'Pod::Simple::TextContent'=> '3.42',
18055             'Pod::Simple::TiedOutFH'=> '3.42',
18056             'Pod::Simple::Transcode'=> '3.42',
18057             'Pod::Simple::TranscodeDumb'=> '3.42',
18058             'Pod::Simple::TranscodeSmart'=> '3.42',
18059             'Pod::Simple::XHTML'    => '3.42',
18060             'Pod::Simple::XMLOutStream'=> '3.42',
18061             'Test2'                 => '1.302183',
18062             'Test2::API'            => '1.302183',
18063             'Test2::API::Breakage'  => '1.302183',
18064             'Test2::API::Context'   => '1.302183',
18065             'Test2::API::Instance'  => '1.302183',
18066             'Test2::API::InterceptResult'=> '1.302183',
18067             'Test2::API::InterceptResult::Event'=> '1.302183',
18068             'Test2::API::InterceptResult::Facet'=> '1.302183',
18069             'Test2::API::InterceptResult::Hub'=> '1.302183',
18070             'Test2::API::InterceptResult::Squasher'=> '1.302183',
18071             'Test2::API::Stack'     => '1.302183',
18072             'Test2::Event'          => '1.302183',
18073             'Test2::Event::Bail'    => '1.302183',
18074             'Test2::Event::Diag'    => '1.302183',
18075             'Test2::Event::Encoding'=> '1.302183',
18076             'Test2::Event::Exception'=> '1.302183',
18077             'Test2::Event::Fail'    => '1.302183',
18078             'Test2::Event::Generic' => '1.302183',
18079             'Test2::Event::Note'    => '1.302183',
18080             'Test2::Event::Ok'      => '1.302183',
18081             'Test2::Event::Pass'    => '1.302183',
18082             'Test2::Event::Plan'    => '1.302183',
18083             'Test2::Event::Skip'    => '1.302183',
18084             'Test2::Event::Subtest' => '1.302183',
18085             'Test2::Event::TAP::Version'=> '1.302183',
18086             'Test2::Event::V2'      => '1.302183',
18087             'Test2::Event::Waiting' => '1.302183',
18088             'Test2::EventFacet'     => '1.302183',
18089             'Test2::EventFacet::About'=> '1.302183',
18090             'Test2::EventFacet::Amnesty'=> '1.302183',
18091             'Test2::EventFacet::Assert'=> '1.302183',
18092             'Test2::EventFacet::Control'=> '1.302183',
18093             'Test2::EventFacet::Error'=> '1.302183',
18094             'Test2::EventFacet::Hub'=> '1.302183',
18095             'Test2::EventFacet::Info'=> '1.302183',
18096             'Test2::EventFacet::Info::Table'=> '1.302183',
18097             'Test2::EventFacet::Meta'=> '1.302183',
18098             'Test2::EventFacet::Parent'=> '1.302183',
18099             'Test2::EventFacet::Plan'=> '1.302183',
18100             'Test2::EventFacet::Render'=> '1.302183',
18101             'Test2::EventFacet::Trace'=> '1.302183',
18102             'Test2::Formatter'      => '1.302183',
18103             'Test2::Formatter::TAP' => '1.302183',
18104             'Test2::Hub'            => '1.302183',
18105             'Test2::Hub::Interceptor'=> '1.302183',
18106             'Test2::Hub::Interceptor::Terminator'=> '1.302183',
18107             'Test2::Hub::Subtest'   => '1.302183',
18108             'Test2::IPC'            => '1.302183',
18109             'Test2::IPC::Driver'    => '1.302183',
18110             'Test2::IPC::Driver::Files'=> '1.302183',
18111             'Test2::Tools::Tiny'    => '1.302183',
18112             'Test2::Util'           => '1.302183',
18113             'Test2::Util::ExternalMeta'=> '1.302183',
18114             'Test2::Util::Facets2Legacy'=> '1.302183',
18115             'Test2::Util::HashBase' => '1.302183',
18116             'Test2::Util::Trace'    => '1.302183',
18117             'Test::Builder'         => '1.302183',
18118             'Test::Builder::Formatter'=> '1.302183',
18119             'Test::Builder::Module' => '1.302183',
18120             'Test::Builder::Tester' => '1.302183',
18121             'Test::Builder::Tester::Color'=> '1.302183',
18122             'Test::Builder::TodoDiag'=> '1.302183',
18123             'Test::More'            => '1.302183',
18124             'Test::Simple'          => '1.302183',
18125             'Test::Tester'          => '1.302183',
18126             'Test::Tester::Capture' => '1.302183',
18127             'Test::Tester::CaptureRunner'=> '1.302183',
18128             'Test::Tester::Delegate'=> '1.302183',
18129             'Test::use::ok'         => '1.302183',
18130             'XS::APItest'           => '1.13',
18131             'ok'                    => '1.302183',
18132             'perlfaq'               => '5.20201107',
18133         },
18134         removed => {
18135         }
18136     },
18137     5.033005 => {
18138         delta_from => 5.033004,
18139         changed => {
18140             'App::Prove'            => '3.43',
18141             'App::Prove::State'     => '3.43',
18142             'App::Prove::State::Result'=> '3.43',
18143             'App::Prove::State::Result::Test'=> '3.43',
18144             'B::Op_private'         => '5.033005',
18145             'Carp'                  => '1.51',
18146             'Carp::Heavy'           => '1.51',
18147             'Config'                => '5.033005',
18148             'Config::Perl::V'       => '0.33',
18149             'Cwd'                   => '3.80',
18150             'DynaLoader'            => '1.49',
18151             'Encode'                => '3.08',
18152             'Encode::GSM0338'       => '2.09',
18153             'ExtUtils::Install'     => '2.20',
18154             'ExtUtils::Installed'   => '2.20',
18155             'ExtUtils::Packlist'    => '2.20',
18156             'ExtUtils::ParseXS'     => '3.42',
18157             'ExtUtils::ParseXS::Constants'=> '3.42',
18158             'ExtUtils::ParseXS::CountLines'=> '3.42',
18159             'ExtUtils::ParseXS::Eval'=> '3.42',
18160             'ExtUtils::ParseXS::Utilities'=> '3.42',
18161             'File::Copy'            => '2.35',
18162             'File::Find'            => '1.38',
18163             'File::Spec'            => '3.80',
18164             'File::Spec::AmigaOS'   => '3.80',
18165             'File::Spec::Cygwin'    => '3.80',
18166             'File::Spec::Epoc'      => '3.80',
18167             'File::Spec::Functions' => '3.80',
18168             'File::Spec::Mac'       => '3.80',
18169             'File::Spec::OS2'       => '3.80',
18170             'File::Spec::Unix'      => '3.80',
18171             'File::Spec::VMS'       => '3.80',
18172             'File::Spec::Win32'     => '3.80',
18173             'Module::CoreList'      => '5.20201220',
18174             'Module::CoreList::Utils'=> '5.20201220',
18175             'Net::Cmd'              => '3.12',
18176             'Net::Config'           => '3.12',
18177             'Net::Domain'           => '3.12',
18178             'Net::FTP'              => '3.12',
18179             'Net::FTP::A'           => '3.12',
18180             'Net::FTP::E'           => '3.12',
18181             'Net::FTP::I'           => '3.12',
18182             'Net::FTP::L'           => '3.12',
18183             'Net::FTP::dataconn'    => '3.12',
18184             'Net::NNTP'             => '3.12',
18185             'Net::Netrc'            => '3.12',
18186             'Net::POP3'             => '3.12',
18187             'Net::SMTP'             => '3.12',
18188             'Net::Time'             => '3.12',
18189             'ODBM_File'             => '1.17',
18190             'Opcode'                => '1.49',
18191             'POSIX'                 => '1.96',
18192             'PerlIO::via::QuotedPrint'=> '0.09',
18193             'TAP::Base'             => '3.43',
18194             'TAP::Formatter::Base'  => '3.43',
18195             'TAP::Formatter::Color' => '3.43',
18196             'TAP::Formatter::Console'=> '3.43',
18197             'TAP::Formatter::Console::ParallelSession'=> '3.43',
18198             'TAP::Formatter::Console::Session'=> '3.43',
18199             'TAP::Formatter::File'  => '3.43',
18200             'TAP::Formatter::File::Session'=> '3.43',
18201             'TAP::Formatter::Session'=> '3.43',
18202             'TAP::Harness'          => '3.43',
18203             'TAP::Harness::Env'     => '3.43',
18204             'TAP::Object'           => '3.43',
18205             'TAP::Parser'           => '3.43',
18206             'TAP::Parser::Aggregator'=> '3.43',
18207             'TAP::Parser::Grammar'  => '3.43',
18208             'TAP::Parser::Iterator' => '3.43',
18209             'TAP::Parser::Iterator::Array'=> '3.43',
18210             'TAP::Parser::Iterator::Process'=> '3.43',
18211             'TAP::Parser::Iterator::Stream'=> '3.43',
18212             'TAP::Parser::IteratorFactory'=> '3.43',
18213             'TAP::Parser::Multiplexer'=> '3.43',
18214             'TAP::Parser::Result'   => '3.43',
18215             'TAP::Parser::Result::Bailout'=> '3.43',
18216             'TAP::Parser::Result::Comment'=> '3.43',
18217             'TAP::Parser::Result::Plan'=> '3.43',
18218             'TAP::Parser::Result::Pragma'=> '3.43',
18219             'TAP::Parser::Result::Test'=> '3.43',
18220             'TAP::Parser::Result::Unknown'=> '3.43',
18221             'TAP::Parser::Result::Version'=> '3.43',
18222             'TAP::Parser::Result::YAML'=> '3.43',
18223             'TAP::Parser::ResultFactory'=> '3.43',
18224             'TAP::Parser::Scheduler'=> '3.43',
18225             'TAP::Parser::Scheduler::Job'=> '3.43',
18226             'TAP::Parser::Scheduler::Spinner'=> '3.43',
18227             'TAP::Parser::Source'   => '3.43',
18228             'TAP::Parser::SourceHandler'=> '3.43',
18229             'TAP::Parser::SourceHandler::Executable'=> '3.43',
18230             'TAP::Parser::SourceHandler::File'=> '3.43',
18231             'TAP::Parser::SourceHandler::Handle'=> '3.43',
18232             'TAP::Parser::SourceHandler::Perl'=> '3.43',
18233             'TAP::Parser::SourceHandler::RawTAP'=> '3.43',
18234             'TAP::Parser::YAMLish::Reader'=> '3.43',
18235             'TAP::Parser::YAMLish::Writer'=> '3.43',
18236             'Test::Harness'         => '3.43',
18237             'Text::Balanced'        => '2.04',
18238             'Time::HiRes'           => '1.9766',
18239             'XS::APItest'           => '1.14',
18240             'warnings'              => '1.49',
18241         },
18242         removed => {
18243         }
18244     },
18245     5.033006 => {
18246         delta_from => 5.033005,
18247         changed => {
18248             'B::Op_private'         => '5.033006',
18249             'Carp'                  => '1.52',
18250             'Carp::Heavy'           => '1.52',
18251             'Compress::Raw::Bzip2'  => '2.100',
18252             'Compress::Raw::Zlib'   => '2.100',
18253             'Compress::Zlib'        => '2.100',
18254             'Config'                => '5.033006',
18255             'DynaLoader'            => '1.50',
18256             'ExtUtils::Command'     => '7.58',
18257             'ExtUtils::Command::MM' => '7.58',
18258             'ExtUtils::Liblist'     => '7.58',
18259             'ExtUtils::Liblist::Kid'=> '7.58',
18260             'ExtUtils::MM'          => '7.58',
18261             'ExtUtils::MM_AIX'      => '7.58',
18262             'ExtUtils::MM_Any'      => '7.58',
18263             'ExtUtils::MM_BeOS'     => '7.58',
18264             'ExtUtils::MM_Cygwin'   => '7.58',
18265             'ExtUtils::MM_DOS'      => '7.58',
18266             'ExtUtils::MM_Darwin'   => '7.58',
18267             'ExtUtils::MM_MacOS'    => '7.58',
18268             'ExtUtils::MM_NW5'      => '7.58',
18269             'ExtUtils::MM_OS2'      => '7.58',
18270             'ExtUtils::MM_OS390'    => '7.58',
18271             'ExtUtils::MM_QNX'      => '7.58',
18272             'ExtUtils::MM_UWIN'     => '7.58',
18273             'ExtUtils::MM_Unix'     => '7.58',
18274             'ExtUtils::MM_VMS'      => '7.58',
18275             'ExtUtils::MM_VOS'      => '7.58',
18276             'ExtUtils::MM_Win32'    => '7.58',
18277             'ExtUtils::MM_Win95'    => '7.58',
18278             'ExtUtils::MY'          => '7.58',
18279             'ExtUtils::MakeMaker'   => '7.58',
18280             'ExtUtils::MakeMaker::Config'=> '7.58',
18281             'ExtUtils::MakeMaker::Locale'=> '7.58',
18282             'ExtUtils::MakeMaker::version'=> '7.58',
18283             'ExtUtils::MakeMaker::version::regex'=> '7.58',
18284             'ExtUtils::Manifest'    => '1.73',
18285             'ExtUtils::Mkbootstrap' => '7.58',
18286             'ExtUtils::Mksymlists'  => '7.58',
18287             'ExtUtils::testlib'     => '7.58',
18288             'GDBM_File'             => '1.19',
18289             'IO'                    => '1.45',
18290             'IO::Compress::Adapter::Bzip2'=> '2.100',
18291             'IO::Compress::Adapter::Deflate'=> '2.100',
18292             'IO::Compress::Adapter::Identity'=> '2.100',
18293             'IO::Compress::Base'    => '2.100',
18294             'IO::Compress::Base::Common'=> '2.100',
18295             'IO::Compress::Bzip2'   => '2.100',
18296             'IO::Compress::Deflate' => '2.100',
18297             'IO::Compress::Gzip'    => '2.100',
18298             'IO::Compress::Gzip::Constants'=> '2.100',
18299             'IO::Compress::RawDeflate'=> '2.100',
18300             'IO::Compress::Zip'     => '2.100',
18301             'IO::Compress::Zip::Constants'=> '2.100',
18302             'IO::Compress::Zlib::Constants'=> '2.100',
18303             'IO::Compress::Zlib::Extra'=> '2.100',
18304             'IO::Dir'               => '1.45',
18305             'IO::File'              => '1.45',
18306             'IO::Handle'            => '1.45',
18307             'IO::Pipe'              => '1.45',
18308             'IO::Poll'              => '1.45',
18309             'IO::Seekable'          => '1.45',
18310             'IO::Select'            => '1.45',
18311             'IO::Socket'            => '1.45',
18312             'IO::Socket::INET'      => '1.45',
18313             'IO::Socket::UNIX'      => '1.45',
18314             'IO::Uncompress::Adapter::Bunzip2'=> '2.100',
18315             'IO::Uncompress::Adapter::Identity'=> '2.100',
18316             'IO::Uncompress::Adapter::Inflate'=> '2.100',
18317             'IO::Uncompress::AnyInflate'=> '2.100',
18318             'IO::Uncompress::AnyUncompress'=> '2.100',
18319             'IO::Uncompress::Base'  => '2.100',
18320             'IO::Uncompress::Bunzip2'=> '2.100',
18321             'IO::Uncompress::Gunzip'=> '2.100',
18322             'IO::Uncompress::Inflate'=> '2.100',
18323             'IO::Uncompress::RawInflate'=> '2.100',
18324             'IO::Uncompress::Unzip' => '2.100',
18325             'Module::CoreList'      => '5.20210120',
18326             'Module::CoreList::Utils'=> '5.20210120',
18327             'Net::Cmd'              => '3.13',
18328             'Net::Config'           => '3.13',
18329             'Net::Domain'           => '3.13',
18330             'Net::FTP'              => '3.13',
18331             'Net::FTP::A'           => '3.13',
18332             'Net::FTP::E'           => '3.13',
18333             'Net::FTP::I'           => '3.13',
18334             'Net::FTP::L'           => '3.13',
18335             'Net::FTP::dataconn'    => '3.13',
18336             'Net::NNTP'             => '3.13',
18337             'Net::Netrc'            => '3.13',
18338             'Net::POP3'             => '3.13',
18339             'Net::SMTP'             => '3.13',
18340             'Net::Time'             => '3.13',
18341             'POSIX'                 => '1.97',
18342             'Socket'                => '2.031',
18343             'XS::APItest'           => '1.15',
18344             'feature'               => '1.62',
18345             'warnings'              => '1.50',
18346         },
18347         removed => {
18348         }
18349     },
18350     5.032001 => {
18351         delta_from => 5.032000,
18352         changed => {
18353             'B::Op_private'         => '5.032001',
18354             'Config'                => '5.032001',
18355             'Data::Dumper'          => '2.174_01',
18356             'DynaLoader'            => '1.47_01',
18357             'ExtUtils::Liblist::Kid'=> '7.44_01',
18358             'Module::CoreList'      => '5.20210123',
18359             'Module::CoreList::Utils'=> '5.20210123',
18360             'Opcode'                => '1.48',
18361             'Safe'                  => '2.41_01',
18362             'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
18363         },
18364         removed => {
18365         }
18366     },
18367     5.033007 => {
18368         delta_from => 5.033006,
18369         changed => {
18370             'B::Deparse'            => '1.56',
18371             'B::Op_private'         => '5.033007',
18372             'Config'                => '5.033007',
18373             'ExtUtils::CBuilder'    => '0.280236',
18374             'ExtUtils::CBuilder::Base'=> '0.280236',
18375             'ExtUtils::CBuilder::Platform::Unix'=> '0.280236',
18376             'ExtUtils::CBuilder::Platform::VMS'=> '0.280236',
18377             'ExtUtils::CBuilder::Platform::Windows'=> '0.280236',
18378             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280236',
18379             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280236',
18380             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280236',
18381             'ExtUtils::CBuilder::Platform::aix'=> '0.280236',
18382             'ExtUtils::CBuilder::Platform::android'=> '0.280236',
18383             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280236',
18384             'ExtUtils::CBuilder::Platform::darwin'=> '0.280236',
18385             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280236',
18386             'ExtUtils::CBuilder::Platform::os2'=> '0.280236',
18387             'ExtUtils::Command'     => '7.60',
18388             'ExtUtils::Command::MM' => '7.60',
18389             'ExtUtils::Liblist'     => '7.60',
18390             'ExtUtils::Liblist::Kid'=> '7.60',
18391             'ExtUtils::MM'          => '7.60',
18392             'ExtUtils::MM_AIX'      => '7.60',
18393             'ExtUtils::MM_Any'      => '7.60',
18394             'ExtUtils::MM_BeOS'     => '7.60',
18395             'ExtUtils::MM_Cygwin'   => '7.60',
18396             'ExtUtils::MM_DOS'      => '7.60',
18397             'ExtUtils::MM_Darwin'   => '7.60',
18398             'ExtUtils::MM_MacOS'    => '7.60',
18399             'ExtUtils::MM_NW5'      => '7.60',
18400             'ExtUtils::MM_OS2'      => '7.60',
18401             'ExtUtils::MM_OS390'    => '7.60',
18402             'ExtUtils::MM_QNX'      => '7.60',
18403             'ExtUtils::MM_UWIN'     => '7.60',
18404             'ExtUtils::MM_Unix'     => '7.60',
18405             'ExtUtils::MM_VMS'      => '7.60',
18406             'ExtUtils::MM_VOS'      => '7.60',
18407             'ExtUtils::MM_Win32'    => '7.60',
18408             'ExtUtils::MM_Win95'    => '7.60',
18409             'ExtUtils::MY'          => '7.60',
18410             'ExtUtils::MakeMaker'   => '7.60',
18411             'ExtUtils::MakeMaker::Config'=> '7.60',
18412             'ExtUtils::MakeMaker::Locale'=> '7.60',
18413             'ExtUtils::MakeMaker::version'=> '7.60',
18414             'ExtUtils::MakeMaker::version::regex'=> '7.60',
18415             'ExtUtils::Mkbootstrap' => '7.60',
18416             'ExtUtils::Mksymlists'  => '7.60',
18417             'ExtUtils::PL2Bat'      => '0.004',
18418             'ExtUtils::testlib'     => '7.60',
18419             'Fatal'                 => '2.34',
18420             'File::Find'            => '1.39',
18421             'Hash::Util'            => '0.25',
18422             'IO'                    => '1.46',
18423             'IO::Dir'               => '1.46',
18424             'IO::File'              => '1.46',
18425             'IO::Handle'            => '1.46',
18426             'IO::Pipe'              => '1.46',
18427             'IO::Poll'              => '1.46',
18428             'IO::Seekable'          => '1.46',
18429             'IO::Select'            => '1.46',
18430             'IO::Socket'            => '1.46',
18431             'IO::Socket::INET'      => '1.46',
18432             'IO::Socket::UNIX'      => '1.46',
18433             'JSON::PP'              => '4.06',
18434             'JSON::PP::Boolean'     => '4.06',
18435             'Module::CoreList'      => '5.20210220',
18436             'Module::CoreList::Utils'=> '5.20210220',
18437             'Opcode'                => '1.50',
18438             'PerlIO::encoding'      => '0.30',
18439             'Time::HiRes'           => '1.9767',
18440             'autodie'               => '2.34',
18441             'autodie::Scope::Guard' => '2.34',
18442             'autodie::Scope::GuardStack'=> '2.34',
18443             'autodie::Util'         => '2.34',
18444             'autodie::exception'    => '2.34',
18445             'autodie::exception::system'=> '2.34',
18446             'autodie::hints'        => '2.34',
18447             'autodie::skip'         => '2.34',
18448             'feature'               => '1.63',
18449             'mro'                   => '1.25_001',
18450             'warnings'              => '1.51',
18451         },
18452         removed => {
18453         }
18454     },
18455     5.033008 => {
18456         delta_from => 5.033007,
18457         changed => {
18458             'B::Op_private'         => '5.033008',
18459             'Compress::Raw::Bzip2'  => '2.101',
18460             'Compress::Raw::Zlib'   => '2.101',
18461             'Compress::Zlib'        => '2.102',
18462             'Config'                => '5.033008',
18463             'Data::Dumper'          => '2.177',
18464             'IO::Compress::Adapter::Bzip2'=> '2.102',
18465             'IO::Compress::Adapter::Deflate'=> '2.102',
18466             'IO::Compress::Adapter::Identity'=> '2.102',
18467             'IO::Compress::Base'    => '2.102',
18468             'IO::Compress::Base::Common'=> '2.102',
18469             'IO::Compress::Bzip2'   => '2.102',
18470             'IO::Compress::Deflate' => '2.102',
18471             'IO::Compress::Gzip'    => '2.102',
18472             'IO::Compress::Gzip::Constants'=> '2.102',
18473             'IO::Compress::RawDeflate'=> '2.102',
18474             'IO::Compress::Zip'     => '2.102',
18475             'IO::Compress::Zip::Constants'=> '2.102',
18476             'IO::Compress::Zlib::Constants'=> '2.102',
18477             'IO::Compress::Zlib::Extra'=> '2.102',
18478             'IO::Uncompress::Adapter::Bunzip2'=> '2.102',
18479             'IO::Uncompress::Adapter::Identity'=> '2.102',
18480             'IO::Uncompress::Adapter::Inflate'=> '2.102',
18481             'IO::Uncompress::AnyInflate'=> '2.102',
18482             'IO::Uncompress::AnyUncompress'=> '2.102',
18483             'IO::Uncompress::Base'  => '2.102',
18484             'IO::Uncompress::Bunzip2'=> '2.102',
18485             'IO::Uncompress::Gunzip'=> '2.102',
18486             'IO::Uncompress::Inflate'=> '2.102',
18487             'IO::Uncompress::RawInflate'=> '2.102',
18488             'IO::Uncompress::Unzip' => '2.102',
18489             'Module::CoreList'      => '5.20210320',
18490             'Module::CoreList::Utils'=> '5.20210320',
18491             'Pod::Html'             => '1.27',
18492             'Win32'                 => '0.57',
18493         },
18494         removed => {
18495         }
18496     },
18497     5.033009 => {
18498         delta_from => 5.033008,
18499         changed => {
18500             'B::Op_private'         => '5.033009',
18501             'Config'                => '5.033009',
18502             'Data::Dumper'          => '2.178',
18503             'ExtUtils::Command'     => '7.62',
18504             'ExtUtils::Command::MM' => '7.62',
18505             'ExtUtils::Liblist'     => '7.62',
18506             'ExtUtils::Liblist::Kid'=> '7.62',
18507             'ExtUtils::MM'          => '7.62',
18508             'ExtUtils::MM_AIX'      => '7.62',
18509             'ExtUtils::MM_Any'      => '7.62',
18510             'ExtUtils::MM_BeOS'     => '7.62',
18511             'ExtUtils::MM_Cygwin'   => '7.62',
18512             'ExtUtils::MM_DOS'      => '7.62',
18513             'ExtUtils::MM_Darwin'   => '7.62',
18514             'ExtUtils::MM_MacOS'    => '7.62',
18515             'ExtUtils::MM_NW5'      => '7.62',
18516             'ExtUtils::MM_OS2'      => '7.62',
18517             'ExtUtils::MM_OS390'    => '7.62',
18518             'ExtUtils::MM_QNX'      => '7.62',
18519             'ExtUtils::MM_UWIN'     => '7.62',
18520             'ExtUtils::MM_Unix'     => '7.62',
18521             'ExtUtils::MM_VMS'      => '7.62',
18522             'ExtUtils::MM_VOS'      => '7.62',
18523             'ExtUtils::MM_Win32'    => '7.62',
18524             'ExtUtils::MM_Win95'    => '7.62',
18525             'ExtUtils::MY'          => '7.62',
18526             'ExtUtils::MakeMaker'   => '7.62',
18527             'ExtUtils::MakeMaker::Config'=> '7.62',
18528             'ExtUtils::MakeMaker::Locale'=> '7.62',
18529             'ExtUtils::MakeMaker::version'=> '7.62',
18530             'ExtUtils::MakeMaker::version::regex'=> '7.62',
18531             'ExtUtils::Mkbootstrap' => '7.62',
18532             'ExtUtils::Mksymlists'  => '7.62',
18533             'ExtUtils::ParseXS'     => '3.43',
18534             'ExtUtils::ParseXS::Constants'=> '3.43',
18535             'ExtUtils::ParseXS::CountLines'=> '3.43',
18536             'ExtUtils::ParseXS::Eval'=> '3.43',
18537             'ExtUtils::ParseXS::Utilities'=> '3.43',
18538             'ExtUtils::Typemaps'    => '3.43',
18539             'ExtUtils::Typemaps::Cmd'=> '3.43',
18540             'ExtUtils::Typemaps::InputMap'=> '3.43',
18541             'ExtUtils::Typemaps::OutputMap'=> '3.43',
18542             'ExtUtils::Typemaps::Type'=> '3.43',
18543             'ExtUtils::testlib'     => '7.62',
18544             'Module::CoreList'      => '5.20210420',
18545             'Module::CoreList::Utils'=> '5.20210420',
18546             'NEXT'                  => '0.68',
18547             'XS::APItest'           => '1.16',
18548             'feature'               => '1.64',
18549             'perlfaq'               => '5.20210411',
18550         },
18551         removed => {
18552         }
18553     },
18554     5.034000 => {
18555         delta_from => 5.033009,
18556         changed => {
18557             'B::Op_private'         => '5.034000',
18558             'Config'                => '5.034',
18559             'Data::Dumper'          => '2.179',
18560             'Module::CoreList'      => '5.20210520',
18561             'Module::CoreList::Utils'=> '5.20210520',
18562             'experimental'          => '0.024',
18563         },
18564         removed => {
18565         }
18566     },
18567     5.035000 => {
18568         delta_from => 5.034,
18569         changed => {
18570             'B::Op_private'         => '5.035000',
18571             'Config'                => '5.035',
18572             'Module::CoreList'      => '5.20210521',
18573             'Module::CoreList::Utils'=> '5.20210521',
18574             'feature'               => '1.65',
18575         },
18576         removed => {
18577         }
18578     },
18579     5.035001 => {
18580         delta_from => 5.035000,
18581         changed => {
18582             'B::Deparse'            => '1.57',
18583             'B::Op_private'         => '5.035001',
18584             'Config'                => '5.035001',
18585             'Cwd'                   => '3.81',
18586             'Data::Dumper'          => '2.181',
18587             'File::Copy'            => '2.36',
18588             'File::Glob'            => '1.35',
18589             'File::Spec'            => '3.81',
18590             'File::Spec::AmigaOS'   => '3.81',
18591             'File::Spec::Cygwin'    => '3.81',
18592             'File::Spec::Epoc'      => '3.81',
18593             'File::Spec::Functions' => '3.81',
18594             'File::Spec::Mac'       => '3.81',
18595             'File::Spec::OS2'       => '3.81',
18596             'File::Spec::Unix'      => '3.81',
18597             'File::Spec::VMS'       => '3.81',
18598             'File::Spec::Win32'     => '3.81',
18599             'File::stat'            => '1.10',
18600             'IO'                    => '1.47',
18601             'IO::Dir'               => '1.47',
18602             'IO::File'              => '1.47',
18603             'IO::Handle'            => '1.47',
18604             'IO::Pipe'              => '1.47',
18605             'IO::Poll'              => '1.47',
18606             'IO::Seekable'          => '1.47',
18607             'IO::Select'            => '1.47',
18608             'IO::Socket'            => '1.47',
18609             'IO::Socket::INET'      => '1.47',
18610             'IO::Socket::UNIX'      => '1.47',
18611             'List::Util'            => '1.56',
18612             'List::Util::XS'        => '1.56',
18613             'Module::CoreList'      => '5.20210620',
18614             'Module::CoreList::Utils'=> '5.20210620',
18615             'Opcode'                => '1.51',
18616             'POSIX'                 => '1.98',
18617             'Scalar::Util'          => '1.56',
18618             'Socket'                => '2.032',
18619             'Sub::Util'             => '1.56',
18620             'Test2'                 => '1.302185',
18621             'Test2::API'            => '1.302185',
18622             'Test2::API::Breakage'  => '1.302185',
18623             'Test2::API::Context'   => '1.302185',
18624             'Test2::API::Instance'  => '1.302185',
18625             'Test2::API::InterceptResult'=> '1.302185',
18626             'Test2::API::InterceptResult::Event'=> '1.302185',
18627             'Test2::API::InterceptResult::Facet'=> '1.302185',
18628             'Test2::API::InterceptResult::Hub'=> '1.302185',
18629             'Test2::API::InterceptResult::Squasher'=> '1.302185',
18630             'Test2::API::Stack'     => '1.302185',
18631             'Test2::Event'          => '1.302185',
18632             'Test2::Event::Bail'    => '1.302185',
18633             'Test2::Event::Diag'    => '1.302185',
18634             'Test2::Event::Encoding'=> '1.302185',
18635             'Test2::Event::Exception'=> '1.302185',
18636             'Test2::Event::Fail'    => '1.302185',
18637             'Test2::Event::Generic' => '1.302185',
18638             'Test2::Event::Note'    => '1.302185',
18639             'Test2::Event::Ok'      => '1.302185',
18640             'Test2::Event::Pass'    => '1.302185',
18641             'Test2::Event::Plan'    => '1.302185',
18642             'Test2::Event::Skip'    => '1.302185',
18643             'Test2::Event::Subtest' => '1.302185',
18644             'Test2::Event::TAP::Version'=> '1.302185',
18645             'Test2::Event::V2'      => '1.302185',
18646             'Test2::Event::Waiting' => '1.302185',
18647             'Test2::EventFacet'     => '1.302185',
18648             'Test2::EventFacet::About'=> '1.302185',
18649             'Test2::EventFacet::Amnesty'=> '1.302185',
18650             'Test2::EventFacet::Assert'=> '1.302185',
18651             'Test2::EventFacet::Control'=> '1.302185',
18652             'Test2::EventFacet::Error'=> '1.302185',
18653             'Test2::EventFacet::Hub'=> '1.302185',
18654             'Test2::EventFacet::Info'=> '1.302185',
18655             'Test2::EventFacet::Info::Table'=> '1.302185',
18656             'Test2::EventFacet::Meta'=> '1.302185',
18657             'Test2::EventFacet::Parent'=> '1.302185',
18658             'Test2::EventFacet::Plan'=> '1.302185',
18659             'Test2::EventFacet::Render'=> '1.302185',
18660             'Test2::EventFacet::Trace'=> '1.302185',
18661             'Test2::Formatter'      => '1.302185',
18662             'Test2::Formatter::TAP' => '1.302185',
18663             'Test2::Hub'            => '1.302185',
18664             'Test2::Hub::Interceptor'=> '1.302185',
18665             'Test2::Hub::Interceptor::Terminator'=> '1.302185',
18666             'Test2::Hub::Subtest'   => '1.302185',
18667             'Test2::IPC'            => '1.302185',
18668             'Test2::IPC::Driver'    => '1.302185',
18669             'Test2::IPC::Driver::Files'=> '1.302185',
18670             'Test2::Tools::Tiny'    => '1.302185',
18671             'Test2::Util'           => '1.302185',
18672             'Test2::Util::ExternalMeta'=> '1.302185',
18673             'Test2::Util::Facets2Legacy'=> '1.302185',
18674             'Test2::Util::HashBase' => '1.302185',
18675             'Test2::Util::Trace'    => '1.302185',
18676             'Test::Builder'         => '1.302185',
18677             'Test::Builder::Formatter'=> '1.302185',
18678             'Test::Builder::Module' => '1.302185',
18679             'Test::Builder::Tester' => '1.302185',
18680             'Test::Builder::Tester::Color'=> '1.302185',
18681             'Test::Builder::TodoDiag'=> '1.302185',
18682             'Test::More'            => '1.302185',
18683             'Test::Simple'          => '1.302185',
18684             'Test::Tester'          => '1.302185',
18685             'Test::Tester::Capture' => '1.302185',
18686             'Test::Tester::CaptureRunner'=> '1.302185',
18687             'Test::Tester::Delegate'=> '1.302185',
18688             'Test::use::ok'         => '1.302185',
18689             'Unicode::Collate'      => '1.30',
18690             'Unicode::Collate::CJK::Big5'=> '1.30',
18691             'Unicode::Collate::CJK::GB2312'=> '1.30',
18692             'Unicode::Collate::CJK::JISX0208'=> '1.30',
18693             'Unicode::Collate::CJK::Korean'=> '1.30',
18694             'Unicode::Collate::CJK::Pinyin'=> '1.30',
18695             'Unicode::Collate::CJK::Stroke'=> '1.30',
18696             'Unicode::Collate::CJK::Zhuyin'=> '1.30',
18697             'Unicode::Collate::Locale'=> '1.30',
18698             'Unicode::UCD'          => '0.76',
18699             'XS::APItest'           => '1.17',
18700             'feature'               => '1.66',
18701             'ok'                    => '1.302185',
18702             'open'                  => '1.13',
18703             'perlfaq'               => '5.20210520',
18704             'version'               => '0.9929',
18705             'version::regex'        => '0.9929',
18706         },
18707         removed => {
18708         }
18709     },
18710     5.035002 => {
18711         delta_from => 5.035001,
18712         changed => {
18713             'Amiga::ARexx'          => '0.06',
18714             'Amiga::Exec'           => '0.03',
18715             'B::Concise'            => '1.005',
18716             'B::Op_private'         => '5.035002',
18717             'Config'                => '5.035002',
18718             'Cwd'                   => '3.82',
18719             'DB_File'               => '1.856',
18720             'Data::Dumper'          => '2.183',
18721             'Devel::PPPort'         => '3.63',
18722             'Devel::Peek'           => '1.31',
18723             'DynaLoader'            => '1.51',
18724             'Encode'                => '3.10',
18725             'Encode::JP'            => '2.05',
18726             'Errno'                 => '1.34',
18727             'ExtUtils::Miniperl'    => '1.11',
18728             'Fcntl'                 => '1.15',
18729             'File::Find'            => '1.39_01',
18730             'File::Glob'            => '1.36',
18731             'File::stat'            => '1.11',
18732             'GDBM_File'             => '1.20',
18733             'Hash::Util'            => '0.26',
18734             'Hash::Util::FieldHash' => '1.22',
18735             'I18N::Langinfo'        => '0.20',
18736             'IPC::Open2'            => '1.06',
18737             'IPC::Open3'            => '1.22',
18738             'Math::BigFloat'        => '1.999823',
18739             'Math::BigFloat::Trace' => '0.53',
18740             'Math::BigInt'          => '1.999823',
18741             'Math::BigInt::Calc'    => '1.999823',
18742             'Math::BigInt::FastCalc'=> '0.5010',
18743             'Math::BigInt::Lib'     => '1.999823',
18744             'Math::BigInt::Trace'   => '0.53',
18745             'Math::BigRat'          => '0.2617',
18746             'Module::CoreList'      => '5.20210723',
18747             'Module::CoreList::Utils'=> '5.20210723',
18748             'Opcode'                => '1.52',
18749             'PerlIO'                => '1.12',
18750             'Pod::Functions'        => '1.14',
18751             'Pod::Functions::Functions'=> '1.14',
18752             'Pod::Html'             => '1.31',
18753             'Pod::Html::Util'       => '1.31',
18754             'Pod::Simple'           => '3.43',
18755             'Pod::Simple::BlackBox' => '3.43',
18756             'Pod::Simple::Checker'  => '3.43',
18757             'Pod::Simple::Debug'    => '3.43',
18758             'Pod::Simple::DumpAsText'=> '3.43',
18759             'Pod::Simple::DumpAsXML'=> '3.43',
18760             'Pod::Simple::HTML'     => '3.43',
18761             'Pod::Simple::HTMLBatch'=> '3.43',
18762             'Pod::Simple::LinkSection'=> '3.43',
18763             'Pod::Simple::Methody'  => '3.43',
18764             'Pod::Simple::Progress' => '3.43',
18765             'Pod::Simple::PullParser'=> '3.43',
18766             'Pod::Simple::PullParserEndToken'=> '3.43',
18767             'Pod::Simple::PullParserStartToken'=> '3.43',
18768             'Pod::Simple::PullParserTextToken'=> '3.43',
18769             'Pod::Simple::PullParserToken'=> '3.43',
18770             'Pod::Simple::RTF'      => '3.43',
18771             'Pod::Simple::Search'   => '3.43',
18772             'Pod::Simple::SimpleTree'=> '3.43',
18773             'Pod::Simple::Text'     => '3.43',
18774             'Pod::Simple::TextContent'=> '3.43',
18775             'Pod::Simple::TiedOutFH'=> '3.43',
18776             'Pod::Simple::Transcode'=> '3.43',
18777             'Pod::Simple::TranscodeDumb'=> '3.43',
18778             'Pod::Simple::TranscodeSmart'=> '3.43',
18779             'Pod::Simple::XHTML'    => '3.43',
18780             'Pod::Simple::XMLOutStream'=> '3.43',
18781             'Sys::Hostname'         => '1.24',
18782             'Text::Tabs'            => '2021.0717',
18783             'Text::Wrap'            => '2021.0717',
18784             'Time::HiRes'           => '1.9768',
18785             'Unicode::UCD'          => '0.77',
18786             'VMS::Filespec'         => '1.13',
18787             'VMS::Stdio'            => '2.46',
18788             'XSLoader'              => '0.31',
18789             'bigint'                => '0.53',
18790             'bignum'                => '0.53',
18791             'bigrat'                => '0.53',
18792             'if'                    => '0.0610',
18793             'threads'               => '2.27',
18794             'warnings'              => '1.52',
18795         },
18796         removed => {
18797         }
18798     },
18799     5.035003 => {
18800         delta_from => 5.035002,
18801         changed => {
18802             'Archive::Tar'          => '2.40',
18803             'Archive::Tar::Constant'=> '2.40',
18804             'Archive::Tar::File'    => '2.40',
18805             'B::Op_private'         => '5.035003',
18806             'Config'                => '5.035003',
18807             'Encode'                => '3.12',
18808             'Encode::GSM0338'       => '2.10',
18809             'Encode::Unicode'       => '2.19',
18810             'Module::CoreList'      => '5.20210820',
18811             'Module::CoreList::Utils'=> '5.20210820',
18812             'Net::hostent'          => '1.03',
18813             'Opcode'                => '1.53',
18814             'POSIX'                 => '1.99',
18815             'Pod::Html'             => '1.32',
18816             'Pod::Html::Util'       => '1.32',
18817             'Storable'              => '3.24',
18818             'Text::Tabs'            => '2021.0804',
18819             'Text::Wrap'            => '2021.0804',
18820             'Time::HiRes'           => '1.9769',
18821             'Unicode::Normalize'    => '1.30',
18822             'XS::APItest'           => '1.18',
18823             'diagnostics'           => '1.38',
18824             'feature'               => '1.67',
18825             'sort'                  => '2.05',
18826             'threads::shared'       => '1.63',
18827             'warnings'              => '1.53',
18828         },
18829         removed => {
18830         }
18831     },
18832     5.035004 => {
18833         delta_from => 5.035003,
18834         changed => {
18835             'B'                     => '1.83',
18836             'B::Deparse'            => '1.58',
18837             'B::Op_private'         => '5.035004',
18838             'Config'                => '5.035004',
18839             'Devel::Peek'           => '1.32',
18840             'Exporter'              => '5.77',
18841             'Exporter::Heavy'       => '5.77',
18842             'ExtUtils::ParseXS'     => '3.44',
18843             'ExtUtils::ParseXS::Constants'=> '3.44',
18844             'ExtUtils::ParseXS::CountLines'=> '3.44',
18845             'ExtUtils::ParseXS::Eval'=> '3.44',
18846             'ExtUtils::ParseXS::Utilities'=> '3.44',
18847             'ExtUtils::Typemaps'    => '3.44',
18848             'ExtUtils::Typemaps::Cmd'=> '3.44',
18849             'ExtUtils::Typemaps::InputMap'=> '3.44',
18850             'ExtUtils::Typemaps::OutputMap'=> '3.44',
18851             'ExtUtils::Typemaps::Type'=> '3.44',
18852             'Hash::Util::FieldHash' => '1.23',
18853             'IO'                    => '1.48',
18854             'IO::Dir'               => '1.48',
18855             'IO::File'              => '1.48',
18856             'IO::Handle'            => '1.48',
18857             'IO::Pipe'              => '1.48',
18858             'IO::Poll'              => '1.48',
18859             'IO::Seekable'          => '1.48',
18860             'IO::Select'            => '1.48',
18861             'IO::Socket'            => '1.48',
18862             'IO::Socket::INET'      => '1.48',
18863             'IO::Socket::UNIX'      => '1.48',
18864             'List::Util'            => '1.56_001',
18865             'List::Util::XS'        => '1.56_001',
18866             'Module::CoreList'      => '5.20210920',
18867             'Module::CoreList::Utils'=> '5.20210920',
18868             'Opcode'                => '1.54',
18869             'Pod::Html'             => '1.33',
18870             'Pod::Html::Util'       => '1.33',
18871             'Scalar::Util'          => '1.56_001',
18872             'Storable'              => '3.25',
18873             'Sub::Util'             => '1.56_001',
18874             'Text::Tabs'            => '2021.0814',
18875             'Text::Wrap'            => '2021.0814',
18876             'UNIVERSAL'             => '1.14',
18877             'Unicode'               => '14.0.0',
18878             'Unicode::Collate'      => '1.31',
18879             'Unicode::Collate::CJK::Big5'=> '1.31',
18880             'Unicode::Collate::CJK::GB2312'=> '1.31',
18881             'Unicode::Collate::CJK::JISX0208'=> '1.31',
18882             'Unicode::Collate::CJK::Korean'=> '1.31',
18883             'Unicode::Collate::CJK::Pinyin'=> '1.31',
18884             'Unicode::Collate::CJK::Stroke'=> '1.31',
18885             'Unicode::Collate::CJK::Zhuyin'=> '1.31',
18886             'Unicode::Collate::Locale'=> '1.31',
18887             'Unicode::UCD'          => '0.78',
18888             'XS::APItest'           => '1.19',
18889             'XS::Typemap'           => '0.19',
18890             'attributes'            => '0.34',
18891             'feature'               => '1.68',
18892             'mro'                   => '1.26',
18893             'threads::shared'       => '1.64',
18894             'warnings'              => '1.54',
18895         },
18896         removed => {
18897         }
18898     },
18899     5.035005 => {
18900         delta_from => 5.035004,
18901         changed => {
18902             'B::Concise'            => '1.006',
18903             'B::Deparse'            => '1.59',
18904             'B::Op_private'         => '5.035005',
18905             'Config'                => '5.035005',
18906             'Digest'                => '1.20',
18907             'Digest::base'          => '1.20',
18908             'Digest::file'          => '1.20',
18909             'DynaLoader'            => '1.52',
18910             'Encode'                => '3.16',
18911             'Errno'                 => '1.35',
18912             'File::Copy'            => '2.37',
18913             'File::Spec::Unix'      => '3.82',
18914             'FindBin'               => '1.53',
18915             'GDBM_File'             => '1.21',
18916             'HTTP::Tiny'            => '0.078',
18917             'I18N::Langinfo'        => '0.21',
18918             'IO::Dir'               => '1.49',
18919             'IO::Pipe'              => '1.49',
18920             'IO::Poll'              => '1.49',
18921             'IO::Select'            => '1.49',
18922             'IO::Socket'            => '1.49',
18923             'IO::Socket::INET'      => '1.49',
18924             'IO::Socket::UNIX'      => '1.49',
18925             'List::Util'            => '1.60',
18926             'List::Util::XS'        => '1.60',
18927             'Math::BigRat::Trace'   => '0.63',
18928             'Module::CoreList'      => '5.20211020',
18929             'Module::CoreList::Utils'=> '5.20211020',
18930             'POSIX'                 => '2.01',
18931             'Scalar::Util'          => '1.60',
18932             'Sub::Util'             => '1.60',
18933             'Test2'                 => '1.302188',
18934             'Test2::API'            => '1.302188',
18935             'Test2::API::Breakage'  => '1.302188',
18936             'Test2::API::Context'   => '1.302188',
18937             'Test2::API::Instance'  => '1.302188',
18938             'Test2::API::InterceptResult'=> '1.302188',
18939             'Test2::API::InterceptResult::Event'=> '1.302188',
18940             'Test2::API::InterceptResult::Facet'=> '1.302188',
18941             'Test2::API::InterceptResult::Hub'=> '1.302188',
18942             'Test2::API::InterceptResult::Squasher'=> '1.302188',
18943             'Test2::API::Stack'     => '1.302188',
18944             'Test2::Event'          => '1.302188',
18945             'Test2::Event::Bail'    => '1.302188',
18946             'Test2::Event::Diag'    => '1.302188',
18947             'Test2::Event::Encoding'=> '1.302188',
18948             'Test2::Event::Exception'=> '1.302188',
18949             'Test2::Event::Fail'    => '1.302188',
18950             'Test2::Event::Generic' => '1.302188',
18951             'Test2::Event::Note'    => '1.302188',
18952             'Test2::Event::Ok'      => '1.302188',
18953             'Test2::Event::Pass'    => '1.302188',
18954             'Test2::Event::Plan'    => '1.302188',
18955             'Test2::Event::Skip'    => '1.302188',
18956             'Test2::Event::Subtest' => '1.302188',
18957             'Test2::Event::TAP::Version'=> '1.302188',
18958             'Test2::Event::V2'      => '1.302188',
18959             'Test2::Event::Waiting' => '1.302188',
18960             'Test2::EventFacet'     => '1.302188',
18961             'Test2::EventFacet::About'=> '1.302188',
18962             'Test2::EventFacet::Amnesty'=> '1.302188',
18963             'Test2::EventFacet::Assert'=> '1.302188',
18964             'Test2::EventFacet::Control'=> '1.302188',
18965             'Test2::EventFacet::Error'=> '1.302188',
18966             'Test2::EventFacet::Hub'=> '1.302188',
18967             'Test2::EventFacet::Info'=> '1.302188',
18968             'Test2::EventFacet::Info::Table'=> '1.302188',
18969             'Test2::EventFacet::Meta'=> '1.302188',
18970             'Test2::EventFacet::Parent'=> '1.302188',
18971             'Test2::EventFacet::Plan'=> '1.302188',
18972             'Test2::EventFacet::Render'=> '1.302188',
18973             'Test2::EventFacet::Trace'=> '1.302188',
18974             'Test2::Formatter'      => '1.302188',
18975             'Test2::Formatter::TAP' => '1.302188',
18976             'Test2::Hub'            => '1.302188',
18977             'Test2::Hub::Interceptor'=> '1.302188',
18978             'Test2::Hub::Interceptor::Terminator'=> '1.302188',
18979             'Test2::Hub::Subtest'   => '1.302188',
18980             'Test2::IPC'            => '1.302188',
18981             'Test2::IPC::Driver'    => '1.302188',
18982             'Test2::IPC::Driver::Files'=> '1.302188',
18983             'Test2::Tools::Tiny'    => '1.302188',
18984             'Test2::Util'           => '1.302188',
18985             'Test2::Util::ExternalMeta'=> '1.302188',
18986             'Test2::Util::Facets2Legacy'=> '1.302188',
18987             'Test2::Util::HashBase' => '1.302188',
18988             'Test2::Util::Trace'    => '1.302188',
18989             'Test::Builder'         => '1.302188',
18990             'Test::Builder::Formatter'=> '1.302188',
18991             'Test::Builder::Module' => '1.302188',
18992             'Test::Builder::Tester' => '1.302188',
18993             'Test::Builder::Tester::Color'=> '1.302188',
18994             'Test::Builder::TodoDiag'=> '1.302188',
18995             'Test::More'            => '1.302188',
18996             'Test::Simple'          => '1.302188',
18997             'Test::Tester'          => '1.302188',
18998             'Test::Tester::Capture' => '1.302188',
18999             'Test::Tester::CaptureRunner'=> '1.302188',
19000             'Test::Tester::Delegate'=> '1.302188',
19001             'Test::use::ok'         => '1.302188',
19002             'Tie::Handle'           => '4.3',
19003             'Tie::Hash'             => '1.06',
19004             'Tie::Scalar'           => '1.06',
19005             'XS::APItest'           => '1.20',
19006             'experimental'          => '0.025',
19007             'ok'                    => '1.302188',
19008             'warnings'              => '1.55',
19009         },
19010         removed => {
19011         }
19012     },
19013     5.035006 => {
19014         delta_from => 5.035005,
19015         changed => {
19016             'B::Op_private'         => '5.035006',
19017             'Config'                => '5.035006',
19018             'File::Glob'            => '1.37',
19019             'File::stat'            => '1.12',
19020             'GDBM_File'             => '1.22',
19021             'HTTP::Tiny'            => '0.080',
19022             'Math::BigFloat'        => '1.999827',
19023             'Math::BigFloat::Trace' => '0.63',
19024             'Math::BigInt'          => '1.999827',
19025             'Math::BigInt::Calc'    => '1.999827',
19026             'Math::BigInt::FastCalc'=> '0.5012',
19027             'Math::BigInt::Lib'     => '1.999827',
19028             'Math::BigInt::Trace'   => '0.63',
19029             'Math::BigRat'          => '0.2620',
19030             'Module::CoreList'      => '5.20211120',
19031             'Module::CoreList::Utils'=> '5.20211120',
19032             'POSIX'                 => '2.02',
19033             'bigint'                => '0.63',
19034             'bignum'                => '0.63',
19035             'bigrat'                => '0.63',
19036             'diagnostics'           => '1.39',
19037             'feature'               => '1.69',
19038             'warnings'              => '1.56',
19039         },
19040         removed => {
19041         }
19042     },
19043     5.035007 => {
19044         delta_from => 5.035006,
19045         changed => {
19046             'B::Deparse'            => '1.60',
19047             'B::Op_private'         => '5.035007',
19048             'CPAN'                  => '2.29',
19049             'CPAN::Distribution'    => '2.29',
19050             'CPAN::FTP'             => '5.5014',
19051             'CPAN::FirstTime'       => '5.5316',
19052             'CPAN::HandleConfig'    => '5.5012',
19053             'CPAN::Index'           => '2.29',
19054             'Config'                => '5.035007',
19055             'Cwd'                   => '3.83',
19056             'ExtUtils::Command'     => '7.64',
19057             'ExtUtils::Command::MM' => '7.64',
19058             'ExtUtils::Liblist'     => '7.64',
19059             'ExtUtils::Liblist::Kid'=> '7.64',
19060             'ExtUtils::MM'          => '7.64',
19061             'ExtUtils::MM_AIX'      => '7.64',
19062             'ExtUtils::MM_Any'      => '7.64',
19063             'ExtUtils::MM_BeOS'     => '7.64',
19064             'ExtUtils::MM_Cygwin'   => '7.64',
19065             'ExtUtils::MM_DOS'      => '7.64',
19066             'ExtUtils::MM_Darwin'   => '7.64',
19067             'ExtUtils::MM_MacOS'    => '7.64',
19068             'ExtUtils::MM_NW5'      => '7.64',
19069             'ExtUtils::MM_OS2'      => '7.64',
19070             'ExtUtils::MM_OS390'    => '7.64',
19071             'ExtUtils::MM_QNX'      => '7.64',
19072             'ExtUtils::MM_UWIN'     => '7.64',
19073             'ExtUtils::MM_Unix'     => '7.64',
19074             'ExtUtils::MM_VMS'      => '7.64',
19075             'ExtUtils::MM_VOS'      => '7.64',
19076             'ExtUtils::MM_Win32'    => '7.64',
19077             'ExtUtils::MM_Win95'    => '7.64',
19078             'ExtUtils::MY'          => '7.64',
19079             'ExtUtils::MakeMaker'   => '7.64',
19080             'ExtUtils::MakeMaker::Config'=> '7.64',
19081             'ExtUtils::MakeMaker::Locale'=> '7.64',
19082             'ExtUtils::MakeMaker::version'=> '7.64',
19083             'ExtUtils::MakeMaker::version::regex'=> '7.64',
19084             'ExtUtils::Mkbootstrap' => '7.64',
19085             'ExtUtils::Mksymlists'  => '7.64',
19086             'ExtUtils::testlib'     => '7.64',
19087             'File::Compare'         => '1.1007',
19088             'File::Copy'            => '2.38',
19089             'File::Spec'            => '3.83',
19090             'File::Spec::AmigaOS'   => '3.83',
19091             'File::Spec::Cygwin'    => '3.83',
19092             'File::Spec::Epoc'      => '3.83',
19093             'File::Spec::Functions' => '3.83',
19094             'File::Spec::Mac'       => '3.83',
19095             'File::Spec::OS2'       => '3.83',
19096             'File::Spec::Unix'      => '3.83',
19097             'File::Spec::VMS'       => '3.83',
19098             'File::Spec::Win32'     => '3.83',
19099             'Hash::Util'            => '0.27',
19100             'Hash::Util::FieldHash' => '1.24',
19101             'IO'                    => '1.49',
19102             'JSON::PP'              => '4.07',
19103             'JSON::PP::Boolean'     => '4.07',
19104             'Math::BigFloat'        => '1.999828',
19105             'Math::BigInt'          => '1.999828',
19106             'Math::BigInt::Calc'    => '1.999828',
19107             'Math::BigInt::Lib'     => '1.999828',
19108             'Module::CoreList'      => '5.20211220',
19109             'Module::CoreList::Utils'=> '5.20211220',
19110             'Opcode'                => '1.55',
19111             'builtin'               => '0.001',
19112             'overload'              => '1.34',
19113         },
19114         removed => {
19115         }
19116     },
19117     5.035008 => {
19118         delta_from => 5.035007,
19119         changed => {
19120             'B::Deparse'            => '1.61',
19121             'B::Op_private'         => '5.035008',
19122             'Config'                => '5.035008',
19123             'Data::Dumper'          => '2.184',
19124             'Errno'                 => '1.36',
19125             'File::Fetch'           => '1.04',
19126             'File::Find'            => '1.40',
19127             'Hash::Util::FieldHash' => '1.25',
19128             'Locale::Maketext'      => '1.30',
19129             'Math::BigFloat'        => '1.999829',
19130             'Math::BigFloat::Trace' => '0.64',
19131             'Math::BigInt'          => '1.999829',
19132             'Math::BigInt::Calc'    => '1.999829',
19133             'Math::BigInt::Lib'     => '1.999829',
19134             'Math::BigInt::Trace'   => '0.64',
19135             'Math::BigRat::Trace'   => '0.64',
19136             'Module::CoreList'      => '5.20220120',
19137             'Module::CoreList::Utils'=> '5.20220120',
19138             'NEXT'                  => '0.69',
19139             'POSIX'                 => '2.03',
19140             'Win32'                 => '0.58',
19141             '_charnames'            => '1.49',
19142             'bigint'                => '0.64',
19143             'bignum'                => '0.64',
19144             'bigrat'                => '0.64',
19145             'charnames'             => '1.49',
19146         },
19147         removed => {
19148         }
19149     },
19150     5.035009 => {
19151         delta_from => 5.035008,
19152         changed => {
19153             'App::Cpan'             => '1.678',
19154             'B::Deparse'            => '1.62',
19155             'B::Op_private'         => '5.035009',
19156             'CPAN'                  => '2.33',
19157             'CPAN::Distribution'    => '2.33',
19158             'CPAN::FTP'             => '5.5016',
19159             'CPAN::FirstTime'       => '5.5317',
19160             'Config'                => '5.035009',
19161             'Devel::PPPort'         => '3.64',
19162             'File::Copy'            => '2.39',
19163             'Hash::Util'            => '0.28',
19164             'Hash::Util::FieldHash' => '1.26',
19165             'List::Util'            => '1.61',
19166             'List::Util::XS'        => '1.61',
19167             'Module::CoreList'      => '5.20220220',
19168             'Module::CoreList::Utils'=> '5.20220220',
19169             'Opcode'                => '1.56',
19170             'Scalar::Util'          => '1.61',
19171             'Sub::Util'             => '1.61',
19172             'Tie::SubstrHash'       => '1.01',
19173             'XS::APItest'           => '1.21',
19174             '_charnames'            => '1.50',
19175             'builtin'               => '0.002',
19176             'charnames'             => '1.50',
19177             'experimental'          => '0.027',
19178             'feature'               => '1.70',
19179             'overload'              => '1.35',
19180             're'                    => '0.42',
19181             'sigtrap'               => '1.10',
19182             'warnings'              => '1.57',
19183         },
19184         removed => {
19185         }
19186     },
19187     5.034001 => {
19188         delta_from => 5.034000,
19189         changed => {
19190             'B::Deparse'            => '1.57',
19191             'B::Op_private'         => '5.034001',
19192             'Config'                => '5.034001',
19193             'Encode'                => '3.08_01',
19194             'GDBM_File'             => '1.19_01',
19195             'Module::CoreList'      => '5.20220313',
19196             'Module::CoreList::Utils'=> '5.20220313',
19197         },
19198         removed => {
19199         }
19200     },
19201     5.035010 => {
19202         delta_from => 5.035009,
19203         changed => {
19204             'Attribute::Handlers'   => '1.02',
19205             'B::Deparse'            => '1.63',
19206             'B::Op_private'         => '5.035010',
19207             'Config'                => '5.03501',
19208             'Cwd'                   => '3.84',
19209             'DB_File'               => '1.857',
19210             'Devel::PPPort'         => '3.68',
19211             'ExtUtils::ParseXS'     => '3.45',
19212             'ExtUtils::ParseXS::Constants'=> '3.45',
19213             'ExtUtils::ParseXS::CountLines'=> '3.45',
19214             'ExtUtils::ParseXS::Eval'=> '3.45',
19215             'ExtUtils::ParseXS::Utilities'=> '3.45',
19216             'ExtUtils::Typemaps'    => '3.45',
19217             'ExtUtils::Typemaps::Cmd'=> '3.45',
19218             'ExtUtils::Typemaps::InputMap'=> '3.45',
19219             'ExtUtils::Typemaps::OutputMap'=> '3.45',
19220             'ExtUtils::Typemaps::Type'=> '3.45',
19221             'File::Spec'            => '3.84',
19222             'File::Spec::AmigaOS'   => '3.84',
19223             'File::Spec::Cygwin'    => '3.84',
19224             'File::Spec::Epoc'      => '3.84',
19225             'File::Spec::Functions' => '3.84',
19226             'File::Spec::Mac'       => '3.84',
19227             'File::Spec::OS2'       => '3.84',
19228             'File::Spec::Unix'      => '3.84',
19229             'File::Spec::VMS'       => '3.84',
19230             'File::Spec::Win32'     => '3.84',
19231             'GDBM_File'             => '1.23',
19232             'List::Util'            => '1.62',
19233             'List::Util::XS'        => '1.62',
19234             'Module::CoreList'      => '5.20220320',
19235             'Module::CoreList::Utils'=> '5.20220320',
19236             'Opcode'                => '1.57',
19237             'Scalar::Util'          => '1.62',
19238             'Sub::Util'             => '1.62',
19239             'Test2'                 => '1.302190',
19240             'Test2::API'            => '1.302190',
19241             'Test2::API::Breakage'  => '1.302190',
19242             'Test2::API::Context'   => '1.302190',
19243             'Test2::API::Instance'  => '1.302190',
19244             'Test2::API::InterceptResult'=> '1.302190',
19245             'Test2::API::InterceptResult::Event'=> '1.302190',
19246             'Test2::API::InterceptResult::Facet'=> '1.302190',
19247             'Test2::API::InterceptResult::Hub'=> '1.302190',
19248             'Test2::API::InterceptResult::Squasher'=> '1.302190',
19249             'Test2::API::Stack'     => '1.302190',
19250             'Test2::Event'          => '1.302190',
19251             'Test2::Event::Bail'    => '1.302190',
19252             'Test2::Event::Diag'    => '1.302190',
19253             'Test2::Event::Encoding'=> '1.302190',
19254             'Test2::Event::Exception'=> '1.302190',
19255             'Test2::Event::Fail'    => '1.302190',
19256             'Test2::Event::Generic' => '1.302190',
19257             'Test2::Event::Note'    => '1.302190',
19258             'Test2::Event::Ok'      => '1.302190',
19259             'Test2::Event::Pass'    => '1.302190',
19260             'Test2::Event::Plan'    => '1.302190',
19261             'Test2::Event::Skip'    => '1.302190',
19262             'Test2::Event::Subtest' => '1.302190',
19263             'Test2::Event::TAP::Version'=> '1.302190',
19264             'Test2::Event::V2'      => '1.302190',
19265             'Test2::Event::Waiting' => '1.302190',
19266             'Test2::EventFacet'     => '1.302190',
19267             'Test2::EventFacet::About'=> '1.302190',
19268             'Test2::EventFacet::Amnesty'=> '1.302190',
19269             'Test2::EventFacet::Assert'=> '1.302190',
19270             'Test2::EventFacet::Control'=> '1.302190',
19271             'Test2::EventFacet::Error'=> '1.302190',
19272             'Test2::EventFacet::Hub'=> '1.302190',
19273             'Test2::EventFacet::Info'=> '1.302190',
19274             'Test2::EventFacet::Info::Table'=> '1.302190',
19275             'Test2::EventFacet::Meta'=> '1.302190',
19276             'Test2::EventFacet::Parent'=> '1.302190',
19277             'Test2::EventFacet::Plan'=> '1.302190',
19278             'Test2::EventFacet::Render'=> '1.302190',
19279             'Test2::EventFacet::Trace'=> '1.302190',
19280             'Test2::Formatter'      => '1.302190',
19281             'Test2::Formatter::TAP' => '1.302190',
19282             'Test2::Hub'            => '1.302190',
19283             'Test2::Hub::Interceptor'=> '1.302190',
19284             'Test2::Hub::Interceptor::Terminator'=> '1.302190',
19285             'Test2::Hub::Subtest'   => '1.302190',
19286             'Test2::IPC'            => '1.302190',
19287             'Test2::IPC::Driver'    => '1.302190',
19288             'Test2::IPC::Driver::Files'=> '1.302190',
19289             'Test2::Tools::Tiny'    => '1.302190',
19290             'Test2::Util'           => '1.302190',
19291             'Test2::Util::ExternalMeta'=> '1.302190',
19292             'Test2::Util::Facets2Legacy'=> '1.302190',
19293             'Test2::Util::HashBase' => '1.302190',
19294             'Test2::Util::Trace'    => '1.302190',
19295             'Test::Builder'         => '1.302190',
19296             'Test::Builder::Formatter'=> '1.302190',
19297             'Test::Builder::Module' => '1.302190',
19298             'Test::Builder::Tester' => '1.302190',
19299             'Test::Builder::Tester::Color'=> '1.302190',
19300             'Test::Builder::TodoDiag'=> '1.302190',
19301             'Test::More'            => '1.302190',
19302             'Test::Simple'          => '1.302190',
19303             'Test::Tester'          => '1.302190',
19304             'Test::Tester::Capture' => '1.302190',
19305             'Test::Tester::CaptureRunner'=> '1.302190',
19306             'Test::Tester::Delegate'=> '1.302190',
19307             'Test::use::ok'         => '1.302190',
19308             'XS::APItest'           => '1.22',
19309             'builtin'               => '0.004',
19310             'experimental'          => '0.028',
19311             'feature'               => '1.71',
19312             'ok'                    => '1.302190',
19313             'warnings'              => '1.58',
19314         },
19315         removed => {
19316         }
19317     },
19318     5.035011 => {
19319         delta_from => 5.03501,
19320         changed => {
19321             'App::Prove'            => '3.44',
19322             'App::Prove::State'     => '3.44',
19323             'App::Prove::State::Result'=> '3.44',
19324             'App::Prove::State::Result::Test'=> '3.44',
19325             'B::Deparse'            => '1.64',
19326             'B::Op_private'         => '5.035011',
19327             'Compress::Raw::Bzip2'  => '2.103',
19328             'Compress::Raw::Zlib'   => '2.103',
19329             'Compress::Zlib'        => '2.106',
19330             'Config'                => '5.035011',
19331             'Encode'                => '3.17',
19332             'Encode::Unicode'       => '2.20',
19333             'ExtUtils::Constant::Base'=> '0.07',
19334             'IO'                    => '1.49_01',
19335             'IO::Compress::Adapter::Bzip2'=> '2.106',
19336             'IO::Compress::Adapter::Deflate'=> '2.106',
19337             'IO::Compress::Adapter::Identity'=> '2.106',
19338             'IO::Compress::Base'    => '2.106',
19339             'IO::Compress::Base::Common'=> '2.106',
19340             'IO::Compress::Bzip2'   => '2.106',
19341             'IO::Compress::Deflate' => '2.106',
19342             'IO::Compress::Gzip'    => '2.106',
19343             'IO::Compress::Gzip::Constants'=> '2.106',
19344             'IO::Compress::RawDeflate'=> '2.106',
19345             'IO::Compress::Zip'     => '2.106',
19346             'IO::Compress::Zip::Constants'=> '2.106',
19347             'IO::Compress::Zlib::Constants'=> '2.106',
19348             'IO::Compress::Zlib::Extra'=> '2.106',
19349             'IO::Uncompress::Adapter::Bunzip2'=> '2.106',
19350             'IO::Uncompress::Adapter::Identity'=> '2.106',
19351             'IO::Uncompress::Adapter::Inflate'=> '2.106',
19352             'IO::Uncompress::AnyInflate'=> '2.106',
19353             'IO::Uncompress::AnyUncompress'=> '2.106',
19354             'IO::Uncompress::Base'  => '2.106',
19355             'IO::Uncompress::Bunzip2'=> '2.106',
19356             'IO::Uncompress::Gunzip'=> '2.106',
19357             'IO::Uncompress::Inflate'=> '2.106',
19358             'IO::Uncompress::RawInflate'=> '2.106',
19359             'IO::Uncompress::Unzip' => '2.106',
19360             'Locale::Maketext'      => '1.31',
19361             'Math::BigFloat'        => '1.999830',
19362             'Math::BigFloat::Trace' => '0.65',
19363             'Math::BigInt'          => '1.999830',
19364             'Math::BigInt::Calc'    => '1.999830',
19365             'Math::BigInt::Lib'     => '1.999830',
19366             'Math::BigInt::Trace'   => '0.65',
19367             'Math::BigRat'          => '0.2621',
19368             'Math::BigRat::Trace'   => '0.65',
19369             'Module::CoreList'      => '5.20220420',
19370             'Module::CoreList::Utils'=> '5.20220420',
19371             'Net::Cmd'              => '3.14',
19372             'Net::Config'           => '3.14',
19373             'Net::Domain'           => '3.14',
19374             'Net::FTP'              => '3.14',
19375             'Net::FTP::A'           => '3.14',
19376             'Net::FTP::E'           => '3.14',
19377             'Net::FTP::I'           => '3.14',
19378             'Net::FTP::L'           => '3.14',
19379             'Net::FTP::dataconn'    => '3.14',
19380             'Net::NNTP'             => '3.14',
19381             'Net::Netrc'            => '3.14',
19382             'Net::POP3'             => '3.14',
19383             'Net::SMTP'             => '3.14',
19384             'Net::Time'             => '3.14',
19385             'Socket'                => '2.033',
19386             'Storable'              => '3.26',
19387             'TAP::Base'             => '3.44',
19388             'TAP::Formatter::Base'  => '3.44',
19389             'TAP::Formatter::Color' => '3.44',
19390             'TAP::Formatter::Console'=> '3.44',
19391             'TAP::Formatter::Console::ParallelSession'=> '3.44',
19392             'TAP::Formatter::Console::Session'=> '3.44',
19393             'TAP::Formatter::File'  => '3.44',
19394             'TAP::Formatter::File::Session'=> '3.44',
19395             'TAP::Formatter::Session'=> '3.44',
19396             'TAP::Harness'          => '3.44',
19397             'TAP::Harness::Env'     => '3.44',
19398             'TAP::Object'           => '3.44',
19399             'TAP::Parser'           => '3.44',
19400             'TAP::Parser::Aggregator'=> '3.44',
19401             'TAP::Parser::Grammar'  => '3.44',
19402             'TAP::Parser::Iterator' => '3.44',
19403             'TAP::Parser::Iterator::Array'=> '3.44',
19404             'TAP::Parser::Iterator::Process'=> '3.44',
19405             'TAP::Parser::Iterator::Stream'=> '3.44',
19406             'TAP::Parser::IteratorFactory'=> '3.44',
19407             'TAP::Parser::Multiplexer'=> '3.44',
19408             'TAP::Parser::Result'   => '3.44',
19409             'TAP::Parser::Result::Bailout'=> '3.44',
19410             'TAP::Parser::Result::Comment'=> '3.44',
19411             'TAP::Parser::Result::Plan'=> '3.44',
19412             'TAP::Parser::Result::Pragma'=> '3.44',
19413             'TAP::Parser::Result::Test'=> '3.44',
19414             'TAP::Parser::Result::Unknown'=> '3.44',
19415             'TAP::Parser::Result::Version'=> '3.44',
19416             'TAP::Parser::Result::YAML'=> '3.44',
19417             'TAP::Parser::ResultFactory'=> '3.44',
19418             'TAP::Parser::Scheduler'=> '3.44',
19419             'TAP::Parser::Scheduler::Job'=> '3.44',
19420             'TAP::Parser::Scheduler::Spinner'=> '3.44',
19421             'TAP::Parser::Source'   => '3.44',
19422             'TAP::Parser::SourceHandler'=> '3.44',
19423             'TAP::Parser::SourceHandler::Executable'=> '3.44',
19424             'TAP::Parser::SourceHandler::File'=> '3.44',
19425             'TAP::Parser::SourceHandler::Handle'=> '3.44',
19426             'TAP::Parser::SourceHandler::Perl'=> '3.44',
19427             'TAP::Parser::SourceHandler::RawTAP'=> '3.44',
19428             'TAP::Parser::YAMLish::Reader'=> '3.44',
19429             'TAP::Parser::YAMLish::Writer'=> '3.44',
19430             'Test::Harness'         => '3.44',
19431             'Text::ParseWords'      => '3.31',
19432             'Time::HiRes'           => '1.9770',
19433             'Unicode::Normalize'    => '1.31',
19434             'bigfloat'              => '0.65',
19435             'bigint'                => '0.65',
19436             'bignum'                => '0.65',
19437             'bigrat'                => '0.65',
19438             'builtin'               => '0.005',
19439             're'                    => '0.43',
19440         },
19441         removed => {
19442         }
19443     },
19444     5.036000 => {
19445         delta_from => 5.035011,
19446         changed => {
19447             'Amiga::Exec'           => '0.04',
19448             'B::Op_private'         => '5.036000',
19449             'Compress::Raw::Zlib'   => '2.105',
19450             'Config'                => '5.036',
19451             'IO'                    => '1.50',
19452             'Module::CoreList'      => '5.20220520',
19453             'Module::CoreList::Utils'=> '5.20220520',
19454             'Win32'                 => '0.59',
19455             'builtin'               => '0.006',
19456             'feature'               => '1.72',
19457         },
19458         removed => {
19459         }
19460     },
19461     5.037000 => {
19462         delta_from => 5.036000,
19463         changed => {
19464             'feature'               => '1.73',
19465             'Module::CoreList'      => '5.20220527',
19466             'Module::CoreList::Utils'=> '5.20220527',
19467         },
19468         removed => {
19469         }
19470     },
19471     5.037001 => {
19472         delta_from => 5.037000,
19473         changed => {
19474             'B'                     => '1.84',
19475             'B::Op_private'         => '5.037001',
19476             'Carp'                  => '1.53',
19477             'Carp::Heavy'           => '1.53',
19478             'Config'                => '5.037001',
19479             'Cwd'                   => '3.85',
19480             'Data::Dumper'          => '2.185',
19481             'ExtUtils::CBuilder'    => '0.280237',
19482             'ExtUtils::CBuilder::Base'=> '0.280237',
19483             'ExtUtils::CBuilder::Platform::Unix'=> '0.280237',
19484             'ExtUtils::CBuilder::Platform::VMS'=> '0.280237',
19485             'ExtUtils::CBuilder::Platform::Windows'=> '0.280237',
19486             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280237',
19487             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280237',
19488             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280237',
19489             'ExtUtils::CBuilder::Platform::aix'=> '0.280237',
19490             'ExtUtils::CBuilder::Platform::android'=> '0.280237',
19491             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280237',
19492             'ExtUtils::CBuilder::Platform::darwin'=> '0.280237',
19493             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280237',
19494             'ExtUtils::CBuilder::Platform::os2'=> '0.280237',
19495             'ExtUtils::Miniperl'    => '1.12',
19496             'File::Spec'            => '3.85',
19497             'File::Spec::AmigaOS'   => '3.85',
19498             'File::Spec::Cygwin'    => '3.85',
19499             'File::Spec::Epoc'      => '3.85',
19500             'File::Spec::Functions' => '3.85',
19501             'File::Spec::Mac'       => '3.85',
19502             'File::Spec::OS2'       => '3.85',
19503             'File::Spec::Unix'      => '3.85',
19504             'File::Spec::VMS'       => '3.85',
19505             'File::Spec::Win32'     => '3.85',
19506             'FileHandle'            => '2.04',
19507             'GDBM_File'             => '1.24',
19508             'IO::Handle'            => '1.49',
19509             'IO::Pipe'              => '1.50',
19510             'IO::Socket::INET'      => '1.50',
19511             'IO::Socket::UNIX'      => '1.50',
19512             'Module::CoreList'      => '5.20220620',
19513             'Module::CoreList::Utils'=> '5.20220620',
19514             'ODBM_File'             => '1.18',
19515             'OS2::REXX'             => '1.06',
19516             'Opcode'                => '1.58',
19517             'POSIX'                 => '2.04',
19518             'SDBM_File'             => '1.16',
19519             'Unicode::Normalize'    => '1.32',
19520             'XS::APItest'           => '1.23',
19521             'builtin'               => '0.007',
19522             'encoding::warnings'    => '0.14',
19523             'feature'               => '1.74',
19524             'threads'               => '2.28',
19525         },
19526         removed => {
19527         }
19528     },
19529     5.037002 => {
19530         delta_from => 5.037001,
19531         changed => {
19532             'B'                     => '1.85',
19533             'B::Concise'            => '1.007',
19534             'B::Deparse'            => '1.65',
19535             'B::Op_private'         => '5.037002',
19536             'CPAN'                  => '2.34',
19537             'CPAN::Distribution'    => '2.34',
19538             'Compress::Raw::Bzip2'  => '2.201',
19539             'Compress::Raw::Zlib'   => '2.202',
19540             'Compress::Zlib'        => '2.201',
19541             'Config'                => '5.037002',
19542             'Cwd'                   => '3.86',
19543             'DB_File'               => '1.858',
19544             'Data::Dumper'          => '2.186',
19545             'Encode'                => '3.18',
19546             'Encode::MIME::Header'  => '2.29',
19547             'File::Glob'            => '1.38',
19548             'File::Spec'            => '3.86',
19549             'File::Spec::AmigaOS'   => '3.86',
19550             'File::Spec::Cygwin'    => '3.86',
19551             'File::Spec::Epoc'      => '3.86',
19552             'File::Spec::Functions' => '3.86',
19553             'File::Spec::Mac'       => '3.86',
19554             'File::Spec::OS2'       => '3.86',
19555             'File::Spec::Unix'      => '3.86',
19556             'File::Spec::VMS'       => '3.86',
19557             'File::Spec::Win32'     => '3.86',
19558             'Filter::Util::Call'    => '1.61',
19559             'Hash::Util'            => '0.29',
19560             'I18N::LangTags::List'  => '0.41',
19561             'IO::Compress::Adapter::Bzip2'=> '2.201',
19562             'IO::Compress::Adapter::Deflate'=> '2.201',
19563             'IO::Compress::Adapter::Identity'=> '2.201',
19564             'IO::Compress::Base'    => '2.201',
19565             'IO::Compress::Base::Common'=> '2.201',
19566             'IO::Compress::Bzip2'   => '2.201',
19567             'IO::Compress::Deflate' => '2.201',
19568             'IO::Compress::Gzip'    => '2.201',
19569             'IO::Compress::Gzip::Constants'=> '2.201',
19570             'IO::Compress::RawDeflate'=> '2.201',
19571             'IO::Compress::Zip'     => '2.201',
19572             'IO::Compress::Zip::Constants'=> '2.201',
19573             'IO::Compress::Zlib::Constants'=> '2.201',
19574             'IO::Compress::Zlib::Extra'=> '2.201',
19575             'IO::Uncompress::Adapter::Bunzip2'=> '2.201',
19576             'IO::Uncompress::Adapter::Identity'=> '2.201',
19577             'IO::Uncompress::Adapter::Inflate'=> '2.201',
19578             'IO::Uncompress::AnyInflate'=> '2.201',
19579             'IO::Uncompress::AnyUncompress'=> '2.201',
19580             'IO::Uncompress::Base'  => '2.201',
19581             'IO::Uncompress::Bunzip2'=> '2.201',
19582             'IO::Uncompress::Gunzip'=> '2.201',
19583             'IO::Uncompress::Inflate'=> '2.201',
19584             'IO::Uncompress::RawInflate'=> '2.201',
19585             'IO::Uncompress::Unzip' => '2.201',
19586             'JSON::PP'              => '4.10',
19587             'JSON::PP::Boolean'     => '4.10',
19588             'Math::BigFloat'        => '1.999837',
19589             'Math::BigFloat::Trace' => '0.66',
19590             'Math::BigInt'          => '1.999837',
19591             'Math::BigInt::Calc'    => '1.999837',
19592             'Math::BigInt::FastCalc'=> '0.5013',
19593             'Math::BigInt::Lib'     => '1.999837',
19594             'Math::BigInt::Trace'   => '0.66',
19595             'Math::BigRat'          => '0.2624',
19596             'Math::BigRat::Trace'   => '0.66',
19597             'Module::CoreList'      => '5.20220720',
19598             'Module::CoreList::Utils'=> '5.20220720',
19599             'Opcode'                => '1.59',
19600             'PerlIO::via::QuotedPrint'=> '0.10',
19601             'Pod::Checker'          => '1.75',
19602             'Pod::Usage'            => '2.03',
19603             'Socket'                => '2.035',
19604             'Storable'              => '3.27',
19605             'Test2'                 => '1.302191',
19606             'Test2::API'            => '1.302191',
19607             'Test2::API::Breakage'  => '1.302191',
19608             'Test2::API::Context'   => '1.302191',
19609             'Test2::API::Instance'  => '1.302191',
19610             'Test2::API::InterceptResult'=> '1.302191',
19611             'Test2::API::InterceptResult::Event'=> '1.302191',
19612             'Test2::API::InterceptResult::Facet'=> '1.302191',
19613             'Test2::API::InterceptResult::Hub'=> '1.302191',
19614             'Test2::API::InterceptResult::Squasher'=> '1.302191',
19615             'Test2::API::Stack'     => '1.302191',
19616             'Test2::Event'          => '1.302191',
19617             'Test2::Event::Bail'    => '1.302191',
19618             'Test2::Event::Diag'    => '1.302191',
19619             'Test2::Event::Encoding'=> '1.302191',
19620             'Test2::Event::Exception'=> '1.302191',
19621             'Test2::Event::Fail'    => '1.302191',
19622             'Test2::Event::Generic' => '1.302191',
19623             'Test2::Event::Note'    => '1.302191',
19624             'Test2::Event::Ok'      => '1.302191',
19625             'Test2::Event::Pass'    => '1.302191',
19626             'Test2::Event::Plan'    => '1.302191',
19627             'Test2::Event::Skip'    => '1.302191',
19628             'Test2::Event::Subtest' => '1.302191',
19629             'Test2::Event::TAP::Version'=> '1.302191',
19630             'Test2::Event::V2'      => '1.302191',
19631             'Test2::Event::Waiting' => '1.302191',
19632             'Test2::EventFacet'     => '1.302191',
19633             'Test2::EventFacet::About'=> '1.302191',
19634             'Test2::EventFacet::Amnesty'=> '1.302191',
19635             'Test2::EventFacet::Assert'=> '1.302191',
19636             'Test2::EventFacet::Control'=> '1.302191',
19637             'Test2::EventFacet::Error'=> '1.302191',
19638             'Test2::EventFacet::Hub'=> '1.302191',
19639             'Test2::EventFacet::Info'=> '1.302191',
19640             'Test2::EventFacet::Info::Table'=> '1.302191',
19641             'Test2::EventFacet::Meta'=> '1.302191',
19642             'Test2::EventFacet::Parent'=> '1.302191',
19643             'Test2::EventFacet::Plan'=> '1.302191',
19644             'Test2::EventFacet::Render'=> '1.302191',
19645             'Test2::EventFacet::Trace'=> '1.302191',
19646             'Test2::Formatter'      => '1.302191',
19647             'Test2::Formatter::TAP' => '1.302191',
19648             'Test2::Hub'            => '1.302191',
19649             'Test2::Hub::Interceptor'=> '1.302191',
19650             'Test2::Hub::Interceptor::Terminator'=> '1.302191',
19651             'Test2::Hub::Subtest'   => '1.302191',
19652             'Test2::IPC'            => '1.302191',
19653             'Test2::IPC::Driver'    => '1.302191',
19654             'Test2::IPC::Driver::Files'=> '1.302191',
19655             'Test2::Tools::Tiny'    => '1.302191',
19656             'Test2::Util'           => '1.302191',
19657             'Test2::Util::ExternalMeta'=> '1.302191',
19658             'Test2::Util::Facets2Legacy'=> '1.302191',
19659             'Test2::Util::HashBase' => '1.302191',
19660             'Test2::Util::Trace'    => '1.302191',
19661             'Test::Builder'         => '1.302191',
19662             'Test::Builder::Formatter'=> '1.302191',
19663             'Test::Builder::Module' => '1.302191',
19664             'Test::Builder::Tester' => '1.302191',
19665             'Test::Builder::Tester::Color'=> '1.302191',
19666             'Test::Builder::TodoDiag'=> '1.302191',
19667             'Test::More'            => '1.302191',
19668             'Test::Simple'          => '1.302191',
19669             'Test::Tester'          => '1.302191',
19670             'Test::Tester::Capture' => '1.302191',
19671             'Test::Tester::CaptureRunner'=> '1.302191',
19672             'Test::Tester::Delegate'=> '1.302191',
19673             'Test::use::ok'         => '1.302191',
19674             'Text::Balanced'        => '2.06',
19675             'XS::APItest'           => '1.24',
19676             'bigfloat'              => '0.66',
19677             'bigint'                => '0.66',
19678             'bignum'                => '0.66',
19679             'bigrat'                => '0.66',
19680             'builtin'               => '0.008',
19681             'feature'               => '1.75',
19682             'ok'                    => '1.302191',
19683             'threads::shared'       => '1.65',
19684         },
19685         removed => {
19686         }
19687     },
19688     5.037003 => {
19689         delta_from => 5.037002,
19690         changed => {
19691             'B'                     => '1.86',
19692             'B::Deparse'            => '1.68',
19693             'B::Op_private'         => '5.037003',
19694             'Config'                => '5.037003',
19695             'Digest::SHA'           => '6.03',
19696             'DynaLoader'            => '1.53',
19697             'Encode'                => '3.19',
19698             'Encode::Alias'         => '2.25',
19699             'ExtUtils::PL2Bat'      => '0.005',
19700             'File::Find'            => '1.41',
19701             'Filter::Util::Call'    => '1.64',
19702             'HTTP::Tiny'            => '0.082',
19703             'JSON::PP'              => '4.11',
19704             'JSON::PP::Boolean'     => '4.11',
19705             'List::Util'            => '1.63',
19706             'List::Util::XS'        => '1.63',
19707             'Memoize'               => '1.10',
19708             'Memoize::AnyDBM_File'  => '1.10',
19709             'Memoize::Expire'       => '1.10',
19710             'Memoize::NDBM_File'    => '1.10',
19711             'Memoize::SDBM_File'    => '1.10',
19712             'Memoize::Storable'     => '1.10',
19713             'Module::CoreList'      => '5.20220820',
19714             'Module::CoreList::Utils'=> '5.20220820',
19715             'NDBM_File'             => '1.16',
19716             'Opcode'                => '1.60',
19717             'Scalar::Util'          => '1.63',
19718             'Socket'                => '2.036',
19719             'Sub::Util'             => '1.63',
19720             'XS::APItest'           => '1.25',
19721             'attributes'            => '0.35',
19722             'threads'               => '2.29',
19723         },
19724         removed => {
19725             'Memoize::ExpireFile'   => 1,
19726             'Memoize::ExpireTest'   => 1,
19727         }
19728     },
19729     5.037004 => {
19730         delta_from => 5.037003,
19731         changed => {
19732             'B::Deparse'            => '1.69',
19733             'B::Op_private'         => '5.037004',
19734             'Carp'                  => '1.54',
19735             'Carp::Heavy'           => '1.54',
19736             'Class::Struct'         => '0.67',
19737             'Config'                => '5.037004',
19738             'Config::Perl::V'       => '0.34',
19739             'Errno'                 => '1.37',
19740             'ExtUtils::ParseXS'     => '3.46',
19741             'ExtUtils::ParseXS::Constants'=> '3.46',
19742             'ExtUtils::ParseXS::CountLines'=> '3.46',
19743             'ExtUtils::ParseXS::Eval'=> '3.46',
19744             'ExtUtils::ParseXS::Utilities'=> '3.46',
19745             'ExtUtils::Typemaps'    => '3.46',
19746             'ExtUtils::Typemaps::Cmd'=> '3.46',
19747             'ExtUtils::Typemaps::InputMap'=> '3.46',
19748             'ExtUtils::Typemaps::OutputMap'=> '3.46',
19749             'ExtUtils::Typemaps::Type'=> '3.46',
19750             'File::Basename'        => '2.86',
19751             'File::Copy'            => '2.40',
19752             'File::Spec'            => '3.87',
19753             'File::stat'            => '1.13',
19754             'FileHandle'            => '2.05',
19755             'Hash::Util'            => '0.30',
19756             'I18N::Langinfo'        => '0.22',
19757             'IO'                    => '1.51',
19758             'IO::Dir'               => '1.51',
19759             'IO::File'              => '1.51',
19760             'IO::Handle'            => '1.51',
19761             'IO::Pipe'              => '1.51',
19762             'IO::Poll'              => '1.51',
19763             'IO::Seekable'          => '1.51',
19764             'IO::Select'            => '1.51',
19765             'IO::Socket'            => '1.51',
19766             'IO::Socket::INET'      => '1.51',
19767             'IO::Socket::UNIX'      => '1.51',
19768             'Locale::Maketext'      => '1.32',
19769             'Module::CoreList'      => '5.20220920',
19770             'Module::CoreList::Utils'=> '5.20220920',
19771             'Net::protoent'         => '1.02',
19772             'Net::servent'          => '1.03',
19773             'Opcode'                => '1.61',
19774             'POSIX'                 => '2.06',
19775             'Safe'                  => '2.44',
19776             'Sys::Hostname'         => '1.25',
19777             'Time::HiRes'           => '1.9771',
19778             'User::grent'           => '1.04',
19779             'User::pwent'           => '1.02',
19780             'XS::APItest'           => '1.26',
19781             'XSLoader'              => '0.32',
19782             'feature'               => '1.76',
19783         },
19784         removed => {
19785         }
19786     },
19787     5.037005 => {
19788         delta_from => 5.037004,
19789         changed => {
19790             'B::Deparse'            => '1.70',
19791             'B::Op_private'         => '5.037005',
19792             'Config'                => '5.037005',
19793             'JSON::PP'              => '4.12',
19794             'JSON::PP::Boolean'     => '4.12',
19795             'Math::Complex'         => '1.5903',
19796             'Math::Trig'            => '1.2301',
19797             'Memoize'               => '1.14',
19798             'Memoize::AnyDBM_File'  => '1.14',
19799             'Memoize::Expire'       => '1.14',
19800             'Memoize::NDBM_File'    => '1.14',
19801             'Memoize::SDBM_File'    => '1.14',
19802             'Memoize::Storable'     => '1.14',
19803             'Module::CoreList'      => '5.20221020',
19804             'Module::CoreList::Utils'=> '5.20221020',
19805             'Net::Ping'             => '2.75',
19806             'POSIX'                 => '2.07',
19807             'Unicode'               => '15.0.0',
19808             'threads'               => '2.31',
19809             'warnings'              => '1.59',
19810         },
19811         removed => {
19812         }
19813     },
19814     5.037006 => {
19815         delta_from => 5.037005,
19816         changed => {
19817             'Attribute::Handlers'   => '1.03',
19818             'B'                     => '1.87',
19819             'B::Deparse'            => '1.71',
19820             'B::Op_private'         => '5.037006',
19821             'Config'                => '5.037006',
19822             'Data::Dumper'          => '2.187',
19823             'Devel::PPPort'         => '3.69',
19824             'ExtUtils::CBuilder'    => '0.280238',
19825             'ExtUtils::CBuilder::Base'=> '0.280238',
19826             'ExtUtils::CBuilder::Platform::Unix'=> '0.280238',
19827             'ExtUtils::CBuilder::Platform::VMS'=> '0.280238',
19828             'ExtUtils::CBuilder::Platform::Windows'=> '0.280238',
19829             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280238',
19830             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280238',
19831             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280238',
19832             'ExtUtils::CBuilder::Platform::aix'=> '0.280238',
19833             'ExtUtils::CBuilder::Platform::android'=> '0.280238',
19834             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280238',
19835             'ExtUtils::CBuilder::Platform::darwin'=> '0.280238',
19836             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280238',
19837             'ExtUtils::CBuilder::Platform::os2'=> '0.280238',
19838             'ExtUtils::ParseXS'     => '3.48',
19839             'ExtUtils::ParseXS::Constants'=> '3.48',
19840             'ExtUtils::ParseXS::CountLines'=> '3.48',
19841             'ExtUtils::ParseXS::Eval'=> '3.48',
19842             'ExtUtils::ParseXS::Utilities'=> '3.48',
19843             'ExtUtils::Typemaps'    => '3.48',
19844             'ExtUtils::Typemaps::Cmd'=> '3.48',
19845             'ExtUtils::Typemaps::InputMap'=> '3.48',
19846             'ExtUtils::Typemaps::OutputMap'=> '3.48',
19847             'ExtUtils::Typemaps::Type'=> '3.48',
19848             'Getopt::Long'          => '2.54',
19849             'Memoize'               => '1.15',
19850             'Memoize::AnyDBM_File'  => '1.15',
19851             'Memoize::Expire'       => '1.15',
19852             'Memoize::NDBM_File'    => '1.15',
19853             'Memoize::SDBM_File'    => '1.15',
19854             'Memoize::Storable'     => '1.15',
19855             'Module::CoreList'      => '5.20221120',
19856             'Module::CoreList::Utils'=> '5.20221120',
19857             'Opcode'                => '1.62',
19858             'POSIX'                 => '2.08',
19859             'Storable'              => '3.28',
19860             'Time::HiRes'           => '1.9772',
19861             'XS::APItest'           => '1.27',
19862             'experimental'          => '0.029',
19863             'feature'               => '1.77',
19864             'overload'              => '1.36',
19865             'threads'               => '2.32',
19866             'utf8'                  => '1.25',
19867             'warnings'              => '1.61',
19868         },
19869         removed => {
19870         }
19871     },
19872     5.037007 => {
19873         delta_from => 5.037006,
19874         changed => {
19875             'B::Deparse'            => '1.72',
19876             'B::Op_private'         => '5.037007',
19877             'Config'                => '5.037007',
19878             'Cwd'                   => '3.88',
19879             'ExtUtils::Miniperl'    => '1.13',
19880             'ExtUtils::ParseXS'     => '3.49',
19881             'ExtUtils::ParseXS::Constants'=> '3.49',
19882             'ExtUtils::ParseXS::CountLines'=> '3.49',
19883             'ExtUtils::ParseXS::Eval'=> '3.49',
19884             'ExtUtils::ParseXS::Utilities'=> '3.49',
19885             'ExtUtils::Typemaps'    => '3.49',
19886             'ExtUtils::Typemaps::Cmd'=> '3.49',
19887             'ExtUtils::Typemaps::InputMap'=> '3.49',
19888             'ExtUtils::Typemaps::OutputMap'=> '3.49',
19889             'ExtUtils::Typemaps::Type'=> '3.49',
19890             'File::Glob'            => '1.39',
19891             'File::Spec'            => '3.88',
19892             'File::Spec::AmigaOS'   => '3.88',
19893             'File::Spec::Cygwin'    => '3.88',
19894             'File::Spec::Epoc'      => '3.88',
19895             'File::Spec::Functions' => '3.88',
19896             'File::Spec::Mac'       => '3.88',
19897             'File::Spec::OS2'       => '3.88',
19898             'File::Spec::Unix'      => '3.88',
19899             'File::Spec::VMS'       => '3.88',
19900             'File::Spec::Win32'     => '3.88',
19901             'Module::CoreList'      => '5.20221220',
19902             'Module::CoreList::Utils'=> '5.20221220',
19903             'Opcode'                => '1.63',
19904             'POSIX'                 => '2.10',
19905             'Pod::Html'             => '1.34',
19906             'Pod::Html::Util'       => '1.34',
19907             'Pod::Man'              => '5.00',
19908             'Pod::ParseLink'        => '5.00',
19909             'Pod::Text'             => '5.00',
19910             'Pod::Text::Color'      => '5.00',
19911             'Pod::Text::Overstrike' => '5.00',
19912             'Pod::Text::Termcap'    => '5.00',
19913             'XS::APItest'           => '1.28',
19914             'experimental'          => '0.030',
19915             'feature'               => '1.78',
19916             'parent'                => '0.239',
19917             'threads'               => '2.33',
19918         },
19919         removed => {
19920         }
19921     },
19922     5.037008 => {
19923         delta_from => 5.037007,
19924         changed => {
19925             'B::Op_private'         => '5.037008',
19926             'Config'                => '5.037008',
19927             'Config::Perl::V'       => '0.35',
19928             'ExtUtils::Command'     => '7.66',
19929             'ExtUtils::Command::MM' => '7.66',
19930             'ExtUtils::Install'     => '2.22',
19931             'ExtUtils::Installed'   => '2.22',
19932             'ExtUtils::Liblist'     => '7.66',
19933             'ExtUtils::Liblist::Kid'=> '7.66',
19934             'ExtUtils::MM'          => '7.66',
19935             'ExtUtils::MM_AIX'      => '7.66',
19936             'ExtUtils::MM_Any'      => '7.66',
19937             'ExtUtils::MM_BeOS'     => '7.66',
19938             'ExtUtils::MM_Cygwin'   => '7.66',
19939             'ExtUtils::MM_DOS'      => '7.66',
19940             'ExtUtils::MM_Darwin'   => '7.66',
19941             'ExtUtils::MM_MacOS'    => '7.66',
19942             'ExtUtils::MM_NW5'      => '7.66',
19943             'ExtUtils::MM_OS2'      => '7.66',
19944             'ExtUtils::MM_OS390'    => '7.66',
19945             'ExtUtils::MM_QNX'      => '7.66',
19946             'ExtUtils::MM_UWIN'     => '7.66',
19947             'ExtUtils::MM_Unix'     => '7.66',
19948             'ExtUtils::MM_VMS'      => '7.66',
19949             'ExtUtils::MM_VOS'      => '7.66',
19950             'ExtUtils::MM_Win32'    => '7.66',
19951             'ExtUtils::MM_Win95'    => '7.66',
19952             'ExtUtils::MY'          => '7.66',
19953             'ExtUtils::MakeMaker'   => '7.66',
19954             'ExtUtils::MakeMaker::Config'=> '7.66',
19955             'ExtUtils::MakeMaker::Locale'=> '7.66',
19956             'ExtUtils::MakeMaker::version'=> '7.66',
19957             'ExtUtils::MakeMaker::version::regex'=> '7.66',
19958             'ExtUtils::Mkbootstrap' => '7.66',
19959             'ExtUtils::Mksymlists'  => '7.66',
19960             'ExtUtils::Packlist'    => '2.22',
19961             'ExtUtils::testlib'     => '7.66',
19962             'File::Find'            => '1.42',
19963             'IO::Zlib'              => '1.14',
19964             'JSON::PP'              => '4.16',
19965             'JSON::PP::Boolean'     => '4.16',
19966             'Math::Complex'         => '1.6',
19967             'Math::Trig'            => '1.6',
19968             'Module::CoreList'      => '5.20230120',
19969             'Module::CoreList::Utils'=> '5.20230120',
19970             'POSIX'                 => '2.11',
19971             'Pod::Man'              => '5.01',
19972             'Pod::ParseLink'        => '5.01',
19973             'Pod::Text'             => '5.01',
19974             'Pod::Text::Color'      => '5.01',
19975             'Pod::Text::Overstrike' => '5.01',
19976             'Pod::Text::Termcap'    => '5.01',
19977             'Storable'              => '3.29',
19978             'XS::APItest'           => '1.30',
19979             'feature'               => '1.79',
19980             're'                    => '0.44',
19981             'threads'               => '2.34',
19982         },
19983         removed => {
19984         }
19985     },
19986     5.037009 => {
19987         delta_from => 5.037008,
19988         changed => {
19989             'B'                     => '1.88',
19990             'B::Op_private'         => '5.037009',
19991             'Compress::Raw::Bzip2'  => '2.204',
19992             'Compress::Raw::Zlib'   => '2.204',
19993             'Compress::Zlib'        => '2.204',
19994             'Config'                => '5.037009',
19995             'Devel::PPPort'         => '3.70',
19996             'Devel::Peek'           => '1.33',
19997             'Fatal'                 => '2.36',
19998             'File::Find'            => '1.43',
19999             'IO::Compress::Adapter::Bzip2'=> '2.204',
20000             'IO::Compress::Adapter::Deflate'=> '2.204',
20001             'IO::Compress::Adapter::Identity'=> '2.204',
20002             'IO::Compress::Base'    => '2.204',
20003             'IO::Compress::Base::Common'=> '2.204',
20004             'IO::Compress::Bzip2'   => '2.204',
20005             'IO::Compress::Deflate' => '2.204',
20006             'IO::Compress::Gzip'    => '2.204',
20007             'IO::Compress::Gzip::Constants'=> '2.204',
20008             'IO::Compress::RawDeflate'=> '2.204',
20009             'IO::Compress::Zip'     => '2.204',
20010             'IO::Compress::Zip::Constants'=> '2.204',
20011             'IO::Compress::Zlib::Constants'=> '2.204',
20012             'IO::Compress::Zlib::Extra'=> '2.204',
20013             'IO::Uncompress::Adapter::Bunzip2'=> '2.204',
20014             'IO::Uncompress::Adapter::Identity'=> '2.204',
20015             'IO::Uncompress::Adapter::Inflate'=> '2.204',
20016             'IO::Uncompress::AnyInflate'=> '2.204',
20017             'IO::Uncompress::AnyUncompress'=> '2.204',
20018             'IO::Uncompress::Base'  => '2.204',
20019             'IO::Uncompress::Bunzip2'=> '2.204',
20020             'IO::Uncompress::Gunzip'=> '2.204',
20021             'IO::Uncompress::Inflate'=> '2.204',
20022             'IO::Uncompress::RawInflate'=> '2.204',
20023             'IO::Uncompress::Unzip' => '2.204',
20024             'Math::Complex'         => '1.61',
20025             'Math::Trig'            => '1.61',
20026             'Memoize'               => '1.16',
20027             'Memoize::AnyDBM_File'  => '1.16',
20028             'Memoize::Expire'       => '1.16',
20029             'Memoize::NDBM_File'    => '1.16',
20030             'Memoize::SDBM_File'    => '1.16',
20031             'Memoize::Storable'     => '1.16',
20032             'Module::CoreList'      => '5.20230220',
20033             'Module::CoreList::Utils'=> '5.20230220',
20034             'Opcode'                => '1.64',
20035             'Term::Cap'             => '1.18',
20036             'Test2'                 => '1.302192',
20037             'Test2::API'            => '1.302192',
20038             'Test2::API::Breakage'  => '1.302192',
20039             'Test2::API::Context'   => '1.302192',
20040             'Test2::API::Instance'  => '1.302192',
20041             'Test2::API::InterceptResult'=> '1.302192',
20042             'Test2::API::InterceptResult::Event'=> '1.302192',
20043             'Test2::API::InterceptResult::Facet'=> '1.302192',
20044             'Test2::API::InterceptResult::Hub'=> '1.302192',
20045             'Test2::API::InterceptResult::Squasher'=> '1.302192',
20046             'Test2::API::Stack'     => '1.302192',
20047             'Test2::Event'          => '1.302192',
20048             'Test2::Event::Bail'    => '1.302192',
20049             'Test2::Event::Diag'    => '1.302192',
20050             'Test2::Event::Encoding'=> '1.302192',
20051             'Test2::Event::Exception'=> '1.302192',
20052             'Test2::Event::Fail'    => '1.302192',
20053             'Test2::Event::Generic' => '1.302192',
20054             'Test2::Event::Note'    => '1.302192',
20055             'Test2::Event::Ok'      => '1.302192',
20056             'Test2::Event::Pass'    => '1.302192',
20057             'Test2::Event::Plan'    => '1.302192',
20058             'Test2::Event::Skip'    => '1.302192',
20059             'Test2::Event::Subtest' => '1.302192',
20060             'Test2::Event::TAP::Version'=> '1.302192',
20061             'Test2::Event::V2'      => '1.302192',
20062             'Test2::Event::Waiting' => '1.302192',
20063             'Test2::EventFacet'     => '1.302192',
20064             'Test2::EventFacet::About'=> '1.302192',
20065             'Test2::EventFacet::Amnesty'=> '1.302192',
20066             'Test2::EventFacet::Assert'=> '1.302192',
20067             'Test2::EventFacet::Control'=> '1.302192',
20068             'Test2::EventFacet::Error'=> '1.302192',
20069             'Test2::EventFacet::Hub'=> '1.302192',
20070             'Test2::EventFacet::Info'=> '1.302192',
20071             'Test2::EventFacet::Info::Table'=> '1.302192',
20072             'Test2::EventFacet::Meta'=> '1.302192',
20073             'Test2::EventFacet::Parent'=> '1.302192',
20074             'Test2::EventFacet::Plan'=> '1.302192',
20075             'Test2::EventFacet::Render'=> '1.302192',
20076             'Test2::EventFacet::Trace'=> '1.302192',
20077             'Test2::Formatter'      => '1.302192',
20078             'Test2::Formatter::TAP' => '1.302192',
20079             'Test2::Hub'            => '1.302192',
20080             'Test2::Hub::Interceptor'=> '1.302192',
20081             'Test2::Hub::Interceptor::Terminator'=> '1.302192',
20082             'Test2::Hub::Subtest'   => '1.302192',
20083             'Test2::IPC'            => '1.302192',
20084             'Test2::IPC::Driver'    => '1.302192',
20085             'Test2::IPC::Driver::Files'=> '1.302192',
20086             'Test2::Tools::Tiny'    => '1.302192',
20087             'Test2::Util'           => '1.302192',
20088             'Test2::Util::ExternalMeta'=> '1.302192',
20089             'Test2::Util::Facets2Legacy'=> '1.302192',
20090             'Test2::Util::HashBase' => '1.302192',
20091             'Test2::Util::Trace'    => '1.302192',
20092             'Test::Builder'         => '1.302192',
20093             'Test::Builder::Formatter'=> '1.302192',
20094             'Test::Builder::Module' => '1.302192',
20095             'Test::Builder::Tester' => '1.302192',
20096             'Test::Builder::Tester::Color'=> '1.302192',
20097             'Test::Builder::TodoDiag'=> '1.302192',
20098             'Test::More'            => '1.302192',
20099             'Test::Simple'          => '1.302192',
20100             'Test::Tester'          => '1.302192',
20101             'Test::Tester::Capture' => '1.302192',
20102             'Test::Tester::CaptureRunner'=> '1.302192',
20103             'Test::Tester::Delegate'=> '1.302192',
20104             'Test::use::ok'         => '1.302192',
20105             'Tie::File'             => '1.07',
20106             'UNIVERSAL'             => '1.15',
20107             'autodie'               => '2.36',
20108             'autodie::Scope::Guard' => '2.36',
20109             'autodie::Scope::GuardStack'=> '2.36',
20110             'autodie::Util'         => '2.36',
20111             'autodie::exception'    => '2.36',
20112             'autodie::exception::system'=> '2.36',
20113             'autodie::hints'        => '2.36',
20114             'autodie::skip'         => '2.36',
20115             'experimental'          => '0.031',
20116             'feature'               => '1.80',
20117             'mro'                   => '1.28',
20118             'ok'                    => '1.302192',
20119             'parent'                => '0.241',
20120             'stable'                => '0.031',
20121             'warnings'              => '1.62',
20122         },
20123         removed => {
20124         }
20125     },
20126     5.037010 => {
20127         delta_from => 5.037009,
20128         changed => {
20129             'B::Op_private'         => '5.037010',
20130             'Benchmark'             => '1.24',
20131             'Class::Struct'         => '0.68',
20132             'Config'                => '5.03701',
20133             'Config::Perl::V'       => '0.36',
20134             'Cwd'                   => '3.89',
20135             'Data::Dumper'          => '2.188',
20136             'Digest::SHA'           => '6.04',
20137             'Env'                   => '1.06',
20138             'Math::Complex'         => '1.62',
20139             'Math::Trig'            => '1.62',
20140             'Module::CoreList'      => '5.20230320',
20141             'Module::CoreList::Utils'=> '5.20230320',
20142             'Net::Cmd'              => '3.15',
20143             'Net::Config'           => '3.15',
20144             'Net::Domain'           => '3.15',
20145             'Net::FTP'              => '3.15',
20146             'Net::FTP::A'           => '3.15',
20147             'Net::FTP::E'           => '3.15',
20148             'Net::FTP::I'           => '3.15',
20149             'Net::FTP::L'           => '3.15',
20150             'Net::FTP::dataconn'    => '3.15',
20151             'Net::NNTP'             => '3.15',
20152             'Net::Netrc'            => '3.15',
20153             'Net::POP3'             => '3.15',
20154             'Net::SMTP'             => '3.15',
20155             'Net::Time'             => '3.15',
20156             'POSIX'                 => '2.12',
20157             'Storable'              => '3.31',
20158             'Test2'                 => '1.302194',
20159             'Test2::API'            => '1.302194',
20160             'Test2::API::Breakage'  => '1.302194',
20161             'Test2::API::Context'   => '1.302194',
20162             'Test2::API::Instance'  => '1.302194',
20163             'Test2::API::InterceptResult'=> '1.302194',
20164             'Test2::API::InterceptResult::Event'=> '1.302194',
20165             'Test2::API::InterceptResult::Facet'=> '1.302194',
20166             'Test2::API::InterceptResult::Hub'=> '1.302194',
20167             'Test2::API::InterceptResult::Squasher'=> '1.302194',
20168             'Test2::API::Stack'     => '1.302194',
20169             'Test2::Event'          => '1.302194',
20170             'Test2::Event::Bail'    => '1.302194',
20171             'Test2::Event::Diag'    => '1.302194',
20172             'Test2::Event::Encoding'=> '1.302194',
20173             'Test2::Event::Exception'=> '1.302194',
20174             'Test2::Event::Fail'    => '1.302194',
20175             'Test2::Event::Generic' => '1.302194',
20176             'Test2::Event::Note'    => '1.302194',
20177             'Test2::Event::Ok'      => '1.302194',
20178             'Test2::Event::Pass'    => '1.302194',
20179             'Test2::Event::Plan'    => '1.302194',
20180             'Test2::Event::Skip'    => '1.302194',
20181             'Test2::Event::Subtest' => '1.302194',
20182             'Test2::Event::TAP::Version'=> '1.302194',
20183             'Test2::Event::V2'      => '1.302194',
20184             'Test2::Event::Waiting' => '1.302194',
20185             'Test2::EventFacet'     => '1.302194',
20186             'Test2::EventFacet::About'=> '1.302194',
20187             'Test2::EventFacet::Amnesty'=> '1.302194',
20188             'Test2::EventFacet::Assert'=> '1.302194',
20189             'Test2::EventFacet::Control'=> '1.302194',
20190             'Test2::EventFacet::Error'=> '1.302194',
20191             'Test2::EventFacet::Hub'=> '1.302194',
20192             'Test2::EventFacet::Info'=> '1.302194',
20193             'Test2::EventFacet::Info::Table'=> '1.302194',
20194             'Test2::EventFacet::Meta'=> '1.302194',
20195             'Test2::EventFacet::Parent'=> '1.302194',
20196             'Test2::EventFacet::Plan'=> '1.302194',
20197             'Test2::EventFacet::Render'=> '1.302194',
20198             'Test2::EventFacet::Trace'=> '1.302194',
20199             'Test2::Formatter'      => '1.302194',
20200             'Test2::Formatter::TAP' => '1.302194',
20201             'Test2::Hub'            => '1.302194',
20202             'Test2::Hub::Interceptor'=> '1.302194',
20203             'Test2::Hub::Interceptor::Terminator'=> '1.302194',
20204             'Test2::Hub::Subtest'   => '1.302194',
20205             'Test2::IPC'            => '1.302194',
20206             'Test2::IPC::Driver'    => '1.302194',
20207             'Test2::IPC::Driver::Files'=> '1.302194',
20208             'Test2::Tools::Tiny'    => '1.302194',
20209             'Test2::Util'           => '1.302194',
20210             'Test2::Util::ExternalMeta'=> '1.302194',
20211             'Test2::Util::Facets2Legacy'=> '1.302194',
20212             'Test2::Util::HashBase' => '1.302194',
20213             'Test2::Util::Trace'    => '1.302194',
20214             'Test::Builder'         => '1.302194',
20215             'Test::Builder::Formatter'=> '1.302194',
20216             'Test::Builder::Module' => '1.302194',
20217             'Test::Builder::Tester' => '1.302194',
20218             'Test::Builder::Tester::Color'=> '1.302194',
20219             'Test::Builder::TodoDiag'=> '1.302194',
20220             'Test::More'            => '1.302194',
20221             'Test::Simple'          => '1.302194',
20222             'Test::Tester'          => '1.302194',
20223             'Test::Tester::Capture' => '1.302194',
20224             'Test::Tester::CaptureRunner'=> '1.302194',
20225             'Test::Tester::Delegate'=> '1.302194',
20226             'Test::use::ok'         => '1.302194',
20227             'Time::HiRes'           => '1.9774',
20228             'XS::APItest'           => '1.32',
20229             'feature'               => '1.81',
20230             'ok'                    => '1.302194',
20231             'overload'              => '1.37',
20232             'threads'               => '2.35',
20233             'threads::shared'       => '1.67',
20234             'warnings'              => '1.63',
20235             'warnings::register'    => '1.05',
20236         },
20237         removed => {
20238         }
20239     },
20240     5.037011 => {
20241         delta_from => 5.037010,
20242         changed => {
20243             'B::Deparse'            => '1.73',
20244             'B::Op_private'         => '5.037011',
20245             'Config'                => '5.037011',
20246             'Devel::PPPort'         => '3.71',
20247             'ExtUtils::Command'     => '7.70',
20248             'ExtUtils::Command::MM' => '7.70',
20249             'ExtUtils::Liblist'     => '7.70',
20250             'ExtUtils::Liblist::Kid'=> '7.70',
20251             'ExtUtils::MM'          => '7.70',
20252             'ExtUtils::MM_AIX'      => '7.70',
20253             'ExtUtils::MM_Any'      => '7.70',
20254             'ExtUtils::MM_BeOS'     => '7.70',
20255             'ExtUtils::MM_Cygwin'   => '7.70',
20256             'ExtUtils::MM_DOS'      => '7.70',
20257             'ExtUtils::MM_Darwin'   => '7.70',
20258             'ExtUtils::MM_MacOS'    => '7.70',
20259             'ExtUtils::MM_NW5'      => '7.70',
20260             'ExtUtils::MM_OS2'      => '7.70',
20261             'ExtUtils::MM_OS390'    => '7.70',
20262             'ExtUtils::MM_QNX'      => '7.70',
20263             'ExtUtils::MM_UWIN'     => '7.70',
20264             'ExtUtils::MM_Unix'     => '7.70',
20265             'ExtUtils::MM_VMS'      => '7.70',
20266             'ExtUtils::MM_VOS'      => '7.70',
20267             'ExtUtils::MM_Win32'    => '7.70',
20268             'ExtUtils::MM_Win95'    => '7.70',
20269             'ExtUtils::MY'          => '7.70',
20270             'ExtUtils::MakeMaker'   => '7.70',
20271             'ExtUtils::MakeMaker::Config'=> '7.70',
20272             'ExtUtils::MakeMaker::Locale'=> '7.70',
20273             'ExtUtils::MakeMaker::version'=> '7.70',
20274             'ExtUtils::MakeMaker::version::regex'=> '7.70',
20275             'ExtUtils::Mkbootstrap' => '7.70',
20276             'ExtUtils::Mksymlists'  => '7.70',
20277             'ExtUtils::ParseXS'     => '3.50',
20278             'ExtUtils::ParseXS::Constants'=> '3.50',
20279             'ExtUtils::ParseXS::CountLines'=> '3.50',
20280             'ExtUtils::ParseXS::Eval'=> '3.50',
20281             'ExtUtils::ParseXS::Utilities'=> '3.50',
20282             'ExtUtils::testlib'     => '7.70',
20283             'File::Copy'            => '2.41',
20284             'Locale::Maketext'      => '1.33',
20285             'Module::CoreList'      => '5.20230420',
20286             'Module::CoreList::Utils'=> '5.20230420',
20287             'Net::Ping'             => '2.76',
20288             'feature'               => '1.82',
20289             'threads'               => '2.36',
20290             'threads::shared'       => '1.68',
20291             'warnings'              => '1.64',
20292         },
20293         removed => {
20294         }
20295     },
20296     5.036001 => {
20297         delta_from => 5.036000,
20298         changed => {
20299             'B::Op_private'         => '5.036001',
20300             'Config'                => '5.036001',
20301             'Module::CoreList'      => '5.20230423',
20302             'Module::CoreList::Utils'=> '5.20230423',
20303         },
20304         removed => {
20305         }
20306     },
20307     5.038000 => {
20308         delta_from => 5.037011,
20309         changed => {
20310             'B::Deparse'            => '1.74',
20311             'B::Op_private'         => '5.038000',
20312             'CPAN'                  => '2.36',
20313             'CPAN::HTTP::Client'    => '1.9602',
20314             'Compress::Raw::Bzip2'  => '2.204_001',
20315             'Compress::Raw::Zlib'   => '2.204_001',
20316             'Config'                => '5.038',
20317             'Digest::MD5'           => '2.58_01',
20318             'DynaLoader'            => '1.54',
20319             'ExtUtils::ParseXS'     => '3.51',
20320             'ExtUtils::ParseXS::Constants'=> '3.51',
20321             'ExtUtils::ParseXS::CountLines'=> '3.51',
20322             'ExtUtils::ParseXS::Eval'=> '3.51',
20323             'ExtUtils::ParseXS::Utilities'=> '3.51',
20324             'ExtUtils::Typemaps'    => '3.51',
20325             'ExtUtils::Typemaps::Cmd'=> '3.51',
20326             'ExtUtils::Typemaps::InputMap'=> '3.51',
20327             'ExtUtils::Typemaps::OutputMap'=> '3.51',
20328             'ExtUtils::Typemaps::Type'=> '3.51',
20329             'File::Glob'            => '1.40',
20330             'HTTP::Tiny'            => '0.086',
20331             'IO'                    => '1.52',
20332             'IO::Dir'               => '1.52',
20333             'IO::File'              => '1.52',
20334             'IO::Handle'            => '1.52',
20335             'IO::Pipe'              => '1.52',
20336             'IO::Poll'              => '1.52',
20337             'IO::Seekable'          => '1.52',
20338             'IO::Select'            => '1.52',
20339             'IO::Socket'            => '1.52',
20340             'IO::Socket::INET'      => '1.52',
20341             'IO::Socket::IP'        => '0.41_01',
20342             'IO::Socket::UNIX'      => '1.52',
20343             'MIME::Base64'          => '3.16_01',
20344             'MIME::QuotedPrint'     => '3.16_01',
20345             'Module::CoreList'      => '5.20230520',
20346             'Module::CoreList::Utils'=> '5.20230520',
20347             'POSIX'                 => '2.13',
20348             'SDBM_File'             => '1.17',
20349             'Storable'              => '3.32',
20350             'Time::HiRes'           => '1.9775',
20351             'Time::Piece'           => '1.3401_01',
20352             'warnings'              => '1.65',
20353         },
20354         removed => {
20355         }
20356     },
20357     5.039001 => {
20358         delta_from => 5.038000,
20359         changed => {
20360             'B::Op_private'         => '5.039001',
20361             'CPAN::Meta::Requirements'=> '2.143',
20362             'CPAN::Meta::Requirements::Range'=> '2.143',
20363             'Compress::Raw::Bzip2'  => '2.205',
20364             'Compress::Raw::Zlib'   => '2.205',
20365             'Compress::Zlib'        => '2.205',
20366             'Config'                => '5.039001',
20367             'Errno'                 => '1.38',
20368             'ExtUtils::CBuilder'    => '0.280239',
20369             'ExtUtils::CBuilder::Base'=> '0.280239',
20370             'ExtUtils::CBuilder::Platform::Unix'=> '0.280239',
20371             'ExtUtils::CBuilder::Platform::VMS'=> '0.280239',
20372             'ExtUtils::CBuilder::Platform::Windows'=> '0.280239',
20373             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280239',
20374             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280239',
20375             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280239',
20376             'ExtUtils::CBuilder::Platform::aix'=> '0.280239',
20377             'ExtUtils::CBuilder::Platform::android'=> '0.280239',
20378             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280239',
20379             'ExtUtils::CBuilder::Platform::darwin'=> '0.280239',
20380             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280239',
20381             'ExtUtils::CBuilder::Platform::os2'=> '0.280239',
20382             'ExtUtils::Manifest'    => '1.75',
20383             'IO::Compress::Adapter::Bzip2'=> '2.205',
20384             'IO::Compress::Adapter::Deflate'=> '2.205',
20385             'IO::Compress::Adapter::Identity'=> '2.205',
20386             'IO::Compress::Base'    => '2.205',
20387             'IO::Compress::Base::Common'=> '2.205',
20388             'IO::Compress::Bzip2'   => '2.205',
20389             'IO::Compress::Deflate' => '2.205',
20390             'IO::Compress::Gzip'    => '2.205',
20391             'IO::Compress::Gzip::Constants'=> '2.205',
20392             'IO::Compress::RawDeflate'=> '2.205',
20393             'IO::Compress::Zip'     => '2.205',
20394             'IO::Compress::Zip::Constants'=> '2.205',
20395             'IO::Compress::Zlib::Constants'=> '2.205',
20396             'IO::Compress::Zlib::Extra'=> '2.205',
20397             'IO::Uncompress::Adapter::Bunzip2'=> '2.205',
20398             'IO::Uncompress::Adapter::Identity'=> '2.205',
20399             'IO::Uncompress::Adapter::Inflate'=> '2.205',
20400             'IO::Uncompress::AnyInflate'=> '2.205',
20401             'IO::Uncompress::AnyUncompress'=> '2.205',
20402             'IO::Uncompress::Base'  => '2.205',
20403             'IO::Uncompress::Bunzip2'=> '2.205',
20404             'IO::Uncompress::Gunzip'=> '2.205',
20405             'IO::Uncompress::Inflate'=> '2.205',
20406             'IO::Uncompress::RawInflate'=> '2.205',
20407             'IO::Uncompress::Unzip' => '2.205',
20408             'Math::BigFloat'        => '1.999839',
20409             'Math::BigInt'          => '1.999839',
20410             'Math::BigInt::Calc'    => '1.999839',
20411             'Math::BigInt::FastCalc'=> '0.5014',
20412             'Math::BigInt::Lib'     => '1.999839',
20413             'Module::CoreList'      => '5.20230720',
20414             'Module::CoreList::Utils'=> '5.20230720',
20415             'Module::Metadata'      => '1.000038',
20416             'POSIX'                 => '2.14',
20417             'Socket'                => '2.037',
20418             'Test2'                 => '1.302195',
20419             'Test2::API'            => '1.302195',
20420             'Test2::API::Breakage'  => '1.302195',
20421             'Test2::API::Context'   => '1.302195',
20422             'Test2::API::Instance'  => '1.302195',
20423             'Test2::API::InterceptResult'=> '1.302195',
20424             'Test2::API::InterceptResult::Event'=> '1.302195',
20425             'Test2::API::InterceptResult::Facet'=> '1.302195',
20426             'Test2::API::InterceptResult::Hub'=> '1.302195',
20427             'Test2::API::InterceptResult::Squasher'=> '1.302195',
20428             'Test2::API::Stack'     => '1.302195',
20429             'Test2::Event'          => '1.302195',
20430             'Test2::Event::Bail'    => '1.302195',
20431             'Test2::Event::Diag'    => '1.302195',
20432             'Test2::Event::Encoding'=> '1.302195',
20433             'Test2::Event::Exception'=> '1.302195',
20434             'Test2::Event::Fail'    => '1.302195',
20435             'Test2::Event::Generic' => '1.302195',
20436             'Test2::Event::Note'    => '1.302195',
20437             'Test2::Event::Ok'      => '1.302195',
20438             'Test2::Event::Pass'    => '1.302195',
20439             'Test2::Event::Plan'    => '1.302195',
20440             'Test2::Event::Skip'    => '1.302195',
20441             'Test2::Event::Subtest' => '1.302195',
20442             'Test2::Event::TAP::Version'=> '1.302195',
20443             'Test2::Event::V2'      => '1.302195',
20444             'Test2::Event::Waiting' => '1.302195',
20445             'Test2::EventFacet'     => '1.302195',
20446             'Test2::EventFacet::About'=> '1.302195',
20447             'Test2::EventFacet::Amnesty'=> '1.302195',
20448             'Test2::EventFacet::Assert'=> '1.302195',
20449             'Test2::EventFacet::Control'=> '1.302195',
20450             'Test2::EventFacet::Error'=> '1.302195',
20451             'Test2::EventFacet::Hub'=> '1.302195',
20452             'Test2::EventFacet::Info'=> '1.302195',
20453             'Test2::EventFacet::Info::Table'=> '1.302195',
20454             'Test2::EventFacet::Meta'=> '1.302195',
20455             'Test2::EventFacet::Parent'=> '1.302195',
20456             'Test2::EventFacet::Plan'=> '1.302195',
20457             'Test2::EventFacet::Render'=> '1.302195',
20458             'Test2::EventFacet::Trace'=> '1.302195',
20459             'Test2::Formatter'      => '1.302195',
20460             'Test2::Formatter::TAP' => '1.302195',
20461             'Test2::Hub'            => '1.302195',
20462             'Test2::Hub::Interceptor'=> '1.302195',
20463             'Test2::Hub::Interceptor::Terminator'=> '1.302195',
20464             'Test2::Hub::Subtest'   => '1.302195',
20465             'Test2::IPC'            => '1.302195',
20466             'Test2::IPC::Driver'    => '1.302195',
20467             'Test2::IPC::Driver::Files'=> '1.302195',
20468             'Test2::Tools::Tiny'    => '1.302195',
20469             'Test2::Util'           => '1.302195',
20470             'Test2::Util::ExternalMeta'=> '1.302195',
20471             'Test2::Util::Facets2Legacy'=> '1.302195',
20472             'Test2::Util::HashBase' => '1.302195',
20473             'Test2::Util::Trace'    => '1.302195',
20474             'Test::Builder'         => '1.302195',
20475             'Test::Builder::Formatter'=> '1.302195',
20476             'Test::Builder::Module' => '1.302195',
20477             'Test::Builder::Tester' => '1.302195',
20478             'Test::Builder::Tester::Color'=> '1.302195',
20479             'Test::Builder::TodoDiag'=> '1.302195',
20480             'Test::More'            => '1.302195',
20481             'Test::Simple'          => '1.302195',
20482             'Test::Tester'          => '1.302195',
20483             'Test::Tester::Capture' => '1.302195',
20484             'Test::Tester::CaptureRunner'=> '1.302195',
20485             'Test::Tester::Delegate'=> '1.302195',
20486             'Test::use::ok'         => '1.302195',
20487             'Text::Tabs'            => '2023.0511',
20488             'Text::Wrap'            => '2023.0511',
20489             'Time::HiRes'           => '1.9776',
20490             'Time::Local'           => '1.35',
20491             'UNIVERSAL'             => '1.16',
20492             'feature'               => '1.83',
20493             'ok'                    => '1.302195',
20494             'perlfaq'               => '5.20230701',
20495             'threads'               => '2.37',
20496             'warnings'              => '1.66',
20497             'warnings::register'    => '1.06',
20498         },
20499         removed => {
20500         }
20501     },
20502     5.039002 => {
20503         delta_from => 5.039001,
20504         changed => {
20505             'App::Prove'            => '3.47',
20506             'App::Prove::State'     => '3.47',
20507             'App::Prove::State::Result'=> '3.47',
20508             'App::Prove::State::Result::Test'=> '3.47',
20509             'B::Op_private'         => '5.039002',
20510             'Compress::Raw::Bzip2'  => '2.206',
20511             'Compress::Raw::Zlib'   => '2.206',
20512             'Compress::Zlib'        => '2.206',
20513             'Config'                => '5.039002',
20514             'Cwd'                   => '3.90',
20515             'Devel::Peek'           => '1.34',
20516             'ExtUtils::Miniperl'    => '1.14',
20517             'File::Spec'            => '3.90',
20518             'File::Spec::AmigaOS'   => '3.90',
20519             'File::Spec::Cygwin'    => '3.90',
20520             'File::Spec::Epoc'      => '3.90',
20521             'File::Spec::Functions' => '3.90',
20522             'File::Spec::Mac'       => '3.90',
20523             'File::Spec::OS2'       => '3.90',
20524             'File::Spec::Unix'      => '3.90',
20525             'File::Spec::VMS'       => '3.90',
20526             'File::Spec::Win32'     => '3.90',
20527             'HTTP::Tiny'            => '0.088',
20528             'IO::Compress::Adapter::Bzip2'=> '2.206',
20529             'IO::Compress::Adapter::Deflate'=> '2.206',
20530             'IO::Compress::Adapter::Identity'=> '2.206',
20531             'IO::Compress::Base'    => '2.206',
20532             'IO::Compress::Base::Common'=> '2.206',
20533             'IO::Compress::Bzip2'   => '2.206',
20534             'IO::Compress::Deflate' => '2.206',
20535             'IO::Compress::Gzip'    => '2.206',
20536             'IO::Compress::Gzip::Constants'=> '2.206',
20537             'IO::Compress::RawDeflate'=> '2.206',
20538             'IO::Compress::Zip'     => '2.206',
20539             'IO::Compress::Zip::Constants'=> '2.206',
20540             'IO::Compress::Zlib::Constants'=> '2.206',
20541             'IO::Compress::Zlib::Extra'=> '2.206',
20542             'IO::Socket::IP'        => '0.42',
20543             'IO::Uncompress::Adapter::Bunzip2'=> '2.206',
20544             'IO::Uncompress::Adapter::Identity'=> '2.206',
20545             'IO::Uncompress::Adapter::Inflate'=> '2.206',
20546             'IO::Uncompress::AnyInflate'=> '2.206',
20547             'IO::Uncompress::AnyUncompress'=> '2.206',
20548             'IO::Uncompress::Base'  => '2.206',
20549             'IO::Uncompress::Bunzip2'=> '2.206',
20550             'IO::Uncompress::Gunzip'=> '2.206',
20551             'IO::Uncompress::Inflate'=> '2.206',
20552             'IO::Uncompress::RawInflate'=> '2.206',
20553             'IO::Uncompress::Unzip' => '2.206',
20554             'Module::CoreList'      => '5.20230820',
20555             'Module::CoreList::Utils'=> '5.20230820',
20556             'NDBM_File'             => '1.17',
20557             'Opcode'                => '1.65',
20558             'POSIX'                 => '2.15',
20559             'PerlIO::scalar'        => '0.32',
20560             'PerlIO::via'           => '0.19',
20561             'Pod::Html'             => '1.35',
20562             'Pod::Html::Util'       => '1.35',
20563             'Pod::Simple'           => '3.45',
20564             'Pod::Simple::BlackBox' => '3.45',
20565             'Pod::Simple::Checker'  => '3.45',
20566             'Pod::Simple::Debug'    => '3.45',
20567             'Pod::Simple::DumpAsText'=> '3.45',
20568             'Pod::Simple::DumpAsXML'=> '3.45',
20569             'Pod::Simple::HTML'     => '3.45',
20570             'Pod::Simple::HTMLBatch'=> '3.45',
20571             'Pod::Simple::HTMLLegacy'=> '5.02',
20572             'Pod::Simple::LinkSection'=> '3.45',
20573             'Pod::Simple::Methody'  => '3.45',
20574             'Pod::Simple::Progress' => '3.45',
20575             'Pod::Simple::PullParser'=> '3.45',
20576             'Pod::Simple::PullParserEndToken'=> '3.45',
20577             'Pod::Simple::PullParserStartToken'=> '3.45',
20578             'Pod::Simple::PullParserTextToken'=> '3.45',
20579             'Pod::Simple::PullParserToken'=> '3.45',
20580             'Pod::Simple::RTF'      => '3.45',
20581             'Pod::Simple::Search'   => '3.45',
20582             'Pod::Simple::SimpleTree'=> '3.45',
20583             'Pod::Simple::Text'     => '3.45',
20584             'Pod::Simple::TextContent'=> '3.45',
20585             'Pod::Simple::TiedOutFH'=> '3.45',
20586             'Pod::Simple::Transcode'=> '3.45',
20587             'Pod::Simple::TranscodeDumb'=> '3.45',
20588             'Pod::Simple::TranscodeSmart'=> '3.45',
20589             'Pod::Simple::XHTML'    => '3.45',
20590             'Pod::Simple::XMLOutStream'=> '3.45',
20591             'Safe'                  => '2.45',
20592             'TAP::Base'             => '3.47',
20593             'TAP::Formatter::Base'  => '3.47',
20594             'TAP::Formatter::Color' => '3.47',
20595             'TAP::Formatter::Console'=> '3.47',
20596             'TAP::Formatter::Console::ParallelSession'=> '3.47',
20597             'TAP::Formatter::Console::Session'=> '3.47',
20598             'TAP::Formatter::File'  => '3.47',
20599             'TAP::Formatter::File::Session'=> '3.47',
20600             'TAP::Formatter::Session'=> '3.47',
20601             'TAP::Harness'          => '3.47',
20602             'TAP::Harness::Env'     => '3.47',
20603             'TAP::Object'           => '3.47',
20604             'TAP::Parser'           => '3.47',
20605             'TAP::Parser::Aggregator'=> '3.47',
20606             'TAP::Parser::Grammar'  => '3.47',
20607             'TAP::Parser::Iterator' => '3.47',
20608             'TAP::Parser::Iterator::Array'=> '3.47',
20609             'TAP::Parser::Iterator::Process'=> '3.47',
20610             'TAP::Parser::Iterator::Stream'=> '3.47',
20611             'TAP::Parser::IteratorFactory'=> '3.47',
20612             'TAP::Parser::Multiplexer'=> '3.47',
20613             'TAP::Parser::Result'   => '3.47',
20614             'TAP::Parser::Result::Bailout'=> '3.47',
20615             'TAP::Parser::Result::Comment'=> '3.47',
20616             'TAP::Parser::Result::Plan'=> '3.47',
20617             'TAP::Parser::Result::Pragma'=> '3.47',
20618             'TAP::Parser::Result::Test'=> '3.47',
20619             'TAP::Parser::Result::Unknown'=> '3.47',
20620             'TAP::Parser::Result::Version'=> '3.47',
20621             'TAP::Parser::Result::YAML'=> '3.47',
20622             'TAP::Parser::ResultFactory'=> '3.47',
20623             'TAP::Parser::Scheduler'=> '3.47',
20624             'TAP::Parser::Scheduler::Job'=> '3.47',
20625             'TAP::Parser::Scheduler::Spinner'=> '3.47',
20626             'TAP::Parser::Source'   => '3.47',
20627             'TAP::Parser::SourceHandler'=> '3.47',
20628             'TAP::Parser::SourceHandler::Executable'=> '3.47',
20629             'TAP::Parser::SourceHandler::File'=> '3.47',
20630             'TAP::Parser::SourceHandler::Handle'=> '3.47',
20631             'TAP::Parser::SourceHandler::Perl'=> '3.47',
20632             'TAP::Parser::SourceHandler::RawTAP'=> '3.47',
20633             'TAP::Parser::YAMLish::Reader'=> '3.47',
20634             'TAP::Parser::YAMLish::Writer'=> '3.47',
20635             'Test::Harness'         => '3.47',
20636             'XS::APItest'           => '1.33',
20637             'builtin'               => '0.009',
20638             'feature'               => '1.84',
20639             'perlfaq'               => '5.20230812',
20640             'strict'                => '1.13',
20641             'threads'               => '2.38',
20642             'warnings'              => '1.67',
20643         },
20644         removed => {
20645         }
20646     },
20647     5.039003 => {
20648         delta_from => 5.039002,
20649         changed => {
20650             'B'                     => '1.89',
20651             'B::Op_private'         => '5.039003',
20652             'Config'                => '5.039003',
20653             'DB_File'               => '1.859',
20654             'Data::Dumper'          => '2.189',
20655             'Devel::PPPort'         => '3.72',
20656             'ExtUtils::CBuilder'    => '0.280240',
20657             'ExtUtils::CBuilder::Base'=> '0.280240',
20658             'ExtUtils::CBuilder::Platform::Unix'=> '0.280240',
20659             'ExtUtils::CBuilder::Platform::VMS'=> '0.280240',
20660             'ExtUtils::CBuilder::Platform::Windows'=> '0.280240',
20661             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280240',
20662             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280240',
20663             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280240',
20664             'ExtUtils::CBuilder::Platform::aix'=> '0.280240',
20665             'ExtUtils::CBuilder::Platform::android'=> '0.280240',
20666             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280240',
20667             'ExtUtils::CBuilder::Platform::darwin'=> '0.280240',
20668             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280240',
20669             'ExtUtils::CBuilder::Platform::os2'=> '0.280240',
20670             'File::Compare'         => '1.1008',
20671             'File::Spec::AmigaOS'   => '3.91',
20672             'File::Spec::Cygwin'    => '3.91',
20673             'File::Spec::Epoc'      => '3.91',
20674             'File::Spec::Functions' => '3.91',
20675             'File::Spec::Mac'       => '3.91',
20676             'File::Spec::OS2'       => '3.91',
20677             'File::Spec::Unix'      => '3.91',
20678             'File::Spec::VMS'       => '3.91',
20679             'File::Spec::Win32'     => '3.91',
20680             'FindBin'               => '1.54',
20681             'Getopt::Std'           => '1.14',
20682             'IO'                    => '1.53',
20683             'IO::Dir'               => '1.53',
20684             'IO::File'              => '1.53',
20685             'IO::Handle'            => '1.53',
20686             'IO::Pipe'              => '1.53',
20687             'IO::Poll'              => '1.53',
20688             'IO::Seekable'          => '1.53',
20689             'IO::Select'            => '1.53',
20690             'IO::Socket'            => '1.53',
20691             'IO::Socket::INET'      => '1.53',
20692             'IO::Socket::UNIX'      => '1.53',
20693             'Module::CoreList'      => '5.20230920',
20694             'Module::CoreList::Utils'=> '5.20230920',
20695             'builtin'               => '0.010',
20696             'fields'                => '2.25',
20697             'threads'               => '2.39',
20698             'threads::shared'       => '1.69',
20699         },
20700         removed => {
20701         }
20702     },
20703     5.039004 => {
20704         delta_from => 5.039003,
20705         changed => {
20706             'App::Prove'            => '3.48',
20707             'App::Prove::State'     => '3.48',
20708             'App::Prove::State::Result'=> '3.48',
20709             'App::Prove::State::Result::Test'=> '3.48',
20710             'B::Op_private'         => '5.039004',
20711             'Config'                => '5.039004',
20712             'File::Find'            => '1.44',
20713             'File::stat'            => '1.14',
20714             'Math::BigFloat'        => '1.999842',
20715             'Math::BigInt'          => '1.999842',
20716             'Math::BigInt::Calc'    => '1.999842',
20717             'Math::BigInt::FastCalc'=> '0.5015',
20718             'Math::BigInt::Lib'     => '1.999842',
20719             'Module::CoreList'      => '5.20231025',
20720             'Module::CoreList::Utils'=> '5.20231025',
20721             'Net::hostent'          => '1.04',
20722             'Net::netent'           => '1.02',
20723             'Net::protoent'         => '1.03',
20724             'Net::servent'          => '1.04',
20725             'POSIX'                 => '2.16',
20726             'TAP::Base'             => '3.48',
20727             'TAP::Formatter::Base'  => '3.48',
20728             'TAP::Formatter::Color' => '3.48',
20729             'TAP::Formatter::Console'=> '3.48',
20730             'TAP::Formatter::Console::ParallelSession'=> '3.48',
20731             'TAP::Formatter::Console::Session'=> '3.48',
20732             'TAP::Formatter::File'  => '3.48',
20733             'TAP::Formatter::File::Session'=> '3.48',
20734             'TAP::Formatter::Session'=> '3.48',
20735             'TAP::Harness'          => '3.48',
20736             'TAP::Harness::Env'     => '3.48',
20737             'TAP::Object'           => '3.48',
20738             'TAP::Parser'           => '3.48',
20739             'TAP::Parser::Aggregator'=> '3.48',
20740             'TAP::Parser::Grammar'  => '3.48',
20741             'TAP::Parser::Iterator' => '3.48',
20742             'TAP::Parser::Iterator::Array'=> '3.48',
20743             'TAP::Parser::Iterator::Process'=> '3.48',
20744             'TAP::Parser::Iterator::Stream'=> '3.48',
20745             'TAP::Parser::IteratorFactory'=> '3.48',
20746             'TAP::Parser::Multiplexer'=> '3.48',
20747             'TAP::Parser::Result'   => '3.48',
20748             'TAP::Parser::Result::Bailout'=> '3.48',
20749             'TAP::Parser::Result::Comment'=> '3.48',
20750             'TAP::Parser::Result::Plan'=> '3.48',
20751             'TAP::Parser::Result::Pragma'=> '3.48',
20752             'TAP::Parser::Result::Test'=> '3.48',
20753             'TAP::Parser::Result::Unknown'=> '3.48',
20754             'TAP::Parser::Result::Version'=> '3.48',
20755             'TAP::Parser::Result::YAML'=> '3.48',
20756             'TAP::Parser::ResultFactory'=> '3.48',
20757             'TAP::Parser::Scheduler'=> '3.48',
20758             'TAP::Parser::Scheduler::Job'=> '3.48',
20759             'TAP::Parser::Scheduler::Spinner'=> '3.48',
20760             'TAP::Parser::Source'   => '3.48',
20761             'TAP::Parser::SourceHandler'=> '3.48',
20762             'TAP::Parser::SourceHandler::Executable'=> '3.48',
20763             'TAP::Parser::SourceHandler::File'=> '3.48',
20764             'TAP::Parser::SourceHandler::Handle'=> '3.48',
20765             'TAP::Parser::SourceHandler::Perl'=> '3.48',
20766             'TAP::Parser::SourceHandler::RawTAP'=> '3.48',
20767             'TAP::Parser::YAMLish::Reader'=> '3.48',
20768             'TAP::Parser::YAMLish::Writer'=> '3.48',
20769             'Term::Table'           => '0.017',
20770             'Term::Table::Cell'     => '0.017',
20771             'Term::Table::CellStack'=> '0.017',
20772             'Term::Table::HashBase' => '0.017',
20773             'Term::Table::LineBreak'=> '0.017',
20774             'Term::Table::Spacer'   => '0.017',
20775             'Term::Table::Util'     => '0.017',
20776             'Test2::AsyncSubtest'   => '0.000156',
20777             'Test2::AsyncSubtest::Event::Attach'=> '0.000156',
20778             'Test2::AsyncSubtest::Event::Detach'=> '0.000156',
20779             'Test2::AsyncSubtest::Formatter'=> '0.000156',
20780             'Test2::AsyncSubtest::Hub'=> '0.000156',
20781             'Test2::Bundle'         => '0.000156',
20782             'Test2::Bundle::Extended'=> '0.000156',
20783             'Test2::Bundle::More'   => '0.000156',
20784             'Test2::Bundle::Simple' => '0.000156',
20785             'Test2::Compare'        => '0.000156',
20786             'Test2::Compare::Array' => '0.000156',
20787             'Test2::Compare::Bag'   => '0.000156',
20788             'Test2::Compare::Base'  => '0.000156',
20789             'Test2::Compare::Bool'  => '0.000156',
20790             'Test2::Compare::Custom'=> '0.000156',
20791             'Test2::Compare::DeepRef'=> '0.000156',
20792             'Test2::Compare::Delta' => '0.000156',
20793             'Test2::Compare::Event' => '0.000156',
20794             'Test2::Compare::EventMeta'=> '0.000156',
20795             'Test2::Compare::Float' => '0.000156',
20796             'Test2::Compare::Hash'  => '0.000156',
20797             'Test2::Compare::Isa'   => '0.000156',
20798             'Test2::Compare::Meta'  => '0.000156',
20799             'Test2::Compare::Negatable'=> '0.000156',
20800             'Test2::Compare::Number'=> '0.000156',
20801             'Test2::Compare::Object'=> '0.000156',
20802             'Test2::Compare::OrderedSubset'=> '0.000156',
20803             'Test2::Compare::Pattern'=> '0.000156',
20804             'Test2::Compare::Ref'   => '0.000156',
20805             'Test2::Compare::Regex' => '0.000156',
20806             'Test2::Compare::Scalar'=> '0.000156',
20807             'Test2::Compare::Set'   => '0.000156',
20808             'Test2::Compare::String'=> '0.000156',
20809             'Test2::Compare::Undef' => '0.000156',
20810             'Test2::Compare::Wildcard'=> '0.000156',
20811             'Test2::Manual'         => '0.000156',
20812             'Test2::Manual::Anatomy'=> '0.000156',
20813             'Test2::Manual::Anatomy::API'=> '0.000156',
20814             'Test2::Manual::Anatomy::Context'=> '0.000156',
20815             'Test2::Manual::Anatomy::EndToEnd'=> '0.000156',
20816             'Test2::Manual::Anatomy::Event'=> '0.000156',
20817             'Test2::Manual::Anatomy::Hubs'=> '0.000156',
20818             'Test2::Manual::Anatomy::IPC'=> '0.000156',
20819             'Test2::Manual::Anatomy::Utilities'=> '0.000156',
20820             'Test2::Manual::Concurrency'=> '0.000156',
20821             'Test2::Manual::Contributing'=> '0.000156',
20822             'Test2::Manual::Testing'=> '0.000156',
20823             'Test2::Manual::Testing::Introduction'=> '0.000156',
20824             'Test2::Manual::Testing::Migrating'=> '0.000156',
20825             'Test2::Manual::Testing::Planning'=> '0.000156',
20826             'Test2::Manual::Testing::Todo'=> '0.000156',
20827             'Test2::Manual::Tooling'=> '0.000156',
20828             'Test2::Manual::Tooling::FirstTool'=> '0.000156',
20829             'Test2::Manual::Tooling::Formatter'=> '0.000156',
20830             'Test2::Manual::Tooling::Nesting'=> '0.000156',
20831             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000156',
20832             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000156',
20833             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000156',
20834             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000156',
20835             'Test2::Manual::Tooling::Subtest'=> '0.000156',
20836             'Test2::Manual::Tooling::TestBuilder'=> '0.000156',
20837             'Test2::Manual::Tooling::Testing'=> '0.000156',
20838             'Test2::Mock'           => '0.000156',
20839             'Test2::Plugin'         => '0.000156',
20840             'Test2::Plugin::BailOnFail'=> '0.000156',
20841             'Test2::Plugin::DieOnFail'=> '0.000156',
20842             'Test2::Plugin::ExitSummary'=> '0.000156',
20843             'Test2::Plugin::SRand'  => '0.000156',
20844             'Test2::Plugin::Times'  => '0.000156',
20845             'Test2::Plugin::UTF8'   => '0.000156',
20846             'Test2::Require'        => '0.000156',
20847             'Test2::Require::AuthorTesting'=> '0.000156',
20848             'Test2::Require::EnvVar'=> '0.000156',
20849             'Test2::Require::Fork'  => '0.000156',
20850             'Test2::Require::Module'=> '0.000156',
20851             'Test2::Require::Perl'  => '0.000156',
20852             'Test2::Require::RealFork'=> '0.000156',
20853             'Test2::Require::Threads'=> '0.000156',
20854             'Test2::Suite'          => '0.000156',
20855             'Test2::Todo'           => '0.000156',
20856             'Test2::Tools'          => '0.000156',
20857             'Test2::Tools::AsyncSubtest'=> '0.000156',
20858             'Test2::Tools::Basic'   => '0.000156',
20859             'Test2::Tools::Class'   => '0.000156',
20860             'Test2::Tools::ClassicCompare'=> '0.000156',
20861             'Test2::Tools::Compare' => '0.000156',
20862             'Test2::Tools::Defer'   => '0.000156',
20863             'Test2::Tools::Encoding'=> '0.000156',
20864             'Test2::Tools::Event'   => '0.000156',
20865             'Test2::Tools::Exception'=> '0.000156',
20866             'Test2::Tools::Exports' => '0.000156',
20867             'Test2::Tools::GenTemp' => '0.000156',
20868             'Test2::Tools::Grab'    => '0.000156',
20869             'Test2::Tools::Mock'    => '0.000156',
20870             'Test2::Tools::Ref'     => '0.000156',
20871             'Test2::Tools::Refcount'=> '0.000156',
20872             'Test2::Tools::Spec'    => '0.000156',
20873             'Test2::Tools::Subtest' => '0.000156',
20874             'Test2::Tools::Target'  => '0.000156',
20875             'Test2::Tools::Tester'  => '0.000156',
20876             'Test2::Tools::Warnings'=> '0.000156',
20877             'Test2::Util::Grabber'  => '0.000156',
20878             'Test2::Util::Guard'    => '0.000156',
20879             'Test2::Util::Importer' => '0.000156',
20880             'Test2::Util::Ref'      => '0.000156',
20881             'Test2::Util::Stash'    => '0.000156',
20882             'Test2::Util::Sub'      => '0.000156',
20883             'Test2::Util::Table'    => '0.000156',
20884             'Test2::Util::Table::Cell'=> '0.000156',
20885             'Test2::Util::Table::LineBreak'=> '0.000156',
20886             'Test2::Util::Term'     => '0.000156',
20887             'Test2::Util::Times'    => '0.000156',
20888             'Test2::V0'             => '0.000156',
20889             'Test2::Workflow'       => '0.000156',
20890             'Test2::Workflow::BlockBase'=> '0.000156',
20891             'Test2::Workflow::Build'=> '0.000156',
20892             'Test2::Workflow::Runner'=> '0.000156',
20893             'Test2::Workflow::Task' => '0.000156',
20894             'Test2::Workflow::Task::Action'=> '0.000156',
20895             'Test2::Workflow::Task::Group'=> '0.000156',
20896             'Test::Harness'         => '3.48',
20897             'Time::gmtime'          => '1.05',
20898             'Time::localtime'       => '1.04',
20899             'Time::tm'              => '1.01',
20900             'User::grent'           => '1.05',
20901             'User::pwent'           => '1.03',
20902             'XS::APItest'           => '1.34',
20903             'XS::Typemap'           => '0.20',
20904             'builtin'               => '0.011',
20905             'feature'               => '1.85',
20906             'version'               => '0.9930',
20907             'version::regex'        => '0.9930',
20908         },
20909         removed => {
20910         }
20911     },
20912     5.039005 => {
20913         delta_from => 5.039004,
20914         changed => {
20915             'B::Op_private'         => '5.039005',
20916             'Benchmark'             => '1.25',
20917             'Config'                => '5.039005',
20918             'Encode'                => '3.20',
20919             'Getopt::Long'          => '2.57',
20920             'Getopt::Long::Parser'  => '2.57',
20921             'IO'                    => '1.54',
20922             'IO::Dir'               => '1.54',
20923             'IO::File'              => '1.54',
20924             'IO::Handle'            => '1.54',
20925             'IO::Pipe'              => '1.54',
20926             'IO::Poll'              => '1.54',
20927             'IO::Seekable'          => '1.54',
20928             'IO::Select'            => '1.54',
20929             'IO::Socket'            => '1.54',
20930             'IO::Socket::INET'      => '1.54',
20931             'IO::Socket::UNIX'      => '1.54',
20932             'Math::BigFloat'        => '2.001000',
20933             'Math::BigInt'          => '2.001000',
20934             'Math::BigInt::Calc'    => '2.001000',
20935             'Math::BigInt::Lib'     => '2.001000',
20936             'Math::BigRat'          => '2.001000',
20937             'Module::CoreList'      => '5.20231120',
20938             'Module::CoreList::Utils'=> '5.20231120',
20939             'POSIX'                 => '2.17',
20940             'Term::Table'           => '0.018',
20941             'Term::Table::Cell'     => '0.018',
20942             'Term::Table::CellStack'=> '0.018',
20943             'Term::Table::HashBase' => '0.018',
20944             'Term::Table::LineBreak'=> '0.018',
20945             'Term::Table::Spacer'   => '0.018',
20946             'Term::Table::Util'     => '0.018',
20947             'Test2::AsyncSubtest'   => '0.000159',
20948             'Test2::AsyncSubtest::Event::Attach'=> '0.000159',
20949             'Test2::AsyncSubtest::Event::Detach'=> '0.000159',
20950             'Test2::AsyncSubtest::Formatter'=> '0.000159',
20951             'Test2::AsyncSubtest::Hub'=> '0.000159',
20952             'Test2::Bundle'         => '0.000159',
20953             'Test2::Bundle::Extended'=> '0.000159',
20954             'Test2::Bundle::More'   => '0.000159',
20955             'Test2::Bundle::Simple' => '0.000159',
20956             'Test2::Compare'        => '0.000159',
20957             'Test2::Compare::Array' => '0.000159',
20958             'Test2::Compare::Bag'   => '0.000159',
20959             'Test2::Compare::Base'  => '0.000159',
20960             'Test2::Compare::Bool'  => '0.000159',
20961             'Test2::Compare::Custom'=> '0.000159',
20962             'Test2::Compare::DeepRef'=> '0.000159',
20963             'Test2::Compare::Delta' => '0.000159',
20964             'Test2::Compare::Event' => '0.000159',
20965             'Test2::Compare::EventMeta'=> '0.000159',
20966             'Test2::Compare::Float' => '0.000159',
20967             'Test2::Compare::Hash'  => '0.000159',
20968             'Test2::Compare::Isa'   => '0.000159',
20969             'Test2::Compare::Meta'  => '0.000159',
20970             'Test2::Compare::Negatable'=> '0.000159',
20971             'Test2::Compare::Number'=> '0.000159',
20972             'Test2::Compare::Object'=> '0.000159',
20973             'Test2::Compare::OrderedSubset'=> '0.000159',
20974             'Test2::Compare::Pattern'=> '0.000159',
20975             'Test2::Compare::Ref'   => '0.000159',
20976             'Test2::Compare::Regex' => '0.000159',
20977             'Test2::Compare::Scalar'=> '0.000159',
20978             'Test2::Compare::Set'   => '0.000159',
20979             'Test2::Compare::String'=> '0.000159',
20980             'Test2::Compare::Undef' => '0.000159',
20981             'Test2::Compare::Wildcard'=> '0.000159',
20982             'Test2::Manual'         => '0.000159',
20983             'Test2::Manual::Anatomy'=> '0.000159',
20984             'Test2::Manual::Anatomy::API'=> '0.000159',
20985             'Test2::Manual::Anatomy::Context'=> '0.000159',
20986             'Test2::Manual::Anatomy::EndToEnd'=> '0.000159',
20987             'Test2::Manual::Anatomy::Event'=> '0.000159',
20988             'Test2::Manual::Anatomy::Hubs'=> '0.000159',
20989             'Test2::Manual::Anatomy::IPC'=> '0.000159',
20990             'Test2::Manual::Anatomy::Utilities'=> '0.000159',
20991             'Test2::Manual::Concurrency'=> '0.000159',
20992             'Test2::Manual::Contributing'=> '0.000159',
20993             'Test2::Manual::Testing'=> '0.000159',
20994             'Test2::Manual::Testing::Introduction'=> '0.000159',
20995             'Test2::Manual::Testing::Migrating'=> '0.000159',
20996             'Test2::Manual::Testing::Planning'=> '0.000159',
20997             'Test2::Manual::Testing::Todo'=> '0.000159',
20998             'Test2::Manual::Tooling'=> '0.000159',
20999             'Test2::Manual::Tooling::FirstTool'=> '0.000159',
21000             'Test2::Manual::Tooling::Formatter'=> '0.000159',
21001             'Test2::Manual::Tooling::Nesting'=> '0.000159',
21002             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000159',
21003             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000159',
21004             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000159',
21005             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000159',
21006             'Test2::Manual::Tooling::Subtest'=> '0.000159',
21007             'Test2::Manual::Tooling::TestBuilder'=> '0.000159',
21008             'Test2::Manual::Tooling::Testing'=> '0.000159',
21009             'Test2::Mock'           => '0.000159',
21010             'Test2::Plugin'         => '0.000159',
21011             'Test2::Plugin::BailOnFail'=> '0.000159',
21012             'Test2::Plugin::DieOnFail'=> '0.000159',
21013             'Test2::Plugin::ExitSummary'=> '0.000159',
21014             'Test2::Plugin::SRand'  => '0.000159',
21015             'Test2::Plugin::Times'  => '0.000159',
21016             'Test2::Plugin::UTF8'   => '0.000159',
21017             'Test2::Require'        => '0.000159',
21018             'Test2::Require::AuthorTesting'=> '0.000159',
21019             'Test2::Require::EnvVar'=> '0.000159',
21020             'Test2::Require::Fork'  => '0.000159',
21021             'Test2::Require::Module'=> '0.000159',
21022             'Test2::Require::Perl'  => '0.000159',
21023             'Test2::Require::RealFork'=> '0.000159',
21024             'Test2::Require::Threads'=> '0.000159',
21025             'Test2::Suite'          => '0.000159',
21026             'Test2::Todo'           => '0.000159',
21027             'Test2::Tools'          => '0.000159',
21028             'Test2::Tools::AsyncSubtest'=> '0.000159',
21029             'Test2::Tools::Basic'   => '0.000159',
21030             'Test2::Tools::Class'   => '0.000159',
21031             'Test2::Tools::ClassicCompare'=> '0.000159',
21032             'Test2::Tools::Compare' => '0.000159',
21033             'Test2::Tools::Defer'   => '0.000159',
21034             'Test2::Tools::Encoding'=> '0.000159',
21035             'Test2::Tools::Event'   => '0.000159',
21036             'Test2::Tools::Exception'=> '0.000159',
21037             'Test2::Tools::Exports' => '0.000159',
21038             'Test2::Tools::GenTemp' => '0.000159',
21039             'Test2::Tools::Grab'    => '0.000159',
21040             'Test2::Tools::Mock'    => '0.000159',
21041             'Test2::Tools::Ref'     => '0.000159',
21042             'Test2::Tools::Refcount'=> '0.000159',
21043             'Test2::Tools::Spec'    => '0.000159',
21044             'Test2::Tools::Subtest' => '0.000159',
21045             'Test2::Tools::Target'  => '0.000159',
21046             'Test2::Tools::Tester'  => '0.000159',
21047             'Test2::Tools::Warnings'=> '0.000159',
21048             'Test2::Util::Grabber'  => '0.000159',
21049             'Test2::Util::Guard'    => '0.000159',
21050             'Test2::Util::Importer' => '0.000159',
21051             'Test2::Util::Ref'      => '0.000159',
21052             'Test2::Util::Stash'    => '0.000159',
21053             'Test2::Util::Sub'      => '0.000159',
21054             'Test2::Util::Table'    => '0.000159',
21055             'Test2::Util::Table::Cell'=> '0.000159',
21056             'Test2::Util::Table::LineBreak'=> '0.000159',
21057             'Test2::Util::Term'     => '0.000159',
21058             'Test2::Util::Times'    => '0.000159',
21059             'Test2::V0'             => '0.000159',
21060             'Test2::Workflow'       => '0.000159',
21061             'Test2::Workflow::BlockBase'=> '0.000159',
21062             'Test2::Workflow::Build'=> '0.000159',
21063             'Test2::Workflow::Runner'=> '0.000159',
21064             'Test2::Workflow::Task' => '0.000159',
21065             'Test2::Workflow::Task::Action'=> '0.000159',
21066             'Test2::Workflow::Task::Group'=> '0.000159',
21067             'builtin'               => '0.012',
21068             'locale'                => '1.11',
21069         },
21070         removed => {
21071         }
21072     },
21073     5.034002 => {
21074         delta_from => 5.034001,
21075         changed => {
21076             'B::Op_private'         => '5.034002',
21077             'Config'                => '5.034002',
21078             'Module::CoreList'      => '5.20231125',
21079             'Module::CoreList::Utils'=> '5.20231125',
21080         },
21081         removed => {
21082         }
21083     },
21084     5.036002 => {
21085         delta_from => 5.036001,
21086         changed => {
21087             'B::Op_private'         => '5.036002',
21088             'Config'                => '5.036002',
21089             'Module::CoreList'      => '5.20231125',
21090             'Module::CoreList::Utils'=> '5.20231125',
21091         },
21092         removed => {
21093         }
21094     },
21095     5.038001 => {
21096         delta_from => 5.038000,
21097         changed => {
21098             'B::Op_private'         => '5.038001',
21099             'Config'                => '5.038001',
21100             'Module::CoreList'      => '5.20231125',
21101             'Module::CoreList::Utils'=> '5.20231125',
21102         },
21103         removed => {
21104         }
21105     },
21106     5.034003 => {
21107         delta_from => 5.034002,
21108         changed => {
21109             'B::Op_private'         => '5.034003',
21110             'Config'                => '5.034003',
21111             'Module::CoreList'      => '5.20231129',
21112             'Module::CoreList::Utils'=> '5.20231129',
21113         },
21114         removed => {
21115         }
21116     },
21117     5.036003 => {
21118         delta_from => 5.036002,
21119         changed => {
21120             'B::Op_private'         => '5.036003',
21121             'Config'                => '5.036003',
21122             'Module::CoreList'      => '5.20231129',
21123             'Module::CoreList::Utils'=> '5.20231129',
21124         },
21125         removed => {
21126         }
21127     },
21128     5.038002 => {
21129         delta_from => 5.038001,
21130         changed => {
21131             'B::Op_private'         => '5.038002',
21132             'Config'                => '5.038002',
21133             'Module::CoreList'      => '5.20231129',
21134             'Module::CoreList::Utils'=> '5.20231129',
21135         },
21136         removed => {
21137         }
21138     },
21139     5.039006 => {
21140         delta_from => 5.039005,
21141         changed => {
21142             'Archive::Tar'          => '3.02_001',
21143             'Archive::Tar::Constant'=> '3.02_001',
21144             'Archive::Tar::File'    => '3.02_001',
21145             'B::Op_private'         => '5.039006',
21146             'Config'                => '5.039006',
21147             'Fatal'                 => '2.37',
21148             'Fcntl'                 => '1.16',
21149             'File::Glob'            => '1.41',
21150             'IO'                    => '1.55',
21151             'IO::Dir'               => '1.55',
21152             'IO::File'              => '1.55',
21153             'IO::Handle'            => '1.55',
21154             'IO::Pipe'              => '1.55',
21155             'IO::Poll'              => '1.55',
21156             'IO::Seekable'          => '1.55',
21157             'IO::Select'            => '1.55',
21158             'IO::Socket'            => '1.55',
21159             'IO::Socket::INET'      => '1.55',
21160             'IO::Socket::UNIX'      => '1.55',
21161             'Math::BigFloat'        => '2.003001',
21162             'Math::BigFloat::Trace' => '0.67',
21163             'Math::BigInt'          => '2.003001',
21164             'Math::BigInt::Calc'    => '2.003001',
21165             'Math::BigInt::FastCalc'=> '0.5016',
21166             'Math::BigInt::Lib'     => '2.003001',
21167             'Math::BigInt::Trace'   => '0.67',
21168             'Math::BigRat'          => '2.003001',
21169             'Math::BigRat::Trace'   => '0.67',
21170             'Module::CoreList'      => '5.20240120',
21171             'Module::CoreList::Utils'=> '5.20240120',
21172             'Test2'                 => '1.302198',
21173             'Test2::API'            => '1.302198',
21174             'Test2::API::Breakage'  => '1.302198',
21175             'Test2::API::Context'   => '1.302198',
21176             'Test2::API::Instance'  => '1.302198',
21177             'Test2::API::InterceptResult'=> '1.302198',
21178             'Test2::API::InterceptResult::Event'=> '1.302198',
21179             'Test2::API::InterceptResult::Facet'=> '1.302198',
21180             'Test2::API::InterceptResult::Hub'=> '1.302198',
21181             'Test2::API::InterceptResult::Squasher'=> '1.302198',
21182             'Test2::API::Stack'     => '1.302198',
21183             'Test2::Event'          => '1.302198',
21184             'Test2::Event::Bail'    => '1.302198',
21185             'Test2::Event::Diag'    => '1.302198',
21186             'Test2::Event::Encoding'=> '1.302198',
21187             'Test2::Event::Exception'=> '1.302198',
21188             'Test2::Event::Fail'    => '1.302198',
21189             'Test2::Event::Generic' => '1.302198',
21190             'Test2::Event::Note'    => '1.302198',
21191             'Test2::Event::Ok'      => '1.302198',
21192             'Test2::Event::Pass'    => '1.302198',
21193             'Test2::Event::Plan'    => '1.302198',
21194             'Test2::Event::Skip'    => '1.302198',
21195             'Test2::Event::Subtest' => '1.302198',
21196             'Test2::Event::TAP::Version'=> '1.302198',
21197             'Test2::Event::V2'      => '1.302198',
21198             'Test2::Event::Waiting' => '1.302198',
21199             'Test2::EventFacet'     => '1.302198',
21200             'Test2::EventFacet::About'=> '1.302198',
21201             'Test2::EventFacet::Amnesty'=> '1.302198',
21202             'Test2::EventFacet::Assert'=> '1.302198',
21203             'Test2::EventFacet::Control'=> '1.302198',
21204             'Test2::EventFacet::Error'=> '1.302198',
21205             'Test2::EventFacet::Hub'=> '1.302198',
21206             'Test2::EventFacet::Info'=> '1.302198',
21207             'Test2::EventFacet::Info::Table'=> '1.302198',
21208             'Test2::EventFacet::Meta'=> '1.302198',
21209             'Test2::EventFacet::Parent'=> '1.302198',
21210             'Test2::EventFacet::Plan'=> '1.302198',
21211             'Test2::EventFacet::Render'=> '1.302198',
21212             'Test2::EventFacet::Trace'=> '1.302198',
21213             'Test2::Formatter'      => '1.302198',
21214             'Test2::Formatter::TAP' => '1.302198',
21215             'Test2::Hub'            => '1.302198',
21216             'Test2::Hub::Interceptor'=> '1.302198',
21217             'Test2::Hub::Interceptor::Terminator'=> '1.302198',
21218             'Test2::Hub::Subtest'   => '1.302198',
21219             'Test2::IPC'            => '1.302198',
21220             'Test2::IPC::Driver'    => '1.302198',
21221             'Test2::IPC::Driver::Files'=> '1.302198',
21222             'Test2::Tools::Tiny'    => '1.302198',
21223             'Test2::Util'           => '1.302198',
21224             'Test2::Util::ExternalMeta'=> '1.302198',
21225             'Test2::Util::Facets2Legacy'=> '1.302198',
21226             'Test2::Util::HashBase' => '1.302198',
21227             'Test2::Util::Trace'    => '1.302198',
21228             'Test::Builder'         => '1.302198',
21229             'Test::Builder::Formatter'=> '1.302198',
21230             'Test::Builder::Module' => '1.302198',
21231             'Test::Builder::Tester' => '1.302198',
21232             'Test::Builder::Tester::Color'=> '1.302198',
21233             'Test::Builder::TodoDiag'=> '1.302198',
21234             'Test::More'            => '1.302198',
21235             'Test::Simple'          => '1.302198',
21236             'Test::Tester'          => '1.302198',
21237             'Test::Tester::Capture' => '1.302198',
21238             'Test::Tester::CaptureRunner'=> '1.302198',
21239             'Test::Tester::Delegate'=> '1.302198',
21240             'Test::use::ok'         => '1.302198',
21241             'autodie'               => '2.37',
21242             'autodie::Scope::Guard' => '2.37',
21243             'autodie::Scope::GuardStack'=> '2.37',
21244             'autodie::Util'         => '2.37',
21245             'autodie::exception'    => '2.37',
21246             'autodie::exception::system'=> '2.37',
21247             'autodie::hints'        => '2.37',
21248             'autodie::skip'         => '2.37',
21249             'bigfloat'              => '0.67',
21250             'bigint'                => '0.67',
21251             'bignum'                => '0.67',
21252             'bigrat'                => '0.67',
21253             'diagnostics'           => '1.40',
21254             'feature'               => '1.86',
21255             'ok'                    => '1.302198',
21256             're'                    => '0.45',
21257             'threads'               => '2.40',
21258         },
21259         removed => {
21260         }
21261     },
21262     5.039007 => {
21263         delta_from => 5.039006,
21264         changed => {
21265             'B::Op_private'         => '5.039007',
21266             'Config'                => '5.039007',
21267             'Exporter'              => '5.78',
21268             'Exporter::Heavy'       => '5.78',
21269             'Hash::Util'            => '0.31',
21270             'I18N::Langinfo'        => '0.23',
21271             'Math::BigFloat'        => '2.003002',
21272             'Math::BigInt'          => '2.003002',
21273             'Math::BigInt::Calc'    => '2.003002',
21274             'Math::BigInt::FastCalc'=> '0.5018',
21275             'Math::BigInt::Lib'     => '2.003002',
21276             'Math::BigRat'          => '2.003002',
21277             'Pod::Checker'          => '1.76',
21278             'SelfLoader'            => '1.27',
21279         },
21280         removed => {
21281         }
21282     },
21283     5.039008 => {
21284         delta_from => 5.039007,
21285         changed => {
21286             'B::Op_private'         => '5.039008',
21287             'Config'                => '5.039008',
21288         },
21289         removed => {
21290         }
21291     },
21292 );
21293
21294 sub is_core
21295 {
21296     shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0];
21297     my $module = shift;
21298     my $module_version = @_ > 0 ? shift : undef;
21299     my $perl_version   = @_ > 0 ? shift : $];
21300
21301     my $first_release = first_release($module);
21302
21303     return 0 if !defined($first_release) || $first_release > $perl_version;
21304
21305     my $final_release = removed_from($module);
21306
21307     return 0 if defined($final_release) && $perl_version >= $final_release;
21308
21309     # If a minimum version of the module was specified:
21310     # Step through all perl releases ($prn)
21311     # so we can find what version of the module
21312     # was included in the specified version of perl.
21313     # On the way if we pass the required module version, we can
21314     # short-circuit and return true
21315     if (defined($module_version)) {
21316         my $module_version_object = eval { version->parse($module_version) };
21317         if (!defined($module_version_object)) {
21318             (my $err = $@) =~ s/^Invalid version format\b/Invalid version '$module_version' specified/;
21319             die $err;
21320         }
21321         # The Perl releases aren't a linear sequence, but a tree. We need to build the path
21322         # of releases from 5 to the specified release, and follow the module's version(s)
21323         # along that path.
21324         my @releases = ($perl_version);
21325         my $rel = $perl_version;
21326         while (defined($rel)) {
21327             # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
21328             my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
21329             $rel = $this_delta->{delta_from};
21330             unshift(@releases, $rel) if defined($rel);
21331         }
21332         RELEASE:
21333         foreach my $prn (@releases) {
21334             next RELEASE if $prn < $first_release;
21335             last RELEASE if $prn > $perl_version;
21336             next unless defined(my $next_module_version
21337                                    = $delta{$prn}->{changed}->{$module});
21338             return 1 if eval { version->parse($next_module_version) >= $module_version_object };
21339         }
21340         return 0;
21341     }
21342
21343     return 1 if !defined($final_release);
21344
21345     return $perl_version <= $final_release;
21346 }
21347
21348 %version = _undelta(\%delta);
21349
21350 %deprecated = (
21351     5.011    => {
21352         changed => { map { $_ => 1 } qw/
21353             Class::ISA
21354             Pod::Plainer
21355             Shell
21356             Switch
21357         /},
21358     },
21359     5.011001 => { delta_from => 5.011 },
21360     5.011002 => { delta_from => 5.011001 },
21361     5.011003 => { delta_from => 5.011002 },
21362     5.011004 => { delta_from => 5.011003 },
21363     5.011005 => { delta_from => 5.011004 },
21364
21365     5.012    => { delta_from => 5.011005 },
21366     5.012001 => { delta_from => 5.012 },
21367     5.012002 => { delta_from => 5.012001 },
21368     5.012003 => { delta_from => 5.012002 },
21369     5.012004 => { delta_from => 5.012003 },
21370     5.012005 => { delta_from => 5.012004 },
21371
21372     5.013    => { delta_from => 5.012005 },
21373     5.013001 => {
21374         delta_from => 5.013,
21375         removed => { map { $_ => 1 } qw/
21376             Class::ISA
21377             Pod::Plainer
21378             Switch
21379         /},
21380     },
21381     5.013002 => { delta_from => 5.013001 },
21382     5.013003 => { delta_from => 5.013002 },
21383     5.013004 => { delta_from => 5.013003 },
21384     5.013005 => { delta_from => 5.013004 },
21385     5.013006 => { delta_from => 5.013005 },
21386     5.013007 => { delta_from => 5.013006 },
21387     5.013008 => { delta_from => 5.013007 },
21388     5.013009 => { delta_from => 5.013008 },
21389     5.01301  => { delta_from => 5.013009 },
21390     5.013011 => { delta_from => 5.01301  },
21391
21392     5.014    => { delta_from => 5.013011 },
21393     5.014001 => { delta_from => 5.014    },
21394     5.014002 => { delta_from => 5.014001 },
21395     5.014003 => { delta_from => 5.014002 },
21396     5.014004 => { delta_from => 5.014003 },
21397
21398     5.015    => {
21399         delta_from => 5.014004,
21400         removed => { Shell => 1 },
21401     },
21402     5.015001 => { delta_from => 5.015    },
21403     5.015002 => { delta_from => 5.015001 },
21404     5.015003 => { delta_from => 5.015002 },
21405     5.015004 => { delta_from => 5.015003 },
21406     5.015005 => { delta_from => 5.015004 },
21407     5.015006 => { delta_from => 5.015005 },
21408     5.015007 => { delta_from => 5.015006 },
21409     5.015008 => { delta_from => 5.015007 },
21410     5.015009 => { delta_from => 5.015008 },
21411
21412     5.016    => { delta_from => 5.015009 },
21413     5.016001 => { delta_from => 5.016    },
21414     5.016002 => { delta_from => 5.016001 },
21415     5.016003 => { delta_from => 5.016002 },
21416
21417     5.017    => { delta_from => 5.016003 },
21418     5.017001 => { delta_from => 5.017    },
21419     5.017002 => { delta_from => 5.017001 },
21420     5.017003 => { delta_from => 5.017002 },
21421     5.017004 => { delta_from => 5.017003 },
21422     5.017005 => { delta_from => 5.017004 },
21423     5.017006 => { delta_from => 5.017005 },
21424     5.017007 => { delta_from => 5.017006 },
21425     5.017008 => {
21426         delta_from => 5.017007,
21427         changed => { 'Pod::LaTeX' => 1 },
21428     },
21429     5.017009 => {
21430         delta_from => 5.017008,
21431         changed => { map { $_ => 1 } qw/
21432             Archive::Extract
21433             B::Lint
21434             B::Lint::Debug
21435             CPANPLUS
21436             CPANPLUS::Backend
21437             CPANPLUS::Backend::RV
21438             CPANPLUS::Config
21439             CPANPLUS::Config::HomeEnv
21440             CPANPLUS::Configure
21441             CPANPLUS::Configure::Setup
21442             CPANPLUS::Dist
21443             CPANPLUS::Dist::Autobundle
21444             CPANPLUS::Dist::Base
21445             CPANPLUS::Dist::Build
21446             CPANPLUS::Dist::Build::Constants
21447             CPANPLUS::Dist::MM
21448             CPANPLUS::Dist::Sample
21449             CPANPLUS::Error
21450             CPANPLUS::Internals
21451             CPANPLUS::Internals::Constants
21452             CPANPLUS::Internals::Constants::Report
21453             CPANPLUS::Internals::Extract
21454             CPANPLUS::Internals::Fetch
21455             CPANPLUS::Internals::Report
21456             CPANPLUS::Internals::Search
21457             CPANPLUS::Internals::Source
21458             CPANPLUS::Internals::Source::Memory
21459             CPANPLUS::Internals::Source::SQLite
21460             CPANPLUS::Internals::Source::SQLite::Tie
21461             CPANPLUS::Internals::Utils
21462             CPANPLUS::Internals::Utils::Autoflush
21463             CPANPLUS::Module
21464             CPANPLUS::Module::Author
21465             CPANPLUS::Module::Author::Fake
21466             CPANPLUS::Module::Checksums
21467             CPANPLUS::Module::Fake
21468             CPANPLUS::Module::Signature
21469             CPANPLUS::Selfupdate
21470             CPANPLUS::Shell
21471             CPANPLUS::Shell::Classic
21472             CPANPLUS::Shell::Default
21473             CPANPLUS::Shell::Default::Plugins::CustomSource
21474             CPANPLUS::Shell::Default::Plugins::Remote
21475             CPANPLUS::Shell::Default::Plugins::Source
21476             Devel::InnerPackage
21477             File::CheckTree
21478             Log::Message
21479             Log::Message::Config
21480             Log::Message::Handlers
21481             Log::Message::Item
21482             Log::Message::Simple
21483             Module::Pluggable
21484             Module::Pluggable::Object
21485             Object::Accessor
21486             Term::UI
21487             Term::UI::History
21488             Text::Soundex
21489         /},
21490     },
21491     5.01701  => { delta_from => 5.017009 },
21492     5.017011 => { delta_from => 5.01701  },
21493
21494     5.018    => { delta_from => 5.017011 },
21495     5.018001 => {
21496         delta_from => 5.018,
21497         changed => {
21498         },
21499         removed => {
21500         }
21501     },
21502     5.018002 => {
21503         delta_from => 5.018001,
21504         changed => {
21505         },
21506         removed => {
21507         }
21508     },
21509     5.018003 => {
21510         delta_from => 5.018,
21511         changed => {
21512         },
21513         removed => {
21514         }
21515     },
21516     5.018004 => {
21517         delta_from => 5.018,
21518         changed => {
21519         },
21520         removed => {
21521         }
21522     },
21523
21524     5.019    => {
21525         delta_from => 5.018,
21526         changed => { 'Module::Build' => 1 },
21527         removed => { map { $_ => 1 } qw/
21528             Archive::Extract
21529             B::Lint
21530             B::Lint::Debug
21531             CPANPLUS
21532             CPANPLUS::Backend
21533             CPANPLUS::Backend::RV
21534             CPANPLUS::Config
21535             CPANPLUS::Config::HomeEnv
21536             CPANPLUS::Configure
21537             CPANPLUS::Configure::Setup
21538             CPANPLUS::Dist
21539             CPANPLUS::Dist::Autobundle
21540             CPANPLUS::Dist::Base
21541             CPANPLUS::Dist::Build
21542             CPANPLUS::Dist::Build::Constants
21543             CPANPLUS::Dist::MM
21544             CPANPLUS::Dist::Sample
21545             CPANPLUS::Error
21546             CPANPLUS::Internals
21547             CPANPLUS::Internals::Constants
21548             CPANPLUS::Internals::Constants::Report
21549             CPANPLUS::Internals::Extract
21550             CPANPLUS::Internals::Fetch
21551             CPANPLUS::Internals::Report
21552             CPANPLUS::Internals::Search
21553             CPANPLUS::Internals::Source
21554             CPANPLUS::Internals::Source::Memory
21555             CPANPLUS::Internals::Source::SQLite
21556             CPANPLUS::Internals::Source::SQLite::Tie
21557             CPANPLUS::Internals::Utils
21558             CPANPLUS::Internals::Utils::Autoflush
21559             CPANPLUS::Module
21560             CPANPLUS::Module::Author
21561             CPANPLUS::Module::Author::Fake
21562             CPANPLUS::Module::Checksums
21563             CPANPLUS::Module::Fake
21564             CPANPLUS::Module::Signature
21565             CPANPLUS::Selfupdate
21566             CPANPLUS::Shell
21567             CPANPLUS::Shell::Classic
21568             CPANPLUS::Shell::Default
21569             CPANPLUS::Shell::Default::Plugins::CustomSource
21570             CPANPLUS::Shell::Default::Plugins::Remote
21571             CPANPLUS::Shell::Default::Plugins::Source
21572             Devel::InnerPackage
21573             File::CheckTree
21574             Log::Message
21575             Log::Message::Config
21576             Log::Message::Handlers
21577             Log::Message::Item
21578             Log::Message::Simple
21579             Module::Pluggable
21580             Module::Pluggable::Object
21581             Object::Accessor
21582             Pod::LaTeX
21583             Term::UI
21584             Term::UI::History
21585             Text::Soundex
21586         /}
21587     },
21588     5.019001 => {
21589         delta_from => 5.019,
21590         changed => {
21591         },
21592         removed => {
21593         }
21594     },
21595     5.019002 => {
21596         delta_from => 5.019001,
21597         changed => {
21598         },
21599         removed => {
21600         }
21601     },
21602     5.019003 => {
21603         delta_from => 5.019002,
21604         changed => {
21605         },
21606         removed => {
21607         }
21608     },
21609     5.019004 => {
21610         delta_from => 5.019003,
21611         changed => {
21612             'Module::Build::Base'   => '1',
21613             'Module::Build::Compat' => '1',
21614             'Module::Build::Config' => '1',
21615             'Module::Build::ConfigData'=> '1',
21616             'Module::Build::Cookbook'=> '1',
21617             'Module::Build::Dumper' => '1',
21618             'Module::Build::ModuleInfo'=> '1',
21619             'Module::Build::Notes'  => '1',
21620             'Module::Build::PPMMaker'=> '1',
21621             'Module::Build::Platform::Default'=> '1',
21622             'Module::Build::Platform::MacOS'=> '1',
21623             'Module::Build::Platform::Unix'=> '1',
21624             'Module::Build::Platform::VMS'=> '1',
21625             'Module::Build::Platform::VOS'=> '1',
21626             'Module::Build::Platform::Windows'=> '1',
21627             'Module::Build::Platform::aix'=> '1',
21628             'Module::Build::Platform::cygwin'=> '1',
21629             'Module::Build::Platform::darwin'=> '1',
21630             'Module::Build::Platform::os2'=> '1',
21631             'Module::Build::PodParser'=> '1',
21632             'Module::Build::Version'=> '1',
21633             'Module::Build::YAML'   => '1',
21634             'inc::latest'           => '1',
21635         },
21636         removed => {
21637         }
21638     },
21639     5.019005 => {
21640         delta_from => 5.019004,
21641         changed => {
21642         },
21643         removed => {
21644         }
21645     },
21646     5.019006 => {
21647         delta_from => 5.019005,
21648         changed => {
21649             'Package::Constants'    => '1',
21650         },
21651         removed => {
21652         }
21653     },
21654     5.019007 => {
21655         delta_from => 5.019006,
21656         changed => {
21657             'CGI'                   => '1',
21658             'CGI::Apache'           => '1',
21659             'CGI::Carp'             => '1',
21660             'CGI::Cookie'           => '1',
21661             'CGI::Fast'             => '1',
21662             'CGI::Pretty'           => '1',
21663             'CGI::Push'             => '1',
21664             'CGI::Switch'           => '1',
21665             'CGI::Util'             => '1',
21666         },
21667         removed => {
21668         }
21669     },
21670     5.019008 => {
21671         delta_from => 5.019007,
21672         changed => {
21673         },
21674         removed => {
21675         }
21676     },
21677     5.019009 => {
21678         delta_from => 5.019008,
21679         changed => {
21680         },
21681         removed => {
21682         }
21683     },
21684     5.01901 => {
21685         delta_from => 5.019009,
21686         changed => {
21687         },
21688         removed => {
21689         }
21690     },
21691     5.019011 => {
21692         delta_from => 5.019010,
21693         changed => {
21694         },
21695         removed => {
21696         }
21697     },
21698     5.020000 => {
21699         delta_from => 5.019011,
21700         changed => {
21701         },
21702         removed => {
21703         }
21704     },
21705     5.021000 => {
21706         delta_from => 5.020000,
21707         changed => {
21708         },
21709         removed => {
21710             'CGI'                   => 1,
21711             'CGI::Apache'           => 1,
21712             'CGI::Carp'             => 1,
21713             'CGI::Cookie'           => 1,
21714             'CGI::Fast'             => 1,
21715             'CGI::Pretty'           => 1,
21716             'CGI::Push'             => 1,
21717             'CGI::Switch'           => 1,
21718             'CGI::Util'             => 1,
21719             'Module::Build'         => 1,
21720             'Module::Build::Base'   => 1,
21721             'Module::Build::Compat' => 1,
21722             'Module::Build::Config' => 1,
21723             'Module::Build::ConfigData'=> 1,
21724             'Module::Build::Cookbook'=> 1,
21725             'Module::Build::Dumper' => 1,
21726             'Module::Build::ModuleInfo'=> 1,
21727             'Module::Build::Notes'  => 1,
21728             'Module::Build::PPMMaker'=> 1,
21729             'Module::Build::Platform::Default'=> 1,
21730             'Module::Build::Platform::MacOS'=> 1,
21731             'Module::Build::Platform::Unix'=> 1,
21732             'Module::Build::Platform::VMS'=> 1,
21733             'Module::Build::Platform::VOS'=> 1,
21734             'Module::Build::Platform::Windows'=> 1,
21735             'Module::Build::Platform::aix'=> 1,
21736             'Module::Build::Platform::cygwin'=> 1,
21737             'Module::Build::Platform::darwin'=> 1,
21738             'Module::Build::Platform::os2'=> 1,
21739             'Module::Build::PodParser'=> 1,
21740             'Module::Build::Version'=> 1,
21741             'Module::Build::YAML'   => 1,
21742             'Package::Constants'    => 1,
21743             'inc::latest'           => 1,
21744         }
21745     },
21746     5.021001 => {
21747         delta_from => 5.021000,
21748         changed => {
21749         },
21750         removed => {
21751         }
21752     },
21753     5.021002 => {
21754         delta_from => 5.021001,
21755         changed => {
21756         },
21757         removed => {
21758         }
21759     },
21760     5.021003 => {
21761         delta_from => 5.021002,
21762         changed => {
21763         },
21764         removed => {
21765         }
21766     },
21767     5.020001 => {
21768         delta_from => 5.020000,
21769         changed => {
21770         },
21771         removed => {
21772         }
21773     },
21774     5.021004 => {
21775         delta_from => 5.021003,
21776         changed => {
21777         },
21778         removed => {
21779         }
21780     },
21781     5.021005 => {
21782         delta_from => 5.021004,
21783         changed => {
21784         },
21785         removed => {
21786         }
21787     },
21788     5.021006 => {
21789         delta_from => 5.021005,
21790         changed => {
21791         },
21792         removed => {
21793         }
21794     },
21795     5.021007 => {
21796         delta_from => 5.021006,
21797         changed => {
21798         },
21799         removed => {
21800         }
21801     },
21802     5.021008 => {
21803         delta_from => 5.021007,
21804         changed => {
21805         },
21806         removed => {
21807         }
21808     },
21809     5.020002 => {
21810         delta_from => 5.020001,
21811         changed => {
21812         },
21813         removed => {
21814         }
21815     },
21816     5.021009 => {
21817         delta_from => 5.021008,
21818         changed => {
21819         },
21820         removed => {
21821         }
21822     },
21823     5.021010 => {
21824         delta_from => 5.021009,
21825         changed => {
21826         },
21827         removed => {
21828         }
21829     },
21830     5.021011 => {
21831         delta_from => 5.02101,
21832         changed => {
21833         },
21834         removed => {
21835         }
21836     },
21837     5.022000 => {
21838         delta_from => 5.021011,
21839         changed => {
21840         },
21841         removed => {
21842         }
21843     },
21844     5.023000 => {
21845         delta_from => 5.022000,
21846         changed => {
21847         },
21848         removed => {
21849         }
21850     },
21851     5.023001 => {
21852         delta_from => 5.023000,
21853         changed => {
21854         },
21855         removed => {
21856         }
21857     },
21858     5.023002 => {
21859         delta_from => 5.023001,
21860         changed => {
21861         },
21862         removed => {
21863         }
21864     },
21865     5.020003 => {
21866         delta_from => 5.020002,
21867         changed => {
21868         },
21869         removed => {
21870         }
21871     },
21872     5.023003 => {
21873         delta_from => 5.023002,
21874         changed => {
21875         },
21876         removed => {
21877         }
21878     },
21879     5.023004 => {
21880         delta_from => 5.023003,
21881         changed => {
21882         },
21883         removed => {
21884         }
21885     },
21886     5.023005 => {
21887         delta_from => 5.023004,
21888         changed => {
21889         },
21890         removed => {
21891         }
21892     },
21893     5.022001 => {
21894         delta_from => 5.022,
21895         changed => {
21896         },
21897         removed => {
21898         }
21899     },
21900     5.023006 => {
21901         delta_from => 5.023005,
21902         changed => {
21903         },
21904         removed => {
21905         }
21906     },
21907     5.023007 => {
21908         delta_from => 5.023006,
21909         changed => {
21910         },
21911         removed => {
21912         }
21913     },
21914     5.023008 => {
21915         delta_from => 5.023007,
21916         changed => {
21917         },
21918         removed => {
21919         }
21920     },
21921     5.023009 => {
21922         delta_from => 5.023008,
21923         changed => {
21924         },
21925         removed => {
21926         }
21927     },
21928     5.022002 => {
21929         delta_from => 5.022001,
21930         changed => {
21931         },
21932         removed => {
21933         }
21934     },
21935     5.024000 => {
21936         delta_from => 5.023009,
21937         changed => {
21938         },
21939         removed => {
21940         }
21941     },
21942     5.025000 => {
21943         delta_from => 5.024,
21944         changed => {
21945         },
21946         removed => {
21947         }
21948     },
21949     5.025001 => {
21950         delta_from => 5.025,
21951         changed => {
21952         },
21953         removed => {
21954         }
21955     },
21956     5.025002 => {
21957         delta_from => 5.025001,
21958         changed => {
21959         },
21960         removed => {
21961         }
21962     },
21963     5.025003 => {
21964         delta_from => 5.025002,
21965         changed => {
21966         },
21967         removed => {
21968         }
21969     },
21970     5.025004 => {
21971         delta_from => 5.025003,
21972         changed => {
21973         },
21974         removed => {
21975         }
21976     },
21977     5.025005 => {
21978         delta_from => 5.025004,
21979         changed => {
21980         },
21981         removed => {
21982         }
21983     },
21984     5.025006 => {
21985         delta_from => 5.025005,
21986         changed => {
21987         },
21988         removed => {
21989         }
21990     },
21991     5.025007 => {
21992         delta_from => 5.025006,
21993         changed => {
21994         },
21995         removed => {
21996         }
21997     },
21998     5.025008 => {
21999         delta_from => 5.025007,
22000         changed => {
22001         },
22002         removed => {
22003         }
22004     },
22005     5.022003 => {
22006         delta_from => 5.022002,
22007         changed => {
22008         },
22009         removed => {
22010         }
22011     },
22012     5.024001 => {
22013         delta_from => 5.024000,
22014         changed => {
22015         },
22016         removed => {
22017         }
22018     },
22019     5.025009 => {
22020         delta_from => 5.025008,
22021         changed => {
22022         },
22023         removed => {
22024         }
22025     },
22026     5.025010 => {
22027         delta_from => 5.025009,
22028         changed => {
22029         },
22030         removed => {
22031         }
22032     },
22033     5.025011 => {
22034         delta_from => 5.025010,
22035         changed => {
22036         },
22037         removed => {
22038         }
22039     },
22040     5.025012 => {
22041         delta_from => 5.025011,
22042         changed => {
22043         },
22044         removed => {
22045         }
22046     },
22047     5.026000 => {
22048         delta_from => 5.025012,
22049         changed => {
22050         },
22051         removed => {
22052         }
22053     },
22054     5.027000 => {
22055         delta_from => 5.026,
22056         changed => {
22057         },
22058         removed => {
22059         }
22060     },
22061     5.027001 => {
22062         delta_from => 5.027,
22063         changed => {
22064         },
22065         removed => {
22066         }
22067     },
22068     5.022004 => {
22069         delta_from => 5.022003,
22070         changed => {
22071         },
22072         removed => {
22073         }
22074     },
22075     5.024002 => {
22076         delta_from => 5.024001,
22077         changed => {
22078         },
22079         removed => {
22080         }
22081     },
22082     5.027002 => {
22083         delta_from => 5.027001,
22084         changed => {
22085         },
22086         removed => {
22087         }
22088     },
22089     5.027003 => {
22090         delta_from => 5.027002,
22091         changed => {
22092             'B::Debug'              => '1',
22093         },
22094         removed => {
22095         }
22096     },
22097     5.027004 => {
22098         delta_from => 5.027003,
22099         changed => {
22100         },
22101         removed => {
22102         }
22103     },
22104     5.024003 => {
22105         delta_from => 5.024002,
22106         changed => {
22107         },
22108         removed => {
22109         }
22110     },
22111     5.026001 => {
22112         delta_from => 5.026000,
22113         changed => {
22114         },
22115         removed => {
22116         }
22117     },
22118     5.027005 => {
22119         delta_from => 5.027004,
22120         changed => {
22121         },
22122         removed => {
22123         }
22124     },
22125     5.027006 => {
22126         delta_from => 5.027005,
22127         changed => {
22128         },
22129         removed => {
22130         }
22131     },
22132     5.027007 => {
22133         delta_from => 5.027006,
22134         changed => {
22135         },
22136         removed => {
22137         }
22138     },
22139     5.027008 => {
22140         delta_from => 5.027007,
22141         changed => {
22142         },
22143         removed => {
22144         }
22145     },
22146     5.027009 => {
22147         delta_from => 5.027008,
22148         changed => {
22149         },
22150         removed => {
22151         }
22152     },
22153     5.027010 => {
22154         delta_from => 5.027009,
22155         changed => {
22156         },
22157         removed => {
22158         }
22159     },
22160     5.024004 => {
22161         delta_from => 5.024003,
22162         changed => {
22163         },
22164         removed => {
22165         }
22166     },
22167     5.026002 => {
22168         delta_from => 5.026001,
22169         changed => {
22170         },
22171         removed => {
22172         }
22173     },
22174     5.027011 => {
22175         delta_from => 5.02701,
22176         changed => {
22177         },
22178         removed => {
22179         }
22180     },
22181     5.028000 => {
22182         delta_from => 5.027011,
22183         changed => {
22184         },
22185         removed => {
22186         }
22187     },
22188     5.029000 => {
22189         delta_from => 5.028,
22190         changed => {
22191         },
22192         removed => {
22193         }
22194     },
22195     5.029001 => {
22196         delta_from => 5.029,
22197         changed => {
22198         },
22199         removed => {
22200         }
22201     },
22202     5.029002 => {
22203         delta_from => 5.029001,
22204         changed => {
22205         },
22206         removed => {
22207         }
22208     },
22209     5.029003 => {
22210         delta_from => 5.029002,
22211         changed => {
22212         },
22213         removed => {
22214         }
22215     },
22216     5.029004 => {
22217         delta_from => 5.029003,
22218         changed => {
22219         },
22220         removed => {
22221             arybase => '1',
22222         }
22223     },
22224     5.029005 => {
22225         delta_from => 5.027002,
22226         changed => {
22227         },
22228         removed => {
22229         }
22230     },
22231     5.026003 => {
22232         delta_from => 5.026002,
22233         changed => {
22234         },
22235         removed => {
22236         }
22237     },
22238     5.028001 => {
22239         delta_from => 5.028000,
22240         changed => {
22241         },
22242         removed => {
22243         }
22244     },
22245     5.029006 => {
22246         delta_from => 5.029005,
22247         changed => {
22248         },
22249         removed => {
22250         }
22251     },
22252     5.029007 => {
22253         delta_from => 5.029006,
22254         changed => {
22255         },
22256         removed => {
22257         }
22258     },
22259     5.029008 => {
22260         delta_from => 5.029007,
22261         changed => {
22262         },
22263         removed => {
22264         }
22265     },
22266     5.029009 => {
22267         delta_from => 5.029008,
22268         changed => {
22269         },
22270         removed => {
22271         }
22272     },
22273     5.028002 => {
22274         delta_from => 5.028001,
22275         changed => {
22276         },
22277         removed => {
22278         }
22279     },
22280     5.029010 => {
22281         delta_from => 5.029009,
22282         changed => {
22283         },
22284         removed => {
22285         }
22286     },
22287     5.030000 => {
22288         delta_from => 5.02901,
22289         changed => {
22290         },
22291         removed => {
22292         }
22293     },
22294     5.031000 => {
22295         delta_from => 5.030000,
22296         changed => {
22297         },
22298         removed => {
22299         }
22300     },
22301     5.031001 => {
22302         delta_from => 5.031000,
22303         changed => {
22304         },
22305         removed => {
22306         }
22307     },
22308     5.031002 => {
22309         delta_from => 5.031001,
22310         changed => {
22311         },
22312         removed => {
22313         }
22314     },
22315     5.031003 => {
22316         delta_from => 5.031002,
22317         changed => {
22318         },
22319         removed => {
22320         }
22321     },
22322     5.031004 => {
22323         delta_from => 5.031003,
22324         changed => {
22325         },
22326         removed => {
22327         }
22328     },
22329     5.031005 => {
22330         delta_from => 5.031004,
22331         changed => {
22332         },
22333         removed => {
22334         }
22335     },
22336     5.030001 => {
22337         delta_from => 5.030000,
22338         changed => {
22339         },
22340         removed => {
22341         }
22342     },
22343     5.031006 => {
22344         delta_from => 5.031005,
22345         changed => {
22346         },
22347         removed => {
22348         }
22349     },
22350     5.031007 => {
22351         delta_from => 5.031006,
22352         changed => {
22353         },
22354         removed => {
22355         }
22356     },
22357     5.031008 => {
22358         delta_from => 5.031007,
22359         changed => {
22360         },
22361         removed => {
22362         }
22363     },
22364     5.031009 => {
22365         delta_from => 5.031008,
22366         changed => {
22367         },
22368         removed => {
22369         }
22370     },
22371     5.030002 => {
22372         delta_from => 5.030001,
22373         changed => {
22374         },
22375         removed => {
22376         }
22377     },
22378     5.031010 => {
22379         delta_from => 5.031009,
22380         changed => {
22381         },
22382         removed => {
22383         }
22384     },
22385     5.031011 => {
22386         delta_from => 5.03101,
22387         changed => {
22388         },
22389         removed => {
22390         }
22391     },
22392     5.028003 => {
22393         delta_from => 5.028002,
22394         changed => {
22395         },
22396         removed => {
22397         }
22398     },
22399     5.030003 => {
22400         delta_from => 5.030002,
22401         changed => {
22402         },
22403         removed => {
22404         }
22405     },
22406     5.032000 => {
22407         delta_from => 5.031011,
22408         changed => {
22409         },
22410         removed => {
22411         }
22412     },
22413     5.033000 => {
22414         delta_from => 5.032,
22415         changed => {
22416         },
22417         removed => {
22418         }
22419     },
22420     5.033001 => {
22421         delta_from => 5.033000,
22422         changed => {
22423         },
22424         removed => {
22425         }
22426     },
22427     5.033002 => {
22428         delta_from => 5.033001,
22429         changed => {
22430         },
22431         removed => {
22432         }
22433     },
22434     5.033003 => {
22435         delta_from => 5.033002,
22436         changed => {
22437         },
22438         removed => {
22439         }
22440     },
22441     5.033004 => {
22442         delta_from => 5.033003,
22443         changed => {
22444         },
22445         removed => {
22446         }
22447     },
22448     5.033005 => {
22449         delta_from => 5.033004,
22450         changed => {
22451         },
22452         removed => {
22453         }
22454     },
22455     5.033006 => {
22456         delta_from => 5.033005,
22457         changed => {
22458         },
22459         removed => {
22460         }
22461     },
22462     5.032001 => {
22463         delta_from => 5.032,
22464         changed => {
22465         },
22466         removed => {
22467         }
22468     },
22469     5.033007 => {
22470         delta_from => 5.033006,
22471         changed => {
22472         },
22473         removed => {
22474         }
22475     },
22476     5.033008 => {
22477         delta_from => 5.033007,
22478         changed => {
22479         },
22480         removed => {
22481         }
22482     },
22483     5.033009 => {
22484         delta_from => 5.033008,
22485         changed => {
22486         },
22487         removed => {
22488         }
22489     },
22490     5.034000 => {
22491         delta_from => 5.033009,
22492         changed => {
22493         },
22494         removed => {
22495         }
22496     },
22497     5.035000 => {
22498         delta_from => 5.034,
22499         changed => {
22500         },
22501         removed => {
22502         }
22503     },
22504     5.035001 => {
22505         delta_from => 5.035,
22506         changed => {
22507         },
22508         removed => {
22509         }
22510     },
22511     5.035002 => {
22512         delta_from => 5.035001,
22513         changed => {
22514         },
22515         removed => {
22516         }
22517     },
22518     5.035003 => {
22519         delta_from => 5.035002,
22520         changed => {
22521         },
22522         removed => {
22523         }
22524     },
22525     5.035004 => {
22526         delta_from => 5.035003,
22527         changed => {
22528         },
22529         removed => {
22530         }
22531     },
22532     5.035005 => {
22533         delta_from => 5.035004,
22534         changed => {
22535         },
22536         removed => {
22537         }
22538     },
22539     5.035006 => {
22540         delta_from => 5.035005,
22541         changed => {
22542         },
22543         removed => {
22544         }
22545     },
22546     5.035007 => {
22547         delta_from => 5.035006,
22548         changed => {
22549         },
22550         removed => {
22551         }
22552     },
22553     5.035008 => {
22554         delta_from => 5.035007,
22555         changed => {
22556         },
22557         removed => {
22558         }
22559     },
22560     5.035009 => {
22561         delta_from => 5.035008,
22562         changed => {
22563         },
22564         removed => {
22565         }
22566     },
22567     5.034001 => {
22568         delta_from => 5.034000,
22569         changed => {
22570         },
22571         removed => {
22572         }
22573     },
22574     5.035010 => {
22575         delta_from => 5.035009,
22576         changed => {
22577         },
22578         removed => {
22579         }
22580     },
22581     5.035011 => {
22582         delta_from => 5.035010,
22583         changed => {
22584         },
22585         removed => {
22586         }
22587     },
22588     5.036000 => {
22589         delta_from => 5.035011,
22590         changed => {
22591         },
22592         removed => {
22593         }
22594     },
22595     5.037000 => {
22596         delta_from => 5.036000,
22597         changed => {
22598         },
22599         removed => {
22600         }
22601     },
22602     5.037001 => {
22603         delta_from => 5.037000,
22604         changed => {
22605         },
22606         removed => {
22607         }
22608     },
22609     5.037002 => {
22610         delta_from => 5.037001,
22611         changed => {
22612         },
22613         removed => {
22614         }
22615     },
22616     5.037003 => {
22617         delta_from => 5.037002,
22618         changed => {
22619         },
22620         removed => {
22621         }
22622     },
22623     5.037004 => {
22624         delta_from => 5.037003,
22625         changed => {
22626         },
22627         removed => {
22628         }
22629     },
22630     5.037005 => {
22631         delta_from => 5.037004,
22632         changed => {
22633         },
22634         removed => {
22635         }
22636     },
22637     5.037006 => {
22638         delta_from => 5.037005,
22639         changed => {
22640         },
22641         removed => {
22642         }
22643     },
22644     5.037007 => {
22645         delta_from => 5.037006,
22646         changed => {
22647         },
22648         removed => {
22649         }
22650     },
22651     5.037008 => {
22652         delta_from => 5.037007,
22653         changed => {
22654         },
22655         removed => {
22656         }
22657     },
22658     5.037009 => {
22659         delta_from => 5.037008,
22660         changed => {
22661         },
22662         removed => {
22663         }
22664     },
22665     5.037010 => {
22666         delta_from => 5.037009,
22667         changed => {
22668         },
22669         removed => {
22670         }
22671     },
22672     5.037011 => {
22673         delta_from => 5.037010,
22674         changed => {
22675         },
22676         removed => {
22677         }
22678     },
22679     5.036001 => {
22680         delta_from => 5.036,
22681         changed => {
22682         },
22683         removed => {
22684         }
22685     },
22686     5.038000 => {
22687         delta_from => 5.037011,
22688         changed => {
22689         },
22690         removed => {
22691         }
22692     },
22693     5.039001 => {
22694         delta_from => 5.038,
22695         changed => {
22696         },
22697         removed => {
22698         }
22699     },
22700     5.039002 => {
22701         delta_from => 5.039001,
22702         changed => {
22703         },
22704         removed => {
22705         }
22706     },
22707     5.039003 => {
22708         delta_from => 5.039002,
22709         changed => {
22710         },
22711         removed => {
22712         }
22713     },
22714     5.039004 => {
22715         delta_from => 5.039003,
22716         changed => {
22717         },
22718         removed => {
22719         }
22720     },
22721     5.039005 => {
22722         delta_from => 5.039004,
22723         changed => {
22724         },
22725         removed => {
22726         }
22727     },
22728     5.034002 => {
22729         delta_from => 5.034001,
22730         changed => {
22731         },
22732         removed => {
22733         }
22734     },
22735     5.036002 => {
22736         delta_from => 5.036001,
22737         changed => {
22738         },
22739         removed => {
22740         }
22741     },
22742     5.038001 => {
22743         delta_from => 5.038,
22744         changed => {
22745         },
22746         removed => {
22747         }
22748     },
22749     5.034003 => {
22750         delta_from => 5.034002,
22751         changed => {
22752         },
22753         removed => {
22754         }
22755     },
22756     5.036003 => {
22757         delta_from => 5.036002,
22758         changed => {
22759         },
22760         removed => {
22761         }
22762     },
22763     5.038002 => {
22764         delta_from => 5.038001,
22765         changed => {
22766         },
22767         removed => {
22768         }
22769     },
22770     5.039006 => {
22771         delta_from => 5.039005,
22772         changed => {
22773         },
22774         removed => {
22775         }
22776     },
22777     5.039007 => {
22778         delta_from => 5.039006,
22779         changed => {
22780         },
22781         removed => {
22782         }
22783     },
22784     5.039008 => {
22785         delta_from => 5.039007,
22786         changed => {
22787         },
22788         removed => {
22789         }
22790     },
22791 );
22792
22793 %deprecated = _undelta(\%deprecated);
22794
22795 %upstream = (
22796     'App::Cpan'             => 'cpan',
22797     'App::Prove'            => 'cpan',
22798     'App::Prove::State'     => 'cpan',
22799     'App::Prove::State::Result'=> 'cpan',
22800     'App::Prove::State::Result::Test'=> 'cpan',
22801     'Archive::Tar'          => 'cpan',
22802     'Archive::Tar::Constant'=> 'cpan',
22803     'Archive::Tar::File'    => 'cpan',
22804     'AutoLoader'            => 'cpan',
22805     'AutoSplit'             => 'cpan',
22806     'CPAN'                  => 'cpan',
22807     'CPAN::Author'          => 'cpan',
22808     'CPAN::Bundle'          => 'cpan',
22809     'CPAN::CacheMgr'        => 'cpan',
22810     'CPAN::Complete'        => 'cpan',
22811     'CPAN::Debug'           => 'cpan',
22812     'CPAN::DeferredCode'    => 'cpan',
22813     'CPAN::Distribution'    => 'cpan',
22814     'CPAN::Distroprefs'     => 'cpan',
22815     'CPAN::Distrostatus'    => 'cpan',
22816     'CPAN::Exception::RecursiveDependency'=> 'cpan',
22817     'CPAN::Exception::blocked_urllist'=> 'cpan',
22818     'CPAN::Exception::yaml_not_installed'=> 'cpan',
22819     'CPAN::Exception::yaml_process_error'=> 'cpan',
22820     'CPAN::FTP'             => 'cpan',
22821     'CPAN::FTP::netrc'      => 'cpan',
22822     'CPAN::FirstTime'       => 'cpan',
22823     'CPAN::HTTP::Client'    => 'cpan',
22824     'CPAN::HTTP::Credentials'=> 'cpan',
22825     'CPAN::HandleConfig'    => 'cpan',
22826     'CPAN::Index'           => 'cpan',
22827     'CPAN::InfoObj'         => 'cpan',
22828     'CPAN::Kwalify'         => 'cpan',
22829     'CPAN::LWP::UserAgent'  => 'cpan',
22830     'CPAN::Meta'            => 'cpan',
22831     'CPAN::Meta::Converter' => 'cpan',
22832     'CPAN::Meta::Feature'   => 'cpan',
22833     'CPAN::Meta::History'   => 'cpan',
22834     'CPAN::Meta::Merge'     => 'cpan',
22835     'CPAN::Meta::Prereqs'   => 'cpan',
22836     'CPAN::Meta::Requirements'=> 'cpan',
22837     'CPAN::Meta::Requirements::Range'=> 'cpan',
22838     'CPAN::Meta::Spec'      => 'cpan',
22839     'CPAN::Meta::Validator' => 'cpan',
22840     'CPAN::Meta::YAML'      => 'cpan',
22841     'CPAN::Mirrors'         => 'cpan',
22842     'CPAN::Module'          => 'cpan',
22843     'CPAN::Nox'             => 'cpan',
22844     'CPAN::Plugin'          => 'cpan',
22845     'CPAN::Plugin::Specfile'=> 'cpan',
22846     'CPAN::Prompt'          => 'cpan',
22847     'CPAN::Queue'           => 'cpan',
22848     'CPAN::Shell'           => 'cpan',
22849     'CPAN::Tarzip'          => 'cpan',
22850     'CPAN::URL'             => 'cpan',
22851     'CPAN::Version'         => 'cpan',
22852     'Compress::Raw::Bzip2'  => 'cpan',
22853     'Compress::Raw::Zlib'   => 'cpan',
22854     'Compress::Zlib'        => 'cpan',
22855     'Config::Perl::V'       => 'cpan',
22856     'DB_File'               => 'cpan',
22857     'Digest'                => 'cpan',
22858     'Digest::MD5'           => 'cpan',
22859     'Digest::SHA'           => 'cpan',
22860     'Digest::base'          => 'cpan',
22861     'Digest::file'          => 'cpan',
22862     'Encode'                => 'cpan',
22863     'Encode::Alias'         => 'cpan',
22864     'Encode::Byte'          => 'cpan',
22865     'Encode::CJKConstants'  => 'cpan',
22866     'Encode::CN'            => 'cpan',
22867     'Encode::CN::HZ'        => 'cpan',
22868     'Encode::Config'        => 'cpan',
22869     'Encode::EBCDIC'        => 'cpan',
22870     'Encode::Encoder'       => 'cpan',
22871     'Encode::Encoding'      => 'cpan',
22872     'Encode::GSM0338'       => 'cpan',
22873     'Encode::Guess'         => 'cpan',
22874     'Encode::JP'            => 'cpan',
22875     'Encode::JP::H2Z'       => 'cpan',
22876     'Encode::JP::JIS7'      => 'cpan',
22877     'Encode::KR'            => 'cpan',
22878     'Encode::KR::2022_KR'   => 'cpan',
22879     'Encode::MIME::Header'  => 'cpan',
22880     'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
22881     'Encode::MIME::Name'    => 'cpan',
22882     'Encode::Symbol'        => 'cpan',
22883     'Encode::TW'            => 'cpan',
22884     'Encode::Unicode'       => 'cpan',
22885     'Encode::Unicode::UTF7' => 'cpan',
22886     'ExtUtils::Command'     => 'cpan',
22887     'ExtUtils::Command::MM' => 'cpan',
22888     'ExtUtils::Constant'    => 'cpan',
22889     'ExtUtils::Constant::Base'=> 'cpan',
22890     'ExtUtils::Constant::ProxySubs'=> 'cpan',
22891     'ExtUtils::Constant::Utils'=> 'cpan',
22892     'ExtUtils::Constant::XS'=> 'cpan',
22893     'ExtUtils::Install'     => 'cpan',
22894     'ExtUtils::Installed'   => 'cpan',
22895     'ExtUtils::Liblist'     => 'cpan',
22896     'ExtUtils::Liblist::Kid'=> 'cpan',
22897     'ExtUtils::MM'          => 'cpan',
22898     'ExtUtils::MM_AIX'      => 'cpan',
22899     'ExtUtils::MM_Any'      => 'cpan',
22900     'ExtUtils::MM_BeOS'     => 'cpan',
22901     'ExtUtils::MM_Cygwin'   => 'cpan',
22902     'ExtUtils::MM_DOS'      => 'cpan',
22903     'ExtUtils::MM_Darwin'   => 'cpan',
22904     'ExtUtils::MM_MacOS'    => 'cpan',
22905     'ExtUtils::MM_NW5'      => 'cpan',
22906     'ExtUtils::MM_OS2'      => 'cpan',
22907     'ExtUtils::MM_OS390'    => 'cpan',
22908     'ExtUtils::MM_QNX'      => 'cpan',
22909     'ExtUtils::MM_UWIN'     => 'cpan',
22910     'ExtUtils::MM_Unix'     => 'cpan',
22911     'ExtUtils::MM_VMS'      => 'cpan',
22912     'ExtUtils::MM_VOS'      => 'cpan',
22913     'ExtUtils::MM_Win32'    => 'cpan',
22914     'ExtUtils::MM_Win95'    => 'cpan',
22915     'ExtUtils::MY'          => 'cpan',
22916     'ExtUtils::MakeMaker'   => 'cpan',
22917     'ExtUtils::MakeMaker::Config'=> 'cpan',
22918     'ExtUtils::MakeMaker::Locale'=> 'cpan',
22919     'ExtUtils::MakeMaker::version'=> 'cpan',
22920     'ExtUtils::MakeMaker::version::regex'=> 'cpan',
22921     'ExtUtils::Manifest'    => 'cpan',
22922     'ExtUtils::Mkbootstrap' => 'cpan',
22923     'ExtUtils::Mksymlists'  => 'cpan',
22924     'ExtUtils::PL2Bat'      => 'cpan',
22925     'ExtUtils::Packlist'    => 'cpan',
22926     'ExtUtils::testlib'     => 'cpan',
22927     'Fatal'                 => 'cpan',
22928     'File::Fetch'           => 'cpan',
22929     'File::GlobMapper'      => 'cpan',
22930     'File::Path'            => 'cpan',
22931     'File::Temp'            => 'cpan',
22932     'Filter::Util::Call'    => 'cpan',
22933     'Getopt::Long'          => 'cpan',
22934     'Getopt::Long::Parser'  => 'cpan',
22935     'HTTP::Tiny'            => 'cpan',
22936     'IO::Compress::Adapter::Bzip2'=> 'cpan',
22937     'IO::Compress::Adapter::Deflate'=> 'cpan',
22938     'IO::Compress::Adapter::Identity'=> 'cpan',
22939     'IO::Compress::Base'    => 'cpan',
22940     'IO::Compress::Base::Common'=> 'cpan',
22941     'IO::Compress::Bzip2'   => 'cpan',
22942     'IO::Compress::Deflate' => 'cpan',
22943     'IO::Compress::Gzip'    => 'cpan',
22944     'IO::Compress::Gzip::Constants'=> 'cpan',
22945     'IO::Compress::RawDeflate'=> 'cpan',
22946     'IO::Compress::Zip'     => 'cpan',
22947     'IO::Compress::Zip::Constants'=> 'cpan',
22948     'IO::Compress::Zlib::Constants'=> 'cpan',
22949     'IO::Compress::Zlib::Extra'=> 'cpan',
22950     'IO::Socket::IP'        => 'cpan',
22951     'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
22952     'IO::Uncompress::Adapter::Identity'=> 'cpan',
22953     'IO::Uncompress::Adapter::Inflate'=> 'cpan',
22954     'IO::Uncompress::AnyInflate'=> 'cpan',
22955     'IO::Uncompress::AnyUncompress'=> 'cpan',
22956     'IO::Uncompress::Base'  => 'cpan',
22957     'IO::Uncompress::Bunzip2'=> 'cpan',
22958     'IO::Uncompress::Gunzip'=> 'cpan',
22959     'IO::Uncompress::Inflate'=> 'cpan',
22960     'IO::Uncompress::RawInflate'=> 'cpan',
22961     'IO::Uncompress::Unzip' => 'cpan',
22962     'IO::Zlib'              => 'cpan',
22963     'IPC::Cmd'              => 'cpan',
22964     'IPC::Msg'              => 'cpan',
22965     'IPC::Semaphore'        => 'cpan',
22966     'IPC::SharedMem'        => 'cpan',
22967     'IPC::SysV'             => 'cpan',
22968     'JSON::PP'              => 'cpan',
22969     'JSON::PP::Boolean'     => 'cpan',
22970     'List::Util'            => 'cpan',
22971     'List::Util::XS'        => 'cpan',
22972     'Locale::Maketext::Simple'=> 'cpan',
22973     'MIME::Base64'          => 'cpan',
22974     'MIME::QuotedPrint'     => 'cpan',
22975     'Math::BigFloat'        => 'cpan',
22976     'Math::BigFloat::Trace' => 'cpan',
22977     'Math::BigInt'          => 'cpan',
22978     'Math::BigInt::Calc'    => 'cpan',
22979     'Math::BigInt::FastCalc'=> 'cpan',
22980     'Math::BigInt::Lib'     => 'cpan',
22981     'Math::BigInt::Trace'   => 'cpan',
22982     'Math::BigRat'          => 'cpan',
22983     'Math::BigRat::Trace'   => 'cpan',
22984     'Memoize'               => 'cpan',
22985     'Memoize::AnyDBM_File'  => 'cpan',
22986     'Memoize::Expire'       => 'cpan',
22987     'Memoize::NDBM_File'    => 'cpan',
22988     'Memoize::SDBM_File'    => 'cpan',
22989     'Memoize::Storable'     => 'cpan',
22990     'Module::Load'          => 'cpan',
22991     'Module::Load::Conditional'=> 'cpan',
22992     'Module::Loaded'        => 'cpan',
22993     'Module::Metadata'      => 'cpan',
22994     'NEXT'                  => 'cpan',
22995     'Net::Cmd'              => 'cpan',
22996     'Net::Config'           => 'cpan',
22997     'Net::Domain'           => 'cpan',
22998     'Net::FTP'              => 'cpan',
22999     'Net::FTP::A'           => 'cpan',
23000     'Net::FTP::E'           => 'cpan',
23001     'Net::FTP::I'           => 'cpan',
23002     'Net::FTP::L'           => 'cpan',
23003     'Net::FTP::dataconn'    => 'cpan',
23004     'Net::NNTP'             => 'cpan',
23005     'Net::Netrc'            => 'cpan',
23006     'Net::POP3'             => 'cpan',
23007     'Net::SMTP'             => 'cpan',
23008     'Net::Time'             => 'cpan',
23009     'Params::Check'         => 'cpan',
23010     'Parse::CPAN::Meta'     => 'cpan',
23011     'Perl::OSType'          => 'cpan',
23012     'PerlIO::via::QuotedPrint'=> 'cpan',
23013     'Pod::Checker'          => 'cpan',
23014     'Pod::Escapes'          => 'cpan',
23015     'Pod::Man'              => 'cpan',
23016     'Pod::ParseLink'        => 'cpan',
23017     'Pod::Perldoc'          => 'cpan',
23018     'Pod::Perldoc::BaseTo'  => 'cpan',
23019     'Pod::Perldoc::GetOptsOO'=> 'cpan',
23020     'Pod::Perldoc::ToANSI'  => 'cpan',
23021     'Pod::Perldoc::ToChecker'=> 'cpan',
23022     'Pod::Perldoc::ToMan'   => 'cpan',
23023     'Pod::Perldoc::ToNroff' => 'cpan',
23024     'Pod::Perldoc::ToPod'   => 'cpan',
23025     'Pod::Perldoc::ToRtf'   => 'cpan',
23026     'Pod::Perldoc::ToTerm'  => 'cpan',
23027     'Pod::Perldoc::ToText'  => 'cpan',
23028     'Pod::Perldoc::ToTk'    => 'cpan',
23029     'Pod::Perldoc::ToXml'   => 'cpan',
23030     'Pod::Simple'           => 'cpan',
23031     'Pod::Simple::BlackBox' => 'cpan',
23032     'Pod::Simple::Checker'  => 'cpan',
23033     'Pod::Simple::Debug'    => 'cpan',
23034     'Pod::Simple::DumpAsText'=> 'cpan',
23035     'Pod::Simple::DumpAsXML'=> 'cpan',
23036     'Pod::Simple::HTML'     => 'cpan',
23037     'Pod::Simple::HTMLBatch'=> 'cpan',
23038     'Pod::Simple::HTMLLegacy'=> 'cpan',
23039     'Pod::Simple::JustPod'  => 'cpan',
23040     'Pod::Simple::LinkSection'=> 'cpan',
23041     'Pod::Simple::Methody'  => 'cpan',
23042     'Pod::Simple::Progress' => 'cpan',
23043     'Pod::Simple::PullParser'=> 'cpan',
23044     'Pod::Simple::PullParserEndToken'=> 'cpan',
23045     'Pod::Simple::PullParserStartToken'=> 'cpan',
23046     'Pod::Simple::PullParserTextToken'=> 'cpan',
23047     'Pod::Simple::PullParserToken'=> 'cpan',
23048     'Pod::Simple::RTF'      => 'cpan',
23049     'Pod::Simple::Search'   => 'cpan',
23050     'Pod::Simple::SimpleTree'=> 'cpan',
23051     'Pod::Simple::Text'     => 'cpan',
23052     'Pod::Simple::TextContent'=> 'cpan',
23053     'Pod::Simple::TiedOutFH'=> 'cpan',
23054     'Pod::Simple::Transcode'=> 'cpan',
23055     'Pod::Simple::TranscodeDumb'=> 'cpan',
23056     'Pod::Simple::TranscodeSmart'=> 'cpan',
23057     'Pod::Simple::XHTML'    => 'cpan',
23058     'Pod::Simple::XMLOutStream'=> 'cpan',
23059     'Pod::Text'             => 'cpan',
23060     'Pod::Text::Color'      => 'cpan',
23061     'Pod::Text::Overstrike' => 'cpan',
23062     'Pod::Text::Termcap'    => 'cpan',
23063     'Pod::Usage'            => 'cpan',
23064     'Scalar::Util'          => 'cpan',
23065     'Socket'                => 'cpan',
23066     'Sub::Util'             => 'cpan',
23067     'Sys::Syslog'           => 'cpan',
23068     'Sys::Syslog::Win32'    => 'cpan',
23069     'TAP::Base'             => 'cpan',
23070     'TAP::Formatter::Base'  => 'cpan',
23071     'TAP::Formatter::Color' => 'cpan',
23072     'TAP::Formatter::Console'=> 'cpan',
23073     'TAP::Formatter::Console::ParallelSession'=> 'cpan',
23074     'TAP::Formatter::Console::Session'=> 'cpan',
23075     'TAP::Formatter::File'  => 'cpan',
23076     'TAP::Formatter::File::Session'=> 'cpan',
23077     'TAP::Formatter::Session'=> 'cpan',
23078     'TAP::Harness'          => 'cpan',
23079     'TAP::Harness::Env'     => 'cpan',
23080     'TAP::Object'           => 'cpan',
23081     'TAP::Parser'           => 'cpan',
23082     'TAP::Parser::Aggregator'=> 'cpan',
23083     'TAP::Parser::Grammar'  => 'cpan',
23084     'TAP::Parser::Iterator' => 'cpan',
23085     'TAP::Parser::Iterator::Array'=> 'cpan',
23086     'TAP::Parser::Iterator::Process'=> 'cpan',
23087     'TAP::Parser::Iterator::Stream'=> 'cpan',
23088     'TAP::Parser::IteratorFactory'=> 'cpan',
23089     'TAP::Parser::Multiplexer'=> 'cpan',
23090     'TAP::Parser::Result'   => 'cpan',
23091     'TAP::Parser::Result::Bailout'=> 'cpan',
23092     'TAP::Parser::Result::Comment'=> 'cpan',
23093     'TAP::Parser::Result::Plan'=> 'cpan',
23094     'TAP::Parser::Result::Pragma'=> 'cpan',
23095     'TAP::Parser::Result::Test'=> 'cpan',
23096     'TAP::Parser::Result::Unknown'=> 'cpan',
23097     'TAP::Parser::Result::Version'=> 'cpan',
23098     'TAP::Parser::Result::YAML'=> 'cpan',
23099     'TAP::Parser::ResultFactory'=> 'cpan',
23100     'TAP::Parser::Scheduler'=> 'cpan',
23101     'TAP::Parser::Scheduler::Job'=> 'cpan',
23102     'TAP::Parser::Scheduler::Spinner'=> 'cpan',
23103     'TAP::Parser::Source'   => 'cpan',
23104     'TAP::Parser::SourceHandler'=> 'cpan',
23105     'TAP::Parser::SourceHandler::Executable'=> 'cpan',
23106     'TAP::Parser::SourceHandler::File'=> 'cpan',
23107     'TAP::Parser::SourceHandler::Handle'=> 'cpan',
23108     'TAP::Parser::SourceHandler::Perl'=> 'cpan',
23109     'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
23110     'TAP::Parser::YAMLish::Reader'=> 'cpan',
23111     'TAP::Parser::YAMLish::Writer'=> 'cpan',
23112     'Term::ANSIColor'       => 'cpan',
23113     'Term::Cap'             => 'cpan',
23114     'Term::Table'           => 'cpan',
23115     'Term::Table::Cell'     => 'cpan',
23116     'Term::Table::CellStack'=> 'cpan',
23117     'Term::Table::HashBase' => 'cpan',
23118     'Term::Table::LineBreak'=> 'cpan',
23119     'Term::Table::Spacer'   => 'cpan',
23120     'Term::Table::Util'     => 'cpan',
23121     'Test2'                 => 'cpan',
23122     'Test2::API'            => 'cpan',
23123     'Test2::API::Breakage'  => 'cpan',
23124     'Test2::API::Context'   => 'cpan',
23125     'Test2::API::Instance'  => 'cpan',
23126     'Test2::API::InterceptResult'=> 'cpan',
23127     'Test2::API::InterceptResult::Event'=> 'cpan',
23128     'Test2::API::InterceptResult::Facet'=> 'cpan',
23129     'Test2::API::InterceptResult::Hub'=> 'cpan',
23130     'Test2::API::InterceptResult::Squasher'=> 'cpan',
23131     'Test2::API::Stack'     => 'cpan',
23132     'Test2::AsyncSubtest'   => 'cpan',
23133     'Test2::AsyncSubtest::Event::Attach'=> 'cpan',
23134     'Test2::AsyncSubtest::Event::Detach'=> 'cpan',
23135     'Test2::AsyncSubtest::Formatter'=> 'cpan',
23136     'Test2::AsyncSubtest::Hub'=> 'cpan',
23137     'Test2::Bundle'         => 'cpan',
23138     'Test2::Bundle::Extended'=> 'cpan',
23139     'Test2::Bundle::More'   => 'cpan',
23140     'Test2::Bundle::Simple' => 'cpan',
23141     'Test2::Compare'        => 'cpan',
23142     'Test2::Compare::Array' => 'cpan',
23143     'Test2::Compare::Bag'   => 'cpan',
23144     'Test2::Compare::Base'  => 'cpan',
23145     'Test2::Compare::Bool'  => 'cpan',
23146     'Test2::Compare::Custom'=> 'cpan',
23147     'Test2::Compare::DeepRef'=> 'cpan',
23148     'Test2::Compare::Delta' => 'cpan',
23149     'Test2::Compare::Event' => 'cpan',
23150     'Test2::Compare::EventMeta'=> 'cpan',
23151     'Test2::Compare::Float' => 'cpan',
23152     'Test2::Compare::Hash'  => 'cpan',
23153     'Test2::Compare::Isa'   => 'cpan',
23154     'Test2::Compare::Meta'  => 'cpan',
23155     'Test2::Compare::Negatable'=> 'cpan',
23156     'Test2::Compare::Number'=> 'cpan',
23157     'Test2::Compare::Object'=> 'cpan',
23158     'Test2::Compare::OrderedSubset'=> 'cpan',
23159     'Test2::Compare::Pattern'=> 'cpan',
23160     'Test2::Compare::Ref'   => 'cpan',
23161     'Test2::Compare::Regex' => 'cpan',
23162     'Test2::Compare::Scalar'=> 'cpan',
23163     'Test2::Compare::Set'   => 'cpan',
23164     'Test2::Compare::String'=> 'cpan',
23165     'Test2::Compare::Undef' => 'cpan',
23166     'Test2::Compare::Wildcard'=> 'cpan',
23167     'Test2::Event'          => 'cpan',
23168     'Test2::Event::Bail'    => 'cpan',
23169     'Test2::Event::Diag'    => 'cpan',
23170     'Test2::Event::Encoding'=> 'cpan',
23171     'Test2::Event::Exception'=> 'cpan',
23172     'Test2::Event::Fail'    => 'cpan',
23173     'Test2::Event::Generic' => 'cpan',
23174     'Test2::Event::Note'    => 'cpan',
23175     'Test2::Event::Ok'      => 'cpan',
23176     'Test2::Event::Pass'    => 'cpan',
23177     'Test2::Event::Plan'    => 'cpan',
23178     'Test2::Event::Skip'    => 'cpan',
23179     'Test2::Event::Subtest' => 'cpan',
23180     'Test2::Event::TAP::Version'=> 'cpan',
23181     'Test2::Event::V2'      => 'cpan',
23182     'Test2::Event::Waiting' => 'cpan',
23183     'Test2::EventFacet'     => 'cpan',
23184     'Test2::EventFacet::About'=> 'cpan',
23185     'Test2::EventFacet::Amnesty'=> 'cpan',
23186     'Test2::EventFacet::Assert'=> 'cpan',
23187     'Test2::EventFacet::Control'=> 'cpan',
23188     'Test2::EventFacet::Error'=> 'cpan',
23189     'Test2::EventFacet::Hub'=> 'cpan',
23190     'Test2::EventFacet::Info'=> 'cpan',
23191     'Test2::EventFacet::Info::Table'=> 'cpan',
23192     'Test2::EventFacet::Meta'=> 'cpan',
23193     'Test2::EventFacet::Parent'=> 'cpan',
23194     'Test2::EventFacet::Plan'=> 'cpan',
23195     'Test2::EventFacet::Render'=> 'cpan',
23196     'Test2::EventFacet::Trace'=> 'cpan',
23197     'Test2::Formatter'      => 'cpan',
23198     'Test2::Formatter::TAP' => 'cpan',
23199     'Test2::Hub'            => 'cpan',
23200     'Test2::Hub::Interceptor'=> 'cpan',
23201     'Test2::Hub::Interceptor::Terminator'=> 'cpan',
23202     'Test2::Hub::Subtest'   => 'cpan',
23203     'Test2::IPC'            => 'cpan',
23204     'Test2::IPC::Driver'    => 'cpan',
23205     'Test2::IPC::Driver::Files'=> 'cpan',
23206     'Test2::Manual'         => 'cpan',
23207     'Test2::Manual::Anatomy'=> 'cpan',
23208     'Test2::Manual::Anatomy::API'=> 'cpan',
23209     'Test2::Manual::Anatomy::Context'=> 'cpan',
23210     'Test2::Manual::Anatomy::EndToEnd'=> 'cpan',
23211     'Test2::Manual::Anatomy::Event'=> 'cpan',
23212     'Test2::Manual::Anatomy::Hubs'=> 'cpan',
23213     'Test2::Manual::Anatomy::IPC'=> 'cpan',
23214     'Test2::Manual::Anatomy::Utilities'=> 'cpan',
23215     'Test2::Manual::Concurrency'=> 'cpan',
23216     'Test2::Manual::Contributing'=> 'cpan',
23217     'Test2::Manual::Testing'=> 'cpan',
23218     'Test2::Manual::Testing::Introduction'=> 'cpan',
23219     'Test2::Manual::Testing::Migrating'=> 'cpan',
23220     'Test2::Manual::Testing::Planning'=> 'cpan',
23221     'Test2::Manual::Testing::Todo'=> 'cpan',
23222     'Test2::Manual::Tooling'=> 'cpan',
23223     'Test2::Manual::Tooling::FirstTool'=> 'cpan',
23224     'Test2::Manual::Tooling::Formatter'=> 'cpan',
23225     'Test2::Manual::Tooling::Nesting'=> 'cpan',
23226     'Test2::Manual::Tooling::Plugin::TestExit'=> 'cpan',
23227     'Test2::Manual::Tooling::Plugin::TestingDone'=> 'cpan',
23228     'Test2::Manual::Tooling::Plugin::ToolCompletes'=> 'cpan',
23229     'Test2::Manual::Tooling::Plugin::ToolStarts'=> 'cpan',
23230     'Test2::Manual::Tooling::Subtest'=> 'cpan',
23231     'Test2::Manual::Tooling::TestBuilder'=> 'cpan',
23232     'Test2::Manual::Tooling::Testing'=> 'cpan',
23233     'Test2::Mock'           => 'cpan',
23234     'Test2::Plugin'         => 'cpan',
23235     'Test2::Plugin::BailOnFail'=> 'cpan',
23236     'Test2::Plugin::DieOnFail'=> 'cpan',
23237     'Test2::Plugin::ExitSummary'=> 'cpan',
23238     'Test2::Plugin::SRand'  => 'cpan',
23239     'Test2::Plugin::Times'  => 'cpan',
23240     'Test2::Plugin::UTF8'   => 'cpan',
23241     'Test2::Require'        => 'cpan',
23242     'Test2::Require::AuthorTesting'=> 'cpan',
23243     'Test2::Require::EnvVar'=> 'cpan',
23244     'Test2::Require::Fork'  => 'cpan',
23245     'Test2::Require::Module'=> 'cpan',
23246     'Test2::Require::Perl'  => 'cpan',
23247     'Test2::Require::RealFork'=> 'cpan',
23248     'Test2::Require::Threads'=> 'cpan',
23249     'Test2::Suite'          => 'cpan',
23250     'Test2::Todo'           => 'cpan',
23251     'Test2::Tools'          => 'cpan',
23252     'Test2::Tools::AsyncSubtest'=> 'cpan',
23253     'Test2::Tools::Basic'   => 'cpan',
23254     'Test2::Tools::Class'   => 'cpan',
23255     'Test2::Tools::ClassicCompare'=> 'cpan',
23256     'Test2::Tools::Compare' => 'cpan',
23257     'Test2::Tools::Defer'   => 'cpan',
23258     'Test2::Tools::Encoding'=> 'cpan',
23259     'Test2::Tools::Event'   => 'cpan',
23260     'Test2::Tools::Exception'=> 'cpan',
23261     'Test2::Tools::Exports' => 'cpan',
23262     'Test2::Tools::GenTemp' => 'cpan',
23263     'Test2::Tools::Grab'    => 'cpan',
23264     'Test2::Tools::Mock'    => 'cpan',
23265     'Test2::Tools::Ref'     => 'cpan',
23266     'Test2::Tools::Refcount'=> 'cpan',
23267     'Test2::Tools::Spec'    => 'cpan',
23268     'Test2::Tools::Subtest' => 'cpan',
23269     'Test2::Tools::Target'  => 'cpan',
23270     'Test2::Tools::Tester'  => 'cpan',
23271     'Test2::Tools::Tiny'    => 'cpan',
23272     'Test2::Tools::Warnings'=> 'cpan',
23273     'Test2::Util'           => 'cpan',
23274     'Test2::Util::ExternalMeta'=> 'cpan',
23275     'Test2::Util::Facets2Legacy'=> 'cpan',
23276     'Test2::Util::Grabber'  => 'cpan',
23277     'Test2::Util::Guard'    => 'cpan',
23278     'Test2::Util::HashBase' => 'cpan',
23279     'Test2::Util::Importer' => 'cpan',
23280     'Test2::Util::Ref'      => 'cpan',
23281     'Test2::Util::Stash'    => 'cpan',
23282     'Test2::Util::Sub'      => 'cpan',
23283     'Test2::Util::Table'    => 'cpan',
23284     'Test2::Util::Table::Cell'=> 'cpan',
23285     'Test2::Util::Table::LineBreak'=> 'cpan',
23286     'Test2::Util::Term'     => 'cpan',
23287     'Test2::Util::Times'    => 'cpan',
23288     'Test2::Util::Trace'    => 'cpan',
23289     'Test2::V0'             => 'cpan',
23290     'Test2::Workflow'       => 'cpan',
23291     'Test2::Workflow::BlockBase'=> 'cpan',
23292     'Test2::Workflow::Build'=> 'cpan',
23293     'Test2::Workflow::Runner'=> 'cpan',
23294     'Test2::Workflow::Task' => 'cpan',
23295     'Test2::Workflow::Task::Action'=> 'cpan',
23296     'Test2::Workflow::Task::Group'=> 'cpan',
23297     'Test::Builder'         => 'cpan',
23298     'Test::Builder::Formatter'=> 'cpan',
23299     'Test::Builder::IO::Scalar'=> 'cpan',
23300     'Test::Builder::Module' => 'cpan',
23301     'Test::Builder::Tester' => 'cpan',
23302     'Test::Builder::Tester::Color'=> 'cpan',
23303     'Test::Builder::TodoDiag'=> 'cpan',
23304     'Test::Harness'         => 'cpan',
23305     'Test::More'            => 'cpan',
23306     'Test::Simple'          => 'cpan',
23307     'Test::Tester'          => 'cpan',
23308     'Test::Tester::Capture' => 'cpan',
23309     'Test::Tester::CaptureRunner'=> 'cpan',
23310     'Test::Tester::Delegate'=> 'cpan',
23311     'Test::use::ok'         => 'cpan',
23312     'Text::Balanced'        => 'cpan',
23313     'Text::ParseWords'      => 'cpan',
23314     'Text::Tabs'            => 'cpan',
23315     'Text::Wrap'            => 'cpan',
23316     'Tie::RefHash'          => 'cpan',
23317     'Time::Local'           => 'cpan',
23318     'Time::Piece'           => 'cpan',
23319     'Time::Seconds'         => 'cpan',
23320     'Unicode::Collate'      => 'cpan',
23321     'Unicode::Collate::CJK::Big5'=> 'cpan',
23322     'Unicode::Collate::CJK::GB2312'=> 'cpan',
23323     'Unicode::Collate::CJK::JISX0208'=> 'cpan',
23324     'Unicode::Collate::CJK::Korean'=> 'cpan',
23325     'Unicode::Collate::CJK::Pinyin'=> 'cpan',
23326     'Unicode::Collate::CJK::Stroke'=> 'cpan',
23327     'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
23328     'Unicode::Collate::Locale'=> 'cpan',
23329     'Win32'                 => 'cpan',
23330     'Win32API::File'        => 'cpan',
23331     'autodie'               => 'cpan',
23332     'autodie::Scope::Guard' => 'cpan',
23333     'autodie::Scope::GuardStack'=> 'cpan',
23334     'autodie::Util'         => 'cpan',
23335     'autodie::exception'    => 'cpan',
23336     'autodie::exception::system'=> 'cpan',
23337     'autodie::hints'        => 'cpan',
23338     'autodie::skip'         => 'cpan',
23339     'bigfloat'              => 'cpan',
23340     'bigint'                => 'cpan',
23341     'bignum'                => 'cpan',
23342     'bigrat'                => 'cpan',
23343     'encoding'              => 'cpan',
23344     'experimental'          => 'cpan',
23345     'ok'                    => 'cpan',
23346     'parent'                => 'cpan',
23347     'perlfaq'               => 'cpan',
23348     'stable'                => 'cpan',
23349     'version'               => 'cpan',
23350     'version::regex'        => 'cpan',
23351 );
23352
23353 %bug_tracker = (
23354     'App::Cpan'             => undef,
23355     'App::Prove'            => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23356     'App::Prove::State'     => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23357     'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23358     'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23359     'Archive::Tar'          => undef,
23360     'Archive::Tar::Constant'=> undef,
23361     'Archive::Tar::File'    => undef,
23362     'CPAN'                  => undef,
23363     'CPAN::Author'          => undef,
23364     'CPAN::Bundle'          => undef,
23365     'CPAN::CacheMgr'        => undef,
23366     'CPAN::Complete'        => undef,
23367     'CPAN::Debug'           => undef,
23368     'CPAN::DeferredCode'    => undef,
23369     'CPAN::Distribution'    => undef,
23370     'CPAN::Distroprefs'     => undef,
23371     'CPAN::Distrostatus'    => undef,
23372     'CPAN::Exception::RecursiveDependency'=> undef,
23373     'CPAN::Exception::blocked_urllist'=> undef,
23374     'CPAN::Exception::yaml_not_installed'=> undef,
23375     'CPAN::Exception::yaml_process_error'=> undef,
23376     'CPAN::FTP'             => undef,
23377     'CPAN::FTP::netrc'      => undef,
23378     'CPAN::FirstTime'       => undef,
23379     'CPAN::HTTP::Client'    => undef,
23380     'CPAN::HTTP::Credentials'=> undef,
23381     'CPAN::HandleConfig'    => undef,
23382     'CPAN::Index'           => undef,
23383     'CPAN::InfoObj'         => undef,
23384     'CPAN::Kwalify'         => undef,
23385     'CPAN::LWP::UserAgent'  => undef,
23386     'CPAN::Meta'            => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
23387     'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
23388     'CPAN::Meta::Feature'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
23389     'CPAN::Meta::History'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
23390     'CPAN::Meta::Merge'     => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
23391     'CPAN::Meta::Prereqs'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
23392     'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
23393     'CPAN::Meta::Requirements::Range'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
23394     'CPAN::Meta::Spec'      => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
23395     'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
23396     'CPAN::Meta::YAML'      => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
23397     'CPAN::Mirrors'         => undef,
23398     'CPAN::Module'          => undef,
23399     'CPAN::Nox'             => undef,
23400     'CPAN::Plugin'          => undef,
23401     'CPAN::Plugin::Specfile'=> undef,
23402     'CPAN::Prompt'          => undef,
23403     'CPAN::Queue'           => undef,
23404     'CPAN::Shell'           => undef,
23405     'CPAN::Tarzip'          => undef,
23406     'CPAN::URL'             => undef,
23407     'CPAN::Version'         => undef,
23408     'Compress::Raw::Bzip2'  => 'https://github.com/pmqs/Compress-Raw-Bzip2/issues',
23409     'Compress::Raw::Zlib'   => 'https://github.com/pmqs/Compress-Raw-Zlib/issues',
23410     'Compress::Zlib'        => 'https://github.com/pmqs/IO-Compress/issues',
23411     'Config::Perl::V'       => 'https://github.com/Tux/Config-Perl-V/issues',
23412     'DB_File'               => 'https://github.com/pmqs/DB_File/issues',
23413     'Digest'                => 'https://github.com/Dual-Life/digest/issues',
23414     'Digest::MD5'           => 'https://github.com/Dual-Life/digest-md5/issues',
23415     'Digest::SHA'           => undef,
23416     'Digest::base'          => 'https://github.com/Dual-Life/digest/issues',
23417     'Digest::file'          => 'https://github.com/Dual-Life/digest/issues',
23418     'Encode'                => undef,
23419     'Encode::Alias'         => undef,
23420     'Encode::Byte'          => undef,
23421     'Encode::CJKConstants'  => undef,
23422     'Encode::CN'            => undef,
23423     'Encode::CN::HZ'        => undef,
23424     'Encode::Config'        => undef,
23425     'Encode::EBCDIC'        => undef,
23426     'Encode::Encoder'       => undef,
23427     'Encode::Encoding'      => undef,
23428     'Encode::GSM0338'       => undef,
23429     'Encode::Guess'         => undef,
23430     'Encode::JP'            => undef,
23431     'Encode::JP::H2Z'       => undef,
23432     'Encode::JP::JIS7'      => undef,
23433     'Encode::KR'            => undef,
23434     'Encode::KR::2022_KR'   => undef,
23435     'Encode::MIME::Header'  => undef,
23436     'Encode::MIME::Header::ISO_2022_JP'=> undef,
23437     'Encode::MIME::Name'    => undef,
23438     'Encode::Symbol'        => undef,
23439     'Encode::TW'            => undef,
23440     'Encode::Unicode'       => undef,
23441     'Encode::Unicode::UTF7' => undef,
23442     'ExtUtils::Command'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23443     'ExtUtils::Command::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23444     'ExtUtils::Constant'    => undef,
23445     'ExtUtils::Constant::Base'=> undef,
23446     'ExtUtils::Constant::ProxySubs'=> undef,
23447     'ExtUtils::Constant::Utils'=> undef,
23448     'ExtUtils::Constant::XS'=> undef,
23449     'ExtUtils::Install'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
23450     'ExtUtils::Installed'   => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
23451     'ExtUtils::Liblist'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23452     'ExtUtils::Liblist::Kid'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23453     'ExtUtils::MM'          => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23454     'ExtUtils::MM_AIX'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23455     'ExtUtils::MM_Any'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23456     'ExtUtils::MM_BeOS'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23457     'ExtUtils::MM_Cygwin'   => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23458     'ExtUtils::MM_DOS'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23459     'ExtUtils::MM_Darwin'   => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23460     'ExtUtils::MM_MacOS'    => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23461     'ExtUtils::MM_NW5'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23462     'ExtUtils::MM_OS2'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23463     'ExtUtils::MM_OS390'    => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23464     'ExtUtils::MM_QNX'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23465     'ExtUtils::MM_UWIN'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23466     'ExtUtils::MM_Unix'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23467     'ExtUtils::MM_VMS'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23468     'ExtUtils::MM_VOS'      => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23469     'ExtUtils::MM_Win32'    => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23470     'ExtUtils::MM_Win95'    => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23471     'ExtUtils::MY'          => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23472     'ExtUtils::MakeMaker'   => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23473     'ExtUtils::MakeMaker::Config'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23474     'ExtUtils::MakeMaker::Locale'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23475     'ExtUtils::MakeMaker::version'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23476     'ExtUtils::MakeMaker::version::regex'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23477     'ExtUtils::Manifest'    => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
23478     'ExtUtils::Mkbootstrap' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23479     'ExtUtils::Mksymlists'  => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23480     'ExtUtils::PL2Bat'      => 'https://github.com/Perl-Toolchain-Gang/extutils-pl2bat/issues',
23481     'ExtUtils::Packlist'    => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
23482     'ExtUtils::testlib'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
23483     'Fatal'                 => 'https://github.com/pjf/autodie/issues',
23484     'File::Fetch'           => undef,
23485     'File::GlobMapper'      => 'https://github.com/pmqs/IO-Compress/issues',
23486     'File::Path'            => undef,
23487     'File::Temp'            => 'https://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
23488     'Filter::Util::Call'    => undef,
23489     'Getopt::Long'          => 'https://github.com/sciurius/perl-Getopt-Long/issues',
23490     'Getopt::Long::Parser'  => 'https://github.com/sciurius/perl-Getopt-Long/issues',
23491     'HTTP::Tiny'            => 'https://github.com/Perl-Toolchain-Gang/HTTP-Tiny/issues',
23492     'IO::Compress::Adapter::Bzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
23493     'IO::Compress::Adapter::Deflate'=> 'https://github.com/pmqs/IO-Compress/issues',
23494     'IO::Compress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
23495     'IO::Compress::Base'    => 'https://github.com/pmqs/IO-Compress/issues',
23496     'IO::Compress::Base::Common'=> 'https://github.com/pmqs/IO-Compress/issues',
23497     'IO::Compress::Bzip2'   => 'https://github.com/pmqs/IO-Compress/issues',
23498     'IO::Compress::Deflate' => 'https://github.com/pmqs/IO-Compress/issues',
23499     'IO::Compress::Gzip'    => 'https://github.com/pmqs/IO-Compress/issues',
23500     'IO::Compress::Gzip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
23501     'IO::Compress::RawDeflate'=> 'https://github.com/pmqs/IO-Compress/issues',
23502     'IO::Compress::Zip'     => 'https://github.com/pmqs/IO-Compress/issues',
23503     'IO::Compress::Zip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
23504     'IO::Compress::Zlib::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
23505     'IO::Compress::Zlib::Extra'=> 'https://github.com/pmqs/IO-Compress/issues',
23506     'IO::Socket::IP'        => undef,
23507     'IO::Uncompress::Adapter::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
23508     'IO::Uncompress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
23509     'IO::Uncompress::Adapter::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
23510     'IO::Uncompress::AnyInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
23511     'IO::Uncompress::AnyUncompress'=> 'https://github.com/pmqs/IO-Compress/issues',
23512     'IO::Uncompress::Base'  => 'https://github.com/pmqs/IO-Compress/issues',
23513     'IO::Uncompress::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
23514     'IO::Uncompress::Gunzip'=> 'https://github.com/pmqs/IO-Compress/issues',
23515     'IO::Uncompress::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
23516     'IO::Uncompress::RawInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
23517     'IO::Uncompress::Unzip' => 'https://github.com/pmqs/IO-Compress/issues',
23518     'IO::Zlib'              => 'https://github.com/tomhughes/IO-Zlib/issues',
23519     'IPC::Cmd'              => undef,
23520     'IPC::Msg'              => undef,
23521     'IPC::Semaphore'        => undef,
23522     'IPC::SharedMem'        => undef,
23523     'IPC::SysV'             => undef,
23524     'JSON::PP'              => 'https://github.com/makamaka/JSON-PP/issues',
23525     'JSON::PP::Boolean'     => 'https://github.com/makamaka/JSON-PP/issues',
23526     'List::Util'            => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
23527     'List::Util::XS'        => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
23528     'Locale::Maketext::Simple'=> undef,
23529     'MIME::Base64'          => 'https://github.com/Dual-Life/mime-base64/issues',
23530     'MIME::QuotedPrint'     => 'https://github.com/Dual-Life/mime-base64/issues',
23531     'Math::BigFloat'        => undef,
23532     'Math::BigFloat::Trace' => undef,
23533     'Math::BigInt'          => undef,
23534     'Math::BigInt::Calc'    => undef,
23535     'Math::BigInt::FastCalc'=> undef,
23536     'Math::BigInt::Lib'     => undef,
23537     'Math::BigInt::Trace'   => undef,
23538     'Math::BigRat'          => undef,
23539     'Math::BigRat::Trace'   => undef,
23540     'Memoize'               => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
23541     'Memoize::AnyDBM_File'  => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
23542     'Memoize::Expire'       => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
23543     'Memoize::NDBM_File'    => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
23544     'Memoize::SDBM_File'    => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
23545     'Memoize::Storable'     => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
23546     'Module::Load'          => undef,
23547     'Module::Load::Conditional'=> undef,
23548     'Module::Loaded'        => undef,
23549     'Module::Metadata'      => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
23550     'NEXT'                  => undef,
23551     'Net::Cmd'              => undef,
23552     'Net::Config'           => undef,
23553     'Net::Domain'           => undef,
23554     'Net::FTP'              => undef,
23555     'Net::FTP::A'           => undef,
23556     'Net::FTP::E'           => undef,
23557     'Net::FTP::I'           => undef,
23558     'Net::FTP::L'           => undef,
23559     'Net::FTP::dataconn'    => undef,
23560     'Net::NNTP'             => undef,
23561     'Net::Netrc'            => undef,
23562     'Net::POP3'             => undef,
23563     'Net::SMTP'             => undef,
23564     'Net::Time'             => undef,
23565     'Params::Check'         => undef,
23566     'Parse::CPAN::Meta'     => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
23567     'Perl::OSType'          => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
23568     'PerlIO::via::QuotedPrint'=> undef,
23569     'Pod::Checker'          => undef,
23570     'Pod::Escapes'          => undef,
23571     'Pod::Man'              => 'https://github.com/rra/podlators/issues',
23572     'Pod::ParseLink'        => 'https://github.com/rra/podlators/issues',
23573     'Pod::Perldoc'          => undef,
23574     'Pod::Perldoc::BaseTo'  => undef,
23575     'Pod::Perldoc::GetOptsOO'=> undef,
23576     'Pod::Perldoc::ToANSI'  => undef,
23577     'Pod::Perldoc::ToChecker'=> undef,
23578     'Pod::Perldoc::ToMan'   => undef,
23579     'Pod::Perldoc::ToNroff' => undef,
23580     'Pod::Perldoc::ToPod'   => undef,
23581     'Pod::Perldoc::ToRtf'   => undef,
23582     'Pod::Perldoc::ToTerm'  => undef,
23583     'Pod::Perldoc::ToText'  => undef,
23584     'Pod::Perldoc::ToTk'    => undef,
23585     'Pod::Perldoc::ToXml'   => undef,
23586     'Pod::Simple'           => 'https://github.com/perl-pod/pod-simple/issues',
23587     'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
23588     'Pod::Simple::Checker'  => 'https://github.com/perl-pod/pod-simple/issues',
23589     'Pod::Simple::Debug'    => 'https://github.com/perl-pod/pod-simple/issues',
23590     'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
23591     'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
23592     'Pod::Simple::HTML'     => 'https://github.com/perl-pod/pod-simple/issues',
23593     'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
23594     'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
23595     'Pod::Simple::JustPod'  => 'https://github.com/perl-pod/pod-simple/issues',
23596     'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
23597     'Pod::Simple::Methody'  => 'https://github.com/perl-pod/pod-simple/issues',
23598     'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
23599     'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
23600     'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
23601     'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
23602     'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
23603     'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
23604     'Pod::Simple::RTF'      => 'https://github.com/perl-pod/pod-simple/issues',
23605     'Pod::Simple::Search'   => 'https://github.com/perl-pod/pod-simple/issues',
23606     'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
23607     'Pod::Simple::Text'     => 'https://github.com/perl-pod/pod-simple/issues',
23608     'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
23609     'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
23610     'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
23611     'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
23612     'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
23613     'Pod::Simple::XHTML'    => 'https://github.com/perl-pod/pod-simple/issues',
23614     'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
23615     'Pod::Text'             => 'https://github.com/rra/podlators/issues',
23616     'Pod::Text::Color'      => 'https://github.com/rra/podlators/issues',
23617     'Pod::Text::Overstrike' => 'https://github.com/rra/podlators/issues',
23618     'Pod::Text::Termcap'    => 'https://github.com/rra/podlators/issues',
23619     'Pod::Usage'            => 'https://github.com/Dual-Life/Pod-Usage/issues',
23620     'Scalar::Util'          => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
23621     'Socket'                => undef,
23622     'Sub::Util'             => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
23623     'Sys::Syslog'           => undef,
23624     'Sys::Syslog::Win32'    => undef,
23625     'TAP::Base'             => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23626     'TAP::Formatter::Base'  => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23627     'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23628     'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23629     'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23630     'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23631     'TAP::Formatter::File'  => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23632     'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23633     'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23634     'TAP::Harness'          => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23635     'TAP::Harness::Env'     => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23636     'TAP::Object'           => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23637     'TAP::Parser'           => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23638     'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23639     'TAP::Parser::Grammar'  => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23640     'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23641     'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23642     'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23643     'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23644     'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23645     'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23646     'TAP::Parser::Result'   => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23647     'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23648     'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23649     'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23650     'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23651     'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23652     'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23653     'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23654     'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23655     'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23656     'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23657     'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23658     'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23659     'TAP::Parser::Source'   => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23660     'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23661     'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23662     'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23663     'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23664     'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23665     'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23666     'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23667     'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23668     'Term::ANSIColor'       => 'https://rt.cpan.org/Dist/Display.html?Name=Term-ANSIColor',
23669     'Term::Cap'             => undef,
23670     'Term::Table'           => 'http://github.com/exodist/Term-Table/issues',
23671     'Term::Table::Cell'     => 'http://github.com/exodist/Term-Table/issues',
23672     'Term::Table::CellStack'=> 'http://github.com/exodist/Term-Table/issues',
23673     'Term::Table::HashBase' => 'http://github.com/exodist/Term-Table/issues',
23674     'Term::Table::LineBreak'=> 'http://github.com/exodist/Term-Table/issues',
23675     'Term::Table::Spacer'   => 'http://github.com/exodist/Term-Table/issues',
23676     'Term::Table::Util'     => 'http://github.com/exodist/Term-Table/issues',
23677     'Test2'                 => 'http://github.com/Test-More/test-more/issues',
23678     'Test2::API'            => 'http://github.com/Test-More/test-more/issues',
23679     'Test2::API::Breakage'  => 'http://github.com/Test-More/test-more/issues',
23680     'Test2::API::Context'   => 'http://github.com/Test-More/test-more/issues',
23681     'Test2::API::Instance'  => 'http://github.com/Test-More/test-more/issues',
23682     'Test2::API::InterceptResult'=> 'http://github.com/Test-More/test-more/issues',
23683     'Test2::API::InterceptResult::Event'=> 'http://github.com/Test-More/test-more/issues',
23684     'Test2::API::InterceptResult::Facet'=> 'http://github.com/Test-More/test-more/issues',
23685     'Test2::API::InterceptResult::Hub'=> 'http://github.com/Test-More/test-more/issues',
23686     'Test2::API::InterceptResult::Squasher'=> 'http://github.com/Test-More/test-more/issues',
23687     'Test2::API::Stack'     => 'http://github.com/Test-More/test-more/issues',
23688     'Test2::AsyncSubtest'   => 'http://github.com/Test-More/Test2-Suite/issues',
23689     'Test2::AsyncSubtest::Event::Attach'=> 'http://github.com/Test-More/Test2-Suite/issues',
23690     'Test2::AsyncSubtest::Event::Detach'=> 'http://github.com/Test-More/Test2-Suite/issues',
23691     'Test2::AsyncSubtest::Formatter'=> 'http://github.com/Test-More/Test2-Suite/issues',
23692     'Test2::AsyncSubtest::Hub'=> 'http://github.com/Test-More/Test2-Suite/issues',
23693     'Test2::Bundle'         => 'http://github.com/Test-More/Test2-Suite/issues',
23694     'Test2::Bundle::Extended'=> 'http://github.com/Test-More/Test2-Suite/issues',
23695     'Test2::Bundle::More'   => 'http://github.com/Test-More/Test2-Suite/issues',
23696     'Test2::Bundle::Simple' => 'http://github.com/Test-More/Test2-Suite/issues',
23697     'Test2::Compare'        => 'http://github.com/Test-More/Test2-Suite/issues',
23698     'Test2::Compare::Array' => 'http://github.com/Test-More/Test2-Suite/issues',
23699     'Test2::Compare::Bag'   => 'http://github.com/Test-More/Test2-Suite/issues',
23700     'Test2::Compare::Base'  => 'http://github.com/Test-More/Test2-Suite/issues',
23701     'Test2::Compare::Bool'  => 'http://github.com/Test-More/Test2-Suite/issues',
23702     'Test2::Compare::Custom'=> 'http://github.com/Test-More/Test2-Suite/issues',
23703     'Test2::Compare::DeepRef'=> 'http://github.com/Test-More/Test2-Suite/issues',
23704     'Test2::Compare::Delta' => 'http://github.com/Test-More/Test2-Suite/issues',
23705     'Test2::Compare::Event' => 'http://github.com/Test-More/Test2-Suite/issues',
23706     'Test2::Compare::EventMeta'=> 'http://github.com/Test-More/Test2-Suite/issues',
23707     'Test2::Compare::Float' => 'http://github.com/Test-More/Test2-Suite/issues',
23708     'Test2::Compare::Hash'  => 'http://github.com/Test-More/Test2-Suite/issues',
23709     'Test2::Compare::Isa'   => 'http://github.com/Test-More/Test2-Suite/issues',
23710     'Test2::Compare::Meta'  => 'http://github.com/Test-More/Test2-Suite/issues',
23711     'Test2::Compare::Negatable'=> 'http://github.com/Test-More/Test2-Suite/issues',
23712     'Test2::Compare::Number'=> 'http://github.com/Test-More/Test2-Suite/issues',
23713     'Test2::Compare::Object'=> 'http://github.com/Test-More/Test2-Suite/issues',
23714     'Test2::Compare::OrderedSubset'=> 'http://github.com/Test-More/Test2-Suite/issues',
23715     'Test2::Compare::Pattern'=> 'http://github.com/Test-More/Test2-Suite/issues',
23716     'Test2::Compare::Ref'   => 'http://github.com/Test-More/Test2-Suite/issues',
23717     'Test2::Compare::Regex' => 'http://github.com/Test-More/Test2-Suite/issues',
23718     'Test2::Compare::Scalar'=> 'http://github.com/Test-More/Test2-Suite/issues',
23719     'Test2::Compare::Set'   => 'http://github.com/Test-More/Test2-Suite/issues',
23720     'Test2::Compare::String'=> 'http://github.com/Test-More/Test2-Suite/issues',
23721     'Test2::Compare::Undef' => 'http://github.com/Test-More/Test2-Suite/issues',
23722     'Test2::Compare::Wildcard'=> 'http://github.com/Test-More/Test2-Suite/issues',
23723     'Test2::Event'          => 'http://github.com/Test-More/test-more/issues',
23724     'Test2::Event::Bail'    => 'http://github.com/Test-More/test-more/issues',
23725     'Test2::Event::Diag'    => 'http://github.com/Test-More/test-more/issues',
23726     'Test2::Event::Encoding'=> 'http://github.com/Test-More/test-more/issues',
23727     'Test2::Event::Exception'=> 'http://github.com/Test-More/test-more/issues',
23728     'Test2::Event::Fail'    => 'http://github.com/Test-More/test-more/issues',
23729     'Test2::Event::Generic' => 'http://github.com/Test-More/test-more/issues',
23730     'Test2::Event::Note'    => 'http://github.com/Test-More/test-more/issues',
23731     'Test2::Event::Ok'      => 'http://github.com/Test-More/test-more/issues',
23732     'Test2::Event::Pass'    => 'http://github.com/Test-More/test-more/issues',
23733     'Test2::Event::Plan'    => 'http://github.com/Test-More/test-more/issues',
23734     'Test2::Event::Skip'    => 'http://github.com/Test-More/test-more/issues',
23735     'Test2::Event::Subtest' => 'http://github.com/Test-More/test-more/issues',
23736     'Test2::Event::TAP::Version'=> 'http://github.com/Test-More/test-more/issues',
23737     'Test2::Event::V2'      => 'http://github.com/Test-More/test-more/issues',
23738     'Test2::Event::Waiting' => 'http://github.com/Test-More/test-more/issues',
23739     'Test2::EventFacet'     => 'http://github.com/Test-More/test-more/issues',
23740     'Test2::EventFacet::About'=> 'http://github.com/Test-More/test-more/issues',
23741     'Test2::EventFacet::Amnesty'=> 'http://github.com/Test-More/test-more/issues',
23742     'Test2::EventFacet::Assert'=> 'http://github.com/Test-More/test-more/issues',
23743     'Test2::EventFacet::Control'=> 'http://github.com/Test-More/test-more/issues',
23744     'Test2::EventFacet::Error'=> 'http://github.com/Test-More/test-more/issues',
23745     'Test2::EventFacet::Hub'=> 'http://github.com/Test-More/test-more/issues',
23746     'Test2::EventFacet::Info'=> 'http://github.com/Test-More/test-more/issues',
23747     'Test2::EventFacet::Info::Table'=> 'http://github.com/Test-More/test-more/issues',
23748     'Test2::EventFacet::Meta'=> 'http://github.com/Test-More/test-more/issues',
23749     'Test2::EventFacet::Parent'=> 'http://github.com/Test-More/test-more/issues',
23750     'Test2::EventFacet::Plan'=> 'http://github.com/Test-More/test-more/issues',
23751     'Test2::EventFacet::Render'=> 'http://github.com/Test-More/test-more/issues',
23752     'Test2::EventFacet::Trace'=> 'http://github.com/Test-More/test-more/issues',
23753     'Test2::Formatter'      => 'http://github.com/Test-More/test-more/issues',
23754     'Test2::Formatter::TAP' => 'http://github.com/Test-More/test-more/issues',
23755     'Test2::Hub'            => 'http://github.com/Test-More/test-more/issues',
23756     'Test2::Hub::Interceptor'=> 'http://github.com/Test-More/test-more/issues',
23757     'Test2::Hub::Interceptor::Terminator'=> 'http://github.com/Test-More/test-more/issues',
23758     'Test2::Hub::Subtest'   => 'http://github.com/Test-More/test-more/issues',
23759     'Test2::IPC'            => 'http://github.com/Test-More/test-more/issues',
23760     'Test2::IPC::Driver'    => 'http://github.com/Test-More/test-more/issues',
23761     'Test2::IPC::Driver::Files'=> 'http://github.com/Test-More/test-more/issues',
23762     'Test2::Manual'         => 'http://github.com/Test-More/Test2-Suite/issues',
23763     'Test2::Manual::Anatomy'=> 'http://github.com/Test-More/Test2-Suite/issues',
23764     'Test2::Manual::Anatomy::API'=> 'http://github.com/Test-More/Test2-Suite/issues',
23765     'Test2::Manual::Anatomy::Context'=> 'http://github.com/Test-More/Test2-Suite/issues',
23766     'Test2::Manual::Anatomy::EndToEnd'=> 'http://github.com/Test-More/Test2-Suite/issues',
23767     'Test2::Manual::Anatomy::Event'=> 'http://github.com/Test-More/Test2-Suite/issues',
23768     'Test2::Manual::Anatomy::Hubs'=> 'http://github.com/Test-More/Test2-Suite/issues',
23769     'Test2::Manual::Anatomy::IPC'=> 'http://github.com/Test-More/Test2-Suite/issues',
23770     'Test2::Manual::Anatomy::Utilities'=> 'http://github.com/Test-More/Test2-Suite/issues',
23771     'Test2::Manual::Concurrency'=> 'http://github.com/Test-More/Test2-Suite/issues',
23772     'Test2::Manual::Contributing'=> 'http://github.com/Test-More/Test2-Suite/issues',
23773     'Test2::Manual::Testing'=> 'http://github.com/Test-More/Test2-Suite/issues',
23774     'Test2::Manual::Testing::Introduction'=> 'http://github.com/Test-More/Test2-Suite/issues',
23775     'Test2::Manual::Testing::Migrating'=> 'http://github.com/Test-More/Test2-Suite/issues',
23776     'Test2::Manual::Testing::Planning'=> 'http://github.com/Test-More/Test2-Suite/issues',
23777     'Test2::Manual::Testing::Todo'=> 'http://github.com/Test-More/Test2-Suite/issues',
23778     'Test2::Manual::Tooling'=> 'http://github.com/Test-More/Test2-Suite/issues',
23779     'Test2::Manual::Tooling::FirstTool'=> 'http://github.com/Test-More/Test2-Suite/issues',
23780     'Test2::Manual::Tooling::Formatter'=> 'http://github.com/Test-More/Test2-Suite/issues',
23781     'Test2::Manual::Tooling::Nesting'=> 'http://github.com/Test-More/Test2-Suite/issues',
23782     'Test2::Manual::Tooling::Plugin::TestExit'=> 'http://github.com/Test-More/Test2-Suite/issues',
23783     'Test2::Manual::Tooling::Plugin::TestingDone'=> 'http://github.com/Test-More/Test2-Suite/issues',
23784     'Test2::Manual::Tooling::Plugin::ToolCompletes'=> 'http://github.com/Test-More/Test2-Suite/issues',
23785     'Test2::Manual::Tooling::Plugin::ToolStarts'=> 'http://github.com/Test-More/Test2-Suite/issues',
23786     'Test2::Manual::Tooling::Subtest'=> 'http://github.com/Test-More/Test2-Suite/issues',
23787     'Test2::Manual::Tooling::TestBuilder'=> 'http://github.com/Test-More/Test2-Suite/issues',
23788     'Test2::Manual::Tooling::Testing'=> 'http://github.com/Test-More/Test2-Suite/issues',
23789     'Test2::Mock'           => 'http://github.com/Test-More/Test2-Suite/issues',
23790     'Test2::Plugin'         => 'http://github.com/Test-More/Test2-Suite/issues',
23791     'Test2::Plugin::BailOnFail'=> 'http://github.com/Test-More/Test2-Suite/issues',
23792     'Test2::Plugin::DieOnFail'=> 'http://github.com/Test-More/Test2-Suite/issues',
23793     'Test2::Plugin::ExitSummary'=> 'http://github.com/Test-More/Test2-Suite/issues',
23794     'Test2::Plugin::SRand'  => 'http://github.com/Test-More/Test2-Suite/issues',
23795     'Test2::Plugin::Times'  => 'http://github.com/Test-More/Test2-Suite/issues',
23796     'Test2::Plugin::UTF8'   => 'http://github.com/Test-More/Test2-Suite/issues',
23797     'Test2::Require'        => 'http://github.com/Test-More/Test2-Suite/issues',
23798     'Test2::Require::AuthorTesting'=> 'http://github.com/Test-More/Test2-Suite/issues',
23799     'Test2::Require::EnvVar'=> 'http://github.com/Test-More/Test2-Suite/issues',
23800     'Test2::Require::Fork'  => 'http://github.com/Test-More/Test2-Suite/issues',
23801     'Test2::Require::Module'=> 'http://github.com/Test-More/Test2-Suite/issues',
23802     'Test2::Require::Perl'  => 'http://github.com/Test-More/Test2-Suite/issues',
23803     'Test2::Require::RealFork'=> 'http://github.com/Test-More/Test2-Suite/issues',
23804     'Test2::Require::Threads'=> 'http://github.com/Test-More/Test2-Suite/issues',
23805     'Test2::Suite'          => 'http://github.com/Test-More/Test2-Suite/issues',
23806     'Test2::Todo'           => 'http://github.com/Test-More/Test2-Suite/issues',
23807     'Test2::Tools'          => 'http://github.com/Test-More/Test2-Suite/issues',
23808     'Test2::Tools::AsyncSubtest'=> 'http://github.com/Test-More/Test2-Suite/issues',
23809     'Test2::Tools::Basic'   => 'http://github.com/Test-More/Test2-Suite/issues',
23810     'Test2::Tools::Class'   => 'http://github.com/Test-More/Test2-Suite/issues',
23811     'Test2::Tools::ClassicCompare'=> 'http://github.com/Test-More/Test2-Suite/issues',
23812     'Test2::Tools::Compare' => 'http://github.com/Test-More/Test2-Suite/issues',
23813     'Test2::Tools::Defer'   => 'http://github.com/Test-More/Test2-Suite/issues',
23814     'Test2::Tools::Encoding'=> 'http://github.com/Test-More/Test2-Suite/issues',
23815     'Test2::Tools::Event'   => 'http://github.com/Test-More/Test2-Suite/issues',
23816     'Test2::Tools::Exception'=> 'http://github.com/Test-More/Test2-Suite/issues',
23817     'Test2::Tools::Exports' => 'http://github.com/Test-More/Test2-Suite/issues',
23818     'Test2::Tools::GenTemp' => 'http://github.com/Test-More/Test2-Suite/issues',
23819     'Test2::Tools::Grab'    => 'http://github.com/Test-More/Test2-Suite/issues',
23820     'Test2::Tools::Mock'    => 'http://github.com/Test-More/Test2-Suite/issues',
23821     'Test2::Tools::Ref'     => 'http://github.com/Test-More/Test2-Suite/issues',
23822     'Test2::Tools::Refcount'=> 'http://github.com/Test-More/Test2-Suite/issues',
23823     'Test2::Tools::Spec'    => 'http://github.com/Test-More/Test2-Suite/issues',
23824     'Test2::Tools::Subtest' => 'http://github.com/Test-More/Test2-Suite/issues',
23825     'Test2::Tools::Target'  => 'http://github.com/Test-More/Test2-Suite/issues',
23826     'Test2::Tools::Tester'  => 'http://github.com/Test-More/Test2-Suite/issues',
23827     'Test2::Tools::Tiny'    => 'http://github.com/Test-More/test-more/issues',
23828     'Test2::Tools::Warnings'=> 'http://github.com/Test-More/Test2-Suite/issues',
23829     'Test2::Util'           => 'http://github.com/Test-More/test-more/issues',
23830     'Test2::Util::ExternalMeta'=> 'http://github.com/Test-More/test-more/issues',
23831     'Test2::Util::Facets2Legacy'=> 'http://github.com/Test-More/test-more/issues',
23832     'Test2::Util::Grabber'  => 'http://github.com/Test-More/Test2-Suite/issues',
23833     'Test2::Util::Guard'    => 'http://github.com/Test-More/Test2-Suite/issues',
23834     'Test2::Util::HashBase' => 'http://github.com/Test-More/test-more/issues',
23835     'Test2::Util::Importer' => 'http://github.com/Test-More/Test2-Suite/issues',
23836     'Test2::Util::Ref'      => 'http://github.com/Test-More/Test2-Suite/issues',
23837     'Test2::Util::Stash'    => 'http://github.com/Test-More/Test2-Suite/issues',
23838     'Test2::Util::Sub'      => 'http://github.com/Test-More/Test2-Suite/issues',
23839     'Test2::Util::Table'    => 'http://github.com/Test-More/Test2-Suite/issues',
23840     'Test2::Util::Table::Cell'=> 'http://github.com/Test-More/Test2-Suite/issues',
23841     'Test2::Util::Table::LineBreak'=> 'http://github.com/Test-More/Test2-Suite/issues',
23842     'Test2::Util::Term'     => 'http://github.com/Test-More/Test2-Suite/issues',
23843     'Test2::Util::Times'    => 'http://github.com/Test-More/Test2-Suite/issues',
23844     'Test2::Util::Trace'    => 'http://github.com/Test-More/test-more/issues',
23845     'Test2::V0'             => 'http://github.com/Test-More/Test2-Suite/issues',
23846     'Test2::Workflow'       => 'http://github.com/Test-More/Test2-Suite/issues',
23847     'Test2::Workflow::BlockBase'=> 'http://github.com/Test-More/Test2-Suite/issues',
23848     'Test2::Workflow::Build'=> 'http://github.com/Test-More/Test2-Suite/issues',
23849     'Test2::Workflow::Runner'=> 'http://github.com/Test-More/Test2-Suite/issues',
23850     'Test2::Workflow::Task' => 'http://github.com/Test-More/Test2-Suite/issues',
23851     'Test2::Workflow::Task::Action'=> 'http://github.com/Test-More/Test2-Suite/issues',
23852     'Test2::Workflow::Task::Group'=> 'http://github.com/Test-More/Test2-Suite/issues',
23853     'Test::Builder'         => 'http://github.com/Test-More/test-more/issues',
23854     'Test::Builder::Formatter'=> 'http://github.com/Test-More/test-more/issues',
23855     'Test::Builder::IO::Scalar'=> 'http://github.com/Test-More/test-more/issues',
23856     'Test::Builder::Module' => 'http://github.com/Test-More/test-more/issues',
23857     'Test::Builder::Tester' => 'http://github.com/Test-More/test-more/issues',
23858     'Test::Builder::Tester::Color'=> 'http://github.com/Test-More/test-more/issues',
23859     'Test::Builder::TodoDiag'=> 'http://github.com/Test-More/test-more/issues',
23860     'Test::Harness'         => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23861     'Test::More'            => 'http://github.com/Test-More/test-more/issues',
23862     'Test::Simple'          => 'http://github.com/Test-More/test-more/issues',
23863     'Test::Tester'          => 'http://github.com/Test-More/test-more/issues',
23864     'Test::Tester::Capture' => 'http://github.com/Test-More/test-more/issues',
23865     'Test::Tester::CaptureRunner'=> 'http://github.com/Test-More/test-more/issues',
23866     'Test::Tester::Delegate'=> 'http://github.com/Test-More/test-more/issues',
23867     'Test::use::ok'         => 'http://github.com/Test-More/test-more/issues',
23868     'Text::Balanced'        => undef,
23869     'Text::ParseWords'      => undef,
23870     'Text::Tabs'            => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
23871     'Text::Wrap'            => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
23872     'Tie::RefHash'          => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Tie-RefHash',
23873     'Time::Local'           => 'https://github.com/houseabsolute/Time-Local/issues',
23874     'Time::Piece'           => undef,
23875     'Time::Seconds'         => undef,
23876     'Unicode::Collate'      => undef,
23877     'Unicode::Collate::CJK::Big5'=> undef,
23878     'Unicode::Collate::CJK::GB2312'=> undef,
23879     'Unicode::Collate::CJK::JISX0208'=> undef,
23880     'Unicode::Collate::CJK::Korean'=> undef,
23881     'Unicode::Collate::CJK::Pinyin'=> undef,
23882     'Unicode::Collate::CJK::Stroke'=> undef,
23883     'Unicode::Collate::CJK::Zhuyin'=> undef,
23884     'Unicode::Collate::Locale'=> undef,
23885     'Win32'                 => 'https://github.com/perl-libwin32/win32/issues',
23886     'Win32API::File'        => undef,
23887     'autodie'               => 'https://github.com/pjf/autodie/issues',
23888     'autodie::Scope::Guard' => 'https://github.com/pjf/autodie/issues',
23889     'autodie::Scope::GuardStack'=> 'https://github.com/pjf/autodie/issues',
23890     'autodie::Util'         => 'https://github.com/pjf/autodie/issues',
23891     'autodie::exception'    => 'https://github.com/pjf/autodie/issues',
23892     'autodie::exception::system'=> 'https://github.com/pjf/autodie/issues',
23893     'autodie::hints'        => 'https://github.com/pjf/autodie/issues',
23894     'autodie::skip'         => 'https://github.com/pjf/autodie/issues',
23895     'bigfloat'              => undef,
23896     'bigint'                => undef,
23897     'bignum'                => undef,
23898     'bigrat'                => undef,
23899     'encoding'              => undef,
23900     'experimental'          => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
23901     'ok'                    => 'http://github.com/Test-More/test-more/issues',
23902     'parent'                => undef,
23903     'perlfaq'               => 'https://github.com/perl-doc-cats/perlfaq/issues',
23904     'stable'                => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
23905     'version'               => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
23906     'version::regex'        => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
23907 );
23908
23909 # Create aliases with trailing zeros for $] use
23910
23911 $released{'5.000'} = $released{5};
23912 $version{'5.000'} = $version{5};
23913
23914 _create_aliases(\%delta);
23915 _create_aliases(\%released);
23916 _create_aliases(\%version);
23917 _create_aliases(\%deprecated);
23918
23919 sub _create_aliases {
23920     my ($hash) = @_;
23921
23922     for my $version (keys %$hash) {
23923         next unless $version >= 5.006;
23924
23925         my $padded = sprintf "%0.6f", $version;
23926
23927         # If the version in string form isn't the same as the numeric version,
23928         # alias it.
23929         if ($padded ne $version && $version == $padded) {
23930             $hash->{$padded} = $hash->{$version};
23931         }
23932     }
23933 }
23934
23935 1;
23936 __END__