File Coverage

blib/lib/Module/CoreList.pm
Criterion Covered Total %
statement 109 127 85.8
branch 62 94 65.9
condition 35 57 61.4
subroutine 18 20 90.0
pod 10 12 83.3
total 234 310 75.4


line stmt bran cond sub pod time code
1             package Module::CoreList;
2 5     5   16486 use strict;
  5         22  
  5         346  
3              
4             our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
5              
6 5     5   2358 use version;
  5         10035  
  5         30  
7             our $VERSION = '5.20230820';
8              
9             sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
10 42     42   82 sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
  42         82  
  42         367  
11              
12             sub _undelta {
13 11     11   46 my ($delta) = @_;
14 11         27 my (%expanded, $delta_from, $base, $changed, $removed);
15 11         1131 for my $v (sort keys %$delta) {
16 2507         3947 ($delta_from, $changed, $removed) = @{$delta->{$v}}{qw( delta_from changed removed )};
  2507         6718  
17 2507 100       9738 $base = $delta_from ? $expanded{$delta_from} : {};
18 2507 100       67288 my %full = ( %$base, %{$changed || {}} );
  2507         304534  
19 2507         38778 delete @full{ keys %$removed };
20 2507         7983 $expanded{$v} = \%full;
21             }
22 11         2034 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 7300 0   7300   15230 : $released{$a} cmp $released{$b} )
    50          
    50          
33             }
34              
35             my $dumpinc = 0;
36             sub import {
37 4     4   75 my $self = shift;
38 4   50     33 my $what = shift || '';
39 4 50       4054 if ($what eq 'dumpinc') {
40 0         0 $dumpinc = 1;
41             }
42             }
43              
44             END {
45 5 50   5   1224 print "---INC---\n", join "\n" => keys %INC
46             if $dumpinc;
47             }
48              
49              
50             sub first_release_raw {
51 91 100 100 91 0 299 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
52 91         128 my $module = shift;
53 91         130 my $version = shift;
54              
55             my @perls = $version
56             ? grep { defined $version{$_}{ $module } &&
57 1425 100       5978 $version{$_}{ $module } ge $version } keys %version
58 91 100       3452 : grep { exists $version{$_}{ $module } } keys %version;
  24510         44188  
59              
60 91         2810 return @perls;
61             }
62              
63             sub first_release_by_date {
64 4     4 1 2018 my @perls = &first_release_raw;
65 4 50       15 return unless @perls;
66 4         31 return (sort _released_order @perls)[0];
67             }
68              
69             sub first_release {
70 53     53 1 97 my @perls = &first_release_raw;
71 53 100       180 return unless @perls;
72 49         296 return (sort { $a cmp $b } @perls)[0];
  72371         87996  
73             }
74              
75             sub find_modules {
76 5 100   5 1 114 shift if _looks_like_invocant $_[0];
77 5         14 my $regex = shift;
78 5 100       331 my @perls = @_ ? @_ : keys %version;
79              
80 5         12 my %mods;
81 5         12 foreach (@perls) {
82 858         1327 while (my ($k, $v) = each %{$version{$_}}) {
  516856         1296746  
83 515998 100       1379474 $mods{$k}++ if $k =~ $regex;
84             }
85             }
86 5         175 return sort keys %mods
87             }
88              
89             sub find_version {
90 3 50   3 1 474 shift if _looks_like_invocant $_[0];
91 3         7 my $v = shift;
92 3 100 66     31 return $version{$v} if defined $v and defined $version{$v};
93 1         5 return;
94             }
95              
96             sub is_deprecated {
97 3 50 66 3 1 2160 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      33        
98 3         7 my $module = shift;
99 3   66     26 my $perl_version = shift || $];
100 3 50 33     26 return unless $module && exists $deprecated{$perl_version}{$module};
101 0         0 return $deprecated{$perl_version}{$module};
102             }
103              
104             sub deprecated_in {
105 2 0 33 2 1 10 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      33        
106 2 50       7 my $module = shift or return;
107 2         74 my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
  500         870  
108 2 100       26 return unless @perls;
109 1         19 require List::Util;
110 1         9 return List::Util::minstr(@perls);
111             }
112              
113             sub removed_from {
114 34     34 1 63 my @perls = &removed_raw;
115 34         170 return shift @perls;
116             }
117              
118             sub removed_from_by_date {
119 0     0 1 0 my @perls = sort _released_order &removed_raw;
120 0         0 return shift @perls;
121             }
122              
123             sub removed_raw {
124 34 50 66 34 0 100 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
125 34         58 my $mod = shift;
126 34 50       67 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
  42943         52590  
127 34         252 my $last = pop @perls;
128 34         1137 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
  9690         18105  
  67576         82757  
129 34         801 return @removed;
130             }
131              
132             sub changes_between {
133 0 0   0 1 0 shift if _looks_like_invocant $_[0];
134 0         0 my $left_ver = shift;
135 0         0 my $right_ver = shift;
136              
137 0   0     0 my $left = $version{ $left_ver } || {};
138 0   0     0 my $right = $version{ $right_ver } || {};
139              
140 0         0 my %uniq = (%$left, %$right);
141              
142 0         0 my %changes;
143 0         0 for my $lib (keys %uniq) {
144             my $lhs = exists $left->{ $lib }
145 0 0       0 ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)')
    0          
146             : '(absent)';
147             my $rhs = exists $right->{ $lib }
148 0 0       0 ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)')
    0          
149             : '(absent)';
150              
151 0 0       0 next if $lhs eq $rhs;
152              
153             my $change = {
154             (exists $left->{$lib} ? (left => $left->{$lib}) : ()),
155 0 0       0 (exists $right->{$lib} ? (right => $right->{$lib}) : ()),
    0          
156             };
157              
158 0         0 $changes{$lib} = $change;
159             }
160              
161 0         0 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             );
412              
413             for my $version ( sort { $a <=> $b } keys %released ) {
414             my $family = int ($version * 1000) / 1000;
415             push @{ $families{ $family }} , $version;
416             }
417              
418             %delta = (
419             5 => {
420             changed => {
421             'AnyDBM_File' => undef,
422             'AutoLoader' => undef,
423             'AutoSplit' => undef,
424             'Benchmark' => undef,
425             'Carp' => undef,
426             'Cwd' => undef,
427             'DB_File' => undef,
428             'DynaLoader' => undef,
429             'English' => undef,
430             'Env' => undef,
431             'Exporter' => undef,
432             'ExtUtils::MakeMaker' => undef,
433             'Fcntl' => undef,
434             'File::Basename' => undef,
435             'File::CheckTree' => undef,
436             'File::Find' => undef,
437             'FileHandle' => undef,
438             'GDBM_File' => undef,
439             'Getopt::Long' => undef,
440             'Getopt::Std' => undef,
441             'I18N::Collate' => undef,
442             'IPC::Open2' => undef,
443             'IPC::Open3' => undef,
444             'Math::BigFloat' => undef,
445             'Math::BigInt' => undef,
446             'Math::Complex' => undef,
447             'NDBM_File' => undef,
448             'Net::Ping' => undef,
449             'ODBM_File' => undef,
450             'POSIX' => undef,
451             'SDBM_File' => undef,
452             'Search::Dict' => undef,
453             'Shell' => undef,
454             'Socket' => undef,
455             'Sys::Hostname' => undef,
456             'Sys::Syslog' => undef,
457             'Term::Cap' => undef,
458             'Term::Complete' => undef,
459             'Test::Harness' => undef,
460             'Text::Abbrev' => undef,
461             'Text::ParseWords' => undef,
462             'Text::Soundex' => undef,
463             'Text::Tabs' => undef,
464             'TieHash' => undef,
465             'Time::Local' => undef,
466             'integer' => undef,
467             'less' => undef,
468             'sigtrap' => undef,
469             'strict' => undef,
470             'subs' => undef,
471             },
472             removed => {
473             }
474             },
475             5.001 => {
476             delta_from => 5,
477             changed => {
478             'ExtUtils::Liblist' => undef,
479             'ExtUtils::Manifest' => undef,
480             'ExtUtils::Mkbootstrap' => undef,
481             'File::Path' => undef,
482             'SubstrHash' => undef,
483             'lib' => undef,
484             },
485             removed => {
486             }
487             },
488             5.002 => {
489             delta_from => 5.001,
490             changed => {
491             'DB_File' => '1.01',
492             'Devel::SelfStubber' => '1.01',
493             'DirHandle' => undef,
494             'DynaLoader' => '1.00',
495             'ExtUtils::Install' => undef,
496             'ExtUtils::MM_OS2' => undef,
497             'ExtUtils::MM_Unix' => undef,
498             'ExtUtils::MM_VMS' => undef,
499             'ExtUtils::MakeMaker' => '5.21',
500             'ExtUtils::Manifest' => '1.22',
501             'ExtUtils::Mksymlists' => '1.00',
502             'Fcntl' => '1.00',
503             'File::Copy' => '1.5',
504             'File::Path' => '1.01',
505             'FileCache' => undef,
506             'FileHandle' => '1.00',
507             'GDBM_File' => '1.00',
508             'Getopt::Long' => '2.01',
509             'NDBM_File' => '1.00',
510             'Net::Ping' => '1',
511             'ODBM_File' => '1.00',
512             'POSIX' => '1.00',
513             'Pod::Functions' => undef,
514             'Pod::Text' => undef,
515             'SDBM_File' => '1.00',
516             'Safe' => '1.00',
517             'SelectSaver' => undef,
518             'SelfLoader' => '1.06',
519             'Socket' => '1.5',
520             'Symbol' => undef,
521             'Term::ReadLine' => undef,
522             'Test::Harness' => '1.07',
523             'Text::Wrap' => undef,
524             'Tie::Hash' => undef,
525             'Tie::Scalar' => undef,
526             'Tie::SubstrHash' => undef,
527             'diagnostics' => undef,
528             'overload' => undef,
529             'vars' => undef,
530             },
531             removed => {
532             'SubstrHash' => 1,
533             'TieHash' => 1,
534             }
535             },
536             5.00307 => {
537             delta_from => 5.002,
538             changed => {
539             'Config' => undef,
540             'DB_File' => '1.03',
541             'ExtUtils::Embed' => '1.18',
542             'ExtUtils::Install' => '1.15',
543             'ExtUtils::Liblist' => '1.20',
544             'ExtUtils::MM_Unix' => '1.107',
545             'ExtUtils::MakeMaker' => '5.38',
546             'ExtUtils::Manifest' => '1.27',
547             'ExtUtils::Mkbootstrap' => '1.13',
548             'ExtUtils::Mksymlists' => '1.12',
549             'ExtUtils::testlib' => '1.11',
550             'Fatal' => undef,
551             'File::Basename' => '2.4',
552             'FindBin' => '1.04',
553             'Getopt::Long' => '2.04',
554             'IO' => undef,
555             'IO::File' => '1.05',
556             'IO::Handle' => '1.12',
557             'IO::Pipe' => '1.07',
558             'IO::Seekable' => '1.05',
559             'IO::Select' => '1.09',
560             'IO::Socket' => '1.13',
561             'Net::Ping' => '1.01',
562             'OS2::ExtAttr' => '0.01',
563             'OS2::PrfDB' => '0.02',
564             'OS2::Process' => undef,
565             'OS2::REXX' => undef,
566             'Opcode' => '1.01',
567             'Safe' => '2.06',
568             'Test::Harness' => '1.13',
569             'Text::Tabs' => '96.051501',
570             'Text::Wrap' => '96.041801',
571             'UNIVERSAL' => undef,
572             'VMS::Filespec' => undef,
573             'VMS::Stdio' => '2.0',
574             'ops' => undef,
575             'sigtrap' => '1.01',
576             },
577             removed => {
578             }
579             },
580             5.004 => {
581             delta_from => 5.00307,
582             changed => {
583             'Bundle::CPAN' => '0.02',
584             'CGI' => '2.36',
585             'CGI::Apache' => '1.01',
586             'CGI::Carp' => '1.06',
587             'CGI::Fast' => '1.00a',
588             'CGI::Push' => '1.00',
589             'CGI::Switch' => '0.05',
590             'CPAN' => '1.2401',
591             'CPAN::FirstTime' => '1.18',
592             'CPAN::Nox' => undef,
593             'Class::Struct' => undef,
594             'Cwd' => '2.00',
595             'DB_File' => '1.14',
596             'DynaLoader' => '1.02',
597             'ExtUtils::Command' => '1.00',
598             'ExtUtils::Embed' => '1.2501',
599             'ExtUtils::Install' => '1.16',
600             'ExtUtils::Liblist' => '1.2201',
601             'ExtUtils::MM_Unix' => '1.114',
602             'ExtUtils::MM_Win32' => undef,
603             'ExtUtils::MakeMaker' => '5.4002',
604             'ExtUtils::Manifest' => '1.33',
605             'ExtUtils::Mksymlists' => '1.13',
606             'ExtUtils::XSSymSet' => '1.0',
607             'Fcntl' => '1.03',
608             'File::Basename' => '2.5',
609             'File::Compare' => '1.1001',
610             'File::Copy' => '2.02',
611             'File::Path' => '1.04',
612             'File::stat' => undef,
613             'FileHandle' => '2.00',
614             'Getopt::Long' => '2.10',
615             'IO::File' => '1.0602',
616             'IO::Handle' => '1.1504',
617             'IO::Pipe' => '1.0901',
618             'IO::Seekable' => '1.06',
619             'IO::Select' => '1.10',
620             'IO::Socket' => '1.1602',
621             'IPC::Open2' => '1.01',
622             'IPC::Open3' => '1.0101',
623             'Math::Complex' => '1.01',
624             'Math::Trig' => '1',
625             'Net::Ping' => '2.02',
626             'Net::hostent' => undef,
627             'Net::netent' => undef,
628             'Net::protoent' => undef,
629             'Net::servent' => undef,
630             'Opcode' => '1.04',
631             'POSIX' => '1.02',
632             'Pod::Html' => undef,
633             'Pod::Text' => '1.0203',
634             'SelfLoader' => '1.07',
635             'Socket' => '1.6',
636             'Symbol' => '1.02',
637             'Test::Harness' => '1.1502',
638             'Text::Tabs' => '96.121201',
639             'Text::Wrap' => '97.011701',
640             'Tie::RefHash' => undef,
641             'Time::gmtime' => '1.01',
642             'Time::localtime' => '1.01',
643             'Time::tm' => undef,
644             'User::grent' => undef,
645             'User::pwent' => undef,
646             'VMS::DCLsym' => '1.01',
647             'VMS::Stdio' => '2.02',
648             'autouse' => '1.01',
649             'blib' => undef,
650             'constant' => '1.00',
651             'locale' => undef,
652             'sigtrap' => '1.02',
653             'vmsish' => undef,
654             },
655             removed => {
656             'Fatal' => 1,
657             }
658             },
659             5.00405 => {
660             delta_from => 5.004,
661             changed => {
662             'AutoLoader' => '5.56',
663             'AutoSplit' => '1.0303',
664             'Bundle::CPAN' => '0.03',
665             'CGI' => '2.42',
666             'CGI::Apache' => '1.1',
667             'CGI::Carp' => '1.10',
668             'CGI::Cookie' => '1.06',
669             'CGI::Push' => '1.01',
670             'CGI::Switch' => '0.06',
671             'CPAN' => '1.40',
672             'CPAN::FirstTime' => '1.30',
673             'Cwd' => '2.01',
674             'DB_File' => '1.15',
675             'DynaLoader' => '1.03',
676             'ExtUtils::Command' => '1.01',
677             'ExtUtils::Embed' => '1.2505',
678             'ExtUtils::Install' => '1.28',
679             'ExtUtils::Liblist' => '1.25',
680             'ExtUtils::MM_Unix' => '1.118',
681             'ExtUtils::MakeMaker' => '5.42',
682             'ExtUtils::Mkbootstrap' => '1.14',
683             'ExtUtils::Mksymlists' => '1.16',
684             'File::Basename' => '2.6',
685             'File::DosGlob' => undef,
686             'File::Path' => '1.0402',
687             'File::Spec' => '0.6',
688             'File::Spec::Mac' => '1.0',
689             'File::Spec::OS2' => undef,
690             'File::Spec::Unix' => undef,
691             'File::Spec::VMS' => undef,
692             'File::Spec::Win32' => undef,
693             'FindBin' => '1.41',
694             'Getopt::Long' => '2.19',
695             'IO::File' => '1.06021',
696             'IO::Socket' => '1.1603',
697             'IPC::Open3' => '1.0103',
698             'Math::Complex' => '1.25',
699             'NDBM_File' => '1.01',
700             'Pod::Html' => '1.0101',
701             'Pod::Text' => '1.0204',
702             'SelfLoader' => '1.08',
703             'Socket' => '1.7',
704             'Test' => '1.04',
705             'Test::Harness' => '1.1602',
706             'Text::ParseWords' => '3.1001',
707             'Text::Wrap' => '98.112902',
708             'Tie::Handle' => undef,
709             'attrs' => '0.1',
710             'base' => undef,
711             'blib' => '1.00',
712             're' => undef,
713             'strict' => '1.01',
714             },
715             removed => {
716             }
717             },
718             5.005 => {
719             delta_from => 5.00405,
720             changed => {
721             'AutoLoader' => undef,
722             'AutoSplit' => '1.0302',
723             'B' => undef,
724             'B::Asmdata' => undef,
725             'B::Assembler' => undef,
726             'B::Bblock' => undef,
727             'B::Bytecode' => undef,
728             'B::C' => undef,
729             'B::CC' => undef,
730             'B::Debug' => undef,
731             'B::Deparse' => '0.56',
732             'B::Disassembler' => undef,
733             'B::Lint' => undef,
734             'B::Showlex' => undef,
735             'B::Stackobj' => undef,
736             'B::Terse' => undef,
737             'B::Xref' => undef,
738             'CGI::Carp' => '1.101',
739             'CPAN' => '1.3901',
740             'CPAN::FirstTime' => '1.29',
741             'DB_File' => '1.60',
742             'Data::Dumper' => '2.09',
743             'Errno' => '1.09',
744             'ExtUtils::Installed' => '0.02',
745             'ExtUtils::MM_Unix' => '1.12601',
746             'ExtUtils::MakeMaker' => '5.4301',
747             'ExtUtils::Mkbootstrap' => '1.13',
748             'ExtUtils::Mksymlists' => '1.17',
749             'ExtUtils::Packlist' => '0.03',
750             'Fatal' => '1.02',
751             'File::Path' => '1.0401',
752             'Getopt::Long' => '2.17',
753             'IO::Handle' => '1.1505',
754             'IPC::Msg' => '1.00',
755             'IPC::Open3' => '1.0102',
756             'IPC::Semaphore' => '1.00',
757             'IPC::SysV' => '1.03',
758             'O' => undef,
759             'OS2::Process' => '0.2',
760             'Pod::Html' => '1.01',
761             'Pod::Text' => '1.0203',
762             'Text::ParseWords' => '3.1',
763             'Text::Wrap' => '97.02',
764             'Thread' => '1.0',
765             'Thread::Queue' => undef,
766             'Thread::Semaphore' => undef,
767             'Thread::Signal' => undef,
768             'Thread::Specific' => undef,
769             'Tie::Array' => '1.00',
770             'VMS::Stdio' => '2.1',
771             'attrs' => '1.0',
772             'fields' => '0.02',
773             're' => '0.02',
774             },
775             removed => {
776             'Bundle::CPAN' => 1,
777             }
778             },
779             5.00503 => {
780             delta_from => 5.005,
781             changed => {
782             'AutoSplit' => '1.0303',
783             'CGI' => '2.46',
784             'CGI::Carp' => '1.13',
785             'CGI::Fast' => '1.01',
786             'CPAN' => '1.48',
787             'CPAN::FirstTime' => '1.36',
788             'CPAN::Nox' => '1.00',
789             'DB_File' => '1.65',
790             'Data::Dumper' => '2.101',
791             'Dumpvalue' => undef,
792             'Errno' => '1.111',
793             'ExtUtils::Install' => '1.28',
794             'ExtUtils::Liblist' => '1.25',
795             'ExtUtils::MM_Unix' => '1.12602',
796             'ExtUtils::MakeMaker' => '5.4302',
797             'ExtUtils::Manifest' => '1.33',
798             'ExtUtils::Mkbootstrap' => '1.14',
799             'ExtUtils::Mksymlists' => '1.17',
800             'ExtUtils::testlib' => '1.11',
801             'FindBin' => '1.42',
802             'Getopt::Long' => '2.19',
803             'Getopt::Std' => '1.01',
804             'IO::Pipe' => '1.0902',
805             'IPC::Open3' => '1.0103',
806             'Math::Complex' => '1.26',
807             'Test' => '1.122',
808             'Text::Wrap' => '98.112902',
809             },
810             removed => {
811             }
812             },
813             5.00504 => {
814             delta_from => 5.00503,
815             changed => {
816             'CPAN::FirstTime' => '1.36',
817             'DB_File' => '1.807',
818             'ExtUtils::Install' => '1.28',
819             'ExtUtils::Liblist' => '1.25',
820             'ExtUtils::MM_Unix' => '1.12602',
821             'ExtUtils::Manifest' => '1.33',
822             'ExtUtils::Miniperl' => undef,
823             'ExtUtils::Mkbootstrap' => '1.14',
824             'ExtUtils::Mksymlists' => '1.17',
825             'ExtUtils::testlib' => '1.11',
826             'File::Compare' => '1.1002',
827             'File::Spec' => '0.8',
828             'File::Spec::Functions' => undef,
829             'File::Spec::Mac' => undef,
830             'Getopt::Long' => '2.20',
831             'Pod::Html' => '1.02',
832             },
833             removed => {
834             }
835             },
836             5.006 => {
837             delta_from => 5.00504,
838             changed => {
839             'AutoLoader' => '5.57',
840             'AutoSplit' => '1.0305',
841             'B::Deparse' => '0.59',
842             'B::Stash' => undef,
843             'Benchmark' => '1',
844             'ByteLoader' => '0.03',
845             'CGI' => '2.56',
846             'CGI::Apache' => undef,
847             'CGI::Carp' => '1.14',
848             'CGI::Cookie' => '1.12',
849             'CGI::Fast' => '1.02',
850             'CGI::Pretty' => '1.03',
851             'CGI::Switch' => undef,
852             'CPAN' => '1.52',
853             'CPAN::FirstTime' => '1.38',
854             'Carp::Heavy' => undef,
855             'Class::Struct' => '0.58',
856             'Cwd' => '2.02',
857             'DB' => '1.0',
858             'DB_File' => '1.72',
859             'Devel::DProf' => '20000000.00_00',
860             'Devel::Peek' => '1.00_01',
861             'DynaLoader' => '1.04',
862             'Exporter' => '5.562',
863             'Exporter::Heavy' => undef,
864             'ExtUtils::MM_Cygwin' => undef,
865             'ExtUtils::MM_Unix' => '1.12603',
866             'ExtUtils::MakeMaker' => '5.45',
867             'File::Copy' => '2.03',
868             'File::Glob' => '0.991',
869             'File::Path' => '1.0403',
870             'GDBM_File' => '1.03',
871             'Getopt::Long' => '2.23',
872             'Getopt::Std' => '1.02',
873             'IO' => '1.20',
874             'IO::Dir' => '1.03',
875             'IO::File' => '1.08',
876             'IO::Handle' => '1.21',
877             'IO::Pipe' => '1.121',
878             'IO::Poll' => '0.01',
879             'IO::Seekable' => '1.08',
880             'IO::Select' => '1.14',
881             'IO::Socket' => '1.26',
882             'IO::Socket::INET' => '1.25',
883             'IO::Socket::UNIX' => '1.20',
884             'JNI' => '0.01',
885             'JPL::AutoLoader' => undef,
886             'JPL::Class' => undef,
887             'JPL::Compile' => undef,
888             'NDBM_File' => '1.03',
889             'ODBM_File' => '1.02',
890             'OS2::DLL' => undef,
891             'POSIX' => '1.03',
892             'Pod::Checker' => '1.098',
893             'Pod::Find' => '0.12',
894             'Pod::Html' => '1.03',
895             'Pod::InputObjects' => '1.12',
896             'Pod::Man' => '1.02',
897             'Pod::ParseUtils' => '0.2',
898             'Pod::Parser' => '1.12',
899             'Pod::Plainer' => '0.01',
900             'Pod::Select' => '1.12',
901             'Pod::Text' => '2.03',
902             'Pod::Text::Color' => '0.05',
903             'Pod::Text::Termcap' => '0.04',
904             'Pod::Usage' => '1.12',
905             'SDBM_File' => '1.02',
906             'SelfLoader' => '1.0901',
907             'Shell' => '0.2',
908             'Socket' => '1.72',
909             'Sys::Hostname' => '1.1',
910             'Sys::Syslog' => '0.01',
911             'Term::ANSIColor' => '1.01',
912             'Test' => '1.13',
913             'Test::Harness' => '1.1604',
914             'Text::ParseWords' => '3.2',
915             'Text::Soundex' => '1.0',
916             'Text::Tabs' => '98.112801',
917             'Tie::Array' => '1.01',
918             'Tie::Handle' => '1.0',
919             'VMS::Stdio' => '2.2',
920             'XSLoader' => '0.01',
921             'attributes' => '0.03',
922             'autouse' => '1.02',
923             'base' => '1.01',
924             'bytes' => undef,
925             'charnames' => undef,
926             'constant' => '1.02',
927             'diagnostics' => '1.0',
928             'fields' => '1.01',
929             'filetest' => undef,
930             'lib' => '0.5564',
931             'open' => undef,
932             'utf8' => undef,
933             'warnings' => undef,
934             'warnings::register' => undef,
935             },
936             removed => {
937             }
938             },
939             5.006001 => {
940             delta_from => 5.006,
941             changed => {
942             'AutoLoader' => '5.58',
943             'B::Assembler' => '0.02',
944             'B::Concise' => '0.51',
945             'B::Deparse' => '0.6',
946             'ByteLoader' => '0.04',
947             'CGI' => '2.752',
948             'CGI::Carp' => '1.20',
949             'CGI::Cookie' => '1.18',
950             'CGI::Pretty' => '1.05',
951             'CGI::Push' => '1.04',
952             'CGI::Util' => '1.1',
953             'CPAN' => '1.59_54',
954             'CPAN::FirstTime' => '1.53',
955             'Class::Struct' => '0.59',
956             'Cwd' => '2.04',
957             'DB_File' => '1.75',
958             'Data::Dumper' => '2.102',
959             'ExtUtils::Install' => '1.28',
960             'ExtUtils::Liblist' => '1.26',
961             'ExtUtils::MM_Unix' => '1.12603',
962             'ExtUtils::Manifest' => '1.33',
963             'ExtUtils::Mkbootstrap' => '1.14',
964             'ExtUtils::Mksymlists' => '1.17',
965             'ExtUtils::testlib' => '1.11',
966             'File::Path' => '1.0404',
967             'File::Spec' => '0.82',
968             'File::Spec::Epoc' => undef,
969             'File::Spec::Functions' => '1.1',
970             'File::Spec::Mac' => '1.2',
971             'File::Spec::OS2' => '1.1',
972             'File::Spec::Unix' => '1.2',
973             'File::Spec::VMS' => '1.1',
974             'File::Spec::Win32' => '1.2',
975             'File::Temp' => '0.12',
976             'GDBM_File' => '1.05',
977             'Getopt::Long' => '2.25',
978             'IO::Poll' => '0.05',
979             'JNI' => '0.1',
980             'Math::BigFloat' => '0.02',
981             'Math::BigInt' => '0.01',
982             'Math::Complex' => '1.31',
983             'NDBM_File' => '1.04',
984             'ODBM_File' => '1.03',
985             'OS2::REXX' => '1.00',
986             'Pod::Checker' => '1.2',
987             'Pod::Find' => '0.21',
988             'Pod::InputObjects' => '1.13',
989             'Pod::LaTeX' => '0.53',
990             'Pod::Man' => '1.15',
991             'Pod::ParseUtils' => '0.22',
992             'Pod::Parser' => '1.13',
993             'Pod::Select' => '1.13',
994             'Pod::Text' => '2.08',
995             'Pod::Text::Color' => '0.06',
996             'Pod::Text::Overstrike' => '1.01',
997             'Pod::Text::Termcap' => '1',
998             'Pod::Usage' => '1.14',
999             'SDBM_File' => '1.03',
1000             'SelfLoader' => '1.0902',
1001             'Shell' => '0.3',
1002             'Term::ANSIColor' => '1.03',
1003             'Test' => '1.15',
1004             'Text::Wrap' => '2001.0131',
1005             'Tie::Handle' => '4.0',
1006             'Tie::RefHash' => '1.3',
1007             },
1008             removed => {
1009             }
1010             },
1011             5.006002 => {
1012             delta_from => 5.006001,
1013             changed => {
1014             'CPAN::FirstTime' => '1.53',
1015             'DB_File' => '1.806',
1016             'Data::Dumper' => '2.121',
1017             'ExtUtils::Command' => '1.05',
1018             'ExtUtils::Command::MM' => '0.03',
1019             'ExtUtils::Install' => '1.32',
1020             'ExtUtils::Installed' => '0.08',
1021             'ExtUtils::Liblist' => '1.01',
1022             'ExtUtils::Liblist::Kid'=> '1.3',
1023             'ExtUtils::MM' => '0.04',
1024             'ExtUtils::MM_Any' => '0.07',
1025             'ExtUtils::MM_BeOS' => '1.04',
1026             'ExtUtils::MM_Cygwin' => '1.06',
1027             'ExtUtils::MM_DOS' => '0.02',
1028             'ExtUtils::MM_MacOS' => '1.07',
1029             'ExtUtils::MM_NW5' => '2.06',
1030             'ExtUtils::MM_OS2' => '1.04',
1031             'ExtUtils::MM_UWIN' => '0.02',
1032             'ExtUtils::MM_Unix' => '1.42',
1033             'ExtUtils::MM_VMS' => '5.70',
1034             'ExtUtils::MM_Win32' => '1.09',
1035             'ExtUtils::MM_Win95' => '0.03',
1036             'ExtUtils::MY' => '0.01',
1037             'ExtUtils::MakeMaker' => '6.17',
1038             'ExtUtils::MakeMaker::bytes'=> '0.01',
1039             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1040             'ExtUtils::Manifest' => '1.42',
1041             'ExtUtils::Mkbootstrap' => '1.15',
1042             'ExtUtils::Mksymlists' => '1.19',
1043             'ExtUtils::Packlist' => '0.04',
1044             'ExtUtils::testlib' => '1.15',
1045             'File::Spec' => '0.86',
1046             'File::Spec::Cygwin' => '1.1',
1047             'File::Spec::Epoc' => '1.1',
1048             'File::Spec::Functions' => '1.3',
1049             'File::Spec::Mac' => '1.4',
1050             'File::Spec::OS2' => '1.2',
1051             'File::Spec::Unix' => '1.5',
1052             'File::Spec::VMS' => '1.4',
1053             'File::Spec::Win32' => '1.4',
1054             'File::Temp' => '0.14',
1055             'Safe' => '2.10',
1056             'Test' => '1.24',
1057             'Test::Builder' => '0.17',
1058             'Test::Harness' => '2.30',
1059             'Test::Harness::Assert' => '0.01',
1060             'Test::Harness::Iterator'=> '0.01',
1061             'Test::Harness::Straps' => '0.15',
1062             'Test::More' => '0.47',
1063             'Test::Simple' => '0.47',
1064             'Unicode' => '3.0.1',
1065             'if' => '0.03',
1066             'ops' => '1.00',
1067             },
1068             removed => {
1069             }
1070             },
1071             5.007003 => {
1072             delta_from => 5.006001,
1073             changed => {
1074             'AnyDBM_File' => '1.00',
1075             'Attribute::Handlers' => '0.76',
1076             'AutoLoader' => '5.59',
1077             'AutoSplit' => '1.0307',
1078             'B' => '1.00',
1079             'B::Asmdata' => '1.00',
1080             'B::Assembler' => '0.04',
1081             'B::Bblock' => '1.00',
1082             'B::Bytecode' => '1.00',
1083             'B::C' => '1.01',
1084             'B::CC' => '1.00',
1085             'B::Concise' => '0.52',
1086             'B::Debug' => '1.00',
1087             'B::Deparse' => '0.63',
1088             'B::Disassembler' => '1.01',
1089             'B::Lint' => '1.00',
1090             'B::Showlex' => '1.00',
1091             'B::Stackobj' => '1.00',
1092             'B::Stash' => '1.00',
1093             'B::Terse' => '1.00',
1094             'B::Xref' => '1.00',
1095             'Benchmark' => '1.04',
1096             'CGI' => '2.80',
1097             'CGI::Apache' => '1.00',
1098             'CGI::Carp' => '1.22',
1099             'CGI::Cookie' => '1.20',
1100             'CGI::Fast' => '1.04',
1101             'CGI::Pretty' => '1.05_00',
1102             'CGI::Switch' => '1.00',
1103             'CGI::Util' => '1.3',
1104             'CPAN' => '1.59_56',
1105             'CPAN::FirstTime' => '1.54',
1106             'CPAN::Nox' => '1.00_01',
1107             'Carp' => '1.01',
1108             'Carp::Heavy' => '1.01',
1109             'Class::ISA' => '0.32',
1110             'Class::Struct' => '0.61',
1111             'Cwd' => '2.06',
1112             'DB_File' => '1.804',
1113             'Data::Dumper' => '2.12',
1114             'Devel::DProf' => '20000000.00_01',
1115             'Devel::PPPort' => '2.0002',
1116             'Devel::Peek' => '1.00_03',
1117             'Devel::SelfStubber' => '1.03',
1118             'Digest' => '1.00',
1119             'Digest::MD5' => '2.16',
1120             'DirHandle' => '1.00',
1121             'Dumpvalue' => '1.10',
1122             'Encode' => '0.40',
1123             'Encode::CN' => '0.02',
1124             'Encode::CN::HZ' => undef,
1125             'Encode::Encoding' => '0.02',
1126             'Encode::Internal' => '0.30',
1127             'Encode::JP' => '0.02',
1128             'Encode::JP::Constants' => '1.02',
1129             'Encode::JP::H2Z' => '0.77',
1130             'Encode::JP::ISO_2022_JP'=> undef,
1131             'Encode::JP::JIS' => undef,
1132             'Encode::JP::Tr' => '0.77',
1133             'Encode::KR' => '0.02',
1134             'Encode::TW' => '0.02',
1135             'Encode::Tcl' => '1.01',
1136             'Encode::Tcl::Escape' => '1.01',
1137             'Encode::Tcl::Extended' => '1.01',
1138             'Encode::Tcl::HanZi' => '1.01',
1139             'Encode::Tcl::Table' => '1.01',
1140             'Encode::Unicode' => '0.30',
1141             'Encode::XS' => '0.40',
1142             'Encode::iso10646_1' => '0.30',
1143             'Encode::usc2_le' => '0.30',
1144             'Encode::utf8' => '0.30',
1145             'English' => '1.00',
1146             'Env' => '1.00',
1147             'Exporter' => '5.566',
1148             'Exporter::Heavy' => '5.562',
1149             'ExtUtils::Command' => '1.02',
1150             'ExtUtils::Constant' => '0.11',
1151             'ExtUtils::Embed' => '1.250601',
1152             'ExtUtils::Install' => '1.29',
1153             'ExtUtils::Installed' => '0.04',
1154             'ExtUtils::Liblist' => '1.2701',
1155             'ExtUtils::MM_BeOS' => '1.00',
1156             'ExtUtils::MM_Cygwin' => '1.00',
1157             'ExtUtils::MM_OS2' => '1.00',
1158             'ExtUtils::MM_Unix' => '1.12607',
1159             'ExtUtils::MM_VMS' => '5.56',
1160             'ExtUtils::MM_Win32' => '1.00_02',
1161             'ExtUtils::MakeMaker' => '5.48_03',
1162             'ExtUtils::Manifest' => '1.35',
1163             'ExtUtils::Mkbootstrap' => '1.1401',
1164             'ExtUtils::Mksymlists' => '1.18',
1165             'ExtUtils::Packlist' => '0.04',
1166             'ExtUtils::testlib' => '1.1201',
1167             'Fatal' => '1.03',
1168             'Fcntl' => '1.04',
1169             'File::Basename' => '2.71',
1170             'File::CheckTree' => '4.1',
1171             'File::Compare' => '1.1003',
1172             'File::Copy' => '2.05',
1173             'File::DosGlob' => '1.00',
1174             'File::Find' => '1.04',
1175             'File::Glob' => '1.01',
1176             'File::Path' => '1.05',
1177             'File::Spec' => '0.83',
1178             'File::Spec::Cygwin' => '1.0',
1179             'File::Spec::Epoc' => '1.00',
1180             'File::Spec::Functions' => '1.2',
1181             'File::Spec::Mac' => '1.3',
1182             'File::Spec::Unix' => '1.4',
1183             'File::Spec::VMS' => '1.2',
1184             'File::Spec::Win32' => '1.3',
1185             'File::Temp' => '0.13',
1186             'File::stat' => '1.00',
1187             'FileCache' => '1.00',
1188             'FileHandle' => '2.01',
1189             'Filter::Simple' => '0.77',
1190             'Filter::Util::Call' => '1.06',
1191             'FindBin' => '1.43',
1192             'GDBM_File' => '1.06',
1193             'Getopt::Long' => '2.28',
1194             'Getopt::Std' => '1.03',
1195             'I18N::Collate' => '1.00',
1196             'I18N::LangTags' => '0.27',
1197             'I18N::LangTags::List' => '0.25',
1198             'I18N::Langinfo' => '0.01',
1199             'IO::Dir' => '1.03_00',
1200             'IO::File' => '1.09',
1201             'IO::Handle' => '1.21_00',
1202             'IO::Pipe' => '1.122',
1203             'IO::Poll' => '0.06',
1204             'IO::Seekable' => '1.08_00',
1205             'IO::Select' => '1.15',
1206             'IO::Socket' => '1.27',
1207             'IO::Socket::INET' => '1.26',
1208             'IO::Socket::UNIX' => '1.20_00',
1209             'IPC::Msg' => '1.00_00',
1210             'IPC::Open3' => '1.0104',
1211             'IPC::Semaphore' => '1.00_00',
1212             'IPC::SysV' => '1.03_00',
1213             'List::Util' => '1.06_00',
1214             'Locale::Constants' => '2.01',
1215             'Locale::Country' => '2.01',
1216             'Locale::Currency' => '2.01',
1217             'Locale::Language' => '2.01',
1218             'Locale::Maketext' => '1.03',
1219             'Locale::Script' => '2.01',
1220             'MIME::Base64' => '2.12',
1221             'MIME::QuotedPrint' => '2.03',
1222             'Math::BigFloat' => '1.30',
1223             'Math::BigInt' => '1.54',
1224             'Math::BigInt::Calc' => '0.25',
1225             'Math::Complex' => '1.34',
1226             'Math::Trig' => '1.01',
1227             'Memoize' => '0.66',
1228             'Memoize::AnyDBM_File' => '0.65',
1229             'Memoize::Expire' => '0.66',
1230             'Memoize::ExpireFile' => '0.65',
1231             'Memoize::ExpireTest' => '0.65',
1232             'Memoize::NDBM_File' => '0.65',
1233             'Memoize::SDBM_File' => '0.65',
1234             'Memoize::Storable' => '0.65',
1235             'NEXT' => '0.50',
1236             'Net::Cmd' => '2.21',
1237             'Net::Config' => '1.10',
1238             'Net::Domain' => '2.17',
1239             'Net::FTP' => '2.64',
1240             'Net::FTP::A' => '1.15',
1241             'Net::FTP::E' => '0.01',
1242             'Net::FTP::I' => '1.12',
1243             'Net::FTP::L' => '0.01',
1244             'Net::FTP::dataconn' => '0.10',
1245             'Net::NNTP' => '2.21',
1246             'Net::Netrc' => '2.12',
1247             'Net::POP3' => '2.23',
1248             'Net::Ping' => '2.12',
1249             'Net::SMTP' => '2.21',
1250             'Net::Time' => '2.09',
1251             'Net::hostent' => '1.00',
1252             'Net::netent' => '1.00',
1253             'Net::protoent' => '1.00',
1254             'Net::servent' => '1.00',
1255             'O' => '1.00',
1256             'OS2::DLL' => '1.00',
1257             'OS2::Process' => '1.0',
1258             'OS2::REXX' => '1.01',
1259             'Opcode' => '1.05',
1260             'POSIX' => '1.05',
1261             'PerlIO' => '1.00',
1262             'PerlIO::Scalar' => '0.01',
1263             'PerlIO::Via' => '0.01',
1264             'Pod::Checker' => '1.3',
1265             'Pod::Find' => '0.22',
1266             'Pod::Functions' => '1.01',
1267             'Pod::Html' => '1.04',
1268             'Pod::LaTeX' => '0.54',
1269             'Pod::Man' => '1.32',
1270             'Pod::ParseLink' => '1.05',
1271             'Pod::Text' => '2.18',
1272             'Pod::Text::Color' => '1.03',
1273             'Pod::Text::Overstrike' => '1.08',
1274             'Pod::Text::Termcap' => '1.09',
1275             'Safe' => '2.07',
1276             'Scalar::Util' => '1.06_00',
1277             'Search::Dict' => '1.02',
1278             'SelectSaver' => '1.00',
1279             'SelfLoader' => '1.0903',
1280             'Shell' => '0.4',
1281             'Socket' => '1.75',
1282             'Storable' => '1.015',
1283             'Switch' => '2.06',
1284             'Symbol' => '1.04',
1285             'Sys::Syslog' => '0.02',
1286             'Term::ANSIColor' => '1.04',
1287             'Term::Cap' => '1.07',
1288             'Term::Complete' => '1.4',
1289             'Term::ReadLine' => '1.00',
1290             'Test' => '1.18',
1291             'Test::Builder' => '0.11',
1292             'Test::Harness' => '2.01',
1293             'Test::Harness::Assert' => '0.01',
1294             'Test::Harness::Iterator'=> '0.01',
1295             'Test::Harness::Straps' => '0.08',
1296             'Test::More' => '0.41',
1297             'Test::Simple' => '0.41',
1298             'Text::Abbrev' => '1.00',
1299             'Text::Balanced' => '1.89',
1300             'Text::ParseWords' => '3.21',
1301             'Text::Soundex' => '1.01',
1302             'Text::Wrap' => '2001.0929',
1303             'Thread' => '2.00',
1304             'Thread::Queue' => '1.00',
1305             'Thread::Semaphore' => '1.00',
1306             'Thread::Signal' => '1.00',
1307             'Thread::Specific' => '1.00',
1308             'Tie::Array' => '1.02',
1309             'Tie::File' => '0.17',
1310             'Tie::Handle' => '4.1',
1311             'Tie::Hash' => '1.00',
1312             'Tie::Memoize' => '1.0',
1313             'Tie::RefHash' => '1.3_00',
1314             'Tie::Scalar' => '1.00',
1315             'Tie::SubstrHash' => '1.00',
1316             'Time::HiRes' => '1.20_00',
1317             'Time::Local' => '1.04',
1318             'Time::gmtime' => '1.02',
1319             'Time::localtime' => '1.02',
1320             'Time::tm' => '1.00',
1321             'UNIVERSAL' => '1.00',
1322             'Unicode::Collate' => '0.10',
1323             'Unicode::Normalize' => '0.14',
1324             'Unicode::UCD' => '0.2',
1325             'User::grent' => '1.00',
1326             'User::pwent' => '1.00',
1327             'VMS::DCLsym' => '1.02',
1328             'VMS::Filespec' => '1.1',
1329             'VMS::Stdio' => '2.3',
1330             'XS::Typemap' => '0.01',
1331             'attributes' => '0.04_01',
1332             'attrs' => '1.01',
1333             'autouse' => '1.03',
1334             'base' => '1.02',
1335             'blib' => '1.01',
1336             'bytes' => '1.00',
1337             'charnames' => '1.01',
1338             'constant' => '1.04',
1339             'diagnostics' => '1.1',
1340             'encoding' => '1.00',
1341             'fields' => '1.02',
1342             'filetest' => '1.00',
1343             'if' => '0.01',
1344             'integer' => '1.00',
1345             'less' => '0.01',
1346             'locale' => '1.00',
1347             'open' => '1.01',
1348             'ops' => '1.00',
1349             'overload' => '1.00',
1350             're' => '0.03',
1351             'sort' => '1.00',
1352             'strict' => '1.02',
1353             'subs' => '1.00',
1354             'threads' => '0.05',
1355             'threads::shared' => '0.90',
1356             'utf8' => '1.00',
1357             'vars' => '1.01',
1358             'vmsish' => '1.00',
1359             'warnings' => '1.00',
1360             'warnings::register' => '1.00',
1361             },
1362             removed => {
1363             }
1364             },
1365             5.008 => {
1366             delta_from => 5.007003,
1367             changed => {
1368             'Attribute::Handlers' => '0.77',
1369             'B' => '1.01',
1370             'B::Lint' => '1.01',
1371             'B::Xref' => '1.01',
1372             'CGI' => '2.81',
1373             'CGI::Carp' => '1.23',
1374             'CPAN' => '1.61',
1375             'CPAN::FirstTime' => '1.56',
1376             'CPAN::Nox' => '1.02',
1377             'Digest::MD5' => '2.20',
1378             'Dumpvalue' => '1.11',
1379             'Encode' => '1.75',
1380             'Encode::Alias' => '1.32',
1381             'Encode::Byte' => '1.22',
1382             'Encode::CJKConstants' => '1.00',
1383             'Encode::CN' => '1.24',
1384             'Encode::CN::HZ' => '1.04',
1385             'Encode::Config' => '1.06',
1386             'Encode::EBCDIC' => '1.21',
1387             'Encode::Encoder' => '0.05',
1388             'Encode::Encoding' => '1.30',
1389             'Encode::Guess' => '1.06',
1390             'Encode::JP' => '1.25',
1391             'Encode::JP::H2Z' => '1.02',
1392             'Encode::JP::JIS7' => '1.08',
1393             'Encode::KR' => '1.22',
1394             'Encode::KR::2022_KR' => '1.05',
1395             'Encode::MIME::Header' => '1.05',
1396             'Encode::Symbol' => '1.22',
1397             'Encode::TW' => '1.26',
1398             'Encode::Unicode' => '1.37',
1399             'Exporter::Heavy' => '5.566',
1400             'ExtUtils::Command' => '1.04',
1401             'ExtUtils::Command::MM' => '0.01',
1402             'ExtUtils::Constant' => '0.12',
1403             'ExtUtils::Installed' => '0.06',
1404             'ExtUtils::Liblist' => '1.00',
1405             'ExtUtils::Liblist::Kid'=> '1.29',
1406             'ExtUtils::MM' => '0.04',
1407             'ExtUtils::MM_Any' => '0.04',
1408             'ExtUtils::MM_BeOS' => '1.03',
1409             'ExtUtils::MM_Cygwin' => '1.04',
1410             'ExtUtils::MM_DOS' => '0.01',
1411             'ExtUtils::MM_MacOS' => '1.03',
1412             'ExtUtils::MM_NW5' => '2.05',
1413             'ExtUtils::MM_OS2' => '1.03',
1414             'ExtUtils::MM_UWIN' => '0.01',
1415             'ExtUtils::MM_Unix' => '1.33',
1416             'ExtUtils::MM_VMS' => '5.65',
1417             'ExtUtils::MM_Win32' => '1.05',
1418             'ExtUtils::MM_Win95' => '0.02',
1419             'ExtUtils::MY' => '0.01',
1420             'ExtUtils::MakeMaker' => '6.03',
1421             'ExtUtils::Manifest' => '1.38',
1422             'ExtUtils::Mkbootstrap' => '1.15',
1423             'ExtUtils::Mksymlists' => '1.19',
1424             'ExtUtils::testlib' => '1.15',
1425             'File::CheckTree' => '4.2',
1426             'FileCache' => '1.021',
1427             'Filter::Simple' => '0.78',
1428             'Getopt::Long' => '2.32',
1429             'Hash::Util' => '0.04',
1430             'List::Util' => '1.07_00',
1431             'Locale::Country' => '2.04',
1432             'Math::BigFloat' => '1.35',
1433             'Math::BigFloat::Trace' => '0.01',
1434             'Math::BigInt' => '1.60',
1435             'Math::BigInt::Calc' => '0.30',
1436             'Math::BigInt::Trace' => '0.01',
1437             'Math::BigRat' => '0.07',
1438             'Memoize' => '1.01',
1439             'Memoize::Expire' => '1.00',
1440             'Memoize::ExpireFile' => '1.01',
1441             'Net::FTP' => '2.65',
1442             'Net::FTP::dataconn' => '0.11',
1443             'Net::Ping' => '2.19',
1444             'Net::SMTP' => '2.24',
1445             'PerlIO' => '1.01',
1446             'PerlIO::encoding' => '0.06',
1447             'PerlIO::scalar' => '0.01',
1448             'PerlIO::via' => '0.01',
1449             'PerlIO::via::QuotedPrint'=> '0.04',
1450             'Pod::Man' => '1.33',
1451             'Pod::Text' => '2.19',
1452             'Scalar::Util' => '1.07_00',
1453             'Storable' => '2.04',
1454             'Switch' => '2.09',
1455             'Sys::Syslog' => '0.03',
1456             'Test' => '1.20',
1457             'Test::Builder' => '0.15',
1458             'Test::Harness' => '2.26',
1459             'Test::Harness::Straps' => '0.14',
1460             'Test::More' => '0.45',
1461             'Test::Simple' => '0.45',
1462             'Thread::Queue' => '2.00',
1463             'Thread::Semaphore' => '2.00',
1464             'Tie::File' => '0.93',
1465             'Tie::RefHash' => '1.30',
1466             'Unicode' => '3.2.0',
1467             'Unicode::Collate' => '0.12',
1468             'Unicode::Normalize' => '0.17',
1469             'XS::APItest' => '0.01',
1470             'attributes' => '0.05',
1471             'base' => '1.03',
1472             'bigint' => '0.02',
1473             'bignum' => '0.11',
1474             'bigrat' => '0.04',
1475             'blib' => '1.02',
1476             'encoding' => '1.35',
1477             'sort' => '1.01',
1478             'threads' => '0.99',
1479             },
1480             removed => {
1481             'Encode::Internal' => 1,
1482             'Encode::JP::Constants' => 1,
1483             'Encode::JP::ISO_2022_JP'=> 1,
1484             'Encode::JP::JIS' => 1,
1485             'Encode::JP::Tr' => 1,
1486             'Encode::Tcl' => 1,
1487             'Encode::Tcl::Escape' => 1,
1488             'Encode::Tcl::Extended' => 1,
1489             'Encode::Tcl::HanZi' => 1,
1490             'Encode::Tcl::Table' => 1,
1491             'Encode::XS' => 1,
1492             'Encode::iso10646_1' => 1,
1493             'Encode::usc2_le' => 1,
1494             'Encode::utf8' => 1,
1495             'PerlIO::Scalar' => 1,
1496             'PerlIO::Via' => 1,
1497             }
1498             },
1499             5.008001 => {
1500             delta_from => 5.008,
1501             changed => {
1502             'Attribute::Handlers' => '0.78',
1503             'AutoLoader' => '5.60',
1504             'AutoSplit' => '1.04',
1505             'B' => '1.02',
1506             'B::Asmdata' => '1.01',
1507             'B::Assembler' => '0.06',
1508             'B::Bblock' => '1.02',
1509             'B::Bytecode' => '1.01',
1510             'B::C' => '1.02',
1511             'B::Concise' => '0.56',
1512             'B::Debug' => '1.01',
1513             'B::Deparse' => '0.64',
1514             'B::Disassembler' => '1.03',
1515             'B::Lint' => '1.02',
1516             'B::Terse' => '1.02',
1517             'Benchmark' => '1.051',
1518             'ByteLoader' => '0.05',
1519             'CGI' => '3.00',
1520             'CGI::Carp' => '1.26',
1521             'CGI::Cookie' => '1.24',
1522             'CGI::Fast' => '1.041',
1523             'CGI::Pretty' => '1.07_00',
1524             'CGI::Util' => '1.31',
1525             'CPAN' => '1.76_01',
1526             'CPAN::FirstTime' => '1.60',
1527             'CPAN::Nox' => '1.03',
1528             'Class::Struct' => '0.63',
1529             'Cwd' => '2.08',
1530             'DB_File' => '1.806',
1531             'Data::Dumper' => '2.121',
1532             'Devel::DProf' => '20030813.00',
1533             'Devel::PPPort' => '2.007',
1534             'Devel::Peek' => '1.01',
1535             'Digest' => '1.02',
1536             'Digest::MD5' => '2.27',
1537             'Encode' => '1.9801',
1538             'Encode::Alias' => '1.38',
1539             'Encode::Byte' => '1.23',
1540             'Encode::CJKConstants' => '1.02',
1541             'Encode::CN::HZ' => '1.05',
1542             'Encode::Config' => '1.07',
1543             'Encode::Encoder' => '0.07',
1544             'Encode::Encoding' => '1.33',
1545             'Encode::Guess' => '1.09',
1546             'Encode::JP::JIS7' => '1.12',
1547             'Encode::KR' => '1.23',
1548             'Encode::KR::2022_KR' => '1.06',
1549             'Encode::MIME::Header' => '1.09',
1550             'Encode::Unicode' => '1.40',
1551             'Encode::Unicode::UTF7' => '0.02',
1552             'English' => '1.01',
1553             'Errno' => '1.09_00',
1554             'Exporter' => '5.567',
1555             'Exporter::Heavy' => '5.567',
1556             'ExtUtils::Command' => '1.05',
1557             'ExtUtils::Command::MM' => '0.03',
1558             'ExtUtils::Constant' => '0.14',
1559             'ExtUtils::Install' => '1.32',
1560             'ExtUtils::Installed' => '0.08',
1561             'ExtUtils::Liblist' => '1.01',
1562             'ExtUtils::Liblist::Kid'=> '1.3',
1563             'ExtUtils::MM_Any' => '0.07',
1564             'ExtUtils::MM_BeOS' => '1.04',
1565             'ExtUtils::MM_Cygwin' => '1.06',
1566             'ExtUtils::MM_DOS' => '0.02',
1567             'ExtUtils::MM_MacOS' => '1.07',
1568             'ExtUtils::MM_NW5' => '2.06',
1569             'ExtUtils::MM_OS2' => '1.04',
1570             'ExtUtils::MM_UWIN' => '0.02',
1571             'ExtUtils::MM_Unix' => '1.42',
1572             'ExtUtils::MM_VMS' => '5.70',
1573             'ExtUtils::MM_Win32' => '1.09',
1574             'ExtUtils::MM_Win95' => '0.03',
1575             'ExtUtils::MakeMaker' => '6.17',
1576             'ExtUtils::MakeMaker::bytes'=> '0.01',
1577             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1578             'ExtUtils::Manifest' => '1.42',
1579             'Fcntl' => '1.05',
1580             'File::Basename' => '2.72',
1581             'File::Copy' => '2.06',
1582             'File::Find' => '1.05',
1583             'File::Glob' => '1.02',
1584             'File::Path' => '1.06',
1585             'File::Spec' => '0.86',
1586             'File::Spec::Cygwin' => '1.1',
1587             'File::Spec::Epoc' => '1.1',
1588             'File::Spec::Functions' => '1.3',
1589             'File::Spec::Mac' => '1.4',
1590             'File::Spec::OS2' => '1.2',
1591             'File::Spec::Unix' => '1.5',
1592             'File::Spec::VMS' => '1.4',
1593             'File::Spec::Win32' => '1.4',
1594             'File::Temp' => '0.14',
1595             'FileCache' => '1.03',
1596             'Filter::Util::Call' => '1.0601',
1597             'GDBM_File' => '1.07',
1598             'Getopt::Long' => '2.34',
1599             'Getopt::Std' => '1.04',
1600             'Hash::Util' => '0.05',
1601             'I18N::LangTags' => '0.28',
1602             'I18N::LangTags::List' => '0.26',
1603             'I18N::Langinfo' => '0.02',
1604             'IO' => '1.21',
1605             'IO::Dir' => '1.04',
1606             'IO::File' => '1.10',
1607             'IO::Handle' => '1.23',
1608             'IO::Seekable' => '1.09',
1609             'IO::Select' => '1.16',
1610             'IO::Socket' => '1.28',
1611             'IO::Socket::INET' => '1.27',
1612             'IO::Socket::UNIX' => '1.21',
1613             'IPC::Msg' => '1.02',
1614             'IPC::Open3' => '1.0105',
1615             'IPC::Semaphore' => '1.02',
1616             'IPC::SysV' => '1.04',
1617             'JNI' => '0.2',
1618             'List::Util' => '1.13',
1619             'Locale::Country' => '2.61',
1620             'Locale::Currency' => '2.21',
1621             'Locale::Language' => '2.21',
1622             'Locale::Maketext' => '1.06',
1623             'Locale::Maketext::Guts'=> undef,
1624             'Locale::Maketext::GutsLoader'=> undef,
1625             'Locale::Script' => '2.21',
1626             'MIME::Base64' => '2.20',
1627             'MIME::QuotedPrint' => '2.20',
1628             'Math::BigFloat' => '1.40',
1629             'Math::BigInt' => '1.66',
1630             'Math::BigInt::Calc' => '0.36',
1631             'Math::BigInt::Scalar' => '0.11',
1632             'Math::BigRat' => '0.10',
1633             'Math::Trig' => '1.02',
1634             'NDBM_File' => '1.05',
1635             'NEXT' => '0.60',
1636             'Net::Cmd' => '2.24',
1637             'Net::Domain' => '2.18',
1638             'Net::FTP' => '2.71',
1639             'Net::FTP::A' => '1.16',
1640             'Net::NNTP' => '2.22',
1641             'Net::POP3' => '2.24',
1642             'Net::Ping' => '2.31',
1643             'Net::SMTP' => '2.26',
1644             'Net::hostent' => '1.01',
1645             'Net::servent' => '1.01',
1646             'ODBM_File' => '1.04',
1647             'OS2::DLL' => '1.01',
1648             'OS2::ExtAttr' => '0.02',
1649             'OS2::PrfDB' => '0.03',
1650             'OS2::Process' => '1.01',
1651             'OS2::REXX' => '1.02',
1652             'POSIX' => '1.06',
1653             'PerlIO' => '1.02',
1654             'PerlIO::encoding' => '0.07',
1655             'PerlIO::scalar' => '0.02',
1656             'PerlIO::via' => '0.02',
1657             'PerlIO::via::QuotedPrint'=> '0.05',
1658             'Pod::Checker' => '1.41',
1659             'Pod::Find' => '0.24',
1660             'Pod::Functions' => '1.02',
1661             'Pod::Html' => '1.0501',
1662             'Pod::InputObjects' => '1.14',
1663             'Pod::LaTeX' => '0.55',
1664             'Pod::Man' => '1.37',
1665             'Pod::ParseLink' => '1.06',
1666             'Pod::ParseUtils' => '0.3',
1667             'Pod::Perldoc' => '3.10',
1668             'Pod::Perldoc::BaseTo' => undef,
1669             'Pod::Perldoc::GetOptsOO'=> undef,
1670             'Pod::Perldoc::ToChecker'=> undef,
1671             'Pod::Perldoc::ToMan' => undef,
1672             'Pod::Perldoc::ToNroff' => undef,
1673             'Pod::Perldoc::ToPod' => undef,
1674             'Pod::Perldoc::ToRtf' => undef,
1675             'Pod::Perldoc::ToText' => undef,
1676             'Pod::Perldoc::ToTk' => undef,
1677             'Pod::Perldoc::ToXml' => undef,
1678             'Pod::PlainText' => '2.01',
1679             'Pod::Text' => '2.21',
1680             'Pod::Text::Color' => '1.04',
1681             'Pod::Text::Overstrike' => '1.1',
1682             'Pod::Text::Termcap' => '1.11',
1683             'Pod::Usage' => '1.16',
1684             'SDBM_File' => '1.04',
1685             'Safe' => '2.10',
1686             'Scalar::Util' => '1.13',
1687             'SelfLoader' => '1.0904',
1688             'Shell' => '0.5',
1689             'Socket' => '1.76',
1690             'Storable' => '2.08',
1691             'Switch' => '2.10',
1692             'Symbol' => '1.05',
1693             'Sys::Hostname' => '1.11',
1694             'Sys::Syslog' => '0.04',
1695             'Term::ANSIColor' => '1.07',
1696             'Term::Cap' => '1.08',
1697             'Term::Complete' => '1.401',
1698             'Term::ReadLine' => '1.01',
1699             'Test' => '1.24',
1700             'Test::Builder' => '0.17',
1701             'Test::Harness' => '2.30',
1702             'Test::Harness::Straps' => '0.15',
1703             'Test::More' => '0.47',
1704             'Test::Simple' => '0.47',
1705             'Text::Abbrev' => '1.01',
1706             'Text::Balanced' => '1.95',
1707             'Text::Wrap' => '2001.09291',
1708             'Thread::Semaphore' => '2.01',
1709             'Tie::Array' => '1.03',
1710             'Tie::File' => '0.97',
1711             'Tie::RefHash' => '1.31',
1712             'Time::HiRes' => '1.51',
1713             'Time::Local' => '1.07',
1714             'UNIVERSAL' => '1.01',
1715             'Unicode' => '4.0.0',
1716             'Unicode::Collate' => '0.28',
1717             'Unicode::Normalize' => '0.23',
1718             'Unicode::UCD' => '0.21',
1719             'VMS::Filespec' => '1.11',
1720             'XS::APItest' => '0.02',
1721             'XSLoader' => '0.02',
1722             'attributes' => '0.06',
1723             'base' => '2.03',
1724             'bigint' => '0.04',
1725             'bignum' => '0.14',
1726             'bigrat' => '0.06',
1727             'bytes' => '1.01',
1728             'charnames' => '1.02',
1729             'diagnostics' => '1.11',
1730             'encoding' => '1.47',
1731             'fields' => '2.03',
1732             'filetest' => '1.01',
1733             'if' => '0.03',
1734             'lib' => '0.5565',
1735             'open' => '1.02',
1736             'overload' => '1.01',
1737             're' => '0.04',
1738             'sort' => '1.02',
1739             'strict' => '1.03',
1740             'threads' => '1.00',
1741             'threads::shared' => '0.91',
1742             'utf8' => '1.02',
1743             'vmsish' => '1.01',
1744             'warnings' => '1.03',
1745             },
1746             removed => {
1747             }
1748             },
1749             5.008002 => {
1750             delta_from => 5.008001,
1751             changed => {
1752             'DB_File' => '1.807',
1753             'Devel::PPPort' => '2.009',
1754             'Digest::MD5' => '2.30',
1755             'I18N::LangTags' => '0.29',
1756             'I18N::LangTags::List' => '0.29',
1757             'MIME::Base64' => '2.21',
1758             'MIME::QuotedPrint' => '2.21',
1759             'Net::Domain' => '2.19',
1760             'Net::FTP' => '2.72',
1761             'Pod::Perldoc' => '3.11',
1762             'Time::HiRes' => '1.52',
1763             'Unicode::Collate' => '0.30',
1764             'Unicode::Normalize' => '0.25',
1765             },
1766             removed => {
1767             }
1768             },
1769             5.008003 => {
1770             delta_from => 5.008002,
1771             changed => {
1772             'Benchmark' => '1.052',
1773             'CGI' => '3.01',
1774             'CGI::Carp' => '1.27',
1775             'CGI::Fast' => '1.05',
1776             'CGI::Pretty' => '1.08',
1777             'CGI::Util' => '1.4',
1778             'Cwd' => '2.12',
1779             'DB_File' => '1.808',
1780             'Devel::PPPort' => '2.011',
1781             'Digest' => '1.05',
1782             'Digest::MD5' => '2.33',
1783             'Digest::base' => '1.00',
1784             'Encode' => '1.99',
1785             'Exporter' => '5.57',
1786             'File::CheckTree' => '4.3',
1787             'File::Copy' => '2.07',
1788             'File::Find' => '1.06',
1789             'File::Spec' => '0.87',
1790             'FindBin' => '1.44',
1791             'Getopt::Std' => '1.05',
1792             'Math::BigFloat' => '1.42',
1793             'Math::BigInt' => '1.68',
1794             'Math::BigInt::Calc' => '0.38',
1795             'Math::BigInt::CalcEmu' => '0.02',
1796             'OS2::DLL' => '1.02',
1797             'POSIX' => '1.07',
1798             'PerlIO' => '1.03',
1799             'PerlIO::via::QuotedPrint'=> '0.06',
1800             'Pod::Html' => '1.0502',
1801             'Pod::Parser' => '1.14',
1802             'Pod::Perldoc' => '3.12',
1803             'Pod::PlainText' => '2.02',
1804             'Storable' => '2.09',
1805             'Test::Harness' => '2.40',
1806             'Test::Harness::Assert' => '0.02',
1807             'Test::Harness::Iterator'=> '0.02',
1808             'Test::Harness::Straps' => '0.19',
1809             'Tie::Hash' => '1.01',
1810             'Unicode::Collate' => '0.33',
1811             'Unicode::Normalize' => '0.28',
1812             'XS::APItest' => '0.03',
1813             'base' => '2.04',
1814             'diagnostics' => '1.12',
1815             'encoding' => '1.48',
1816             'threads' => '1.01',
1817             'threads::shared' => '0.92',
1818             },
1819             removed => {
1820             'Math::BigInt::Scalar' => 1,
1821             }
1822             },
1823             5.008004 => {
1824             delta_from => 5.008003,
1825             changed => {
1826             'Attribute::Handlers' => '0.78_01',
1827             'B::Assembler' => '0.07',
1828             'B::Concise' => '0.60',
1829             'B::Deparse' => '0.66',
1830             'Benchmark' => '1.06',
1831             'CGI' => '3.04',
1832             'Carp' => '1.02',
1833             'Cwd' => '2.17',
1834             'DBM_Filter' => '0.01',
1835             'DBM_Filter::compress' => '0.01',
1836             'DBM_Filter::encode' => '0.01',
1837             'DBM_Filter::int32' => '0.01',
1838             'DBM_Filter::null' => '0.01',
1839             'DBM_Filter::utf8' => '0.01',
1840             'Digest' => '1.06',
1841             'DynaLoader' => '1.05',
1842             'Encode' => '1.99_01',
1843             'Encode::CN::HZ' => '1.0501',
1844             'Exporter' => '5.58',
1845             'Exporter::Heavy' => '5.57',
1846             'ExtUtils::Liblist::Kid'=> '1.3001',
1847             'ExtUtils::MM_NW5' => '2.07_02',
1848             'ExtUtils::MM_Win95' => '0.0301',
1849             'File::Find' => '1.07',
1850             'IO::Handle' => '1.24',
1851             'IO::Pipe' => '1.123',
1852             'IPC::Open3' => '1.0106',
1853             'Locale::Maketext' => '1.08',
1854             'MIME::Base64' => '3.01',
1855             'MIME::QuotedPrint' => '3.01',
1856             'Math::BigFloat' => '1.44',
1857             'Math::BigInt' => '1.70',
1858             'Math::BigInt::Calc' => '0.40',
1859             'Math::BigInt::CalcEmu' => '0.04',
1860             'Math::BigRat' => '0.12',
1861             'ODBM_File' => '1.05',
1862             'POSIX' => '1.08',
1863             'Shell' => '0.5.2',
1864             'Socket' => '1.77',
1865             'Storable' => '2.12',
1866             'Sys::Syslog' => '0.05',
1867             'Term::ANSIColor' => '1.08',
1868             'Time::HiRes' => '1.59',
1869             'Unicode' => '4.0.1',
1870             'Unicode::UCD' => '0.22',
1871             'Win32' => '0.23',
1872             'base' => '2.05',
1873             'bigint' => '0.05',
1874             'bignum' => '0.15',
1875             'charnames' => '1.03',
1876             'open' => '1.03',
1877             'threads' => '1.03',
1878             'utf8' => '1.03',
1879             },
1880             removed => {
1881             }
1882             },
1883             5.008005 => {
1884             delta_from => 5.008004,
1885             changed => {
1886             'B::Concise' => '0.61',
1887             'B::Deparse' => '0.67',
1888             'CGI' => '3.05',
1889             'CGI::Carp' => '1.28',
1890             'CGI::Util' => '1.5',
1891             'Carp' => '1.03',
1892             'Carp::Heavy' => '1.03',
1893             'Cwd' => '2.19',
1894             'DB_File' => '1.809',
1895             'Digest' => '1.08',
1896             'Encode' => '2.01',
1897             'Encode::Alias' => '2.00',
1898             'Encode::Byte' => '2.00',
1899             'Encode::CJKConstants' => '2.00',
1900             'Encode::CN' => '2.00',
1901             'Encode::CN::HZ' => '2.01',
1902             'Encode::Config' => '2.00',
1903             'Encode::EBCDIC' => '2.00',
1904             'Encode::Encoder' => '2.00',
1905             'Encode::Encoding' => '2.00',
1906             'Encode::Guess' => '2.00',
1907             'Encode::JP' => '2.00',
1908             'Encode::JP::H2Z' => '2.00',
1909             'Encode::JP::JIS7' => '2.00',
1910             'Encode::KR' => '2.00',
1911             'Encode::KR::2022_KR' => '2.00',
1912             'Encode::MIME::Header' => '2.00',
1913             'Encode::Symbol' => '2.00',
1914             'Encode::TW' => '2.00',
1915             'Encode::Unicode' => '2.00',
1916             'Encode::Unicode::UTF7' => '2.01',
1917             'File::Basename' => '2.73',
1918             'File::Copy' => '2.08',
1919             'File::Glob' => '1.03',
1920             'FileCache' => '1.04_01',
1921             'I18N::LangTags' => '0.33',
1922             'I18N::LangTags::Detect'=> '1.03',
1923             'List::Util' => '1.14',
1924             'Locale::Constants' => '2.07',
1925             'Locale::Country' => '2.07',
1926             'Locale::Currency' => '2.07',
1927             'Locale::Language' => '2.07',
1928             'Locale::Maketext' => '1.09',
1929             'Locale::Script' => '2.07',
1930             'Net::Cmd' => '2.26',
1931             'Net::FTP' => '2.75',
1932             'Net::NNTP' => '2.23',
1933             'Net::POP3' => '2.28',
1934             'Net::SMTP' => '2.29',
1935             'Net::Time' => '2.10',
1936             'Pod::Checker' => '1.42',
1937             'Pod::Find' => '0.2401',
1938             'Pod::LaTeX' => '0.56',
1939             'Pod::ParseUtils' => '1.2',
1940             'Pod::Perldoc' => '3.13',
1941             'Safe' => '2.11',
1942             'Scalar::Util' => '1.14',
1943             'Shell' => '0.6',
1944             'Storable' => '2.13',
1945             'Term::Cap' => '1.09',
1946             'Test' => '1.25',
1947             'Test::Harness' => '2.42',
1948             'Text::ParseWords' => '3.22',
1949             'Text::Wrap' => '2001.09292',
1950             'Time::Local' => '1.10',
1951             'Unicode::Collate' => '0.40',
1952             'Unicode::Normalize' => '0.30',
1953             'XS::APItest' => '0.04',
1954             'autouse' => '1.04',
1955             'base' => '2.06',
1956             'charnames' => '1.04',
1957             'diagnostics' => '1.13',
1958             'encoding' => '2.00',
1959             'threads' => '1.05',
1960             'utf8' => '1.04',
1961             },
1962             removed => {
1963             }
1964             },
1965             5.008006 => {
1966             delta_from => 5.008005,
1967             changed => {
1968             'B' => '1.07',
1969             'B::C' => '1.04',
1970             'B::Concise' => '0.64',
1971             'B::Debug' => '1.02',
1972             'B::Deparse' => '0.69',
1973             'B::Lint' => '1.03',
1974             'B::Showlex' => '1.02',
1975             'Cwd' => '3.01',
1976             'DB_File' => '1.810',
1977             'Data::Dumper' => '2.121_02',
1978             'Devel::PPPort' => '3.03',
1979             'Devel::Peek' => '1.02',
1980             'Encode' => '2.08',
1981             'Encode::Alias' => '2.02',
1982             'Encode::Encoding' => '2.02',
1983             'Encode::JP' => '2.01',
1984             'Encode::Unicode' => '2.02',
1985             'Exporter::Heavy' => '5.58',
1986             'ExtUtils::Constant' => '0.1401',
1987             'File::Spec' => '3.01',
1988             'File::Spec::Win32' => '1.5',
1989             'I18N::LangTags' => '0.35',
1990             'I18N::LangTags::List' => '0.35',
1991             'MIME::Base64' => '3.05',
1992             'MIME::QuotedPrint' => '3.03',
1993             'Math::BigFloat' => '1.47',
1994             'Math::BigInt' => '1.73',
1995             'Math::BigInt::Calc' => '0.43',
1996             'Math::BigRat' => '0.13',
1997             'Text::ParseWords' => '3.23',
1998             'Time::HiRes' => '1.65',
1999             'XS::APItest' => '0.05',
2000             'diagnostics' => '1.14',
2001             'encoding' => '2.01',
2002             'open' => '1.04',
2003             'overload' => '1.02',
2004             },
2005             removed => {
2006             }
2007             },
2008             5.008007 => {
2009             delta_from => 5.008006,
2010             changed => {
2011             'B' => '1.09',
2012             'B::Concise' => '0.65',
2013             'B::Deparse' => '0.7',
2014             'B::Disassembler' => '1.04',
2015             'B::Terse' => '1.03',
2016             'Benchmark' => '1.07',
2017             'CGI' => '3.10',
2018             'CGI::Carp' => '1.29',
2019             'CGI::Cookie' => '1.25',
2020             'Carp' => '1.04',
2021             'Carp::Heavy' => '1.04',
2022             'Class::ISA' => '0.33',
2023             'Cwd' => '3.05',
2024             'DB_File' => '1.811',
2025             'Data::Dumper' => '2.121_04',
2026             'Devel::DProf' => '20050310.00',
2027             'Devel::PPPort' => '3.06',
2028             'Digest' => '1.10',
2029             'Digest::file' => '0.01',
2030             'Encode' => '2.10',
2031             'Encode::Alias' => '2.03',
2032             'Errno' => '1.09_01',
2033             'ExtUtils::Constant' => '0.16',
2034             'ExtUtils::Constant::Base'=> '0.01',
2035             'ExtUtils::Constant::Utils'=> '0.01',
2036             'ExtUtils::Constant::XS'=> '0.01',
2037             'File::Find' => '1.09',
2038             'File::Glob' => '1.04',
2039             'File::Path' => '1.07',
2040             'File::Spec' => '3.05',
2041             'File::Temp' => '0.16',
2042             'FileCache' => '1.05',
2043             'IO::File' => '1.11',
2044             'IO::Socket::INET' => '1.28',
2045             'Math::BigFloat' => '1.51',
2046             'Math::BigInt' => '1.77',
2047             'Math::BigInt::Calc' => '0.47',
2048             'Math::BigInt::CalcEmu' => '0.05',
2049             'Math::BigRat' => '0.15',
2050             'Pod::Find' => '1.3',
2051             'Pod::Html' => '1.0503',
2052             'Pod::InputObjects' => '1.3',
2053             'Pod::LaTeX' => '0.58',
2054             'Pod::ParseUtils' => '1.3',
2055             'Pod::Parser' => '1.3',
2056             'Pod::Perldoc' => '3.14',
2057             'Pod::Select' => '1.3',
2058             'Pod::Usage' => '1.3',
2059             'SelectSaver' => '1.01',
2060             'Symbol' => '1.06',
2061             'Sys::Syslog' => '0.06',
2062             'Term::ANSIColor' => '1.09',
2063             'Term::Complete' => '1.402',
2064             'Test::Builder' => '0.22',
2065             'Test::Harness' => '2.48',
2066             'Test::Harness::Point' => '0.01',
2067             'Test::Harness::Straps' => '0.23',
2068             'Test::More' => '0.54',
2069             'Test::Simple' => '0.54',
2070             'Text::ParseWords' => '3.24',
2071             'Text::Wrap' => '2001.09293',
2072             'Tie::RefHash' => '1.32',
2073             'Time::HiRes' => '1.66',
2074             'Time::Local' => '1.11',
2075             'Unicode' => '4.1.0',
2076             'Unicode::Normalize' => '0.32',
2077             'Unicode::UCD' => '0.23',
2078             'Win32' => '0.24',
2079             'XS::APItest' => '0.06',
2080             'base' => '2.07',
2081             'bigint' => '0.07',
2082             'bignum' => '0.17',
2083             'bigrat' => '0.08',
2084             'bytes' => '1.02',
2085             'constant' => '1.05',
2086             'overload' => '1.03',
2087             'threads::shared' => '0.93',
2088             'utf8' => '1.05',
2089             },
2090             removed => {
2091             'JNI' => 1,
2092             'JPL::AutoLoader' => 1,
2093             'JPL::Class' => 1,
2094             'JPL::Compile' => 1,
2095             }
2096             },
2097             5.008008 => {
2098             delta_from => 5.008007,
2099             changed => {
2100             'Attribute::Handlers' => '0.78_02',
2101             'B' => '1.09_01',
2102             'B::Bblock' => '1.02_01',
2103             'B::Bytecode' => '1.01_01',
2104             'B::C' => '1.04_01',
2105             'B::CC' => '1.00_01',
2106             'B::Concise' => '0.66',
2107             'B::Debug' => '1.02_01',
2108             'B::Deparse' => '0.71',
2109             'B::Disassembler' => '1.05',
2110             'B::Terse' => '1.03_01',
2111             'ByteLoader' => '0.06',
2112             'CGI' => '3.15',
2113             'CGI::Cookie' => '1.26',
2114             'CPAN' => '1.76_02',
2115             'Cwd' => '3.12',
2116             'DB' => '1.01',
2117             'DB_File' => '1.814',
2118             'Data::Dumper' => '2.121_08',
2119             'Devel::DProf' => '20050603.00',
2120             'Devel::PPPort' => '3.06_01',
2121             'Devel::Peek' => '1.03',
2122             'Digest' => '1.14',
2123             'Digest::MD5' => '2.36',
2124             'Digest::file' => '1.00',
2125             'Dumpvalue' => '1.12',
2126             'Encode' => '2.12',
2127             'Encode::Alias' => '2.04',
2128             'Encode::Config' => '2.01',
2129             'Encode::MIME::Header' => '2.01',
2130             'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2131             'English' => '1.02',
2132             'ExtUtils::Command' => '1.09',
2133             'ExtUtils::Command::MM' => '0.05',
2134             'ExtUtils::Constant' => '0.17',
2135             'ExtUtils::Embed' => '1.26',
2136             'ExtUtils::Install' => '1.33',
2137             'ExtUtils::Liblist::Kid'=> '1.3',
2138             'ExtUtils::MM' => '0.05',
2139             'ExtUtils::MM_AIX' => '0.03',
2140             'ExtUtils::MM_Any' => '0.13',
2141             'ExtUtils::MM_BeOS' => '1.05',
2142             'ExtUtils::MM_Cygwin' => '1.08',
2143             'ExtUtils::MM_MacOS' => '1.08',
2144             'ExtUtils::MM_NW5' => '2.08',
2145             'ExtUtils::MM_OS2' => '1.05',
2146             'ExtUtils::MM_QNX' => '0.02',
2147             'ExtUtils::MM_Unix' => '1.50',
2148             'ExtUtils::MM_VMS' => '5.73',
2149             'ExtUtils::MM_VOS' => '0.02',
2150             'ExtUtils::MM_Win32' => '1.12',
2151             'ExtUtils::MM_Win95' => '0.04',
2152             'ExtUtils::MakeMaker' => '6.30',
2153             'ExtUtils::MakeMaker::Config'=> '0.02',
2154             'ExtUtils::Manifest' => '1.46',
2155             'File::Basename' => '2.74',
2156             'File::Copy' => '2.09',
2157             'File::Find' => '1.10',
2158             'File::Glob' => '1.05',
2159             'File::Path' => '1.08',
2160             'File::Spec' => '3.12',
2161             'File::Spec::Win32' => '1.6',
2162             'FileCache' => '1.06',
2163             'Filter::Simple' => '0.82',
2164             'FindBin' => '1.47',
2165             'GDBM_File' => '1.08',
2166             'Getopt::Long' => '2.35',
2167             'IO' => '1.22',
2168             'IO::Dir' => '1.05',
2169             'IO::File' => '1.13',
2170             'IO::Handle' => '1.25',
2171             'IO::Pipe' => '1.13',
2172             'IO::Poll' => '0.07',
2173             'IO::Seekable' => '1.10',
2174             'IO::Select' => '1.17',
2175             'IO::Socket' => '1.29',
2176             'IO::Socket::INET' => '1.29',
2177             'IO::Socket::UNIX' => '1.22',
2178             'IPC::Open2' => '1.02',
2179             'IPC::Open3' => '1.02',
2180             'List::Util' => '1.18',
2181             'MIME::Base64' => '3.07',
2182             'MIME::QuotedPrint' => '3.07',
2183             'Math::Complex' => '1.35',
2184             'Math::Trig' => '1.03',
2185             'NDBM_File' => '1.06',
2186             'ODBM_File' => '1.06',
2187             'OS2::PrfDB' => '0.04',
2188             'OS2::Process' => '1.02',
2189             'OS2::REXX' => '1.03',
2190             'Opcode' => '1.06',
2191             'POSIX' => '1.09',
2192             'PerlIO' => '1.04',
2193             'PerlIO::encoding' => '0.09',
2194             'PerlIO::scalar' => '0.04',
2195             'PerlIO::via' => '0.03',
2196             'Pod::Checker' => '1.43',
2197             'Pod::Find' => '1.34',
2198             'Pod::Functions' => '1.03',
2199             'Pod::Html' => '1.0504',
2200             'Pod::ParseUtils' => '1.33',
2201             'Pod::Parser' => '1.32',
2202             'Pod::Usage' => '1.33',
2203             'SDBM_File' => '1.05',
2204             'Safe' => '2.12',
2205             'Scalar::Util' => '1.18',
2206             'Socket' => '1.78',
2207             'Storable' => '2.15',
2208             'Switch' => '2.10_01',
2209             'Sys::Syslog' => '0.13',
2210             'Term::ANSIColor' => '1.10',
2211             'Term::ReadLine' => '1.02',
2212             'Test::Builder' => '0.32',
2213             'Test::Builder::Module' => '0.02',
2214             'Test::Builder::Tester' => '1.02',
2215             'Test::Builder::Tester::Color'=> undef,
2216             'Test::Harness' => '2.56',
2217             'Test::Harness::Straps' => '0.26',
2218             'Test::More' => '0.62',
2219             'Test::Simple' => '0.62',
2220             'Text::Tabs' => '2005.0824',
2221             'Text::Wrap' => '2005.082401',
2222             'Tie::Hash' => '1.02',
2223             'Time::HiRes' => '1.86',
2224             'Unicode::Collate' => '0.52',
2225             'Unicode::UCD' => '0.24',
2226             'User::grent' => '1.01',
2227             'Win32' => '0.2601',
2228             'XS::APItest' => '0.08',
2229             'XS::Typemap' => '0.02',
2230             'XSLoader' => '0.06',
2231             'attrs' => '1.02',
2232             'autouse' => '1.05',
2233             'blib' => '1.03',
2234             'charnames' => '1.05',
2235             'diagnostics' => '1.15',
2236             'encoding' => '2.02',
2237             'if' => '0.05',
2238             'open' => '1.05',
2239             'ops' => '1.01',
2240             'overload' => '1.04',
2241             're' => '0.05',
2242             'threads' => '1.07',
2243             'threads::shared' => '0.94',
2244             'utf8' => '1.06',
2245             'vmsish' => '1.02',
2246             'warnings' => '1.05',
2247             'warnings::register' => '1.01',
2248             },
2249             removed => {
2250             }
2251             },
2252             5.008009 => {
2253             delta_from => 5.008008,
2254             changed => {
2255             'Attribute::Handlers' => '0.78_03',
2256             'AutoLoader' => '5.67',
2257             'AutoSplit' => '1.06',
2258             'B' => '1.19',
2259             'B::Asmdata' => '1.02',
2260             'B::Assembler' => '0.08',
2261             'B::C' => '1.05',
2262             'B::Concise' => '0.76',
2263             'B::Debug' => '1.05',
2264             'B::Deparse' => '0.87',
2265             'B::Lint' => '1.11',
2266             'B::Lint::Debug' => undef,
2267             'B::Terse' => '1.05',
2268             'Benchmark' => '1.1',
2269             'CGI' => '3.42',
2270             'CGI::Carp' => '1.30_01',
2271             'CGI::Cookie' => '1.29',
2272             'CGI::Fast' => '1.07',
2273             'CGI::Util' => '1.5_01',
2274             'CPAN' => '1.9301',
2275             'CPAN::Debug' => '5.5',
2276             'CPAN::DeferedCode' => '5.50',
2277             'CPAN::Distroprefs' => '6',
2278             'CPAN::FirstTime' => '5.5_01',
2279             'CPAN::HandleConfig' => '5.5',
2280             'CPAN::Kwalify' => '5.50',
2281             'CPAN::Nox' => '5.50',
2282             'CPAN::Queue' => '5.5',
2283             'CPAN::Tarzip' => '5.5',
2284             'CPAN::Version' => '5.5',
2285             'Carp' => '1.10',
2286             'Carp::Heavy' => '1.10',
2287             'Cwd' => '3.29',
2288             'DBM_Filter' => '0.02',
2289             'DBM_Filter::compress' => '0.02',
2290             'DBM_Filter::encode' => '0.02',
2291             'DBM_Filter::int32' => '0.02',
2292             'DBM_Filter::null' => '0.02',
2293             'DBM_Filter::utf8' => '0.02',
2294             'DB_File' => '1.817',
2295             'Data::Dumper' => '2.121_17',
2296             'Devel::DProf' => '20080331.00',
2297             'Devel::InnerPackage' => '0.3',
2298             'Devel::PPPort' => '3.14',
2299             'Devel::Peek' => '1.04',
2300             'Digest' => '1.15',
2301             'Digest::MD5' => '2.37',
2302             'DirHandle' => '1.02',
2303             'DynaLoader' => '1.09',
2304             'Encode' => '2.26',
2305             'Encode::Alias' => '2.10',
2306             'Encode::Byte' => '2.03',
2307             'Encode::CJKConstants' => '2.02',
2308             'Encode::CN' => '2.02',
2309             'Encode::CN::HZ' => '2.05',
2310             'Encode::Config' => '2.05',
2311             'Encode::EBCDIC' => '2.02',
2312             'Encode::Encoder' => '2.01',
2313             'Encode::Encoding' => '2.05',
2314             'Encode::GSM0338' => '2.01',
2315             'Encode::Guess' => '2.02',
2316             'Encode::JP' => '2.03',
2317             'Encode::JP::H2Z' => '2.02',
2318             'Encode::JP::JIS7' => '2.04',
2319             'Encode::KR' => '2.02',
2320             'Encode::KR::2022_KR' => '2.02',
2321             'Encode::MIME::Header' => '2.05',
2322             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2323             'Encode::MIME::Name' => '1.01',
2324             'Encode::Symbol' => '2.02',
2325             'Encode::TW' => '2.02',
2326             'Encode::Unicode' => '2.05',
2327             'Encode::Unicode::UTF7' => '2.04',
2328             'English' => '1.03',
2329             'Errno' => '1.10',
2330             'Exporter' => '5.63',
2331             'Exporter::Heavy' => '5.63',
2332             'ExtUtils::Command' => '1.15',
2333             'ExtUtils::Command::MM' => '6.48',
2334             'ExtUtils::Constant' => '0.21',
2335             'ExtUtils::Constant::Base'=> '0.04',
2336             'ExtUtils::Constant::ProxySubs'=> '0.06',
2337             'ExtUtils::Constant::Utils'=> '0.02',
2338             'ExtUtils::Constant::XS'=> '0.02',
2339             'ExtUtils::Embed' => '1.28',
2340             'ExtUtils::Install' => '1.50_01',
2341             'ExtUtils::Installed' => '1.43',
2342             'ExtUtils::Liblist' => '6.48',
2343             'ExtUtils::Liblist::Kid'=> '6.48',
2344             'ExtUtils::MM' => '6.48',
2345             'ExtUtils::MM_AIX' => '6.48',
2346             'ExtUtils::MM_Any' => '6.48',
2347             'ExtUtils::MM_BeOS' => '6.48',
2348             'ExtUtils::MM_Cygwin' => '6.48',
2349             'ExtUtils::MM_DOS' => '6.48',
2350             'ExtUtils::MM_Darwin' => '6.48',
2351             'ExtUtils::MM_MacOS' => '6.48',
2352             'ExtUtils::MM_NW5' => '6.48',
2353             'ExtUtils::MM_OS2' => '6.48',
2354             'ExtUtils::MM_QNX' => '6.48',
2355             'ExtUtils::MM_UWIN' => '6.48',
2356             'ExtUtils::MM_Unix' => '6.48',
2357             'ExtUtils::MM_VMS' => '6.48',
2358             'ExtUtils::MM_VOS' => '6.48',
2359             'ExtUtils::MM_Win32' => '6.48',
2360             'ExtUtils::MM_Win95' => '6.48',
2361             'ExtUtils::MY' => '6.48',
2362             'ExtUtils::MakeMaker' => '6.48',
2363             'ExtUtils::MakeMaker::Config'=> '6.48',
2364             'ExtUtils::MakeMaker::bytes'=> '6.48',
2365             'ExtUtils::MakeMaker::vmsish'=> '6.48',
2366             'ExtUtils::Manifest' => '1.55',
2367             'ExtUtils::Mkbootstrap' => '6.48',
2368             'ExtUtils::Mksymlists' => '6.48',
2369             'ExtUtils::Packlist' => '1.43',
2370             'ExtUtils::ParseXS' => '2.19',
2371             'ExtUtils::XSSymSet' => '1.1',
2372             'ExtUtils::testlib' => '6.48',
2373             'Fatal' => '1.06',
2374             'Fcntl' => '1.06',
2375             'File::Basename' => '2.77',
2376             'File::CheckTree' => '4.4',
2377             'File::Compare' => '1.1005',
2378             'File::Copy' => '2.13',
2379             'File::DosGlob' => '1.01',
2380             'File::Find' => '1.13',
2381             'File::Glob' => '1.06',
2382             'File::Path' => '2.07_02',
2383             'File::Spec' => '3.29',
2384             'File::Spec::Cygwin' => '3.29',
2385             'File::Spec::Epoc' => '3.29',
2386             'File::Spec::Functions' => '3.29',
2387             'File::Spec::Mac' => '3.29',
2388             'File::Spec::OS2' => '3.29',
2389             'File::Spec::Unix' => '3.29',
2390             'File::Spec::VMS' => '3.29',
2391             'File::Spec::Win32' => '3.29',
2392             'File::Temp' => '0.20',
2393             'File::stat' => '1.01',
2394             'FileCache' => '1.07',
2395             'Filter::Simple' => '0.83',
2396             'Filter::Util::Call' => '1.07',
2397             'FindBin' => '1.49',
2398             'GDBM_File' => '1.09',
2399             'Getopt::Long' => '2.37',
2400             'Getopt::Std' => '1.06',
2401             'Hash::Util' => '0.06',
2402             'IO' => '1.23',
2403             'IO::Dir' => '1.06',
2404             'IO::File' => '1.14',
2405             'IO::Handle' => '1.27',
2406             'IO::Socket' => '1.30',
2407             'IO::Socket::INET' => '1.31',
2408             'IO::Socket::UNIX' => '1.23',
2409             'IPC::Msg' => '2.00',
2410             'IPC::Open2' => '1.03',
2411             'IPC::Open3' => '1.03',
2412             'IPC::Semaphore' => '2.00',
2413             'IPC::SharedMem' => '2.00',
2414             'IPC::SysV' => '2.00',
2415             'List::Util' => '1.19',
2416             'Locale::Maketext' => '1.13',
2417             'Locale::Maketext::Guts'=> '1.13',
2418             'Locale::Maketext::GutsLoader'=> '1.13',
2419             'Math::BigFloat' => '1.60',
2420             'Math::BigInt' => '1.89',
2421             'Math::BigInt::Calc' => '0.52',
2422             'Math::BigRat' => '0.22',
2423             'Math::Complex' => '1.54',
2424             'Math::Trig' => '1.18',
2425             'Module::CoreList' => '2.17',
2426             'Module::Pluggable' => '3.8',
2427             'Module::Pluggable::Object'=> '3.6',
2428             'NDBM_File' => '1.07',
2429             'NEXT' => '0.61',
2430             'Net::Cmd' => '2.29',
2431             'Net::Config' => '1.11',
2432             'Net::Domain' => '2.20',
2433             'Net::FTP' => '2.77',
2434             'Net::FTP::A' => '1.18',
2435             'Net::NNTP' => '2.24',
2436             'Net::POP3' => '2.29',
2437             'Net::Ping' => '2.35',
2438             'Net::SMTP' => '2.31',
2439             'O' => '1.01',
2440             'ODBM_File' => '1.07',
2441             'OS2::DLL' => '1.03',
2442             'OS2::Process' => '1.03',
2443             'Opcode' => '1.0601',
2444             'POSIX' => '1.15',
2445             'PerlIO' => '1.05',
2446             'PerlIO::encoding' => '0.11',
2447             'PerlIO::scalar' => '0.06',
2448             'PerlIO::via' => '0.05',
2449             'Pod::Html' => '1.09',
2450             'Pod::ParseUtils' => '1.35',
2451             'Pod::Parser' => '1.35',
2452             'Pod::Select' => '1.35',
2453             'Pod::Usage' => '1.35',
2454             'SDBM_File' => '1.06',
2455             'Safe' => '2.16',
2456             'Scalar::Util' => '1.19',
2457             'SelfLoader' => '1.17',
2458             'Shell' => '0.72',
2459             'Socket' => '1.81',
2460             'Storable' => '2.19',
2461             'Switch' => '2.13',
2462             'Sys::Syslog' => '0.27',
2463             'Sys::Syslog::win32::Win32'=> undef,
2464             'Term::ANSIColor' => '1.12',
2465             'Term::Cap' => '1.12',
2466             'Term::ReadLine' => '1.03',
2467             'Test::Builder' => '0.80',
2468             'Test::Builder::Module' => '0.80',
2469             'Test::Builder::Tester' => '1.13',
2470             'Test::Harness' => '2.64',
2471             'Test::Harness::Results'=> '0.01_01',
2472             'Test::Harness::Straps' => '0.26_01',
2473             'Test::Harness::Util' => '0.01',
2474             'Test::More' => '0.80',
2475             'Test::Simple' => '0.80',
2476             'Text::Balanced' => '1.98',
2477             'Text::ParseWords' => '3.27',
2478             'Text::Soundex' => '3.03',
2479             'Text::Tabs' => '2007.1117',
2480             'Text::Wrap' => '2006.1117',
2481             'Thread' => '2.01',
2482             'Thread::Queue' => '2.11',
2483             'Thread::Semaphore' => '2.09',
2484             'Tie::Handle' => '4.2',
2485             'Tie::Hash' => '1.03',
2486             'Tie::Memoize' => '1.1',
2487             'Tie::RefHash' => '1.38',
2488             'Tie::Scalar' => '1.01',
2489             'Tie::StdHandle' => '4.2',
2490             'Time::HiRes' => '1.9715',
2491             'Time::Local' => '1.1901',
2492             'Time::gmtime' => '1.03',
2493             'Unicode' => '5.1.0',
2494             'Unicode::Normalize' => '1.02',
2495             'Unicode::UCD' => '0.25',
2496             'VMS::DCLsym' => '1.03',
2497             'VMS::Stdio' => '2.4',
2498             'Win32' => '0.38',
2499             'Win32API::File' => '0.1001_01',
2500             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2501             'Win32CORE' => '0.02',
2502             'XS::APItest' => '0.15',
2503             'XS::Typemap' => '0.03',
2504             'XSLoader' => '0.10',
2505             'attributes' => '0.09',
2506             'autouse' => '1.06',
2507             'base' => '2.13',
2508             'bigint' => '0.23',
2509             'bignum' => '0.23',
2510             'bigrat' => '0.23',
2511             'blib' => '1.04',
2512             'charnames' => '1.06',
2513             'constant' => '1.17',
2514             'diagnostics' => '1.16',
2515             'encoding' => '2.6_01',
2516             'fields' => '2.12',
2517             'filetest' => '1.02',
2518             'lib' => '0.61',
2519             'open' => '1.06',
2520             'ops' => '1.02',
2521             'overload' => '1.06',
2522             're' => '0.0601',
2523             'sigtrap' => '1.04',
2524             'threads' => '1.71',
2525             'threads::shared' => '1.27',
2526             'utf8' => '1.07',
2527             'warnings' => '1.05_01',
2528             },
2529             removed => {
2530             }
2531             },
2532             5.009 => {
2533             delta_from => 5.008002,
2534             changed => {
2535             'B' => '1.03',
2536             'B::C' => '1.03',
2537             'B::Concise' => '0.57',
2538             'B::Deparse' => '0.65',
2539             'DB_File' => '1.806',
2540             'Devel::PPPort' => '2.008',
2541             'English' => '1.02',
2542             'Fatal' => '1.04',
2543             'OS2::DLL' => '1.02',
2544             'Opcode' => '1.06',
2545             'Time::HiRes' => '1.51',
2546             'Unicode::Collate' => '0.28',
2547             'Unicode::Normalize' => '0.23',
2548             'XSLoader' => '0.03',
2549             'assertions' => '0.01',
2550             'assertions::activate' => '0.01',
2551             'overload' => '1.02',
2552             'version' => '0.29',
2553             },
2554             removed => {
2555             }
2556             },
2557             5.009001 => {
2558             delta_from => 5.008004,
2559             changed => {
2560             'B' => '1.05',
2561             'B::Assembler' => '0.06',
2562             'B::C' => '1.04',
2563             'B::Concise' => '0.59',
2564             'B::Debug' => '1.02',
2565             'B::Deparse' => '0.65',
2566             'DB_File' => '1.808_01',
2567             'Devel::PPPort' => '2.011_01',
2568             'Digest' => '1.05',
2569             'DynaLoader' => '1.04',
2570             'English' => '1.02',
2571             'Exporter::Heavy' => '5.567',
2572             'ExtUtils::Command' => '1.07',
2573             'ExtUtils::Liblist::Kid'=> '1.3',
2574             'ExtUtils::MM_Any' => '0.0901',
2575             'ExtUtils::MM_Cygwin' => '1.07',
2576             'ExtUtils::MM_NW5' => '2.07_01',
2577             'ExtUtils::MM_Unix' => '1.45_01',
2578             'ExtUtils::MM_VMS' => '5.71_01',
2579             'ExtUtils::MM_Win32' => '1.10_01',
2580             'ExtUtils::MM_Win95' => '0.03',
2581             'ExtUtils::MakeMaker' => '6.21_02',
2582             'ExtUtils::Manifest' => '1.43',
2583             'Fatal' => '1.04',
2584             'Getopt::Long' => '2.3401',
2585             'IO::Handle' => '1.23',
2586             'IO::Pipe' => '1.122',
2587             'IPC::Open3' => '1.0105',
2588             'MIME::Base64' => '3.00_01',
2589             'MIME::QuotedPrint' => '3.00',
2590             'Memoize' => '1.01_01',
2591             'ODBM_File' => '1.04',
2592             'Opcode' => '1.06',
2593             'POSIX' => '1.07',
2594             'Storable' => '2.11',
2595             'Time::HiRes' => '1.56',
2596             'Time::Local' => '1.07_94',
2597             'UNIVERSAL' => '1.02',
2598             'Unicode' => '4.0.0',
2599             'Unicode::UCD' => '0.21',
2600             'XSLoader' => '0.03',
2601             'assertions' => '0.01',
2602             'assertions::activate' => '0.01',
2603             'base' => '2.04',
2604             'if' => '0.0401',
2605             'open' => '1.02',
2606             'overload' => '1.02',
2607             'threads' => '1.02',
2608             'utf8' => '1.02',
2609             'version' => '0.36',
2610             },
2611             removed => {
2612             }
2613             },
2614             5.009002 => {
2615             delta_from => 5.008007,
2616             changed => {
2617             'B' => '1.07',
2618             'B::Concise' => '0.64',
2619             'B::Deparse' => '0.69',
2620             'B::Disassembler' => '1.03',
2621             'B::Terse' => '1.02',
2622             'CGI' => '3.07',
2623             'Config::Extensions' => '0.01',
2624             'Devel::DProf' => '20030813.00',
2625             'DynaLoader' => '1.07',
2626             'Encode' => '2.09',
2627             'Encode::Alias' => '2.02',
2628             'English' => '1.03',
2629             'Exporter' => '5.59',
2630             'Exporter::Heavy' => '5.59',
2631             'ExtUtils::Command' => '1.07',
2632             'ExtUtils::Command::MM' => '0.03_01',
2633             'ExtUtils::Embed' => '1.26',
2634             'ExtUtils::Liblist::Kid'=> '1.3',
2635             'ExtUtils::MM_Any' => '0.10',
2636             'ExtUtils::MM_Cygwin' => '1.07',
2637             'ExtUtils::MM_MacOS' => '1.08',
2638             'ExtUtils::MM_NW5' => '2.07',
2639             'ExtUtils::MM_Unix' => '1.46_01',
2640             'ExtUtils::MM_VMS' => '5.71',
2641             'ExtUtils::MM_Win32' => '1.10',
2642             'ExtUtils::MM_Win95' => '0.03',
2643             'ExtUtils::MakeMaker' => '6.25',
2644             'ExtUtils::Manifest' => '1.44',
2645             'Fatal' => '1.04',
2646             'File::Path' => '1.06',
2647             'FileCache' => '1.04_01',
2648             'Getopt::Long' => '2.3401',
2649             'IO::File' => '1.10',
2650             'IO::Socket::INET' => '1.27',
2651             'Math::BigFloat' => '1.49',
2652             'Math::BigInt' => '1.75',
2653             'Math::BigInt::Calc' => '0.45',
2654             'Math::BigRat' => '0.14',
2655             'Memoize' => '1.01_01',
2656             'Module::CoreList' => '1.99',
2657             'NEXT' => '0.60_01',
2658             'Opcode' => '1.06',
2659             'Pod::Html' => '1.0502',
2660             'Scalar::Util' => '1.14_1',
2661             'Storable' => '2.14',
2662             'Symbol' => '1.05',
2663             'Test::Harness' => '2.46',
2664             'Test::Harness::Straps' => '0.20_01',
2665             'Text::Balanced' => '1.95_01',
2666             'Text::Wrap' => '2001.09292',
2667             'UNIVERSAL' => '1.02',
2668             'Unicode' => '4.0.1',
2669             'Unicode::Normalize' => '0.30',
2670             'Unicode::UCD' => '0.22',
2671             'Win32' => '0.23',
2672             'XS::APItest' => '0.05',
2673             'XSLoader' => '0.03',
2674             'assertions' => '0.01',
2675             'assertions::activate' => '0.01',
2676             'base' => '2.06',
2677             'bigint' => '0.06',
2678             'bignum' => '0.16',
2679             'bigrat' => '0.07',
2680             'bytes' => '1.01',
2681             'encoding::warnings' => '0.05',
2682             'if' => '0.0401',
2683             're' => '0.05',
2684             'threads::shared' => '0.92',
2685             'utf8' => '1.04',
2686             'version' => '0.42',
2687             'warnings' => '1.04',
2688             },
2689             removed => {
2690             'Test::Harness::Point' => 1,
2691             }
2692             },
2693             5.009003 => {
2694             delta_from => 5.008008,
2695             changed => {
2696             'Archive::Tar' => '1.26_01',
2697             'Archive::Tar::Constant'=> '0.02',
2698             'Archive::Tar::File' => '0.02',
2699             'AutoSplit' => '1.04_01',
2700             'B' => '1.10',
2701             'B::Bblock' => '1.02',
2702             'B::Bytecode' => '1.01',
2703             'B::C' => '1.04',
2704             'B::CC' => '1.00',
2705             'B::Concise' => '0.67',
2706             'B::Debug' => '1.02',
2707             'B::Deparse' => '0.73',
2708             'B::Lint' => '1.04',
2709             'B::Terse' => '1.03',
2710             'CGI' => '3.15_01',
2711             'CPAN' => '1.83_58',
2712             'CPAN::Debug' => '4.44',
2713             'CPAN::FirstTime' => '4.50',
2714             'CPAN::HandleConfig' => '4.31',
2715             'CPAN::Nox' => '2.31',
2716             'CPAN::Tarzip' => '3.36',
2717             'CPAN::Version' => '2.55',
2718             'Carp' => '1.05',
2719             'Carp::Heavy' => '1.05',
2720             'Compress::Zlib' => '2.000_07',
2721             'Compress::Zlib::Common'=> '2.000_07',
2722             'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2723             'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2724             'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2725             'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2726             'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2727             'Compress::Zlib::FileConstants'=> '2.000_07',
2728             'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2729             'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2730             'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2731             'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2732             'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2733             'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2734             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2735             'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2736             'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2737             'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2738             'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2739             'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2740             'Compress::Zlib::ParseParameters'=> '2.000_07',
2741             'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2742             'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2743             'Config::Extensions' => '0.01',
2744             'Cwd' => '3.15',
2745             'Devel::PPPort' => '3.08',
2746             'Digest::SHA' => '5.32',
2747             'DirHandle' => '1.01',
2748             'DynaLoader' => '1.07',
2749             'Encode' => '2.14',
2750             'Encode::CN::HZ' => '2.02',
2751             'Encode::MIME::Header' => '2.02',
2752             'English' => '1.04',
2753             'Exporter' => '5.59',
2754             'Exporter::Heavy' => '5.59',
2755             'ExtUtils::CBuilder' => '0.15',
2756             'ExtUtils::CBuilder::Base'=> '0.12',
2757             'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2758             'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2759             'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2760             'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2761             'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2762             'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2763             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2764             'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2765             'ExtUtils::Command::MM' => '0.05_01',
2766             'ExtUtils::Constant' => '0.2',
2767             'ExtUtils::Constant::Base'=> '0.02',
2768             'ExtUtils::Constant::ProxySubs'=> '0.01',
2769             'ExtUtils::Constant::XS'=> '0.02',
2770             'ExtUtils::MM_Any' => '0.13_01',
2771             'ExtUtils::MM_Unix' => '1.50_01',
2772             'ExtUtils::MakeMaker' => '6.30_01',
2773             'ExtUtils::ParseXS' => '2.15_02',
2774             'Fatal' => '1.04',
2775             'File::Compare' => '1.1005',
2776             'File::Spec' => '3.15',
2777             'File::Temp' => '0.16_01',
2778             'IO::File' => '1.13_01',
2779             'IO::Handle' => '1.26',
2780             'IO::Socket' => '1.29_01',
2781             'IO::Socket::INET' => '1.29_02',
2782             'IO::Socket::UNIX' => '1.22_01',
2783             'IO::Zlib' => '1.04_02',
2784             'Locale::Maketext' => '1.10_01',
2785             'Math::BigInt::FastCalc'=> '0.10',
2786             'Memoize' => '1.01_01',
2787             'Module::CoreList' => '2.02',
2788             'Moped::Msg' => '0.01',
2789             'NEXT' => '0.60_01',
2790             'Net::Cmd' => '2.26_01',
2791             'Net::Domain' => '2.19_01',
2792             'Net::Ping' => '2.31_04',
2793             'Opcode' => '1.08',
2794             'POSIX' => '1.10',
2795             'Pod::Escapes' => '1.04',
2796             'Pod::Man' => '2.04',
2797             'Pod::Perldoc' => '3.14_01',
2798             'Pod::Simple' => '3.04',
2799             'Pod::Simple::BlackBox' => undef,
2800             'Pod::Simple::Checker' => '2.02',
2801             'Pod::Simple::Debug' => undef,
2802             'Pod::Simple::DumpAsText'=> '2.02',
2803             'Pod::Simple::DumpAsXML'=> '2.02',
2804             'Pod::Simple::HTML' => '3.03',
2805             'Pod::Simple::HTMLBatch'=> '3.02',
2806             'Pod::Simple::HTMLLegacy'=> '5.01',
2807             'Pod::Simple::LinkSection'=> undef,
2808             'Pod::Simple::Methody' => '2.02',
2809             'Pod::Simple::Progress' => '1.01',
2810             'Pod::Simple::PullParser'=> '2.02',
2811             'Pod::Simple::PullParserEndToken'=> undef,
2812             'Pod::Simple::PullParserStartToken'=> undef,
2813             'Pod::Simple::PullParserTextToken'=> undef,
2814             'Pod::Simple::PullParserToken'=> '2.02',
2815             'Pod::Simple::RTF' => '2.02',
2816             'Pod::Simple::Search' => '3.04',
2817             'Pod::Simple::SimpleTree'=> '2.02',
2818             'Pod::Simple::Text' => '2.02',
2819             'Pod::Simple::TextContent'=> '2.02',
2820             'Pod::Simple::TiedOutFH'=> undef,
2821             'Pod::Simple::Transcode'=> undef,
2822             'Pod::Simple::TranscodeDumb'=> '2.02',
2823             'Pod::Simple::TranscodeSmart'=> undef,
2824             'Pod::Simple::XMLOutStream'=> '2.02',
2825             'Pod::Text' => '3.01',
2826             'Pod::Text::Color' => '2.01',
2827             'Pod::Text::Overstrike' => '2',
2828             'Pod::Text::Termcap' => '2.01',
2829             'Pod::Usage' => '1.33_01',
2830             'SelfLoader' => '1.0905',
2831             'Storable' => '2.15_02',
2832             'Test::Builder::Module' => '0.03',
2833             'Text::Balanced' => '1.95_01',
2834             'Tie::File' => '0.97_01',
2835             'UNIVERSAL' => '1.03',
2836             'XS::APItest' => '0.09',
2837             'assertions' => '0.02',
2838             'assertions::activate' => '0.02',
2839             'assertions::compat' => undef,
2840             'constant' => '1.07',
2841             'encoding::warnings' => '0.05',
2842             'feature' => '1.00',
2843             're' => '0.06',
2844             'sort' => '2.00',
2845             'version' => '0.53',
2846             },
2847             removed => {
2848             }
2849             },
2850             5.009004 => {
2851             delta_from => 5.009003,
2852             changed => {
2853             'Archive::Tar' => '1.30_01',
2854             'AutoLoader' => '5.61',
2855             'B' => '1.11',
2856             'B::Bytecode' => '1.02',
2857             'B::C' => '1.05',
2858             'B::Concise' => '0.69',
2859             'B::Deparse' => '0.76',
2860             'B::Lint' => '1.08',
2861             'Benchmark' => '1.08',
2862             'CGI' => '3.20',
2863             'CGI::Cookie' => '1.27',
2864             'CGI::Fast' => '1.07',
2865             'CPAN' => '1.87_55',
2866             'CPAN::Debug' => '5.400561',
2867             'CPAN::FirstTime' => '5.400742',
2868             'CPAN::HandleConfig' => '5.400740',
2869             'CPAN::Nox' => '5.400561',
2870             'CPAN::Tarzip' => '5.400714',
2871             'CPAN::Version' => '5.400561',
2872             'Compress::Raw::Zlib' => '2.000_13',
2873             'Compress::Zlib' => '2.000_13',
2874             'Cwd' => '3.19',
2875             'Devel::PPPort' => '3.10',
2876             'Digest' => '1.15',
2877             'Digest::SHA' => '5.43',
2878             'Encode' => '2.18_01',
2879             'Encode::Alias' => '2.06',
2880             'Encode::Byte' => '2.02',
2881             'Encode::CJKConstants' => '2.02',
2882             'Encode::CN' => '2.02',
2883             'Encode::CN::HZ' => '2.04',
2884             'Encode::Config' => '2.03',
2885             'Encode::EBCDIC' => '2.02',
2886             'Encode::Encoder' => '2.01',
2887             'Encode::Encoding' => '2.04',
2888             'Encode::Guess' => '2.02',
2889             'Encode::JP' => '2.03',
2890             'Encode::JP::H2Z' => '2.02',
2891             'Encode::JP::JIS7' => '2.02',
2892             'Encode::KR' => '2.02',
2893             'Encode::KR::2022_KR' => '2.02',
2894             'Encode::MIME::Header' => '2.04',
2895             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2896             'Encode::Symbol' => '2.02',
2897             'Encode::TW' => '2.02',
2898             'Encode::Unicode' => '2.03',
2899             'Encode::Unicode::UTF7' => '2.04',
2900             'ExtUtils::CBuilder' => '0.18',
2901             'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2902             'ExtUtils::Constant::Base'=> '0.03',
2903             'ExtUtils::Constant::ProxySubs'=> '0.03',
2904             'ExtUtils::Install' => '1.41',
2905             'ExtUtils::Installed' => '1.41',
2906             'ExtUtils::MM_Any' => '0.13_02',
2907             'ExtUtils::MM_NW5' => '2.08_01',
2908             'ExtUtils::MM_Unix' => '1.5003',
2909             'ExtUtils::MM_VMS' => '5.73_03',
2910             'ExtUtils::MM_Win32' => '1.12_02',
2911             'ExtUtils::MM_Win95' => '0.04_01',
2912             'ExtUtils::MakeMaker' => '6.30_02',
2913             'ExtUtils::Manifest' => '1.46_01',
2914             'ExtUtils::Mkbootstrap' => '1.15_01',
2915             'ExtUtils::Mksymlists' => '1.19_01',
2916             'ExtUtils::Packlist' => '1.41',
2917             'File::Basename' => '2.75',
2918             'File::Find' => '1.11',
2919             'File::GlobMapper' => '0.000_02',
2920             'File::Spec' => '3.19',
2921             'FileCache' => '1.07',
2922             'Getopt::Long' => '2.3501',
2923             'Hash::Util' => '0.07',
2924             'Hash::Util::FieldHash' => '0.01',
2925             'IO' => '1.23_01',
2926             'IO::Compress::Adapter::Deflate'=> '2.000_13',
2927             'IO::Compress::Adapter::Identity'=> '2.000_13',
2928             'IO::Compress::Base' => '2.000_13',
2929             'IO::Compress::Base::Common'=> '2.000_13',
2930             'IO::Compress::Deflate' => '2.000_13',
2931             'IO::Compress::Gzip' => '2.000_13',
2932             'IO::Compress::Gzip::Constants'=> '2.000_13',
2933             'IO::Compress::RawDeflate'=> '2.000_13',
2934             'IO::Compress::Zip' => '2.000_13',
2935             'IO::Compress::Zip::Constants'=> '2.000_13',
2936             'IO::Compress::Zlib::Constants'=> '2.000_13',
2937             'IO::Compress::Zlib::Extra'=> '2.000_13',
2938             'IO::Dir' => '1.06',
2939             'IO::File' => '1.14',
2940             'IO::Handle' => '1.27',
2941             'IO::Socket' => '1.30_01',
2942             'IO::Socket::INET' => '1.31',
2943             'IO::Socket::UNIX' => '1.23',
2944             'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2945             'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2946             'IO::Uncompress::AnyInflate'=> '2.000_13',
2947             'IO::Uncompress::AnyUncompress'=> '2.000_13',
2948             'IO::Uncompress::Base' => '2.000_13',
2949             'IO::Uncompress::Gunzip'=> '2.000_13',
2950             'IO::Uncompress::Inflate'=> '2.000_13',
2951             'IO::Uncompress::RawInflate'=> '2.000_13',
2952             'IO::Uncompress::Unzip' => '2.000_13',
2953             'MIME::Base64' => '3.07_01',
2954             'Math::Complex' => '1.36',
2955             'Math::Trig' => '1.04',
2956             'Module::Build' => '0.2805',
2957             'Module::Build::Base' => undef,
2958             'Module::Build::Compat' => '0.03',
2959             'Module::Build::ConfigData'=> undef,
2960             'Module::Build::Cookbook'=> undef,
2961             'Module::Build::ModuleInfo'=> undef,
2962             'Module::Build::Notes' => undef,
2963             'Module::Build::PPMMaker'=> undef,
2964             'Module::Build::Platform::Amiga'=> undef,
2965             'Module::Build::Platform::Default'=> undef,
2966             'Module::Build::Platform::EBCDIC'=> undef,
2967             'Module::Build::Platform::MPEiX'=> undef,
2968             'Module::Build::Platform::MacOS'=> undef,
2969             'Module::Build::Platform::RiscOS'=> undef,
2970             'Module::Build::Platform::Unix'=> undef,
2971             'Module::Build::Platform::VMS'=> undef,
2972             'Module::Build::Platform::VOS'=> undef,
2973             'Module::Build::Platform::Windows'=> undef,
2974             'Module::Build::Platform::aix'=> undef,
2975             'Module::Build::Platform::cygwin'=> undef,
2976             'Module::Build::Platform::darwin'=> undef,
2977             'Module::Build::Platform::os2'=> undef,
2978             'Module::Build::PodParser'=> undef,
2979             'Module::Build::Version'=> '0',
2980             'Module::Build::YAML' => '0.50',
2981             'Module::CoreList' => '2.08',
2982             'Module::Load' => '0.10',
2983             'Module::Loaded' => '0.01',
2984             'Package::Constants' => '0.01',
2985             'Pod::Html' => '1.07',
2986             'Pod::Man' => '2.09',
2987             'Pod::Text' => '3.07',
2988             'Pod::Text::Color' => '2.03',
2989             'Pod::Text::Termcap' => '2.03',
2990             'SDBM_File' => '1.06',
2991             'Shell' => '0.7',
2992             'Sys::Syslog' => '0.17',
2993             'Term::ANSIColor' => '1.11',
2994             'Test::Builder' => '0.33',
2995             'Test::Builder::Tester' => '1.04',
2996             'Test::Harness' => '2.62',
2997             'Test::Harness::Util' => '0.01',
2998             'Test::More' => '0.64',
2999             'Test::Simple' => '0.64',
3000             'Text::Balanced' => '1.98_01',
3001             'Text::ParseWords' => '3.25',
3002             'Text::Tabs' => '2007.071101',
3003             'Text::Wrap' => '2006.0711',
3004             'Tie::RefHash' => '1.34_01',
3005             'Time::HiRes' => '1.87',
3006             'Time::Local' => '1.13',
3007             'Time::gmtime' => '1.03',
3008             'UNIVERSAL' => '1.04',
3009             'Unicode::Normalize' => '1.01',
3010             'Win32API::File' => '0.1001',
3011             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
3012             'assertions' => '0.03',
3013             'assertions::compat' => '0.02',
3014             'autouse' => '1.06',
3015             'diagnostics' => '1.16',
3016             'encoding' => '2.04',
3017             'encoding::warnings' => '0.10',
3018             'feature' => '1.01',
3019             're' => '0.0601',
3020             'threads' => '1.38',
3021             'threads::shared' => '0.94_01',
3022             'version' => '0.67',
3023             },
3024             removed => {
3025             'Compress::Zlib::Common'=> 1,
3026             'Compress::Zlib::Compress::Gzip::Constants'=> 1,
3027             'Compress::Zlib::Compress::Zip::Constants'=> 1,
3028             'Compress::Zlib::CompressPlugin::Deflate'=> 1,
3029             'Compress::Zlib::CompressPlugin::Identity'=> 1,
3030             'Compress::Zlib::File::GlobMapper'=> 1,
3031             'Compress::Zlib::FileConstants'=> 1,
3032             'Compress::Zlib::IO::Compress::Base'=> 1,
3033             'Compress::Zlib::IO::Compress::Deflate'=> 1,
3034             'Compress::Zlib::IO::Compress::Gzip'=> 1,
3035             'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
3036             'Compress::Zlib::IO::Compress::Zip'=> 1,
3037             'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
3038             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
3039             'Compress::Zlib::IO::Uncompress::Base'=> 1,
3040             'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
3041             'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
3042             'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
3043             'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
3044             'Compress::Zlib::ParseParameters'=> 1,
3045             'Compress::Zlib::UncompressPlugin::Identity'=> 1,
3046             'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
3047             }
3048             },
3049             5.009005 => {
3050             delta_from => 5.009004,
3051             changed => {
3052             'Archive::Extract' => '0.22_01',
3053             'Archive::Tar' => '1.32',
3054             'Attribute::Handlers' => '0.78_06',
3055             'AutoLoader' => '5.63',
3056             'AutoSplit' => '1.05',
3057             'B' => '1.16',
3058             'B::Concise' => '0.72',
3059             'B::Debug' => '1.05',
3060             'B::Deparse' => '0.82',
3061             'B::Lint' => '1.09',
3062             'B::Terse' => '1.05',
3063             'Benchmark' => '1.1',
3064             'CGI' => '3.29',
3065             'CGI::Cookie' => '1.28',
3066             'CGI::Util' => '1.5_01',
3067             'CPAN' => '1.9102',
3068             'CPAN::Debug' => '5.400955',
3069             'CPAN::FirstTime' => '5.401669',
3070             'CPAN::HandleConfig' => '5.401744',
3071             'CPAN::Kwalify' => '5.401418',
3072             'CPAN::Nox' => '5.400844',
3073             'CPAN::Queue' => '5.401704',
3074             'CPAN::Tarzip' => '5.401717',
3075             'CPAN::Version' => '5.401387',
3076             'CPANPLUS' => '0.81_01',
3077             'CPANPLUS::Backend' => undef,
3078             'CPANPLUS::Backend::RV' => undef,
3079             'CPANPLUS::Config' => undef,
3080             'CPANPLUS::Configure' => undef,
3081             'CPANPLUS::Configure::Setup'=> undef,
3082             'CPANPLUS::Dist' => undef,
3083             'CPANPLUS::Dist::Base' => '0.01',
3084             'CPANPLUS::Dist::Build' => '0.06_01',
3085             'CPANPLUS::Dist::Build::Constants'=> '0.01',
3086             'CPANPLUS::Dist::MM' => undef,
3087             'CPANPLUS::Dist::Sample'=> undef,
3088             'CPANPLUS::Error' => undef,
3089             'CPANPLUS::Internals' => '0.81_01',
3090             'CPANPLUS::Internals::Constants'=> '0.01',
3091             'CPANPLUS::Internals::Constants::Report'=> '0.01',
3092             'CPANPLUS::Internals::Extract'=> undef,
3093             'CPANPLUS::Internals::Fetch'=> undef,
3094             'CPANPLUS::Internals::Report'=> undef,
3095             'CPANPLUS::Internals::Search'=> undef,
3096             'CPANPLUS::Internals::Source'=> undef,
3097             'CPANPLUS::Internals::Utils'=> undef,
3098             'CPANPLUS::Internals::Utils::Autoflush'=> undef,
3099             'CPANPLUS::Module' => undef,
3100             'CPANPLUS::Module::Author'=> undef,
3101             'CPANPLUS::Module::Author::Fake'=> undef,
3102             'CPANPLUS::Module::Checksums'=> undef,
3103             'CPANPLUS::Module::Fake'=> undef,
3104             'CPANPLUS::Module::Signature'=> undef,
3105             'CPANPLUS::Selfupdate' => undef,
3106             'CPANPLUS::Shell' => undef,
3107             'CPANPLUS::Shell::Classic'=> '0.0562',
3108             'CPANPLUS::Shell::Default'=> '0.81_01',
3109             'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
3110             'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
3111             'CPANPLUS::inc' => undef,
3112             'Carp' => '1.07',
3113             'Carp::Heavy' => '1.07',
3114             'Compress::Raw::Zlib' => '2.005',
3115             'Compress::Zlib' => '2.005',
3116             'Cwd' => '3.25',
3117             'DBM_Filter' => '0.02',
3118             'DB_File' => '1.815',
3119             'Data::Dumper' => '2.121_13',
3120             'Devel::InnerPackage' => '0.3',
3121             'Devel::PPPort' => '3.11_01',
3122             'Digest::MD5' => '2.36_01',
3123             'Digest::SHA' => '5.44',
3124             'DynaLoader' => '1.08',
3125             'Encode' => '2.23',
3126             'Encode::Alias' => '2.07',
3127             'Encode::Byte' => '2.03',
3128             'Encode::Config' => '2.04',
3129             'Encode::Encoding' => '2.05',
3130             'Encode::GSM0338' => '2.00',
3131             'Encode::JP::JIS7' => '2.03',
3132             'Encode::MIME::Header' => '2.05',
3133             'Encode::MIME::Name' => '1.01',
3134             'Encode::Unicode' => '2.05',
3135             'Errno' => '1.10',
3136             'Exporter' => '5.60',
3137             'Exporter::Heavy' => '5.60',
3138             'ExtUtils::CBuilder' => '0.19',
3139             'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3140             'ExtUtils::Command' => '1.13',
3141             'ExtUtils::Command::MM' => '0.07',
3142             'ExtUtils::Constant::Base'=> '0.04',
3143             'ExtUtils::Install' => '1.41_01',
3144             'ExtUtils::Liblist' => '1.03',
3145             'ExtUtils::Liblist::Kid'=> '1.33',
3146             'ExtUtils::MM' => '0.07',
3147             'ExtUtils::MM_AIX' => '0.05',
3148             'ExtUtils::MM_Any' => '0.15',
3149             'ExtUtils::MM_BeOS' => '1.07',
3150             'ExtUtils::MM_Cygwin' => '1.1',
3151             'ExtUtils::MM_DOS' => '0.04',
3152             'ExtUtils::MM_MacOS' => '1.1',
3153             'ExtUtils::MM_NW5' => '2.1',
3154             'ExtUtils::MM_OS2' => '1.07',
3155             'ExtUtils::MM_QNX' => '0.04',
3156             'ExtUtils::MM_UWIN' => '0.04',
3157             'ExtUtils::MM_Unix' => '1.54_01',
3158             'ExtUtils::MM_VMS' => '5.76',
3159             'ExtUtils::MM_VOS' => '0.04',
3160             'ExtUtils::MM_Win32' => '1.15',
3161             'ExtUtils::MM_Win95' => '0.06',
3162             'ExtUtils::MY' => '0.03',
3163             'ExtUtils::MakeMaker' => '6.36',
3164             'ExtUtils::MakeMaker::Config'=> '0.04',
3165             'ExtUtils::MakeMaker::bytes'=> '0.03',
3166             'ExtUtils::MakeMaker::vmsish'=> '0.03',
3167             'ExtUtils::Manifest' => '1.51_01',
3168             'ExtUtils::Mkbootstrap' => '1.17',
3169             'ExtUtils::Mksymlists' => '1.21',
3170             'ExtUtils::ParseXS' => '2.18',
3171             'ExtUtils::XSSymSet' => '1.1',
3172             'ExtUtils::testlib' => '1.17',
3173             'Fatal' => '1.05',
3174             'Fcntl' => '1.06',
3175             'File::Basename' => '2.76',
3176             'File::Copy' => '2.10',
3177             'File::Fetch' => '0.10',
3178             'File::Glob' => '1.06',
3179             'File::Path' => '2.01',
3180             'File::Spec' => '3.25',
3181             'File::Spec::Cygwin' => '1.1_01',
3182             'File::Spec::VMS' => '1.4_01',
3183             'File::Temp' => '0.18',
3184             'Filter::Util::Call' => '1.0602',
3185             'FindBin' => '1.49',
3186             'Getopt::Long' => '2.36',
3187             'Hash::Util::FieldHash' => '1.01',
3188             'IO::Compress::Adapter::Deflate'=> '2.005',
3189             'IO::Compress::Adapter::Identity'=> '2.005',
3190             'IO::Compress::Base' => '2.005',
3191             'IO::Compress::Base::Common'=> '2.005',
3192             'IO::Compress::Deflate' => '2.005',
3193             'IO::Compress::Gzip' => '2.005',
3194             'IO::Compress::Gzip::Constants'=> '2.005',
3195             'IO::Compress::RawDeflate'=> '2.005',
3196             'IO::Compress::Zip' => '2.005',
3197             'IO::Compress::Zip::Constants'=> '2.005',
3198             'IO::Compress::Zlib::Constants'=> '2.005',
3199             'IO::Compress::Zlib::Extra'=> '2.005',
3200             'IO::Uncompress::Adapter::Identity'=> '2.005',
3201             'IO::Uncompress::Adapter::Inflate'=> '2.005',
3202             'IO::Uncompress::AnyInflate'=> '2.005',
3203             'IO::Uncompress::AnyUncompress'=> '2.005',
3204             'IO::Uncompress::Base' => '2.005',
3205             'IO::Uncompress::Gunzip'=> '2.005',
3206             'IO::Uncompress::Inflate'=> '2.005',
3207             'IO::Uncompress::RawInflate'=> '2.005',
3208             'IO::Uncompress::Unzip' => '2.005',
3209             'IO::Zlib' => '1.05_01',
3210             'IPC::Cmd' => '0.36_01',
3211             'List::Util' => '1.19',
3212             'Locale::Maketext::Simple'=> '0.18',
3213             'Log::Message' => '0.01',
3214             'Log::Message::Config' => '0.01',
3215             'Log::Message::Handlers'=> undef,
3216             'Log::Message::Item' => undef,
3217             'Log::Message::Simple' => '0.0201',
3218             'Math::BigFloat' => '1.58',
3219             'Math::BigInt' => '1.87',
3220             'Math::BigInt::Calc' => '0.51',
3221             'Math::BigInt::FastCalc'=> '0.15_01',
3222             'Math::BigRat' => '0.19',
3223             'Math::Complex' => '1.37',
3224             'Memoize' => '1.01_02',
3225             'Module::Build' => '0.2808',
3226             'Module::Build::Config' => undef,
3227             'Module::Build::Version'=> '0.7203',
3228             'Module::CoreList' => '2.12',
3229             'Module::Load::Conditional'=> '0.16',
3230             'Module::Pluggable' => '3.6',
3231             'Module::Pluggable::Object'=> '3.6',
3232             'NDBM_File' => '1.07',
3233             'Net::Cmd' => '2.28',
3234             'Net::Config' => '1.11',
3235             'Net::Domain' => '2.20',
3236             'Net::FTP' => '2.77',
3237             'Net::FTP::A' => '1.18',
3238             'Net::NNTP' => '2.24',
3239             'Net::POP3' => '2.29',
3240             'Net::SMTP' => '2.31',
3241             'ODBM_File' => '1.07',
3242             'OS2::DLL' => '1.03',
3243             'Object::Accessor' => '0.32',
3244             'Opcode' => '1.09',
3245             'POSIX' => '1.13',
3246             'Params::Check' => '0.26',
3247             'PerlIO::encoding' => '0.10',
3248             'PerlIO::scalar' => '0.05',
3249             'PerlIO::via' => '0.04',
3250             'Pod::Html' => '1.08',
3251             'Pod::Man' => '2.12',
3252             'Pod::ParseUtils' => '1.35',
3253             'Pod::Parser' => '1.35',
3254             'Pod::Select' => '1.35',
3255             'Pod::Simple' => '3.05',
3256             'Pod::Text' => '3.08',
3257             'Pod::Usage' => '1.35',
3258             'Scalar::Util' => '1.19',
3259             'SelfLoader' => '1.11',
3260             'Shell' => '0.72_01',
3261             'Socket' => '1.79',
3262             'Storable' => '2.16',
3263             'Switch' => '2.13',
3264             'Sys::Syslog' => '0.18_01',
3265             'Term::ANSIColor' => '1.12',
3266             'Term::UI' => '0.14_01',
3267             'Term::UI::History' => undef,
3268             'Test::Builder' => '0.70',
3269             'Test::Builder::Module' => '0.68',
3270             'Test::Builder::Tester' => '1.07',
3271             'Test::Harness' => '2.64',
3272             'Test::Harness::Results'=> '0.01',
3273             'Test::More' => '0.70',
3274             'Test::Simple' => '0.70',
3275             'Text::Balanced' => '2.0.0',
3276             'Text::Soundex' => '3.02',
3277             'Text::Tabs' => '2007.1117',
3278             'Text::Wrap' => '2006.1117',
3279             'Thread' => '3.02',
3280             'Tie::File' => '0.97_02',
3281             'Tie::Hash::NamedCapture'=> '0.06',
3282             'Tie::Memoize' => '1.1',
3283             'Tie::RefHash' => '1.37',
3284             'Time::HiRes' => '1.9707',
3285             'Time::Local' => '1.17',
3286             'Time::Piece' => '1.11_02',
3287             'Time::Seconds' => undef,
3288             'Unicode' => '5.0.0',
3289             'Unicode::Normalize' => '1.02',
3290             'Unicode::UCD' => '0.25',
3291             'VMS::DCLsym' => '1.03',
3292             'Win32' => '0.30',
3293             'Win32API::File' => '0.1001_01',
3294             'Win32CORE' => '0.02',
3295             'XS::APItest' => '0.12',
3296             'XSLoader' => '0.08',
3297             'attributes' => '0.08',
3298             'base' => '2.12',
3299             'bigint' => '0.22',
3300             'bignum' => '0.22',
3301             'bigrat' => '0.22',
3302             'bytes' => '1.03',
3303             'charnames' => '1.06',
3304             'constant' => '1.10',
3305             'diagnostics' => '1.17',
3306             'encoding' => '2.06',
3307             'encoding::warnings' => '0.11',
3308             'feature' => '1.10',
3309             'fields' => '2.12',
3310             'less' => '0.02',
3311             'mro' => '1.00',
3312             'overload' => '1.06',
3313             're' => '0.08',
3314             'sigtrap' => '1.04',
3315             'sort' => '2.01',
3316             'strict' => '1.04',
3317             'threads' => '1.63',
3318             'threads::shared' => '1.12',
3319             'utf8' => '1.07',
3320             'version' => '0.7203',
3321             'warnings' => '1.06',
3322             },
3323             removed => {
3324             'B::Asmdata' => 1,
3325             'B::Assembler' => 1,
3326             'B::Bblock' => 1,
3327             'B::Bytecode' => 1,
3328             'B::C' => 1,
3329             'B::CC' => 1,
3330             'B::Disassembler' => 1,
3331             'B::Stackobj' => 1,
3332             'B::Stash' => 1,
3333             'ByteLoader' => 1,
3334             'Thread::Signal' => 1,
3335             'Thread::Specific' => 1,
3336             'assertions' => 1,
3337             'assertions::activate' => 1,
3338             'assertions::compat' => 1,
3339             }
3340             },
3341             5.01 => {
3342             delta_from => 5.009005,
3343             changed => {
3344             'Archive::Extract' => '0.24',
3345             'Archive::Tar' => '1.38',
3346             'Attribute::Handlers' => '0.79',
3347             'B' => '1.17',
3348             'B::Concise' => '0.74',
3349             'B::Deparse' => '0.83',
3350             'CPAN' => '1.9205',
3351             'CPAN::API::HOWTO' => undef,
3352             'CPAN::Debug' => '5.402212',
3353             'CPAN::DeferedCode' => '5.50',
3354             'CPAN::FirstTime' => '5.402229',
3355             'CPAN::HandleConfig' => '5.402212',
3356             'CPAN::Nox' => '5.402411',
3357             'CPAN::Queue' => '5.402212',
3358             'CPAN::Tarzip' => '5.402213',
3359             'CPAN::Version' => '5.5',
3360             'CPANPLUS' => '0.84',
3361             'CPANPLUS::Dist::Build' => '0.06_02',
3362             'CPANPLUS::Internals' => '0.84',
3363             'CPANPLUS::Shell::Default'=> '0.84',
3364             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3365             'Carp' => '1.08',
3366             'Carp::Heavy' => '1.08',
3367             'Compress::Raw::Zlib' => '2.008',
3368             'Compress::Zlib' => '2.008',
3369             'Cwd' => '3.2501',
3370             'DB_File' => '1.816_1',
3371             'Data::Dumper' => '2.121_14',
3372             'Devel::PPPort' => '3.13',
3373             'Digest::SHA' => '5.45',
3374             'Exporter' => '5.62',
3375             'Exporter::Heavy' => '5.62',
3376             'ExtUtils::CBuilder' => '0.21',
3377             'ExtUtils::CBuilder::Base'=> '0.21',
3378             'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3379             'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3380             'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3381             'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3382             'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3383             'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3384             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3385             'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3386             'ExtUtils::Command::MM' => '6.42',
3387             'ExtUtils::Constant::ProxySubs'=> '0.05',
3388             'ExtUtils::Embed' => '1.27',
3389             'ExtUtils::Install' => '1.44',
3390             'ExtUtils::Installed' => '1.43',
3391             'ExtUtils::Liblist' => '6.42',
3392             'ExtUtils::Liblist::Kid'=> '6.42',
3393             'ExtUtils::MM' => '6.42',
3394             'ExtUtils::MM_AIX' => '6.42',
3395             'ExtUtils::MM_Any' => '6.42',
3396             'ExtUtils::MM_BeOS' => '6.42',
3397             'ExtUtils::MM_Cygwin' => '6.42',
3398             'ExtUtils::MM_DOS' => '6.42',
3399             'ExtUtils::MM_MacOS' => '6.42',
3400             'ExtUtils::MM_NW5' => '6.42',
3401             'ExtUtils::MM_OS2' => '6.42',
3402             'ExtUtils::MM_QNX' => '6.42',
3403             'ExtUtils::MM_UWIN' => '6.42',
3404             'ExtUtils::MM_Unix' => '6.42',
3405             'ExtUtils::MM_VMS' => '6.42',
3406             'ExtUtils::MM_VOS' => '6.42',
3407             'ExtUtils::MM_Win32' => '6.42',
3408             'ExtUtils::MM_Win95' => '6.42',
3409             'ExtUtils::MY' => '6.42',
3410             'ExtUtils::MakeMaker' => '6.42',
3411             'ExtUtils::MakeMaker::Config'=> '6.42',
3412             'ExtUtils::MakeMaker::bytes'=> '6.42',
3413             'ExtUtils::MakeMaker::vmsish'=> '6.42',
3414             'ExtUtils::Mkbootstrap' => '6.42',
3415             'ExtUtils::Mksymlists' => '6.42',
3416             'ExtUtils::Packlist' => '1.43',
3417             'ExtUtils::ParseXS' => '2.18_02',
3418             'ExtUtils::testlib' => '6.42',
3419             'File::Copy' => '2.11',
3420             'File::Fetch' => '0.14',
3421             'File::Find' => '1.12',
3422             'File::Path' => '2.04',
3423             'File::Spec' => '3.2501',
3424             'File::Spec::Cygwin' => '3.2501',
3425             'File::Spec::Epoc' => '3.2501',
3426             'File::Spec::Functions' => '3.2501',
3427             'File::Spec::Mac' => '3.2501',
3428             'File::Spec::OS2' => '3.2501',
3429             'File::Spec::Unix' => '3.2501',
3430             'File::Spec::VMS' => '3.2501',
3431             'File::Spec::Win32' => '3.2501',
3432             'Filter::Util::Call' => '1.07',
3433             'Getopt::Long' => '2.37',
3434             'Hash::Util::FieldHash' => '1.03',
3435             'IO::Compress::Adapter::Deflate'=> '2.008',
3436             'IO::Compress::Adapter::Identity'=> '2.008',
3437             'IO::Compress::Base' => '2.008',
3438             'IO::Compress::Base::Common'=> '2.008',
3439             'IO::Compress::Deflate' => '2.008',
3440             'IO::Compress::Gzip' => '2.008',
3441             'IO::Compress::Gzip::Constants'=> '2.008',
3442             'IO::Compress::RawDeflate'=> '2.008',
3443             'IO::Compress::Zip' => '2.008',
3444             'IO::Compress::Zip::Constants'=> '2.008',
3445             'IO::Compress::Zlib::Constants'=> '2.008',
3446             'IO::Compress::Zlib::Extra'=> '2.008',
3447             'IO::Uncompress::Adapter::Identity'=> '2.008',
3448             'IO::Uncompress::Adapter::Inflate'=> '2.008',
3449             'IO::Uncompress::AnyInflate'=> '2.008',
3450             'IO::Uncompress::AnyUncompress'=> '2.008',
3451             'IO::Uncompress::Base' => '2.008',
3452             'IO::Uncompress::Gunzip'=> '2.008',
3453             'IO::Uncompress::Inflate'=> '2.008',
3454             'IO::Uncompress::RawInflate'=> '2.008',
3455             'IO::Uncompress::Unzip' => '2.008',
3456             'IO::Zlib' => '1.07',
3457             'IPC::Cmd' => '0.40_1',
3458             'IPC::SysV' => '1.05',
3459             'Locale::Maketext' => '1.12',
3460             'Log::Message::Simple' => '0.04',
3461             'Math::BigFloat' => '1.59',
3462             'Math::BigInt' => '1.88',
3463             'Math::BigInt::Calc' => '0.52',
3464             'Math::BigInt::FastCalc'=> '0.16',
3465             'Math::BigRat' => '0.21',
3466             'Module::Build' => '0.2808_01',
3467             'Module::Build::Base' => '0.2808_01',
3468             'Module::Build::Compat' => '0.2808_01',
3469             'Module::Build::Config' => '0.2808_01',
3470             'Module::Build::Dumper' => undef,
3471             'Module::Build::ModuleInfo'=> '0.2808_01',
3472             'Module::Build::Notes' => '0.2808_01',
3473             'Module::Build::PPMMaker'=> '0.2808_01',
3474             'Module::Build::Platform::Amiga'=> '0.2808_01',
3475             'Module::Build::Platform::Default'=> '0.2808_01',
3476             'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3477             'Module::Build::Platform::MPEiX'=> '0.2808_01',
3478             'Module::Build::Platform::MacOS'=> '0.2808_01',
3479             'Module::Build::Platform::RiscOS'=> '0.2808_01',
3480             'Module::Build::Platform::Unix'=> '0.2808_01',
3481             'Module::Build::Platform::VMS'=> '0.2808_01',
3482             'Module::Build::Platform::VOS'=> '0.2808_01',
3483             'Module::Build::Platform::Windows'=> '0.2808_01',
3484             'Module::Build::Platform::aix'=> '0.2808_01',
3485             'Module::Build::Platform::cygwin'=> '0.2808_01',
3486             'Module::Build::Platform::darwin'=> '0.2808_01',
3487             'Module::Build::Platform::os2'=> '0.2808_01',
3488             'Module::Build::PodParser'=> '0.2808_01',
3489             'Module::CoreList' => '2.13',
3490             'Module::Load' => '0.12',
3491             'Module::Load::Conditional'=> '0.22',
3492             'Net::Cmd' => '2.29',
3493             'Net::Ping' => '2.33',
3494             'Opcode' => '1.11',
3495             'Pod::Checker' => '1.43_01',
3496             'Pod::Man' => '2.16',
3497             'Pod::Perldoc' => '3.14_02',
3498             'Socket' => '1.80',
3499             'Storable' => '2.18',
3500             'Sys::Syslog' => '0.22',
3501             'Sys::Syslog::win32::Win32'=> undef,
3502             'Term::Cap' => '1.12',
3503             'Term::ReadLine' => '1.03',
3504             'Term::UI' => '0.18',
3505             'Test::Builder' => '0.72',
3506             'Test::Builder::Module' => '0.72',
3507             'Test::Builder::Tester' => '1.09',
3508             'Test::Harness::Straps' => '0.26_01',
3509             'Test::More' => '0.72',
3510             'Test::Simple' => '0.72',
3511             'Text::ParseWords' => '3.26',
3512             'Text::Soundex' => '3.03',
3513             'Tie::StdHandle' => undef,
3514             'Time::HiRes' => '1.9711',
3515             'Time::Local' => '1.18',
3516             'Time::Piece' => '1.12',
3517             'VMS::Filespec' => '1.12',
3518             'Win32' => '0.34',
3519             'base' => '2.13',
3520             'constant' => '1.13',
3521             'feature' => '1.11',
3522             'fields' => '2.13',
3523             'filetest' => '1.02',
3524             'open' => '1.06',
3525             'threads' => '1.67',
3526             'threads::shared' => '1.14',
3527             'version' => '0.74',
3528             },
3529             removed => {
3530             }
3531             },
3532             5.010001 => {
3533             delta_from => 5.01,
3534             changed => {
3535             'App::Prove' => '3.17',
3536             'App::Prove::State' => '3.17',
3537             'App::Prove::State::Result'=> '3.17',
3538             'App::Prove::State::Result::Test'=> '3.17',
3539             'Archive::Extract' => '0.34',
3540             'Archive::Tar' => '1.52',
3541             'Attribute::Handlers' => '0.85',
3542             'AutoLoader' => '5.68',
3543             'AutoSplit' => '1.06',
3544             'B' => '1.22',
3545             'B::Concise' => '0.76',
3546             'B::Debug' => '1.11',
3547             'B::Deparse' => '0.89',
3548             'B::Lint' => '1.11',
3549             'B::Lint::Debug' => undef,
3550             'B::Xref' => '1.02',
3551             'Benchmark' => '1.11',
3552             'CGI' => '3.43',
3553             'CGI::Carp' => '1.30_01',
3554             'CGI::Cookie' => '1.29',
3555             'CPAN' => '1.9402',
3556             'CPAN::Author' => '5.5',
3557             'CPAN::Bundle' => '5.5',
3558             'CPAN::CacheMgr' => '5.5',
3559             'CPAN::Complete' => '5.5',
3560             'CPAN::Debug' => '5.5',
3561             'CPAN::DeferredCode' => '5.50',
3562             'CPAN::Distribution' => '1.93',
3563             'CPAN::Distroprefs' => '6',
3564             'CPAN::Distrostatus' => '5.5',
3565             'CPAN::Exception::RecursiveDependency'=> '5.5',
3566             'CPAN::Exception::blocked_urllist'=> '1.0',
3567             'CPAN::Exception::yaml_not_installed'=> '5.5',
3568             'CPAN::FTP' => '5.5001',
3569             'CPAN::FTP::netrc' => '1.00',
3570             'CPAN::FirstTime' => '5.53',
3571             'CPAN::HandleConfig' => '5.5',
3572             'CPAN::Index' => '1.93',
3573             'CPAN::InfoObj' => '5.5',
3574             'CPAN::Kwalify' => '5.50',
3575             'CPAN::LWP::UserAgent' => '1.00',
3576             'CPAN::Module' => '5.5',
3577             'CPAN::Nox' => '5.50',
3578             'CPAN::Prompt' => '5.5',
3579             'CPAN::Queue' => '5.5',
3580             'CPAN::Shell' => '5.5',
3581             'CPAN::Tarzip' => '5.501',
3582             'CPAN::URL' => '5.5',
3583             'CPANPLUS' => '0.88',
3584             'CPANPLUS::Dist::Autobundle'=> undef,
3585             'CPANPLUS::Dist::Base' => undef,
3586             'CPANPLUS::Dist::Build' => '0.36',
3587             'CPANPLUS::Dist::Build::Constants'=> '0.36',
3588             'CPANPLUS::Internals' => '0.88',
3589             'CPANPLUS::Internals::Constants'=> undef,
3590             'CPANPLUS::Internals::Constants::Report'=> undef,
3591             'CPANPLUS::Internals::Source::Memory'=> undef,
3592             'CPANPLUS::Internals::Source::SQLite'=> undef,
3593             'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3594             'CPANPLUS::Shell::Default'=> '0.88',
3595             'Carp' => '1.11',
3596             'Carp::Heavy' => '1.11',
3597             'Compress::Raw::Bzip2' => '2.020',
3598             'Compress::Raw::Zlib' => '2.020',
3599             'Compress::Zlib' => '2.020',
3600             'Cwd' => '3.30',
3601             'DB' => '1.02',
3602             'DBM_Filter::compress' => '0.02',
3603             'DBM_Filter::encode' => '0.02',
3604             'DBM_Filter::int32' => '0.02',
3605             'DBM_Filter::null' => '0.02',
3606             'DBM_Filter::utf8' => '0.02',
3607             'DB_File' => '1.820',
3608             'Data::Dumper' => '2.124',
3609             'Devel::DProf' => '20080331.00',
3610             'Devel::PPPort' => '3.19',
3611             'Devel::Peek' => '1.04',
3612             'Digest' => '1.16',
3613             'Digest::MD5' => '2.39',
3614             'Digest::SHA' => '5.47',
3615             'Digest::base' => '1.16',
3616             'Digest::file' => '1.16',
3617             'DirHandle' => '1.03',
3618             'Dumpvalue' => '1.13',
3619             'DynaLoader' => '1.10',
3620             'Encode' => '2.35',
3621             'Encode::Alias' => '2.12',
3622             'Encode::CN::HZ' => '2.05',
3623             'Encode::Config' => '2.05',
3624             'Encode::GSM0338' => '2.01',
3625             'Encode::Guess' => '2.03',
3626             'Encode::JP::JIS7' => '2.04',
3627             'Encode::MIME::Header' => '2.11',
3628             'Encode::Unicode' => '2.06',
3629             'Errno' => '1.11',
3630             'Exporter' => '5.63',
3631             'Exporter::Heavy' => '5.63',
3632             'ExtUtils::CBuilder' => '0.2602',
3633             'ExtUtils::CBuilder::Base'=> '0.2602',
3634             'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3635             'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3636             'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3637             'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3638             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3639             'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3640             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3641             'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3642             'ExtUtils::Command' => '1.16',
3643             'ExtUtils::Command::MM' => '6.55_02',
3644             'ExtUtils::Constant' => '0.22',
3645             'ExtUtils::Constant::ProxySubs'=> '0.06',
3646             'ExtUtils::Constant::Utils'=> '0.02',
3647             'ExtUtils::Constant::XS'=> '0.03',
3648             'ExtUtils::Embed' => '1.28',
3649             'ExtUtils::Install' => '1.54',
3650             'ExtUtils::Installed' => '1.999_001',
3651             'ExtUtils::Liblist' => '6.55_02',
3652             'ExtUtils::Liblist::Kid'=> '6.5502',
3653             'ExtUtils::MM' => '6.55_02',
3654             'ExtUtils::MM_AIX' => '6.55_02',
3655             'ExtUtils::MM_Any' => '6.55_02',
3656             'ExtUtils::MM_BeOS' => '6.55_02',
3657             'ExtUtils::MM_Cygwin' => '6.55_02',
3658             'ExtUtils::MM_DOS' => '6.5502',
3659             'ExtUtils::MM_Darwin' => '6.55_02',
3660             'ExtUtils::MM_MacOS' => '6.5502',
3661             'ExtUtils::MM_NW5' => '6.55_02',
3662             'ExtUtils::MM_OS2' => '6.55_02',
3663             'ExtUtils::MM_QNX' => '6.55_02',
3664             'ExtUtils::MM_UWIN' => '6.5502',
3665             'ExtUtils::MM_Unix' => '6.55_02',
3666             'ExtUtils::MM_VMS' => '6.55_02',
3667             'ExtUtils::MM_VOS' => '6.55_02',
3668             'ExtUtils::MM_Win32' => '6.55_02',
3669             'ExtUtils::MM_Win95' => '6.55_02',
3670             'ExtUtils::MY' => '6.5502',
3671             'ExtUtils::MakeMaker' => '6.55_02',
3672             'ExtUtils::MakeMaker::Config'=> '6.55_02',
3673             'ExtUtils::Manifest' => '1.56',
3674             'ExtUtils::Mkbootstrap' => '6.55_02',
3675             'ExtUtils::Mksymlists' => '6.55_02',
3676             'ExtUtils::ParseXS' => '2.2002',
3677             'ExtUtils::testlib' => '6.5502',
3678             'Fatal' => '2.06_01',
3679             'File::Basename' => '2.77',
3680             'File::CheckTree' => '4.4',
3681             'File::Compare' => '1.1006',
3682             'File::Copy' => '2.14',
3683             'File::DosGlob' => '1.01',
3684             'File::Fetch' => '0.20',
3685             'File::Find' => '1.14',
3686             'File::GlobMapper' => '1.000',
3687             'File::Path' => '2.07_03',
3688             'File::Spec' => '3.30',
3689             'File::Spec::Cygwin' => '3.30',
3690             'File::Spec::Epoc' => '3.30',
3691             'File::Spec::Functions' => '3.30',
3692             'File::Spec::Mac' => '3.30',
3693             'File::Spec::OS2' => '3.30',
3694             'File::Spec::Unix' => '3.30',
3695             'File::Spec::VMS' => '3.30',
3696             'File::Spec::Win32' => '3.30',
3697             'File::Temp' => '0.22',
3698             'File::stat' => '1.01',
3699             'FileCache' => '1.08',
3700             'FileHandle' => '2.02',
3701             'Filter::Simple' => '0.84',
3702             'Filter::Util::Call' => '1.08',
3703             'FindBin' => '1.50',
3704             'GDBM_File' => '1.09',
3705             'Getopt::Long' => '2.38',
3706             'Getopt::Std' => '1.06',
3707             'Hash::Util::FieldHash' => '1.04',
3708             'I18N::Collate' => '1.01',
3709             'IO' => '1.25',
3710             'IO::Compress::Adapter::Bzip2'=> '2.020',
3711             'IO::Compress::Adapter::Deflate'=> '2.020',
3712             'IO::Compress::Adapter::Identity'=> '2.020',
3713             'IO::Compress::Base' => '2.020',
3714             'IO::Compress::Base::Common'=> '2.020',
3715             'IO::Compress::Bzip2' => '2.020',
3716             'IO::Compress::Deflate' => '2.020',
3717             'IO::Compress::Gzip' => '2.020',
3718             'IO::Compress::Gzip::Constants'=> '2.020',
3719             'IO::Compress::RawDeflate'=> '2.020',
3720             'IO::Compress::Zip' => '2.020',
3721             'IO::Compress::Zip::Constants'=> '2.020',
3722             'IO::Compress::Zlib::Constants'=> '2.020',
3723             'IO::Compress::Zlib::Extra'=> '2.020',
3724             'IO::Dir' => '1.07',
3725             'IO::Handle' => '1.28',
3726             'IO::Socket' => '1.31',
3727             'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3728             'IO::Uncompress::Adapter::Identity'=> '2.020',
3729             'IO::Uncompress::Adapter::Inflate'=> '2.020',
3730             'IO::Uncompress::AnyInflate'=> '2.020',
3731             'IO::Uncompress::AnyUncompress'=> '2.020',
3732             'IO::Uncompress::Base' => '2.020',
3733             'IO::Uncompress::Bunzip2'=> '2.020',
3734             'IO::Uncompress::Gunzip'=> '2.020',
3735             'IO::Uncompress::Inflate'=> '2.020',
3736             'IO::Uncompress::RawInflate'=> '2.020',
3737             'IO::Uncompress::Unzip' => '2.020',
3738             'IO::Zlib' => '1.09',
3739             'IPC::Cmd' => '0.46',
3740             'IPC::Msg' => '2.01',
3741             'IPC::Open2' => '1.03',
3742             'IPC::Open3' => '1.04',
3743             'IPC::Semaphore' => '2.01',
3744             'IPC::SharedMem' => '2.01',
3745             'IPC::SysV' => '2.01',
3746             'List::Util' => '1.21',
3747             'List::Util::PP' => '1.21',
3748             'List::Util::XS' => '1.21',
3749             'Locale::Maketext' => '1.13',
3750             'Locale::Maketext::Guts'=> '1.13',
3751             'Locale::Maketext::GutsLoader'=> '1.13',
3752             'Log::Message' => '0.02',
3753             'MIME::Base64' => '3.08',
3754             'MIME::QuotedPrint' => '3.08',
3755             'Math::BigFloat' => '1.60',
3756             'Math::BigInt' => '1.89',
3757             'Math::BigInt::FastCalc'=> '0.19',
3758             'Math::BigRat' => '0.22',
3759             'Math::Complex' => '1.56',
3760             'Math::Trig' => '1.2',
3761             'Memoize' => '1.01_03',
3762             'Module::Build' => '0.340201',
3763             'Module::Build::Base' => '0.340201',
3764             'Module::Build::Compat' => '0.340201',
3765             'Module::Build::Config' => '0.340201',
3766             'Module::Build::Cookbook'=> '0.340201',
3767             'Module::Build::Dumper' => '0.340201',
3768             'Module::Build::ModuleInfo'=> '0.340201',
3769             'Module::Build::Notes' => '0.340201',
3770             'Module::Build::PPMMaker'=> '0.340201',
3771             'Module::Build::Platform::Amiga'=> '0.340201',
3772             'Module::Build::Platform::Default'=> '0.340201',
3773             'Module::Build::Platform::EBCDIC'=> '0.340201',
3774             'Module::Build::Platform::MPEiX'=> '0.340201',
3775             'Module::Build::Platform::MacOS'=> '0.340201',
3776             'Module::Build::Platform::RiscOS'=> '0.340201',
3777             'Module::Build::Platform::Unix'=> '0.340201',
3778             'Module::Build::Platform::VMS'=> '0.340201',
3779             'Module::Build::Platform::VOS'=> '0.340201',
3780             'Module::Build::Platform::Windows'=> '0.340201',
3781             'Module::Build::Platform::aix'=> '0.340201',
3782             'Module::Build::Platform::cygwin'=> '0.340201',
3783             'Module::Build::Platform::darwin'=> '0.340201',
3784             'Module::Build::Platform::os2'=> '0.340201',
3785             'Module::Build::PodParser'=> '0.340201',
3786             'Module::Build::Version'=> '0.77',
3787             'Module::CoreList' => '2.18',
3788             'Module::Load' => '0.16',
3789             'Module::Load::Conditional'=> '0.30',
3790             'Module::Loaded' => '0.02',
3791             'Module::Pluggable' => '3.9',
3792             'Module::Pluggable::Object'=> '3.9',
3793             'NDBM_File' => '1.08',
3794             'NEXT' => '0.64',
3795             'Net::Ping' => '2.36',
3796             'O' => '1.01',
3797             'OS2::Process' => '1.03',
3798             'OS2::REXX' => '1.04',
3799             'Object::Accessor' => '0.34',
3800             'POSIX' => '1.17',
3801             'Package::Constants' => '0.02',
3802             'Parse::CPAN::Meta' => '1.39',
3803             'PerlIO' => '1.06',
3804             'PerlIO::encoding' => '0.11',
3805             'PerlIO::scalar' => '0.07',
3806             'PerlIO::via' => '0.07',
3807             'Pod::Checker' => '1.45',
3808             'Pod::Find' => '1.35',
3809             'Pod::Html' => '1.09',
3810             'Pod::InputObjects' => '1.31',
3811             'Pod::Man' => '2.22',
3812             'Pod::ParseLink' => '1.09',
3813             'Pod::ParseUtils' => '1.36',
3814             'Pod::Parser' => '1.37',
3815             'Pod::Perldoc' => '3.14_04',
3816             'Pod::PlainText' => '2.04',
3817             'Pod::Select' => '1.36',
3818             'Pod::Simple' => '3.07',
3819             'Pod::Simple::XHTML' => '3.04',
3820             'Pod::Text' => '3.13',
3821             'Pod::Text::Color' => '2.05',
3822             'Pod::Text::Overstrike' => '2.03',
3823             'Pod::Text::Termcap' => '2.05',
3824             'Pod::Usage' => '1.36',
3825             'Safe' => '2.18',
3826             'Scalar::Util' => '1.21',
3827             'Scalar::Util::PP' => '1.21',
3828             'SelectSaver' => '1.02',
3829             'SelfLoader' => '1.17',
3830             'Socket' => '1.82',
3831             'Storable' => '2.20',
3832             'Switch' => '2.14',
3833             'Symbol' => '1.07',
3834             'Sys::Syslog' => '0.27',
3835             'TAP::Base' => '3.17',
3836             'TAP::Formatter::Base' => '3.17',
3837             'TAP::Formatter::Color' => '3.17',
3838             'TAP::Formatter::Console'=> '3.17',
3839             'TAP::Formatter::Console::ParallelSession'=> '3.17',
3840             'TAP::Formatter::Console::Session'=> '3.17',
3841             'TAP::Formatter::File' => '3.17',
3842             'TAP::Formatter::File::Session'=> '3.17',
3843             'TAP::Formatter::Session'=> '3.17',
3844             'TAP::Harness' => '3.17',
3845             'TAP::Object' => '3.17',
3846             'TAP::Parser' => '3.17',
3847             'TAP::Parser::Aggregator'=> '3.17',
3848             'TAP::Parser::Grammar' => '3.17',
3849             'TAP::Parser::Iterator' => '3.17',
3850             'TAP::Parser::Iterator::Array'=> '3.17',
3851             'TAP::Parser::Iterator::Process'=> '3.17',
3852             'TAP::Parser::Iterator::Stream'=> '3.17',
3853             'TAP::Parser::IteratorFactory'=> '3.17',
3854             'TAP::Parser::Multiplexer'=> '3.17',
3855             'TAP::Parser::Result' => '3.17',
3856             'TAP::Parser::Result::Bailout'=> '3.17',
3857             'TAP::Parser::Result::Comment'=> '3.17',
3858             'TAP::Parser::Result::Plan'=> '3.17',
3859             'TAP::Parser::Result::Pragma'=> '3.17',
3860             'TAP::Parser::Result::Test'=> '3.17',
3861             'TAP::Parser::Result::Unknown'=> '3.17',
3862             'TAP::Parser::Result::Version'=> '3.17',
3863             'TAP::Parser::Result::YAML'=> '3.17',
3864             'TAP::Parser::ResultFactory'=> '3.17',
3865             'TAP::Parser::Scheduler'=> '3.17',
3866             'TAP::Parser::Scheduler::Job'=> '3.17',
3867             'TAP::Parser::Scheduler::Spinner'=> '3.17',
3868             'TAP::Parser::Source' => '3.17',
3869             'TAP::Parser::Source::Perl'=> '3.17',
3870             'TAP::Parser::Utils' => '3.17',
3871             'TAP::Parser::YAMLish::Reader'=> '3.17',
3872             'TAP::Parser::YAMLish::Writer'=> '3.17',
3873             'Term::ANSIColor' => '2.00',
3874             'Term::ReadLine' => '1.04',
3875             'Term::UI' => '0.20',
3876             'Test' => '1.25_02',
3877             'Test::Builder' => '0.92',
3878             'Test::Builder::Module' => '0.92',
3879             'Test::Builder::Tester' => '1.18',
3880             'Test::Builder::Tester::Color'=> '1.18',
3881             'Test::Harness' => '3.17',
3882             'Test::More' => '0.92',
3883             'Test::Simple' => '0.92',
3884             'Text::ParseWords' => '3.27',
3885             'Text::Tabs' => '2009.0305',
3886             'Text::Wrap' => '2009.0305',
3887             'Thread::Queue' => '2.11',
3888             'Thread::Semaphore' => '2.09',
3889             'Tie::Handle' => '4.2',
3890             'Tie::Hash' => '1.03',
3891             'Tie::RefHash' => '1.38',
3892             'Tie::Scalar' => '1.01',
3893             'Tie::StdHandle' => '4.2',
3894             'Time::HiRes' => '1.9719',
3895             'Time::Local' => '1.1901',
3896             'Time::Piece' => '1.15',
3897             'UNIVERSAL' => '1.05',
3898             'Unicode' => '5.1.0',
3899             'Unicode::Normalize' => '1.03',
3900             'Unicode::UCD' => '0.27',
3901             'VMS::Stdio' => '2.4',
3902             'Win32' => '0.39',
3903             'Win32API::File' => '0.1101',
3904             'XS::APItest' => '0.15',
3905             'XS::Typemap' => '0.03',
3906             'XSLoader' => '0.10',
3907             'attributes' => '0.09',
3908             'attrs' => '1.03',
3909             'autodie' => '2.06_01',
3910             'autodie::exception' => '2.06_01',
3911             'autodie::exception::system'=> '2.06_01',
3912             'autodie::hints' => '2.06_01',
3913             'base' => '2.14',
3914             'bigint' => '0.23',
3915             'bignum' => '0.23',
3916             'bigrat' => '0.23',
3917             'blib' => '1.04',
3918             'charnames' => '1.07',
3919             'constant' => '1.17',
3920             'encoding' => '2.6_01',
3921             'feature' => '1.13',
3922             'fields' => '2.14',
3923             'lib' => '0.62',
3924             'mro' => '1.01',
3925             'open' => '1.07',
3926             'ops' => '1.02',
3927             'overload' => '1.07',
3928             'overload::numbers' => undef,
3929             'overloading' => '0.01',
3930             'parent' => '0.221',
3931             're' => '0.09',
3932             'threads' => '1.72',
3933             'threads::shared' => '1.29',
3934             'version' => '0.77',
3935             },
3936             removed => {
3937             'CPAN::API::HOWTO' => 1,
3938             'CPAN::DeferedCode' => 1,
3939             'CPANPLUS::inc' => 1,
3940             'ExtUtils::MakeMaker::bytes'=> 1,
3941             'ExtUtils::MakeMaker::vmsish'=> 1,
3942             'Test::Harness::Assert' => 1,
3943             'Test::Harness::Iterator'=> 1,
3944             'Test::Harness::Point' => 1,
3945             'Test::Harness::Results'=> 1,
3946             'Test::Harness::Straps' => 1,
3947             'Test::Harness::Util' => 1,
3948             }
3949             },
3950             5.011 => {
3951             delta_from => 5.010001,
3952             changed => {
3953             'Archive::Tar' => '1.54',
3954             'Attribute::Handlers' => '0.87',
3955             'AutoLoader' => '5.70',
3956             'B::Deparse' => '0.91',
3957             'B::Lint' => '1.11_01',
3958             'B::Lint::Debug' => '0.01',
3959             'CGI' => '3.45',
3960             'CGI::Apache' => '1.01',
3961             'CGI::Carp' => '3.45',
3962             'CGI::Pretty' => '3.44',
3963             'CGI::Switch' => '1.01',
3964             'CGI::Util' => '3.45',
3965             'CPAN' => '1.94_51',
3966             'CPAN::Distribution' => '1.94',
3967             'CPAN::FTP' => '5.5002',
3968             'CPAN::Index' => '1.94',
3969             'CPAN::LWP::UserAgent' => '1.94',
3970             'CPANPLUS::Dist::Build' => '0.40',
3971             'CPANPLUS::Dist::Build::Constants'=> '0.40',
3972             'Carp' => '1.12',
3973             'Carp::Heavy' => '1.12',
3974             'Class::ISA' => '0.36',
3975             'Compress::Raw::Bzip2' => '2.021',
3976             'Compress::Raw::Zlib' => '2.021',
3977             'Compress::Zlib' => '2.021',
3978             'Cwd' => '3.3002',
3979             'Data::Dumper' => '2.125',
3980             'Encode' => '2.37',
3981             'Exporter' => '5.64',
3982             'Exporter::Heavy' => '5.64',
3983             'ExtUtils::ParseXS' => '2.200403',
3984             'File::Basename' => '2.78',
3985             'File::Copy' => '2.16',
3986             'File::stat' => '1.02',
3987             'IO' => '1.25_01',
3988             'IO::Compress::Adapter::Bzip2'=> '2.021',
3989             'IO::Compress::Adapter::Deflate'=> '2.021',
3990             'IO::Compress::Adapter::Identity'=> '2.021',
3991             'IO::Compress::Base' => '2.021',
3992             'IO::Compress::Base::Common'=> '2.021',
3993             'IO::Compress::Bzip2' => '2.021',
3994             'IO::Compress::Deflate' => '2.021',
3995             'IO::Compress::Gzip' => '2.021',
3996             'IO::Compress::Gzip::Constants'=> '2.021',
3997             'IO::Compress::RawDeflate'=> '2.021',
3998             'IO::Compress::Zip' => '2.021',
3999             'IO::Compress::Zip::Constants'=> '2.021',
4000             'IO::Compress::Zlib::Constants'=> '2.021',
4001             'IO::Compress::Zlib::Extra'=> '2.021',
4002             'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
4003             'IO::Uncompress::Adapter::Identity'=> '2.021',
4004             'IO::Uncompress::Adapter::Inflate'=> '2.021',
4005             'IO::Uncompress::AnyInflate'=> '2.021',
4006             'IO::Uncompress::AnyUncompress'=> '2.021',
4007             'IO::Uncompress::Base' => '2.021',
4008             'IO::Uncompress::Bunzip2'=> '2.021',
4009             'IO::Uncompress::Gunzip'=> '2.021',
4010             'IO::Uncompress::Inflate'=> '2.021',
4011             'IO::Uncompress::RawInflate'=> '2.021',
4012             'IO::Uncompress::Unzip' => '2.021',
4013             'IO::Zlib' => '1.10',
4014             'IPC::Cmd' => '0.50',
4015             'IPC::Open3' => '1.05',
4016             'Locale::Maketext::Simple'=> '0.21',
4017             'Log::Message::Simple' => '0.06',
4018             'Math::BigInt' => '1.89_01',
4019             'Math::BigRat' => '0.24',
4020             'Module::Build' => '0.35',
4021             'Module::Build::Base' => '0.35',
4022             'Module::Build::Compat' => '0.35',
4023             'Module::Build::Config' => '0.35',
4024             'Module::Build::Cookbook'=> '0.35',
4025             'Module::Build::Dumper' => '0.35',
4026             'Module::Build::ModuleInfo'=> '0.35',
4027             'Module::Build::Notes' => '0.35',
4028             'Module::Build::PPMMaker'=> '0.35',
4029             'Module::Build::Platform::Amiga'=> '0.35',
4030             'Module::Build::Platform::Default'=> '0.35',
4031             'Module::Build::Platform::EBCDIC'=> '0.35',
4032             'Module::Build::Platform::MPEiX'=> '0.35',
4033             'Module::Build::Platform::MacOS'=> '0.35',
4034             'Module::Build::Platform::RiscOS'=> '0.35',
4035             'Module::Build::Platform::Unix'=> '0.35',
4036             'Module::Build::Platform::VMS'=> '0.35',
4037             'Module::Build::Platform::VOS'=> '0.35',
4038             'Module::Build::Platform::Windows'=> '0.35',
4039             'Module::Build::Platform::aix'=> '0.35',
4040             'Module::Build::Platform::cygwin'=> '0.35',
4041             'Module::Build::Platform::darwin'=> '0.35',
4042             'Module::Build::Platform::os2'=> '0.35',
4043             'Module::Build::PodParser'=> '0.35',
4044             'Module::CoreList' => '2.19',
4045             'Module::Loaded' => '0.06',
4046             'Opcode' => '1.13',
4047             'PerlIO::via' => '0.08',
4048             'Pod::Perldoc' => '3.15_01',
4049             'Pod::Plainer' => '1.01',
4050             'Safe' => '2.19',
4051             'Socket' => '1.84',
4052             'Switch' => '2.14_01',
4053             'Term::ANSIColor' => '2.02',
4054             'Term::ReadLine' => '1.05',
4055             'Text::Balanced' => '2.02',
4056             'Text::Soundex' => '3.03_01',
4057             'Time::Local' => '1.1901_01',
4058             'Unicode::Collate' => '0.52_01',
4059             'attributes' => '0.12',
4060             'constant' => '1.19',
4061             'deprecate' => '0.01',
4062             'overload' => '1.08',
4063             'parent' => '0.223',
4064             're' => '0.10',
4065             'threads' => '1.74',
4066             'threads::shared' => '1.31',
4067             'warnings' => '1.07',
4068             },
4069             removed => {
4070             'attrs' => 1,
4071             }
4072             },
4073             5.011001 => {
4074             delta_from => 5.011,
4075             changed => {
4076             'B' => '1.23',
4077             'B::Concise' => '0.77',
4078             'B::Deparse' => '0.92',
4079             'CGI' => '3.48',
4080             'CGI::Pretty' => '3.46',
4081             'CGI::Util' => '3.48',
4082             'CPANPLUS' => '0.89_03',
4083             'CPANPLUS::Internals' => '0.89_03',
4084             'CPANPLUS::Shell::Default'=> '0.89_03',
4085             'Carp' => '1.13',
4086             'Carp::Heavy' => '1.13',
4087             'ExtUtils::CBuilder' => '0.260301',
4088             'ExtUtils::CBuilder::Base'=> '0.260301',
4089             'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
4090             'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
4091             'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
4092             'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
4093             'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
4094             'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
4095             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
4096             'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
4097             'ExtUtils::Install' => '1.55',
4098             'ExtUtils::Manifest' => '1.57',
4099             'ExtUtils::Packlist' => '1.44',
4100             'ExtUtils::ParseXS' => '2.21',
4101             'File::Glob' => '1.07',
4102             'File::Path' => '2.08',
4103             'IO' => '1.25_02',
4104             'Module::CoreList' => '2.21',
4105             'OS2::DLL' => '1.04',
4106             'OS2::Process' => '1.04',
4107             'Object::Accessor' => '0.36',
4108             'Opcode' => '1.15',
4109             'POSIX' => '1.18',
4110             'Parse::CPAN::Meta' => '1.40',
4111             'PerlIO::via' => '0.09',
4112             'Pod::Simple' => '3.08',
4113             'Socket' => '1.85',
4114             'Storable' => '2.22',
4115             'Switch' => '2.15',
4116             'Test::Builder' => '0.94',
4117             'Test::Builder::Module' => '0.94',
4118             'Test::More' => '0.94',
4119             'Test::Simple' => '0.94',
4120             'XS::APItest' => '0.16',
4121             'mro' => '1.02',
4122             'overload' => '1.09',
4123             'threads::shared' => '1.32',
4124             },
4125             removed => {
4126             }
4127             },
4128             5.011002 => {
4129             delta_from => 5.011001,
4130             changed => {
4131             'B::Concise' => '0.78',
4132             'B::Deparse' => '0.93',
4133             'CPANPLUS' => '0.89_09',
4134             'CPANPLUS::Dist::Build' => '0.44',
4135             'CPANPLUS::Dist::Build::Constants'=> '0.44',
4136             'CPANPLUS::Internals' => '0.89_09',
4137             'CPANPLUS::Shell::Default'=> '0.89_09',
4138             'Carp' => '1.14',
4139             'Carp::Heavy' => '1.14',
4140             'Compress::Zlib' => '2.022',
4141             'DBM_Filter' => '0.03',
4142             'Encode' => '2.38',
4143             'Encode::Byte' => '2.04',
4144             'Encode::CN' => '2.03',
4145             'Encode::JP' => '2.04',
4146             'Encode::KR' => '2.03',
4147             'Encode::TW' => '2.03',
4148             'Encode::Unicode' => '2.07',
4149             'Env' => '1.01',
4150             'Exporter' => '5.64_01',
4151             'Exporter::Heavy' => '5.64_01',
4152             'ExtUtils::CBuilder' => '0.27',
4153             'ExtUtils::CBuilder::Base'=> '0.27',
4154             'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
4155             'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
4156             'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
4157             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
4158             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
4159             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
4160             'ExtUtils::CBuilder::Platform::aix'=> '0.27',
4161             'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
4162             'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
4163             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
4164             'ExtUtils::CBuilder::Platform::os2'=> '0.27',
4165             'File::Fetch' => '0.22',
4166             'I18N::LangTags::Detect'=> '1.04',
4167             'I18N::Langinfo' => '0.03',
4168             'IO::Compress::Adapter::Bzip2'=> '2.022',
4169             'IO::Compress::Adapter::Deflate'=> '2.022',
4170             'IO::Compress::Adapter::Identity'=> '2.022',
4171             'IO::Compress::Base' => '2.022',
4172             'IO::Compress::Base::Common'=> '2.022',
4173             'IO::Compress::Bzip2' => '2.022',
4174             'IO::Compress::Deflate' => '2.022',
4175             'IO::Compress::Gzip' => '2.022',
4176             'IO::Compress::Gzip::Constants'=> '2.022',
4177             'IO::Compress::RawDeflate'=> '2.022',
4178             'IO::Compress::Zip' => '2.022',
4179             'IO::Compress::Zip::Constants'=> '2.022',
4180             'IO::Compress::Zlib::Constants'=> '2.022',
4181             'IO::Compress::Zlib::Extra'=> '2.022',
4182             'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4183             'IO::Uncompress::Adapter::Identity'=> '2.022',
4184             'IO::Uncompress::Adapter::Inflate'=> '2.022',
4185             'IO::Uncompress::AnyInflate'=> '2.022',
4186             'IO::Uncompress::AnyUncompress'=> '2.022',
4187             'IO::Uncompress::Base' => '2.022',
4188             'IO::Uncompress::Bunzip2'=> '2.022',
4189             'IO::Uncompress::Gunzip'=> '2.022',
4190             'IO::Uncompress::Inflate'=> '2.022',
4191             'IO::Uncompress::RawInflate'=> '2.022',
4192             'IO::Uncompress::Unzip' => '2.022',
4193             'IPC::Cmd' => '0.54',
4194             'List::Util' => '1.22',
4195             'List::Util::PP' => '1.22',
4196             'List::Util::XS' => '1.22',
4197             'Locale::Maketext' => '1.14',
4198             'Module::Build' => '0.35_09',
4199             'Module::Build::Base' => '0.35_09',
4200             'Module::Build::Compat' => '0.35_09',
4201             'Module::Build::Config' => '0.35_09',
4202             'Module::Build::Cookbook'=> '0.35_09',
4203             'Module::Build::Dumper' => '0.35_09',
4204             'Module::Build::ModuleInfo'=> '0.35_09',
4205             'Module::Build::Notes' => '0.35_09',
4206             'Module::Build::PPMMaker'=> '0.35_09',
4207             'Module::Build::Platform::Amiga'=> '0.35_09',
4208             'Module::Build::Platform::Default'=> '0.35_09',
4209             'Module::Build::Platform::EBCDIC'=> '0.35_09',
4210             'Module::Build::Platform::MPEiX'=> '0.35_09',
4211             'Module::Build::Platform::MacOS'=> '0.35_09',
4212             'Module::Build::Platform::RiscOS'=> '0.35_09',
4213             'Module::Build::Platform::Unix'=> '0.35_09',
4214             'Module::Build::Platform::VMS'=> '0.35_09',
4215             'Module::Build::Platform::VOS'=> '0.35_09',
4216             'Module::Build::Platform::Windows'=> '0.35_09',
4217             'Module::Build::Platform::aix'=> '0.35_09',
4218             'Module::Build::Platform::cygwin'=> '0.35_09',
4219             'Module::Build::Platform::darwin'=> '0.35_09',
4220             'Module::Build::Platform::os2'=> '0.35_09',
4221             'Module::Build::PodParser'=> '0.35_09',
4222             'Module::Build::YAML' => '1.40',
4223             'Module::CoreList' => '2.23',
4224             'Module::Load::Conditional'=> '0.34',
4225             'Pod::Simple' => '3.10',
4226             'Pod::Simple::XHTML' => '3.10',
4227             'Scalar::Util' => '1.22',
4228             'Scalar::Util::PP' => '1.22',
4229             'Switch' => '2.16',
4230             'XS::APItest' => '0.17',
4231             'XS::APItest::KeywordRPN'=> '0.003',
4232             'base' => '2.15',
4233             'diagnostics' => '1.18',
4234             'fields' => '2.15',
4235             'inc::latest' => '0.35_09',
4236             'legacy' => '1.00',
4237             'overload' => '1.10',
4238             },
4239             removed => {
4240             }
4241             },
4242             5.011003 => {
4243             delta_from => 5.011002,
4244             changed => {
4245             'App::Cpan' => '1.570001',
4246             'Archive::Extract' => '0.36',
4247             'CPAN' => '1.94_5301',
4248             'CPAN::FTP' => '5.5004',
4249             'CPAN::FirstTime' => '5.530001',
4250             'CPAN::Mirrors' => '1.770001',
4251             'CPANPLUS' => '0.90',
4252             'CPANPLUS::Internals' => '0.90',
4253             'CPANPLUS::Shell::Default'=> '0.90',
4254             'Cwd' => '3.31',
4255             'Encode' => '2.39',
4256             'ExtUtils::Command::MM' => '6.56',
4257             'ExtUtils::Liblist' => '6.56',
4258             'ExtUtils::Liblist::Kid'=> '6.56',
4259             'ExtUtils::MM' => '6.56',
4260             'ExtUtils::MM_AIX' => '6.56',
4261             'ExtUtils::MM_Any' => '6.56',
4262             'ExtUtils::MM_BeOS' => '6.56',
4263             'ExtUtils::MM_Cygwin' => '6.56',
4264             'ExtUtils::MM_DOS' => '6.56',
4265             'ExtUtils::MM_Darwin' => '6.56',
4266             'ExtUtils::MM_MacOS' => '6.56',
4267             'ExtUtils::MM_NW5' => '6.56',
4268             'ExtUtils::MM_OS2' => '6.56',
4269             'ExtUtils::MM_QNX' => '6.56',
4270             'ExtUtils::MM_UWIN' => '6.56',
4271             'ExtUtils::MM_Unix' => '6.56',
4272             'ExtUtils::MM_VMS' => '6.56',
4273             'ExtUtils::MM_VOS' => '6.56',
4274             'ExtUtils::MM_Win32' => '6.56',
4275             'ExtUtils::MM_Win95' => '6.56',
4276             'ExtUtils::MY' => '6.56',
4277             'ExtUtils::MakeMaker' => '6.56',
4278             'ExtUtils::MakeMaker::Config'=> '6.56',
4279             'ExtUtils::Mkbootstrap' => '6.56',
4280             'ExtUtils::Mksymlists' => '6.56',
4281             'ExtUtils::testlib' => '6.56',
4282             'File::Find' => '1.15',
4283             'File::Path' => '2.08_01',
4284             'File::Spec' => '3.31',
4285             'Module::Build' => '0.36',
4286             'Module::Build::Base' => '0.36',
4287             'Module::Build::Compat' => '0.36',
4288             'Module::Build::Config' => '0.36',
4289             'Module::Build::Cookbook'=> '0.36',
4290             'Module::Build::Dumper' => '0.36',
4291             'Module::Build::ModuleInfo'=> '0.36',
4292             'Module::Build::Notes' => '0.36',
4293             'Module::Build::PPMMaker'=> '0.36',
4294             'Module::Build::Platform::Amiga'=> '0.36',
4295             'Module::Build::Platform::Default'=> '0.36',
4296             'Module::Build::Platform::EBCDIC'=> '0.36',
4297             'Module::Build::Platform::MPEiX'=> '0.36',
4298             'Module::Build::Platform::MacOS'=> '0.36',
4299             'Module::Build::Platform::RiscOS'=> '0.36',
4300             'Module::Build::Platform::Unix'=> '0.36',
4301             'Module::Build::Platform::VMS'=> '0.36',
4302             'Module::Build::Platform::VOS'=> '0.36',
4303             'Module::Build::Platform::Windows'=> '0.36',
4304             'Module::Build::Platform::aix'=> '0.36',
4305             'Module::Build::Platform::cygwin'=> '0.36',
4306             'Module::Build::Platform::darwin'=> '0.36',
4307             'Module::Build::Platform::os2'=> '0.36',
4308             'Module::Build::PodParser'=> '0.36',
4309             'Module::CoreList' => '2.24',
4310             'POSIX' => '1.19',
4311             'Pod::Simple' => '3.13',
4312             'Pod::Simple::BlackBox' => '3.13',
4313             'Pod::Simple::Checker' => '3.13',
4314             'Pod::Simple::Debug' => '3.13',
4315             'Pod::Simple::DumpAsText'=> '3.13',
4316             'Pod::Simple::DumpAsXML'=> '3.13',
4317             'Pod::Simple::HTML' => '3.13',
4318             'Pod::Simple::HTMLBatch'=> '3.13',
4319             'Pod::Simple::LinkSection'=> '3.13',
4320             'Pod::Simple::Methody' => '3.13',
4321             'Pod::Simple::Progress' => '3.13',
4322             'Pod::Simple::PullParser'=> '3.13',
4323             'Pod::Simple::PullParserEndToken'=> '3.13',
4324             'Pod::Simple::PullParserStartToken'=> '3.13',
4325             'Pod::Simple::PullParserTextToken'=> '3.13',
4326             'Pod::Simple::PullParserToken'=> '3.13',
4327             'Pod::Simple::RTF' => '3.13',
4328             'Pod::Simple::Search' => '3.13',
4329             'Pod::Simple::SimpleTree'=> '3.13',
4330             'Pod::Simple::Text' => '3.13',
4331             'Pod::Simple::TextContent'=> '3.13',
4332             'Pod::Simple::TiedOutFH'=> '3.13',
4333             'Pod::Simple::Transcode'=> '3.13',
4334             'Pod::Simple::TranscodeDumb'=> '3.13',
4335             'Pod::Simple::TranscodeSmart'=> '3.13',
4336             'Pod::Simple::XHTML' => '3.13',
4337             'Pod::Simple::XMLOutStream'=> '3.13',
4338             'Safe' => '2.20',
4339             'Unicode' => '5.2.0',
4340             'constant' => '1.20',
4341             'diagnostics' => '1.19',
4342             'feature' => '1.14',
4343             'inc::latest' => '0.36',
4344             'threads' => '1.75',
4345             'warnings' => '1.08',
4346             },
4347             removed => {
4348             'legacy' => 1,
4349             }
4350             },
4351             5.011004 => {
4352             delta_from => 5.011003,
4353             changed => {
4354             'App::Cpan' => '1.5701',
4355             'Archive::Extract' => '0.38',
4356             'B::Deparse' => '0.94',
4357             'CPAN' => '1.94_54',
4358             'CPAN::FirstTime' => '5.53',
4359             'CPAN::Mirrors' => '1.77',
4360             'Carp' => '1.15',
4361             'Carp::Heavy' => '1.15',
4362             'Compress::Raw::Bzip2' => '2.024',
4363             'Compress::Raw::Zlib' => '2.024',
4364             'Compress::Zlib' => '2.024',
4365             'File::Copy' => '2.17',
4366             'File::Fetch' => '0.24',
4367             'GDBM_File' => '1.10',
4368             'IO::Compress::Adapter::Bzip2'=> '2.024',
4369             'IO::Compress::Adapter::Deflate'=> '2.024',
4370             'IO::Compress::Adapter::Identity'=> '2.024',
4371             'IO::Compress::Base' => '2.024',
4372             'IO::Compress::Base::Common'=> '2.024',
4373             'IO::Compress::Bzip2' => '2.024',
4374             'IO::Compress::Deflate' => '2.024',
4375             'IO::Compress::Gzip' => '2.024',
4376             'IO::Compress::Gzip::Constants'=> '2.024',
4377             'IO::Compress::RawDeflate'=> '2.024',
4378             'IO::Compress::Zip' => '2.024',
4379             'IO::Compress::Zip::Constants'=> '2.024',
4380             'IO::Compress::Zlib::Constants'=> '2.024',
4381             'IO::Compress::Zlib::Extra'=> '2.024',
4382             'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4383             'IO::Uncompress::Adapter::Identity'=> '2.024',
4384             'IO::Uncompress::Adapter::Inflate'=> '2.024',
4385             'IO::Uncompress::AnyInflate'=> '2.024',
4386             'IO::Uncompress::AnyUncompress'=> '2.024',
4387             'IO::Uncompress::Base' => '2.024',
4388             'IO::Uncompress::Bunzip2'=> '2.024',
4389             'IO::Uncompress::Gunzip'=> '2.024',
4390             'IO::Uncompress::Inflate'=> '2.024',
4391             'IO::Uncompress::RawInflate'=> '2.024',
4392             'IO::Uncompress::Unzip' => '2.024',
4393             'Module::Build' => '0.3603',
4394             'Module::Build::Base' => '0.3603',
4395             'Module::Build::Compat' => '0.3603',
4396             'Module::Build::Config' => '0.3603',
4397             'Module::Build::Cookbook'=> '0.3603',
4398             'Module::Build::Dumper' => '0.3603',
4399             'Module::Build::ModuleInfo'=> '0.3603',
4400             'Module::Build::Notes' => '0.3603',
4401             'Module::Build::PPMMaker'=> '0.3603',
4402             'Module::Build::Platform::Amiga'=> '0.3603',
4403             'Module::Build::Platform::Default'=> '0.3603',
4404             'Module::Build::Platform::EBCDIC'=> '0.3603',
4405             'Module::Build::Platform::MPEiX'=> '0.3603',
4406             'Module::Build::Platform::MacOS'=> '0.3603',
4407             'Module::Build::Platform::RiscOS'=> '0.3603',
4408             'Module::Build::Platform::Unix'=> '0.3603',
4409             'Module::Build::Platform::VMS'=> '0.3603',
4410             'Module::Build::Platform::VOS'=> '0.3603',
4411             'Module::Build::Platform::Windows'=> '0.3603',
4412             'Module::Build::Platform::aix'=> '0.3603',
4413             'Module::Build::Platform::cygwin'=> '0.3603',
4414             'Module::Build::Platform::darwin'=> '0.3603',
4415             'Module::Build::Platform::os2'=> '0.3603',
4416             'Module::Build::PodParser'=> '0.3603',
4417             'Module::CoreList' => '2.25',
4418             'PerlIO::encoding' => '0.12',
4419             'Safe' => '2.21',
4420             'UNIVERSAL' => '1.06',
4421             'feature' => '1.15',
4422             'inc::latest' => '0.3603',
4423             'less' => '0.03',
4424             're' => '0.11',
4425             'version' => '0.81',
4426             'warnings' => '1.09',
4427             },
4428             removed => {
4429             }
4430             },
4431             5.011005 => {
4432             delta_from => 5.011004,
4433             changed => {
4434             'B::Debug' => '1.12',
4435             'CPAN' => '1.94_56',
4436             'CPAN::Debug' => '5.5001',
4437             'CPAN::Distribution' => '1.9456',
4438             'CPAN::FirstTime' => '5.5301',
4439             'CPAN::HandleConfig' => '5.5001',
4440             'CPAN::Shell' => '5.5001',
4441             'CPAN::Tarzip' => '5.5011',
4442             'CPANPLUS::Dist::Build' => '0.46',
4443             'CPANPLUS::Dist::Build::Constants'=> '0.46',
4444             'Module::CoreList' => '2.26',
4445             'Pod::Man' => '2.23',
4446             'Pod::ParseLink' => '1.10',
4447             'Pod::Perldoc' => '3.15_02',
4448             'Pod::Plainer' => '1.02',
4449             'Pod::Text' => '3.14',
4450             'Pod::Text::Color' => '2.06',
4451             'Pod::Text::Overstrike' => '2.04',
4452             'Pod::Text::Termcap' => '2.06',
4453             'Safe' => '2.22',
4454             'Socket' => '1.86',
4455             'version' => '0.82',
4456             },
4457             removed => {
4458             }
4459             },
4460             5.012 => {
4461             delta_from => 5.011005,
4462             changed => {
4463             'B::Deparse' => '0.96',
4464             'CPAN::Distribution' => '1.9456_01',
4465             'Module::CoreList' => '2.29',
4466             'Safe' => '2.25',
4467             'Socket' => '1.87',
4468             'Tie::Scalar' => '1.02',
4469             'Time::Piece' => '1.15_01',
4470             'bytes' => '1.04',
4471             'feature' => '1.16',
4472             'utf8' => '1.08',
4473             },
4474             removed => {
4475             }
4476             },
4477             5.012001 => {
4478             delta_from => 5.012,
4479             changed => {
4480             'B::Deparse' => '0.97',
4481             'CGI' => '3.49',
4482             'CGI::Fast' => '1.08',
4483             'Carp' => '1.16',
4484             'Carp::Heavy' => '1.16',
4485             'File::Copy' => '2.18',
4486             'Module::CoreList' => '2.32',
4487             'Pod::Functions' => '1.04',
4488             'Pod::Simple' => '3.14',
4489             'Pod::Simple::BlackBox' => '3.14',
4490             'Pod::Simple::Checker' => '3.14',
4491             'Pod::Simple::Debug' => '3.14',
4492             'Pod::Simple::DumpAsText'=> '3.14',
4493             'Pod::Simple::DumpAsXML'=> '3.14',
4494             'Pod::Simple::HTML' => '3.14',
4495             'Pod::Simple::HTMLBatch'=> '3.14',
4496             'Pod::Simple::LinkSection'=> '3.14',
4497             'Pod::Simple::Methody' => '3.14',
4498             'Pod::Simple::Progress' => '3.14',
4499             'Pod::Simple::PullParser'=> '3.14',
4500             'Pod::Simple::PullParserEndToken'=> '3.14',
4501             'Pod::Simple::PullParserStartToken'=> '3.14',
4502             'Pod::Simple::PullParserTextToken'=> '3.14',
4503             'Pod::Simple::PullParserToken'=> '3.14',
4504             'Pod::Simple::RTF' => '3.14',
4505             'Pod::Simple::Search' => '3.14',
4506             'Pod::Simple::SimpleTree'=> '3.14',
4507             'Pod::Simple::Text' => '3.14',
4508             'Pod::Simple::TextContent'=> '3.14',
4509             'Pod::Simple::TiedOutFH'=> '3.14',
4510             'Pod::Simple::Transcode'=> '3.14',
4511             'Pod::Simple::TranscodeDumb'=> '3.14',
4512             'Pod::Simple::TranscodeSmart'=> '3.14',
4513             'Pod::Simple::XHTML' => '3.14',
4514             'Pod::Simple::XMLOutStream'=> '3.14',
4515             'Safe' => '2.27',
4516             },
4517             removed => {
4518             }
4519             },
4520             5.012002 => {
4521             delta_from => 5.012001,
4522             changed => {
4523             'Carp' => '1.17',
4524             'Carp::Heavy' => '1.17',
4525             'File::Spec' => '3.31_01',
4526             'Module::CoreList' => '2.38',
4527             'Module::Load::Conditional'=> '0.38',
4528             'PerlIO::scalar' => '0.08',
4529             },
4530             removed => {
4531             }
4532             },
4533             5.012003 => {
4534             delta_from => 5.012002,
4535             changed => {
4536             'B::Deparse' => '0.9701',
4537             'Module::Build::Platform::cygwin'=> '0.360301',
4538             'Module::CoreList' => '2.43',
4539             'Socket' => '1.87_01',
4540             },
4541             removed => {
4542             }
4543             },
4544             5.012004 => {
4545             delta_from => 5.012003,
4546             changed => {
4547             'Module::CoreList' => '2.50',
4548             },
4549             removed => {
4550             }
4551             },
4552             5.012005 => {
4553             delta_from => 5.012004,
4554             changed => {
4555             'B::Concise' => '0.78_01',
4556             'Encode' => '2.39_01',
4557             'File::Glob' => '1.07_01',
4558             'Module::CoreList' => '2.50_02',
4559             'Unicode::UCD' => '0.29',
4560             'charnames' => '1.07_01',
4561             },
4562             removed => {
4563             }
4564             },
4565             5.013 => {
4566             delta_from => 5.012,
4567             changed => {
4568             'CGI' => '3.49',
4569             'CGI::Fast' => '1.08',
4570             'Data::Dumper' => '2.126',
4571             'ExtUtils::MM_Unix' => '6.5601',
4572             'ExtUtils::MakeMaker' => '6.5601',
4573             'File::Copy' => '2.18',
4574             'IPC::Open3' => '1.06',
4575             'MIME::Base64' => '3.09',
4576             'MIME::QuotedPrint' => '3.09',
4577             'Module::CoreList' => '2.31',
4578             'Pod::Functions' => '1.04',
4579             'XS::APItest' => '0.18',
4580             'XS::APItest::KeywordRPN'=> '0.004',
4581             'feature' => '1.17',
4582             'threads' => '1.77_01',
4583             'threads::shared' => '1.33',
4584             },
4585             removed => {
4586             }
4587             },
4588             5.013001 => {
4589             delta_from => 5.012001,
4590             changed => {
4591             'Data::Dumper' => '2.126',
4592             'Dumpvalue' => '1.14',
4593             'Errno' => '1.12',
4594             'ExtUtils::MM_Unix' => '6.5601',
4595             'ExtUtils::MakeMaker' => '6.5601',
4596             'ExtUtils::ParseXS' => '2.2205',
4597             'File::Find' => '1.16',
4598             'IPC::Cmd' => '0.58',
4599             'IPC::Open3' => '1.06',
4600             'List::Util' => '1.23',
4601             'List::Util::PP' => '1.23',
4602             'List::Util::XS' => '1.23',
4603             'Locale::Codes' => '3.12',
4604             'Locale::Codes::Country'=> '3.12',
4605             'Locale::Codes::Currency'=> '3.12',
4606             'Locale::Codes::Language'=> '3.12',
4607             'Locale::Codes::Script' => '3.12',
4608             'Locale::Constants' => '3.12',
4609             'Locale::Country' => '3.12',
4610             'Locale::Currency' => '3.12',
4611             'Locale::Language' => '3.12',
4612             'Locale::Script' => '3.12',
4613             'MIME::Base64' => '3.09',
4614             'MIME::QuotedPrint' => '3.09',
4615             'Module::Build::Platform::cygwin'=> '0.360301',
4616             'Module::CoreList' => '2.34',
4617             'Module::Load::Conditional'=> '0.38',
4618             'PerlIO::scalar' => '0.08',
4619             'Scalar::Util' => '1.23',
4620             'Scalar::Util::PP' => '1.23',
4621             'Socket' => '1.88',
4622             'Term::ReadLine' => '1.06',
4623             'Unicode::UCD' => '0.28',
4624             'XS::APItest' => '0.19',
4625             'XS::APItest::KeywordRPN'=> '0.004',
4626             'charnames' => '1.08',
4627             'feature' => '1.17',
4628             'threads' => '1.77_01',
4629             'threads::shared' => '1.33',
4630             },
4631             removed => {
4632             'Class::ISA' => 1,
4633             'Pod::Plainer' => 1,
4634             'Switch' => 1,
4635             }
4636             },
4637             5.013002 => {
4638             delta_from => 5.013001,
4639             changed => {
4640             'B::Concise' => '0.79',
4641             'B::Deparse' => '0.98',
4642             'CPAN' => '1.94_57',
4643             'CPAN::Distribution' => '1.9600',
4644             'Exporter' => '5.64_02',
4645             'Exporter::Heavy' => '5.64_02',
4646             'File::Copy' => '2.19',
4647             'Hash::Util' => '0.08',
4648             'IO::Socket' => '1.32',
4649             'Locale::Codes' => '3.13',
4650             'Locale::Codes::Country'=> '3.13',
4651             'Locale::Codes::Currency'=> '3.13',
4652             'Locale::Codes::Language'=> '3.13',
4653             'Locale::Codes::Script' => '3.13',
4654             'Locale::Constants' => '3.13',
4655             'Locale::Country' => '3.13',
4656             'Locale::Currency' => '3.13',
4657             'Locale::Language' => '3.13',
4658             'Locale::Script' => '3.13',
4659             'Search::Dict' => '1.03',
4660             'Socket' => '1.89',
4661             'Thread::Semaphore' => '2.11',
4662             'UNIVERSAL' => '1.07',
4663             'VMS::DCLsym' => '1.04',
4664             'mro' => '1.03',
4665             'threads' => '1.77_02',
4666             'threads::shared' => '1.33_01',
4667             },
4668             removed => {
4669             }
4670             },
4671             5.013003 => {
4672             delta_from => 5.013002,
4673             changed => {
4674             'App::Prove' => '3.21',
4675             'App::Prove::State' => '3.21',
4676             'App::Prove::State::Result'=> '3.21',
4677             'App::Prove::State::Result::Test'=> '3.21',
4678             'Archive::Extract' => '0.42',
4679             'Archive::Tar' => '1.64',
4680             'Archive::Tar::Constant'=> '1.64',
4681             'Archive::Tar::File' => '1.64',
4682             'Attribute::Handlers' => '0.88',
4683             'CPANPLUS' => '0.9007',
4684             'CPANPLUS::Internals' => '0.9007',
4685             'CPANPLUS::Shell::Default'=> '0.9007',
4686             'Compress::Raw::Bzip2' => '2.027',
4687             'Compress::Raw::Zlib' => '2.027_01',
4688             'Compress::Zlib' => '2.027',
4689             'DB' => '1.03',
4690             'Digest::MD5' => '2.40',
4691             'Digest::SHA' => '5.48',
4692             'Exporter' => '5.64_03',
4693             'Exporter::Heavy' => '5.64_03',
4694             'ExtUtils::CBuilder' => '0.2703',
4695             'ExtUtils::CBuilder::Base'=> '0.2703_01',
4696             'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4697             'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4698             'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4699             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4700             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4701             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4702             'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4703             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4704             'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4705             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4706             'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4707             'ExtUtils::Manifest' => '1.58',
4708             'ExtUtils::ParseXS' => '2.2206',
4709             'Fatal' => '2.10',
4710             'File::Basename' => '2.79',
4711             'File::Copy' => '2.20',
4712             'File::DosGlob' => '1.02',
4713             'File::Find' => '1.17',
4714             'File::Glob' => '1.08',
4715             'File::stat' => '1.03',
4716             'I18N::LangTags' => '0.35_01',
4717             'I18N::LangTags::List' => '0.35_01',
4718             'IO::Compress::Adapter::Bzip2'=> '2.027',
4719             'IO::Compress::Adapter::Deflate'=> '2.027',
4720             'IO::Compress::Adapter::Identity'=> '2.027',
4721             'IO::Compress::Base' => '2.027',
4722             'IO::Compress::Base::Common'=> '2.027',
4723             'IO::Compress::Bzip2' => '2.027',
4724             'IO::Compress::Deflate' => '2.027',
4725             'IO::Compress::Gzip' => '2.027',
4726             'IO::Compress::Gzip::Constants'=> '2.027',
4727             'IO::Compress::RawDeflate'=> '2.027',
4728             'IO::Compress::Zip' => '2.027',
4729             'IO::Compress::Zip::Constants'=> '2.027',
4730             'IO::Compress::Zlib::Constants'=> '2.027',
4731             'IO::Compress::Zlib::Extra'=> '2.027',
4732             'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4733             'IO::Uncompress::Adapter::Identity'=> '2.027',
4734             'IO::Uncompress::Adapter::Inflate'=> '2.027',
4735             'IO::Uncompress::AnyInflate'=> '2.027',
4736             'IO::Uncompress::AnyUncompress'=> '2.027',
4737             'IO::Uncompress::Base' => '2.027',
4738             'IO::Uncompress::Bunzip2'=> '2.027',
4739             'IO::Uncompress::Gunzip'=> '2.027',
4740             'IO::Uncompress::Inflate'=> '2.027',
4741             'IO::Uncompress::RawInflate'=> '2.027',
4742             'IO::Uncompress::Unzip' => '2.027',
4743             'IPC::Cmd' => '0.60',
4744             'IPC::Msg' => '2.03',
4745             'IPC::Semaphore' => '2.03',
4746             'IPC::SharedMem' => '2.03',
4747             'IPC::SysV' => '2.03',
4748             'Locale::Maketext' => '1.15',
4749             'Locale::Maketext::Guts'=> undef,
4750             'Locale::Maketext::GutsLoader'=> undef,
4751             'Module::Build' => '0.3607',
4752             'Module::Build::Base' => '0.3607',
4753             'Module::Build::Compat' => '0.3607',
4754             'Module::Build::Config' => '0.3607',
4755             'Module::Build::Cookbook'=> '0.3607',
4756             'Module::Build::Dumper' => '0.3607',
4757             'Module::Build::ModuleInfo'=> '0.3607',
4758             'Module::Build::Notes' => '0.3607',
4759             'Module::Build::PPMMaker'=> '0.3607',
4760             'Module::Build::Platform::Amiga'=> '0.3607',
4761             'Module::Build::Platform::Default'=> '0.3607',
4762             'Module::Build::Platform::EBCDIC'=> '0.3607',
4763             'Module::Build::Platform::MPEiX'=> '0.3607',
4764             'Module::Build::Platform::MacOS'=> '0.3607',
4765             'Module::Build::Platform::RiscOS'=> '0.3607',
4766             'Module::Build::Platform::Unix'=> '0.3607',
4767             'Module::Build::Platform::VMS'=> '0.3607',
4768             'Module::Build::Platform::VOS'=> '0.3607',
4769             'Module::Build::Platform::Windows'=> '0.3607',
4770             'Module::Build::Platform::aix'=> '0.3607',
4771             'Module::Build::Platform::cygwin'=> '0.3607',
4772             'Module::Build::Platform::darwin'=> '0.3607',
4773             'Module::Build::Platform::os2'=> '0.3607',
4774             'Module::Build::PodParser'=> '0.3607',
4775             'Module::CoreList' => '2.36',
4776             'Module::Load' => '0.18',
4777             'TAP::Base' => '3.21',
4778             'TAP::Formatter::Base' => '3.21',
4779             'TAP::Formatter::Color' => '3.21',
4780             'TAP::Formatter::Console'=> '3.21',
4781             'TAP::Formatter::Console::ParallelSession'=> '3.21',
4782             'TAP::Formatter::Console::Session'=> '3.21',
4783             'TAP::Formatter::File' => '3.21',
4784             'TAP::Formatter::File::Session'=> '3.21',
4785             'TAP::Formatter::Session'=> '3.21',
4786             'TAP::Harness' => '3.21',
4787             'TAP::Object' => '3.21',
4788             'TAP::Parser' => '3.21',
4789             'TAP::Parser::Aggregator'=> '3.21',
4790             'TAP::Parser::Grammar' => '3.21',
4791             'TAP::Parser::Iterator' => '3.21',
4792             'TAP::Parser::Iterator::Array'=> '3.21',
4793             'TAP::Parser::Iterator::Process'=> '3.21',
4794             'TAP::Parser::Iterator::Stream'=> '3.21',
4795             'TAP::Parser::IteratorFactory'=> '3.21',
4796             'TAP::Parser::Multiplexer'=> '3.21',
4797             'TAP::Parser::Result' => '3.21',
4798             'TAP::Parser::Result::Bailout'=> '3.21',
4799             'TAP::Parser::Result::Comment'=> '3.21',
4800             'TAP::Parser::Result::Plan'=> '3.21',
4801             'TAP::Parser::Result::Pragma'=> '3.21',
4802             'TAP::Parser::Result::Test'=> '3.21',
4803             'TAP::Parser::Result::Unknown'=> '3.21',
4804             'TAP::Parser::Result::Version'=> '3.21',
4805             'TAP::Parser::Result::YAML'=> '3.21',
4806             'TAP::Parser::ResultFactory'=> '3.21',
4807             'TAP::Parser::Scheduler'=> '3.21',
4808             'TAP::Parser::Scheduler::Job'=> '3.21',
4809             'TAP::Parser::Scheduler::Spinner'=> '3.21',
4810             'TAP::Parser::Source' => '3.21',
4811             'TAP::Parser::SourceHandler'=> '3.21',
4812             'TAP::Parser::SourceHandler::Executable'=> '3.21',
4813             'TAP::Parser::SourceHandler::File'=> '3.21',
4814             'TAP::Parser::SourceHandler::Handle'=> '3.21',
4815             'TAP::Parser::SourceHandler::Perl'=> '3.21',
4816             'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4817             'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4818             'TAP::Parser::Utils' => '3.21',
4819             'TAP::Parser::YAMLish::Reader'=> '3.21',
4820             'TAP::Parser::YAMLish::Writer'=> '3.21',
4821             'Term::ANSIColor' => '3.00',
4822             'Term::ReadLine' => '1.07',
4823             'Test::Harness' => '3.21',
4824             'Tie::Array' => '1.04',
4825             'Time::HiRes' => '1.9721',
4826             'Time::Piece' => '1.20_01',
4827             'Unicode::Collate' => '0.53',
4828             'Unicode::Normalize' => '1.06',
4829             'Unicode::UCD' => '0.29',
4830             'autodie' => '2.10',
4831             'autodie::exception' => '2.10',
4832             'autodie::exception::system'=> '2.10',
4833             'autodie::hints' => '2.10',
4834             'blib' => '1.05',
4835             'charnames' => '1.11',
4836             'diagnostics' => '1.20',
4837             'inc::latest' => '0.3607',
4838             'lib' => '0.63',
4839             're' => '0.12',
4840             'threads' => '1.77_03',
4841             'threads::shared' => '1.33_02',
4842             'vars' => '1.02',
4843             'warnings' => '1.10',
4844             },
4845             removed => {
4846             'TAP::Parser::Source::Perl'=> 1,
4847             }
4848             },
4849             5.013004 => {
4850             delta_from => 5.013003,
4851             changed => {
4852             'App::Prove' => '3.22',
4853             'App::Prove::State' => '3.22',
4854             'App::Prove::State::Result'=> '3.22',
4855             'App::Prove::State::Result::Test'=> '3.22',
4856             'Archive::Tar' => '1.68',
4857             'Archive::Tar::Constant'=> '1.68',
4858             'Archive::Tar::File' => '1.68',
4859             'B::Lint' => '1.12',
4860             'B::Lint::Debug' => '1.12',
4861             'Carp' => '1.18',
4862             'Carp::Heavy' => '1.18',
4863             'Compress::Raw::Bzip2' => '2.030',
4864             'Compress::Raw::Zlib' => '2.030',
4865             'Compress::Zlib' => '2.030',
4866             'ExtUtils::ParseXS' => '2.2207',
4867             'File::Spec' => '3.31_01',
4868             'I18N::Langinfo' => '0.04',
4869             'IO::Compress::Adapter::Bzip2'=> '2.030',
4870             'IO::Compress::Adapter::Deflate'=> '2.030',
4871             'IO::Compress::Adapter::Identity'=> '2.030',
4872             'IO::Compress::Base' => '2.030',
4873             'IO::Compress::Base::Common'=> '2.030',
4874             'IO::Compress::Bzip2' => '2.030',
4875             'IO::Compress::Deflate' => '2.030',
4876             'IO::Compress::Gzip' => '2.030',
4877             'IO::Compress::Gzip::Constants'=> '2.030',
4878             'IO::Compress::RawDeflate'=> '2.030',
4879             'IO::Compress::Zip' => '2.030',
4880             'IO::Compress::Zip::Constants'=> '2.030',
4881             'IO::Compress::Zlib::Constants'=> '2.030',
4882             'IO::Compress::Zlib::Extra'=> '2.030',
4883             'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4884             'IO::Uncompress::Adapter::Identity'=> '2.030',
4885             'IO::Uncompress::Adapter::Inflate'=> '2.030',
4886             'IO::Uncompress::AnyInflate'=> '2.030',
4887             'IO::Uncompress::AnyUncompress'=> '2.030',
4888             'IO::Uncompress::Base' => '2.030',
4889             'IO::Uncompress::Bunzip2'=> '2.030',
4890             'IO::Uncompress::Gunzip'=> '2.030',
4891             'IO::Uncompress::Inflate'=> '2.030',
4892             'IO::Uncompress::RawInflate'=> '2.030',
4893             'IO::Uncompress::Unzip' => '2.030',
4894             'Module::CoreList' => '2.37',
4895             'TAP::Base' => '3.22',
4896             'TAP::Formatter::Base' => '3.22',
4897             'TAP::Formatter::Color' => '3.22',
4898             'TAP::Formatter::Console'=> '3.22',
4899             'TAP::Formatter::Console::ParallelSession'=> '3.22',
4900             'TAP::Formatter::Console::Session'=> '3.22',
4901             'TAP::Formatter::File' => '3.22',
4902             'TAP::Formatter::File::Session'=> '3.22',
4903             'TAP::Formatter::Session'=> '3.22',
4904             'TAP::Harness' => '3.22',
4905             'TAP::Object' => '3.22',
4906             'TAP::Parser' => '3.22',
4907             'TAP::Parser::Aggregator'=> '3.22',
4908             'TAP::Parser::Grammar' => '3.22',
4909             'TAP::Parser::Iterator' => '3.22',
4910             'TAP::Parser::Iterator::Array'=> '3.22',
4911             'TAP::Parser::Iterator::Process'=> '3.22',
4912             'TAP::Parser::Iterator::Stream'=> '3.22',
4913             'TAP::Parser::IteratorFactory'=> '3.22',
4914             'TAP::Parser::Multiplexer'=> '3.22',
4915             'TAP::Parser::Result' => '3.22',
4916             'TAP::Parser::Result::Bailout'=> '3.22',
4917             'TAP::Parser::Result::Comment'=> '3.22',
4918             'TAP::Parser::Result::Plan'=> '3.22',
4919             'TAP::Parser::Result::Pragma'=> '3.22',
4920             'TAP::Parser::Result::Test'=> '3.22',
4921             'TAP::Parser::Result::Unknown'=> '3.22',
4922             'TAP::Parser::Result::Version'=> '3.22',
4923             'TAP::Parser::Result::YAML'=> '3.22',
4924             'TAP::Parser::ResultFactory'=> '3.22',
4925             'TAP::Parser::Scheduler'=> '3.22',
4926             'TAP::Parser::Scheduler::Job'=> '3.22',
4927             'TAP::Parser::Scheduler::Spinner'=> '3.22',
4928             'TAP::Parser::Source' => '3.22',
4929             'TAP::Parser::SourceHandler'=> '3.22',
4930             'TAP::Parser::SourceHandler::Executable'=> '3.22',
4931             'TAP::Parser::SourceHandler::File'=> '3.22',
4932             'TAP::Parser::SourceHandler::Handle'=> '3.22',
4933             'TAP::Parser::SourceHandler::Perl'=> '3.22',
4934             'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4935             'TAP::Parser::Utils' => '3.22',
4936             'TAP::Parser::YAMLish::Reader'=> '3.22',
4937             'TAP::Parser::YAMLish::Writer'=> '3.22',
4938             'Test::Builder' => '0.96',
4939             'Test::Builder::Module' => '0.96',
4940             'Test::Builder::Tester' => '1.20',
4941             'Test::Builder::Tester::Color'=> '1.20',
4942             'Test::Harness' => '3.22',
4943             'Test::More' => '0.96',
4944             'Test::Simple' => '0.96',
4945             'Unicode::Collate' => '0.56',
4946             'Unicode::Collate::Locale'=> '0.56',
4947             'XS::APItest' => '0.20',
4948             'charnames' => '1.15',
4949             'feature' => '1.18',
4950             },
4951             removed => {
4952             'TAP::Parser::SourceHandler::pgTAP'=> 1,
4953             }
4954             },
4955             5.013005 => {
4956             delta_from => 5.013004,
4957             changed => {
4958             'B::Debug' => '1.16',
4959             'CPANPLUS::Dist::Build' => '0.48',
4960             'CPANPLUS::Dist::Build::Constants'=> '0.48',
4961             'Data::Dumper' => '2.128',
4962             'Encode' => '2.40',
4963             'Encode::Guess' => '2.04',
4964             'Encode::MIME::Header' => '2.12',
4965             'Encode::Unicode::UTF7' => '2.05',
4966             'Errno' => '1.13',
4967             'ExtUtils::Command::MM' => '6.57_05',
4968             'ExtUtils::Liblist' => '6.57_05',
4969             'ExtUtils::Liblist::Kid'=> '6.5705',
4970             'ExtUtils::MM' => '6.57_05',
4971             'ExtUtils::MM_AIX' => '6.57_05',
4972             'ExtUtils::MM_Any' => '6.57_05',
4973             'ExtUtils::MM_BeOS' => '6.57_05',
4974             'ExtUtils::MM_Cygwin' => '6.57_05',
4975             'ExtUtils::MM_DOS' => '6.5705',
4976             'ExtUtils::MM_Darwin' => '6.57_05',
4977             'ExtUtils::MM_MacOS' => '6.5705',
4978             'ExtUtils::MM_NW5' => '6.57_05',
4979             'ExtUtils::MM_OS2' => '6.57_05',
4980             'ExtUtils::MM_QNX' => '6.57_05',
4981             'ExtUtils::MM_UWIN' => '6.5705',
4982             'ExtUtils::MM_Unix' => '6.57_05',
4983             'ExtUtils::MM_VMS' => '6.57_05',
4984             'ExtUtils::MM_VOS' => '6.57_05',
4985             'ExtUtils::MM_Win32' => '6.57_05',
4986             'ExtUtils::MM_Win95' => '6.57_05',
4987             'ExtUtils::MY' => '6.5705',
4988             'ExtUtils::MakeMaker' => '6.57_05',
4989             'ExtUtils::MakeMaker::Config'=> '6.57_05',
4990             'ExtUtils::MakeMaker::YAML'=> '1.44',
4991             'ExtUtils::Mkbootstrap' => '6.57_05',
4992             'ExtUtils::Mksymlists' => '6.57_05',
4993             'ExtUtils::testlib' => '6.5705',
4994             'Filter::Simple' => '0.85',
4995             'Hash::Util' => '0.09',
4996             'Math::BigFloat' => '1.62',
4997             'Math::BigInt' => '1.95',
4998             'Math::BigInt::Calc' => '0.54',
4999             'Math::BigInt::CalcEmu' => '0.06',
5000             'Math::BigInt::FastCalc'=> '0.22',
5001             'Math::BigRat' => '0.26',
5002             'Module::CoreList' => '2.39',
5003             'POSIX' => '1.20',
5004             'PerlIO::scalar' => '0.09',
5005             'Safe' => '2.28',
5006             'Test::Builder' => '0.97_01',
5007             'Test::Builder::Module' => '0.97_01',
5008             'Test::Builder::Tester' => '1.21_01',
5009             'Test::Builder::Tester::Color'=> '1.21_01',
5010             'Test::More' => '0.97_01',
5011             'Test::Simple' => '0.97_01',
5012             'Tie::Hash' => '1.04',
5013             'Unicode::Collate' => '0.59',
5014             'Unicode::Collate::Locale'=> '0.59',
5015             'XS::APItest' => '0.21',
5016             'XS::APItest::KeywordRPN'=> '0.005',
5017             'XSLoader' => '0.11',
5018             'bigint' => '0.25',
5019             'bignum' => '0.25',
5020             'bigrat' => '0.25',
5021             'blib' => '1.06',
5022             'open' => '1.08',
5023             'threads::shared' => '1.33_03',
5024             'warnings' => '1.11',
5025             'warnings::register' => '1.02',
5026             },
5027             removed => {
5028             }
5029             },
5030             5.013006 => {
5031             delta_from => 5.013005,
5032             changed => {
5033             'Archive::Extract' => '0.44',
5034             'B' => '1.24',
5035             'B::Deparse' => '0.99',
5036             'CPAN' => '1.94_61',
5037             'CPAN::FTP' => '5.5005',
5038             'CPAN::Queue' => '5.5001',
5039             'CPAN::Version' => '5.5001',
5040             'Carp' => '1.19',
5041             'Carp::Heavy' => '1.19',
5042             'Compress::Raw::Bzip2' => '2.031',
5043             'Cwd' => '3.34',
5044             'Data::Dumper' => '2.129',
5045             'Devel::Peek' => '1.05',
5046             'Digest::MD5' => '2.51',
5047             'ExtUtils::Constant::Base'=> '0.05',
5048             'ExtUtils::Constant::ProxySubs'=> '0.07',
5049             'ExtUtils::Embed' => '1.29',
5050             'ExtUtils::XSSymSet' => '1.2',
5051             'Fcntl' => '1.09',
5052             'File::DosGlob' => '1.03',
5053             'File::Find' => '1.18',
5054             'File::Glob' => '1.09',
5055             'File::Spec' => '3.33',
5056             'File::Spec::Cygwin' => '3.33',
5057             'File::Spec::Epoc' => '3.33',
5058             'File::Spec::Functions' => '3.33',
5059             'File::Spec::Mac' => '3.33',
5060             'File::Spec::OS2' => '3.33',
5061             'File::Spec::Unix' => '3.33',
5062             'File::Spec::VMS' => '3.33',
5063             'File::Spec::Win32' => '3.33',
5064             'GDBM_File' => '1.11',
5065             'Hash::Util::FieldHash' => '1.05',
5066             'I18N::Langinfo' => '0.06',
5067             'IPC::Cmd' => '0.64',
5068             'IPC::Open3' => '1.07',
5069             'Locale::Codes' => '3.14',
5070             'Locale::Codes::Country'=> '3.14',
5071             'Locale::Codes::Currency'=> '3.14',
5072             'Locale::Codes::Language'=> '3.14',
5073             'Locale::Codes::Script' => '3.14',
5074             'Locale::Constants' => '3.14',
5075             'Locale::Country' => '3.14',
5076             'Locale::Currency' => '3.14',
5077             'Locale::Language' => '3.14',
5078             'Locale::Maketext' => '1.16',
5079             'Locale::Script' => '3.14',
5080             'Math::BigFloat' => '1.63',
5081             'Math::BigInt' => '1.97',
5082             'Math::BigInt::Calc' => '0.55',
5083             'Math::BigInt::CalcEmu' => '0.07',
5084             'Module::CoreList' => '2.40',
5085             'NDBM_File' => '1.09',
5086             'NEXT' => '0.65',
5087             'ODBM_File' => '1.08',
5088             'Opcode' => '1.16',
5089             'POSIX' => '1.21',
5090             'PerlIO::encoding' => '0.13',
5091             'PerlIO::scalar' => '0.10',
5092             'PerlIO::via' => '0.10',
5093             'Pod::Man' => '2.25',
5094             'Pod::Text' => '3.15',
5095             'SDBM_File' => '1.07',
5096             'Socket' => '1.90',
5097             'Sys::Hostname' => '1.13',
5098             'Tie::Hash::NamedCapture'=> '0.07',
5099             'Unicode::Collate' => '0.63',
5100             'Unicode::Collate::Locale'=> '0.63',
5101             'Unicode::Normalize' => '1.07',
5102             'XS::APItest' => '0.23',
5103             'XSLoader' => '0.13',
5104             'attributes' => '0.13',
5105             'charnames' => '1.16',
5106             'if' => '0.06',
5107             'mro' => '1.04',
5108             'overload' => '1.11',
5109             're' => '0.13',
5110             'sigtrap' => '1.05',
5111             'threads' => '1.81_01',
5112             'threads::shared' => '1.34',
5113             },
5114             removed => {
5115             'XS::APItest::KeywordRPN'=> 1,
5116             }
5117             },
5118             5.013007 => {
5119             delta_from => 5.013006,
5120             changed => {
5121             'Archive::Extract' => '0.46',
5122             'Archive::Tar' => '1.72',
5123             'Archive::Tar::Constant'=> '1.72',
5124             'Archive::Tar::File' => '1.72',
5125             'AutoLoader' => '5.71',
5126             'B' => '1.26',
5127             'B::Concise' => '0.81',
5128             'B::Deparse' => '1.01',
5129             'CGI' => '3.50',
5130             'CPAN' => '1.94_62',
5131             'CPANPLUS' => '0.9010',
5132             'CPANPLUS::Dist::Build' => '0.50',
5133             'CPANPLUS::Dist::Build::Constants'=> '0.50',
5134             'CPANPLUS::Internals' => '0.9010',
5135             'CPANPLUS::Shell::Default'=> '0.9010',
5136             'Data::Dumper' => '2.130_01',
5137             'DynaLoader' => '1.11',
5138             'ExtUtils::Constant' => '0.23',
5139             'ExtUtils::Constant::ProxySubs'=> '0.08',
5140             'Fcntl' => '1.10',
5141             'File::Fetch' => '0.28',
5142             'File::Glob' => '1.10',
5143             'File::stat' => '1.04',
5144             'GDBM_File' => '1.12',
5145             'Hash::Util' => '0.10',
5146             'Hash::Util::FieldHash' => '1.06',
5147             'I18N::Langinfo' => '0.07',
5148             'Locale::Maketext' => '1.17',
5149             'Locale::Maketext::Guts'=> '1.17',
5150             'Locale::Maketext::GutsLoader'=> '1.17',
5151             'MIME::Base64' => '3.10',
5152             'MIME::QuotedPrint' => '3.10',
5153             'Math::BigFloat' => '1.99_01',
5154             'Math::BigInt' => '1.99_01',
5155             'Math::BigInt::Calc' => '1.99_01',
5156             'Math::BigInt::CalcEmu' => '1.99_01',
5157             'Math::BigInt::FastCalc'=> '0.24_01',
5158             'Math::BigRat' => '0.26_01',
5159             'Module::CoreList' => '2.41',
5160             'NDBM_File' => '1.10',
5161             'ODBM_File' => '1.09',
5162             'Opcode' => '1.17',
5163             'POSIX' => '1.22',
5164             'Pod::Simple' => '3.15',
5165             'Pod::Simple::BlackBox' => '3.15',
5166             'Pod::Simple::Checker' => '3.15',
5167             'Pod::Simple::Debug' => '3.15',
5168             'Pod::Simple::DumpAsText'=> '3.15',
5169             'Pod::Simple::DumpAsXML'=> '3.15',
5170             'Pod::Simple::HTML' => '3.15',
5171             'Pod::Simple::HTMLBatch'=> '3.15',
5172             'Pod::Simple::LinkSection'=> '3.15',
5173             'Pod::Simple::Methody' => '3.15',
5174             'Pod::Simple::Progress' => '3.15',
5175             'Pod::Simple::PullParser'=> '3.15',
5176             'Pod::Simple::PullParserEndToken'=> '3.15',
5177             'Pod::Simple::PullParserStartToken'=> '3.15',
5178             'Pod::Simple::PullParserTextToken'=> '3.15',
5179             'Pod::Simple::PullParserToken'=> '3.15',
5180             'Pod::Simple::RTF' => '3.15',
5181             'Pod::Simple::Search' => '3.15',
5182             'Pod::Simple::SimpleTree'=> '3.15',
5183             'Pod::Simple::Text' => '3.15',
5184             'Pod::Simple::TextContent'=> '3.15',
5185             'Pod::Simple::TiedOutFH'=> '3.15',
5186             'Pod::Simple::Transcode'=> '3.15',
5187             'Pod::Simple::TranscodeDumb'=> '3.15',
5188             'Pod::Simple::TranscodeSmart'=> '3.15',
5189             'Pod::Simple::XHTML' => '3.15',
5190             'Pod::Simple::XMLOutStream'=> '3.15',
5191             'SDBM_File' => '1.08',
5192             'Safe' => '2.29',
5193             'SelfLoader' => '1.18',
5194             'Socket' => '1.91',
5195             'Storable' => '2.24',
5196             'Sys::Hostname' => '1.14',
5197             'Unicode' => '6.0.0',
5198             'Unicode::Collate' => '0.67',
5199             'Unicode::Collate::CJK::Big5'=> '0.65',
5200             'Unicode::Collate::CJK::GB2312'=> '0.65',
5201             'Unicode::Collate::CJK::JISX0208'=> '0.64',
5202             'Unicode::Collate::CJK::Korean'=> '0.66',
5203             'Unicode::Collate::CJK::Pinyin'=> '0.65',
5204             'Unicode::Collate::CJK::Stroke'=> '0.65',
5205             'Unicode::Collate::Locale'=> '0.67',
5206             'XS::APItest' => '0.26',
5207             'XS::Typemap' => '0.04',
5208             'charnames' => '1.17',
5209             'mro' => '1.05',
5210             'parent' => '0.224',
5211             're' => '0.14',
5212             'threads' => '1.81_02',
5213             },
5214             removed => {
5215             }
5216             },
5217             5.013008 => {
5218             delta_from => 5.013007,
5219             changed => {
5220             'Archive::Tar' => '1.74',
5221             'Archive::Tar::Constant'=> '1.74',
5222             'Archive::Tar::File' => '1.74',
5223             'B' => '1.27',
5224             'B::Concise' => '0.82',
5225             'B::Deparse' => '1.02',
5226             'Carp::Heavy' => '1.17',
5227             'Cwd' => '3.35',
5228             'Data::Dumper' => '2.130_02',
5229             'Devel::Peek' => '1.06',
5230             'Devel::SelfStubber' => '1.05',
5231             'Digest::SHA' => '5.50',
5232             'Dumpvalue' => '1.15',
5233             'DynaLoader' => '1.12',
5234             'Env' => '1.02',
5235             'Exporter::Heavy' => '5.64_01',
5236             'ExtUtils::CBuilder' => '0.280201',
5237             'ExtUtils::CBuilder::Base'=> '0.280201',
5238             'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5239             'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5240             'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5241             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5242             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5243             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5244             'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5245             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5246             'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5247             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5248             'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5249             'ExtUtils::Constant::Utils'=> '0.03',
5250             'ExtUtils::Embed' => '1.30',
5251             'ExtUtils::ParseXS' => '2.2208',
5252             'Fatal' => '2.1001',
5253             'Fcntl' => '1.11',
5254             'File::CheckTree' => '4.41',
5255             'File::Glob' => '1.11',
5256             'GDBM_File' => '1.13',
5257             'Hash::Util::FieldHash' => '1.07',
5258             'I18N::Collate' => '1.02',
5259             'IO' => '1.25_03',
5260             'IPC::Cmd' => '0.66',
5261             'IPC::Open3' => '1.08',
5262             'Locale::Codes' => '3.15',
5263             'Locale::Codes::Country'=> '3.15',
5264             'Locale::Codes::Currency'=> '3.15',
5265             'Locale::Codes::Language'=> '3.15',
5266             'Locale::Codes::Script' => '3.15',
5267             'Locale::Constants' => '3.15',
5268             'Locale::Country' => '3.15',
5269             'Locale::Currency' => '3.15',
5270             'Locale::Language' => '3.15',
5271             'Locale::Script' => '3.15',
5272             'MIME::Base64' => '3.13',
5273             'MIME::QuotedPrint' => '3.13',
5274             'Math::BigFloat' => '1.99_02',
5275             'Math::BigInt' => '1.99_02',
5276             'Math::BigInt::Calc' => '1.99_02',
5277             'Math::BigInt::CalcEmu' => '1.99_02',
5278             'Memoize' => '1.02',
5279             'Memoize::AnyDBM_File' => '1.02',
5280             'Memoize::Expire' => '1.02',
5281             'Memoize::ExpireFile' => '1.02',
5282             'Memoize::ExpireTest' => '1.02',
5283             'Memoize::NDBM_File' => '1.02',
5284             'Memoize::SDBM_File' => '1.02',
5285             'Memoize::Storable' => '1.02',
5286             'Module::CoreList' => '2.43',
5287             'NDBM_File' => '1.11',
5288             'Net::Ping' => '2.37',
5289             'ODBM_File' => '1.10',
5290             'Opcode' => '1.18',
5291             'POSIX' => '1.23',
5292             'PerlIO::encoding' => '0.14',
5293             'PerlIO::scalar' => '0.11',
5294             'PerlIO::via' => '0.11',
5295             'SDBM_File' => '1.09',
5296             'Socket' => '1.92',
5297             'Storable' => '2.25',
5298             'Time::HiRes' => '1.9721_01',
5299             'Unicode::Collate' => '0.6801',
5300             'Unicode::Collate::Locale'=> '0.68',
5301             'Unicode::Normalize' => '1.08',
5302             'Unicode::UCD' => '0.30',
5303             'Win32' => '0.41',
5304             'XS::APItest' => '0.27',
5305             'autodie' => '2.1001',
5306             'autodie::exception' => '2.1001',
5307             'autodie::exception::system'=> '2.1001',
5308             'autodie::hints' => '2.1001',
5309             'feature' => '1.19',
5310             'if' => '0.0601',
5311             'mro' => '1.06',
5312             'overload' => '1.12',
5313             're' => '0.15',
5314             'threads' => '1.81_03',
5315             'threads::shared' => '1.35',
5316             'version' => '0.86',
5317             },
5318             removed => {
5319             }
5320             },
5321             5.013009 => {
5322             delta_from => 5.013008,
5323             changed => {
5324             'Archive::Extract' => '0.48',
5325             'Archive::Tar' => '1.76',
5326             'Archive::Tar::Constant'=> '1.76',
5327             'Archive::Tar::File' => '1.76',
5328             'B::Concise' => '0.83',
5329             'B::Deparse' => '1.03',
5330             'B::Lint' => '1.13',
5331             'Benchmark' => '1.12',
5332             'CGI' => '3.51',
5333             'CGI::Carp' => '3.51',
5334             'CGI::Cookie' => '1.30',
5335             'CGI::Push' => '1.05',
5336             'CGI::Util' => '3.51',
5337             'CPAN' => '1.94_63',
5338             'CPAN::HTTP::Client' => '1.94',
5339             'CPAN::HTTP::Credentials'=> '1.94',
5340             'CPAN::Meta::YAML' => '0.003',
5341             'CPANPLUS' => '0.9011',
5342             'CPANPLUS::Dist::Build' => '0.52',
5343             'CPANPLUS::Dist::Build::Constants'=> '0.52',
5344             'CPANPLUS::Internals' => '0.9011',
5345             'CPANPLUS::Shell::Default'=> '0.9011',
5346             'Carp::Heavy' => '1.19',
5347             'Compress::Raw::Bzip2' => '2.033',
5348             'Compress::Raw::Zlib' => '2.033',
5349             'Compress::Zlib' => '2.033',
5350             'Cwd' => '3.36',
5351             'DBM_Filter' => '0.04',
5352             'DB_File' => '1.821',
5353             'Devel::Peek' => '1.07',
5354             'DirHandle' => '1.04',
5355             'Dumpvalue' => '1.16',
5356             'Encode' => '2.42',
5357             'Encode::Alias' => '2.13',
5358             'Encode::MIME::Header' => '2.13',
5359             'Exporter::Heavy' => '5.64_03',
5360             'ExtUtils::Install' => '1.56',
5361             'ExtUtils::ParseXS' => '2.2209',
5362             'File::Basename' => '2.80',
5363             'File::Copy' => '2.21',
5364             'File::DosGlob' => '1.04',
5365             'File::Fetch' => '0.32',
5366             'File::Find' => '1.19',
5367             'File::Spec::Mac' => '3.34',
5368             'File::Spec::VMS' => '3.34',
5369             'File::stat' => '1.05',
5370             'HTTP::Tiny' => '0.009',
5371             'Hash::Util::FieldHash' => '1.08',
5372             'IO::Compress::Adapter::Bzip2'=> '2.033',
5373             'IO::Compress::Adapter::Deflate'=> '2.033',
5374             'IO::Compress::Adapter::Identity'=> '2.033',
5375             'IO::Compress::Base' => '2.033',
5376             'IO::Compress::Base::Common'=> '2.033',
5377             'IO::Compress::Bzip2' => '2.033',
5378             'IO::Compress::Deflate' => '2.033',
5379             'IO::Compress::Gzip' => '2.033',
5380             'IO::Compress::Gzip::Constants'=> '2.033',
5381             'IO::Compress::RawDeflate'=> '2.033',
5382             'IO::Compress::Zip' => '2.033',
5383             'IO::Compress::Zip::Constants'=> '2.033',
5384             'IO::Compress::Zlib::Constants'=> '2.033',
5385             'IO::Compress::Zlib::Extra'=> '2.033',
5386             'IO::Handle' => '1.29',
5387             'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5388             'IO::Uncompress::Adapter::Identity'=> '2.033',
5389             'IO::Uncompress::Adapter::Inflate'=> '2.033',
5390             'IO::Uncompress::AnyInflate'=> '2.033',
5391             'IO::Uncompress::AnyUncompress'=> '2.033',
5392             'IO::Uncompress::Base' => '2.033',
5393             'IO::Uncompress::Bunzip2'=> '2.033',
5394             'IO::Uncompress::Gunzip'=> '2.033',
5395             'IO::Uncompress::Inflate'=> '2.033',
5396             'IO::Uncompress::RawInflate'=> '2.033',
5397             'IO::Uncompress::Unzip' => '2.033',
5398             'IPC::Cmd' => '0.68',
5399             'IPC::Open3' => '1.09',
5400             'JSON::PP' => '2.27103',
5401             'JSON::PP::Boolean' => undef,
5402             'Locale::Maketext' => '1.18',
5403             'Log::Message' => '0.04',
5404             'Log::Message::Config' => '0.04',
5405             'Log::Message::Handlers'=> '0.04',
5406             'Log::Message::Item' => '0.04',
5407             'Log::Message::Simple' => '0.08',
5408             'Math::BigFloat' => '1.99_03',
5409             'Math::BigInt' => '1.99_03',
5410             'Math::BigInt::Calc' => '1.99_03',
5411             'Math::BigInt::FastCalc'=> '0.24_02',
5412             'Math::BigRat' => '0.26_02',
5413             'Module::CoreList' => '2.42_01',
5414             'Module::Load::Conditional'=> '0.40',
5415             'Module::Metadata' => '1.000003',
5416             'Net::Ping' => '2.38',
5417             'OS2::Process' => '1.05',
5418             'Object::Accessor' => '0.38',
5419             'POSIX' => '1.24',
5420             'Params::Check' => '0.28',
5421             'Perl::OSType' => '1.002',
5422             'Pod::LaTeX' => '0.59',
5423             'Pod::Perldoc' => '3.15_03',
5424             'Socket' => '1.93',
5425             'Storable' => '2.26',
5426             'Sys::Hostname' => '1.15',
5427             'Term::UI' => '0.24',
5428             'Thread::Queue' => '2.12',
5429             'Thread::Semaphore' => '2.12',
5430             'Time::Local' => '1.2000',
5431             'UNIVERSAL' => '1.08',
5432             'Unicode::Normalize' => '1.10',
5433             'Win32' => '0.44',
5434             'bigint' => '0.26',
5435             'bignum' => '0.26',
5436             'bigrat' => '0.26',
5437             'charnames' => '1.18',
5438             'diagnostics' => '1.21',
5439             're' => '0.16',
5440             'threads' => '1.83',
5441             'threads::shared' => '1.36',
5442             'version' => '0.88',
5443             },
5444             removed => {
5445             }
5446             },
5447             5.01301 => {
5448             delta_from => 5.013009,
5449             changed => {
5450             'Attribute::Handlers' => '0.89',
5451             'B' => '1.28',
5452             'B::Showlex' => '1.03',
5453             'CGI' => '3.52',
5454             'CPAN' => '1.94_65',
5455             'CPAN::Distribution' => '1.9601',
5456             'CPAN::FTP::netrc' => '1.01',
5457             'CPAN::FirstTime' => '5.5303',
5458             'CPAN::HandleConfig' => '5.5003',
5459             'CPAN::Meta' => '2.110440',
5460             'CPAN::Meta::Converter' => '2.110440',
5461             'CPAN::Meta::Feature' => '2.110440',
5462             'CPAN::Meta::History' => '2.110440',
5463             'CPAN::Meta::Prereqs' => '2.110440',
5464             'CPAN::Meta::Spec' => '2.110440',
5465             'CPAN::Meta::Validator' => '2.110440',
5466             'CPAN::Shell' => '5.5002',
5467             'CPANPLUS' => '0.9101',
5468             'CPANPLUS::Internals' => '0.9101',
5469             'CPANPLUS::Shell::Default'=> '0.9101',
5470             'Carp' => '1.20',
5471             'Carp::Heavy' => '1.20',
5472             'Cwd' => '3.37',
5473             'Devel::DProf' => '20110217.00',
5474             'DynaLoader' => '1.13',
5475             'ExtUtils::CBuilder' => '0.280202',
5476             'ExtUtils::CBuilder::Base'=> '0.280202',
5477             'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5478             'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5479             'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5480             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5481             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5482             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5483             'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5484             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5485             'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5486             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5487             'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5488             'File::Copy' => '2.22',
5489             'Filter::Simple' => '0.86',
5490             'HTTP::Tiny' => '0.010',
5491             'I18N::LangTags::Detect'=> '1.05',
5492             'IO::Select' => '1.18',
5493             'IPC::Cmd' => '0.70',
5494             'Locale::Maketext' => '1.19',
5495             'Math::BigFloat' => '1.992',
5496             'Math::BigInt' => '1.992',
5497             'Math::BigInt::Calc' => '1.992',
5498             'Math::BigInt::CalcEmu' => '1.992',
5499             'Module::Build' => '0.37_05',
5500             'Module::Build::Base' => '0.37_05',
5501             'Module::Build::Compat' => '0.37_05',
5502             'Module::Build::Config' => '0.37_05',
5503             'Module::Build::Cookbook'=> '0.37_05',
5504             'Module::Build::Dumper' => '0.37_05',
5505             'Module::Build::ModuleInfo'=> '0.37_05',
5506             'Module::Build::Notes' => '0.37_05',
5507             'Module::Build::PPMMaker'=> '0.37_05',
5508             'Module::Build::Platform::Amiga'=> '0.37_05',
5509             'Module::Build::Platform::Default'=> '0.37_05',
5510             'Module::Build::Platform::EBCDIC'=> '0.37_05',
5511             'Module::Build::Platform::MPEiX'=> '0.37_05',
5512             'Module::Build::Platform::MacOS'=> '0.37_05',
5513             'Module::Build::Platform::RiscOS'=> '0.37_05',
5514             'Module::Build::Platform::Unix'=> '0.37_05',
5515             'Module::Build::Platform::VMS'=> '0.37_05',
5516             'Module::Build::Platform::VOS'=> '0.37_05',
5517             'Module::Build::Platform::Windows'=> '0.37_05',
5518             'Module::Build::Platform::aix'=> '0.37_05',
5519             'Module::Build::Platform::cygwin'=> '0.37_05',
5520             'Module::Build::Platform::darwin'=> '0.37_05',
5521             'Module::Build::Platform::os2'=> '0.37_05',
5522             'Module::Build::PodParser'=> '0.37_05',
5523             'Module::Build::Version'=> '0.87',
5524             'Module::Build::YAML' => '1.41',
5525             'Module::CoreList' => '2.45',
5526             'Module::Load::Conditional'=> '0.44',
5527             'Module::Metadata' => '1.000004',
5528             'OS2::Process' => '1.06',
5529             'Parse::CPAN::Meta' => '1.4401',
5530             'Pod::Html' => '1.1',
5531             'Socket' => '1.94',
5532             'Term::UI' => '0.26',
5533             'Unicode::Collate' => '0.72',
5534             'Unicode::Collate::Locale'=> '0.71',
5535             'Unicode::UCD' => '0.31',
5536             'VMS::DCLsym' => '1.05',
5537             'Version::Requirements' => '0.101020',
5538             'bigrat' => '0.27',
5539             'deprecate' => '0.02',
5540             'diagnostics' => '1.22',
5541             'inc::latest' => '0.37_05',
5542             'overload' => '1.13',
5543             're' => '0.17',
5544             'utf8' => '1.09',
5545             'warnings' => '1.12',
5546             },
5547             removed => {
5548             }
5549             },
5550             5.013011 => {
5551             delta_from => 5.01301,
5552             changed => {
5553             'App::Prove' => '3.23',
5554             'App::Prove::State' => '3.23',
5555             'App::Prove::State::Result'=> '3.23',
5556             'App::Prove::State::Result::Test'=> '3.23',
5557             'B' => '1.29',
5558             'CPAN' => '1.9600',
5559             'CPAN::Author' => '5.5001',
5560             'CPAN::CacheMgr' => '5.5001',
5561             'CPAN::Distribution' => '1.9602',
5562             'CPAN::Exception::blocked_urllist'=> '1.001',
5563             'CPAN::HTTP::Client' => '1.9600',
5564             'CPAN::HTTP::Credentials'=> '1.9600',
5565             'CPAN::Index' => '1.9600',
5566             'CPAN::LWP::UserAgent' => '1.9600',
5567             'CPAN::Mirrors' => '1.9600',
5568             'CPAN::Module' => '5.5001',
5569             'CPANPLUS' => '0.9103',
5570             'CPANPLUS::Dist::Build' => '0.54',
5571             'CPANPLUS::Dist::Build::Constants'=> '0.54',
5572             'CPANPLUS::Internals' => '0.9103',
5573             'CPANPLUS::Shell::Default'=> '0.9103',
5574             'Cwd' => '3.36',
5575             'Devel::DProf' => '20110228.00',
5576             'Digest::SHA' => '5.61',
5577             'ExtUtils::Command' => '1.17',
5578             'File::Basename' => '2.81',
5579             'File::Copy' => '2.21',
5580             'File::Glob' => '1.12',
5581             'GDBM_File' => '1.14',
5582             'HTTP::Tiny' => '0.011',
5583             'Hash::Util' => '0.11',
5584             'Hash::Util::FieldHash' => '1.09',
5585             'I18N::Langinfo' => '0.08',
5586             'IO' => '1.25_04',
5587             'IO::Dir' => '1.08',
5588             'IO::File' => '1.15',
5589             'IO::Handle' => '1.30',
5590             'IO::Pipe' => '1.14',
5591             'IO::Poll' => '0.08',
5592             'IO::Select' => '1.20',
5593             'JSON::PP' => '2.27105',
5594             'Locale::Codes' => '3.16',
5595             'Locale::Codes::Country'=> '3.16',
5596             'Locale::Codes::Currency'=> '3.16',
5597             'Locale::Codes::Language'=> '3.16',
5598             'Locale::Codes::Script' => '3.16',
5599             'Locale::Constants' => '3.16',
5600             'Locale::Country' => '3.16',
5601             'Locale::Currency' => '3.16',
5602             'Locale::Language' => '3.16',
5603             'Locale::Script' => '3.16',
5604             'Math::BigFloat' => '1.993',
5605             'Math::BigInt' => '1.994',
5606             'Math::BigInt::Calc' => '1.993',
5607             'Math::BigInt::CalcEmu' => '1.993',
5608             'Math::BigInt::FastCalc'=> '0.28',
5609             'Module::Build' => '0.3800',
5610             'Module::Build::Base' => '0.3800',
5611             'Module::Build::Compat' => '0.3800',
5612             'Module::Build::Config' => '0.3800',
5613             'Module::Build::Cookbook'=> '0.3800',
5614             'Module::Build::Dumper' => '0.3800',
5615             'Module::Build::ModuleInfo'=> '0.3800',
5616             'Module::Build::Notes' => '0.3800',
5617             'Module::Build::PPMMaker'=> '0.3800',
5618             'Module::Build::Platform::Amiga'=> '0.3800',
5619             'Module::Build::Platform::Default'=> '0.3800',
5620             'Module::Build::Platform::EBCDIC'=> '0.3800',
5621             'Module::Build::Platform::MPEiX'=> '0.3800',
5622             'Module::Build::Platform::MacOS'=> '0.3800',
5623             'Module::Build::Platform::RiscOS'=> '0.3800',
5624             'Module::Build::Platform::Unix'=> '0.3800',
5625             'Module::Build::Platform::VMS'=> '0.3800',
5626             'Module::Build::Platform::VOS'=> '0.3800',
5627             'Module::Build::Platform::Windows'=> '0.3800',
5628             'Module::Build::Platform::aix'=> '0.3800',
5629             'Module::Build::Platform::cygwin'=> '0.3800',
5630             'Module::Build::Platform::darwin'=> '0.3800',
5631             'Module::Build::Platform::os2'=> '0.3800',
5632             'Module::Build::PodParser'=> '0.3800',
5633             'Module::CoreList' => '2.46',
5634             'NDBM_File' => '1.12',
5635             'Pod::Simple' => '3.16',
5636             'Pod::Simple::BlackBox' => '3.16',
5637             'Pod::Simple::Checker' => '3.16',
5638             'Pod::Simple::Debug' => '3.16',
5639             'Pod::Simple::DumpAsText'=> '3.16',
5640             'Pod::Simple::DumpAsXML'=> '3.16',
5641             'Pod::Simple::HTML' => '3.16',
5642             'Pod::Simple::HTMLBatch'=> '3.16',
5643             'Pod::Simple::LinkSection'=> '3.16',
5644             'Pod::Simple::Methody' => '3.16',
5645             'Pod::Simple::Progress' => '3.16',
5646             'Pod::Simple::PullParser'=> '3.16',
5647             'Pod::Simple::PullParserEndToken'=> '3.16',
5648             'Pod::Simple::PullParserStartToken'=> '3.16',
5649             'Pod::Simple::PullParserTextToken'=> '3.16',
5650             'Pod::Simple::PullParserToken'=> '3.16',
5651             'Pod::Simple::RTF' => '3.16',
5652             'Pod::Simple::Search' => '3.16',
5653             'Pod::Simple::SimpleTree'=> '3.16',
5654             'Pod::Simple::Text' => '3.16',
5655             'Pod::Simple::TextContent'=> '3.16',
5656             'Pod::Simple::TiedOutFH'=> '3.16',
5657             'Pod::Simple::Transcode'=> '3.16',
5658             'Pod::Simple::TranscodeDumb'=> '3.16',
5659             'Pod::Simple::TranscodeSmart'=> '3.16',
5660             'Pod::Simple::XHTML' => '3.16',
5661             'Pod::Simple::XMLOutStream'=> '3.16',
5662             'Storable' => '2.27',
5663             'Sys::Hostname' => '1.16',
5664             'TAP::Base' => '3.23',
5665             'TAP::Formatter::Base' => '3.23',
5666             'TAP::Formatter::Color' => '3.23',
5667             'TAP::Formatter::Console'=> '3.23',
5668             'TAP::Formatter::Console::ParallelSession'=> '3.23',
5669             'TAP::Formatter::Console::Session'=> '3.23',
5670             'TAP::Formatter::File' => '3.23',
5671             'TAP::Formatter::File::Session'=> '3.23',
5672             'TAP::Formatter::Session'=> '3.23',
5673             'TAP::Harness' => '3.23',
5674             'TAP::Object' => '3.23',
5675             'TAP::Parser' => '3.23',
5676             'TAP::Parser::Aggregator'=> '3.23',
5677             'TAP::Parser::Grammar' => '3.23',
5678             'TAP::Parser::Iterator' => '3.23',
5679             'TAP::Parser::Iterator::Array'=> '3.23',
5680             'TAP::Parser::Iterator::Process'=> '3.23',
5681             'TAP::Parser::Iterator::Stream'=> '3.23',
5682             'TAP::Parser::IteratorFactory'=> '3.23',
5683             'TAP::Parser::Multiplexer'=> '3.23',
5684             'TAP::Parser::Result' => '3.23',
5685             'TAP::Parser::Result::Bailout'=> '3.23',
5686             'TAP::Parser::Result::Comment'=> '3.23',
5687             'TAP::Parser::Result::Plan'=> '3.23',
5688             'TAP::Parser::Result::Pragma'=> '3.23',
5689             'TAP::Parser::Result::Test'=> '3.23',
5690             'TAP::Parser::Result::Unknown'=> '3.23',
5691             'TAP::Parser::Result::Version'=> '3.23',
5692             'TAP::Parser::Result::YAML'=> '3.23',
5693             'TAP::Parser::ResultFactory'=> '3.23',
5694             'TAP::Parser::Scheduler'=> '3.23',
5695             'TAP::Parser::Scheduler::Job'=> '3.23',
5696             'TAP::Parser::Scheduler::Spinner'=> '3.23',
5697             'TAP::Parser::Source' => '3.23',
5698             'TAP::Parser::SourceHandler'=> '3.23',
5699             'TAP::Parser::SourceHandler::Executable'=> '3.23',
5700             'TAP::Parser::SourceHandler::File'=> '3.23',
5701             'TAP::Parser::SourceHandler::Handle'=> '3.23',
5702             'TAP::Parser::SourceHandler::Perl'=> '3.23',
5703             'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5704             'TAP::Parser::Utils' => '3.23',
5705             'TAP::Parser::YAMLish::Reader'=> '3.23',
5706             'TAP::Parser::YAMLish::Writer'=> '3.23',
5707             'Test::Builder' => '0.98',
5708             'Test::Builder::Module' => '0.98',
5709             'Test::Builder::Tester' => '1.22',
5710             'Test::Builder::Tester::Color'=> '1.22',
5711             'Test::Harness' => '3.23',
5712             'Test::More' => '0.98',
5713             'Test::Simple' => '0.98',
5714             'Tie::Hash::NamedCapture'=> '0.08',
5715             'Tie::RefHash' => '1.39',
5716             'Unicode::Collate' => '0.73',
5717             'Unicode::Collate::Locale'=> '0.73',
5718             'Unicode::UCD' => '0.32',
5719             'XS::Typemap' => '0.05',
5720             'attributes' => '0.14',
5721             'base' => '2.16',
5722             'inc::latest' => '0.3800',
5723             'mro' => '1.07',
5724             'parent' => '0.225',
5725             },
5726             removed => {
5727             }
5728             },
5729             5.014 => {
5730             delta_from => 5.013011,
5731             changed => {
5732             'ExtUtils::CBuilder' => '0.280203',
5733             'ExtUtils::CBuilder::Base'=> '0.280203',
5734             'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5735             'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5736             'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5737             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5738             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5739             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5740             'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5741             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5742             'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5743             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5744             'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5745             'ExtUtils::ParseXS' => '2.2210',
5746             'File::Basename' => '2.82',
5747             'HTTP::Tiny' => '0.012',
5748             'IO::Handle' => '1.31',
5749             'Module::CoreList' => '2.49',
5750             'PerlIO' => '1.07',
5751             'Pod::Html' => '1.11',
5752             'XS::APItest' => '0.28',
5753             'bigint' => '0.27',
5754             'bignum' => '0.27',
5755             'bigrat' => '0.28',
5756             'constant' => '1.21',
5757             'feature' => '1.20',
5758             're' => '0.18',
5759             'threads::shared' => '1.37',
5760             },
5761             removed => {
5762             }
5763             },
5764             5.014001 => {
5765             delta_from => 5.014,
5766             changed => {
5767             'B::Deparse' => '1.04',
5768             'Module::CoreList' => '2.49_01',
5769             'Pod::Perldoc' => '3.15_04',
5770             },
5771             removed => {
5772             }
5773             },
5774             5.014002 => {
5775             delta_from => 5.014001,
5776             changed => {
5777             'CPAN' => '1.9600_01',
5778             'CPAN::Distribution' => '1.9602_01',
5779             'Devel::DProf::dprof::V'=> undef,
5780             'Encode' => '2.42_01',
5781             'File::Glob' => '1.13',
5782             'Module::CoreList' => '2.49_02',
5783             'PerlIO::scalar' => '0.11_01',
5784             'Time::Piece::Seconds' => undef,
5785             },
5786             removed => {
5787             }
5788             },
5789             5.014003 => {
5790             delta_from => 5.014002,
5791             changed => {
5792             'Digest' => '1.16_01',
5793             'IPC::Open3' => '1.09_01',
5794             'Module::CoreList' => '2.49_04',
5795             },
5796             removed => {
5797             }
5798             },
5799             5.014004 => {
5800             delta_from => 5.014003,
5801             changed => {
5802             'Encode' => '2.42_02',
5803             'IPC::Open3' => '1.0901',
5804             'Module::CoreList' => '2.49_06',
5805             },
5806             removed => {
5807             }
5808             },
5809             5.015 => {
5810             delta_from => 5.014001,
5811             changed => {
5812             'Archive::Extract' => '0.52',
5813             'Attribute::Handlers' => '0.91',
5814             'B' => '1.30',
5815             'B::Concise' => '0.84',
5816             'B::Deparse' => '1.05',
5817             'Benchmark' => '1.13',
5818             'CGI' => '3.54',
5819             'CGI::Util' => '3.53',
5820             'CPAN::Meta' => '2.110930',
5821             'CPAN::Meta::Converter' => '2.110930',
5822             'CPAN::Meta::Feature' => '2.110930',
5823             'CPAN::Meta::History' => '2.110930',
5824             'CPAN::Meta::Prereqs' => '2.110930',
5825             'CPAN::Meta::Spec' => '2.110930',
5826             'CPAN::Meta::Validator' => '2.110930',
5827             'CPANPLUS' => '0.9105',
5828             'CPANPLUS::Dist::Build' => '0.56',
5829             'CPANPLUS::Dist::Build::Constants'=> '0.56',
5830             'CPANPLUS::Internals' => '0.9105',
5831             'CPANPLUS::Shell::Default'=> '0.9105',
5832             'Compress::Raw::Bzip2' => '2.035',
5833             'Compress::Raw::Zlib' => '2.035',
5834             'Compress::Zlib' => '2.035',
5835             'DB_File' => '1.822',
5836             'Data::Dumper' => '2.131',
5837             'Devel::Peek' => '1.08',
5838             'Digest::SHA' => '5.62',
5839             'Encode' => '2.43',
5840             'Encode::Alias' => '2.14',
5841             'ExtUtils::CBuilder' => '0.280204',
5842             'ExtUtils::CBuilder::Base'=> '0.280204',
5843             'Fatal' => '2.10',
5844             'File::Spec::Win32' => '3.34',
5845             'Filter::Simple' => '0.87',
5846             'Filter::Util::Call' => '1.39',
5847             'FindBin' => '1.51',
5848             'Hash::Util::FieldHash' => '1.10',
5849             'I18N::LangTags' => '0.36',
5850             'IO::Compress::Adapter::Bzip2'=> '2.035',
5851             'IO::Compress::Adapter::Deflate'=> '2.035',
5852             'IO::Compress::Adapter::Identity'=> '2.035',
5853             'IO::Compress::Base' => '2.035',
5854             'IO::Compress::Base::Common'=> '2.035',
5855             'IO::Compress::Bzip2' => '2.035',
5856             'IO::Compress::Deflate' => '2.035',
5857             'IO::Compress::Gzip' => '2.035',
5858             'IO::Compress::Gzip::Constants'=> '2.035',
5859             'IO::Compress::RawDeflate'=> '2.035',
5860             'IO::Compress::Zip' => '2.035',
5861             'IO::Compress::Zip::Constants'=> '2.035',
5862             'IO::Compress::Zlib::Constants'=> '2.035',
5863             'IO::Compress::Zlib::Extra'=> '2.035',
5864             'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5865             'IO::Uncompress::Adapter::Identity'=> '2.035',
5866             'IO::Uncompress::Adapter::Inflate'=> '2.035',
5867             'IO::Uncompress::AnyInflate'=> '2.035',
5868             'IO::Uncompress::AnyUncompress'=> '2.035',
5869             'IO::Uncompress::Base' => '2.035',
5870             'IO::Uncompress::Bunzip2'=> '2.035',
5871             'IO::Uncompress::Gunzip'=> '2.035',
5872             'IO::Uncompress::Inflate'=> '2.035',
5873             'IO::Uncompress::RawInflate'=> '2.035',
5874             'IO::Uncompress::Unzip' => '2.035',
5875             'IPC::Open2' => '1.04',
5876             'IPC::Open3' => '1.11',
5877             'JSON::PP' => '2.27200',
5878             'Math::BigFloat' => '1.994',
5879             'Math::BigInt' => '1.995',
5880             'Math::Complex' => '1.57',
5881             'Math::Trig' => '1.21',
5882             'Module::CoreList' => '2.51',
5883             'ODBM_File' => '1.11',
5884             'Object::Accessor' => '0.42',
5885             'Opcode' => '1.19',
5886             'PerlIO::encoding' => '0.15',
5887             'PerlIO::scalar' => '0.12',
5888             'Pod::Perldoc' => '3.15_05',
5889             'Storable' => '2.28',
5890             'Sys::Syslog' => '0.29',
5891             'Time::HiRes' => '1.9722',
5892             'Unicode::Collate' => '0.76',
5893             'Unicode::Collate::CJK::Pinyin'=> '0.76',
5894             'Unicode::Collate::CJK::Stroke'=> '0.76',
5895             'Unicode::Collate::Locale'=> '0.76',
5896             'Unicode::Normalize' => '1.12',
5897             'XS::APItest' => '0.29',
5898             'XSLoader' => '0.15',
5899             'autodie' => '2.10',
5900             'autodie::exception' => '2.10',
5901             'autodie::exception::system'=> '2.10',
5902             'autodie::hints' => '2.10',
5903             'base' => '2.17',
5904             'charnames' => '1.22',
5905             'constant' => '1.22',
5906             'feature' => '1.21',
5907             'mro' => '1.08',
5908             'overload' => '1.14',
5909             'threads::shared' => '1.38',
5910             'vmsish' => '1.03',
5911             },
5912             removed => {
5913             'Devel::DProf' => 1,
5914             'Shell' => 1,
5915             }
5916             },
5917             5.015001 => {
5918             delta_from => 5.015,
5919             changed => {
5920             'B::Deparse' => '1.06',
5921             'CGI' => '3.55',
5922             'CPAN::Meta' => '2.110930001',
5923             'CPAN::Meta::Converter' => '2.110930001',
5924             'CPANPLUS' => '0.9108',
5925             'CPANPLUS::Internals' => '0.9108',
5926             'CPANPLUS::Shell::Default'=> '0.9108',
5927             'Carp' => '1.21',
5928             'Carp::Heavy' => '1.21',
5929             'Compress::Raw::Bzip2' => '2.037',
5930             'Compress::Raw::Zlib' => '2.037',
5931             'Compress::Zlib' => '2.037',
5932             'Cwd' => '3.37',
5933             'Env' => '1.03',
5934             'ExtUtils::Command::MM' => '6.58',
5935             'ExtUtils::Liblist' => '6.58',
5936             'ExtUtils::Liblist::Kid'=> '6.58',
5937             'ExtUtils::MM' => '6.58',
5938             'ExtUtils::MM_AIX' => '6.58',
5939             'ExtUtils::MM_Any' => '6.58',
5940             'ExtUtils::MM_BeOS' => '6.58',
5941             'ExtUtils::MM_Cygwin' => '6.58',
5942             'ExtUtils::MM_DOS' => '6.58',
5943             'ExtUtils::MM_Darwin' => '6.58',
5944             'ExtUtils::MM_MacOS' => '6.58',
5945             'ExtUtils::MM_NW5' => '6.58',
5946             'ExtUtils::MM_OS2' => '6.58',
5947             'ExtUtils::MM_QNX' => '6.58',
5948             'ExtUtils::MM_UWIN' => '6.58',
5949             'ExtUtils::MM_Unix' => '6.58',
5950             'ExtUtils::MM_VMS' => '6.58',
5951             'ExtUtils::MM_VOS' => '6.58',
5952             'ExtUtils::MM_Win32' => '6.58',
5953             'ExtUtils::MM_Win95' => '6.58',
5954             'ExtUtils::MY' => '6.58',
5955             'ExtUtils::MakeMaker' => '6.58',
5956             'ExtUtils::MakeMaker::Config'=> '6.58',
5957             'ExtUtils::Mkbootstrap' => '6.58',
5958             'ExtUtils::Mksymlists' => '6.58',
5959             'ExtUtils::ParseXS' => '3.00_01',
5960             'ExtUtils::ParseXS::Constants'=> undef,
5961             'ExtUtils::ParseXS::CountLines'=> undef,
5962             'ExtUtils::ParseXS::Utilities'=> undef,
5963             'ExtUtils::Typemaps' => '1.00',
5964             'ExtUtils::Typemaps::InputMap'=> undef,
5965             'ExtUtils::Typemaps::OutputMap'=> undef,
5966             'ExtUtils::Typemaps::Type'=> '0.05',
5967             'ExtUtils::testlib' => '6.58',
5968             'File::Basename' => '2.83',
5969             'File::Find' => '1.20',
5970             'HTTP::Tiny' => '0.013',
5971             'I18N::Langinfo' => '0.08_02',
5972             'IO::Compress::Adapter::Bzip2'=> '2.037',
5973             'IO::Compress::Adapter::Deflate'=> '2.037',
5974             'IO::Compress::Adapter::Identity'=> '2.037',
5975             'IO::Compress::Base' => '2.037',
5976             'IO::Compress::Base::Common'=> '2.037',
5977             'IO::Compress::Bzip2' => '2.037',
5978             'IO::Compress::Deflate' => '2.037',
5979             'IO::Compress::Gzip' => '2.037',
5980             'IO::Compress::Gzip::Constants'=> '2.037',
5981             'IO::Compress::RawDeflate'=> '2.037',
5982             'IO::Compress::Zip' => '2.037',
5983             'IO::Compress::Zip::Constants'=> '2.037',
5984             'IO::Compress::Zlib::Constants'=> '2.037',
5985             'IO::Compress::Zlib::Extra'=> '2.037',
5986             'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
5987             'IO::Uncompress::Adapter::Identity'=> '2.037',
5988             'IO::Uncompress::Adapter::Inflate'=> '2.037',
5989             'IO::Uncompress::AnyInflate'=> '2.037',
5990             'IO::Uncompress::AnyUncompress'=> '2.037',
5991             'IO::Uncompress::Base' => '2.037',
5992             'IO::Uncompress::Bunzip2'=> '2.037',
5993             'IO::Uncompress::Gunzip'=> '2.037',
5994             'IO::Uncompress::Inflate'=> '2.037',
5995             'IO::Uncompress::RawInflate'=> '2.037',
5996             'IO::Uncompress::Unzip' => '2.037',
5997             'IPC::Cmd' => '0.72',
5998             'Locale::Codes' => '3.17',
5999             'Locale::Codes::Constants'=> '3.17',
6000             'Locale::Codes::Country'=> '3.17',
6001             'Locale::Codes::Country_Codes'=> '3.17',
6002             'Locale::Codes::Currency'=> '3.17',
6003             'Locale::Codes::Currency_Codes'=> '3.17',
6004             'Locale::Codes::LangExt'=> '3.17',
6005             'Locale::Codes::LangExt_Codes'=> '3.17',
6006             'Locale::Codes::LangVar'=> '3.17',
6007             'Locale::Codes::LangVar_Codes'=> '3.17',
6008             'Locale::Codes::Language'=> '3.17',
6009             'Locale::Codes::Language_Codes'=> '3.17',
6010             'Locale::Codes::Script' => '3.17',
6011             'Locale::Codes::Script_Codes'=> '3.17',
6012             'Locale::Country' => '3.17',
6013             'Locale::Currency' => '3.17',
6014             'Locale::Language' => '3.17',
6015             'Locale::Script' => '3.17',
6016             'Math::BigFloat::Trace' => '0.28',
6017             'Math::BigInt::FastCalc'=> '0.29',
6018             'Math::BigInt::Trace' => '0.28',
6019             'Math::BigRat' => '0.2602',
6020             'Math::Complex' => '1.58',
6021             'Math::Trig' => '1.22',
6022             'Module::CoreList' => '2.54',
6023             'OS2::Process' => '1.07',
6024             'Pod::Perldoc' => '3.15_06',
6025             'Pod::Simple' => '3.18',
6026             'Pod::Simple::BlackBox' => '3.18',
6027             'Pod::Simple::Checker' => '3.18',
6028             'Pod::Simple::Debug' => '3.18',
6029             'Pod::Simple::DumpAsText'=> '3.18',
6030             'Pod::Simple::DumpAsXML'=> '3.18',
6031             'Pod::Simple::HTML' => '3.18',
6032             'Pod::Simple::HTMLBatch'=> '3.18',
6033             'Pod::Simple::LinkSection'=> '3.18',
6034             'Pod::Simple::Methody' => '3.18',
6035             'Pod::Simple::Progress' => '3.18',
6036             'Pod::Simple::PullParser'=> '3.18',
6037             'Pod::Simple::PullParserEndToken'=> '3.18',
6038             'Pod::Simple::PullParserStartToken'=> '3.18',
6039             'Pod::Simple::PullParserTextToken'=> '3.18',
6040             'Pod::Simple::PullParserToken'=> '3.18',
6041             'Pod::Simple::RTF' => '3.18',
6042             'Pod::Simple::Search' => '3.18',
6043             'Pod::Simple::SimpleTree'=> '3.18',
6044             'Pod::Simple::Text' => '3.18',
6045             'Pod::Simple::TextContent'=> '3.18',
6046             'Pod::Simple::TiedOutFH'=> '3.18',
6047             'Pod::Simple::Transcode'=> '3.18',
6048             'Pod::Simple::TranscodeDumb'=> '3.18',
6049             'Pod::Simple::TranscodeSmart'=> '3.18',
6050             'Pod::Simple::XHTML' => '3.18',
6051             'Pod::Simple::XMLOutStream'=> '3.18',
6052             'Storable' => '2.31',
6053             'Sys::Syslog::Win32' => undef,
6054             'Time::HiRes' => '1.9724',
6055             'Unicode::Collate' => '0.77',
6056             'Unicode::UCD' => '0.33',
6057             'Win32API::File' => '0.1200',
6058             'XS::APItest' => '0.30',
6059             'attributes' => '0.15',
6060             'bigint' => '0.28',
6061             'bignum' => '0.28',
6062             'charnames' => '1.23',
6063             'diagnostics' => '1.23',
6064             'feature' => '1.22',
6065             'overload' => '1.15',
6066             'perlfaq' => '5.015000',
6067             'threads' => '1.84',
6068             'version' => '0.93',
6069             },
6070             removed => {
6071             'ExtUtils::MakeMaker::YAML'=> 1,
6072             'Locale::Constants' => 1,
6073             'Sys::Syslog::win32::Win32'=> 1,
6074             }
6075             },
6076             5.015002 => {
6077             delta_from => 5.015001,
6078             changed => {
6079             'Attribute::Handlers' => '0.92',
6080             'B' => '1.31',
6081             'B::Concise' => '0.85',
6082             'B::Deparse' => '1.07',
6083             'B::Terse' => '1.06',
6084             'B::Xref' => '1.03',
6085             'CPAN' => '1.9800',
6086             'CPAN::Exception::yaml_process_error'=> '5.5',
6087             'CPAN::Meta' => '2.112150',
6088             'CPAN::Meta::Converter' => '2.112150',
6089             'CPAN::Meta::Feature' => '2.112150',
6090             'CPAN::Meta::History' => '2.112150',
6091             'CPAN::Meta::Prereqs' => '2.112150',
6092             'CPAN::Meta::Spec' => '2.112150',
6093             'CPAN::Meta::Validator' => '2.112150',
6094             'CPANPLUS' => '0.9109',
6095             'CPANPLUS::Internals' => '0.9109',
6096             'CPANPLUS::Shell::Default'=> '0.9109',
6097             'DB_File' => '1.824',
6098             'Data::Dumper' => '2.132',
6099             'Encode' => '2.44',
6100             'Encode::Alias' => '2.15',
6101             'Encode::Encoder' => '2.02',
6102             'Encode::Guess' => '2.05',
6103             'ExtUtils::Command::MM' => '6.59',
6104             'ExtUtils::Install' => '1.57',
6105             'ExtUtils::Installed' => '1.999002',
6106             'ExtUtils::Liblist' => '6.59',
6107             'ExtUtils::Liblist::Kid'=> '6.59',
6108             'ExtUtils::MM' => '6.59',
6109             'ExtUtils::MM_AIX' => '6.59',
6110             'ExtUtils::MM_Any' => '6.59',
6111             'ExtUtils::MM_BeOS' => '6.59',
6112             'ExtUtils::MM_Cygwin' => '6.59',
6113             'ExtUtils::MM_DOS' => '6.59',
6114             'ExtUtils::MM_Darwin' => '6.59',
6115             'ExtUtils::MM_MacOS' => '6.59',
6116             'ExtUtils::MM_NW5' => '6.59',
6117             'ExtUtils::MM_OS2' => '6.59',
6118             'ExtUtils::MM_QNX' => '6.59',
6119             'ExtUtils::MM_UWIN' => '6.59',
6120             'ExtUtils::MM_Unix' => '6.59',
6121             'ExtUtils::MM_VMS' => '6.59',
6122             'ExtUtils::MM_VOS' => '6.59',
6123             'ExtUtils::MM_Win32' => '6.59',
6124             'ExtUtils::MM_Win95' => '6.59',
6125             'ExtUtils::MY' => '6.59',
6126             'ExtUtils::MakeMaker' => '6.59',
6127             'ExtUtils::MakeMaker::Config'=> '6.59',
6128             'ExtUtils::Manifest' => '1.60',
6129             'ExtUtils::Mkbootstrap' => '6.59',
6130             'ExtUtils::Mksymlists' => '6.59',
6131             'ExtUtils::ParseXS' => '3.03_01',
6132             'ExtUtils::Typemaps' => '1.01',
6133             'ExtUtils::testlib' => '6.59',
6134             'File::Spec' => '3.34',
6135             'File::Spec::Mac' => '3.35',
6136             'File::Spec::Unix' => '3.34',
6137             'File::Spec::VMS' => '3.35',
6138             'File::Spec::Win32' => '3.35',
6139             'I18N::LangTags' => '0.37',
6140             'IO' => '1.25_05',
6141             'IO::Handle' => '1.32',
6142             'IO::Socket' => '1.33',
6143             'IO::Socket::INET' => '1.32',
6144             'IPC::Open3' => '1.12',
6145             'Math::BigFloat' => '1.995',
6146             'Math::BigFloat::Trace' => '0.29',
6147             'Math::BigInt' => '1.996',
6148             'Math::BigInt::Trace' => '0.29',
6149             'Module::Build' => '0.39_01',
6150             'Module::Build::Base' => '0.39_01',
6151             'Module::Build::Compat' => '0.39_01',
6152             'Module::Build::Config' => '0.39_01',
6153             'Module::Build::Cookbook'=> '0.39_01',
6154             'Module::Build::Dumper' => '0.39_01',
6155             'Module::Build::ModuleInfo'=> '0.39_01',
6156             'Module::Build::Notes' => '0.39_01',
6157             'Module::Build::PPMMaker'=> '0.39_01',
6158             'Module::Build::Platform::Amiga'=> '0.39_01',
6159             'Module::Build::Platform::Default'=> '0.39_01',
6160             'Module::Build::Platform::EBCDIC'=> '0.39_01',
6161             'Module::Build::Platform::MPEiX'=> '0.39_01',
6162             'Module::Build::Platform::MacOS'=> '0.39_01',
6163             'Module::Build::Platform::RiscOS'=> '0.39_01',
6164             'Module::Build::Platform::Unix'=> '0.39_01',
6165             'Module::Build::Platform::VMS'=> '0.39_01',
6166             'Module::Build::Platform::VOS'=> '0.39_01',
6167             'Module::Build::Platform::Windows'=> '0.39_01',
6168             'Module::Build::Platform::aix'=> '0.39_01',
6169             'Module::Build::Platform::cygwin'=> '0.39_01',
6170             'Module::Build::Platform::darwin'=> '0.39_01',
6171             'Module::Build::Platform::os2'=> '0.39_01',
6172             'Module::Build::PodParser'=> '0.39_01',
6173             'Module::CoreList' => '2.55',
6174             'Module::Load' => '0.20',
6175             'Module::Metadata' => '1.000005_01',
6176             'Opcode' => '1.20',
6177             'Params::Check' => '0.32',
6178             'PerlIO::via' => '0.12',
6179             'Term::ANSIColor' => '3.01',
6180             'Unicode::Collate' => '0.78',
6181             'Unicode::Normalize' => '1.13',
6182             'Unicode::UCD' => '0.34',
6183             'bigint' => '0.29',
6184             'bignum' => '0.29',
6185             'bigrat' => '0.29',
6186             'diagnostics' => '1.24',
6187             'fields' => '2.16',
6188             'inc::latest' => '0.39_01',
6189             },
6190             removed => {
6191             }
6192             },
6193             5.015003 => {
6194             delta_from => 5.015002,
6195             changed => {
6196             'AnyDBM_File' => '1.01',
6197             'Archive::Extract' => '0.56',
6198             'Archive::Tar' => '1.78',
6199             'Archive::Tar::Constant'=> '1.78',
6200             'Archive::Tar::File' => '1.78',
6201             'Attribute::Handlers' => '0.93',
6202             'B' => '1.32',
6203             'B::Concise' => '0.86',
6204             'B::Deparse' => '1.08',
6205             'CPAN::Meta' => '2.112621',
6206             'CPAN::Meta::Converter' => '2.112621',
6207             'CPAN::Meta::Feature' => '2.112621',
6208             'CPAN::Meta::History' => '2.112621',
6209             'CPAN::Meta::Prereqs' => '2.112621',
6210             'CPAN::Meta::Spec' => '2.112621',
6211             'CPAN::Meta::Validator' => '2.112621',
6212             'CPAN::Meta::YAML' => '0.004',
6213             'CPANPLUS' => '0.9111',
6214             'CPANPLUS::Dist::Build' => '0.58',
6215             'CPANPLUS::Dist::Build::Constants'=> '0.58',
6216             'CPANPLUS::Internals' => '0.9111',
6217             'CPANPLUS::Shell::Default'=> '0.9111',
6218             'Carp' => '1.23',
6219             'Carp::Heavy' => '1.23',
6220             'Data::Dumper' => '2.134',
6221             'Devel::PPPort' => '3.20',
6222             'Errno' => '1.14',
6223             'Exporter' => '5.65',
6224             'Exporter::Heavy' => '5.65',
6225             'ExtUtils::ParseXS' => '3.04_04',
6226             'ExtUtils::ParseXS::Constants'=> '3.04_04',
6227             'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6228             'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6229             'ExtUtils::Typemaps' => '1.02',
6230             'File::Glob' => '1.13',
6231             'Filter::Simple' => '0.88',
6232             'IO' => '1.25_06',
6233             'IO::Handle' => '1.33',
6234             'Locale::Codes' => '3.18',
6235             'Locale::Codes::Constants'=> '3.18',
6236             'Locale::Codes::Country'=> '3.18',
6237             'Locale::Codes::Country_Codes'=> '3.18',
6238             'Locale::Codes::Currency'=> '3.18',
6239             'Locale::Codes::Currency_Codes'=> '3.18',
6240             'Locale::Codes::LangExt'=> '3.18',
6241             'Locale::Codes::LangExt_Codes'=> '3.18',
6242             'Locale::Codes::LangVar'=> '3.18',
6243             'Locale::Codes::LangVar_Codes'=> '3.18',
6244             'Locale::Codes::Language'=> '3.18',
6245             'Locale::Codes::Language_Codes'=> '3.18',
6246             'Locale::Codes::Script' => '3.18',
6247             'Locale::Codes::Script_Codes'=> '3.18',
6248             'Locale::Country' => '3.18',
6249             'Locale::Currency' => '3.18',
6250             'Locale::Language' => '3.18',
6251             'Locale::Script' => '3.18',
6252             'Math::BigFloat' => '1.997',
6253             'Math::BigInt' => '1.997',
6254             'Math::BigInt::Calc' => '1.997',
6255             'Math::BigInt::CalcEmu' => '1.997',
6256             'Math::BigInt::FastCalc'=> '0.30',
6257             'Math::BigRat' => '0.2603',
6258             'Module::CoreList' => '2.56',
6259             'Module::Load::Conditional'=> '0.46',
6260             'Module::Metadata' => '1.000007',
6261             'ODBM_File' => '1.12',
6262             'POSIX' => '1.26',
6263             'Pod::Perldoc' => '3.15_07',
6264             'Pod::Simple' => '3.19',
6265             'Pod::Simple::BlackBox' => '3.19',
6266             'Pod::Simple::Checker' => '3.19',
6267             'Pod::Simple::Debug' => '3.19',
6268             'Pod::Simple::DumpAsText'=> '3.19',
6269             'Pod::Simple::DumpAsXML'=> '3.19',
6270             'Pod::Simple::HTML' => '3.19',
6271             'Pod::Simple::HTMLBatch'=> '3.19',
6272             'Pod::Simple::LinkSection'=> '3.19',
6273             'Pod::Simple::Methody' => '3.19',
6274             'Pod::Simple::Progress' => '3.19',
6275             'Pod::Simple::PullParser'=> '3.19',
6276             'Pod::Simple::PullParserEndToken'=> '3.19',
6277             'Pod::Simple::PullParserStartToken'=> '3.19',
6278             'Pod::Simple::PullParserTextToken'=> '3.19',
6279             'Pod::Simple::PullParserToken'=> '3.19',
6280             'Pod::Simple::RTF' => '3.19',
6281             'Pod::Simple::Search' => '3.19',
6282             'Pod::Simple::SimpleTree'=> '3.19',
6283             'Pod::Simple::Text' => '3.19',
6284             'Pod::Simple::TextContent'=> '3.19',
6285             'Pod::Simple::TiedOutFH'=> '3.19',
6286             'Pod::Simple::Transcode'=> '3.19',
6287             'Pod::Simple::TranscodeDumb'=> '3.19',
6288             'Pod::Simple::TranscodeSmart'=> '3.19',
6289             'Pod::Simple::XHTML' => '3.19',
6290             'Pod::Simple::XMLOutStream'=> '3.19',
6291             'Search::Dict' => '1.04',
6292             'Socket' => '1.94_01',
6293             'Storable' => '2.32',
6294             'Text::Abbrev' => '1.02',
6295             'Tie::Array' => '1.05',
6296             'UNIVERSAL' => '1.09',
6297             'Unicode::UCD' => '0.35',
6298             'XS::APItest' => '0.31',
6299             'XSLoader' => '0.16',
6300             'attributes' => '0.16',
6301             'diagnostics' => '1.25',
6302             'open' => '1.09',
6303             'perlfaq' => '5.0150034',
6304             'threads' => '1.85',
6305             'threads::shared' => '1.40',
6306             },
6307             removed => {
6308             }
6309             },
6310             5.015004 => {
6311             delta_from => 5.015003,
6312             changed => {
6313             'Archive::Tar' => '1.80',
6314             'Archive::Tar::Constant'=> '1.80',
6315             'Archive::Tar::File' => '1.80',
6316             'Digest' => '1.17',
6317             'DynaLoader' => '1.14',
6318             'ExtUtils::Command::MM' => '6.61_01',
6319             'ExtUtils::Liblist' => '6.61_01',
6320             'ExtUtils::Liblist::Kid'=> '6.61_01',
6321             'ExtUtils::MM' => '6.61_01',
6322             'ExtUtils::MM_AIX' => '6.61_01',
6323             'ExtUtils::MM_Any' => '6.61_01',
6324             'ExtUtils::MM_BeOS' => '6.61_01',
6325             'ExtUtils::MM_Cygwin' => '6.61_01',
6326             'ExtUtils::MM_DOS' => '6.61_01',
6327             'ExtUtils::MM_Darwin' => '6.61_01',
6328             'ExtUtils::MM_MacOS' => '6.61_01',
6329             'ExtUtils::MM_NW5' => '6.61_01',
6330             'ExtUtils::MM_OS2' => '6.61_01',
6331             'ExtUtils::MM_QNX' => '6.61_01',
6332             'ExtUtils::MM_UWIN' => '6.61_01',
6333             'ExtUtils::MM_Unix' => '6.61_01',
6334             'ExtUtils::MM_VMS' => '6.61_01',
6335             'ExtUtils::MM_VOS' => '6.61_01',
6336             'ExtUtils::MM_Win32' => '6.61_01',
6337             'ExtUtils::MM_Win95' => '6.61_01',
6338             'ExtUtils::MY' => '6.61_01',
6339             'ExtUtils::MakeMaker' => '6.61_01',
6340             'ExtUtils::MakeMaker::Config'=> '6.61_01',
6341             'ExtUtils::Mkbootstrap' => '6.61_01',
6342             'ExtUtils::Mksymlists' => '6.61_01',
6343             'ExtUtils::ParseXS' => '3.05',
6344             'ExtUtils::ParseXS::Constants'=> '3.05',
6345             'ExtUtils::ParseXS::CountLines'=> '3.05',
6346             'ExtUtils::ParseXS::Utilities'=> '3.05',
6347             'ExtUtils::testlib' => '6.61_01',
6348             'File::DosGlob' => '1.05',
6349             'Module::CoreList' => '2.57',
6350             'Module::Load' => '0.22',
6351             'Unicode::Collate' => '0.80',
6352             'Unicode::Collate::Locale'=> '0.80',
6353             'Unicode::UCD' => '0.36',
6354             'XS::APItest' => '0.32',
6355             'XS::Typemap' => '0.07',
6356             'attributes' => '0.17',
6357             'base' => '2.18',
6358             'constant' => '1.23',
6359             'mro' => '1.09',
6360             'open' => '1.10',
6361             'perlfaq' => '5.0150035',
6362             },
6363             removed => {
6364             }
6365             },
6366             5.015005 => {
6367             delta_from => 5.015004,
6368             changed => {
6369             'Archive::Extract' => '0.58',
6370             'B::Concise' => '0.87',
6371             'B::Deparse' => '1.09',
6372             'CGI' => '3.58',
6373             'CGI::Fast' => '1.09',
6374             'CPANPLUS' => '0.9112',
6375             'CPANPLUS::Dist::Build' => '0.60',
6376             'CPANPLUS::Dist::Build::Constants'=> '0.60',
6377             'CPANPLUS::Internals' => '0.9112',
6378             'CPANPLUS::Shell::Default'=> '0.9112',
6379             'Compress::Raw::Bzip2' => '2.042',
6380             'Compress::Raw::Zlib' => '2.042',
6381             'Compress::Zlib' => '2.042',
6382             'Digest::SHA' => '5.63',
6383             'Errno' => '1.15',
6384             'ExtUtils::Command::MM' => '6.63_02',
6385             'ExtUtils::Liblist' => '6.63_02',
6386             'ExtUtils::Liblist::Kid'=> '6.63_02',
6387             'ExtUtils::MM' => '6.63_02',
6388             'ExtUtils::MM_AIX' => '6.63_02',
6389             'ExtUtils::MM_Any' => '6.63_02',
6390             'ExtUtils::MM_BeOS' => '6.63_02',
6391             'ExtUtils::MM_Cygwin' => '6.63_02',
6392             'ExtUtils::MM_DOS' => '6.63_02',
6393             'ExtUtils::MM_Darwin' => '6.63_02',
6394             'ExtUtils::MM_MacOS' => '6.63_02',
6395             'ExtUtils::MM_NW5' => '6.63_02',
6396             'ExtUtils::MM_OS2' => '6.63_02',
6397             'ExtUtils::MM_QNX' => '6.63_02',
6398             'ExtUtils::MM_UWIN' => '6.63_02',
6399             'ExtUtils::MM_Unix' => '6.63_02',
6400             'ExtUtils::MM_VMS' => '6.63_02',
6401             'ExtUtils::MM_VOS' => '6.63_02',
6402             'ExtUtils::MM_Win32' => '6.63_02',
6403             'ExtUtils::MM_Win95' => '6.63_02',
6404             'ExtUtils::MY' => '6.63_02',
6405             'ExtUtils::MakeMaker' => '6.63_02',
6406             'ExtUtils::MakeMaker::Config'=> '6.63_02',
6407             'ExtUtils::Mkbootstrap' => '6.63_02',
6408             'ExtUtils::Mksymlists' => '6.63_02',
6409             'ExtUtils::testlib' => '6.63_02',
6410             'File::DosGlob' => '1.06',
6411             'File::Glob' => '1.14',
6412             'HTTP::Tiny' => '0.016',
6413             'IO::Compress::Adapter::Bzip2'=> '2.042',
6414             'IO::Compress::Adapter::Deflate'=> '2.042',
6415             'IO::Compress::Adapter::Identity'=> '2.042',
6416             'IO::Compress::Base' => '2.042',
6417             'IO::Compress::Base::Common'=> '2.042',
6418             'IO::Compress::Bzip2' => '2.042',
6419             'IO::Compress::Deflate' => '2.042',
6420             'IO::Compress::Gzip' => '2.042',
6421             'IO::Compress::Gzip::Constants'=> '2.042',
6422             'IO::Compress::RawDeflate'=> '2.042',
6423             'IO::Compress::Zip' => '2.042',
6424             'IO::Compress::Zip::Constants'=> '2.042',
6425             'IO::Compress::Zlib::Constants'=> '2.042',
6426             'IO::Compress::Zlib::Extra'=> '2.042',
6427             'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6428             'IO::Uncompress::Adapter::Identity'=> '2.042',
6429             'IO::Uncompress::Adapter::Inflate'=> '2.042',
6430             'IO::Uncompress::AnyInflate'=> '2.042',
6431             'IO::Uncompress::AnyUncompress'=> '2.042',
6432             'IO::Uncompress::Base' => '2.042',
6433             'IO::Uncompress::Bunzip2'=> '2.042',
6434             'IO::Uncompress::Gunzip'=> '2.042',
6435             'IO::Uncompress::Inflate'=> '2.042',
6436             'IO::Uncompress::RawInflate'=> '2.042',
6437             'IO::Uncompress::Unzip' => '2.042',
6438             'Locale::Maketext' => '1.20',
6439             'Locale::Maketext::Guts'=> '1.20',
6440             'Locale::Maketext::GutsLoader'=> '1.20',
6441             'Module::CoreList' => '2.58',
6442             'Opcode' => '1.21',
6443             'Socket' => '1.94_02',
6444             'Storable' => '2.33',
6445             'UNIVERSAL' => '1.10',
6446             'Unicode::Collate' => '0.85',
6447             'Unicode::Collate::CJK::Pinyin'=> '0.85',
6448             'Unicode::Collate::CJK::Stroke'=> '0.85',
6449             'Unicode::Collate::Locale'=> '0.85',
6450             'Unicode::UCD' => '0.37',
6451             'XS::APItest' => '0.33',
6452             'arybase' => '0.01',
6453             'charnames' => '1.24',
6454             'feature' => '1.23',
6455             'perlfaq' => '5.0150036',
6456             'strict' => '1.05',
6457             'unicore::Name' => undef,
6458             },
6459             removed => {
6460             }
6461             },
6462             5.015006 => {
6463             delta_from => 5.015005,
6464             changed => {
6465             'Archive::Tar' => '1.82',
6466             'Archive::Tar::Constant'=> '1.82',
6467             'Archive::Tar::File' => '1.82',
6468             'AutoLoader' => '5.72',
6469             'B::Concise' => '0.88',
6470             'B::Debug' => '1.17',
6471             'B::Deparse' => '1.10',
6472             'CPAN::Meta::YAML' => '0.005',
6473             'CPANPLUS' => '0.9113',
6474             'CPANPLUS::Internals' => '0.9113',
6475             'CPANPLUS::Shell::Default'=> '0.9113',
6476             'Carp' => '1.24',
6477             'Compress::Raw::Bzip2' => '2.045',
6478             'Compress::Raw::Zlib' => '2.045',
6479             'Compress::Zlib' => '2.045',
6480             'Cwd' => '3.38',
6481             'DB' => '1.04',
6482             'Data::Dumper' => '2.135_01',
6483             'Digest::SHA' => '5.70',
6484             'Dumpvalue' => '1.17',
6485             'Exporter' => '5.66',
6486             'Exporter::Heavy' => '5.66',
6487             'ExtUtils::CBuilder' => '0.280205',
6488             'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6489             'ExtUtils::Packlist' => '1.45',
6490             'ExtUtils::ParseXS' => '3.08',
6491             'ExtUtils::ParseXS::Constants'=> '3.08',
6492             'ExtUtils::ParseXS::CountLines'=> '3.08',
6493             'ExtUtils::ParseXS::Utilities'=> '3.08',
6494             'File::Basename' => '2.84',
6495             'File::Glob' => '1.15',
6496             'File::Spec::Unix' => '3.35',
6497             'Getopt::Std' => '1.07',
6498             'I18N::LangTags' => '0.38',
6499             'IO::Compress::Adapter::Bzip2'=> '2.045',
6500             'IO::Compress::Adapter::Deflate'=> '2.045',
6501             'IO::Compress::Adapter::Identity'=> '2.045',
6502             'IO::Compress::Base' => '2.046',
6503             'IO::Compress::Base::Common'=> '2.045',
6504             'IO::Compress::Bzip2' => '2.045',
6505             'IO::Compress::Deflate' => '2.045',
6506             'IO::Compress::Gzip' => '2.045',
6507             'IO::Compress::Gzip::Constants'=> '2.045',
6508             'IO::Compress::RawDeflate'=> '2.045',
6509             'IO::Compress::Zip' => '2.046',
6510             'IO::Compress::Zip::Constants'=> '2.045',
6511             'IO::Compress::Zlib::Constants'=> '2.045',
6512             'IO::Compress::Zlib::Extra'=> '2.045',
6513             'IO::Dir' => '1.09',
6514             'IO::File' => '1.16',
6515             'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6516             'IO::Uncompress::Adapter::Identity'=> '2.045',
6517             'IO::Uncompress::Adapter::Inflate'=> '2.045',
6518             'IO::Uncompress::AnyInflate'=> '2.045',
6519             'IO::Uncompress::AnyUncompress'=> '2.045',
6520             'IO::Uncompress::Base' => '2.046',
6521             'IO::Uncompress::Bunzip2'=> '2.045',
6522             'IO::Uncompress::Gunzip'=> '2.045',
6523             'IO::Uncompress::Inflate'=> '2.045',
6524             'IO::Uncompress::RawInflate'=> '2.045',
6525             'IO::Uncompress::Unzip' => '2.046',
6526             'Locale::Codes' => '3.20',
6527             'Locale::Codes::Constants'=> '3.20',
6528             'Locale::Codes::Country'=> '3.20',
6529             'Locale::Codes::Country_Codes'=> '3.20',
6530             'Locale::Codes::Country_Retired'=> '3.20',
6531             'Locale::Codes::Currency'=> '3.20',
6532             'Locale::Codes::Currency_Codes'=> '3.20',
6533             'Locale::Codes::Currency_Retired'=> '3.20',
6534             'Locale::Codes::LangExt'=> '3.20',
6535             'Locale::Codes::LangExt_Codes'=> '3.20',
6536             'Locale::Codes::LangExt_Retired'=> '3.20',
6537             'Locale::Codes::LangFam'=> '3.20',
6538             'Locale::Codes::LangFam_Codes'=> '3.20',
6539             'Locale::Codes::LangFam_Retired'=> '3.20',
6540             'Locale::Codes::LangVar'=> '3.20',
6541             'Locale::Codes::LangVar_Codes'=> '3.20',
6542             'Locale::Codes::LangVar_Retired'=> '3.20',
6543             'Locale::Codes::Language'=> '3.20',
6544             'Locale::Codes::Language_Codes'=> '3.20',
6545             'Locale::Codes::Language_Retired'=> '3.20',
6546             'Locale::Codes::Script' => '3.20',
6547             'Locale::Codes::Script_Codes'=> '3.20',
6548             'Locale::Codes::Script_Retired'=> '3.20',
6549             'Locale::Country' => '3.20',
6550             'Locale::Currency' => '3.20',
6551             'Locale::Language' => '3.20',
6552             'Locale::Maketext' => '1.21',
6553             'Locale::Script' => '3.20',
6554             'Module::CoreList' => '2.59',
6555             'Module::Loaded' => '0.08',
6556             'Opcode' => '1.22',
6557             'POSIX' => '1.27',
6558             'Pod::Html' => '1.12',
6559             'Pod::LaTeX' => '0.60',
6560             'Pod::Perldoc' => '3.15_08',
6561             'Safe' => '2.30',
6562             'SelfLoader' => '1.20',
6563             'Socket' => '1.97',
6564             'Storable' => '2.34',
6565             'UNIVERSAL' => '1.11',
6566             'Unicode::Collate' => '0.87',
6567             'Unicode::Collate::Locale'=> '0.87',
6568             'XS::APItest' => '0.34',
6569             'arybase' => '0.02',
6570             'charnames' => '1.27',
6571             'diagnostics' => '1.26',
6572             'feature' => '1.24',
6573             'if' => '0.0602',
6574             'overload' => '1.16',
6575             'sigtrap' => '1.06',
6576             'strict' => '1.06',
6577             'threads' => '1.86',
6578             'version' => '0.96',
6579             },
6580             removed => {
6581             }
6582             },
6583             5.015007 => {
6584             delta_from => 5.015006,
6585             changed => {
6586             'B' => '1.33',
6587             'B::Deparse' => '1.11',
6588             'CGI' => '3.59',
6589             'CPAN::Meta' => '2.113640',
6590             'CPAN::Meta::Converter' => '2.113640',
6591             'CPAN::Meta::Feature' => '2.113640',
6592             'CPAN::Meta::History' => '2.113640',
6593             'CPAN::Meta::Prereqs' => '2.113640',
6594             'CPAN::Meta::Requirements'=> '2.113640',
6595             'CPAN::Meta::Spec' => '2.113640',
6596             'CPAN::Meta::Validator' => '2.113640',
6597             'CPANPLUS' => '0.9116',
6598             'CPANPLUS::Internals' => '0.9116',
6599             'CPANPLUS::Shell::Default'=> '0.9116',
6600             'Cwd' => '3.39_01',
6601             'Data::Dumper' => '2.135_03',
6602             'Devel::InnerPackage' => '0.4',
6603             'ExtUtils::CBuilder::Base'=> '0.280205',
6604             'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6605             'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6606             'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6607             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6608             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6609             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6610             'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6611             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6612             'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6613             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6614             'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6615             'ExtUtils::Manifest' => '1.61',
6616             'ExtUtils::Packlist' => '1.46',
6617             'ExtUtils::ParseXS' => '3.12',
6618             'ExtUtils::ParseXS::Constants'=> '3.12',
6619             'ExtUtils::ParseXS::CountLines'=> '3.12',
6620             'ExtUtils::ParseXS::Utilities'=> '3.12',
6621             'ExtUtils::Typemaps' => '1.03',
6622             'ExtUtils::Typemaps::Cmd'=> undef,
6623             'ExtUtils::Typemaps::Type'=> '0.06',
6624             'File::Glob' => '1.16',
6625             'File::Spec' => '3.39_01',
6626             'File::Spec::Cygwin' => '3.39_01',
6627             'File::Spec::Epoc' => '3.39_01',
6628             'File::Spec::Functions' => '3.39_01',
6629             'File::Spec::Mac' => '3.39_01',
6630             'File::Spec::OS2' => '3.39_01',
6631             'File::Spec::Unix' => '3.39_01',
6632             'File::Spec::VMS' => '3.39_01',
6633             'File::Spec::Win32' => '3.39_01',
6634             'IO::Dir' => '1.10',
6635             'IO::Pipe' => '1.15',
6636             'IO::Poll' => '0.09',
6637             'IO::Select' => '1.21',
6638             'IO::Socket' => '1.34',
6639             'IO::Socket::INET' => '1.33',
6640             'IO::Socket::UNIX' => '1.24',
6641             'Locale::Maketext' => '1.22',
6642             'Math::BigInt' => '1.998',
6643             'Module::CoreList' => '2.60',
6644             'Module::Pluggable' => '4.0',
6645             'POSIX' => '1.28',
6646             'PerlIO::scalar' => '0.13',
6647             'Pod::Html' => '1.13',
6648             'Pod::Perldoc' => '3.15_15',
6649             'Pod::Perldoc::BaseTo' => '3.15_15',
6650             'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6651             'Pod::Perldoc::ToANSI' => '3.15_15',
6652             'Pod::Perldoc::ToChecker'=> '3.15_15',
6653             'Pod::Perldoc::ToMan' => '3.15_15',
6654             'Pod::Perldoc::ToNroff' => '3.15_15',
6655             'Pod::Perldoc::ToPod' => '3.15_15',
6656             'Pod::Perldoc::ToRtf' => '3.15_15',
6657             'Pod::Perldoc::ToTerm' => '3.15_15',
6658             'Pod::Perldoc::ToText' => '3.15_15',
6659             'Pod::Perldoc::ToTk' => '3.15_15',
6660             'Pod::Perldoc::ToXml' => '3.15_15',
6661             'Term::UI' => '0.30',
6662             'Tie::File' => '0.98',
6663             'Unicode::UCD' => '0.39',
6664             'Version::Requirements' => '0.101021',
6665             'XS::APItest' => '0.35',
6666             '_charnames' => '1.28',
6667             'arybase' => '0.03',
6668             'autouse' => '1.07',
6669             'charnames' => '1.28',
6670             'diagnostics' => '1.27',
6671             'feature' => '1.25',
6672             'overload' => '1.17',
6673             'overloading' => '0.02',
6674             'perlfaq' => '5.0150038',
6675             },
6676             removed => {
6677             }
6678             },
6679             5.015008 => {
6680             delta_from => 5.015007,
6681             changed => {
6682             'B' => '1.34',
6683             'B::Deparse' => '1.12',
6684             'CPAN::Meta' => '2.120351',
6685             'CPAN::Meta::Converter' => '2.120351',
6686             'CPAN::Meta::Feature' => '2.120351',
6687             'CPAN::Meta::History' => '2.120351',
6688             'CPAN::Meta::Prereqs' => '2.120351',
6689             'CPAN::Meta::Requirements'=> '2.120351',
6690             'CPAN::Meta::Spec' => '2.120351',
6691             'CPAN::Meta::Validator' => '2.120351',
6692             'CPAN::Meta::YAML' => '0.007',
6693             'CPANPLUS' => '0.9118',
6694             'CPANPLUS::Dist::Build' => '0.62',
6695             'CPANPLUS::Dist::Build::Constants'=> '0.62',
6696             'CPANPLUS::Internals' => '0.9118',
6697             'CPANPLUS::Shell::Default'=> '0.9118',
6698             'Carp' => '1.25',
6699             'Carp::Heavy' => '1.25',
6700             'Compress::Raw::Bzip2' => '2.048',
6701             'Compress::Raw::Zlib' => '2.048',
6702             'Compress::Zlib' => '2.048',
6703             'Cwd' => '3.39_02',
6704             'DB_File' => '1.826',
6705             'Data::Dumper' => '2.135_05',
6706             'English' => '1.05',
6707             'ExtUtils::Install' => '1.58',
6708             'ExtUtils::ParseXS' => '3.16',
6709             'ExtUtils::ParseXS::Constants'=> '3.16',
6710             'ExtUtils::ParseXS::CountLines'=> '3.16',
6711             'ExtUtils::ParseXS::Utilities'=> '3.16',
6712             'ExtUtils::Typemaps' => '3.16',
6713             'ExtUtils::Typemaps::Cmd'=> '3.16',
6714             'ExtUtils::Typemaps::InputMap'=> '3.16',
6715             'ExtUtils::Typemaps::OutputMap'=> '3.16',
6716             'ExtUtils::Typemaps::Type'=> '3.16',
6717             'File::Copy' => '2.23',
6718             'File::Glob' => '1.17',
6719             'File::Spec' => '3.39_02',
6720             'File::Spec::Cygwin' => '3.39_02',
6721             'File::Spec::Epoc' => '3.39_02',
6722             'File::Spec::Functions' => '3.39_02',
6723             'File::Spec::Mac' => '3.39_02',
6724             'File::Spec::OS2' => '3.39_02',
6725             'File::Spec::Unix' => '3.39_02',
6726             'File::Spec::VMS' => '3.39_02',
6727             'File::Spec::Win32' => '3.39_02',
6728             'Filter::Util::Call' => '1.40',
6729             'IO::Compress::Adapter::Bzip2'=> '2.048',
6730             'IO::Compress::Adapter::Deflate'=> '2.048',
6731             'IO::Compress::Adapter::Identity'=> '2.048',
6732             'IO::Compress::Base' => '2.048',
6733             'IO::Compress::Base::Common'=> '2.048',
6734             'IO::Compress::Bzip2' => '2.048',
6735             'IO::Compress::Deflate' => '2.048',
6736             'IO::Compress::Gzip' => '2.048',
6737             'IO::Compress::Gzip::Constants'=> '2.048',
6738             'IO::Compress::RawDeflate'=> '2.048',
6739             'IO::Compress::Zip' => '2.048',
6740             'IO::Compress::Zip::Constants'=> '2.048',
6741             'IO::Compress::Zlib::Constants'=> '2.048',
6742             'IO::Compress::Zlib::Extra'=> '2.048',
6743             'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6744             'IO::Uncompress::Adapter::Identity'=> '2.048',
6745             'IO::Uncompress::Adapter::Inflate'=> '2.048',
6746             'IO::Uncompress::AnyInflate'=> '2.048',
6747             'IO::Uncompress::AnyUncompress'=> '2.048',
6748             'IO::Uncompress::Base' => '2.048',
6749             'IO::Uncompress::Bunzip2'=> '2.048',
6750             'IO::Uncompress::Gunzip'=> '2.048',
6751             'IO::Uncompress::Inflate'=> '2.048',
6752             'IO::Uncompress::RawInflate'=> '2.048',
6753             'IO::Uncompress::Unzip' => '2.048',
6754             'IPC::Cmd' => '0.76',
6755             'Math::Complex' => '1.59',
6756             'Math::Trig' => '1.23',
6757             'Module::Metadata' => '1.000009',
6758             'Opcode' => '1.23',
6759             'POSIX' => '1.30',
6760             'Parse::CPAN::Meta' => '1.4402',
6761             'PerlIO::mmap' => '0.010',
6762             'Pod::Checker' => '1.51',
6763             'Pod::Find' => '1.51',
6764             'Pod::Functions' => '1.05',
6765             'Pod::Html' => '1.14',
6766             'Pod::InputObjects' => '1.51',
6767             'Pod::ParseUtils' => '1.51',
6768             'Pod::Parser' => '1.51',
6769             'Pod::PlainText' => '2.05',
6770             'Pod::Select' => '1.51',
6771             'Pod::Usage' => '1.51',
6772             'Safe' => '2.31',
6773             'Socket' => '1.98',
6774             'Term::Cap' => '1.13',
6775             'Term::ReadLine' => '1.08',
6776             'Time::HiRes' => '1.9725',
6777             'Unicode' => '6.1.0',
6778             'Unicode::UCD' => '0.41',
6779             'Version::Requirements' => '0.101022',
6780             'XS::APItest' => '0.36',
6781             'XS::Typemap' => '0.08',
6782             '_charnames' => '1.29',
6783             'arybase' => '0.04',
6784             'charnames' => '1.29',
6785             'diagnostics' => '1.28',
6786             'feature' => '1.26',
6787             'locale' => '1.01',
6788             'overload' => '1.18',
6789             'perlfaq' => '5.0150039',
6790             're' => '0.19',
6791             'subs' => '1.01',
6792             'warnings' => '1.13',
6793             },
6794             removed => {
6795             }
6796             },
6797             5.015009 => {
6798             delta_from => 5.015008,
6799             changed => {
6800             'B::Deparse' => '1.13',
6801             'B::Lint' => '1.14',
6802             'B::Lint::Debug' => '1.14',
6803             'CPAN::Meta' => '2.120630',
6804             'CPAN::Meta::Converter' => '2.120630',
6805             'CPAN::Meta::Feature' => '2.120630',
6806             'CPAN::Meta::History' => '2.120630',
6807             'CPAN::Meta::Prereqs' => '2.120630',
6808             'CPAN::Meta::Requirements'=> '2.120630',
6809             'CPAN::Meta::Spec' => '2.120630',
6810             'CPAN::Meta::Validator' => '2.120630',
6811             'CPANPLUS' => '0.9121',
6812             'CPANPLUS::Internals' => '0.9121',
6813             'CPANPLUS::Shell::Default'=> '0.9121',
6814             'Data::Dumper' => '2.135_06',
6815             'Digest::SHA' => '5.71',
6816             'ExtUtils::CBuilder' => '0.280206',
6817             'ExtUtils::CBuilder::Base'=> '0.280206',
6818             'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6819             'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6820             'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6821             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6822             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6823             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6824             'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6825             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6826             'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6827             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6828             'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6829             'HTTP::Tiny' => '0.017',
6830             'Locale::Codes' => '3.21',
6831             'Locale::Codes::Constants'=> '3.21',
6832             'Locale::Codes::Country'=> '3.21',
6833             'Locale::Codes::Country_Codes'=> '3.21',
6834             'Locale::Codes::Country_Retired'=> '3.21',
6835             'Locale::Codes::Currency'=> '3.21',
6836             'Locale::Codes::Currency_Codes'=> '3.21',
6837             'Locale::Codes::Currency_Retired'=> '3.21',
6838             'Locale::Codes::LangExt'=> '3.21',
6839             'Locale::Codes::LangExt_Codes'=> '3.21',
6840             'Locale::Codes::LangExt_Retired'=> '3.21',
6841             'Locale::Codes::LangFam'=> '3.21',
6842             'Locale::Codes::LangFam_Codes'=> '3.21',
6843             'Locale::Codes::LangFam_Retired'=> '3.21',
6844             'Locale::Codes::LangVar'=> '3.21',
6845             'Locale::Codes::LangVar_Codes'=> '3.21',
6846             'Locale::Codes::LangVar_Retired'=> '3.21',
6847             'Locale::Codes::Language'=> '3.21',
6848             'Locale::Codes::Language_Codes'=> '3.21',
6849             'Locale::Codes::Language_Retired'=> '3.21',
6850             'Locale::Codes::Script' => '3.21',
6851             'Locale::Codes::Script_Codes'=> '3.21',
6852             'Locale::Codes::Script_Retired'=> '3.21',
6853             'Locale::Country' => '3.21',
6854             'Locale::Currency' => '3.21',
6855             'Locale::Language' => '3.21',
6856             'Locale::Script' => '3.21',
6857             'Module::CoreList' => '2.65',
6858             'Pod::Html' => '1.1501',
6859             'Pod::Perldoc' => '3.17',
6860             'Pod::Perldoc::BaseTo' => '3.17',
6861             'Pod::Perldoc::GetOptsOO'=> '3.17',
6862             'Pod::Perldoc::ToANSI' => '3.17',
6863             'Pod::Perldoc::ToChecker'=> '3.17',
6864             'Pod::Perldoc::ToMan' => '3.17',
6865             'Pod::Perldoc::ToNroff' => '3.17',
6866             'Pod::Perldoc::ToPod' => '3.17',
6867             'Pod::Perldoc::ToRtf' => '3.17',
6868             'Pod::Perldoc::ToTerm' => '3.17',
6869             'Pod::Perldoc::ToText' => '3.17',
6870             'Pod::Perldoc::ToTk' => '3.17',
6871             'Pod::Perldoc::ToXml' => '3.17',
6872             'Pod::Simple' => '3.20',
6873             'Pod::Simple::BlackBox' => '3.20',
6874             'Pod::Simple::Checker' => '3.20',
6875             'Pod::Simple::Debug' => '3.20',
6876             'Pod::Simple::DumpAsText'=> '3.20',
6877             'Pod::Simple::DumpAsXML'=> '3.20',
6878             'Pod::Simple::HTML' => '3.20',
6879             'Pod::Simple::HTMLBatch'=> '3.20',
6880             'Pod::Simple::LinkSection'=> '3.20',
6881             'Pod::Simple::Methody' => '3.20',
6882             'Pod::Simple::Progress' => '3.20',
6883             'Pod::Simple::PullParser'=> '3.20',
6884             'Pod::Simple::PullParserEndToken'=> '3.20',
6885             'Pod::Simple::PullParserStartToken'=> '3.20',
6886             'Pod::Simple::PullParserTextToken'=> '3.20',
6887             'Pod::Simple::PullParserToken'=> '3.20',
6888             'Pod::Simple::RTF' => '3.20',
6889             'Pod::Simple::Search' => '3.20',
6890             'Pod::Simple::SimpleTree'=> '3.20',
6891             'Pod::Simple::Text' => '3.20',
6892             'Pod::Simple::TextContent'=> '3.20',
6893             'Pod::Simple::TiedOutFH'=> '3.20',
6894             'Pod::Simple::Transcode'=> '3.20',
6895             'Pod::Simple::TranscodeDumb'=> '3.20',
6896             'Pod::Simple::TranscodeSmart'=> '3.20',
6897             'Pod::Simple::XHTML' => '3.20',
6898             'Pod::Simple::XMLOutStream'=> '3.20',
6899             'Socket' => '2.000',
6900             'Term::ReadLine' => '1.09',
6901             'Unicode::Collate' => '0.89',
6902             'Unicode::Collate::CJK::Korean'=> '0.88',
6903             'Unicode::Collate::Locale'=> '0.89',
6904             'Unicode::Normalize' => '1.14',
6905             'Unicode::UCD' => '0.42',
6906             'XS::APItest' => '0.37',
6907             'arybase' => '0.05',
6908             'attributes' => '0.18',
6909             'charnames' => '1.30',
6910             'feature' => '1.27',
6911             },
6912             removed => {
6913             }
6914             },
6915             5.016 => {
6916             delta_from => 5.015009,
6917             changed => {
6918             'B::Concise' => '0.89',
6919             'B::Deparse' => '1.14',
6920             'Carp' => '1.26',
6921             'Carp::Heavy' => '1.26',
6922             'IO::Socket' => '1.35',
6923             'Module::CoreList' => '2.66',
6924             'PerlIO::scalar' => '0.14',
6925             'Pod::Html' => '1.1502',
6926             'Safe' => '2.31_01',
6927             'Socket' => '2.001',
6928             'Unicode::UCD' => '0.43',
6929             'XS::APItest' => '0.38',
6930             '_charnames' => '1.31',
6931             'attributes' => '0.19',
6932             'strict' => '1.07',
6933             'version' => '0.99',
6934             },
6935             removed => {
6936             }
6937             },
6938             5.016001 => {
6939             delta_from => 5.016,
6940             changed => {
6941             'B' => '1.35',
6942             'B::Deparse' => '1.14_01',
6943             'List::Util' => '1.25',
6944             'List::Util::PP' => '1.25',
6945             'List::Util::XS' => '1.25',
6946             'Module::CoreList' => '2.70',
6947             'PerlIO::scalar' => '0.14_01',
6948             'Scalar::Util' => '1.25',
6949             'Scalar::Util::PP' => '1.25',
6950             're' => '0.19_01',
6951             },
6952             removed => {
6953             }
6954             },
6955             5.016002 => {
6956             delta_from => 5.016001,
6957             changed => {
6958             'Module::CoreList' => '2.76',
6959             },
6960             removed => {
6961             }
6962             },
6963             5.016003 => {
6964             delta_from => 5.016002,
6965             changed => {
6966             'Encode' => '2.44_01',
6967             'Module::CoreList' => '2.76_02',
6968             'XS::APItest' => '0.39',
6969             },
6970             removed => {
6971             }
6972             },
6973             5.017 => {
6974             delta_from => 5.016,
6975             changed => {
6976             'B' => '1.35',
6977             'B::Concise' => '0.90',
6978             'ExtUtils::ParseXS' => '3.17',
6979             'ExtUtils::ParseXS::Utilities'=> '3.17',
6980             'File::DosGlob' => '1.07',
6981             'File::Find' => '1.21',
6982             'File::stat' => '1.06',
6983             'Hash::Util' => '0.12',
6984             'IO::Socket' => '1.34',
6985             'Module::CoreList' => '2.67',
6986             'Pod::Functions' => '1.06',
6987             'Storable' => '2.35',
6988             'XS::APItest' => '0.39',
6989             'diagnostics' => '1.29',
6990             'feature' => '1.28',
6991             'overload' => '1.19',
6992             'utf8' => '1.10',
6993             },
6994             removed => {
6995             'Version::Requirements' => 1,
6996             }
6997             },
6998             5.017001 => {
6999             delta_from => 5.017,
7000             changed => {
7001             'App::Prove' => '3.25',
7002             'App::Prove::State' => '3.25',
7003             'App::Prove::State::Result'=> '3.25',
7004             'App::Prove::State::Result::Test'=> '3.25',
7005             'Archive::Extract' => '0.60',
7006             'Archive::Tar' => '1.88',
7007             'Archive::Tar::Constant'=> '1.88',
7008             'Archive::Tar::File' => '1.88',
7009             'B' => '1.36',
7010             'B::Deparse' => '1.15',
7011             'CPAN::Meta' => '2.120921',
7012             'CPAN::Meta::Converter' => '2.120921',
7013             'CPAN::Meta::Feature' => '2.120921',
7014             'CPAN::Meta::History' => '2.120921',
7015             'CPAN::Meta::Prereqs' => '2.120921',
7016             'CPAN::Meta::Requirements'=> '2.122',
7017             'CPAN::Meta::Spec' => '2.120921',
7018             'CPAN::Meta::Validator' => '2.120921',
7019             'CPAN::Meta::YAML' => '0.008',
7020             'CPANPLUS' => '0.9130',
7021             'CPANPLUS::Config::HomeEnv'=> '0.04',
7022             'CPANPLUS::Internals' => '0.9130',
7023             'CPANPLUS::Shell::Default'=> '0.9130',
7024             'Class::Struct' => '0.64',
7025             'Compress::Raw::Bzip2' => '2.052',
7026             'Compress::Raw::Zlib' => '2.054',
7027             'Compress::Zlib' => '2.052',
7028             'Digest::MD5' => '2.52',
7029             'DynaLoader' => '1.15',
7030             'ExtUtils::CBuilder' => '0.280208',
7031             'ExtUtils::CBuilder::Base'=> '0.280208',
7032             'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
7033             'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
7034             'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
7035             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
7036             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
7037             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
7038             'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
7039             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
7040             'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
7041             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
7042             'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
7043             'Fatal' => '2.11',
7044             'File::DosGlob' => '1.08',
7045             'File::Fetch' => '0.34',
7046             'File::Spec::Unix' => '3.39_03',
7047             'Filter::Util::Call' => '1.45',
7048             'HTTP::Tiny' => '0.022',
7049             'IO' => '1.25_07',
7050             'IO::Compress::Adapter::Bzip2'=> '2.052',
7051             'IO::Compress::Adapter::Deflate'=> '2.052',
7052             'IO::Compress::Adapter::Identity'=> '2.052',
7053             'IO::Compress::Base' => '2.052',
7054             'IO::Compress::Base::Common'=> '2.052',
7055             'IO::Compress::Bzip2' => '2.052',
7056             'IO::Compress::Deflate' => '2.052',
7057             'IO::Compress::Gzip' => '2.052',
7058             'IO::Compress::Gzip::Constants'=> '2.052',
7059             'IO::Compress::RawDeflate'=> '2.052',
7060             'IO::Compress::Zip' => '2.052',
7061             'IO::Compress::Zip::Constants'=> '2.052',
7062             'IO::Compress::Zlib::Constants'=> '2.052',
7063             'IO::Compress::Zlib::Extra'=> '2.052',
7064             'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
7065             'IO::Uncompress::Adapter::Identity'=> '2.052',
7066             'IO::Uncompress::Adapter::Inflate'=> '2.052',
7067             'IO::Uncompress::AnyInflate'=> '2.052',
7068             'IO::Uncompress::AnyUncompress'=> '2.052',
7069             'IO::Uncompress::Base' => '2.052',
7070             'IO::Uncompress::Bunzip2'=> '2.052',
7071             'IO::Uncompress::Gunzip'=> '2.052',
7072             'IO::Uncompress::Inflate'=> '2.052',
7073             'IO::Uncompress::RawInflate'=> '2.052',
7074             'IO::Uncompress::Unzip' => '2.052',
7075             'IPC::Cmd' => '0.78',
7076             'List::Util' => '1.25',
7077             'List::Util::XS' => '1.25',
7078             'Locale::Codes' => '3.22',
7079             'Locale::Codes::Constants'=> '3.22',
7080             'Locale::Codes::Country'=> '3.22',
7081             'Locale::Codes::Country_Codes'=> '3.22',
7082             'Locale::Codes::Country_Retired'=> '3.22',
7083             'Locale::Codes::Currency'=> '3.22',
7084             'Locale::Codes::Currency_Codes'=> '3.22',
7085             'Locale::Codes::Currency_Retired'=> '3.22',
7086             'Locale::Codes::LangExt'=> '3.22',
7087             'Locale::Codes::LangExt_Codes'=> '3.22',
7088             'Locale::Codes::LangExt_Retired'=> '3.22',
7089             'Locale::Codes::LangFam'=> '3.22',
7090             'Locale::Codes::LangFam_Codes'=> '3.22',
7091             'Locale::Codes::LangFam_Retired'=> '3.22',
7092             'Locale::Codes::LangVar'=> '3.22',
7093             'Locale::Codes::LangVar_Codes'=> '3.22',
7094             'Locale::Codes::LangVar_Retired'=> '3.22',
7095             'Locale::Codes::Language'=> '3.22',
7096             'Locale::Codes::Language_Codes'=> '3.22',
7097             'Locale::Codes::Language_Retired'=> '3.22',
7098             'Locale::Codes::Script' => '3.22',
7099             'Locale::Codes::Script_Codes'=> '3.22',
7100             'Locale::Codes::Script_Retired'=> '3.22',
7101             'Locale::Country' => '3.22',
7102             'Locale::Currency' => '3.22',
7103             'Locale::Language' => '3.22',
7104             'Locale::Script' => '3.22',
7105             'Memoize' => '1.03',
7106             'Memoize::AnyDBM_File' => '1.03',
7107             'Memoize::Expire' => '1.03',
7108             'Memoize::ExpireFile' => '1.03',
7109             'Memoize::ExpireTest' => '1.03',
7110             'Memoize::NDBM_File' => '1.03',
7111             'Memoize::SDBM_File' => '1.03',
7112             'Memoize::Storable' => '1.03',
7113             'Module::Build' => '0.40',
7114             'Module::Build::Base' => '0.40',
7115             'Module::Build::Compat' => '0.40',
7116             'Module::Build::Config' => '0.40',
7117             'Module::Build::Cookbook'=> '0.40',
7118             'Module::Build::Dumper' => '0.40',
7119             'Module::Build::ModuleInfo'=> '0.40',
7120             'Module::Build::Notes' => '0.40',
7121             'Module::Build::PPMMaker'=> '0.40',
7122             'Module::Build::Platform::Amiga'=> '0.40',
7123             'Module::Build::Platform::Default'=> '0.40',
7124             'Module::Build::Platform::EBCDIC'=> '0.40',
7125             'Module::Build::Platform::MPEiX'=> '0.40',
7126             'Module::Build::Platform::MacOS'=> '0.40',
7127             'Module::Build::Platform::RiscOS'=> '0.40',
7128             'Module::Build::Platform::Unix'=> '0.40',
7129             'Module::Build::Platform::VMS'=> '0.40',
7130             'Module::Build::Platform::VOS'=> '0.40',
7131             'Module::Build::Platform::Windows'=> '0.40',
7132             'Module::Build::Platform::aix'=> '0.40',
7133             'Module::Build::Platform::cygwin'=> '0.40',
7134             'Module::Build::Platform::darwin'=> '0.40',
7135             'Module::Build::Platform::os2'=> '0.40',
7136             'Module::Build::PodParser'=> '0.40',
7137             'Module::CoreList' => '2.68',
7138             'Module::Load::Conditional'=> '0.50',
7139             'Object::Accessor' => '0.44',
7140             'POSIX' => '1.31',
7141             'Params::Check' => '0.36',
7142             'Parse::CPAN::Meta' => '1.4404',
7143             'PerlIO::mmap' => '0.011',
7144             'PerlIO::via::QuotedPrint'=> '0.07',
7145             'Pod::Html' => '1.16',
7146             'Pod::Man' => '2.26',
7147             'Pod::Text' => '3.16',
7148             'Safe' => '2.33_01',
7149             'Scalar::Util' => '1.25',
7150             'Search::Dict' => '1.07',
7151             'Storable' => '2.36',
7152             'TAP::Base' => '3.25',
7153             'TAP::Formatter::Base' => '3.25',
7154             'TAP::Formatter::Color' => '3.25',
7155             'TAP::Formatter::Console'=> '3.25',
7156             'TAP::Formatter::Console::ParallelSession'=> '3.25',
7157             'TAP::Formatter::Console::Session'=> '3.25',
7158             'TAP::Formatter::File' => '3.25',
7159             'TAP::Formatter::File::Session'=> '3.25',
7160             'TAP::Formatter::Session'=> '3.25',
7161             'TAP::Harness' => '3.25',
7162             'TAP::Object' => '3.25',
7163             'TAP::Parser' => '3.25',
7164             'TAP::Parser::Aggregator'=> '3.25',
7165             'TAP::Parser::Grammar' => '3.25',
7166             'TAP::Parser::Iterator' => '3.25',
7167             'TAP::Parser::Iterator::Array'=> '3.25',
7168             'TAP::Parser::Iterator::Process'=> '3.25',
7169             'TAP::Parser::Iterator::Stream'=> '3.25',
7170             'TAP::Parser::IteratorFactory'=> '3.25',
7171             'TAP::Parser::Multiplexer'=> '3.25',
7172             'TAP::Parser::Result' => '3.25',
7173             'TAP::Parser::Result::Bailout'=> '3.25',
7174             'TAP::Parser::Result::Comment'=> '3.25',
7175             'TAP::Parser::Result::Plan'=> '3.25',
7176             'TAP::Parser::Result::Pragma'=> '3.25',
7177             'TAP::Parser::Result::Test'=> '3.25',
7178             'TAP::Parser::Result::Unknown'=> '3.25',
7179             'TAP::Parser::Result::Version'=> '3.25',
7180             'TAP::Parser::Result::YAML'=> '3.25',
7181             'TAP::Parser::ResultFactory'=> '3.25',
7182             'TAP::Parser::Scheduler'=> '3.25',
7183             'TAP::Parser::Scheduler::Job'=> '3.25',
7184             'TAP::Parser::Scheduler::Spinner'=> '3.25',
7185             'TAP::Parser::Source' => '3.25',
7186             'TAP::Parser::SourceHandler'=> '3.25',
7187             'TAP::Parser::SourceHandler::Executable'=> '3.25',
7188             'TAP::Parser::SourceHandler::File'=> '3.25',
7189             'TAP::Parser::SourceHandler::Handle'=> '3.25',
7190             'TAP::Parser::SourceHandler::Perl'=> '3.25',
7191             'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7192             'TAP::Parser::Utils' => '3.25',
7193             'TAP::Parser::YAMLish::Reader'=> '3.25',
7194             'TAP::Parser::YAMLish::Writer'=> '3.25',
7195             'Term::ANSIColor' => '3.02',
7196             'Test::Harness' => '3.25',
7197             'Unicode' => '6.2.0',
7198             'Unicode::UCD' => '0.44',
7199             'XS::APItest' => '0.40',
7200             '_charnames' => '1.32',
7201             'attributes' => '0.2',
7202             'autodie' => '2.11',
7203             'autodie::exception' => '2.11',
7204             'autodie::exception::system'=> '2.11',
7205             'autodie::hints' => '2.11',
7206             'bigint' => '0.30',
7207             'charnames' => '1.32',
7208             'feature' => '1.29',
7209             'inc::latest' => '0.40',
7210             'perlfaq' => '5.0150040',
7211             're' => '0.20',
7212             },
7213             removed => {
7214             'List::Util::PP' => 1,
7215             'Scalar::Util::PP' => 1,
7216             }
7217             },
7218             5.017002 => {
7219             delta_from => 5.017001,
7220             changed => {
7221             'App::Prove' => '3.25_01',
7222             'App::Prove::State' => '3.25_01',
7223             'App::Prove::State::Result'=> '3.25_01',
7224             'App::Prove::State::Result::Test'=> '3.25_01',
7225             'B::Concise' => '0.91',
7226             'Compress::Raw::Bzip2' => '2.05201',
7227             'Compress::Raw::Zlib' => '2.05401',
7228             'Exporter' => '5.67',
7229             'Exporter::Heavy' => '5.67',
7230             'Fatal' => '2.12',
7231             'File::Fetch' => '0.36',
7232             'File::stat' => '1.07',
7233             'IO' => '1.25_08',
7234             'IO::Socket' => '1.35',
7235             'Module::CoreList' => '2.69',
7236             'PerlIO::scalar' => '0.15',
7237             'Socket' => '2.002',
7238             'Storable' => '2.37',
7239             'TAP::Base' => '3.25_01',
7240             'TAP::Formatter::Base' => '3.25_01',
7241             'TAP::Formatter::Color' => '3.25_01',
7242             'TAP::Formatter::Console'=> '3.25_01',
7243             'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7244             'TAP::Formatter::Console::Session'=> '3.25_01',
7245             'TAP::Formatter::File' => '3.25_01',
7246             'TAP::Formatter::File::Session'=> '3.25_01',
7247             'TAP::Formatter::Session'=> '3.25_01',
7248             'TAP::Harness' => '3.25_01',
7249             'TAP::Object' => '3.25_01',
7250             'TAP::Parser' => '3.25_01',
7251             'TAP::Parser::Aggregator'=> '3.25_01',
7252             'TAP::Parser::Grammar' => '3.25_01',
7253             'TAP::Parser::Iterator' => '3.25_01',
7254             'TAP::Parser::Iterator::Array'=> '3.25_01',
7255             'TAP::Parser::Iterator::Process'=> '3.25_01',
7256             'TAP::Parser::Iterator::Stream'=> '3.25_01',
7257             'TAP::Parser::IteratorFactory'=> '3.25_01',
7258             'TAP::Parser::Multiplexer'=> '3.25_01',
7259             'TAP::Parser::Result' => '3.25_01',
7260             'TAP::Parser::Result::Bailout'=> '3.25_01',
7261             'TAP::Parser::Result::Comment'=> '3.25_01',
7262             'TAP::Parser::Result::Plan'=> '3.25_01',
7263             'TAP::Parser::Result::Pragma'=> '3.25_01',
7264             'TAP::Parser::Result::Test'=> '3.25_01',
7265             'TAP::Parser::Result::Unknown'=> '3.25_01',
7266             'TAP::Parser::Result::Version'=> '3.25_01',
7267             'TAP::Parser::Result::YAML'=> '3.25_01',
7268             'TAP::Parser::ResultFactory'=> '3.25_01',
7269             'TAP::Parser::Scheduler'=> '3.25_01',
7270             'TAP::Parser::Scheduler::Job'=> '3.25_01',
7271             'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7272             'TAP::Parser::Source' => '3.25_01',
7273             'TAP::Parser::SourceHandler'=> '3.25_01',
7274             'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7275             'TAP::Parser::SourceHandler::File'=> '3.25_01',
7276             'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7277             'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7278             'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7279             'TAP::Parser::Utils' => '3.25_01',
7280             'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7281             'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7282             'Test::Harness' => '3.25_01',
7283             'Tie::StdHandle' => '4.3',
7284             'XS::APItest' => '0.41',
7285             'autodie' => '2.12',
7286             'autodie::exception' => '2.12',
7287             'autodie::exception::system'=> '2.12',
7288             'autodie::hints' => '2.12',
7289             'diagnostics' => '1.30',
7290             'overload' => '1.20',
7291             're' => '0.21',
7292             'vars' => '1.03',
7293             },
7294             removed => {
7295             }
7296             },
7297             5.017003 => {
7298             delta_from => 5.017002,
7299             changed => {
7300             'B' => '1.37',
7301             'B::Concise' => '0.92',
7302             'B::Debug' => '1.18',
7303             'B::Deparse' => '1.16',
7304             'CGI' => '3.60',
7305             'Compress::Raw::Bzip2' => '2.055',
7306             'Compress::Raw::Zlib' => '2.056',
7307             'Compress::Zlib' => '2.055',
7308             'Data::Dumper' => '2.135_07',
7309             'Devel::Peek' => '1.09',
7310             'Encode' => '2.47',
7311             'Encode::Alias' => '2.16',
7312             'Encode::GSM0338' => '2.02',
7313             'Encode::Unicode::UTF7' => '2.06',
7314             'IO::Compress::Adapter::Bzip2'=> '2.055',
7315             'IO::Compress::Adapter::Deflate'=> '2.055',
7316             'IO::Compress::Adapter::Identity'=> '2.055',
7317             'IO::Compress::Base' => '2.055',
7318             'IO::Compress::Base::Common'=> '2.055',
7319             'IO::Compress::Bzip2' => '2.055',
7320             'IO::Compress::Deflate' => '2.055',
7321             'IO::Compress::Gzip' => '2.055',
7322             'IO::Compress::Gzip::Constants'=> '2.055',
7323             'IO::Compress::RawDeflate'=> '2.055',
7324             'IO::Compress::Zip' => '2.055',
7325             'IO::Compress::Zip::Constants'=> '2.055',
7326             'IO::Compress::Zlib::Constants'=> '2.055',
7327             'IO::Compress::Zlib::Extra'=> '2.055',
7328             'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7329             'IO::Uncompress::Adapter::Identity'=> '2.055',
7330             'IO::Uncompress::Adapter::Inflate'=> '2.055',
7331             'IO::Uncompress::AnyInflate'=> '2.055',
7332             'IO::Uncompress::AnyUncompress'=> '2.055',
7333             'IO::Uncompress::Base' => '2.055',
7334             'IO::Uncompress::Bunzip2'=> '2.055',
7335             'IO::Uncompress::Gunzip'=> '2.055',
7336             'IO::Uncompress::Inflate'=> '2.055',
7337             'IO::Uncompress::RawInflate'=> '2.055',
7338             'IO::Uncompress::Unzip' => '2.055',
7339             'Module::Build' => '0.4003',
7340             'Module::Build::Base' => '0.4003',
7341             'Module::Build::Compat' => '0.4003',
7342             'Module::Build::Config' => '0.4003',
7343             'Module::Build::Cookbook'=> '0.4003',
7344             'Module::Build::Dumper' => '0.4003',
7345             'Module::Build::ModuleInfo'=> '0.4003',
7346             'Module::Build::Notes' => '0.4003',
7347             'Module::Build::PPMMaker'=> '0.4003',
7348             'Module::Build::Platform::Amiga'=> '0.4003',
7349             'Module::Build::Platform::Default'=> '0.4003',
7350             'Module::Build::Platform::EBCDIC'=> '0.4003',
7351             'Module::Build::Platform::MPEiX'=> '0.4003',
7352             'Module::Build::Platform::MacOS'=> '0.4003',
7353             'Module::Build::Platform::RiscOS'=> '0.4003',
7354             'Module::Build::Platform::Unix'=> '0.4003',
7355             'Module::Build::Platform::VMS'=> '0.4003',
7356             'Module::Build::Platform::VOS'=> '0.4003',
7357             'Module::Build::Platform::Windows'=> '0.4003',
7358             'Module::Build::Platform::aix'=> '0.4003',
7359             'Module::Build::Platform::cygwin'=> '0.4003',
7360             'Module::Build::Platform::darwin'=> '0.4003',
7361             'Module::Build::Platform::os2'=> '0.4003',
7362             'Module::Build::PodParser'=> '0.4003',
7363             'Module::CoreList' => '2.71',
7364             'Module::CoreList::TieHashDelta'=> '2.71',
7365             'Module::Load::Conditional'=> '0.54',
7366             'Module::Metadata' => '1.000011',
7367             'Module::Pluggable' => '4.3',
7368             'Module::Pluggable::Object'=> '4.3',
7369             'Pod::Simple' => '3.23',
7370             'Pod::Simple::BlackBox' => '3.23',
7371             'Pod::Simple::Checker' => '3.23',
7372             'Pod::Simple::Debug' => '3.23',
7373             'Pod::Simple::DumpAsText'=> '3.23',
7374             'Pod::Simple::DumpAsXML'=> '3.23',
7375             'Pod::Simple::HTML' => '3.23',
7376             'Pod::Simple::HTMLBatch'=> '3.23',
7377             'Pod::Simple::LinkSection'=> '3.23',
7378             'Pod::Simple::Methody' => '3.23',
7379             'Pod::Simple::Progress' => '3.23',
7380             'Pod::Simple::PullParser'=> '3.23',
7381             'Pod::Simple::PullParserEndToken'=> '3.23',
7382             'Pod::Simple::PullParserStartToken'=> '3.23',
7383             'Pod::Simple::PullParserTextToken'=> '3.23',
7384             'Pod::Simple::PullParserToken'=> '3.23',
7385             'Pod::Simple::RTF' => '3.23',
7386             'Pod::Simple::Search' => '3.23',
7387             'Pod::Simple::SimpleTree'=> '3.23',
7388             'Pod::Simple::Text' => '3.23',
7389             'Pod::Simple::TextContent'=> '3.23',
7390             'Pod::Simple::TiedOutFH'=> '3.23',
7391             'Pod::Simple::Transcode'=> '3.23',
7392             'Pod::Simple::TranscodeDumb'=> '3.23',
7393             'Pod::Simple::TranscodeSmart'=> '3.23',
7394             'Pod::Simple::XHTML' => '3.23',
7395             'Pod::Simple::XMLOutStream'=> '3.23',
7396             'Socket' => '2.004',
7397             'Storable' => '2.38',
7398             'Sys::Syslog' => '0.31',
7399             'Term::ReadLine' => '1.10',
7400             'Text::Tabs' => '2012.0818',
7401             'Text::Wrap' => '2012.0818',
7402             'Time::Local' => '1.2300',
7403             'Unicode::UCD' => '0.45',
7404             'Win32' => '0.45',
7405             'Win32CORE' => '0.03',
7406             'XS::APItest' => '0.42',
7407             'inc::latest' => '0.4003',
7408             'perlfaq' => '5.0150041',
7409             're' => '0.22',
7410             },
7411             removed => {
7412             }
7413             },
7414             5.017004 => {
7415             delta_from => 5.017003,
7416             changed => {
7417             'Archive::Tar' => '1.90',
7418             'Archive::Tar::Constant'=> '1.90',
7419             'Archive::Tar::File' => '1.90',
7420             'B' => '1.38',
7421             'B::Concise' => '0.93',
7422             'B::Deparse' => '1.17',
7423             'B::Xref' => '1.04',
7424             'CPANPLUS' => '0.9131',
7425             'CPANPLUS::Internals' => '0.9131',
7426             'CPANPLUS::Shell::Default'=> '0.9131',
7427             'DB_File' => '1.827',
7428             'Devel::Peek' => '1.10',
7429             'DynaLoader' => '1.16',
7430             'Errno' => '1.16',
7431             'ExtUtils::ParseXS' => '3.18',
7432             'ExtUtils::ParseXS::Constants'=> '3.18',
7433             'ExtUtils::ParseXS::CountLines'=> '3.18',
7434             'ExtUtils::ParseXS::Utilities'=> '3.18',
7435             'File::Copy' => '2.24',
7436             'File::Find' => '1.22',
7437             'IPC::Open3' => '1.13',
7438             'Locale::Codes' => '3.23',
7439             'Locale::Codes::Constants'=> '3.23',
7440             'Locale::Codes::Country'=> '3.23',
7441             'Locale::Codes::Country_Codes'=> '3.23',
7442             'Locale::Codes::Country_Retired'=> '3.23',
7443             'Locale::Codes::Currency'=> '3.23',
7444             'Locale::Codes::Currency_Codes'=> '3.23',
7445             'Locale::Codes::Currency_Retired'=> '3.23',
7446             'Locale::Codes::LangExt'=> '3.23',
7447             'Locale::Codes::LangExt_Codes'=> '3.23',
7448             'Locale::Codes::LangExt_Retired'=> '3.23',
7449             'Locale::Codes::LangFam'=> '3.23',
7450             'Locale::Codes::LangFam_Codes'=> '3.23',
7451             'Locale::Codes::LangFam_Retired'=> '3.23',
7452             'Locale::Codes::LangVar'=> '3.23',
7453             'Locale::Codes::LangVar_Codes'=> '3.23',
7454             'Locale::Codes::LangVar_Retired'=> '3.23',
7455             'Locale::Codes::Language'=> '3.23',
7456             'Locale::Codes::Language_Codes'=> '3.23',
7457             'Locale::Codes::Language_Retired'=> '3.23',
7458             'Locale::Codes::Script' => '3.23',
7459             'Locale::Codes::Script_Codes'=> '3.23',
7460             'Locale::Codes::Script_Retired'=> '3.23',
7461             'Locale::Country' => '3.23',
7462             'Locale::Currency' => '3.23',
7463             'Locale::Language' => '3.23',
7464             'Locale::Script' => '3.23',
7465             'Math::BigFloat::Trace' => '0.30',
7466             'Math::BigInt::Trace' => '0.30',
7467             'Module::CoreList' => '2.73',
7468             'Module::CoreList::TieHashDelta'=> '2.73',
7469             'Opcode' => '1.24',
7470             'Socket' => '2.006',
7471             'Storable' => '2.39',
7472             'Sys::Syslog' => '0.32',
7473             'Unicode::UCD' => '0.46',
7474             'XS::APItest' => '0.43',
7475             'bignum' => '0.30',
7476             'bigrat' => '0.30',
7477             'constant' => '1.24',
7478             'feature' => '1.30',
7479             'threads::shared' => '1.41',
7480             'version' => '0.9901',
7481             'warnings' => '1.14',
7482             },
7483             removed => {
7484             }
7485             },
7486             5.017005 => {
7487             delta_from => 5.017004,
7488             changed => {
7489             'AutoLoader' => '5.73',
7490             'B' => '1.39',
7491             'B::Deparse' => '1.18',
7492             'CPANPLUS' => '0.9133',
7493             'CPANPLUS::Internals' => '0.9133',
7494             'CPANPLUS::Shell::Default'=> '0.9133',
7495             'Carp' => '1.27',
7496             'Carp::Heavy' => '1.27',
7497             'Data::Dumper' => '2.136',
7498             'Digest::SHA' => '5.72',
7499             'ExtUtils::CBuilder' => '0.280209',
7500             'ExtUtils::CBuilder::Base'=> '0.280209',
7501             'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7502             'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7503             'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7504             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7505             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7506             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7507             'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7508             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7509             'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7510             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7511             'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7512             'File::Copy' => '2.25',
7513             'File::Glob' => '1.18',
7514             'HTTP::Tiny' => '0.024',
7515             'Module::CoreList' => '2.75',
7516             'Module::CoreList::TieHashDelta'=> '2.75',
7517             'PerlIO::encoding' => '0.16',
7518             'Unicode::Collate' => '0.90',
7519             'Unicode::Collate::Locale'=> '0.90',
7520             'Unicode::Normalize' => '1.15',
7521             'Win32CORE' => '0.04',
7522             'XS::APItest' => '0.44',
7523             'attributes' => '0.21',
7524             'bigint' => '0.31',
7525             'bignum' => '0.31',
7526             'bigrat' => '0.31',
7527             'feature' => '1.31',
7528             'threads::shared' => '1.42',
7529             'warnings' => '1.15',
7530             },
7531             removed => {
7532             }
7533             },
7534             5.017006 => {
7535             delta_from => 5.017005,
7536             changed => {
7537             'B' => '1.40',
7538             'B::Concise' => '0.94',
7539             'B::Deparse' => '1.19',
7540             'B::Xref' => '1.05',
7541             'CGI' => '3.63',
7542             'CGI::Util' => '3.62',
7543             'CPAN' => '1.99_51',
7544             'CPANPLUS::Dist::Build' => '0.64',
7545             'CPANPLUS::Dist::Build::Constants'=> '0.64',
7546             'Carp' => '1.28',
7547             'Carp::Heavy' => '1.28',
7548             'Compress::Raw::Bzip2' => '2.058',
7549             'Compress::Raw::Zlib' => '2.058',
7550             'Compress::Zlib' => '2.058',
7551             'Data::Dumper' => '2.137',
7552             'Digest::SHA' => '5.73',
7553             'DynaLoader' => '1.17',
7554             'Env' => '1.04',
7555             'Errno' => '1.17',
7556             'ExtUtils::Manifest' => '1.62',
7557             'ExtUtils::Typemaps' => '3.18',
7558             'ExtUtils::Typemaps::Cmd'=> '3.18',
7559             'ExtUtils::Typemaps::InputMap'=> '3.18',
7560             'ExtUtils::Typemaps::OutputMap'=> '3.18',
7561             'ExtUtils::Typemaps::Type'=> '3.18',
7562             'Fatal' => '2.13',
7563             'File::Find' => '1.23',
7564             'Hash::Util' => '0.13',
7565             'IO::Compress::Adapter::Bzip2'=> '2.058',
7566             'IO::Compress::Adapter::Deflate'=> '2.058',
7567             'IO::Compress::Adapter::Identity'=> '2.058',
7568             'IO::Compress::Base' => '2.058',
7569             'IO::Compress::Base::Common'=> '2.058',
7570             'IO::Compress::Bzip2' => '2.058',
7571             'IO::Compress::Deflate' => '2.058',
7572             'IO::Compress::Gzip' => '2.058',
7573             'IO::Compress::Gzip::Constants'=> '2.058',
7574             'IO::Compress::RawDeflate'=> '2.058',
7575             'IO::Compress::Zip' => '2.058',
7576             'IO::Compress::Zip::Constants'=> '2.058',
7577             'IO::Compress::Zlib::Constants'=> '2.058',
7578             'IO::Compress::Zlib::Extra'=> '2.058',
7579             'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7580             'IO::Uncompress::Adapter::Identity'=> '2.058',
7581             'IO::Uncompress::Adapter::Inflate'=> '2.058',
7582             'IO::Uncompress::AnyInflate'=> '2.058',
7583             'IO::Uncompress::AnyUncompress'=> '2.058',
7584             'IO::Uncompress::Base' => '2.058',
7585             'IO::Uncompress::Bunzip2'=> '2.058',
7586             'IO::Uncompress::Gunzip'=> '2.058',
7587             'IO::Uncompress::Inflate'=> '2.058',
7588             'IO::Uncompress::RawInflate'=> '2.058',
7589             'IO::Uncompress::Unzip' => '2.058',
7590             'Module::CoreList' => '2.78',
7591             'Module::CoreList::TieHashDelta'=> '2.77',
7592             'Module::Pluggable' => '4.5',
7593             'Module::Pluggable::Object'=> '4.5',
7594             'Opcode' => '1.25',
7595             'Sys::Hostname' => '1.17',
7596             'Term::UI' => '0.32',
7597             'Thread::Queue' => '3.01',
7598             'Tie::Hash::NamedCapture'=> '0.09',
7599             'Unicode::Collate' => '0.93',
7600             'Unicode::Collate::CJK::Korean'=> '0.93',
7601             'Unicode::Collate::Locale'=> '0.93',
7602             'Unicode::Normalize' => '1.16',
7603             'Unicode::UCD' => '0.47',
7604             'XS::APItest' => '0.46',
7605             '_charnames' => '1.33',
7606             'autodie' => '2.13',
7607             'autodie::exception' => '2.13',
7608             'autodie::exception::system'=> '2.13',
7609             'autodie::hints' => '2.13',
7610             'charnames' => '1.33',
7611             're' => '0.23',
7612             },
7613             removed => {
7614             }
7615             },
7616             5.017007 => {
7617             delta_from => 5.017006,
7618             changed => {
7619             'B' => '1.41',
7620             'CPANPLUS::Dist::Build' => '0.68',
7621             'CPANPLUS::Dist::Build::Constants'=> '0.68',
7622             'Compress::Raw::Bzip2' => '2.059',
7623             'Compress::Raw::Zlib' => '2.059',
7624             'Compress::Zlib' => '2.059',
7625             'Cwd' => '3.39_03',
7626             'Data::Dumper' => '2.139',
7627             'Devel::Peek' => '1.11',
7628             'Digest::SHA' => '5.80',
7629             'DynaLoader' => '1.18',
7630             'English' => '1.06',
7631             'Errno' => '1.18',
7632             'ExtUtils::Command::MM' => '6.64',
7633             'ExtUtils::Liblist' => '6.64',
7634             'ExtUtils::Liblist::Kid'=> '6.64',
7635             'ExtUtils::MM' => '6.64',
7636             'ExtUtils::MM_AIX' => '6.64',
7637             'ExtUtils::MM_Any' => '6.64',
7638             'ExtUtils::MM_BeOS' => '6.64',
7639             'ExtUtils::MM_Cygwin' => '6.64',
7640             'ExtUtils::MM_DOS' => '6.64',
7641             'ExtUtils::MM_Darwin' => '6.64',
7642             'ExtUtils::MM_MacOS' => '6.64',
7643             'ExtUtils::MM_NW5' => '6.64',
7644             'ExtUtils::MM_OS2' => '6.64',
7645             'ExtUtils::MM_QNX' => '6.64',
7646             'ExtUtils::MM_UWIN' => '6.64',
7647             'ExtUtils::MM_Unix' => '6.64',
7648             'ExtUtils::MM_VMS' => '6.64',
7649             'ExtUtils::MM_VOS' => '6.64',
7650             'ExtUtils::MM_Win32' => '6.64',
7651             'ExtUtils::MM_Win95' => '6.64',
7652             'ExtUtils::MY' => '6.64',
7653             'ExtUtils::MakeMaker' => '6.64',
7654             'ExtUtils::MakeMaker::Config'=> '6.64',
7655             'ExtUtils::Mkbootstrap' => '6.64',
7656             'ExtUtils::Mksymlists' => '6.64',
7657             'ExtUtils::testlib' => '6.64',
7658             'File::DosGlob' => '1.09',
7659             'File::Glob' => '1.19',
7660             'GDBM_File' => '1.15',
7661             'IO::Compress::Adapter::Bzip2'=> '2.059',
7662             'IO::Compress::Adapter::Deflate'=> '2.059',
7663             'IO::Compress::Adapter::Identity'=> '2.059',
7664             'IO::Compress::Base' => '2.059',
7665             'IO::Compress::Base::Common'=> '2.059',
7666             'IO::Compress::Bzip2' => '2.059',
7667             'IO::Compress::Deflate' => '2.059',
7668             'IO::Compress::Gzip' => '2.059',
7669             'IO::Compress::Gzip::Constants'=> '2.059',
7670             'IO::Compress::RawDeflate'=> '2.059',
7671             'IO::Compress::Zip' => '2.059',
7672             'IO::Compress::Zip::Constants'=> '2.059',
7673             'IO::Compress::Zlib::Constants'=> '2.059',
7674             'IO::Compress::Zlib::Extra'=> '2.059',
7675             'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7676             'IO::Uncompress::Adapter::Identity'=> '2.059',
7677             'IO::Uncompress::Adapter::Inflate'=> '2.059',
7678             'IO::Uncompress::AnyInflate'=> '2.059',
7679             'IO::Uncompress::AnyUncompress'=> '2.059',
7680             'IO::Uncompress::Base' => '2.059',
7681             'IO::Uncompress::Bunzip2'=> '2.059',
7682             'IO::Uncompress::Gunzip'=> '2.059',
7683             'IO::Uncompress::Inflate'=> '2.059',
7684             'IO::Uncompress::RawInflate'=> '2.059',
7685             'IO::Uncompress::Unzip' => '2.059',
7686             'List::Util' => '1.26',
7687             'List::Util::XS' => '1.26',
7688             'Locale::Codes' => '3.24',
7689             'Locale::Codes::Constants'=> '3.24',
7690             'Locale::Codes::Country'=> '3.24',
7691             'Locale::Codes::Country_Codes'=> '3.24',
7692             'Locale::Codes::Country_Retired'=> '3.24',
7693             'Locale::Codes::Currency'=> '3.24',
7694             'Locale::Codes::Currency_Codes'=> '3.24',
7695             'Locale::Codes::Currency_Retired'=> '3.24',
7696             'Locale::Codes::LangExt'=> '3.24',
7697             'Locale::Codes::LangExt_Codes'=> '3.24',
7698             'Locale::Codes::LangExt_Retired'=> '3.24',
7699             'Locale::Codes::LangFam'=> '3.24',
7700             'Locale::Codes::LangFam_Codes'=> '3.24',
7701             'Locale::Codes::LangFam_Retired'=> '3.24',
7702             'Locale::Codes::LangVar'=> '3.24',
7703             'Locale::Codes::LangVar_Codes'=> '3.24',
7704             'Locale::Codes::LangVar_Retired'=> '3.24',
7705             'Locale::Codes::Language'=> '3.24',
7706             'Locale::Codes::Language_Codes'=> '3.24',
7707             'Locale::Codes::Language_Retired'=> '3.24',
7708             'Locale::Codes::Script' => '3.24',
7709             'Locale::Codes::Script_Codes'=> '3.24',
7710             'Locale::Codes::Script_Retired'=> '3.24',
7711             'Locale::Country' => '3.24',
7712             'Locale::Currency' => '3.24',
7713             'Locale::Language' => '3.24',
7714             'Locale::Maketext' => '1.23',
7715             'Locale::Script' => '3.24',
7716             'Module::CoreList' => '2.79',
7717             'Module::CoreList::TieHashDelta'=> '2.79',
7718             'POSIX' => '1.32',
7719             'Scalar::Util' => '1.26',
7720             'Socket' => '2.006_001',
7721             'Storable' => '2.40',
7722             'Term::ReadLine' => '1.11',
7723             'Unicode::Collate' => '0.96',
7724             'Unicode::Collate::CJK::Stroke'=> '0.94',
7725             'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7726             'Unicode::Collate::Locale'=> '0.96',
7727             'XS::APItest' => '0.48',
7728             'XS::Typemap' => '0.09',
7729             '_charnames' => '1.34',
7730             'charnames' => '1.34',
7731             'feature' => '1.32',
7732             'mro' => '1.10',
7733             'sigtrap' => '1.07',
7734             'sort' => '2.02',
7735             },
7736             removed => {
7737             }
7738             },
7739             5.017008 => {
7740             delta_from => 5.017007,
7741             changed => {
7742             'Archive::Extract' => '0.62',
7743             'B' => '1.42',
7744             'B::Concise' => '0.95',
7745             'Compress::Raw::Bzip2' => '2.060',
7746             'Compress::Raw::Zlib' => '2.060',
7747             'Compress::Zlib' => '2.060',
7748             'Cwd' => '3.40',
7749             'Data::Dumper' => '2.141',
7750             'Digest::SHA' => '5.81',
7751             'ExtUtils::Install' => '1.59',
7752             'File::Fetch' => '0.38',
7753             'File::Path' => '2.09',
7754             'File::Spec' => '3.40',
7755             'File::Spec::Cygwin' => '3.40',
7756             'File::Spec::Epoc' => '3.40',
7757             'File::Spec::Functions' => '3.40',
7758             'File::Spec::Mac' => '3.40',
7759             'File::Spec::OS2' => '3.40',
7760             'File::Spec::Unix' => '3.40',
7761             'File::Spec::VMS' => '3.40',
7762             'File::Spec::Win32' => '3.40',
7763             'HTTP::Tiny' => '0.025',
7764             'Hash::Util' => '0.14',
7765             'I18N::LangTags' => '0.39',
7766             'I18N::LangTags::List' => '0.39',
7767             'I18N::Langinfo' => '0.09',
7768             'IO' => '1.26',
7769             'IO::Compress::Adapter::Bzip2'=> '2.060',
7770             'IO::Compress::Adapter::Deflate'=> '2.060',
7771             'IO::Compress::Adapter::Identity'=> '2.060',
7772             'IO::Compress::Base' => '2.060',
7773             'IO::Compress::Base::Common'=> '2.060',
7774             'IO::Compress::Bzip2' => '2.060',
7775             'IO::Compress::Deflate' => '2.060',
7776             'IO::Compress::Gzip' => '2.060',
7777             'IO::Compress::Gzip::Constants'=> '2.060',
7778             'IO::Compress::RawDeflate'=> '2.060',
7779             'IO::Compress::Zip' => '2.060',
7780             'IO::Compress::Zip::Constants'=> '2.060',
7781             'IO::Compress::Zlib::Constants'=> '2.060',
7782             'IO::Compress::Zlib::Extra'=> '2.060',
7783             'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7784             'IO::Uncompress::Adapter::Identity'=> '2.060',
7785             'IO::Uncompress::Adapter::Inflate'=> '2.060',
7786             'IO::Uncompress::AnyInflate'=> '2.060',
7787             'IO::Uncompress::AnyUncompress'=> '2.060',
7788             'IO::Uncompress::Base' => '2.060',
7789             'IO::Uncompress::Bunzip2'=> '2.060',
7790             'IO::Uncompress::Gunzip'=> '2.060',
7791             'IO::Uncompress::Inflate'=> '2.060',
7792             'IO::Uncompress::RawInflate'=> '2.060',
7793             'IO::Uncompress::Unzip' => '2.060',
7794             'List::Util' => '1.27',
7795             'List::Util::XS' => '1.27',
7796             'Module::CoreList' => '2.80',
7797             'Module::CoreList::TieHashDelta'=> '2.80',
7798             'Pod::Html' => '1.17',
7799             'Pod::LaTeX' => '0.61',
7800             'Pod::Man' => '2.27',
7801             'Pod::Text' => '3.17',
7802             'Pod::Text::Color' => '2.07',
7803             'Pod::Text::Overstrike' => '2.05',
7804             'Pod::Text::Termcap' => '2.07',
7805             'Safe' => '2.34',
7806             'Scalar::Util' => '1.27',
7807             'Socket' => '2.009',
7808             'Term::ANSIColor' => '4.02',
7809             'Test' => '1.26',
7810             'Unicode::Collate' => '0.97',
7811             'XS::APItest' => '0.51',
7812             'XS::Typemap' => '0.10',
7813             '_charnames' => '1.35',
7814             'charnames' => '1.35',
7815             'constant' => '1.25',
7816             'diagnostics' => '1.31',
7817             'threads::shared' => '1.43',
7818             'warnings' => '1.16',
7819             },
7820             removed => {
7821             }
7822             },
7823             5.017009 => {
7824             delta_from => 5.017008,
7825             changed => {
7826             'App::Cpan' => '1.60_02',
7827             'App::Prove' => '3.26',
7828             'App::Prove::State' => '3.26',
7829             'App::Prove::State::Result'=> '3.26',
7830             'App::Prove::State::Result::Test'=> '3.26',
7831             'Archive::Extract' => '0.68',
7832             'Attribute::Handlers' => '0.94',
7833             'B::Lint' => '1.17',
7834             'B::Lint::Debug' => '1.17',
7835             'Benchmark' => '1.14',
7836             'CPAN' => '2.00',
7837             'CPAN::Distribution' => '2.00',
7838             'CPAN::FirstTime' => '5.5304',
7839             'CPAN::Nox' => '5.5001',
7840             'CPANPLUS' => '0.9135',
7841             'CPANPLUS::Backend' => '0.9135',
7842             'CPANPLUS::Backend::RV' => '0.9135',
7843             'CPANPLUS::Config' => '0.9135',
7844             'CPANPLUS::Config::HomeEnv'=> '0.9135',
7845             'CPANPLUS::Configure' => '0.9135',
7846             'CPANPLUS::Configure::Setup'=> '0.9135',
7847             'CPANPLUS::Dist' => '0.9135',
7848             'CPANPLUS::Dist::Autobundle'=> '0.9135',
7849             'CPANPLUS::Dist::Base' => '0.9135',
7850             'CPANPLUS::Dist::Build' => '0.70',
7851             'CPANPLUS::Dist::Build::Constants'=> '0.70',
7852             'CPANPLUS::Dist::MM' => '0.9135',
7853             'CPANPLUS::Dist::Sample'=> '0.9135',
7854             'CPANPLUS::Error' => '0.9135',
7855             'CPANPLUS::Internals' => '0.9135',
7856             'CPANPLUS::Internals::Constants'=> '0.9135',
7857             'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7858             'CPANPLUS::Internals::Extract'=> '0.9135',
7859             'CPANPLUS::Internals::Fetch'=> '0.9135',
7860             'CPANPLUS::Internals::Report'=> '0.9135',
7861             'CPANPLUS::Internals::Search'=> '0.9135',
7862             'CPANPLUS::Internals::Source'=> '0.9135',
7863             'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7864             'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7865             'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7866             'CPANPLUS::Internals::Utils'=> '0.9135',
7867             'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7868             'CPANPLUS::Module' => '0.9135',
7869             'CPANPLUS::Module::Author'=> '0.9135',
7870             'CPANPLUS::Module::Author::Fake'=> '0.9135',
7871             'CPANPLUS::Module::Checksums'=> '0.9135',
7872             'CPANPLUS::Module::Fake'=> '0.9135',
7873             'CPANPLUS::Module::Signature'=> '0.9135',
7874             'CPANPLUS::Selfupdate' => '0.9135',
7875             'CPANPLUS::Shell' => '0.9135',
7876             'CPANPLUS::Shell::Classic'=> '0.9135',
7877             'CPANPLUS::Shell::Default'=> '0.9135',
7878             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7879             'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7880             'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
7881             'Config' => '5.017009',
7882             'Config::Perl::V' => '0.17',
7883             'DBM_Filter' => '0.05',
7884             'Data::Dumper' => '2.142',
7885             'Digest::SHA' => '5.82',
7886             'Encode' => '2.48',
7887             'ExtUtils::Installed' => '1.999003',
7888             'ExtUtils::Manifest' => '1.63',
7889             'ExtUtils::ParseXS::Utilities'=> '3.19',
7890             'ExtUtils::Typemaps' => '3.19',
7891             'File::CheckTree' => '4.42',
7892             'File::DosGlob' => '1.10',
7893             'File::Temp' => '0.22_90',
7894             'Filter::Simple' => '0.89',
7895             'IO' => '1.27',
7896             'Log::Message' => '0.06',
7897             'Log::Message::Config' => '0.06',
7898             'Log::Message::Handlers'=> '0.06',
7899             'Log::Message::Item' => '0.06',
7900             'Log::Message::Simple' => '0.10',
7901             'Math::BigInt' => '1.999',
7902             'Module::CoreList' => '2.82',
7903             'Module::CoreList::TieHashDelta'=> '2.82',
7904             'Module::Load' => '0.24',
7905             'Module::Pluggable' => '4.6',
7906             'Module::Pluggable::Object'=> '4.6',
7907             'OS2::DLL' => '1.05',
7908             'OS2::ExtAttr' => '0.03',
7909             'OS2::Process' => '1.08',
7910             'Object::Accessor' => '0.46',
7911             'PerlIO::scalar' => '0.16',
7912             'Pod::Checker' => '1.60',
7913             'Pod::Find' => '1.60',
7914             'Pod::Html' => '1.18',
7915             'Pod::InputObjects' => '1.60',
7916             'Pod::ParseUtils' => '1.60',
7917             'Pod::Parser' => '1.60',
7918             'Pod::Perldoc' => '3.19',
7919             'Pod::Perldoc::BaseTo' => '3.19',
7920             'Pod::Perldoc::GetOptsOO'=> '3.19',
7921             'Pod::Perldoc::ToANSI' => '3.19',
7922             'Pod::Perldoc::ToChecker'=> '3.19',
7923             'Pod::Perldoc::ToMan' => '3.19',
7924             'Pod::Perldoc::ToNroff' => '3.19',
7925             'Pod::Perldoc::ToPod' => '3.19',
7926             'Pod::Perldoc::ToRtf' => '3.19',
7927             'Pod::Perldoc::ToTerm' => '3.19',
7928             'Pod::Perldoc::ToText' => '3.19',
7929             'Pod::Perldoc::ToTk' => '3.19',
7930             'Pod::Perldoc::ToXml' => '3.19',
7931             'Pod::PlainText' => '2.06',
7932             'Pod::Select' => '1.60',
7933             'Pod::Usage' => '1.61',
7934             'SelfLoader' => '1.21',
7935             'TAP::Base' => '3.26',
7936             'TAP::Formatter::Base' => '3.26',
7937             'TAP::Formatter::Color' => '3.26',
7938             'TAP::Formatter::Console'=> '3.26',
7939             'TAP::Formatter::Console::ParallelSession'=> '3.26',
7940             'TAP::Formatter::Console::Session'=> '3.26',
7941             'TAP::Formatter::File' => '3.26',
7942             'TAP::Formatter::File::Session'=> '3.26',
7943             'TAP::Formatter::Session'=> '3.26',
7944             'TAP::Harness' => '3.26',
7945             'TAP::Object' => '3.26',
7946             'TAP::Parser' => '3.26',
7947             'TAP::Parser::Aggregator'=> '3.26',
7948             'TAP::Parser::Grammar' => '3.26',
7949             'TAP::Parser::Iterator' => '3.26',
7950             'TAP::Parser::Iterator::Array'=> '3.26',
7951             'TAP::Parser::Iterator::Process'=> '3.26',
7952             'TAP::Parser::Iterator::Stream'=> '3.26',
7953             'TAP::Parser::IteratorFactory'=> '3.26',
7954             'TAP::Parser::Multiplexer'=> '3.26',
7955             'TAP::Parser::Result' => '3.26',
7956             'TAP::Parser::Result::Bailout'=> '3.26',
7957             'TAP::Parser::Result::Comment'=> '3.26',
7958             'TAP::Parser::Result::Plan'=> '3.26',
7959             'TAP::Parser::Result::Pragma'=> '3.26',
7960             'TAP::Parser::Result::Test'=> '3.26',
7961             'TAP::Parser::Result::Unknown'=> '3.26',
7962             'TAP::Parser::Result::Version'=> '3.26',
7963             'TAP::Parser::Result::YAML'=> '3.26',
7964             'TAP::Parser::ResultFactory'=> '3.26',
7965             'TAP::Parser::Scheduler'=> '3.26',
7966             'TAP::Parser::Scheduler::Job'=> '3.26',
7967             'TAP::Parser::Scheduler::Spinner'=> '3.26',
7968             'TAP::Parser::Source' => '3.26',
7969             'TAP::Parser::SourceHandler'=> '3.26',
7970             'TAP::Parser::SourceHandler::Executable'=> '3.26',
7971             'TAP::Parser::SourceHandler::File'=> '3.26',
7972             'TAP::Parser::SourceHandler::Handle'=> '3.26',
7973             'TAP::Parser::SourceHandler::Perl'=> '3.26',
7974             'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
7975             'TAP::Parser::Utils' => '3.26',
7976             'TAP::Parser::YAMLish::Reader'=> '3.26',
7977             'TAP::Parser::YAMLish::Writer'=> '3.26',
7978             'Term::UI' => '0.34',
7979             'Test::Harness' => '3.26',
7980             'Text::Soundex' => '3.04',
7981             'Thread::Queue' => '3.02',
7982             'Unicode::UCD' => '0.50',
7983             'Win32' => '0.46',
7984             'Win32API::File' => '0.1201',
7985             '_charnames' => '1.36',
7986             'arybase' => '0.06',
7987             'bigint' => '0.32',
7988             'bignum' => '0.32',
7989             'charnames' => '1.36',
7990             'filetest' => '1.03',
7991             'locale' => '1.02',
7992             'overload' => '1.21',
7993             'warnings' => '1.17',
7994             },
7995             removed => {
7996             }
7997             },
7998             5.017010 => {
7999             delta_from => 5.017009,
8000             changed => {
8001             'Benchmark' => '1.15',
8002             'Config' => '5.017009',
8003             'Data::Dumper' => '2.145',
8004             'Digest::SHA' => '5.84',
8005             'Encode' => '2.49',
8006             'ExtUtils::Command::MM' => '6.65_01',
8007             'ExtUtils::Liblist' => '6.65_01',
8008             'ExtUtils::Liblist::Kid'=> '6.65_01',
8009             'ExtUtils::MM' => '6.65_01',
8010             'ExtUtils::MM_AIX' => '6.65_01',
8011             'ExtUtils::MM_Any' => '6.65_01',
8012             'ExtUtils::MM_BeOS' => '6.65_01',
8013             'ExtUtils::MM_Cygwin' => '6.65_01',
8014             'ExtUtils::MM_DOS' => '6.65_01',
8015             'ExtUtils::MM_Darwin' => '6.65_01',
8016             'ExtUtils::MM_MacOS' => '6.65_01',
8017             'ExtUtils::MM_NW5' => '6.65_01',
8018             'ExtUtils::MM_OS2' => '6.65_01',
8019             'ExtUtils::MM_QNX' => '6.65_01',
8020             'ExtUtils::MM_UWIN' => '6.65_01',
8021             'ExtUtils::MM_Unix' => '6.65_01',
8022             'ExtUtils::MM_VMS' => '6.65_01',
8023             'ExtUtils::MM_VOS' => '6.65_01',
8024             'ExtUtils::MM_Win32' => '6.65_01',
8025             'ExtUtils::MM_Win95' => '6.65_01',
8026             'ExtUtils::MY' => '6.65_01',
8027             'ExtUtils::MakeMaker' => '6.65_01',
8028             'ExtUtils::MakeMaker::Config'=> '6.65_01',
8029             'ExtUtils::Mkbootstrap' => '6.65_01',
8030             'ExtUtils::Mksymlists' => '6.65_01',
8031             'ExtUtils::testlib' => '6.65_01',
8032             'File::Copy' => '2.26',
8033             'File::Temp' => '0.23',
8034             'Getopt::Long' => '2.39',
8035             'Hash::Util' => '0.15',
8036             'I18N::Langinfo' => '0.10',
8037             'IPC::Cmd' => '0.80',
8038             'JSON::PP' => '2.27202',
8039             'Locale::Codes' => '3.25',
8040             'Locale::Codes::Constants'=> '3.25',
8041             'Locale::Codes::Country'=> '3.25',
8042             'Locale::Codes::Country_Codes'=> '3.25',
8043             'Locale::Codes::Country_Retired'=> '3.25',
8044             'Locale::Codes::Currency'=> '3.25',
8045             'Locale::Codes::Currency_Codes'=> '3.25',
8046             'Locale::Codes::Currency_Retired'=> '3.25',
8047             'Locale::Codes::LangExt'=> '3.25',
8048             'Locale::Codes::LangExt_Codes'=> '3.25',
8049             'Locale::Codes::LangExt_Retired'=> '3.25',
8050             'Locale::Codes::LangFam'=> '3.25',
8051             'Locale::Codes::LangFam_Codes'=> '3.25',
8052             'Locale::Codes::LangFam_Retired'=> '3.25',
8053             'Locale::Codes::LangVar'=> '3.25',
8054             'Locale::Codes::LangVar_Codes'=> '3.25',
8055             'Locale::Codes::LangVar_Retired'=> '3.25',
8056             'Locale::Codes::Language'=> '3.25',
8057             'Locale::Codes::Language_Codes'=> '3.25',
8058             'Locale::Codes::Language_Retired'=> '3.25',
8059             'Locale::Codes::Script' => '3.25',
8060             'Locale::Codes::Script_Codes'=> '3.25',
8061             'Locale::Codes::Script_Retired'=> '3.25',
8062             'Locale::Country' => '3.25',
8063             'Locale::Currency' => '3.25',
8064             'Locale::Language' => '3.25',
8065             'Locale::Script' => '3.25',
8066             'Math::BigFloat' => '1.998',
8067             'Math::BigFloat::Trace' => '0.32',
8068             'Math::BigInt' => '1.9991',
8069             'Math::BigInt::CalcEmu' => '1.998',
8070             'Math::BigInt::Trace' => '0.32',
8071             'Math::BigRat' => '0.2604',
8072             'Module::CoreList' => '2.84',
8073             'Module::CoreList::TieHashDelta'=> '2.84',
8074             'Module::Pluggable' => '4.7',
8075             'Net::Ping' => '2.41',
8076             'Perl::OSType' => '1.003',
8077             'Pod::Simple' => '3.26',
8078             'Pod::Simple::BlackBox' => '3.26',
8079             'Pod::Simple::Checker' => '3.26',
8080             'Pod::Simple::Debug' => '3.26',
8081             'Pod::Simple::DumpAsText'=> '3.26',
8082             'Pod::Simple::DumpAsXML'=> '3.26',
8083             'Pod::Simple::HTML' => '3.26',
8084             'Pod::Simple::HTMLBatch'=> '3.26',
8085             'Pod::Simple::LinkSection'=> '3.26',
8086             'Pod::Simple::Methody' => '3.26',
8087             'Pod::Simple::Progress' => '3.26',
8088             'Pod::Simple::PullParser'=> '3.26',
8089             'Pod::Simple::PullParserEndToken'=> '3.26',
8090             'Pod::Simple::PullParserStartToken'=> '3.26',
8091             'Pod::Simple::PullParserTextToken'=> '3.26',
8092             'Pod::Simple::PullParserToken'=> '3.26',
8093             'Pod::Simple::RTF' => '3.26',
8094             'Pod::Simple::Search' => '3.26',
8095             'Pod::Simple::SimpleTree'=> '3.26',
8096             'Pod::Simple::Text' => '3.26',
8097             'Pod::Simple::TextContent'=> '3.26',
8098             'Pod::Simple::TiedOutFH'=> '3.26',
8099             'Pod::Simple::Transcode'=> '3.26',
8100             'Pod::Simple::TranscodeDumb'=> '3.26',
8101             'Pod::Simple::TranscodeSmart'=> '3.26',
8102             'Pod::Simple::XHTML' => '3.26',
8103             'Pod::Simple::XMLOutStream'=> '3.26',
8104             'Safe' => '2.35',
8105             'Term::ReadLine' => '1.12',
8106             'Text::ParseWords' => '3.28',
8107             'Tie::File' => '0.99',
8108             'Unicode::UCD' => '0.51',
8109             'Win32' => '0.47',
8110             'bigint' => '0.33',
8111             'bignum' => '0.33',
8112             'bigrat' => '0.33',
8113             'constant' => '1.27',
8114             'perlfaq' => '5.0150042',
8115             'version' => '0.9902',
8116             },
8117             removed => {
8118             }
8119             },
8120             5.017011 => {
8121             delta_from => 5.017010,
8122             changed => {
8123             'App::Cpan' => '1.61',
8124             'B::Deparse' => '1.20',
8125             'Config' => '5.017009',
8126             'Exporter' => '5.68',
8127             'Exporter::Heavy' => '5.68',
8128             'ExtUtils::CBuilder' => '0.280210',
8129             'ExtUtils::Command::MM' => '6.66',
8130             'ExtUtils::Liblist' => '6.66',
8131             'ExtUtils::Liblist::Kid'=> '6.66',
8132             'ExtUtils::MM' => '6.66',
8133             'ExtUtils::MM_AIX' => '6.66',
8134             'ExtUtils::MM_Any' => '6.66',
8135             'ExtUtils::MM_BeOS' => '6.66',
8136             'ExtUtils::MM_Cygwin' => '6.66',
8137             'ExtUtils::MM_DOS' => '6.66',
8138             'ExtUtils::MM_Darwin' => '6.66',
8139             'ExtUtils::MM_MacOS' => '6.66',
8140             'ExtUtils::MM_NW5' => '6.66',
8141             'ExtUtils::MM_OS2' => '6.66',
8142             'ExtUtils::MM_QNX' => '6.66',
8143             'ExtUtils::MM_UWIN' => '6.66',
8144             'ExtUtils::MM_Unix' => '6.66',
8145             'ExtUtils::MM_VMS' => '6.66',
8146             'ExtUtils::MM_VOS' => '6.66',
8147             'ExtUtils::MM_Win32' => '6.66',
8148             'ExtUtils::MM_Win95' => '6.66',
8149             'ExtUtils::MY' => '6.66',
8150             'ExtUtils::MakeMaker' => '6.66',
8151             'ExtUtils::MakeMaker::Config'=> '6.66',
8152             'ExtUtils::Mkbootstrap' => '6.66',
8153             'ExtUtils::Mksymlists' => '6.66',
8154             'ExtUtils::testlib' => '6.66',
8155             'File::Glob' => '1.20',
8156             'IO' => '1.28',
8157             'Module::CoreList' => '2.87',
8158             'Module::CoreList::TieHashDelta'=> '2.87',
8159             'Storable' => '2.41',
8160             'bigint' => '0.34',
8161             'mro' => '1.11',
8162             'overload' => '1.22',
8163             'warnings' => '1.18',
8164             },
8165             removed => {
8166             }
8167             },
8168             5.018000 => {
8169             delta_from => 5.017011,
8170             changed => {
8171             'Carp' => '1.29',
8172             'Carp::Heavy' => '1.29',
8173             'Config' => '5.018000',
8174             'Hash::Util' => '0.16',
8175             'IO::Handle' => '1.34',
8176             'IO::Socket' => '1.36',
8177             'Module::CoreList' => '2.89',
8178             'Module::CoreList::TieHashDelta'=> '2.89',
8179             'Pod::Simple' => '3.28',
8180             'Pod::Simple::BlackBox' => '3.28',
8181             'Pod::Simple::Checker' => '3.28',
8182             'Pod::Simple::Debug' => '3.28',
8183             'Pod::Simple::DumpAsText'=> '3.28',
8184             'Pod::Simple::DumpAsXML'=> '3.28',
8185             'Pod::Simple::HTML' => '3.28',
8186             'Pod::Simple::HTMLBatch'=> '3.28',
8187             'Pod::Simple::LinkSection'=> '3.28',
8188             'Pod::Simple::Methody' => '3.28',
8189             'Pod::Simple::Progress' => '3.28',
8190             'Pod::Simple::PullParser'=> '3.28',
8191             'Pod::Simple::PullParserEndToken'=> '3.28',
8192             'Pod::Simple::PullParserStartToken'=> '3.28',
8193             'Pod::Simple::PullParserTextToken'=> '3.28',
8194             'Pod::Simple::PullParserToken'=> '3.28',
8195             'Pod::Simple::RTF' => '3.28',
8196             'Pod::Simple::Search' => '3.28',
8197             'Pod::Simple::SimpleTree'=> '3.28',
8198             'Pod::Simple::Text' => '3.28',
8199             'Pod::Simple::TextContent'=> '3.28',
8200             'Pod::Simple::TiedOutFH'=> '3.28',
8201             'Pod::Simple::Transcode'=> '3.28',
8202             'Pod::Simple::TranscodeDumb'=> '3.28',
8203             'Pod::Simple::TranscodeSmart'=> '3.28',
8204             'Pod::Simple::XHTML' => '3.28',
8205             'Pod::Simple::XMLOutStream'=> '3.28',
8206             },
8207             removed => {
8208             }
8209             },
8210             5.018001 => {
8211             delta_from => 5.018000,
8212             changed => {
8213             'B' => '1.42_01',
8214             'Config' => '5.018001',
8215             'Digest::SHA' => '5.84_01',
8216             'Module::CoreList' => '2.96',
8217             'Module::CoreList::TieHashDelta'=> '2.96',
8218             'Module::CoreList::Utils'=> '2.96',
8219             },
8220             removed => {
8221             'VMS::Filespec' => 1,
8222             }
8223             },
8224             5.018002 => {
8225             delta_from => 5.018001,
8226             changed => {
8227             'B' => '1.42_02',
8228             'B::Concise' => '0.95_01',
8229             'Config' => '5.018002',
8230             'File::Glob' => '1.20_01',
8231             'Module::CoreList' => '3.03',
8232             'Module::CoreList::TieHashDelta'=> '3.03',
8233             'Module::CoreList::Utils'=> '3.03',
8234             },
8235             },
8236             5.018003 => {
8237             delta_from => 5.018002,
8238             changed => {
8239             'Config' => '5.018003',
8240             'Digest::SHA' => '5.84_02',
8241             'Module::CoreList' => '3.12',
8242             'Module::CoreList::TieHashDelta'=> '3.12',
8243             'Module::CoreList::Utils'=> '3.12',
8244             },
8245             },
8246             5.018004 => {
8247             delta_from => 5.018003,
8248             changed => {
8249             'Config' => '5.018004',
8250             'Module::CoreList' => '3.13',
8251             'Module::CoreList::TieHashDelta'=> '3.13',
8252             'Module::CoreList::Utils'=> '3.13',
8253             },
8254             },
8255             5.019000 => {
8256             delta_from => 5.018000,
8257             changed => {
8258             'Config' => '5.019000',
8259             'Getopt::Std' => '1.08',
8260             'Module::CoreList' => '2.91',
8261             'Module::CoreList::TieHashDelta'=> '2.91',
8262             'Storable' => '2.42',
8263             'feature' => '1.33',
8264             'utf8' => '1.11',
8265             },
8266             removed => {
8267             'Archive::Extract' => 1,
8268             'B::Lint' => 1,
8269             'B::Lint::Debug' => 1,
8270             'CPANPLUS' => 1,
8271             'CPANPLUS::Backend' => 1,
8272             'CPANPLUS::Backend::RV' => 1,
8273             'CPANPLUS::Config' => 1,
8274             'CPANPLUS::Config::HomeEnv'=> 1,
8275             'CPANPLUS::Configure' => 1,
8276             'CPANPLUS::Configure::Setup'=> 1,
8277             'CPANPLUS::Dist' => 1,
8278             'CPANPLUS::Dist::Autobundle'=> 1,
8279             'CPANPLUS::Dist::Base' => 1,
8280             'CPANPLUS::Dist::Build' => 1,
8281             'CPANPLUS::Dist::Build::Constants'=> 1,
8282             'CPANPLUS::Dist::MM' => 1,
8283             'CPANPLUS::Dist::Sample'=> 1,
8284             'CPANPLUS::Error' => 1,
8285             'CPANPLUS::Internals' => 1,
8286             'CPANPLUS::Internals::Constants'=> 1,
8287             'CPANPLUS::Internals::Constants::Report'=> 1,
8288             'CPANPLUS::Internals::Extract'=> 1,
8289             'CPANPLUS::Internals::Fetch'=> 1,
8290             'CPANPLUS::Internals::Report'=> 1,
8291             'CPANPLUS::Internals::Search'=> 1,
8292             'CPANPLUS::Internals::Source'=> 1,
8293             'CPANPLUS::Internals::Source::Memory'=> 1,
8294             'CPANPLUS::Internals::Source::SQLite'=> 1,
8295             'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8296             'CPANPLUS::Internals::Utils'=> 1,
8297             'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8298             'CPANPLUS::Module' => 1,
8299             'CPANPLUS::Module::Author'=> 1,
8300             'CPANPLUS::Module::Author::Fake'=> 1,
8301             'CPANPLUS::Module::Checksums'=> 1,
8302             'CPANPLUS::Module::Fake'=> 1,
8303             'CPANPLUS::Module::Signature'=> 1,
8304             'CPANPLUS::Selfupdate' => 1,
8305             'CPANPLUS::Shell' => 1,
8306             'CPANPLUS::Shell::Classic'=> 1,
8307             'CPANPLUS::Shell::Default'=> 1,
8308             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8309             'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8310             'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8311             'Devel::InnerPackage' => 1,
8312             'File::CheckTree' => 1,
8313             'Log::Message' => 1,
8314             'Log::Message::Config' => 1,
8315             'Log::Message::Handlers'=> 1,
8316             'Log::Message::Item' => 1,
8317             'Log::Message::Simple' => 1,
8318             'Module::Pluggable' => 1,
8319             'Module::Pluggable::Object'=> 1,
8320             'Object::Accessor' => 1,
8321             'Pod::LaTeX' => 1,
8322             'Term::UI' => 1,
8323             'Term::UI::History' => 1,
8324             'Text::Soundex' => 1,
8325             }
8326             },
8327             5.019001 => {
8328             delta_from => 5.019000,
8329             changed => {
8330             'App::Prove' => '3.28',
8331             'App::Prove::State' => '3.28',
8332             'App::Prove::State::Result'=> '3.28',
8333             'App::Prove::State::Result::Test'=> '3.28',
8334             'Archive::Tar' => '1.92',
8335             'Archive::Tar::Constant'=> '1.92',
8336             'Archive::Tar::File' => '1.92',
8337             'Attribute::Handlers' => '0.95',
8338             'B' => '1.43',
8339             'B::Concise' => '0.96',
8340             'B::Deparse' => '1.21',
8341             'B::Showlex' => '1.04',
8342             'Benchmark' => '1.16',
8343             'CPAN::Meta' => '2.131560',
8344             'CPAN::Meta::Converter' => '2.131560',
8345             'CPAN::Meta::Feature' => '2.131560',
8346             'CPAN::Meta::History' => '2.131560',
8347             'CPAN::Meta::Prereqs' => '2.131560',
8348             'CPAN::Meta::Spec' => '2.131560',
8349             'CPAN::Meta::Validator' => '2.131560',
8350             'Carp' => '1.30',
8351             'Carp::Heavy' => '1.30',
8352             'Compress::Raw::Bzip2' => '2.061',
8353             'Compress::Raw::Zlib' => '2.061',
8354             'Compress::Zlib' => '2.061',
8355             'Config' => '5.019001',
8356             'Config::Perl::V' => '0.18',
8357             'Cwd' => '3.41',
8358             'DB' => '1.06',
8359             'DB_File' => '1.828',
8360             'Data::Dumper' => '2.146',
8361             'Encode' => '2.51',
8362             'Encode::CN::HZ' => '2.06',
8363             'Encode::GSM0338' => '2.03',
8364             'Encode::Unicode::UTF7' => '2.07',
8365             'ExtUtils::CBuilder::Base'=> '0.280210',
8366             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8367             'ExtUtils::Command::MM' => '6.68',
8368             'ExtUtils::Install' => '1.60',
8369             'ExtUtils::Liblist' => '6.68',
8370             'ExtUtils::Liblist::Kid'=> '6.68',
8371             'ExtUtils::MM' => '6.68',
8372             'ExtUtils::MM_AIX' => '6.68',
8373             'ExtUtils::MM_Any' => '6.68',
8374             'ExtUtils::MM_BeOS' => '6.68',
8375             'ExtUtils::MM_Cygwin' => '6.68',
8376             'ExtUtils::MM_DOS' => '6.68',
8377             'ExtUtils::MM_Darwin' => '6.68',
8378             'ExtUtils::MM_MacOS' => '6.68',
8379             'ExtUtils::MM_NW5' => '6.68',
8380             'ExtUtils::MM_OS2' => '6.68',
8381             'ExtUtils::MM_QNX' => '6.68',
8382             'ExtUtils::MM_UWIN' => '6.68',
8383             'ExtUtils::MM_Unix' => '6.68',
8384             'ExtUtils::MM_VMS' => '6.68',
8385             'ExtUtils::MM_VOS' => '6.68',
8386             'ExtUtils::MM_Win32' => '6.68',
8387             'ExtUtils::MM_Win95' => '6.68',
8388             'ExtUtils::MY' => '6.68',
8389             'ExtUtils::MakeMaker' => '6.68',
8390             'ExtUtils::MakeMaker::Config'=> '6.68',
8391             'ExtUtils::Mkbootstrap' => '6.68',
8392             'ExtUtils::Mksymlists' => '6.68',
8393             'ExtUtils::ParseXS' => '3.19',
8394             'ExtUtils::testlib' => '6.68',
8395             'Fatal' => '2.19',
8396             'File::Copy' => '2.27',
8397             'File::DosGlob' => '1.11',
8398             'File::Fetch' => '0.42',
8399             'File::Find' => '1.24',
8400             'File::Spec' => '3.41',
8401             'File::Spec::Cygwin' => '3.41',
8402             'File::Spec::Epoc' => '3.41',
8403             'File::Spec::Mac' => '3.41',
8404             'File::Spec::OS2' => '3.41',
8405             'File::Spec::Unix' => '3.41',
8406             'File::Spec::VMS' => '3.41',
8407             'File::Spec::Win32' => '3.41',
8408             'File::Temp' => '0.2301',
8409             'Filter::Simple' => '0.90',
8410             'Filter::Util::Call' => '1.49',
8411             'Getopt::Long' => '2.4',
8412             'HTTP::Tiny' => '0.031',
8413             'Hash::Util::FieldHash' => '1.11',
8414             'IO::Compress::Adapter::Bzip2'=> '2.061',
8415             'IO::Compress::Adapter::Deflate'=> '2.061',
8416             'IO::Compress::Adapter::Identity'=> '2.061',
8417             'IO::Compress::Base' => '2.061',
8418             'IO::Compress::Base::Common'=> '2.061',
8419             'IO::Compress::Bzip2' => '2.061',
8420             'IO::Compress::Deflate' => '2.061',
8421             'IO::Compress::Gzip' => '2.061',
8422             'IO::Compress::Gzip::Constants'=> '2.061',
8423             'IO::Compress::RawDeflate'=> '2.061',
8424             'IO::Compress::Zip' => '2.061',
8425             'IO::Compress::Zip::Constants'=> '2.061',
8426             'IO::Compress::Zlib::Constants'=> '2.061',
8427             'IO::Compress::Zlib::Extra'=> '2.061',
8428             'IO::Handle' => '1.35',
8429             'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8430             'IO::Uncompress::Adapter::Identity'=> '2.061',
8431             'IO::Uncompress::Adapter::Inflate'=> '2.061',
8432             'IO::Uncompress::AnyInflate'=> '2.061',
8433             'IO::Uncompress::AnyUncompress'=> '2.061',
8434             'IO::Uncompress::Base' => '2.061',
8435             'IO::Uncompress::Bunzip2'=> '2.061',
8436             'IO::Uncompress::Gunzip'=> '2.061',
8437             'IO::Uncompress::Inflate'=> '2.061',
8438             'IO::Uncompress::RawInflate'=> '2.061',
8439             'IO::Uncompress::Unzip' => '2.061',
8440             'IPC::Open3' => '1.14',
8441             'Locale::Codes' => '3.26',
8442             'Locale::Codes::Constants'=> '3.26',
8443             'Locale::Codes::Country'=> '3.26',
8444             'Locale::Codes::Country_Codes'=> '3.26',
8445             'Locale::Codes::Country_Retired'=> '3.26',
8446             'Locale::Codes::Currency'=> '3.26',
8447             'Locale::Codes::Currency_Codes'=> '3.26',
8448             'Locale::Codes::Currency_Retired'=> '3.26',
8449             'Locale::Codes::LangExt'=> '3.26',
8450             'Locale::Codes::LangExt_Codes'=> '3.26',
8451             'Locale::Codes::LangExt_Retired'=> '3.26',
8452             'Locale::Codes::LangFam'=> '3.26',
8453             'Locale::Codes::LangFam_Codes'=> '3.26',
8454             'Locale::Codes::LangFam_Retired'=> '3.26',
8455             'Locale::Codes::LangVar'=> '3.26',
8456             'Locale::Codes::LangVar_Codes'=> '3.26',
8457             'Locale::Codes::LangVar_Retired'=> '3.26',
8458             'Locale::Codes::Language'=> '3.26',
8459             'Locale::Codes::Language_Codes'=> '3.26',
8460             'Locale::Codes::Language_Retired'=> '3.26',
8461             'Locale::Codes::Script' => '3.26',
8462             'Locale::Codes::Script_Codes'=> '3.26',
8463             'Locale::Codes::Script_Retired'=> '3.26',
8464             'Locale::Country' => '3.26',
8465             'Locale::Currency' => '3.26',
8466             'Locale::Language' => '3.26',
8467             'Locale::Maketext' => '1.24',
8468             'Locale::Script' => '3.26',
8469             'Math::BigFloat' => '1.999',
8470             'Math::BigInt' => '1.9992',
8471             'Math::BigInt::Calc' => '1.998',
8472             'Math::BigInt::CalcEmu' => '1.9991',
8473             'Math::BigRat' => '0.2606',
8474             'Module::Build' => '0.4005',
8475             'Module::Build::Base' => '0.4005',
8476             'Module::Build::Compat' => '0.4005',
8477             'Module::Build::Config' => '0.4005',
8478             'Module::Build::Cookbook'=> '0.4005',
8479             'Module::Build::Dumper' => '0.4005',
8480             'Module::Build::ModuleInfo'=> '0.4005',
8481             'Module::Build::Notes' => '0.4005',
8482             'Module::Build::PPMMaker'=> '0.4005',
8483             'Module::Build::Platform::Amiga'=> '0.4005',
8484             'Module::Build::Platform::Default'=> '0.4005',
8485             'Module::Build::Platform::EBCDIC'=> '0.4005',
8486             'Module::Build::Platform::MPEiX'=> '0.4005',
8487             'Module::Build::Platform::MacOS'=> '0.4005',
8488             'Module::Build::Platform::RiscOS'=> '0.4005',
8489             'Module::Build::Platform::Unix'=> '0.4005',
8490             'Module::Build::Platform::VMS'=> '0.4005',
8491             'Module::Build::Platform::VOS'=> '0.4005',
8492             'Module::Build::Platform::Windows'=> '0.4005',
8493             'Module::Build::Platform::aix'=> '0.4005',
8494             'Module::Build::Platform::cygwin'=> '0.4005',
8495             'Module::Build::Platform::darwin'=> '0.4005',
8496             'Module::Build::Platform::os2'=> '0.4005',
8497             'Module::Build::PodParser'=> '0.4005',
8498             'Module::CoreList' => '2.92',
8499             'Module::CoreList::TieHashDelta'=> '2.92',
8500             'Module::CoreList::Utils'=> '2.92',
8501             'Module::Metadata' => '1.000014',
8502             'Net::Ping' => '2.42',
8503             'OS2::Process' => '1.09',
8504             'POSIX' => '1.33',
8505             'Pod::Find' => '1.61',
8506             'Pod::Html' => '1.19',
8507             'Pod::InputObjects' => '1.61',
8508             'Pod::ParseUtils' => '1.61',
8509             'Pod::Parser' => '1.61',
8510             'Pod::Perldoc' => '3.20',
8511             'Pod::Perldoc::BaseTo' => '3.20',
8512             'Pod::Perldoc::GetOptsOO'=> '3.20',
8513             'Pod::Perldoc::ToANSI' => '3.20',
8514             'Pod::Perldoc::ToChecker'=> '3.20',
8515             'Pod::Perldoc::ToMan' => '3.20',
8516             'Pod::Perldoc::ToNroff' => '3.20',
8517             'Pod::Perldoc::ToPod' => '3.20',
8518             'Pod::Perldoc::ToRtf' => '3.20',
8519             'Pod::Perldoc::ToTerm' => '3.20',
8520             'Pod::Perldoc::ToText' => '3.20',
8521             'Pod::Perldoc::ToTk' => '3.20',
8522             'Pod::Perldoc::ToXml' => '3.20',
8523             'Pod::Select' => '1.61',
8524             'Pod::Usage' => '1.63',
8525             'Safe' => '2.36',
8526             'Storable' => '2.43',
8527             'Sys::Hostname' => '1.18',
8528             'Sys::Syslog' => '0.33',
8529             'TAP::Base' => '3.28',
8530             'TAP::Formatter::Base' => '3.28',
8531             'TAP::Formatter::Color' => '3.28',
8532             'TAP::Formatter::Console'=> '3.28',
8533             'TAP::Formatter::Console::ParallelSession'=> '3.28',
8534             'TAP::Formatter::Console::Session'=> '3.28',
8535             'TAP::Formatter::File' => '3.28',
8536             'TAP::Formatter::File::Session'=> '3.28',
8537             'TAP::Formatter::Session'=> '3.28',
8538             'TAP::Harness' => '3.28',
8539             'TAP::Object' => '3.28',
8540             'TAP::Parser' => '3.28',
8541             'TAP::Parser::Aggregator'=> '3.28',
8542             'TAP::Parser::Grammar' => '3.28',
8543             'TAP::Parser::Iterator' => '3.28',
8544             'TAP::Parser::Iterator::Array'=> '3.28',
8545             'TAP::Parser::Iterator::Process'=> '3.28',
8546             'TAP::Parser::Iterator::Stream'=> '3.28',
8547             'TAP::Parser::IteratorFactory'=> '3.28',
8548             'TAP::Parser::Multiplexer'=> '3.28',
8549             'TAP::Parser::Result' => '3.28',
8550             'TAP::Parser::Result::Bailout'=> '3.28',
8551             'TAP::Parser::Result::Comment'=> '3.28',
8552             'TAP::Parser::Result::Plan'=> '3.28',
8553             'TAP::Parser::Result::Pragma'=> '3.28',
8554             'TAP::Parser::Result::Test'=> '3.28',
8555             'TAP::Parser::Result::Unknown'=> '3.28',
8556             'TAP::Parser::Result::Version'=> '3.28',
8557             'TAP::Parser::Result::YAML'=> '3.28',
8558             'TAP::Parser::ResultFactory'=> '3.28',
8559             'TAP::Parser::Scheduler'=> '3.28',
8560             'TAP::Parser::Scheduler::Job'=> '3.28',
8561             'TAP::Parser::Scheduler::Spinner'=> '3.28',
8562             'TAP::Parser::Source' => '3.28',
8563             'TAP::Parser::SourceHandler'=> '3.28',
8564             'TAP::Parser::SourceHandler::Executable'=> '3.28',
8565             'TAP::Parser::SourceHandler::File'=> '3.28',
8566             'TAP::Parser::SourceHandler::Handle'=> '3.28',
8567             'TAP::Parser::SourceHandler::Perl'=> '3.28',
8568             'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8569             'TAP::Parser::Utils' => '3.28',
8570             'TAP::Parser::YAMLish::Reader'=> '3.28',
8571             'TAP::Parser::YAMLish::Writer'=> '3.28',
8572             'Term::ReadLine' => '1.13',
8573             'Test::Harness' => '3.28',
8574             'Text::Tabs' => '2013.0523',
8575             'Text::Wrap' => '2013.0523',
8576             'Thread' => '3.04',
8577             'Tie::File' => '1.00',
8578             'Time::Piece' => '1.2002',
8579             'Unicode::Collate' => '0.98',
8580             'Unicode::UCD' => '0.53',
8581             'XS::APItest' => '0.53',
8582             '_charnames' => '1.37',
8583             'autodie' => '2.19',
8584             'autodie::exception' => '2.19',
8585             'autodie::exception::system'=> '2.19',
8586             'autodie::hints' => '2.19',
8587             'autodie::skip' => '2.19',
8588             'bigint' => '0.35',
8589             'charnames' => '1.38',
8590             'encoding' => '2.12',
8591             'inc::latest' => '0.4005',
8592             'mro' => '1.12',
8593             'perlfaq' => '5.0150043',
8594             're' => '0.25',
8595             'threads' => '1.87',
8596             'threads::shared' => '1.44',
8597             'utf8' => '1.12',
8598             },
8599             removed => {
8600             }
8601             },
8602             5.019002 => {
8603             delta_from => 5.019001,
8604             changed => {
8605             'B' => '1.44',
8606             'B::Concise' => '0.98',
8607             'B::Deparse' => '1.22',
8608             'Benchmark' => '1.17',
8609             'Class::Struct' => '0.65',
8610             'Config' => '5.019002',
8611             'DB' => '1.07',
8612             'DBM_Filter' => '0.06',
8613             'DBM_Filter::compress' => '0.03',
8614             'DBM_Filter::encode' => '0.03',
8615             'DBM_Filter::int32' => '0.03',
8616             'DBM_Filter::null' => '0.03',
8617             'DBM_Filter::utf8' => '0.03',
8618             'DB_File' => '1.829',
8619             'Data::Dumper' => '2.147',
8620             'Devel::Peek' => '1.12',
8621             'Digest::MD5' => '2.53',
8622             'Digest::SHA' => '5.85',
8623             'English' => '1.07',
8624             'Errno' => '1.19',
8625             'ExtUtils::Embed' => '1.31',
8626             'ExtUtils::Miniperl' => '1',
8627             'ExtUtils::ParseXS' => '3.21',
8628             'ExtUtils::ParseXS::Constants'=> '3.21',
8629             'ExtUtils::ParseXS::CountLines'=> '3.21',
8630             'ExtUtils::ParseXS::Eval'=> '3.19',
8631             'ExtUtils::ParseXS::Utilities'=> '3.21',
8632             'ExtUtils::Typemaps' => '3.21',
8633             'ExtUtils::Typemaps::Cmd'=> '3.21',
8634             'ExtUtils::Typemaps::InputMap'=> '3.21',
8635             'ExtUtils::Typemaps::OutputMap'=> '3.21',
8636             'ExtUtils::Typemaps::Type'=> '3.21',
8637             'ExtUtils::XSSymSet' => '1.3',
8638             'Fatal' => '2.20',
8639             'File::Basename' => '2.85',
8640             'File::Spec::VMS' => '3.43',
8641             'File::Spec::Win32' => '3.42',
8642             'Getopt::Long' => '2.41',
8643             'Getopt::Std' => '1.09',
8644             'HTTP::Tiny' => '0.034',
8645             'Hash::Util::FieldHash' => '1.12',
8646             'I18N::Langinfo' => '0.11',
8647             'IO::Socket::INET' => '1.34',
8648             'IO::Socket::UNIX' => '1.25',
8649             'IPC::Cmd' => '0.82',
8650             'MIME::Base64' => '3.14',
8651             'Module::CoreList' => '2.94',
8652             'Module::CoreList::TieHashDelta'=> '2.94',
8653             'Module::CoreList::Utils'=> '2.94',
8654             'POSIX' => '1.34',
8655             'Params::Check' => '0.38',
8656             'Parse::CPAN::Meta' => '1.4405',
8657             'Pod::Functions' => '1.07',
8658             'Pod::Html' => '1.2',
8659             'Safe' => '2.37',
8660             'Socket' => '2.010',
8661             'Storable' => '2.45',
8662             'Text::ParseWords' => '3.29',
8663             'Tie::Array' => '1.06',
8664             'Tie::Hash' => '1.05',
8665             'Tie::Scalar' => '1.03',
8666             'Time::Piece' => '1.21',
8667             'Time::Seconds' => '1.21',
8668             'XS::APItest' => '0.54',
8669             'autodie' => '2.20',
8670             'autodie::exception' => '2.20',
8671             'autodie::exception::system'=> '2.20',
8672             'autodie::hints' => '2.20',
8673             'autodie::skip' => '2.20',
8674             'base' => '2.19',
8675             'deprecate' => '0.03',
8676             'if' => '0.0603',
8677             'integer' => '1.01',
8678             'strict' => '1.08',
8679             'subs' => '1.02',
8680             'vmsish' => '1.04',
8681             },
8682             removed => {
8683             }
8684             },
8685             5.019003 => {
8686             delta_from => 5.019002,
8687             changed => {
8688             'B' => '1.45',
8689             'CPAN::Meta' => '2.132140',
8690             'CPAN::Meta::Converter' => '2.132140',
8691             'CPAN::Meta::Feature' => '2.132140',
8692             'CPAN::Meta::History' => '2.132140',
8693             'CPAN::Meta::Prereqs' => '2.132140',
8694             'CPAN::Meta::Spec' => '2.132140',
8695             'CPAN::Meta::Validator' => '2.132140',
8696             'Carp' => '1.31',
8697             'Carp::Heavy' => '1.31',
8698             'Compress::Raw::Bzip2' => '2.062',
8699             'Compress::Raw::Zlib' => '2.062',
8700             'Compress::Zlib' => '2.062',
8701             'Config' => '5.019003',
8702             'Config::Perl::V' => '0.19',
8703             'Cwd' => '3.44',
8704             'Data::Dumper' => '2.148',
8705             'Devel::PPPort' => '3.21',
8706             'Devel::Peek' => '1.13',
8707             'DynaLoader' => '1.19',
8708             'Encode' => '2.52',
8709             'Encode::Alias' => '2.17',
8710             'Encode::Encoding' => '2.06',
8711             'Encode::GSM0338' => '2.04',
8712             'Encode::MIME::Header' => '2.14',
8713             'Encode::Unicode' => '2.08',
8714             'English' => '1.08',
8715             'Exporter' => '5.69',
8716             'Exporter::Heavy' => '5.69',
8717             'ExtUtils::Command::MM' => '6.72',
8718             'ExtUtils::Liblist' => '6.72',
8719             'ExtUtils::Liblist::Kid'=> '6.72',
8720             'ExtUtils::MM' => '6.72',
8721             'ExtUtils::MM_AIX' => '6.72',
8722             'ExtUtils::MM_Any' => '6.72',
8723             'ExtUtils::MM_BeOS' => '6.72',
8724             'ExtUtils::MM_Cygwin' => '6.72',
8725             'ExtUtils::MM_DOS' => '6.72',
8726             'ExtUtils::MM_Darwin' => '6.72',
8727             'ExtUtils::MM_MacOS' => '6.72',
8728             'ExtUtils::MM_NW5' => '6.72',
8729             'ExtUtils::MM_OS2' => '6.72',
8730             'ExtUtils::MM_QNX' => '6.72',
8731             'ExtUtils::MM_UWIN' => '6.72',
8732             'ExtUtils::MM_Unix' => '6.72',
8733             'ExtUtils::MM_VMS' => '6.72',
8734             'ExtUtils::MM_VOS' => '6.72',
8735             'ExtUtils::MM_Win32' => '6.72',
8736             'ExtUtils::MM_Win95' => '6.72',
8737             'ExtUtils::MY' => '6.72',
8738             'ExtUtils::MakeMaker' => '6.72',
8739             'ExtUtils::MakeMaker::Config'=> '6.72',
8740             'ExtUtils::Mkbootstrap' => '6.72',
8741             'ExtUtils::Mksymlists' => '6.72',
8742             'ExtUtils::ParseXS::Eval'=> '3.21',
8743             'ExtUtils::testlib' => '6.72',
8744             'File::Spec' => '3.44',
8745             'File::Spec::Cygwin' => '3.44',
8746             'File::Spec::Epoc' => '3.44',
8747             'File::Spec::Functions' => '3.44',
8748             'File::Spec::Mac' => '3.44',
8749             'File::Spec::OS2' => '3.44',
8750             'File::Spec::Unix' => '3.44',
8751             'File::Spec::VMS' => '3.44',
8752             'File::Spec::Win32' => '3.44',
8753             'Getopt::Std' => '1.10',
8754             'IO::Compress::Adapter::Bzip2'=> '2.062',
8755             'IO::Compress::Adapter::Deflate'=> '2.062',
8756             'IO::Compress::Adapter::Identity'=> '2.062',
8757             'IO::Compress::Base' => '2.062',
8758             'IO::Compress::Base::Common'=> '2.062',
8759             'IO::Compress::Bzip2' => '2.062',
8760             'IO::Compress::Deflate' => '2.062',
8761             'IO::Compress::Gzip' => '2.062',
8762             'IO::Compress::Gzip::Constants'=> '2.062',
8763             'IO::Compress::RawDeflate'=> '2.062',
8764             'IO::Compress::Zip' => '2.062',
8765             'IO::Compress::Zip::Constants'=> '2.062',
8766             'IO::Compress::Zlib::Constants'=> '2.062',
8767             'IO::Compress::Zlib::Extra'=> '2.062',
8768             'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8769             'IO::Uncompress::Adapter::Identity'=> '2.062',
8770             'IO::Uncompress::Adapter::Inflate'=> '2.062',
8771             'IO::Uncompress::AnyInflate'=> '2.062',
8772             'IO::Uncompress::AnyUncompress'=> '2.062',
8773             'IO::Uncompress::Base' => '2.062',
8774             'IO::Uncompress::Bunzip2'=> '2.062',
8775             'IO::Uncompress::Gunzip'=> '2.062',
8776             'IO::Uncompress::Inflate'=> '2.062',
8777             'IO::Uncompress::RawInflate'=> '2.062',
8778             'IO::Uncompress::Unzip' => '2.062',
8779             'IPC::Cmd' => '0.84',
8780             'IPC::Msg' => '2.04',
8781             'IPC::Open3' => '1.15',
8782             'IPC::Semaphore' => '2.04',
8783             'IPC::SharedMem' => '2.04',
8784             'IPC::SysV' => '2.04',
8785             'List::Util' => '1.31',
8786             'List::Util::XS' => '1.31',
8787             'Math::BigFloat::Trace' => '0.36',
8788             'Math::BigInt::Trace' => '0.36',
8789             'Module::Build' => '0.4007',
8790             'Module::Build::Base' => '0.4007',
8791             'Module::Build::Compat' => '0.4007',
8792             'Module::Build::Config' => '0.4007',
8793             'Module::Build::Cookbook'=> '0.4007',
8794             'Module::Build::Dumper' => '0.4007',
8795             'Module::Build::ModuleInfo'=> '0.4007',
8796             'Module::Build::Notes' => '0.4007',
8797             'Module::Build::PPMMaker'=> '0.4007',
8798             'Module::Build::Platform::Default'=> '0.4007',
8799             'Module::Build::Platform::MacOS'=> '0.4007',
8800             'Module::Build::Platform::Unix'=> '0.4007',
8801             'Module::Build::Platform::VMS'=> '0.4007',
8802             'Module::Build::Platform::VOS'=> '0.4007',
8803             'Module::Build::Platform::Windows'=> '0.4007',
8804             'Module::Build::Platform::aix'=> '0.4007',
8805             'Module::Build::Platform::cygwin'=> '0.4007',
8806             'Module::Build::Platform::darwin'=> '0.4007',
8807             'Module::Build::Platform::os2'=> '0.4007',
8808             'Module::Build::PodParser'=> '0.4007',
8809             'Module::CoreList' => '2.97',
8810             'Module::CoreList::TieHashDelta'=> '2.97',
8811             'Module::CoreList::Utils'=> '2.97',
8812             'Net::Cmd' => '2.30',
8813             'Net::Config' => '1.12',
8814             'Net::Domain' => '2.22',
8815             'Net::FTP' => '2.78',
8816             'Net::FTP::dataconn' => '0.12',
8817             'Net::NNTP' => '2.25',
8818             'Net::Netrc' => '2.14',
8819             'Net::POP3' => '2.30',
8820             'Net::SMTP' => '2.32',
8821             'PerlIO' => '1.08',
8822             'Pod::Functions' => '1.08',
8823             'Scalar::Util' => '1.31',
8824             'Socket' => '2.011',
8825             'Storable' => '2.46',
8826             'Time::HiRes' => '1.9726',
8827             'Time::Piece' => '1.22',
8828             'Time::Seconds' => '1.22',
8829             'XS::APItest' => '0.55',
8830             'bigint' => '0.36',
8831             'bignum' => '0.36',
8832             'bigrat' => '0.36',
8833             'constant' => '1.28',
8834             'diagnostics' => '1.32',
8835             'inc::latest' => '0.4007',
8836             'mro' => '1.13',
8837             'parent' => '0.226',
8838             'utf8' => '1.13',
8839             'version' => '0.9903',
8840             },
8841             removed => {
8842             'Module::Build::Platform::Amiga'=> 1,
8843             'Module::Build::Platform::EBCDIC'=> 1,
8844             'Module::Build::Platform::MPEiX'=> 1,
8845             'Module::Build::Platform::RiscOS'=> 1,
8846             }
8847             },
8848             5.019004 => {
8849             delta_from => 5.019003,
8850             changed => {
8851             'B' => '1.46',
8852             'B::Concise' => '0.99',
8853             'B::Deparse' => '1.23',
8854             'CPAN' => '2.03',
8855             'CPAN::Meta' => '2.132620',
8856             'CPAN::Meta::Converter' => '2.132620',
8857             'CPAN::Meta::Feature' => '2.132620',
8858             'CPAN::Meta::History' => '2.132620',
8859             'CPAN::Meta::Prereqs' => '2.132620',
8860             'CPAN::Meta::Requirements'=> '2.123',
8861             'CPAN::Meta::Spec' => '2.132620',
8862             'CPAN::Meta::Validator' => '2.132620',
8863             'Carp' => '1.32',
8864             'Carp::Heavy' => '1.32',
8865             'Config' => '5.019004',
8866             'Data::Dumper' => '2.149',
8867             'Devel::Peek' => '1.14',
8868             'DynaLoader' => '1.20',
8869             'Encode' => '2.55',
8870             'Encode::Alias' => '2.18',
8871             'Encode::CN::HZ' => '2.07',
8872             'Encode::Encoder' => '2.03',
8873             'Encode::Encoding' => '2.07',
8874             'Encode::GSM0338' => '2.05',
8875             'Encode::Guess' => '2.06',
8876             'Encode::JP::JIS7' => '2.05',
8877             'Encode::KR::2022_KR' => '2.03',
8878             'Encode::MIME::Header' => '2.15',
8879             'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8880             'Encode::Unicode' => '2.09',
8881             'Encode::Unicode::UTF7' => '2.08',
8882             'Errno' => '1.20',
8883             'Exporter' => '5.70',
8884             'Exporter::Heavy' => '5.70',
8885             'ExtUtils::CBuilder' => '0.280212',
8886             'ExtUtils::CBuilder::Base'=> '0.280212',
8887             'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8888             'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8889             'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8890             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8891             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8892             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8893             'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8894             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8895             'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8896             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8897             'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8898             'ExtUtils::Command' => '1.18',
8899             'ExtUtils::Command::MM' => '6.76',
8900             'ExtUtils::Liblist' => '6.76',
8901             'ExtUtils::Liblist::Kid'=> '6.76',
8902             'ExtUtils::MM' => '6.76',
8903             'ExtUtils::MM_AIX' => '6.76',
8904             'ExtUtils::MM_Any' => '6.76',
8905             'ExtUtils::MM_BeOS' => '6.76',
8906             'ExtUtils::MM_Cygwin' => '6.76',
8907             'ExtUtils::MM_DOS' => '6.76',
8908             'ExtUtils::MM_Darwin' => '6.76',
8909             'ExtUtils::MM_MacOS' => '6.76',
8910             'ExtUtils::MM_NW5' => '6.76',
8911             'ExtUtils::MM_OS2' => '6.76',
8912             'ExtUtils::MM_QNX' => '6.76',
8913             'ExtUtils::MM_UWIN' => '6.76',
8914             'ExtUtils::MM_Unix' => '6.76',
8915             'ExtUtils::MM_VMS' => '6.76',
8916             'ExtUtils::MM_VOS' => '6.76',
8917             'ExtUtils::MM_Win32' => '6.76',
8918             'ExtUtils::MM_Win95' => '6.76',
8919             'ExtUtils::MY' => '6.76',
8920             'ExtUtils::MakeMaker' => '6.76',
8921             'ExtUtils::MakeMaker::Config'=> '6.76',
8922             'ExtUtils::Mkbootstrap' => '6.76',
8923             'ExtUtils::Mksymlists' => '6.76',
8924             'ExtUtils::ParseXS' => '3.23',
8925             'ExtUtils::ParseXS::Constants'=> '3.23',
8926             'ExtUtils::ParseXS::CountLines'=> '3.23',
8927             'ExtUtils::ParseXS::Eval'=> '3.23',
8928             'ExtUtils::ParseXS::Utilities'=> '3.23',
8929             'ExtUtils::Typemaps' => '3.23',
8930             'ExtUtils::Typemaps::Cmd'=> '3.23',
8931             'ExtUtils::Typemaps::InputMap'=> '3.23',
8932             'ExtUtils::Typemaps::OutputMap'=> '3.23',
8933             'ExtUtils::Typemaps::Type'=> '3.23',
8934             'ExtUtils::testlib' => '6.76',
8935             'Fatal' => '2.21',
8936             'File::Copy' => '2.28',
8937             'File::Find' => '1.25',
8938             'File::Glob' => '1.21',
8939             'FileCache' => '1.09',
8940             'HTTP::Tiny' => '0.035',
8941             'Hash::Util::FieldHash' => '1.13',
8942             'I18N::LangTags' => '0.40',
8943             'IO' => '1.29',
8944             'IO::Socket' => '1.37',
8945             'IPC::Open3' => '1.16',
8946             'JSON::PP' => '2.27202_01',
8947             'List::Util' => '1.32',
8948             'List::Util::XS' => '1.32',
8949             'Locale::Codes' => '3.27',
8950             'Locale::Codes::Constants'=> '3.27',
8951             'Locale::Codes::Country'=> '3.27',
8952             'Locale::Codes::Country_Codes'=> '3.27',
8953             'Locale::Codes::Country_Retired'=> '3.27',
8954             'Locale::Codes::Currency'=> '3.27',
8955             'Locale::Codes::Currency_Codes'=> '3.27',
8956             'Locale::Codes::Currency_Retired'=> '3.27',
8957             'Locale::Codes::LangExt'=> '3.27',
8958             'Locale::Codes::LangExt_Codes'=> '3.27',
8959             'Locale::Codes::LangExt_Retired'=> '3.27',
8960             'Locale::Codes::LangFam'=> '3.27',
8961             'Locale::Codes::LangFam_Codes'=> '3.27',
8962             'Locale::Codes::LangFam_Retired'=> '3.27',
8963             'Locale::Codes::LangVar'=> '3.27',
8964             'Locale::Codes::LangVar_Codes'=> '3.27',
8965             'Locale::Codes::LangVar_Retired'=> '3.27',
8966             'Locale::Codes::Language'=> '3.27',
8967             'Locale::Codes::Language_Codes'=> '3.27',
8968             'Locale::Codes::Language_Retired'=> '3.27',
8969             'Locale::Codes::Script' => '3.27',
8970             'Locale::Codes::Script_Codes'=> '3.27',
8971             'Locale::Codes::Script_Retired'=> '3.27',
8972             'Locale::Country' => '3.27',
8973             'Locale::Currency' => '3.27',
8974             'Locale::Language' => '3.27',
8975             'Locale::Script' => '3.27',
8976             'Math::BigFloat' => '1.9991',
8977             'Math::BigInt' => '1.9993',
8978             'Math::BigInt::FastCalc'=> '0.31',
8979             'Module::CoreList' => '2.99',
8980             'Module::CoreList::TieHashDelta'=> '2.99',
8981             'Module::CoreList::Utils'=> '2.99',
8982             'Module::Load::Conditional'=> '0.58',
8983             'Module::Metadata' => '1.000018',
8984             'Opcode' => '1.26',
8985             'POSIX' => '1.35',
8986             'Parse::CPAN::Meta' => '1.4407',
8987             'Perl::OSType' => '1.005',
8988             'Pod::Html' => '1.21',
8989             'Scalar::Util' => '1.32',
8990             'Socket' => '2.012',
8991             'Storable' => '2.47',
8992             'Term::ReadLine' => '1.14',
8993             'Test::Builder' => '0.98_06',
8994             'Test::Builder::Module' => '0.98_06',
8995             'Test::More' => '0.98_06',
8996             'Test::Simple' => '0.98_06',
8997             'Time::Piece' => '1.23',
8998             'Time::Seconds' => '1.23',
8999             'Unicode::Collate' => '0.99',
9000             'Unicode::UCD' => '0.54',
9001             'XS::APItest' => '0.56',
9002             'XS::Typemap' => '0.11',
9003             '_charnames' => '1.39',
9004             'autodie' => '2.21',
9005             'autodie::exception' => '2.21',
9006             'autodie::exception::system'=> '2.21',
9007             'autodie::hints' => '2.21',
9008             'autodie::skip' => '2.21',
9009             'charnames' => '1.39',
9010             'diagnostics' => '1.33',
9011             'mro' => '1.14',
9012             'parent' => '0.228',
9013             'perlfaq' => '5.0150044',
9014             're' => '0.26',
9015             'version' => '0.9904',
9016             'warnings' => '1.19',
9017             },
9018             removed => {
9019             }
9020             },
9021             5.019005 => {
9022             delta_from => 5.019004,
9023             changed => {
9024             'App::Prove' => '3.29',
9025             'App::Prove::State' => '3.29',
9026             'App::Prove::State::Result'=> '3.29',
9027             'App::Prove::State::Result::Test'=> '3.29',
9028             'CPAN::Meta' => '2.132830',
9029             'CPAN::Meta::Converter' => '2.132830',
9030             'CPAN::Meta::Feature' => '2.132830',
9031             'CPAN::Meta::History' => '2.132830',
9032             'CPAN::Meta::Prereqs' => '2.132830',
9033             'CPAN::Meta::Requirements'=> '2.125',
9034             'CPAN::Meta::Spec' => '2.132830',
9035             'CPAN::Meta::Validator' => '2.132830',
9036             'CPAN::Meta::YAML' => '0.010',
9037             'Config' => '5.019005',
9038             'Cwd' => '3.45',
9039             'ExtUtils::Command::MM' => '6.80',
9040             'ExtUtils::Install' => '1.61',
9041             'ExtUtils::Liblist' => '6.80',
9042             'ExtUtils::Liblist::Kid'=> '6.80',
9043             'ExtUtils::MM' => '6.80',
9044             'ExtUtils::MM_AIX' => '6.80',
9045             'ExtUtils::MM_Any' => '6.80',
9046             'ExtUtils::MM_BeOS' => '6.80',
9047             'ExtUtils::MM_Cygwin' => '6.80',
9048             'ExtUtils::MM_DOS' => '6.80',
9049             'ExtUtils::MM_Darwin' => '6.80',
9050             'ExtUtils::MM_MacOS' => '6.80',
9051             'ExtUtils::MM_NW5' => '6.80',
9052             'ExtUtils::MM_OS2' => '6.80',
9053             'ExtUtils::MM_QNX' => '6.80',
9054             'ExtUtils::MM_UWIN' => '6.80',
9055             'ExtUtils::MM_Unix' => '6.80',
9056             'ExtUtils::MM_VMS' => '6.80',
9057             'ExtUtils::MM_VOS' => '6.80',
9058             'ExtUtils::MM_Win32' => '6.80',
9059             'ExtUtils::MM_Win95' => '6.80',
9060             'ExtUtils::MY' => '6.80',
9061             'ExtUtils::MakeMaker' => '6.80',
9062             'ExtUtils::MakeMaker::Config'=> '6.80',
9063             'ExtUtils::Mkbootstrap' => '6.80',
9064             'ExtUtils::Mksymlists' => '6.80',
9065             'ExtUtils::testlib' => '6.80',
9066             'Fatal' => '2.22',
9067             'File::Fetch' => '0.44',
9068             'File::Glob' => '1.22',
9069             'File::Spec' => '3.45',
9070             'File::Spec::Cygwin' => '3.45',
9071             'File::Spec::Epoc' => '3.45',
9072             'File::Spec::Functions' => '3.45',
9073             'File::Spec::Mac' => '3.45',
9074             'File::Spec::OS2' => '3.45',
9075             'File::Spec::Unix' => '3.45',
9076             'File::Spec::VMS' => '3.45',
9077             'File::Spec::Win32' => '3.45',
9078             'File::Temp' => '0.2304',
9079             'Getopt::Long' => '2.42',
9080             'HTTP::Tiny' => '0.036',
9081             'IPC::Cmd' => '0.84_01',
9082             'JSON::PP' => '2.27203',
9083             'List::Util' => '1.35',
9084             'List::Util::XS' => '1.35',
9085             'Module::CoreList' => '3.00',
9086             'Module::CoreList::TieHashDelta'=> '3.00',
9087             'Module::CoreList::Utils'=> '3.00',
9088             'Module::Metadata' => '1.000019',
9089             'Parse::CPAN::Meta' => '1.4409',
9090             'Perl::OSType' => '1.006',
9091             'PerlIO::scalar' => '0.17',
9092             'Pod::Man' => '2.28',
9093             'Pod::Text' => '3.18',
9094             'Pod::Text::Termcap' => '2.08',
9095             'Scalar::Util' => '1.35',
9096             'TAP::Base' => '3.29',
9097             'TAP::Formatter::Base' => '3.29',
9098             'TAP::Formatter::Color' => '3.29',
9099             'TAP::Formatter::Console'=> '3.29',
9100             'TAP::Formatter::Console::ParallelSession'=> '3.29',
9101             'TAP::Formatter::Console::Session'=> '3.29',
9102             'TAP::Formatter::File' => '3.29',
9103             'TAP::Formatter::File::Session'=> '3.29',
9104             'TAP::Formatter::Session'=> '3.29',
9105             'TAP::Harness' => '3.29',
9106             'TAP::Harness::Env' => '3.29',
9107             'TAP::Object' => '3.29',
9108             'TAP::Parser' => '3.29',
9109             'TAP::Parser::Aggregator'=> '3.29',
9110             'TAP::Parser::Grammar' => '3.29',
9111             'TAP::Parser::Iterator' => '3.29',
9112             'TAP::Parser::Iterator::Array'=> '3.29',
9113             'TAP::Parser::Iterator::Process'=> '3.29',
9114             'TAP::Parser::Iterator::Stream'=> '3.29',
9115             'TAP::Parser::IteratorFactory'=> '3.29',
9116             'TAP::Parser::Multiplexer'=> '3.29',
9117             'TAP::Parser::Result' => '3.29',
9118             'TAP::Parser::Result::Bailout'=> '3.29',
9119             'TAP::Parser::Result::Comment'=> '3.29',
9120             'TAP::Parser::Result::Plan'=> '3.29',
9121             'TAP::Parser::Result::Pragma'=> '3.29',
9122             'TAP::Parser::Result::Test'=> '3.29',
9123             'TAP::Parser::Result::Unknown'=> '3.29',
9124             'TAP::Parser::Result::Version'=> '3.29',
9125             'TAP::Parser::Result::YAML'=> '3.29',
9126             'TAP::Parser::ResultFactory'=> '3.29',
9127             'TAP::Parser::Scheduler'=> '3.29',
9128             'TAP::Parser::Scheduler::Job'=> '3.29',
9129             'TAP::Parser::Scheduler::Spinner'=> '3.29',
9130             'TAP::Parser::Source' => '3.29',
9131             'TAP::Parser::SourceHandler'=> '3.29',
9132             'TAP::Parser::SourceHandler::Executable'=> '3.29',
9133             'TAP::Parser::SourceHandler::File'=> '3.29',
9134             'TAP::Parser::SourceHandler::Handle'=> '3.29',
9135             'TAP::Parser::SourceHandler::Perl'=> '3.29',
9136             'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
9137             'TAP::Parser::YAMLish::Reader'=> '3.29',
9138             'TAP::Parser::YAMLish::Writer'=> '3.29',
9139             'Test::Builder' => '0.99',
9140             'Test::Builder::Module' => '0.99',
9141             'Test::Builder::Tester' => '1.23_002',
9142             'Test::Builder::Tester::Color'=> '1.23_002',
9143             'Test::Harness' => '3.29',
9144             'Test::More' => '0.99',
9145             'Test::Simple' => '0.99',
9146             'Unicode' => '6.3.0',
9147             'Unicode::Normalize' => '1.17',
9148             'Unicode::UCD' => '0.55',
9149             'attributes' => '0.22',
9150             'autodie' => '2.22',
9151             'autodie::exception' => '2.22',
9152             'autodie::exception::system'=> '2.22',
9153             'autodie::hints' => '2.22',
9154             'autodie::skip' => '2.22',
9155             'feature' => '1.34',
9156             'threads' => '1.89',
9157             'warnings' => '1.20',
9158             },
9159             removed => {
9160             'TAP::Parser::Utils' => 1,
9161             }
9162             },
9163             5.019006 => {
9164             delta_from => 5.019005,
9165             changed => {
9166             'App::Prove' => '3.30',
9167             'App::Prove::State' => '3.30',
9168             'App::Prove::State::Result'=> '3.30',
9169             'App::Prove::State::Result::Test'=> '3.30',
9170             'Archive::Tar' => '1.96',
9171             'Archive::Tar::Constant'=> '1.96',
9172             'Archive::Tar::File' => '1.96',
9173             'AutoLoader' => '5.74',
9174             'B' => '1.47',
9175             'B::Concise' => '0.991',
9176             'B::Debug' => '1.19',
9177             'B::Deparse' => '1.24',
9178             'Benchmark' => '1.18',
9179             'Compress::Raw::Bzip2' => '2.063',
9180             'Compress::Raw::Zlib' => '2.063',
9181             'Compress::Zlib' => '2.063',
9182             'Config' => '5.019006',
9183             'DB_File' => '1.831',
9184             'Devel::Peek' => '1.15',
9185             'DynaLoader' => '1.21',
9186             'Errno' => '1.20_01',
9187             'ExtUtils::Command::MM' => '6.82',
9188             'ExtUtils::Liblist' => '6.82',
9189             'ExtUtils::Liblist::Kid'=> '6.82',
9190             'ExtUtils::MM' => '6.82',
9191             'ExtUtils::MM_AIX' => '6.82',
9192             'ExtUtils::MM_Any' => '6.82',
9193             'ExtUtils::MM_BeOS' => '6.82',
9194             'ExtUtils::MM_Cygwin' => '6.82',
9195             'ExtUtils::MM_DOS' => '6.82',
9196             'ExtUtils::MM_Darwin' => '6.82',
9197             'ExtUtils::MM_MacOS' => '6.82',
9198             'ExtUtils::MM_NW5' => '6.82',
9199             'ExtUtils::MM_OS2' => '6.82',
9200             'ExtUtils::MM_QNX' => '6.82',
9201             'ExtUtils::MM_UWIN' => '6.82',
9202             'ExtUtils::MM_Unix' => '6.82',
9203             'ExtUtils::MM_VMS' => '6.82',
9204             'ExtUtils::MM_VOS' => '6.82',
9205             'ExtUtils::MM_Win32' => '6.82',
9206             'ExtUtils::MM_Win95' => '6.82',
9207             'ExtUtils::MY' => '6.82',
9208             'ExtUtils::MakeMaker' => '6.82',
9209             'ExtUtils::MakeMaker::Config'=> '6.82',
9210             'ExtUtils::Mkbootstrap' => '6.82',
9211             'ExtUtils::Mksymlists' => '6.82',
9212             'ExtUtils::testlib' => '6.82',
9213             'File::DosGlob' => '1.12',
9214             'File::Find' => '1.26',
9215             'File::Glob' => '1.23',
9216             'HTTP::Tiny' => '0.038',
9217             'IO' => '1.30',
9218             'IO::Compress::Adapter::Bzip2'=> '2.063',
9219             'IO::Compress::Adapter::Deflate'=> '2.063',
9220             'IO::Compress::Adapter::Identity'=> '2.063',
9221             'IO::Compress::Base' => '2.063',
9222             'IO::Compress::Base::Common'=> '2.063',
9223             'IO::Compress::Bzip2' => '2.063',
9224             'IO::Compress::Deflate' => '2.063',
9225             'IO::Compress::Gzip' => '2.063',
9226             'IO::Compress::Gzip::Constants'=> '2.063',
9227             'IO::Compress::RawDeflate'=> '2.063',
9228             'IO::Compress::Zip' => '2.063',
9229             'IO::Compress::Zip::Constants'=> '2.063',
9230             'IO::Compress::Zlib::Constants'=> '2.063',
9231             'IO::Compress::Zlib::Extra'=> '2.063',
9232             'IO::Select' => '1.22',
9233             'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9234             'IO::Uncompress::Adapter::Identity'=> '2.063',
9235             'IO::Uncompress::Adapter::Inflate'=> '2.063',
9236             'IO::Uncompress::AnyInflate'=> '2.063',
9237             'IO::Uncompress::AnyUncompress'=> '2.063',
9238             'IO::Uncompress::Base' => '2.063',
9239             'IO::Uncompress::Bunzip2'=> '2.063',
9240             'IO::Uncompress::Gunzip'=> '2.063',
9241             'IO::Uncompress::Inflate'=> '2.063',
9242             'IO::Uncompress::RawInflate'=> '2.063',
9243             'IO::Uncompress::Unzip' => '2.063',
9244             'IPC::Cmd' => '0.90',
9245             'Locale::Maketext' => '1.25',
9246             'Module::Build' => '0.4202',
9247             'Module::Build::Base' => '0.4202',
9248             'Module::Build::Compat' => '0.4202',
9249             'Module::Build::Config' => '0.4202',
9250             'Module::Build::Cookbook'=> '0.4202',
9251             'Module::Build::Dumper' => '0.4202',
9252             'Module::Build::ModuleInfo'=> '0.4202',
9253             'Module::Build::Notes' => '0.4202',
9254             'Module::Build::PPMMaker'=> '0.4202',
9255             'Module::Build::Platform::Default'=> '0.4202',
9256             'Module::Build::Platform::MacOS'=> '0.4202',
9257             'Module::Build::Platform::Unix'=> '0.4202',
9258             'Module::Build::Platform::VMS'=> '0.4202',
9259             'Module::Build::Platform::VOS'=> '0.4202',
9260             'Module::Build::Platform::Windows'=> '0.4202',
9261             'Module::Build::Platform::aix'=> '0.4202',
9262             'Module::Build::Platform::cygwin'=> '0.4202',
9263             'Module::Build::Platform::darwin'=> '0.4202',
9264             'Module::Build::Platform::os2'=> '0.4202',
9265             'Module::Build::PodParser'=> '0.4202',
9266             'Module::CoreList' => '3.01',
9267             'Module::CoreList::TieHashDelta'=> '3.01',
9268             'Module::CoreList::Utils'=> '3.01',
9269             'Opcode' => '1.27',
9270             'POSIX' => '1.36',
9271             'Package::Constants' => '0.04',
9272             'PerlIO::scalar' => '0.18',
9273             'PerlIO::via' => '0.13',
9274             'SDBM_File' => '1.10',
9275             'Socket' => '2.013',
9276             'TAP::Base' => '3.30',
9277             'TAP::Formatter::Base' => '3.30',
9278             'TAP::Formatter::Color' => '3.30',
9279             'TAP::Formatter::Console'=> '3.30',
9280             'TAP::Formatter::Console::ParallelSession'=> '3.30',
9281             'TAP::Formatter::Console::Session'=> '3.30',
9282             'TAP::Formatter::File' => '3.30',
9283             'TAP::Formatter::File::Session'=> '3.30',
9284             'TAP::Formatter::Session'=> '3.30',
9285             'TAP::Harness' => '3.30',
9286             'TAP::Harness::Env' => '3.30',
9287             'TAP::Object' => '3.30',
9288             'TAP::Parser' => '3.30',
9289             'TAP::Parser::Aggregator'=> '3.30',
9290             'TAP::Parser::Grammar' => '3.30',
9291             'TAP::Parser::Iterator' => '3.30',
9292             'TAP::Parser::Iterator::Array'=> '3.30',
9293             'TAP::Parser::Iterator::Process'=> '3.30',
9294             'TAP::Parser::Iterator::Stream'=> '3.30',
9295             'TAP::Parser::IteratorFactory'=> '3.30',
9296             'TAP::Parser::Multiplexer'=> '3.30',
9297             'TAP::Parser::Result' => '3.30',
9298             'TAP::Parser::Result::Bailout'=> '3.30',
9299             'TAP::Parser::Result::Comment'=> '3.30',
9300             'TAP::Parser::Result::Plan'=> '3.30',
9301             'TAP::Parser::Result::Pragma'=> '3.30',
9302             'TAP::Parser::Result::Test'=> '3.30',
9303             'TAP::Parser::Result::Unknown'=> '3.30',
9304             'TAP::Parser::Result::Version'=> '3.30',
9305             'TAP::Parser::Result::YAML'=> '3.30',
9306             'TAP::Parser::ResultFactory'=> '3.30',
9307             'TAP::Parser::Scheduler'=> '3.30',
9308             'TAP::Parser::Scheduler::Job'=> '3.30',
9309             'TAP::Parser::Scheduler::Spinner'=> '3.30',
9310             'TAP::Parser::Source' => '3.30',
9311             'TAP::Parser::SourceHandler'=> '3.30',
9312             'TAP::Parser::SourceHandler::Executable'=> '3.30',
9313             'TAP::Parser::SourceHandler::File'=> '3.30',
9314             'TAP::Parser::SourceHandler::Handle'=> '3.30',
9315             'TAP::Parser::SourceHandler::Perl'=> '3.30',
9316             'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9317             'TAP::Parser::YAMLish::Reader'=> '3.30',
9318             'TAP::Parser::YAMLish::Writer'=> '3.30',
9319             'Term::Cap' => '1.15',
9320             'Test::Builder' => '1.001002',
9321             'Test::Builder::Module' => '1.001002',
9322             'Test::Harness' => '3.30',
9323             'Test::More' => '1.001002',
9324             'Test::Simple' => '1.001002',
9325             'Tie::StdHandle' => '4.4',
9326             'Unicode::Collate' => '1.02',
9327             'Unicode::Collate::CJK::Korean'=> '1.02',
9328             'Unicode::Collate::Locale'=> '1.02',
9329             'XS::APItest' => '0.57',
9330             'XS::Typemap' => '0.12',
9331             'arybase' => '0.07',
9332             'bignum' => '0.37',
9333             'constant' => '1.29',
9334             'fields' => '2.17',
9335             'inc::latest' => '0.4202',
9336             'threads' => '1.90',
9337             'threads::shared' => '1.45',
9338             },
9339             removed => {
9340             }
9341             },
9342             5.019007 => {
9343             delta_from => 5.019006,
9344             changed => {
9345             'CGI' => '3.64',
9346             'CGI::Apache' => '1.02',
9347             'CGI::Carp' => '3.64',
9348             'CGI::Cookie' => '1.31',
9349             'CGI::Fast' => '1.10',
9350             'CGI::Pretty' => '3.64',
9351             'CGI::Push' => '1.06',
9352             'CGI::Switch' => '1.02',
9353             'CGI::Util' => '3.64',
9354             'CPAN::Meta' => '2.133380',
9355             'CPAN::Meta::Converter' => '2.133380',
9356             'CPAN::Meta::Feature' => '2.133380',
9357             'CPAN::Meta::History' => '2.133380',
9358             'CPAN::Meta::Prereqs' => '2.133380',
9359             'CPAN::Meta::Spec' => '2.133380',
9360             'CPAN::Meta::Validator' => '2.133380',
9361             'Config' => '5.019007',
9362             'Data::Dumper' => '2.150',
9363             'DynaLoader' => '1.22',
9364             'ExtUtils::Command::MM' => '6.84',
9365             'ExtUtils::Liblist' => '6.84',
9366             'ExtUtils::Liblist::Kid'=> '6.84',
9367             'ExtUtils::MM' => '6.84',
9368             'ExtUtils::MM_AIX' => '6.84',
9369             'ExtUtils::MM_Any' => '6.84',
9370             'ExtUtils::MM_BeOS' => '6.84',
9371             'ExtUtils::MM_Cygwin' => '6.84',
9372             'ExtUtils::MM_DOS' => '6.84',
9373             'ExtUtils::MM_Darwin' => '6.84',
9374             'ExtUtils::MM_MacOS' => '6.84',
9375             'ExtUtils::MM_NW5' => '6.84',
9376             'ExtUtils::MM_OS2' => '6.84',
9377             'ExtUtils::MM_QNX' => '6.84',
9378             'ExtUtils::MM_UWIN' => '6.84',
9379             'ExtUtils::MM_Unix' => '6.84',
9380             'ExtUtils::MM_VMS' => '6.84',
9381             'ExtUtils::MM_VOS' => '6.84',
9382             'ExtUtils::MM_Win32' => '6.84',
9383             'ExtUtils::MM_Win95' => '6.84',
9384             'ExtUtils::MY' => '6.84',
9385             'ExtUtils::MakeMaker' => '6.84',
9386             'ExtUtils::MakeMaker::Config'=> '6.84',
9387             'ExtUtils::Mkbootstrap' => '6.84',
9388             'ExtUtils::Mksymlists' => '6.84',
9389             'ExtUtils::testlib' => '6.84',
9390             'File::Fetch' => '0.46',
9391             'HTTP::Tiny' => '0.039',
9392             'Locale::Codes' => '3.28',
9393             'Locale::Codes::Constants'=> '3.28',
9394             'Locale::Codes::Country'=> '3.28',
9395             'Locale::Codes::Country_Codes'=> '3.28',
9396             'Locale::Codes::Country_Retired'=> '3.28',
9397             'Locale::Codes::Currency'=> '3.28',
9398             'Locale::Codes::Currency_Codes'=> '3.28',
9399             'Locale::Codes::Currency_Retired'=> '3.28',
9400             'Locale::Codes::LangExt'=> '3.28',
9401             'Locale::Codes::LangExt_Codes'=> '3.28',
9402             'Locale::Codes::LangExt_Retired'=> '3.28',
9403             'Locale::Codes::LangFam'=> '3.28',
9404             'Locale::Codes::LangFam_Codes'=> '3.28',
9405             'Locale::Codes::LangFam_Retired'=> '3.28',
9406             'Locale::Codes::LangVar'=> '3.28',
9407             'Locale::Codes::LangVar_Codes'=> '3.28',
9408             'Locale::Codes::LangVar_Retired'=> '3.28',
9409             'Locale::Codes::Language'=> '3.28',
9410             'Locale::Codes::Language_Codes'=> '3.28',
9411             'Locale::Codes::Language_Retired'=> '3.28',
9412             'Locale::Codes::Script' => '3.28',
9413             'Locale::Codes::Script_Codes'=> '3.28',
9414             'Locale::Codes::Script_Retired'=> '3.28',
9415             'Locale::Country' => '3.28',
9416             'Locale::Currency' => '3.28',
9417             'Locale::Language' => '3.28',
9418             'Locale::Script' => '3.28',
9419             'Module::Build' => '0.4203',
9420             'Module::Build::Base' => '0.4203',
9421             'Module::Build::Compat' => '0.4203',
9422             'Module::Build::Config' => '0.4203',
9423             'Module::Build::Cookbook'=> '0.4203',
9424             'Module::Build::Dumper' => '0.4203',
9425             'Module::Build::ModuleInfo'=> '0.4203',
9426             'Module::Build::Notes' => '0.4203',
9427             'Module::Build::PPMMaker'=> '0.4203',
9428             'Module::Build::Platform::Default'=> '0.4203',
9429             'Module::Build::Platform::MacOS'=> '0.4203',
9430             'Module::Build::Platform::Unix'=> '0.4203',
9431             'Module::Build::Platform::VMS'=> '0.4203',
9432             'Module::Build::Platform::VOS'=> '0.4203',
9433             'Module::Build::Platform::Windows'=> '0.4203',
9434             'Module::Build::Platform::aix'=> '0.4203',
9435             'Module::Build::Platform::cygwin'=> '0.4203',
9436             'Module::Build::Platform::darwin'=> '0.4203',
9437             'Module::Build::Platform::os2'=> '0.4203',
9438             'Module::Build::PodParser'=> '0.4203',
9439             'Module::CoreList' => '3.02',
9440             'Module::CoreList::TieHashDelta'=> '3.02',
9441             'Module::CoreList::Utils'=> '3.02',
9442             'POSIX' => '1.37',
9443             'PerlIO::encoding' => '0.17',
9444             'PerlIO::via' => '0.14',
9445             'SDBM_File' => '1.11',
9446             'Storable' => '2.48',
9447             'Time::Piece' => '1.24',
9448             'Time::Seconds' => '1.24',
9449             'Unicode::Collate' => '1.04',
9450             'Win32' => '0.48',
9451             'XS::APItest' => '0.58',
9452             'base' => '2.20',
9453             'constant' => '1.30',
9454             'inc::latest' => '0.4203',
9455             'threads' => '1.91',
9456             },
9457             removed => {
9458             }
9459             },
9460             5.019008 => {
9461             delta_from => 5.019007,
9462             changed => {
9463             'Config' => '5.019008',
9464             'DynaLoader' => '1.24',
9465             'Encode' => '2.57',
9466             'Errno' => '1.20_02',
9467             'ExtUtils::CBuilder' => '0.280213',
9468             'ExtUtils::CBuilder::Base'=> '0.280213',
9469             'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9470             'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9471             'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9472             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9473             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9474             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9475             'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9476             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9477             'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9478             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9479             'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9480             'ExtUtils::Command::MM' => '6.86',
9481             'ExtUtils::Liblist' => '6.86',
9482             'ExtUtils::Liblist::Kid'=> '6.86',
9483             'ExtUtils::MM' => '6.86',
9484             'ExtUtils::MM_AIX' => '6.86',
9485             'ExtUtils::MM_Any' => '6.86',
9486             'ExtUtils::MM_BeOS' => '6.86',
9487             'ExtUtils::MM_Cygwin' => '6.86',
9488             'ExtUtils::MM_DOS' => '6.86',
9489             'ExtUtils::MM_Darwin' => '6.86',
9490             'ExtUtils::MM_MacOS' => '6.86',
9491             'ExtUtils::MM_NW5' => '6.86',
9492             'ExtUtils::MM_OS2' => '6.86',
9493             'ExtUtils::MM_QNX' => '6.86',
9494             'ExtUtils::MM_UWIN' => '6.86',
9495             'ExtUtils::MM_Unix' => '6.86',
9496             'ExtUtils::MM_VMS' => '6.86',
9497             'ExtUtils::MM_VOS' => '6.86',
9498             'ExtUtils::MM_Win32' => '6.86',
9499             'ExtUtils::MM_Win95' => '6.86',
9500             'ExtUtils::MY' => '6.86',
9501             'ExtUtils::MakeMaker' => '6.86',
9502             'ExtUtils::MakeMaker::Config'=> '6.86',
9503             'ExtUtils::Mkbootstrap' => '6.86',
9504             'ExtUtils::Mksymlists' => '6.86',
9505             'ExtUtils::testlib' => '6.86',
9506             'File::Copy' => '2.29',
9507             'Hash::Util::FieldHash' => '1.14',
9508             'IO::Socket::IP' => '0.26',
9509             'IO::Socket::UNIX' => '1.26',
9510             'List::Util' => '1.36',
9511             'List::Util::XS' => '1.36',
9512             'Module::Build' => '0.4204',
9513             'Module::Build::Base' => '0.4204',
9514             'Module::Build::Compat' => '0.4204',
9515             'Module::Build::Config' => '0.4204',
9516             'Module::Build::Cookbook'=> '0.4204',
9517             'Module::Build::Dumper' => '0.4204',
9518             'Module::Build::ModuleInfo'=> '0.4204',
9519             'Module::Build::Notes' => '0.4204',
9520             'Module::Build::PPMMaker'=> '0.4204',
9521             'Module::Build::Platform::Default'=> '0.4204',
9522             'Module::Build::Platform::MacOS'=> '0.4204',
9523             'Module::Build::Platform::Unix'=> '0.4204',
9524             'Module::Build::Platform::VMS'=> '0.4204',
9525             'Module::Build::Platform::VOS'=> '0.4204',
9526             'Module::Build::Platform::Windows'=> '0.4204',
9527             'Module::Build::Platform::aix'=> '0.4204',
9528             'Module::Build::Platform::cygwin'=> '0.4204',
9529             'Module::Build::Platform::darwin'=> '0.4204',
9530             'Module::Build::Platform::os2'=> '0.4204',
9531             'Module::Build::PodParser'=> '0.4204',
9532             'Module::CoreList' => '3.04',
9533             'Module::CoreList::TieHashDelta'=> '3.04',
9534             'Module::CoreList::Utils'=> '3.04',
9535             'Module::Load' => '0.28',
9536             'Module::Load::Conditional'=> '0.60',
9537             'Net::Config' => '1.13',
9538             'Net::FTP::A' => '1.19',
9539             'POSIX' => '1.38_01',
9540             'Perl::OSType' => '1.007',
9541             'PerlIO::encoding' => '0.18',
9542             'Pod::Perldoc' => '3.21',
9543             'Pod::Perldoc::BaseTo' => '3.21',
9544             'Pod::Perldoc::GetOptsOO'=> '3.21',
9545             'Pod::Perldoc::ToANSI' => '3.21',
9546             'Pod::Perldoc::ToChecker'=> '3.21',
9547             'Pod::Perldoc::ToMan' => '3.21',
9548             'Pod::Perldoc::ToNroff' => '3.21',
9549             'Pod::Perldoc::ToPod' => '3.21',
9550             'Pod::Perldoc::ToRtf' => '3.21',
9551             'Pod::Perldoc::ToTerm' => '3.21',
9552             'Pod::Perldoc::ToText' => '3.21',
9553             'Pod::Perldoc::ToTk' => '3.21',
9554             'Pod::Perldoc::ToXml' => '3.21',
9555             'Scalar::Util' => '1.36',
9556             'Time::Piece' => '1.27',
9557             'Time::Seconds' => '1.27',
9558             'Unicode::UCD' => '0.57',
9559             'XS::APItest' => '0.59',
9560             'XSLoader' => '0.17',
9561             'base' => '2.21',
9562             'constant' => '1.31',
9563             'inc::latest' => '0.4204',
9564             'threads::shared' => '1.46',
9565             'version' => '0.9907',
9566             'version::regex' => '0.9907',
9567             'version::vpp' => '0.9907',
9568             'warnings' => '1.21',
9569             },
9570             removed => {
9571             }
9572             },
9573             5.019009 => {
9574             delta_from => 5.019008,
9575             changed => {
9576             'B' => '1.48',
9577             'B::Concise' => '0.992',
9578             'B::Deparse' => '1.25',
9579             'CGI' => '3.65',
9580             'CPAN::Meta::YAML' => '0.011',
9581             'Compress::Raw::Bzip2' => '2.064',
9582             'Compress::Raw::Zlib' => '2.065',
9583             'Compress::Zlib' => '2.064',
9584             'Config' => '5.019009',
9585             'Config::Perl::V' => '0.20',
9586             'Cwd' => '3.47',
9587             'Devel::Peek' => '1.16',
9588             'Digest::SHA' => '5.87',
9589             'DynaLoader' => '1.25',
9590             'English' => '1.09',
9591             'ExtUtils::CBuilder' => '0.280216',
9592             'ExtUtils::CBuilder::Base'=> '0.280216',
9593             'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9594             'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9595             'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9596             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9597             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9598             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9599             'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9600             'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9601             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9602             'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9603             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9604             'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9605             'ExtUtils::Command::MM' => '6.88',
9606             'ExtUtils::Embed' => '1.32',
9607             'ExtUtils::Install' => '1.62',
9608             'ExtUtils::Installed' => '1.999004',
9609             'ExtUtils::Liblist' => '6.88',
9610             'ExtUtils::Liblist::Kid'=> '6.88',
9611             'ExtUtils::MM' => '6.88',
9612             'ExtUtils::MM_AIX' => '6.88',
9613             'ExtUtils::MM_Any' => '6.88',
9614             'ExtUtils::MM_BeOS' => '6.88',
9615             'ExtUtils::MM_Cygwin' => '6.88',
9616             'ExtUtils::MM_DOS' => '6.88',
9617             'ExtUtils::MM_Darwin' => '6.88',
9618             'ExtUtils::MM_MacOS' => '6.88',
9619             'ExtUtils::MM_NW5' => '6.88',
9620             'ExtUtils::MM_OS2' => '6.88',
9621             'ExtUtils::MM_QNX' => '6.88',
9622             'ExtUtils::MM_UWIN' => '6.88',
9623             'ExtUtils::MM_Unix' => '6.88',
9624             'ExtUtils::MM_VMS' => '6.88',
9625             'ExtUtils::MM_VOS' => '6.88',
9626             'ExtUtils::MM_Win32' => '6.88',
9627             'ExtUtils::MM_Win95' => '6.88',
9628             'ExtUtils::MY' => '6.88',
9629             'ExtUtils::MakeMaker' => '6.88',
9630             'ExtUtils::MakeMaker::Config'=> '6.88',
9631             'ExtUtils::Mkbootstrap' => '6.88',
9632             'ExtUtils::Mksymlists' => '6.88',
9633             'ExtUtils::Packlist' => '1.47',
9634             'ExtUtils::testlib' => '6.88',
9635             'Fatal' => '2.23',
9636             'File::Fetch' => '0.48',
9637             'File::Spec' => '3.47',
9638             'File::Spec::Cygwin' => '3.47',
9639             'File::Spec::Epoc' => '3.47',
9640             'File::Spec::Functions' => '3.47',
9641             'File::Spec::Mac' => '3.47',
9642             'File::Spec::OS2' => '3.47',
9643             'File::Spec::Unix' => '3.47',
9644             'File::Spec::VMS' => '3.47',
9645             'File::Spec::Win32' => '3.47',
9646             'HTTP::Tiny' => '0.042',
9647             'IO::Compress::Adapter::Bzip2'=> '2.064',
9648             'IO::Compress::Adapter::Deflate'=> '2.064',
9649             'IO::Compress::Adapter::Identity'=> '2.064',
9650             'IO::Compress::Base' => '2.064',
9651             'IO::Compress::Base::Common'=> '2.064',
9652             'IO::Compress::Bzip2' => '2.064',
9653             'IO::Compress::Deflate' => '2.064',
9654             'IO::Compress::Gzip' => '2.064',
9655             'IO::Compress::Gzip::Constants'=> '2.064',
9656             'IO::Compress::RawDeflate'=> '2.064',
9657             'IO::Compress::Zip' => '2.064',
9658             'IO::Compress::Zip::Constants'=> '2.064',
9659             'IO::Compress::Zlib::Constants'=> '2.064',
9660             'IO::Compress::Zlib::Extra'=> '2.064',
9661             'IO::Socket::INET' => '1.35',
9662             'IO::Socket::IP' => '0.28',
9663             'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9664             'IO::Uncompress::Adapter::Identity'=> '2.064',
9665             'IO::Uncompress::Adapter::Inflate'=> '2.064',
9666             'IO::Uncompress::AnyInflate'=> '2.064',
9667             'IO::Uncompress::AnyUncompress'=> '2.064',
9668             'IO::Uncompress::Base' => '2.064',
9669             'IO::Uncompress::Bunzip2'=> '2.064',
9670             'IO::Uncompress::Gunzip'=> '2.064',
9671             'IO::Uncompress::Inflate'=> '2.064',
9672             'IO::Uncompress::RawInflate'=> '2.064',
9673             'IO::Uncompress::Unzip' => '2.064',
9674             'IPC::Cmd' => '0.92',
9675             'List::Util' => '1.38',
9676             'List::Util::XS' => '1.38',
9677             'Locale::Codes' => '3.29',
9678             'Locale::Codes::Constants'=> '3.29',
9679             'Locale::Codes::Country'=> '3.29',
9680             'Locale::Codes::Country_Codes'=> '3.29',
9681             'Locale::Codes::Country_Retired'=> '3.29',
9682             'Locale::Codes::Currency'=> '3.29',
9683             'Locale::Codes::Currency_Codes'=> '3.29',
9684             'Locale::Codes::Currency_Retired'=> '3.29',
9685             'Locale::Codes::LangExt'=> '3.29',
9686             'Locale::Codes::LangExt_Codes'=> '3.29',
9687             'Locale::Codes::LangExt_Retired'=> '3.29',
9688             'Locale::Codes::LangFam'=> '3.29',
9689             'Locale::Codes::LangFam_Codes'=> '3.29',
9690             'Locale::Codes::LangFam_Retired'=> '3.29',
9691             'Locale::Codes::LangVar'=> '3.29',
9692             'Locale::Codes::LangVar_Codes'=> '3.29',
9693             'Locale::Codes::LangVar_Retired'=> '3.29',
9694             'Locale::Codes::Language'=> '3.29',
9695             'Locale::Codes::Language_Codes'=> '3.29',
9696             'Locale::Codes::Language_Retired'=> '3.29',
9697             'Locale::Codes::Script' => '3.29',
9698             'Locale::Codes::Script_Codes'=> '3.29',
9699             'Locale::Codes::Script_Retired'=> '3.29',
9700             'Locale::Country' => '3.29',
9701             'Locale::Currency' => '3.29',
9702             'Locale::Language' => '3.29',
9703             'Locale::Script' => '3.29',
9704             'Module::Build' => '0.4205',
9705             'Module::Build::Base' => '0.4205',
9706             'Module::Build::Compat' => '0.4205',
9707             'Module::Build::Config' => '0.4205',
9708             'Module::Build::Cookbook'=> '0.4205',
9709             'Module::Build::Dumper' => '0.4205',
9710             'Module::Build::ModuleInfo'=> '0.4205',
9711             'Module::Build::Notes' => '0.4205',
9712             'Module::Build::PPMMaker'=> '0.4205',
9713             'Module::Build::Platform::Default'=> '0.4205',
9714             'Module::Build::Platform::MacOS'=> '0.4205',
9715             'Module::Build::Platform::Unix'=> '0.4205',
9716             'Module::Build::Platform::VMS'=> '0.4205',
9717             'Module::Build::Platform::VOS'=> '0.4205',
9718             'Module::Build::Platform::Windows'=> '0.4205',
9719             'Module::Build::Platform::aix'=> '0.4205',
9720             'Module::Build::Platform::cygwin'=> '0.4205',
9721             'Module::Build::Platform::darwin'=> '0.4205',
9722             'Module::Build::Platform::os2'=> '0.4205',
9723             'Module::Build::PodParser'=> '0.4205',
9724             'Module::CoreList' => '3.06',
9725             'Module::CoreList::TieHashDelta'=> '3.06',
9726             'Module::CoreList::Utils'=> '3.06',
9727             'Module::Load' => '0.30',
9728             'Module::Load::Conditional'=> '0.62',
9729             'Net::Domain' => '2.23',
9730             'Net::FTP' => '2.79',
9731             'Net::NNTP' => '2.26',
9732             'Net::POP3' => '2.31',
9733             'Net::Ping' => '2.43',
9734             'Net::SMTP' => '2.33',
9735             'POSIX' => '1.38_02',
9736             'Parse::CPAN::Meta' => '1.4413',
9737             'Pod::Escapes' => '1.06',
9738             'Pod::Find' => '1.62',
9739             'Pod::InputObjects' => '1.62',
9740             'Pod::ParseUtils' => '1.62',
9741             'Pod::Parser' => '1.62',
9742             'Pod::Select' => '1.62',
9743             'Scalar::Util' => '1.38',
9744             'autodie' => '2.23',
9745             'autodie::exception' => '2.23',
9746             'autodie::exception::system'=> '2.23',
9747             'autodie::hints' => '2.23',
9748             'autodie::skip' => '2.23',
9749             'diagnostics' => '1.34',
9750             'feature' => '1.35',
9751             'inc::latest' => '0.4205',
9752             'locale' => '1.03',
9753             'mro' => '1.15',
9754             'threads' => '1.92',
9755             'version' => '0.9908',
9756             'version::regex' => '0.9908',
9757             'version::vpp' => '0.9908',
9758             'warnings' => '1.22',
9759             },
9760             removed => {
9761             }
9762             },
9763             5.01901 => {
9764             delta_from => 5.019009,
9765             changed => {
9766             'App::Cpan' => '1.62',
9767             'Attribute::Handlers' => '0.96',
9768             'B::Deparse' => '1.26',
9769             'CPAN' => '2.04',
9770             'CPAN::Bundle' => '5.5001',
9771             'CPAN::Complete' => '5.5001',
9772             'CPAN::Distribution' => '2.01',
9773             'CPAN::Distroprefs' => '6.0001',
9774             'CPAN::FirstTime' => '5.5305',
9775             'CPAN::Meta' => '2.140640',
9776             'CPAN::Meta::Converter' => '2.140640',
9777             'CPAN::Meta::Feature' => '2.140640',
9778             'CPAN::Meta::History' => '2.140640',
9779             'CPAN::Meta::Prereqs' => '2.140640',
9780             'CPAN::Meta::Spec' => '2.140640',
9781             'CPAN::Meta::Validator' => '2.140640',
9782             'CPAN::Meta::YAML' => '0.012',
9783             'CPAN::Queue' => '5.5002',
9784             'CPAN::Shell' => '5.5003',
9785             'CPAN::Tarzip' => '5.5012',
9786             'CPAN::Version' => '5.5003',
9787             'Carp' => '1.33',
9788             'Carp::Heavy' => '1.33',
9789             'Config' => '5.019010',
9790             'Data::Dumper' => '2.151',
9791             'Devel::PPPort' => '3.22',
9792             'Digest::SHA' => '5.88',
9793             'ExtUtils::Command::MM' => '6.92',
9794             'ExtUtils::Install' => '1.63',
9795             'ExtUtils::Installed' => '1.999005',
9796             'ExtUtils::Liblist' => '6.92',
9797             'ExtUtils::Liblist::Kid'=> '6.92',
9798             'ExtUtils::MM' => '6.92',
9799             'ExtUtils::MM_AIX' => '6.92',
9800             'ExtUtils::MM_Any' => '6.92',
9801             'ExtUtils::MM_BeOS' => '6.92',
9802             'ExtUtils::MM_Cygwin' => '6.92',
9803             'ExtUtils::MM_DOS' => '6.92',
9804             'ExtUtils::MM_Darwin' => '6.92',
9805             'ExtUtils::MM_MacOS' => '6.92',
9806             'ExtUtils::MM_NW5' => '6.92',
9807             'ExtUtils::MM_OS2' => '6.92',
9808             'ExtUtils::MM_QNX' => '6.92',
9809             'ExtUtils::MM_UWIN' => '6.92',
9810             'ExtUtils::MM_Unix' => '6.92',
9811             'ExtUtils::MM_VMS' => '6.92',
9812             'ExtUtils::MM_VOS' => '6.92',
9813             'ExtUtils::MM_Win32' => '6.92',
9814             'ExtUtils::MM_Win95' => '6.92',
9815             'ExtUtils::MY' => '6.92',
9816             'ExtUtils::MakeMaker' => '6.92',
9817             'ExtUtils::MakeMaker::Config'=> '6.92',
9818             'ExtUtils::Mkbootstrap' => '6.92',
9819             'ExtUtils::Mksymlists' => '6.92',
9820             'ExtUtils::Packlist' => '1.48',
9821             'ExtUtils::ParseXS' => '3.24',
9822             'ExtUtils::ParseXS::Constants'=> '3.24',
9823             'ExtUtils::ParseXS::CountLines'=> '3.24',
9824             'ExtUtils::ParseXS::Eval'=> '3.24',
9825             'ExtUtils::ParseXS::Utilities'=> '3.24',
9826             'ExtUtils::Typemaps' => '3.24',
9827             'ExtUtils::Typemaps::Cmd'=> '3.24',
9828             'ExtUtils::Typemaps::InputMap'=> '3.24',
9829             'ExtUtils::Typemaps::OutputMap'=> '3.24',
9830             'ExtUtils::Typemaps::Type'=> '3.24',
9831             'ExtUtils::testlib' => '6.92',
9832             'File::Find' => '1.27',
9833             'Filter::Simple' => '0.91',
9834             'HTTP::Tiny' => '0.043',
9835             'Hash::Util::FieldHash' => '1.15',
9836             'IO' => '1.31',
9837             'IO::Socket::IP' => '0.29',
9838             'Locale::Codes' => '3.30',
9839             'Locale::Codes::Constants'=> '3.30',
9840             'Locale::Codes::Country'=> '3.30',
9841             'Locale::Codes::Country_Codes'=> '3.30',
9842             'Locale::Codes::Country_Retired'=> '3.30',
9843             'Locale::Codes::Currency'=> '3.30',
9844             'Locale::Codes::Currency_Codes'=> '3.30',
9845             'Locale::Codes::Currency_Retired'=> '3.30',
9846             'Locale::Codes::LangExt'=> '3.30',
9847             'Locale::Codes::LangExt_Codes'=> '3.30',
9848             'Locale::Codes::LangExt_Retired'=> '3.30',
9849             'Locale::Codes::LangFam'=> '3.30',
9850             'Locale::Codes::LangFam_Codes'=> '3.30',
9851             'Locale::Codes::LangFam_Retired'=> '3.30',
9852             'Locale::Codes::LangVar'=> '3.30',
9853             'Locale::Codes::LangVar_Codes'=> '3.30',
9854             'Locale::Codes::LangVar_Retired'=> '3.30',
9855             'Locale::Codes::Language'=> '3.30',
9856             'Locale::Codes::Language_Codes'=> '3.30',
9857             'Locale::Codes::Language_Retired'=> '3.30',
9858             'Locale::Codes::Script' => '3.30',
9859             'Locale::Codes::Script_Codes'=> '3.30',
9860             'Locale::Codes::Script_Retired'=> '3.30',
9861             'Locale::Country' => '3.30',
9862             'Locale::Currency' => '3.30',
9863             'Locale::Language' => '3.30',
9864             'Locale::Script' => '3.30',
9865             'Module::CoreList' => '3.09',
9866             'Module::CoreList::TieHashDelta'=> '3.09',
9867             'Module::CoreList::Utils'=> '3.09',
9868             'Module::Load' => '0.32',
9869             'POSIX' => '1.38_03',
9870             'Parse::CPAN::Meta' => '1.4414',
9871             'Pod::Perldoc' => '3.23',
9872             'Pod::Perldoc::BaseTo' => '3.23',
9873             'Pod::Perldoc::GetOptsOO'=> '3.23',
9874             'Pod::Perldoc::ToANSI' => '3.23',
9875             'Pod::Perldoc::ToChecker'=> '3.23',
9876             'Pod::Perldoc::ToMan' => '3.23',
9877             'Pod::Perldoc::ToNroff' => '3.23',
9878             'Pod::Perldoc::ToPod' => '3.23',
9879             'Pod::Perldoc::ToRtf' => '3.23',
9880             'Pod::Perldoc::ToTerm' => '3.23',
9881             'Pod::Perldoc::ToText' => '3.23',
9882             'Pod::Perldoc::ToTk' => '3.23',
9883             'Pod::Perldoc::ToXml' => '3.23',
9884             'Thread::Queue' => '3.05',
9885             'XS::APItest' => '0.60',
9886             'XS::Typemap' => '0.13',
9887             'autouse' => '1.08',
9888             'base' => '2.22',
9889             'charnames' => '1.40',
9890             'feature' => '1.36',
9891             'mro' => '1.16',
9892             'threads' => '1.93',
9893             'warnings' => '1.23',
9894             'warnings::register' => '1.03',
9895             },
9896             removed => {
9897             }
9898             },
9899             5.019011 => {
9900             delta_from => 5.01901,
9901             changed => {
9902             'CPAN' => '2.05',
9903             'CPAN::Distribution' => '2.02',
9904             'CPAN::FirstTime' => '5.5306',
9905             'CPAN::Shell' => '5.5004',
9906             'Carp' => '1.3301',
9907             'Carp::Heavy' => '1.3301',
9908             'Config' => '5.019011',
9909             'ExtUtils::Command::MM' => '6.94',
9910             'ExtUtils::Install' => '1.67',
9911             'ExtUtils::Liblist' => '6.94',
9912             'ExtUtils::Liblist::Kid'=> '6.94',
9913             'ExtUtils::MM' => '6.94',
9914             'ExtUtils::MM_AIX' => '6.94',
9915             'ExtUtils::MM_Any' => '6.94',
9916             'ExtUtils::MM_BeOS' => '6.94',
9917             'ExtUtils::MM_Cygwin' => '6.94',
9918             'ExtUtils::MM_DOS' => '6.94',
9919             'ExtUtils::MM_Darwin' => '6.94',
9920             'ExtUtils::MM_MacOS' => '6.94',
9921             'ExtUtils::MM_NW5' => '6.94',
9922             'ExtUtils::MM_OS2' => '6.94',
9923             'ExtUtils::MM_QNX' => '6.94',
9924             'ExtUtils::MM_UWIN' => '6.94',
9925             'ExtUtils::MM_Unix' => '6.94',
9926             'ExtUtils::MM_VMS' => '6.94',
9927             'ExtUtils::MM_VOS' => '6.94',
9928             'ExtUtils::MM_Win32' => '6.94',
9929             'ExtUtils::MM_Win95' => '6.94',
9930             'ExtUtils::MY' => '6.94',
9931             'ExtUtils::MakeMaker' => '6.94',
9932             'ExtUtils::MakeMaker::Config'=> '6.94',
9933             'ExtUtils::Mkbootstrap' => '6.94',
9934             'ExtUtils::Mksymlists' => '6.94',
9935             'ExtUtils::testlib' => '6.94',
9936             'Module::CoreList' => '3.10',
9937             'Module::CoreList::TieHashDelta'=> '3.10',
9938             'Module::CoreList::Utils'=> '3.10',
9939             'PerlIO' => '1.09',
9940             'Storable' => '2.49',
9941             'Win32' => '0.49',
9942             'experimental' => '0.007',
9943             },
9944             removed => {
9945             }
9946             },
9947             5.020000 => {
9948             delta_from => 5.019011,
9949             changed => {
9950             'Config' => '5.02',
9951             'Devel::PPPort' => '3.21',
9952             'Encode' => '2.60',
9953             'Errno' => '1.20_03',
9954             'ExtUtils::Command::MM' => '6.98',
9955             'ExtUtils::Liblist' => '6.98',
9956             'ExtUtils::Liblist::Kid'=> '6.98',
9957             'ExtUtils::MM' => '6.98',
9958             'ExtUtils::MM_AIX' => '6.98',
9959             'ExtUtils::MM_Any' => '6.98',
9960             'ExtUtils::MM_BeOS' => '6.98',
9961             'ExtUtils::MM_Cygwin' => '6.98',
9962             'ExtUtils::MM_DOS' => '6.98',
9963             'ExtUtils::MM_Darwin' => '6.98',
9964             'ExtUtils::MM_MacOS' => '6.98',
9965             'ExtUtils::MM_NW5' => '6.98',
9966             'ExtUtils::MM_OS2' => '6.98',
9967             'ExtUtils::MM_QNX' => '6.98',
9968             'ExtUtils::MM_UWIN' => '6.98',
9969             'ExtUtils::MM_Unix' => '6.98',
9970             'ExtUtils::MM_VMS' => '6.98',
9971             'ExtUtils::MM_VOS' => '6.98',
9972             'ExtUtils::MM_Win32' => '6.98',
9973             'ExtUtils::MM_Win95' => '6.98',
9974             'ExtUtils::MY' => '6.98',
9975             'ExtUtils::MakeMaker' => '6.98',
9976             'ExtUtils::MakeMaker::Config'=> '6.98',
9977             'ExtUtils::Miniperl' => '1.01',
9978             'ExtUtils::Mkbootstrap' => '6.98',
9979             'ExtUtils::Mksymlists' => '6.98',
9980             'ExtUtils::testlib' => '6.98',
9981             'Pod::Functions::Functions'=> '1.08',
9982             },
9983             removed => {
9984             }
9985             },
9986             5.021000 => {
9987             delta_from => 5.020000,
9988             changed => {
9989             'Module::CoreList' => '5.021001',
9990             'Module::CoreList::TieHashDelta'=> '5.021001',
9991             'Module::CoreList::Utils'=> '5.021001',
9992             'feature' => '1.37',
9993             },
9994             removed => {
9995             'CGI' => 1,
9996             'CGI::Apache' => 1,
9997             'CGI::Carp' => 1,
9998             'CGI::Cookie' => 1,
9999             'CGI::Fast' => 1,
10000             'CGI::Pretty' => 1,
10001             'CGI::Push' => 1,
10002             'CGI::Switch' => 1,
10003             'CGI::Util' => 1,
10004             'Module::Build' => 1,
10005             'Module::Build::Base' => 1,
10006             'Module::Build::Compat' => 1,
10007             'Module::Build::Config' => 1,
10008             'Module::Build::ConfigData'=> 1,
10009             'Module::Build::Cookbook'=> 1,
10010             'Module::Build::Dumper' => 1,
10011             'Module::Build::ModuleInfo'=> 1,
10012             'Module::Build::Notes' => 1,
10013             'Module::Build::PPMMaker'=> 1,
10014             'Module::Build::Platform::Default'=> 1,
10015             'Module::Build::Platform::MacOS'=> 1,
10016             'Module::Build::Platform::Unix'=> 1,
10017             'Module::Build::Platform::VMS'=> 1,
10018             'Module::Build::Platform::VOS'=> 1,
10019             'Module::Build::Platform::Windows'=> 1,
10020             'Module::Build::Platform::aix'=> 1,
10021             'Module::Build::Platform::cygwin'=> 1,
10022             'Module::Build::Platform::darwin'=> 1,
10023             'Module::Build::Platform::os2'=> 1,
10024             'Module::Build::PodParser'=> 1,
10025             'Module::Build::Version'=> 1,
10026             'Module::Build::YAML' => 1,
10027             'Package::Constants' => 1,
10028             'inc::latest' => 1,
10029             }
10030             },
10031             5.021001 => {
10032             delta_from => 5.021000,
10033             changed => {
10034             'App::Prove' => '3.32',
10035             'App::Prove::State' => '3.32',
10036             'App::Prove::State::Result'=> '3.32',
10037             'App::Prove::State::Result::Test'=> '3.32',
10038             'Archive::Tar' => '2.00',
10039             'Archive::Tar::Constant'=> '2.00',
10040             'Archive::Tar::File' => '2.00',
10041             'B' => '1.49',
10042             'B::Deparse' => '1.27',
10043             'Benchmark' => '1.19',
10044             'CPAN::Meta' => '2.141520',
10045             'CPAN::Meta::Converter' => '2.141520',
10046             'CPAN::Meta::Feature' => '2.141520',
10047             'CPAN::Meta::History' => '2.141520',
10048             'CPAN::Meta::Prereqs' => '2.141520',
10049             'CPAN::Meta::Spec' => '2.141520',
10050             'CPAN::Meta::Validator' => '2.141520',
10051             'Carp' => '1.34',
10052             'Carp::Heavy' => '1.34',
10053             'Config' => '5.021001',
10054             'Cwd' => '3.48',
10055             'Data::Dumper' => '2.152',
10056             'Devel::PPPort' => '3.24',
10057             'Devel::Peek' => '1.17',
10058             'Digest::SHA' => '5.92',
10059             'DynaLoader' => '1.26',
10060             'Encode' => '2.62',
10061             'Errno' => '1.20_04',
10062             'Exporter' => '5.71',
10063             'Exporter::Heavy' => '5.71',
10064             'ExtUtils::Install' => '1.68',
10065             'ExtUtils::Miniperl' => '1.02',
10066             'ExtUtils::ParseXS' => '3.25',
10067             'ExtUtils::ParseXS::Constants'=> '3.25',
10068             'ExtUtils::ParseXS::CountLines'=> '3.25',
10069             'ExtUtils::ParseXS::Eval'=> '3.25',
10070             'ExtUtils::ParseXS::Utilities'=> '3.25',
10071             'ExtUtils::Typemaps' => '3.25',
10072             'ExtUtils::Typemaps::Cmd'=> '3.25',
10073             'ExtUtils::Typemaps::InputMap'=> '3.25',
10074             'ExtUtils::Typemaps::OutputMap'=> '3.25',
10075             'ExtUtils::Typemaps::Type'=> '3.25',
10076             'Fatal' => '2.25',
10077             'File::Spec' => '3.48',
10078             'File::Spec::Cygwin' => '3.48',
10079             'File::Spec::Epoc' => '3.48',
10080             'File::Spec::Functions' => '3.48',
10081             'File::Spec::Mac' => '3.48',
10082             'File::Spec::OS2' => '3.48',
10083             'File::Spec::Unix' => '3.48',
10084             'File::Spec::VMS' => '3.48',
10085             'File::Spec::Win32' => '3.48',
10086             'Hash::Util' => '0.17',
10087             'IO' => '1.32',
10088             'List::Util' => '1.39',
10089             'List::Util::XS' => '1.39',
10090             'Locale::Codes' => '3.31',
10091             'Locale::Codes::Constants'=> '3.31',
10092             'Locale::Codes::Country'=> '3.31',
10093             'Locale::Codes::Country_Codes'=> '3.31',
10094             'Locale::Codes::Country_Retired'=> '3.31',
10095             'Locale::Codes::Currency'=> '3.31',
10096             'Locale::Codes::Currency_Codes'=> '3.31',
10097             'Locale::Codes::Currency_Retired'=> '3.31',
10098             'Locale::Codes::LangExt'=> '3.31',
10099             'Locale::Codes::LangExt_Codes'=> '3.31',
10100             'Locale::Codes::LangExt_Retired'=> '3.31',
10101             'Locale::Codes::LangFam'=> '3.31',
10102             'Locale::Codes::LangFam_Codes'=> '3.31',
10103             'Locale::Codes::LangFam_Retired'=> '3.31',
10104             'Locale::Codes::LangVar'=> '3.31',
10105             'Locale::Codes::LangVar_Codes'=> '3.31',
10106             'Locale::Codes::LangVar_Retired'=> '3.31',
10107             'Locale::Codes::Language'=> '3.31',
10108             'Locale::Codes::Language_Codes'=> '3.31',
10109             'Locale::Codes::Language_Retired'=> '3.31',
10110             'Locale::Codes::Script' => '3.31',
10111             'Locale::Codes::Script_Codes'=> '3.31',
10112             'Locale::Codes::Script_Retired'=> '3.31',
10113             'Locale::Country' => '3.31',
10114             'Locale::Currency' => '3.31',
10115             'Locale::Language' => '3.31',
10116             'Locale::Script' => '3.31',
10117             'Math::BigFloat' => '1.9994',
10118             'Math::BigInt' => '1.9995',
10119             'Math::BigInt::Calc' => '1.9994',
10120             'Math::BigInt::CalcEmu' => '1.9994',
10121             'Math::BigRat' => '0.2608',
10122             'Module::CoreList' => '5.021001_01',
10123             'Module::CoreList::TieHashDelta'=> '5.021001_01',
10124             'Module::CoreList::Utils'=> '5.021001_01',
10125             'Module::Metadata' => '1.000024',
10126             'NDBM_File' => '1.13',
10127             'Net::Config' => '1.14',
10128             'Net::SMTP' => '2.34',
10129             'Net::Time' => '2.11',
10130             'OS2::Process' => '1.10',
10131             'POSIX' => '1.40',
10132             'PerlIO::encoding' => '0.19',
10133             'PerlIO::mmap' => '0.013',
10134             'PerlIO::scalar' => '0.19',
10135             'PerlIO::via' => '0.15',
10136             'Pod::Html' => '1.22',
10137             'Scalar::Util' => '1.39',
10138             'SelfLoader' => '1.22',
10139             'Socket' => '2.014',
10140             'Storable' => '2.51',
10141             'TAP::Base' => '3.32',
10142             'TAP::Formatter::Base' => '3.32',
10143             'TAP::Formatter::Color' => '3.32',
10144             'TAP::Formatter::Console'=> '3.32',
10145             'TAP::Formatter::Console::ParallelSession'=> '3.32',
10146             'TAP::Formatter::Console::Session'=> '3.32',
10147             'TAP::Formatter::File' => '3.32',
10148             'TAP::Formatter::File::Session'=> '3.32',
10149             'TAP::Formatter::Session'=> '3.32',
10150             'TAP::Harness' => '3.32',
10151             'TAP::Harness::Env' => '3.32',
10152             'TAP::Object' => '3.32',
10153             'TAP::Parser' => '3.32',
10154             'TAP::Parser::Aggregator'=> '3.32',
10155             'TAP::Parser::Grammar' => '3.32',
10156             'TAP::Parser::Iterator' => '3.32',
10157             'TAP::Parser::Iterator::Array'=> '3.32',
10158             'TAP::Parser::Iterator::Process'=> '3.32',
10159             'TAP::Parser::Iterator::Stream'=> '3.32',
10160             'TAP::Parser::IteratorFactory'=> '3.32',
10161             'TAP::Parser::Multiplexer'=> '3.32',
10162             'TAP::Parser::Result' => '3.32',
10163             'TAP::Parser::Result::Bailout'=> '3.32',
10164             'TAP::Parser::Result::Comment'=> '3.32',
10165             'TAP::Parser::Result::Plan'=> '3.32',
10166             'TAP::Parser::Result::Pragma'=> '3.32',
10167             'TAP::Parser::Result::Test'=> '3.32',
10168             'TAP::Parser::Result::Unknown'=> '3.32',
10169             'TAP::Parser::Result::Version'=> '3.32',
10170             'TAP::Parser::Result::YAML'=> '3.32',
10171             'TAP::Parser::ResultFactory'=> '3.32',
10172             'TAP::Parser::Scheduler'=> '3.32',
10173             'TAP::Parser::Scheduler::Job'=> '3.32',
10174             'TAP::Parser::Scheduler::Spinner'=> '3.32',
10175             'TAP::Parser::Source' => '3.32',
10176             'TAP::Parser::SourceHandler'=> '3.32',
10177             'TAP::Parser::SourceHandler::Executable'=> '3.32',
10178             'TAP::Parser::SourceHandler::File'=> '3.32',
10179             'TAP::Parser::SourceHandler::Handle'=> '3.32',
10180             'TAP::Parser::SourceHandler::Perl'=> '3.32',
10181             'TAP::Parser::SourceHandler::RawTAP'=> '3.32',
10182             'TAP::Parser::YAMLish::Reader'=> '3.32',
10183             'TAP::Parser::YAMLish::Writer'=> '3.32',
10184             'Term::ANSIColor' => '4.03',
10185             'Test::Builder' => '1.001003',
10186             'Test::Builder::Module' => '1.001003',
10187             'Test::Builder::Tester' => '1.23_003',
10188             'Test::Harness' => '3.32',
10189             'Test::More' => '1.001003',
10190             'Test::Simple' => '1.001003',
10191             'Tie::File' => '1.01',
10192             'Unicode' => '7.0.0',
10193             'Unicode::Collate' => '1.07',
10194             'Unicode::Normalize' => '1.18',
10195             'Unicode::UCD' => '0.58',
10196             'XS::APItest' => '0.61',
10197             '_charnames' => '1.41',
10198             'autodie' => '2.25',
10199             'autodie::Scope::Guard' => '2.25',
10200             'autodie::Scope::GuardStack'=> '2.25',
10201             'autodie::ScopeUtil' => '2.25',
10202             'autodie::exception' => '2.25',
10203             'autodie::exception::system'=> '2.25',
10204             'autodie::hints' => '2.25',
10205             'autodie::skip' => '2.25',
10206             'charnames' => '1.41',
10207             'locale' => '1.04',
10208             'threads' => '1.94',
10209             'utf8' => '1.14',
10210             'warnings' => '1.24',
10211             },
10212             removed => {
10213             }
10214             },
10215             5.021002 => {
10216             delta_from => 5.021001,
10217             changed => {
10218             'B' => '1.50',
10219             'Config' => '5.021002',
10220             'Cwd' => '3.49',
10221             'Devel::Peek' => '1.18',
10222             'ExtUtils::Manifest' => '1.64',
10223             'File::Copy' => '2.30',
10224             'File::Spec' => '3.49',
10225             'File::Spec::Cygwin' => '3.49',
10226             'File::Spec::Epoc' => '3.49',
10227             'File::Spec::Functions' => '3.49',
10228             'File::Spec::Mac' => '3.49',
10229             'File::Spec::OS2' => '3.49',
10230             'File::Spec::Unix' => '3.49',
10231             'File::Spec::VMS' => '3.49',
10232             'File::Spec::Win32' => '3.49',
10233             'Filter::Simple' => '0.92',
10234             'Hash::Util' => '0.18',
10235             'IO' => '1.33',
10236             'IO::Socket::IP' => '0.31',
10237             'IPC::Open3' => '1.17',
10238             'Math::BigFloat' => '1.9996',
10239             'Math::BigInt' => '1.9996',
10240             'Math::BigInt::Calc' => '1.9996',
10241             'Math::BigInt::CalcEmu' => '1.9996',
10242             'Module::CoreList' => '5.021002',
10243             'Module::CoreList::TieHashDelta'=> '5.021002',
10244             'Module::CoreList::Utils'=> '5.021002',
10245             'POSIX' => '1.41',
10246             'Pod::Usage' => '1.64',
10247             'XS::APItest' => '0.62',
10248             'arybase' => '0.08',
10249             'experimental' => '0.008',
10250             'threads' => '1.95',
10251             'warnings' => '1.26',
10252             },
10253             removed => {
10254             }
10255             },
10256             5.021003 => {
10257             delta_from => 5.021002,
10258             changed => {
10259             'B::Debug' => '1.21',
10260             'CPAN::Meta' => '2.142060',
10261             'CPAN::Meta::Converter' => '2.142060',
10262             'CPAN::Meta::Feature' => '2.142060',
10263             'CPAN::Meta::History' => '2.142060',
10264             'CPAN::Meta::Merge' => '2.142060',
10265             'CPAN::Meta::Prereqs' => '2.142060',
10266             'CPAN::Meta::Requirements'=> '2.126',
10267             'CPAN::Meta::Spec' => '2.142060',
10268             'CPAN::Meta::Validator' => '2.142060',
10269             'Config' => '5.021003',
10270             'Config::Perl::V' => '0.22',
10271             'ExtUtils::CBuilder' => '0.280217',
10272             'ExtUtils::CBuilder::Base'=> '0.280217',
10273             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10274             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10275             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10276             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10277             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10278             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10279             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10280             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10281             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10282             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10283             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10284             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10285             'ExtUtils::Manifest' => '1.65',
10286             'HTTP::Tiny' => '0.047',
10287             'IPC::Open3' => '1.18',
10288             'Module::CoreList' => '5.021003',
10289             'Module::CoreList::TieHashDelta'=> '5.021003',
10290             'Module::CoreList::Utils'=> '5.021003',
10291             'Opcode' => '1.28',
10292             'POSIX' => '1.42',
10293             'Safe' => '2.38',
10294             'Socket' => '2.015',
10295             'Sys::Hostname' => '1.19',
10296             'UNIVERSAL' => '1.12',
10297             'XS::APItest' => '0.63',
10298             'perlfaq' => '5.0150045',
10299             },
10300             removed => {
10301             }
10302             },
10303             5.020001 => {
10304             delta_from => 5.020000,
10305             changed => {
10306             'Config' => '5.020001',
10307             'Config::Perl::V' => '0.22',
10308             'Cwd' => '3.48',
10309             'Exporter' => '5.71',
10310             'Exporter::Heavy' => '5.71',
10311             'ExtUtils::CBuilder' => '0.280217',
10312             'ExtUtils::CBuilder::Base'=> '0.280217',
10313             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10314             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10315             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10316             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10317             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10318             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10319             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10320             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10321             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10322             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10323             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10324             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10325             'File::Copy' => '2.30',
10326             'File::Spec' => '3.48',
10327             'File::Spec::Cygwin' => '3.48',
10328             'File::Spec::Epoc' => '3.48',
10329             'File::Spec::Functions' => '3.48',
10330             'File::Spec::Mac' => '3.48',
10331             'File::Spec::OS2' => '3.48',
10332             'File::Spec::Unix' => '3.48',
10333             'File::Spec::VMS' => '3.48',
10334             'File::Spec::Win32' => '3.48',
10335             'Module::CoreList' => '5.020001',
10336             'Module::CoreList::TieHashDelta'=> '5.020001',
10337             'Module::CoreList::Utils'=> '5.020001',
10338             'PerlIO::via' => '0.15',
10339             'Unicode::UCD' => '0.58',
10340             'XS::APItest' => '0.60_01',
10341             'utf8' => '1.13_01',
10342             'version' => '0.9909',
10343             'version::regex' => '0.9909',
10344             'version::vpp' => '0.9909',
10345             },
10346             removed => {
10347             }
10348             },
10349             5.021004 => {
10350             delta_from => 5.021003,
10351             changed => {
10352             'App::Prove' => '3.33',
10353             'App::Prove::State' => '3.33',
10354             'App::Prove::State::Result'=> '3.33',
10355             'App::Prove::State::Result::Test'=> '3.33',
10356             'Archive::Tar' => '2.02',
10357             'Archive::Tar::Constant'=> '2.02',
10358             'Archive::Tar::File' => '2.02',
10359             'Attribute::Handlers' => '0.97',
10360             'B' => '1.51',
10361             'B::Concise' => '0.993',
10362             'B::Deparse' => '1.28',
10363             'B::Op_private' => '5.021004',
10364             'CPAN::Meta::Requirements'=> '2.128',
10365             'Config' => '5.021004',
10366             'Cwd' => '3.50',
10367             'Data::Dumper' => '2.154',
10368             'ExtUtils::CBuilder' => '0.280219',
10369             'ExtUtils::CBuilder::Base'=> '0.280219',
10370             'ExtUtils::CBuilder::Platform::Unix'=> '0.280219',
10371             'ExtUtils::CBuilder::Platform::VMS'=> '0.280219',
10372             'ExtUtils::CBuilder::Platform::Windows'=> '0.280219',
10373             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219',
10374             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219',
10375             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219',
10376             'ExtUtils::CBuilder::Platform::aix'=> '0.280219',
10377             'ExtUtils::CBuilder::Platform::android'=> '0.280219',
10378             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219',
10379             'ExtUtils::CBuilder::Platform::darwin'=> '0.280219',
10380             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219',
10381             'ExtUtils::CBuilder::Platform::os2'=> '0.280219',
10382             'ExtUtils::Install' => '2.04',
10383             'ExtUtils::Installed' => '2.04',
10384             'ExtUtils::Liblist::Kid'=> '6.98_01',
10385             'ExtUtils::Manifest' => '1.68',
10386             'ExtUtils::Packlist' => '2.04',
10387             'File::Find' => '1.28',
10388             'File::Spec' => '3.50',
10389             'File::Spec::Cygwin' => '3.50',
10390             'File::Spec::Epoc' => '3.50',
10391             'File::Spec::Functions' => '3.50',
10392             'File::Spec::Mac' => '3.50',
10393             'File::Spec::OS2' => '3.50',
10394             'File::Spec::Unix' => '3.50',
10395             'File::Spec::VMS' => '3.50',
10396             'File::Spec::Win32' => '3.50',
10397             'Getopt::Std' => '1.11',
10398             'HTTP::Tiny' => '0.049',
10399             'IO' => '1.34',
10400             'IO::Socket::IP' => '0.32',
10401             'List::Util' => '1.41',
10402             'List::Util::XS' => '1.41',
10403             'Locale::Codes' => '3.32',
10404             'Locale::Codes::Constants'=> '3.32',
10405             'Locale::Codes::Country'=> '3.32',
10406             'Locale::Codes::Country_Codes'=> '3.32',
10407             'Locale::Codes::Country_Retired'=> '3.32',
10408             'Locale::Codes::Currency'=> '3.32',
10409             'Locale::Codes::Currency_Codes'=> '3.32',
10410             'Locale::Codes::Currency_Retired'=> '3.32',
10411             'Locale::Codes::LangExt'=> '3.32',
10412             'Locale::Codes::LangExt_Codes'=> '3.32',
10413             'Locale::Codes::LangExt_Retired'=> '3.32',
10414             'Locale::Codes::LangFam'=> '3.32',
10415             'Locale::Codes::LangFam_Codes'=> '3.32',
10416             'Locale::Codes::LangFam_Retired'=> '3.32',
10417             'Locale::Codes::LangVar'=> '3.32',
10418             'Locale::Codes::LangVar_Codes'=> '3.32',
10419             'Locale::Codes::LangVar_Retired'=> '3.32',
10420             'Locale::Codes::Language'=> '3.32',
10421             'Locale::Codes::Language_Codes'=> '3.32',
10422             'Locale::Codes::Language_Retired'=> '3.32',
10423             'Locale::Codes::Script' => '3.32',
10424             'Locale::Codes::Script_Codes'=> '3.32',
10425             'Locale::Codes::Script_Retired'=> '3.32',
10426             'Locale::Country' => '3.32',
10427             'Locale::Currency' => '3.32',
10428             'Locale::Language' => '3.32',
10429             'Locale::Script' => '3.32',
10430             'Math::BigFloat' => '1.9997',
10431             'Math::BigInt' => '1.9997',
10432             'Math::BigInt::Calc' => '1.9997',
10433             'Math::BigInt::CalcEmu' => '1.9997',
10434             'Module::CoreList' => '5.20140920',
10435             'Module::CoreList::TieHashDelta'=> '5.20140920',
10436             'Module::CoreList::Utils'=> '5.20140920',
10437             'POSIX' => '1.43',
10438             'Pod::Perldoc' => '3.24',
10439             'Pod::Perldoc::BaseTo' => '3.24',
10440             'Pod::Perldoc::GetOptsOO'=> '3.24',
10441             'Pod::Perldoc::ToANSI' => '3.24',
10442             'Pod::Perldoc::ToChecker'=> '3.24',
10443             'Pod::Perldoc::ToMan' => '3.24',
10444             'Pod::Perldoc::ToNroff' => '3.24',
10445             'Pod::Perldoc::ToPod' => '3.24',
10446             'Pod::Perldoc::ToRtf' => '3.24',
10447             'Pod::Perldoc::ToTerm' => '3.24',
10448             'Pod::Perldoc::ToText' => '3.24',
10449             'Pod::Perldoc::ToTk' => '3.24',
10450             'Pod::Perldoc::ToXml' => '3.24',
10451             'Scalar::Util' => '1.41',
10452             'Sub::Util' => '1.41',
10453             'TAP::Base' => '3.33',
10454             'TAP::Formatter::Base' => '3.33',
10455             'TAP::Formatter::Color' => '3.33',
10456             'TAP::Formatter::Console'=> '3.33',
10457             'TAP::Formatter::Console::ParallelSession'=> '3.33',
10458             'TAP::Formatter::Console::Session'=> '3.33',
10459             'TAP::Formatter::File' => '3.33',
10460             'TAP::Formatter::File::Session'=> '3.33',
10461             'TAP::Formatter::Session'=> '3.33',
10462             'TAP::Harness' => '3.33',
10463             'TAP::Harness::Env' => '3.33',
10464             'TAP::Object' => '3.33',
10465             'TAP::Parser' => '3.33',
10466             'TAP::Parser::Aggregator'=> '3.33',
10467             'TAP::Parser::Grammar' => '3.33',
10468             'TAP::Parser::Iterator' => '3.33',
10469             'TAP::Parser::Iterator::Array'=> '3.33',
10470             'TAP::Parser::Iterator::Process'=> '3.33',
10471             'TAP::Parser::Iterator::Stream'=> '3.33',
10472             'TAP::Parser::IteratorFactory'=> '3.33',
10473             'TAP::Parser::Multiplexer'=> '3.33',
10474             'TAP::Parser::Result' => '3.33',
10475             'TAP::Parser::Result::Bailout'=> '3.33',
10476             'TAP::Parser::Result::Comment'=> '3.33',
10477             'TAP::Parser::Result::Plan'=> '3.33',
10478             'TAP::Parser::Result::Pragma'=> '3.33',
10479             'TAP::Parser::Result::Test'=> '3.33',
10480             'TAP::Parser::Result::Unknown'=> '3.33',
10481             'TAP::Parser::Result::Version'=> '3.33',
10482             'TAP::Parser::Result::YAML'=> '3.33',
10483             'TAP::Parser::ResultFactory'=> '3.33',
10484             'TAP::Parser::Scheduler'=> '3.33',
10485             'TAP::Parser::Scheduler::Job'=> '3.33',
10486             'TAP::Parser::Scheduler::Spinner'=> '3.33',
10487             'TAP::Parser::Source' => '3.33',
10488             'TAP::Parser::SourceHandler'=> '3.33',
10489             'TAP::Parser::SourceHandler::Executable'=> '3.33',
10490             'TAP::Parser::SourceHandler::File'=> '3.33',
10491             'TAP::Parser::SourceHandler::Handle'=> '3.33',
10492             'TAP::Parser::SourceHandler::Perl'=> '3.33',
10493             'TAP::Parser::SourceHandler::RawTAP'=> '3.33',
10494             'TAP::Parser::YAMLish::Reader'=> '3.33',
10495             'TAP::Parser::YAMLish::Writer'=> '3.33',
10496             'Term::ReadLine' => '1.15',
10497             'Test::Builder' => '1.001006',
10498             'Test::Builder::Module' => '1.001006',
10499             'Test::Builder::Tester' => '1.24',
10500             'Test::Builder::Tester::Color'=> '1.24',
10501             'Test::Harness' => '3.33',
10502             'Test::More' => '1.001006',
10503             'Test::Simple' => '1.001006',
10504             'Time::Piece' => '1.29',
10505             'Time::Seconds' => '1.29',
10506             'XS::APItest' => '0.64',
10507             '_charnames' => '1.42',
10508             'attributes' => '0.23',
10509             'bigint' => '0.37',
10510             'bignum' => '0.38',
10511             'bigrat' => '0.37',
10512             'constant' => '1.32',
10513             'experimental' => '0.010',
10514             'overload' => '1.23',
10515             'threads' => '1.96',
10516             'version' => '0.9909',
10517             'version::regex' => '0.9909',
10518             'version::vpp' => '0.9909',
10519             },
10520             removed => {
10521             }
10522             },
10523             5.021005 => {
10524             delta_from => 5.021004,
10525             changed => {
10526             'B' => '1.52',
10527             'B::Concise' => '0.994',
10528             'B::Debug' => '1.22',
10529             'B::Deparse' => '1.29',
10530             'B::Op_private' => '5.021005',
10531             'CPAN::Meta' => '2.142690',
10532             'CPAN::Meta::Converter' => '2.142690',
10533             'CPAN::Meta::Feature' => '2.142690',
10534             'CPAN::Meta::History' => '2.142690',
10535             'CPAN::Meta::Merge' => '2.142690',
10536             'CPAN::Meta::Prereqs' => '2.142690',
10537             'CPAN::Meta::Spec' => '2.142690',
10538             'CPAN::Meta::Validator' => '2.142690',
10539             'Compress::Raw::Bzip2' => '2.066',
10540             'Compress::Raw::Zlib' => '2.066',
10541             'Compress::Zlib' => '2.066',
10542             'Config' => '5.021005',
10543             'Cwd' => '3.51',
10544             'DynaLoader' => '1.27',
10545             'Errno' => '1.21',
10546             'ExtUtils::CBuilder' => '0.280220',
10547             'ExtUtils::CBuilder::Base'=> '0.280220',
10548             'ExtUtils::CBuilder::Platform::Unix'=> '0.280220',
10549             'ExtUtils::CBuilder::Platform::VMS'=> '0.280220',
10550             'ExtUtils::CBuilder::Platform::Windows'=> '0.280220',
10551             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220',
10552             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220',
10553             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220',
10554             'ExtUtils::CBuilder::Platform::aix'=> '0.280220',
10555             'ExtUtils::CBuilder::Platform::android'=> '0.280220',
10556             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220',
10557             'ExtUtils::CBuilder::Platform::darwin'=> '0.280220',
10558             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220',
10559             'ExtUtils::CBuilder::Platform::os2'=> '0.280220',
10560             'ExtUtils::Miniperl' => '1.03',
10561             'Fcntl' => '1.13',
10562             'File::Find' => '1.29',
10563             'File::Spec' => '3.51',
10564             'File::Spec::Cygwin' => '3.51',
10565             'File::Spec::Epoc' => '3.51',
10566             'File::Spec::Functions' => '3.51',
10567             'File::Spec::Mac' => '3.51',
10568             'File::Spec::OS2' => '3.51',
10569             'File::Spec::Unix' => '3.51',
10570             'File::Spec::VMS' => '3.51',
10571             'File::Spec::Win32' => '3.51',
10572             'HTTP::Tiny' => '0.050',
10573             'IO::Compress::Adapter::Bzip2'=> '2.066',
10574             'IO::Compress::Adapter::Deflate'=> '2.066',
10575             'IO::Compress::Adapter::Identity'=> '2.066',
10576             'IO::Compress::Base' => '2.066',
10577             'IO::Compress::Base::Common'=> '2.066',
10578             'IO::Compress::Bzip2' => '2.066',
10579             'IO::Compress::Deflate' => '2.066',
10580             'IO::Compress::Gzip' => '2.066',
10581             'IO::Compress::Gzip::Constants'=> '2.066',
10582             'IO::Compress::RawDeflate'=> '2.066',
10583             'IO::Compress::Zip' => '2.066',
10584             'IO::Compress::Zip::Constants'=> '2.066',
10585             'IO::Compress::Zlib::Constants'=> '2.066',
10586             'IO::Compress::Zlib::Extra'=> '2.066',
10587             'IO::Uncompress::Adapter::Bunzip2'=> '2.066',
10588             'IO::Uncompress::Adapter::Identity'=> '2.066',
10589             'IO::Uncompress::Adapter::Inflate'=> '2.066',
10590             'IO::Uncompress::AnyInflate'=> '2.066',
10591             'IO::Uncompress::AnyUncompress'=> '2.066',
10592             'IO::Uncompress::Base' => '2.066',
10593             'IO::Uncompress::Bunzip2'=> '2.066',
10594             'IO::Uncompress::Gunzip'=> '2.066',
10595             'IO::Uncompress::Inflate'=> '2.066',
10596             'IO::Uncompress::RawInflate'=> '2.066',
10597             'IO::Uncompress::Unzip' => '2.066',
10598             'JSON::PP' => '2.27300',
10599             'Module::CoreList' => '5.20141020',
10600             'Module::CoreList::TieHashDelta'=> '5.20141020',
10601             'Module::CoreList::Utils'=> '5.20141020',
10602             'Net::Cmd' => '3.02',
10603             'Net::Config' => '3.02',
10604             'Net::Domain' => '3.02',
10605             'Net::FTP' => '3.02',
10606             'Net::FTP::A' => '3.02',
10607             'Net::FTP::E' => '3.02',
10608             'Net::FTP::I' => '3.02',
10609             'Net::FTP::L' => '3.02',
10610             'Net::FTP::dataconn' => '3.02',
10611             'Net::NNTP' => '3.02',
10612             'Net::Netrc' => '3.02',
10613             'Net::POP3' => '3.02',
10614             'Net::SMTP' => '3.02',
10615             'Net::Time' => '3.02',
10616             'Opcode' => '1.29',
10617             'POSIX' => '1.45',
10618             'Socket' => '2.016',
10619             'Test::Builder' => '1.001008',
10620             'Test::Builder::Module' => '1.001008',
10621             'Test::More' => '1.001008',
10622             'Test::Simple' => '1.001008',
10623             'XS::APItest' => '0.65',
10624             'XSLoader' => '0.18',
10625             'attributes' => '0.24',
10626             'experimental' => '0.012',
10627             'feature' => '1.38',
10628             'perlfaq' => '5.0150046',
10629             're' => '0.27',
10630             'threads::shared' => '1.47',
10631             'warnings' => '1.28',
10632             'warnings::register' => '1.04',
10633             },
10634             removed => {
10635             }
10636             },
10637             5.021006 => {
10638             delta_from => 5.021005,
10639             changed => {
10640             'App::Prove' => '3.34',
10641             'App::Prove::State' => '3.34',
10642             'App::Prove::State::Result'=> '3.34',
10643             'App::Prove::State::Result::Test'=> '3.34',
10644             'B' => '1.53',
10645             'B::Concise' => '0.995',
10646             'B::Deparse' => '1.30',
10647             'B::Op_private' => '5.021006',
10648             'CPAN::Meta' => '2.143240',
10649             'CPAN::Meta::Converter' => '2.143240',
10650             'CPAN::Meta::Feature' => '2.143240',
10651             'CPAN::Meta::History' => '2.143240',
10652             'CPAN::Meta::Merge' => '2.143240',
10653             'CPAN::Meta::Prereqs' => '2.143240',
10654             'CPAN::Meta::Requirements'=> '2.130',
10655             'CPAN::Meta::Spec' => '2.143240',
10656             'CPAN::Meta::Validator' => '2.143240',
10657             'Config' => '5.021006',
10658             'Devel::Peek' => '1.19',
10659             'Digest::SHA' => '5.93',
10660             'DynaLoader' => '1.28',
10661             'Encode' => '2.64',
10662             'Exporter' => '5.72',
10663             'Exporter::Heavy' => '5.72',
10664             'ExtUtils::Command::MM' => '7.02',
10665             'ExtUtils::Liblist' => '7.02',
10666             'ExtUtils::Liblist::Kid'=> '7.02',
10667             'ExtUtils::MM' => '7.02',
10668             'ExtUtils::MM_AIX' => '7.02',
10669             'ExtUtils::MM_Any' => '7.02',
10670             'ExtUtils::MM_BeOS' => '7.02',
10671             'ExtUtils::MM_Cygwin' => '7.02',
10672             'ExtUtils::MM_DOS' => '7.02',
10673             'ExtUtils::MM_Darwin' => '7.02',
10674             'ExtUtils::MM_MacOS' => '7.02',
10675             'ExtUtils::MM_NW5' => '7.02',
10676             'ExtUtils::MM_OS2' => '7.02',
10677             'ExtUtils::MM_QNX' => '7.02',
10678             'ExtUtils::MM_UWIN' => '7.02',
10679             'ExtUtils::MM_Unix' => '7.02',
10680             'ExtUtils::MM_VMS' => '7.02',
10681             'ExtUtils::MM_VOS' => '7.02',
10682             'ExtUtils::MM_Win32' => '7.02',
10683             'ExtUtils::MM_Win95' => '7.02',
10684             'ExtUtils::MY' => '7.02',
10685             'ExtUtils::MakeMaker' => '7.02',
10686             'ExtUtils::MakeMaker::Config'=> '7.02',
10687             'ExtUtils::MakeMaker::Locale'=> '7.02',
10688             'ExtUtils::MakeMaker::version'=> '7.02',
10689             'ExtUtils::MakeMaker::version::regex'=> '7.02',
10690             'ExtUtils::MakeMaker::version::vpp'=> '7.02',
10691             'ExtUtils::Manifest' => '1.69',
10692             'ExtUtils::Mkbootstrap' => '7.02',
10693             'ExtUtils::Mksymlists' => '7.02',
10694             'ExtUtils::ParseXS' => '3.26',
10695             'ExtUtils::ParseXS::Constants'=> '3.26',
10696             'ExtUtils::ParseXS::CountLines'=> '3.26',
10697             'ExtUtils::ParseXS::Eval'=> '3.26',
10698             'ExtUtils::ParseXS::Utilities'=> '3.26',
10699             'ExtUtils::testlib' => '7.02',
10700             'File::Spec::VMS' => '3.52',
10701             'HTTP::Tiny' => '0.051',
10702             'I18N::Langinfo' => '0.12',
10703             'IO::Socket' => '1.38',
10704             'Module::CoreList' => '5.20141120',
10705             'Module::CoreList::TieHashDelta'=> '5.20141120',
10706             'Module::CoreList::Utils'=> '5.20141120',
10707             'POSIX' => '1.46',
10708             'PerlIO::encoding' => '0.20',
10709             'PerlIO::scalar' => '0.20',
10710             'TAP::Base' => '3.34',
10711             'TAP::Formatter::Base' => '3.34',
10712             'TAP::Formatter::Color' => '3.34',
10713             'TAP::Formatter::Console'=> '3.34',
10714             'TAP::Formatter::Console::ParallelSession'=> '3.34',
10715             'TAP::Formatter::Console::Session'=> '3.34',
10716             'TAP::Formatter::File' => '3.34',
10717             'TAP::Formatter::File::Session'=> '3.34',
10718             'TAP::Formatter::Session'=> '3.34',
10719             'TAP::Harness' => '3.34',
10720             'TAP::Harness::Env' => '3.34',
10721             'TAP::Object' => '3.34',
10722             'TAP::Parser' => '3.34',
10723             'TAP::Parser::Aggregator'=> '3.34',
10724             'TAP::Parser::Grammar' => '3.34',
10725             'TAP::Parser::Iterator' => '3.34',
10726             'TAP::Parser::Iterator::Array'=> '3.34',
10727             'TAP::Parser::Iterator::Process'=> '3.34',
10728             'TAP::Parser::Iterator::Stream'=> '3.34',
10729             'TAP::Parser::IteratorFactory'=> '3.34',
10730             'TAP::Parser::Multiplexer'=> '3.34',
10731             'TAP::Parser::Result' => '3.34',
10732             'TAP::Parser::Result::Bailout'=> '3.34',
10733             'TAP::Parser::Result::Comment'=> '3.34',
10734             'TAP::Parser::Result::Plan'=> '3.34',
10735             'TAP::Parser::Result::Pragma'=> '3.34',
10736             'TAP::Parser::Result::Test'=> '3.34',
10737             'TAP::Parser::Result::Unknown'=> '3.34',
10738             'TAP::Parser::Result::Version'=> '3.34',
10739             'TAP::Parser::Result::YAML'=> '3.34',
10740             'TAP::Parser::ResultFactory'=> '3.34',
10741             'TAP::Parser::Scheduler'=> '3.34',
10742             'TAP::Parser::Scheduler::Job'=> '3.34',
10743             'TAP::Parser::Scheduler::Spinner'=> '3.34',
10744             'TAP::Parser::Source' => '3.34',
10745             'TAP::Parser::SourceHandler'=> '3.34',
10746             'TAP::Parser::SourceHandler::Executable'=> '3.34',
10747             'TAP::Parser::SourceHandler::File'=> '3.34',
10748             'TAP::Parser::SourceHandler::Handle'=> '3.34',
10749             'TAP::Parser::SourceHandler::Perl'=> '3.34',
10750             'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
10751             'TAP::Parser::YAMLish::Reader'=> '3.34',
10752             'TAP::Parser::YAMLish::Writer'=> '3.34',
10753             'Test::Builder' => '1.301001_075',
10754             'Test::Builder::Module' => '1.301001_075',
10755             'Test::Builder::Tester' => '1.301001_075',
10756             'Test::Builder::Tester::Color'=> '1.301001_075',
10757             'Test::Harness' => '3.34',
10758             'Test::More' => '1.301001_075',
10759             'Test::More::DeepCheck' => undef,
10760             'Test::More::DeepCheck::Strict'=> undef,
10761             'Test::More::DeepCheck::Tolerant'=> undef,
10762             'Test::More::Tools' => undef,
10763             'Test::MostlyLike' => undef,
10764             'Test::Simple' => '1.301001_075',
10765             'Test::Stream' => '1.301001_075',
10766             'Test::Stream::ArrayBase'=> undef,
10767             'Test::Stream::ArrayBase::Meta'=> undef,
10768             'Test::Stream::Carp' => undef,
10769             'Test::Stream::Context' => undef,
10770             'Test::Stream::Event' => undef,
10771             'Test::Stream::Event::Bail'=> undef,
10772             'Test::Stream::Event::Child'=> undef,
10773             'Test::Stream::Event::Diag'=> undef,
10774             'Test::Stream::Event::Finish'=> undef,
10775             'Test::Stream::Event::Note'=> undef,
10776             'Test::Stream::Event::Ok'=> undef,
10777             'Test::Stream::Event::Plan'=> undef,
10778             'Test::Stream::Event::Subtest'=> undef,
10779             'Test::Stream::ExitMagic'=> undef,
10780             'Test::Stream::ExitMagic::Context'=> undef,
10781             'Test::Stream::Exporter'=> undef,
10782             'Test::Stream::Exporter::Meta'=> undef,
10783             'Test::Stream::IOSets' => undef,
10784             'Test::Stream::Meta' => undef,
10785             'Test::Stream::PackageUtil'=> undef,
10786             'Test::Stream::Tester' => undef,
10787             'Test::Stream::Tester::Checks'=> undef,
10788             'Test::Stream::Tester::Checks::Event'=> undef,
10789             'Test::Stream::Tester::Events'=> undef,
10790             'Test::Stream::Tester::Events::Event'=> undef,
10791             'Test::Stream::Tester::Grab'=> undef,
10792             'Test::Stream::Threads' => undef,
10793             'Test::Stream::Toolset' => undef,
10794             'Test::Stream::Util' => undef,
10795             'Test::Tester' => '1.301001_075',
10796             'Test::Tester::Capture' => undef,
10797             'Test::use::ok' => '1.301001_075',
10798             'Unicode::UCD' => '0.59',
10799             'XS::APItest' => '0.68',
10800             'XSLoader' => '0.19',
10801             'experimental' => '0.013',
10802             'locale' => '1.05',
10803             'ok' => '1.301001_075',
10804             'overload' => '1.24',
10805             're' => '0.28',
10806             'warnings' => '1.29',
10807             },
10808             removed => {
10809             }
10810             },
10811             5.021007 => {
10812             delta_from => 5.021006,
10813             changed => {
10814             'Archive::Tar' => '2.04',
10815             'Archive::Tar::Constant'=> '2.04',
10816             'Archive::Tar::File' => '2.04',
10817             'B' => '1.54',
10818             'B::Concise' => '0.996',
10819             'B::Deparse' => '1.31',
10820             'B::Op_private' => '5.021007',
10821             'B::Showlex' => '1.05',
10822             'Compress::Raw::Bzip2' => '2.067',
10823             'Compress::Raw::Zlib' => '2.067',
10824             'Compress::Zlib' => '2.067',
10825             'Config' => '5.021007',
10826             'Cwd' => '3.54',
10827             'DB_File' => '1.834',
10828             'Data::Dumper' => '2.155',
10829             'Devel::PPPort' => '3.25',
10830             'Devel::Peek' => '1.20',
10831             'DynaLoader' => '1.29',
10832             'Encode' => '2.67',
10833             'Errno' => '1.22',
10834             'ExtUtils::CBuilder' => '0.280221',
10835             'ExtUtils::CBuilder::Base'=> '0.280221',
10836             'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
10837             'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
10838             'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
10839             'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
10840             'ExtUtils::CBuilder::Platform::android'=> '0.280221',
10841             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
10842             'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
10843             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
10844             'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
10845             'ExtUtils::Command::MM' => '7.04',
10846             'ExtUtils::Liblist' => '7.04',
10847             'ExtUtils::Liblist::Kid'=> '7.04',
10848             'ExtUtils::MM' => '7.04',
10849             'ExtUtils::MM_AIX' => '7.04',
10850             'ExtUtils::MM_Any' => '7.04',
10851             'ExtUtils::MM_BeOS' => '7.04',
10852             'ExtUtils::MM_Cygwin' => '7.04',
10853             'ExtUtils::MM_DOS' => '7.04',
10854             'ExtUtils::MM_Darwin' => '7.04',
10855             'ExtUtils::MM_MacOS' => '7.04',
10856             'ExtUtils::MM_NW5' => '7.04',
10857             'ExtUtils::MM_OS2' => '7.04',
10858             'ExtUtils::MM_QNX' => '7.04',
10859             'ExtUtils::MM_UWIN' => '7.04',
10860             'ExtUtils::MM_Unix' => '7.04',
10861             'ExtUtils::MM_VMS' => '7.04',
10862             'ExtUtils::MM_VOS' => '7.04',
10863             'ExtUtils::MM_Win32' => '7.04',
10864             'ExtUtils::MM_Win95' => '7.04',
10865             'ExtUtils::MY' => '7.04',
10866             'ExtUtils::MakeMaker' => '7.04',
10867             'ExtUtils::MakeMaker::Config'=> '7.04',
10868             'ExtUtils::MakeMaker::Locale'=> '7.04',
10869             'ExtUtils::MakeMaker::version'=> '7.04',
10870             'ExtUtils::MakeMaker::version::regex'=> '7.04',
10871             'ExtUtils::MakeMaker::version::vpp'=> '7.04',
10872             'ExtUtils::Mkbootstrap' => '7.04',
10873             'ExtUtils::Mksymlists' => '7.04',
10874             'ExtUtils::ParseXS' => '3.27',
10875             'ExtUtils::ParseXS::Constants'=> '3.27',
10876             'ExtUtils::ParseXS::CountLines'=> '3.27',
10877             'ExtUtils::ParseXS::Eval'=> '3.27',
10878             'ExtUtils::ParseXS::Utilities'=> '3.27',
10879             'ExtUtils::testlib' => '7.04',
10880             'File::Spec' => '3.53',
10881             'File::Spec::Cygwin' => '3.54',
10882             'File::Spec::Epoc' => '3.54',
10883             'File::Spec::Functions' => '3.54',
10884             'File::Spec::Mac' => '3.54',
10885             'File::Spec::OS2' => '3.54',
10886             'File::Spec::Unix' => '3.54',
10887             'File::Spec::VMS' => '3.54',
10888             'File::Spec::Win32' => '3.54',
10889             'Filter::Util::Call' => '1.51',
10890             'HTTP::Tiny' => '0.053',
10891             'IO' => '1.35',
10892             'IO::Compress::Adapter::Bzip2'=> '2.067',
10893             'IO::Compress::Adapter::Deflate'=> '2.067',
10894             'IO::Compress::Adapter::Identity'=> '2.067',
10895             'IO::Compress::Base' => '2.067',
10896             'IO::Compress::Base::Common'=> '2.067',
10897             'IO::Compress::Bzip2' => '2.067',
10898             'IO::Compress::Deflate' => '2.067',
10899             'IO::Compress::Gzip' => '2.067',
10900             'IO::Compress::Gzip::Constants'=> '2.067',
10901             'IO::Compress::RawDeflate'=> '2.067',
10902             'IO::Compress::Zip' => '2.067',
10903             'IO::Compress::Zip::Constants'=> '2.067',
10904             'IO::Compress::Zlib::Constants'=> '2.067',
10905             'IO::Compress::Zlib::Extra'=> '2.067',
10906             'IO::Socket::IP' => '0.34',
10907             'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
10908             'IO::Uncompress::Adapter::Identity'=> '2.067',
10909             'IO::Uncompress::Adapter::Inflate'=> '2.067',
10910             'IO::Uncompress::AnyInflate'=> '2.067',
10911             'IO::Uncompress::AnyUncompress'=> '2.067',
10912             'IO::Uncompress::Base' => '2.067',
10913             'IO::Uncompress::Bunzip2'=> '2.067',
10914             'IO::Uncompress::Gunzip'=> '2.067',
10915             'IO::Uncompress::Inflate'=> '2.067',
10916             'IO::Uncompress::RawInflate'=> '2.067',
10917             'IO::Uncompress::Unzip' => '2.067',
10918             'Locale::Codes' => '3.33',
10919             'Locale::Codes::Constants'=> '3.33',
10920             'Locale::Codes::Country'=> '3.33',
10921             'Locale::Codes::Country_Codes'=> '3.33',
10922             'Locale::Codes::Country_Retired'=> '3.33',
10923             'Locale::Codes::Currency'=> '3.33',
10924             'Locale::Codes::Currency_Codes'=> '3.33',
10925             'Locale::Codes::Currency_Retired'=> '3.33',
10926             'Locale::Codes::LangExt'=> '3.33',
10927             'Locale::Codes::LangExt_Codes'=> '3.33',
10928             'Locale::Codes::LangExt_Retired'=> '3.33',
10929             'Locale::Codes::LangFam'=> '3.33',
10930             'Locale::Codes::LangFam_Codes'=> '3.33',
10931             'Locale::Codes::LangFam_Retired'=> '3.33',
10932             'Locale::Codes::LangVar'=> '3.33',
10933             'Locale::Codes::LangVar_Codes'=> '3.33',
10934             'Locale::Codes::LangVar_Retired'=> '3.33',
10935             'Locale::Codes::Language'=> '3.33',
10936             'Locale::Codes::Language_Codes'=> '3.33',
10937             'Locale::Codes::Language_Retired'=> '3.33',
10938             'Locale::Codes::Script' => '3.33',
10939             'Locale::Codes::Script_Codes'=> '3.33',
10940             'Locale::Codes::Script_Retired'=> '3.33',
10941             'Locale::Country' => '3.33',
10942             'Locale::Currency' => '3.33',
10943             'Locale::Language' => '3.33',
10944             'Locale::Maketext' => '1.26',
10945             'Locale::Script' => '3.33',
10946             'Module::CoreList' => '5.20141220',
10947             'Module::CoreList::TieHashDelta'=> '5.20141220',
10948             'Module::CoreList::Utils'=> '5.20141220',
10949             'NDBM_File' => '1.14',
10950             'Net::Cmd' => '3.04',
10951             'Net::Config' => '3.04',
10952             'Net::Domain' => '3.04',
10953             'Net::FTP' => '3.04',
10954             'Net::FTP::A' => '3.04',
10955             'Net::FTP::E' => '3.04',
10956             'Net::FTP::I' => '3.04',
10957             'Net::FTP::L' => '3.04',
10958             'Net::FTP::dataconn' => '3.04',
10959             'Net::NNTP' => '3.04',
10960             'Net::Netrc' => '3.04',
10961             'Net::POP3' => '3.04',
10962             'Net::SMTP' => '3.04',
10963             'Net::Time' => '3.04',
10964             'Opcode' => '1.30',
10965             'POSIX' => '1.48',
10966             'PerlIO::scalar' => '0.21',
10967             'Pod::Escapes' => '1.07',
10968             'SDBM_File' => '1.12',
10969             'Storable' => '2.52',
10970             'Sys::Hostname' => '1.20',
10971             'Test::Builder' => '1.301001_090',
10972             'Test::Builder::Module' => '1.301001_090',
10973             'Test::Builder::Tester' => '1.301001_090',
10974             'Test::Builder::Tester::Color'=> '1.301001_090',
10975             'Test::CanFork' => undef,
10976             'Test::CanThread' => undef,
10977             'Test::More' => '1.301001_090',
10978             'Test::Simple' => '1.301001_090',
10979             'Test::Stream' => '1.301001_090',
10980             'Test::Stream::API' => undef,
10981             'Test::Stream::ForceExit'=> undef,
10982             'Test::Stream::Subtest' => undef,
10983             'Test::Tester' => '1.301001_090',
10984             'Test::use::ok' => '1.301001_090',
10985             'Unicode::Collate' => '1.09',
10986             'Unicode::Collate::CJK::Big5'=> '1.09',
10987             'Unicode::Collate::CJK::GB2312'=> '1.09',
10988             'Unicode::Collate::CJK::JISX0208'=> '1.09',
10989             'Unicode::Collate::CJK::Korean'=> '1.09',
10990             'Unicode::Collate::CJK::Pinyin'=> '1.09',
10991             'Unicode::Collate::CJK::Stroke'=> '1.09',
10992             'Unicode::Collate::CJK::Zhuyin'=> '1.09',
10993             'Unicode::Collate::Locale'=> '1.09',
10994             'XS::APItest' => '0.69',
10995             'XSLoader' => '0.20',
10996             '_charnames' => '1.43',
10997             'arybase' => '0.09',
10998             'charnames' => '1.43',
10999             'feature' => '1.39',
11000             'mro' => '1.17',
11001             'ok' => '1.301001_090',
11002             'strict' => '1.09',
11003             'threads' => '1.96_001',
11004             },
11005             removed => {
11006             }
11007             },
11008             5.021008 => {
11009             delta_from => 5.021007,
11010             changed => {
11011             'App::Prove' => '3.35',
11012             'App::Prove::State' => '3.35',
11013             'App::Prove::State::Result'=> '3.35',
11014             'App::Prove::State::Result::Test'=> '3.35',
11015             'B' => '1.55',
11016             'B::Deparse' => '1.32',
11017             'B::Op_private' => '5.021008',
11018             'CPAN::Meta::Requirements'=> '2.131',
11019             'Compress::Raw::Bzip2' => '2.068',
11020             'Compress::Raw::Zlib' => '2.068',
11021             'Compress::Zlib' => '2.068',
11022             'Config' => '5.021008',
11023             'DB_File' => '1.835',
11024             'Data::Dumper' => '2.156',
11025             'Devel::PPPort' => '3.28',
11026             'Devel::Peek' => '1.21',
11027             'Digest::MD5' => '2.54',
11028             'Digest::SHA' => '5.95',
11029             'DynaLoader' => '1.30',
11030             'ExtUtils::Command' => '1.20',
11031             'ExtUtils::Manifest' => '1.70',
11032             'Fatal' => '2.26',
11033             'File::Glob' => '1.24',
11034             'Filter::Util::Call' => '1.54',
11035             'Getopt::Long' => '2.43',
11036             'IO::Compress::Adapter::Bzip2'=> '2.068',
11037             'IO::Compress::Adapter::Deflate'=> '2.068',
11038             'IO::Compress::Adapter::Identity'=> '2.068',
11039             'IO::Compress::Base' => '2.068',
11040             'IO::Compress::Base::Common'=> '2.068',
11041             'IO::Compress::Bzip2' => '2.068',
11042             'IO::Compress::Deflate' => '2.068',
11043             'IO::Compress::Gzip' => '2.068',
11044             'IO::Compress::Gzip::Constants'=> '2.068',
11045             'IO::Compress::RawDeflate'=> '2.068',
11046             'IO::Compress::Zip' => '2.068',
11047             'IO::Compress::Zip::Constants'=> '2.068',
11048             'IO::Compress::Zlib::Constants'=> '2.068',
11049             'IO::Compress::Zlib::Extra'=> '2.068',
11050             'IO::Socket::IP' => '0.36',
11051             'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
11052             'IO::Uncompress::Adapter::Identity'=> '2.068',
11053             'IO::Uncompress::Adapter::Inflate'=> '2.068',
11054             'IO::Uncompress::AnyInflate'=> '2.068',
11055             'IO::Uncompress::AnyUncompress'=> '2.068',
11056             'IO::Uncompress::Base' => '2.068',
11057             'IO::Uncompress::Bunzip2'=> '2.068',
11058             'IO::Uncompress::Gunzip'=> '2.068',
11059             'IO::Uncompress::Inflate'=> '2.068',
11060             'IO::Uncompress::RawInflate'=> '2.068',
11061             'IO::Uncompress::Unzip' => '2.068',
11062             'MIME::Base64' => '3.15',
11063             'Module::CoreList' => '5.20150220',
11064             'Module::CoreList::TieHashDelta'=> '5.20150220',
11065             'Module::CoreList::Utils'=> '5.20150220',
11066             'Module::Load::Conditional'=> '0.64',
11067             'Module::Metadata' => '1.000026',
11068             'Net::Cmd' => '3.05',
11069             'Net::Config' => '3.05',
11070             'Net::Domain' => '3.05',
11071             'Net::FTP' => '3.05',
11072             'Net::FTP::A' => '3.05',
11073             'Net::FTP::E' => '3.05',
11074             'Net::FTP::I' => '3.05',
11075             'Net::FTP::L' => '3.05',
11076             'Net::FTP::dataconn' => '3.05',
11077             'Net::NNTP' => '3.05',
11078             'Net::Netrc' => '3.05',
11079             'Net::POP3' => '3.05',
11080             'Net::SMTP' => '3.05',
11081             'Net::Time' => '3.05',
11082             'Opcode' => '1.31',
11083             'POSIX' => '1.49',
11084             'PerlIO::encoding' => '0.21',
11085             'Pod::Simple' => '3.29',
11086             'Pod::Simple::BlackBox' => '3.29',
11087             'Pod::Simple::Checker' => '3.29',
11088             'Pod::Simple::Debug' => '3.29',
11089             'Pod::Simple::DumpAsText'=> '3.29',
11090             'Pod::Simple::DumpAsXML'=> '3.29',
11091             'Pod::Simple::HTML' => '3.29',
11092             'Pod::Simple::HTMLBatch'=> '3.29',
11093             'Pod::Simple::LinkSection'=> '3.29',
11094             'Pod::Simple::Methody' => '3.29',
11095             'Pod::Simple::Progress' => '3.29',
11096             'Pod::Simple::PullParser'=> '3.29',
11097             'Pod::Simple::PullParserEndToken'=> '3.29',
11098             'Pod::Simple::PullParserStartToken'=> '3.29',
11099             'Pod::Simple::PullParserTextToken'=> '3.29',
11100             'Pod::Simple::PullParserToken'=> '3.29',
11101             'Pod::Simple::RTF' => '3.29',
11102             'Pod::Simple::Search' => '3.29',
11103             'Pod::Simple::SimpleTree'=> '3.29',
11104             'Pod::Simple::Text' => '3.29',
11105             'Pod::Simple::TextContent'=> '3.29',
11106             'Pod::Simple::TiedOutFH'=> '3.29',
11107             'Pod::Simple::Transcode'=> '3.29',
11108             'Pod::Simple::TranscodeDumb'=> '3.29',
11109             'Pod::Simple::TranscodeSmart'=> '3.29',
11110             'Pod::Simple::XHTML' => '3.29',
11111             'Pod::Simple::XMLOutStream'=> '3.29',
11112             'SDBM_File' => '1.13',
11113             'Safe' => '2.39',
11114             'TAP::Base' => '3.35',
11115             'TAP::Formatter::Base' => '3.35',
11116             'TAP::Formatter::Color' => '3.35',
11117             'TAP::Formatter::Console'=> '3.35',
11118             'TAP::Formatter::Console::ParallelSession'=> '3.35',
11119             'TAP::Formatter::Console::Session'=> '3.35',
11120             'TAP::Formatter::File' => '3.35',
11121             'TAP::Formatter::File::Session'=> '3.35',
11122             'TAP::Formatter::Session'=> '3.35',
11123             'TAP::Harness' => '3.35',
11124             'TAP::Harness::Env' => '3.35',
11125             'TAP::Object' => '3.35',
11126             'TAP::Parser' => '3.35',
11127             'TAP::Parser::Aggregator'=> '3.35',
11128             'TAP::Parser::Grammar' => '3.35',
11129             'TAP::Parser::Iterator' => '3.35',
11130             'TAP::Parser::Iterator::Array'=> '3.35',
11131             'TAP::Parser::Iterator::Process'=> '3.35',
11132             'TAP::Parser::Iterator::Stream'=> '3.35',
11133             'TAP::Parser::IteratorFactory'=> '3.35',
11134             'TAP::Parser::Multiplexer'=> '3.35',
11135             'TAP::Parser::Result' => '3.35',
11136             'TAP::Parser::Result::Bailout'=> '3.35',
11137             'TAP::Parser::Result::Comment'=> '3.35',
11138             'TAP::Parser::Result::Plan'=> '3.35',
11139             'TAP::Parser::Result::Pragma'=> '3.35',
11140             'TAP::Parser::Result::Test'=> '3.35',
11141             'TAP::Parser::Result::Unknown'=> '3.35',
11142             'TAP::Parser::Result::Version'=> '3.35',
11143             'TAP::Parser::Result::YAML'=> '3.35',
11144             'TAP::Parser::ResultFactory'=> '3.35',
11145             'TAP::Parser::Scheduler'=> '3.35',
11146             'TAP::Parser::Scheduler::Job'=> '3.35',
11147             'TAP::Parser::Scheduler::Spinner'=> '3.35',
11148             'TAP::Parser::Source' => '3.35',
11149             'TAP::Parser::SourceHandler'=> '3.35',
11150             'TAP::Parser::SourceHandler::Executable'=> '3.35',
11151             'TAP::Parser::SourceHandler::File'=> '3.35',
11152             'TAP::Parser::SourceHandler::Handle'=> '3.35',
11153             'TAP::Parser::SourceHandler::Perl'=> '3.35',
11154             'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
11155             'TAP::Parser::YAMLish::Reader'=> '3.35',
11156             'TAP::Parser::YAMLish::Writer'=> '3.35',
11157             'Test::Builder' => '1.301001_097',
11158             'Test::Builder::Module' => '1.301001_097',
11159             'Test::Builder::Tester' => '1.301001_097',
11160             'Test::Builder::Tester::Color'=> '1.301001_097',
11161             'Test::Harness' => '3.35',
11162             'Test::More' => '1.301001_097',
11163             'Test::Simple' => '1.301001_097',
11164             'Test::Stream' => '1.301001_097',
11165             'Test::Stream::Block' => undef,
11166             'Test::Tester' => '1.301001_097',
11167             'Test::Tester::CaptureRunner'=> undef,
11168             'Test::Tester::Delegate'=> undef,
11169             'Test::use::ok' => '1.301001_097',
11170             'Unicode::Collate' => '1.10',
11171             'Unicode::Collate::CJK::Big5'=> '1.10',
11172             'Unicode::Collate::CJK::GB2312'=> '1.10',
11173             'Unicode::Collate::CJK::JISX0208'=> '1.10',
11174             'Unicode::Collate::CJK::Korean'=> '1.10',
11175             'Unicode::Collate::CJK::Pinyin'=> '1.10',
11176             'Unicode::Collate::CJK::Stroke'=> '1.10',
11177             'Unicode::Collate::CJK::Zhuyin'=> '1.10',
11178             'Unicode::Collate::Locale'=> '1.10',
11179             'VMS::DCLsym' => '1.06',
11180             'XS::APItest' => '0.70',
11181             'arybase' => '0.10',
11182             'attributes' => '0.25',
11183             'autodie' => '2.26',
11184             'autodie::Scope::Guard' => '2.26',
11185             'autodie::Scope::GuardStack'=> '2.26',
11186             'autodie::ScopeUtil' => '2.26',
11187             'autodie::exception' => '2.26',
11188             'autodie::exception::system'=> '2.26',
11189             'autodie::hints' => '2.26',
11190             'autodie::skip' => '2.26',
11191             'ok' => '1.301001_097',
11192             're' => '0.30',
11193             'warnings' => '1.30',
11194             },
11195             removed => {
11196             }
11197             },
11198             5.020002 => {
11199             delta_from => 5.020001,
11200             changed => {
11201             'CPAN::Author' => '5.5002',
11202             'CPAN::CacheMgr' => '5.5002',
11203             'CPAN::FTP' => '5.5006',
11204             'CPAN::HTTP::Client' => '1.9601',
11205             'CPAN::HandleConfig' => '5.5005',
11206             'CPAN::Index' => '1.9601',
11207             'CPAN::LWP::UserAgent' => '1.9601',
11208             'CPAN::Mirrors' => '1.9601',
11209             'Config' => '5.020002',
11210             'Cwd' => '3.48_01',
11211             'Data::Dumper' => '2.151_01',
11212             'Errno' => '1.20_05',
11213             'File::Spec' => '3.48_01',
11214             'File::Spec::Cygwin' => '3.48_01',
11215             'File::Spec::Epoc' => '3.48_01',
11216             'File::Spec::Functions' => '3.48_01',
11217             'File::Spec::Mac' => '3.48_01',
11218             'File::Spec::OS2' => '3.48_01',
11219             'File::Spec::Unix' => '3.48_01',
11220             'File::Spec::VMS' => '3.48_01',
11221             'File::Spec::Win32' => '3.48_01',
11222             'IO::Socket' => '1.38',
11223             'Module::CoreList' => '5.20150214',
11224             'Module::CoreList::TieHashDelta'=> '5.20150214',
11225             'Module::CoreList::Utils'=> '5.20150214',
11226             'PerlIO::scalar' => '0.18_01',
11227             'Pod::PlainText' => '2.07',
11228             'Storable' => '2.49_01',
11229             'VMS::DCLsym' => '1.05_01',
11230             'VMS::Stdio' => '2.41',
11231             'attributes' => '0.23',
11232             'feature' => '1.36_01',
11233             },
11234             removed => {
11235             }
11236             },
11237             5.021009 => {
11238             delta_from => 5.021008,
11239             changed => {
11240             'B' => '1.56',
11241             'B::Debug' => '1.23',
11242             'B::Deparse' => '1.33',
11243             'B::Op_private' => '5.021009',
11244             'Benchmark' => '1.20',
11245             'CPAN::Author' => '5.5002',
11246             'CPAN::CacheMgr' => '5.5002',
11247             'CPAN::FTP' => '5.5006',
11248             'CPAN::HTTP::Client' => '1.9601',
11249             'CPAN::HandleConfig' => '5.5005',
11250             'CPAN::Index' => '1.9601',
11251             'CPAN::LWP::UserAgent' => '1.9601',
11252             'CPAN::Meta::Requirements'=> '2.132',
11253             'CPAN::Mirrors' => '1.9601',
11254             'Carp' => '1.35',
11255             'Carp::Heavy' => '1.35',
11256             'Config' => '5.021009',
11257             'Config::Perl::V' => '0.23',
11258             'Data::Dumper' => '2.157',
11259             'Devel::Peek' => '1.22',
11260             'DynaLoader' => '1.31',
11261             'Encode' => '2.70',
11262             'Encode::MIME::Header' => '2.16',
11263             'Errno' => '1.23',
11264             'ExtUtils::Miniperl' => '1.04',
11265             'HTTP::Tiny' => '0.054',
11266             'Module::CoreList' => '5.20150220',
11267             'Module::CoreList::TieHashDelta'=> '5.20150220',
11268             'Module::CoreList::Utils'=> '5.20150220',
11269             'Opcode' => '1.32',
11270             'POSIX' => '1.51',
11271             'Perl::OSType' => '1.008',
11272             'PerlIO::scalar' => '0.22',
11273             'Pod::Find' => '1.63',
11274             'Pod::InputObjects' => '1.63',
11275             'Pod::ParseUtils' => '1.63',
11276             'Pod::Parser' => '1.63',
11277             'Pod::Perldoc' => '3.25',
11278             'Pod::Perldoc::BaseTo' => '3.25',
11279             'Pod::Perldoc::GetOptsOO'=> '3.25',
11280             'Pod::Perldoc::ToANSI' => '3.25',
11281             'Pod::Perldoc::ToChecker'=> '3.25',
11282             'Pod::Perldoc::ToMan' => '3.25',
11283             'Pod::Perldoc::ToNroff' => '3.25',
11284             'Pod::Perldoc::ToPod' => '3.25',
11285             'Pod::Perldoc::ToRtf' => '3.25',
11286             'Pod::Perldoc::ToTerm' => '3.25',
11287             'Pod::Perldoc::ToText' => '3.25',
11288             'Pod::Perldoc::ToTk' => '3.25',
11289             'Pod::Perldoc::ToXml' => '3.25',
11290             'Pod::PlainText' => '2.07',
11291             'Pod::Select' => '1.63',
11292             'Socket' => '2.018',
11293             'Storable' => '2.53',
11294             'Test::Builder' => '1.301001_098',
11295             'Test::Builder::Module' => '1.301001_098',
11296             'Test::Builder::Tester' => '1.301001_098',
11297             'Test::Builder::Tester::Color'=> '1.301001_098',
11298             'Test::More' => '1.301001_098',
11299             'Test::Simple' => '1.301001_098',
11300             'Test::Stream' => '1.301001_098',
11301             'Test::Tester' => '1.301001_098',
11302             'Test::use::ok' => '1.301001_098',
11303             'Unicode::Collate' => '1.11',
11304             'Unicode::Collate::CJK::Big5'=> '1.11',
11305             'Unicode::Collate::CJK::GB2312'=> '1.11',
11306             'Unicode::Collate::CJK::JISX0208'=> '1.11',
11307             'Unicode::Collate::CJK::Korean'=> '1.11',
11308             'Unicode::Collate::CJK::Pinyin'=> '1.11',
11309             'Unicode::Collate::CJK::Stroke'=> '1.11',
11310             'Unicode::Collate::CJK::Zhuyin'=> '1.11',
11311             'Unicode::Collate::Locale'=> '1.11',
11312             'Unicode::UCD' => '0.61',
11313             'VMS::Stdio' => '2.41',
11314             'Win32' => '0.51',
11315             'Win32API::File' => '0.1202',
11316             'attributes' => '0.26',
11317             'bigint' => '0.39',
11318             'bignum' => '0.39',
11319             'bigrat' => '0.39',
11320             'constant' => '1.33',
11321             'encoding' => '2.13',
11322             'feature' => '1.40',
11323             'ok' => '1.301001_098',
11324             'overload' => '1.25',
11325             'perlfaq' => '5.021009',
11326             're' => '0.31',
11327             'threads::shared' => '1.48',
11328             'warnings' => '1.31',
11329             },
11330             removed => {
11331             }
11332             },
11333             5.021010 => {
11334             delta_from => 5.021009,
11335             changed => {
11336             'App::Cpan' => '1.63',
11337             'B' => '1.57',
11338             'B::Deparse' => '1.34',
11339             'B::Op_private' => '5.021010',
11340             'Benchmark' => '1.2',
11341             'CPAN' => '2.10',
11342             'CPAN::Distribution' => '2.04',
11343             'CPAN::FirstTime' => '5.5307',
11344             'CPAN::HTTP::Credentials'=> '1.9601',
11345             'CPAN::HandleConfig' => '5.5006',
11346             'CPAN::Meta' => '2.150001',
11347             'CPAN::Meta::Converter' => '2.150001',
11348             'CPAN::Meta::Feature' => '2.150001',
11349             'CPAN::Meta::History' => '2.150001',
11350             'CPAN::Meta::Merge' => '2.150001',
11351             'CPAN::Meta::Prereqs' => '2.150001',
11352             'CPAN::Meta::Spec' => '2.150001',
11353             'CPAN::Meta::Validator' => '2.150001',
11354             'CPAN::Module' => '5.5002',
11355             'CPAN::Plugin' => '0.95',
11356             'CPAN::Plugin::Specfile'=> '0.01',
11357             'CPAN::Shell' => '5.5005',
11358             'Carp' => '1.36',
11359             'Carp::Heavy' => '1.36',
11360             'Config' => '5.02101',
11361             'Cwd' => '3.55',
11362             'DB' => '1.08',
11363             'Data::Dumper' => '2.158',
11364             'Devel::PPPort' => '3.31',
11365             'DynaLoader' => '1.32',
11366             'Encode' => '2.72',
11367             'Encode::Alias' => '2.19',
11368             'File::Spec' => '3.55',
11369             'File::Spec::Cygwin' => '3.55',
11370             'File::Spec::Epoc' => '3.55',
11371             'File::Spec::Functions' => '3.55',
11372             'File::Spec::Mac' => '3.55',
11373             'File::Spec::OS2' => '3.55',
11374             'File::Spec::Unix' => '3.55',
11375             'File::Spec::VMS' => '3.55',
11376             'File::Spec::Win32' => '3.55',
11377             'Getopt::Long' => '2.45',
11378             'Locale::Codes' => '3.34',
11379             'Locale::Codes::Constants'=> '3.34',
11380             'Locale::Codes::Country'=> '3.34',
11381             'Locale::Codes::Country_Codes'=> '3.34',
11382             'Locale::Codes::Country_Retired'=> '3.34',
11383             'Locale::Codes::Currency'=> '3.34',
11384             'Locale::Codes::Currency_Codes'=> '3.34',
11385             'Locale::Codes::Currency_Retired'=> '3.34',
11386             'Locale::Codes::LangExt'=> '3.34',
11387             'Locale::Codes::LangExt_Codes'=> '3.34',
11388             'Locale::Codes::LangExt_Retired'=> '3.34',
11389             'Locale::Codes::LangFam'=> '3.34',
11390             'Locale::Codes::LangFam_Codes'=> '3.34',
11391             'Locale::Codes::LangFam_Retired'=> '3.34',
11392             'Locale::Codes::LangVar'=> '3.34',
11393             'Locale::Codes::LangVar_Codes'=> '3.34',
11394             'Locale::Codes::LangVar_Retired'=> '3.34',
11395             'Locale::Codes::Language'=> '3.34',
11396             'Locale::Codes::Language_Codes'=> '3.34',
11397             'Locale::Codes::Language_Retired'=> '3.34',
11398             'Locale::Codes::Script' => '3.34',
11399             'Locale::Codes::Script_Codes'=> '3.34',
11400             'Locale::Codes::Script_Retired'=> '3.34',
11401             'Locale::Country' => '3.34',
11402             'Locale::Currency' => '3.34',
11403             'Locale::Language' => '3.34',
11404             'Locale::Script' => '3.34',
11405             'Module::CoreList' => '5.20150320',
11406             'Module::CoreList::TieHashDelta'=> '5.20150320',
11407             'Module::CoreList::Utils'=> '5.20150320',
11408             'POSIX' => '1.52',
11409             'Pod::Functions' => '1.09',
11410             'Pod::Functions::Functions'=> '1.09',
11411             'Term::Complete' => '1.403',
11412             'Test::Builder' => '1.001014',
11413             'Test::Builder::IO::Scalar'=> '2.113',
11414             'Test::Builder::Module' => '1.001014',
11415             'Test::Builder::Tester' => '1.28',
11416             'Test::Builder::Tester::Color'=> '1.290001',
11417             'Test::More' => '1.001014',
11418             'Test::Simple' => '1.001014',
11419             'Test::Tester' => '0.114',
11420             'Test::use::ok' => '0.16',
11421             'Text::Balanced' => '2.03',
11422             'Text::ParseWords' => '3.30',
11423             'Unicode::Collate' => '1.12',
11424             'Unicode::Collate::CJK::Big5'=> '1.12',
11425             'Unicode::Collate::CJK::GB2312'=> '1.12',
11426             'Unicode::Collate::CJK::JISX0208'=> '1.12',
11427             'Unicode::Collate::CJK::Korean'=> '1.12',
11428             'Unicode::Collate::CJK::Pinyin'=> '1.12',
11429             'Unicode::Collate::CJK::Stroke'=> '1.12',
11430             'Unicode::Collate::CJK::Zhuyin'=> '1.12',
11431             'Unicode::Collate::Locale'=> '1.12',
11432             'XS::APItest' => '0.71',
11433             'encoding' => '2.14',
11434             'locale' => '1.06',
11435             'meta_notation' => undef,
11436             'ok' => '0.16',
11437             'parent' => '0.232',
11438             're' => '0.32',
11439             'sigtrap' => '1.08',
11440             'threads' => '2.01',
11441             'utf8' => '1.15',
11442             },
11443             removed => {
11444             'Test::CanFork' => 1,
11445             'Test::CanThread' => 1,
11446             'Test::More::DeepCheck' => 1,
11447             'Test::More::DeepCheck::Strict'=> 1,
11448             'Test::More::DeepCheck::Tolerant'=> 1,
11449             'Test::More::Tools' => 1,
11450             'Test::MostlyLike' => 1,
11451             'Test::Stream' => 1,
11452             'Test::Stream::API' => 1,
11453             'Test::Stream::ArrayBase'=> 1,
11454             'Test::Stream::ArrayBase::Meta'=> 1,
11455             'Test::Stream::Block' => 1,
11456             'Test::Stream::Carp' => 1,
11457             'Test::Stream::Context' => 1,
11458             'Test::Stream::Event' => 1,
11459             'Test::Stream::Event::Bail'=> 1,
11460             'Test::Stream::Event::Child'=> 1,
11461             'Test::Stream::Event::Diag'=> 1,
11462             'Test::Stream::Event::Finish'=> 1,
11463             'Test::Stream::Event::Note'=> 1,
11464             'Test::Stream::Event::Ok'=> 1,
11465             'Test::Stream::Event::Plan'=> 1,
11466             'Test::Stream::Event::Subtest'=> 1,
11467             'Test::Stream::ExitMagic'=> 1,
11468             'Test::Stream::ExitMagic::Context'=> 1,
11469             'Test::Stream::Exporter'=> 1,
11470             'Test::Stream::Exporter::Meta'=> 1,
11471             'Test::Stream::ForceExit'=> 1,
11472             'Test::Stream::IOSets' => 1,
11473             'Test::Stream::Meta' => 1,
11474             'Test::Stream::PackageUtil'=> 1,
11475             'Test::Stream::Subtest' => 1,
11476             'Test::Stream::Tester' => 1,
11477             'Test::Stream::Tester::Checks'=> 1,
11478             'Test::Stream::Tester::Checks::Event'=> 1,
11479             'Test::Stream::Tester::Events'=> 1,
11480             'Test::Stream::Tester::Events::Event'=> 1,
11481             'Test::Stream::Tester::Grab'=> 1,
11482             'Test::Stream::Threads' => 1,
11483             'Test::Stream::Toolset' => 1,
11484             'Test::Stream::Util' => 1,
11485             }
11486             },
11487             5.021011 => {
11488             delta_from => 5.021010,
11489             changed => {
11490             'B' => '1.58',
11491             'B::Deparse' => '1.35',
11492             'B::Op_private' => '5.021011',
11493             'CPAN' => '2.11',
11494             'Config' => '5.021011',
11495             'Config::Perl::V' => '0.24',
11496             'Cwd' => '3.56',
11497             'ExtUtils::Miniperl' => '1.05',
11498             'ExtUtils::ParseXS' => '3.28',
11499             'ExtUtils::ParseXS::Constants'=> '3.28',
11500             'ExtUtils::ParseXS::CountLines'=> '3.28',
11501             'ExtUtils::ParseXS::Eval'=> '3.28',
11502             'ExtUtils::ParseXS::Utilities'=> '3.28',
11503             'ExtUtils::Typemaps' => '3.28',
11504             'ExtUtils::Typemaps::Cmd'=> '3.28',
11505             'ExtUtils::Typemaps::InputMap'=> '3.28',
11506             'ExtUtils::Typemaps::OutputMap'=> '3.28',
11507             'ExtUtils::Typemaps::Type'=> '3.28',
11508             'File::Spec' => '3.56',
11509             'File::Spec::Cygwin' => '3.56',
11510             'File::Spec::Epoc' => '3.56',
11511             'File::Spec::Functions' => '3.56',
11512             'File::Spec::Mac' => '3.56',
11513             'File::Spec::OS2' => '3.56',
11514             'File::Spec::Unix' => '3.56',
11515             'File::Spec::VMS' => '3.56',
11516             'File::Spec::Win32' => '3.56',
11517             'IO::Socket::IP' => '0.37',
11518             'Module::CoreList' => '5.20150420',
11519             'Module::CoreList::TieHashDelta'=> '5.20150420',
11520             'Module::CoreList::Utils'=> '5.20150420',
11521             'PerlIO::mmap' => '0.014',
11522             'XS::APItest' => '0.72',
11523             'attributes' => '0.27',
11524             'if' => '0.0604',
11525             'utf8' => '1.16',
11526             'warnings' => '1.32',
11527             },
11528             removed => {
11529             }
11530             },
11531             5.022000 => {
11532             delta_from => 5.021011,
11533             changed => {
11534             'B::Op_private' => '5.022000',
11535             'Config' => '5.022',
11536             'ExtUtils::Command::MM' => '7.04_01',
11537             'ExtUtils::Liblist' => '7.04_01',
11538             'ExtUtils::Liblist::Kid'=> '7.04_01',
11539             'ExtUtils::MM' => '7.04_01',
11540             'ExtUtils::MM_AIX' => '7.04_01',
11541             'ExtUtils::MM_Any' => '7.04_01',
11542             'ExtUtils::MM_BeOS' => '7.04_01',
11543             'ExtUtils::MM_Cygwin' => '7.04_01',
11544             'ExtUtils::MM_DOS' => '7.04_01',
11545             'ExtUtils::MM_Darwin' => '7.04_01',
11546             'ExtUtils::MM_MacOS' => '7.04_01',
11547             'ExtUtils::MM_NW5' => '7.04_01',
11548             'ExtUtils::MM_OS2' => '7.04_01',
11549             'ExtUtils::MM_QNX' => '7.04_01',
11550             'ExtUtils::MM_UWIN' => '7.04_01',
11551             'ExtUtils::MM_Unix' => '7.04_01',
11552             'ExtUtils::MM_VMS' => '7.04_01',
11553             'ExtUtils::MM_VOS' => '7.04_01',
11554             'ExtUtils::MM_Win32' => '7.04_01',
11555             'ExtUtils::MM_Win95' => '7.04_01',
11556             'ExtUtils::MY' => '7.04_01',
11557             'ExtUtils::MakeMaker' => '7.04_01',
11558             'ExtUtils::MakeMaker::Config'=> '7.04_01',
11559             'ExtUtils::MakeMaker::Locale'=> '7.04_01',
11560             'ExtUtils::MakeMaker::version'=> '7.04_01',
11561             'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
11562             'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
11563             'ExtUtils::Mkbootstrap' => '7.04_01',
11564             'ExtUtils::Mksymlists' => '7.04_01',
11565             'ExtUtils::testlib' => '7.04_01',
11566             'Module::CoreList' => '5.20150520',
11567             'Module::CoreList::TieHashDelta'=> '5.20150520',
11568             'Module::CoreList::Utils'=> '5.20150520',
11569             'POSIX' => '1.53',
11570             'PerlIO::via::QuotedPrint'=> '0.08',
11571             'overload' => '1.26',
11572             'utf8' => '1.17',
11573             },
11574             removed => {
11575             }
11576             },
11577             5.023000 => {
11578             delta_from => 5.022000,
11579             changed => {
11580             'B::Op_private' => '5.023000',
11581             'CPAN::Meta' => '2.150005',
11582             'CPAN::Meta::Converter' => '2.150005',
11583             'CPAN::Meta::Feature' => '2.150005',
11584             'CPAN::Meta::History' => '2.150005',
11585             'CPAN::Meta::Merge' => '2.150005',
11586             'CPAN::Meta::Prereqs' => '2.150005',
11587             'CPAN::Meta::Requirements'=> '2.133',
11588             'CPAN::Meta::Spec' => '2.150005',
11589             'CPAN::Meta::Validator' => '2.150005',
11590             'CPAN::Meta::YAML' => '0.016',
11591             'Config' => '5.023',
11592             'Encode' => '2.73',
11593             'ExtUtils::CBuilder' => '0.280223',
11594             'ExtUtils::CBuilder::Base'=> '0.280223',
11595             'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
11596             'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
11597             'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
11598             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
11599             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
11600             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
11601             'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
11602             'ExtUtils::CBuilder::Platform::android'=> '0.280223',
11603             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
11604             'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
11605             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
11606             'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
11607             'Fatal' => '2.27',
11608             'Getopt::Long' => '2.46',
11609             'HTTP::Tiny' => '0.056',
11610             'List::Util' => '1.42_01',
11611             'List::Util::XS' => '1.42_01',
11612             'Locale::Codes' => '3.35',
11613             'Locale::Codes::Constants'=> '3.35',
11614             'Locale::Codes::Country'=> '3.35',
11615             'Locale::Codes::Country_Codes'=> '3.35',
11616             'Locale::Codes::Country_Retired'=> '3.35',
11617             'Locale::Codes::Currency'=> '3.35',
11618             'Locale::Codes::Currency_Codes'=> '3.35',
11619             'Locale::Codes::Currency_Retired'=> '3.35',
11620             'Locale::Codes::LangExt'=> '3.35',
11621             'Locale::Codes::LangExt_Codes'=> '3.35',
11622             'Locale::Codes::LangExt_Retired'=> '3.35',
11623             'Locale::Codes::LangFam'=> '3.35',
11624             'Locale::Codes::LangFam_Codes'=> '3.35',
11625             'Locale::Codes::LangFam_Retired'=> '3.35',
11626             'Locale::Codes::LangVar'=> '3.35',
11627             'Locale::Codes::LangVar_Codes'=> '3.35',
11628             'Locale::Codes::LangVar_Retired'=> '3.35',
11629             'Locale::Codes::Language'=> '3.35',
11630             'Locale::Codes::Language_Codes'=> '3.35',
11631             'Locale::Codes::Language_Retired'=> '3.35',
11632             'Locale::Codes::Script' => '3.35',
11633             'Locale::Codes::Script_Codes'=> '3.35',
11634             'Locale::Codes::Script_Retired'=> '3.35',
11635             'Locale::Country' => '3.35',
11636             'Locale::Currency' => '3.35',
11637             'Locale::Language' => '3.35',
11638             'Locale::Script' => '3.35',
11639             'Math::BigFloat' => '1.999701',
11640             'Math::BigInt' => '1.999701',
11641             'Math::BigInt::Calc' => '1.999701',
11642             'Math::BigInt::CalcEmu' => '1.999701',
11643             'Math::BigRat' => '0.260801',
11644             'Module::CoreList' => '5.20150620',
11645             'Module::CoreList::TieHashDelta'=> '5.20150620',
11646             'Module::CoreList::Utils'=> '5.20150620',
11647             'Module::Metadata' => '1.000027',
11648             'Net::Cmd' => '3.06',
11649             'Net::Config' => '3.06',
11650             'Net::Domain' => '3.06',
11651             'Net::FTP' => '3.06',
11652             'Net::FTP::A' => '3.06',
11653             'Net::FTP::E' => '3.06',
11654             'Net::FTP::I' => '3.06',
11655             'Net::FTP::L' => '3.06',
11656             'Net::FTP::dataconn' => '3.06',
11657             'Net::NNTP' => '3.06',
11658             'Net::Netrc' => '3.06',
11659             'Net::POP3' => '3.06',
11660             'Net::SMTP' => '3.06',
11661             'Net::Time' => '3.06',
11662             'POSIX' => '1.54',
11663             'Parse::CPAN::Meta' => '1.4417',
11664             'Pod::Simple' => '3.30',
11665             'Pod::Simple::BlackBox' => '3.30',
11666             'Pod::Simple::Checker' => '3.30',
11667             'Pod::Simple::Debug' => '3.30',
11668             'Pod::Simple::DumpAsText'=> '3.30',
11669             'Pod::Simple::DumpAsXML'=> '3.30',
11670             'Pod::Simple::HTML' => '3.30',
11671             'Pod::Simple::HTMLBatch'=> '3.30',
11672             'Pod::Simple::LinkSection'=> '3.30',
11673             'Pod::Simple::Methody' => '3.30',
11674             'Pod::Simple::Progress' => '3.30',
11675             'Pod::Simple::PullParser'=> '3.30',
11676             'Pod::Simple::PullParserEndToken'=> '3.30',
11677             'Pod::Simple::PullParserStartToken'=> '3.30',
11678             'Pod::Simple::PullParserTextToken'=> '3.30',
11679             'Pod::Simple::PullParserToken'=> '3.30',
11680             'Pod::Simple::RTF' => '3.30',
11681             'Pod::Simple::Search' => '3.30',
11682             'Pod::Simple::SimpleTree'=> '3.30',
11683             'Pod::Simple::Text' => '3.30',
11684             'Pod::Simple::TextContent'=> '3.30',
11685             'Pod::Simple::TiedOutFH'=> '3.30',
11686             'Pod::Simple::Transcode'=> '3.30',
11687             'Pod::Simple::TranscodeDumb'=> '3.30',
11688             'Pod::Simple::TranscodeSmart'=> '3.30',
11689             'Pod::Simple::XHTML' => '3.30',
11690             'Pod::Simple::XMLOutStream'=> '3.30',
11691             'Pod::Usage' => '1.67',
11692             'Scalar::Util' => '1.42_01',
11693             'Socket' => '2.019',
11694             'Sub::Util' => '1.42_01',
11695             'Time::Piece' => '1.30',
11696             'Time::Seconds' => '1.30',
11697             'UNIVERSAL' => '1.13',
11698             'Unicode' => '8.0.0',
11699             'XS::APItest' => '0.73',
11700             'autodie' => '2.27',
11701             'autodie::Scope::Guard' => '2.27',
11702             'autodie::Scope::GuardStack'=> '2.27',
11703             'autodie::Util' => '2.27',
11704             'autodie::exception' => '2.27',
11705             'autodie::exception::system'=> '2.27',
11706             'autodie::hints' => '2.27',
11707             'autodie::skip' => '2.27',
11708             'encoding' => '2.15',
11709             'feature' => '1.41',
11710             'parent' => '0.234',
11711             'threads' => '2.02',
11712             },
11713             removed => {
11714             }
11715             },
11716             5.023001 => {
11717             delta_from => 5.023000,
11718             changed => {
11719             'B::Op_private' => '5.023001',
11720             'Config' => '5.023001',
11721             'DynaLoader' => '1.33',
11722             'Encode' => '2.75',
11723             'Encode::MIME::Header' => '2.17',
11724             'Encode::Unicode' => '2.13',
11725             'Fatal' => '2.29',
11726             'File::Path' => '2.11',
11727             'Getopt::Long' => '2.47',
11728             'I18N::Langinfo' => '0.13',
11729             'IPC::Open3' => '1.19',
11730             'Module::CoreList' => '5.20150720',
11731             'Module::CoreList::TieHashDelta'=> '5.20150720',
11732             'Module::CoreList::Utils'=> '5.20150720',
11733             'Net::Cmd' => '3.07',
11734             'Net::Config' => '3.07',
11735             'Net::Domain' => '3.07',
11736             'Net::FTP' => '3.07',
11737             'Net::FTP::A' => '3.07',
11738             'Net::FTP::E' => '3.07',
11739             'Net::FTP::I' => '3.07',
11740             'Net::FTP::L' => '3.07',
11741             'Net::FTP::dataconn' => '3.07',
11742             'Net::NNTP' => '3.07',
11743             'Net::Netrc' => '3.07',
11744             'Net::POP3' => '3.07',
11745             'Net::SMTP' => '3.07',
11746             'Net::Time' => '3.07',
11747             'Opcode' => '1.33',
11748             'POSIX' => '1.55',
11749             'PerlIO::scalar' => '0.23',
11750             'Socket' => '2.020',
11751             'Storable' => '2.54',
11752             'Unicode::Collate' => '1.14',
11753             'Unicode::Collate::CJK::Big5'=> '1.14',
11754             'Unicode::Collate::CJK::GB2312'=> '1.14',
11755             'Unicode::Collate::CJK::JISX0208'=> '1.14',
11756             'Unicode::Collate::CJK::Korean'=> '1.14',
11757             'Unicode::Collate::CJK::Pinyin'=> '1.14',
11758             'Unicode::Collate::CJK::Stroke'=> '1.14',
11759             'Unicode::Collate::CJK::Zhuyin'=> '1.14',
11760             'Unicode::Collate::Locale'=> '1.14',
11761             'Unicode::Normalize' => '1.19',
11762             'XS::APItest' => '0.74',
11763             'XS::Typemap' => '0.14',
11764             'autodie' => '2.29',
11765             'autodie::Scope::Guard' => '2.29',
11766             'autodie::Scope::GuardStack'=> '2.29',
11767             'autodie::Util' => '2.29',
11768             'autodie::exception' => '2.29',
11769             'autodie::exception::system'=> '2.29',
11770             'autodie::hints' => '2.29',
11771             'autodie::skip' => '2.29',
11772             'encoding' => '2.16',
11773             'feature' => '1.42',
11774             'warnings' => '1.33',
11775             },
11776             removed => {
11777             'autodie::ScopeUtil' => 1,
11778             }
11779             },
11780             5.023002 => {
11781             delta_from => 5.023001,
11782             changed => {
11783             'Attribute::Handlers' => '0.99',
11784             'B::Op_private' => '5.023002',
11785             'CPAN::Meta::YAML' => '0.017',
11786             'Config' => '5.023002',
11787             'Cwd' => '3.57',
11788             'Encode' => '2.76',
11789             'ExtUtils::ParseXS' => '3.29',
11790             'ExtUtils::ParseXS::Constants'=> '3.29',
11791             'ExtUtils::ParseXS::CountLines'=> '3.29',
11792             'ExtUtils::ParseXS::Eval'=> '3.29',
11793             'ExtUtils::ParseXS::Utilities'=> '3.29',
11794             'ExtUtils::Typemaps' => '3.29',
11795             'File::Find' => '1.30',
11796             'File::Spec' => '3.57',
11797             'File::Spec::Cygwin' => '3.57',
11798             'File::Spec::Epoc' => '3.57',
11799             'File::Spec::Functions' => '3.57',
11800             'File::Spec::Mac' => '3.57',
11801             'File::Spec::OS2' => '3.57',
11802             'File::Spec::Unix' => '3.57',
11803             'File::Spec::VMS' => '3.57',
11804             'File::Spec::Win32' => '3.57',
11805             'Filter::Util::Call' => '1.55',
11806             'Hash::Util' => '0.19',
11807             'Module::CoreList' => '5.20150820',
11808             'Module::CoreList::TieHashDelta'=> '5.20150820',
11809             'Module::CoreList::Utils'=> '5.20150820',
11810             'POSIX' => '1.56',
11811             'Term::Cap' => '1.17',
11812             'Unicode::UCD' => '0.62',
11813             'perlfaq' => '5.021010',
11814             },
11815             removed => {
11816             }
11817             },
11818             5.020003 => {
11819             delta_from => 5.020002,
11820             changed => {
11821             'Config' => '5.020003',
11822             'Errno' => '1.20_06',
11823             'Module::CoreList' => '5.20150912',
11824             'Module::CoreList::TieHashDelta'=> '5.20150912',
11825             'Module::CoreList::Utils'=> '5.20150912',
11826             },
11827             removed => {
11828             }
11829             },
11830             5.023003 => {
11831             delta_from => 5.023002,
11832             changed => {
11833             'Amiga::ARexx' => '0.02',
11834             'Amiga::Exec' => '0.01',
11835             'B' => '1.59',
11836             'B::Op_private' => '5.023003',
11837             'Carp' => '1.37',
11838             'Carp::Heavy' => '1.37',
11839             'Compress::Raw::Zlib' => '2.068_01',
11840             'Config' => '5.023003',
11841             'Cwd' => '3.58',
11842             'DynaLoader' => '1.34',
11843             'Encode' => '2.77',
11844             'Encode::Unicode' => '2.14',
11845             'English' => '1.10',
11846             'Errno' => '1.24',
11847             'ExtUtils::Command' => '7.10',
11848             'ExtUtils::Command::MM' => '7.10',
11849             'ExtUtils::Liblist' => '7.10',
11850             'ExtUtils::Liblist::Kid'=> '7.10',
11851             'ExtUtils::MM' => '7.10',
11852             'ExtUtils::MM_AIX' => '7.10',
11853             'ExtUtils::MM_Any' => '7.10',
11854             'ExtUtils::MM_BeOS' => '7.10',
11855             'ExtUtils::MM_Cygwin' => '7.10',
11856             'ExtUtils::MM_DOS' => '7.10',
11857             'ExtUtils::MM_Darwin' => '7.10',
11858             'ExtUtils::MM_MacOS' => '7.10',
11859             'ExtUtils::MM_NW5' => '7.10',
11860             'ExtUtils::MM_OS2' => '7.10',
11861             'ExtUtils::MM_QNX' => '7.10',
11862             'ExtUtils::MM_UWIN' => '7.10',
11863             'ExtUtils::MM_Unix' => '7.10',
11864             'ExtUtils::MM_VMS' => '7.10',
11865             'ExtUtils::MM_VOS' => '7.10',
11866             'ExtUtils::MM_Win32' => '7.10',
11867             'ExtUtils::MM_Win95' => '7.10',
11868             'ExtUtils::MY' => '7.10',
11869             'ExtUtils::MakeMaker' => '7.10',
11870             'ExtUtils::MakeMaker::Config'=> '7.10',
11871             'ExtUtils::MakeMaker::Locale'=> '7.10',
11872             'ExtUtils::MakeMaker::version'=> '7.10',
11873             'ExtUtils::MakeMaker::version::regex'=> '7.10',
11874             'ExtUtils::MakeMaker::version::vpp'=> '7.10',
11875             'ExtUtils::Mkbootstrap' => '7.10',
11876             'ExtUtils::Mksymlists' => '7.10',
11877             'ExtUtils::ParseXS' => '3.30',
11878             'ExtUtils::ParseXS::Constants'=> '3.30',
11879             'ExtUtils::ParseXS::CountLines'=> '3.30',
11880             'ExtUtils::ParseXS::Eval'=> '3.30',
11881             'ExtUtils::ParseXS::Utilities'=> '3.30',
11882             'ExtUtils::Typemaps' => '3.30',
11883             'ExtUtils::Typemaps::Cmd'=> '3.30',
11884             'ExtUtils::Typemaps::InputMap'=> '3.30',
11885             'ExtUtils::Typemaps::OutputMap'=> '3.30',
11886             'ExtUtils::Typemaps::Type'=> '3.30',
11887             'ExtUtils::testlib' => '7.10',
11888             'File::Find' => '1.31',
11889             'File::Glob' => '1.25',
11890             'File::Spec' => '3.58',
11891             'File::Spec::AmigaOS' => '3.58',
11892             'File::Spec::Cygwin' => '3.58',
11893             'File::Spec::Epoc' => '3.58',
11894             'File::Spec::Functions' => '3.58',
11895             'File::Spec::Mac' => '3.58',
11896             'File::Spec::OS2' => '3.58',
11897             'File::Spec::Unix' => '3.58',
11898             'File::Spec::VMS' => '3.58',
11899             'File::Spec::Win32' => '3.58',
11900             'Hash::Util::FieldHash' => '1.17',
11901             'Locale::Codes' => '3.36',
11902             'Locale::Codes::Constants'=> '3.36',
11903             'Locale::Codes::Country'=> '3.36',
11904             'Locale::Codes::Country_Codes'=> '3.36',
11905             'Locale::Codes::Country_Retired'=> '3.36',
11906             'Locale::Codes::Currency'=> '3.36',
11907             'Locale::Codes::Currency_Codes'=> '3.36',
11908             'Locale::Codes::Currency_Retired'=> '3.36',
11909             'Locale::Codes::LangExt'=> '3.36',
11910             'Locale::Codes::LangExt_Codes'=> '3.36',
11911             'Locale::Codes::LangExt_Retired'=> '3.36',
11912             'Locale::Codes::LangFam'=> '3.36',
11913             'Locale::Codes::LangFam_Codes'=> '3.36',
11914             'Locale::Codes::LangFam_Retired'=> '3.36',
11915             'Locale::Codes::LangVar'=> '3.36',
11916             'Locale::Codes::LangVar_Codes'=> '3.36',
11917             'Locale::Codes::LangVar_Retired'=> '3.36',
11918             'Locale::Codes::Language'=> '3.36',
11919             'Locale::Codes::Language_Codes'=> '3.36',
11920             'Locale::Codes::Language_Retired'=> '3.36',
11921             'Locale::Codes::Script' => '3.36',
11922             'Locale::Codes::Script_Codes'=> '3.36',
11923             'Locale::Codes::Script_Retired'=> '3.36',
11924             'Locale::Country' => '3.36',
11925             'Locale::Currency' => '3.36',
11926             'Locale::Language' => '3.36',
11927             'Locale::Script' => '3.36',
11928             'Math::BigFloat::Trace' => '0.40',
11929             'Math::BigInt::Trace' => '0.40',
11930             'Module::CoreList' => '5.20150920',
11931             'Module::CoreList::TieHashDelta'=> '5.20150920',
11932             'Module::CoreList::Utils'=> '5.20150920',
11933             'OS2::DLL' => '1.06',
11934             'OS2::ExtAttr' => '0.04',
11935             'OS2::Process' => '1.11',
11936             'OS2::REXX' => '1.05',
11937             'POSIX' => '1.57',
11938             'Pod::Perldoc' => '3.25_01',
11939             'Socket' => '2.020_01',
11940             'Test' => '1.27',
11941             'Thread::Queue' => '3.06',
11942             'Time::HiRes' => '1.9727_02',
11943             'Unicode::UCD' => '0.63',
11944             'Win32' => '0.52',
11945             'XS::APItest' => '0.75',
11946             'bigint' => '0.40',
11947             'bignum' => '0.40',
11948             'bigrat' => '0.40',
11949             'encoding' => '2.17',
11950             'experimental' => '0.014',
11951             'if' => '0.0605',
11952             'locale' => '1.07',
11953             'mro' => '1.18',
11954             'threads' => '2.03',
11955             },
11956             removed => {
11957             }
11958             },
11959             5.023004 => {
11960             delta_from => 5.023003,
11961             changed => {
11962             'B' => '1.60',
11963             'B::Op_private' => '5.023004',
11964             'Compress::Raw::Bzip2' => '2.069',
11965             'Compress::Raw::Zlib' => '2.069',
11966             'Compress::Zlib' => '2.069',
11967             'Config' => '5.023004',
11968             'Devel::PPPort' => '3.32',
11969             'DynaLoader' => '1.35',
11970             'Encode' => '2.78',
11971             'ExtUtils::CBuilder' => '0.280224',
11972             'ExtUtils::CBuilder::Base'=> '0.280224',
11973             'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
11974             'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
11975             'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
11976             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
11977             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
11978             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
11979             'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
11980             'ExtUtils::CBuilder::Platform::android'=> '0.280224',
11981             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
11982             'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
11983             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
11984             'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
11985             'File::Path' => '2.12',
11986             'IO' => '1.36',
11987             'IO::Compress::Adapter::Bzip2'=> '2.069',
11988             'IO::Compress::Adapter::Deflate'=> '2.069',
11989             'IO::Compress::Adapter::Identity'=> '2.069',
11990             'IO::Compress::Base' => '2.069',
11991             'IO::Compress::Base::Common'=> '2.069',
11992             'IO::Compress::Bzip2' => '2.069',
11993             'IO::Compress::Deflate' => '2.069',
11994             'IO::Compress::Gzip' => '2.069',
11995             'IO::Compress::Gzip::Constants'=> '2.069',
11996             'IO::Compress::RawDeflate'=> '2.069',
11997             'IO::Compress::Zip' => '2.069',
11998             'IO::Compress::Zip::Constants'=> '2.069',
11999             'IO::Compress::Zlib::Constants'=> '2.069',
12000             'IO::Compress::Zlib::Extra'=> '2.069',
12001             'IO::Poll' => '0.10',
12002             'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
12003             'IO::Uncompress::Adapter::Identity'=> '2.069',
12004             'IO::Uncompress::Adapter::Inflate'=> '2.069',
12005             'IO::Uncompress::AnyInflate'=> '2.069',
12006             'IO::Uncompress::AnyUncompress'=> '2.069',
12007             'IO::Uncompress::Base' => '2.069',
12008             'IO::Uncompress::Bunzip2'=> '2.069',
12009             'IO::Uncompress::Gunzip'=> '2.069',
12010             'IO::Uncompress::Inflate'=> '2.069',
12011             'IO::Uncompress::RawInflate'=> '2.069',
12012             'IO::Uncompress::Unzip' => '2.069',
12013             'Math::BigFloat' => '1.999704',
12014             'Math::BigFloat::Trace' => '0.41',
12015             'Math::BigInt' => '1.999704',
12016             'Math::BigInt::Calc' => '1.999704',
12017             'Math::BigInt::CalcEmu' => '1.999704',
12018             'Math::BigInt::FastCalc'=> '0.34',
12019             'Math::BigInt::Trace' => '0.41',
12020             'Module::CoreList' => '5.20151020',
12021             'Module::CoreList::TieHashDelta'=> '5.20151020',
12022             'Module::CoreList::Utils'=> '5.20151020',
12023             'Module::Metadata' => '1.000029',
12024             'POSIX' => '1.58',
12025             'Perl::OSType' => '1.009',
12026             'PerlIO::encoding' => '0.22',
12027             'Socket' => '2.020_02',
12028             'Unicode::Normalize' => '1.21',
12029             'XS::APItest' => '0.76',
12030             'bigint' => '0.41',
12031             'bignum' => '0.41',
12032             'bigrat' => '0.41',
12033             'experimental' => '0.016',
12034             'if' => '0.0606',
12035             'warnings' => '1.35',
12036             },
12037             removed => {
12038             }
12039             },
12040             5.023005 => {
12041             delta_from => 5.023004,
12042             changed => {
12043             'B' => '1.61',
12044             'B::Op_private' => '5.023005',
12045             'Carp' => '1.38',
12046             'Carp::Heavy' => '1.38',
12047             'Config' => '5.023005',
12048             'Config::Perl::V' => '0.25',
12049             'Cwd' => '3.59',
12050             'Devel::Peek' => '1.23',
12051             'Dumpvalue' => '1.18',
12052             'DynaLoader' => '1.36',
12053             'File::Find' => '1.32',
12054             'File::Spec' => '3.59',
12055             'File::Spec::AmigaOS' => '3.59',
12056             'File::Spec::Cygwin' => '3.59',
12057             'File::Spec::Epoc' => '3.59',
12058             'File::Spec::Functions' => '3.59',
12059             'File::Spec::Mac' => '3.59',
12060             'File::Spec::OS2' => '3.59',
12061             'File::Spec::Unix' => '3.59',
12062             'File::Spec::VMS' => '3.59',
12063             'File::Spec::Win32' => '3.59',
12064             'Getopt::Long' => '2.48',
12065             'Hash::Util::FieldHash' => '1.18',
12066             'IPC::Open3' => '1.20',
12067             'Math::BigFloat' => '1.999710',
12068             'Math::BigInt' => '1.999710',
12069             'Math::BigInt::Calc' => '1.999710',
12070             'Math::BigInt::CalcEmu' => '1.999710',
12071             'Math::BigInt::FastCalc'=> '0.37',
12072             'Module::CoreList' => '5.20151120',
12073             'Module::CoreList::TieHashDelta'=> '5.20151120',
12074             'Module::CoreList::Utils'=> '5.20151120',
12075             'Module::Metadata' => '1.000030',
12076             'POSIX' => '1.59',
12077             'PerlIO::encoding' => '0.23',
12078             'PerlIO::mmap' => '0.015',
12079             'PerlIO::scalar' => '0.24',
12080             'PerlIO::via' => '0.16',
12081             'Pod::Simple' => '3.32',
12082             'Pod::Simple::BlackBox' => '3.32',
12083             'Pod::Simple::Checker' => '3.32',
12084             'Pod::Simple::Debug' => '3.32',
12085             'Pod::Simple::DumpAsText'=> '3.32',
12086             'Pod::Simple::DumpAsXML'=> '3.32',
12087             'Pod::Simple::HTML' => '3.32',
12088             'Pod::Simple::HTMLBatch'=> '3.32',
12089             'Pod::Simple::LinkSection'=> '3.32',
12090             'Pod::Simple::Methody' => '3.32',
12091             'Pod::Simple::Progress' => '3.32',
12092             'Pod::Simple::PullParser'=> '3.32',
12093             'Pod::Simple::PullParserEndToken'=> '3.32',
12094             'Pod::Simple::PullParserStartToken'=> '3.32',
12095             'Pod::Simple::PullParserTextToken'=> '3.32',
12096             'Pod::Simple::PullParserToken'=> '3.32',
12097             'Pod::Simple::RTF' => '3.32',
12098             'Pod::Simple::Search' => '3.32',
12099             'Pod::Simple::SimpleTree'=> '3.32',
12100             'Pod::Simple::Text' => '3.32',
12101             'Pod::Simple::TextContent'=> '3.32',
12102             'Pod::Simple::TiedOutFH'=> '3.32',
12103             'Pod::Simple::Transcode'=> '3.32',
12104             'Pod::Simple::TranscodeDumb'=> '3.32',
12105             'Pod::Simple::TranscodeSmart'=> '3.32',
12106             'Pod::Simple::XHTML' => '3.32',
12107             'Pod::Simple::XMLOutStream'=> '3.32',
12108             'Thread::Queue' => '3.07',
12109             'Tie::Scalar' => '1.04',
12110             'Time::HiRes' => '1.9728',
12111             'Time::Piece' => '1.31',
12112             'Time::Seconds' => '1.31',
12113             'Unicode::Normalize' => '1.23',
12114             'XSLoader' => '0.21',
12115             'arybase' => '0.11',
12116             'base' => '2.22_01',
12117             'fields' => '2.22_01',
12118             'threads' => '2.04',
12119             'threads::shared' => '1.49',
12120             },
12121             removed => {
12122             'ExtUtils::MakeMaker::version::vpp'=> 1,
12123             'version::vpp' => 1,
12124             }
12125             },
12126             5.022001 => {
12127             delta_from => 5.022,
12128             changed => {
12129             'B::Op_private' => '5.022001',
12130             'Config' => '5.022001',
12131             'Module::CoreList' => '5.20151213',
12132             'Module::CoreList::TieHashDelta'=> '5.20151213',
12133             'Module::CoreList::Utils'=> '5.20151213',
12134             'POSIX' => '1.53_01',
12135             'PerlIO::scalar' => '0.23',
12136             'Storable' => '2.53_01',
12137             'Win32' => '0.52',
12138             'warnings' => '1.34',
12139             },
12140             removed => {
12141             }
12142             },
12143             5.023006 => {
12144             delta_from => 5.023005,
12145             changed => {
12146             'B::Deparse' => '1.36',
12147             'B::Op_private' => '5.023006',
12148             'Benchmark' => '1.21',
12149             'CPAN::Meta::Requirements'=> '2.140',
12150             'CPAN::Meta::YAML' => '0.018',
12151             'Config' => '5.023006',
12152             'Cwd' => '3.60',
12153             'Data::Dumper' => '2.159',
12154             'DynaLoader' => '1.37',
12155             'File::Spec' => '3.60',
12156             'File::Spec::AmigaOS' => '3.60',
12157             'File::Spec::Cygwin' => '3.60',
12158             'File::Spec::Epoc' => '3.60',
12159             'File::Spec::Functions' => '3.60',
12160             'File::Spec::Mac' => '3.60',
12161             'File::Spec::OS2' => '3.60',
12162             'File::Spec::Unix' => '3.60',
12163             'File::Spec::VMS' => '3.60',
12164             'File::Spec::Win32' => '3.60',
12165             'Hash::Util::FieldHash' => '1.19',
12166             'Locale::Codes' => '3.37',
12167             'Locale::Codes::Constants'=> '3.37',
12168             'Locale::Codes::Country'=> '3.37',
12169             'Locale::Codes::Country_Codes'=> '3.37',
12170             'Locale::Codes::Country_Retired'=> '3.37',
12171             'Locale::Codes::Currency'=> '3.37',
12172             'Locale::Codes::Currency_Codes'=> '3.37',
12173             'Locale::Codes::Currency_Retired'=> '3.37',
12174             'Locale::Codes::LangExt'=> '3.37',
12175             'Locale::Codes::LangExt_Codes'=> '3.37',
12176             'Locale::Codes::LangExt_Retired'=> '3.37',
12177             'Locale::Codes::LangFam'=> '3.37',
12178             'Locale::Codes::LangFam_Codes'=> '3.37',
12179             'Locale::Codes::LangFam_Retired'=> '3.37',
12180             'Locale::Codes::LangVar'=> '3.37',
12181             'Locale::Codes::LangVar_Codes'=> '3.37',
12182             'Locale::Codes::LangVar_Retired'=> '3.37',
12183             'Locale::Codes::Language'=> '3.37',
12184             'Locale::Codes::Language_Codes'=> '3.37',
12185             'Locale::Codes::Language_Retired'=> '3.37',
12186             'Locale::Codes::Script' => '3.37',
12187             'Locale::Codes::Script_Codes'=> '3.37',
12188             'Locale::Codes::Script_Retired'=> '3.37',
12189             'Locale::Country' => '3.37',
12190             'Locale::Currency' => '3.37',
12191             'Locale::Language' => '3.37',
12192             'Locale::Script' => '3.37',
12193             'Math::BigInt::FastCalc'=> '0.38',
12194             'Module::CoreList' => '5.20151220',
12195             'Module::CoreList::TieHashDelta'=> '5.20151220',
12196             'Module::CoreList::Utils'=> '5.20151220',
12197             'Module::Metadata' => '1.000031',
12198             'Opcode' => '1.34',
12199             'PerlIO::mmap' => '0.016',
12200             'Pod::Perldoc' => '3.25_02',
12201             'SDBM_File' => '1.14',
12202             'Term::ANSIColor' => '4.04',
12203             'Test' => '1.28',
12204             'Unicode::Normalize' => '1.24',
12205             'XS::APItest' => '0.77',
12206             'base' => '2.23',
12207             'encoding::warnings' => '0.12',
12208             'fields' => '2.23',
12209             'locale' => '1.08',
12210             'strict' => '1.10',
12211             'threads' => '2.05',
12212             'threads::shared' => '1.50',
12213             'utf8' => '1.18',
12214             },
12215             removed => {
12216             }
12217             },
12218             5.023007 => {
12219             delta_from => 5.023006,
12220             changed => {
12221             'App::Prove' => '3.36',
12222             'App::Prove::State' => '3.36',
12223             'App::Prove::State::Result'=> '3.36',
12224             'App::Prove::State::Result::Test'=> '3.36',
12225             'B' => '1.62',
12226             'B::Deparse' => '1.37',
12227             'B::Op_private' => '5.023007',
12228             'Benchmark' => '1.22',
12229             'Config' => '5.023007',
12230             'Cwd' => '3.62',
12231             'Data::Dumper' => '2.160',
12232             'ExtUtils::ParseXS' => '3.31',
12233             'ExtUtils::ParseXS::Constants'=> '3.31',
12234             'ExtUtils::ParseXS::CountLines'=> '3.31',
12235             'ExtUtils::ParseXS::Eval'=> '3.31',
12236             'ExtUtils::ParseXS::Utilities'=> '3.31',
12237             'ExtUtils::Typemaps' => '3.31',
12238             'ExtUtils::Typemaps::Cmd'=> '3.31',
12239             'ExtUtils::Typemaps::InputMap'=> '3.31',
12240             'ExtUtils::Typemaps::OutputMap'=> '3.31',
12241             'ExtUtils::Typemaps::Type'=> '3.31',
12242             'File::Find' => '1.33',
12243             'File::Spec' => '3.62',
12244             'File::Spec::AmigaOS' => '3.62',
12245             'File::Spec::Cygwin' => '3.62',
12246             'File::Spec::Epoc' => '3.62',
12247             'File::Spec::Functions' => '3.62',
12248             'File::Spec::Mac' => '3.62',
12249             'File::Spec::OS2' => '3.62',
12250             'File::Spec::Unix' => '3.62',
12251             'File::Spec::VMS' => '3.62',
12252             'File::Spec::Win32' => '3.62',
12253             'Math::BigFloat' => '1.999715',
12254             'Math::BigFloat::Trace' => '0.42',
12255             'Math::BigInt' => '1.999715',
12256             'Math::BigInt::Calc' => '1.999715',
12257             'Math::BigInt::CalcEmu' => '1.999715',
12258             'Math::BigInt::FastCalc'=> '0.40',
12259             'Math::BigInt::Trace' => '0.42',
12260             'Math::BigRat' => '0.260802',
12261             'Module::CoreList' => '5.20160120',
12262             'Module::CoreList::TieHashDelta'=> '5.20160120',
12263             'Module::CoreList::Utils'=> '5.20160120',
12264             'Net::Cmd' => '3.08',
12265             'Net::Config' => '3.08',
12266             'Net::Domain' => '3.08',
12267             'Net::FTP' => '3.08',
12268             'Net::FTP::A' => '3.08',
12269             'Net::FTP::E' => '3.08',
12270             'Net::FTP::I' => '3.08',
12271             'Net::FTP::L' => '3.08',
12272             'Net::FTP::dataconn' => '3.08',
12273             'Net::NNTP' => '3.08',
12274             'Net::Netrc' => '3.08',
12275             'Net::POP3' => '3.08',
12276             'Net::SMTP' => '3.08',
12277             'Net::Time' => '3.08',
12278             'Pod::Man' => '4.04',
12279             'Pod::ParseLink' => '4.04',
12280             'Pod::Text' => '4.04',
12281             'Pod::Text::Color' => '4.04',
12282             'Pod::Text::Overstrike' => '4.04',
12283             'Pod::Text::Termcap' => '4.04',
12284             'Pod::Usage' => '1.68',
12285             'TAP::Base' => '3.36',
12286             'TAP::Formatter::Base' => '3.36',
12287             'TAP::Formatter::Color' => '3.36',
12288             'TAP::Formatter::Console'=> '3.36',
12289             'TAP::Formatter::Console::ParallelSession'=> '3.36',
12290             'TAP::Formatter::Console::Session'=> '3.36',
12291             'TAP::Formatter::File' => '3.36',
12292             'TAP::Formatter::File::Session'=> '3.36',
12293             'TAP::Formatter::Session'=> '3.36',
12294             'TAP::Harness' => '3.36',
12295             'TAP::Harness::Env' => '3.36',
12296             'TAP::Object' => '3.36',
12297             'TAP::Parser' => '3.36',
12298             'TAP::Parser::Aggregator'=> '3.36',
12299             'TAP::Parser::Grammar' => '3.36',
12300             'TAP::Parser::Iterator' => '3.36',
12301             'TAP::Parser::Iterator::Array'=> '3.36',
12302             'TAP::Parser::Iterator::Process'=> '3.36',
12303             'TAP::Parser::Iterator::Stream'=> '3.36',
12304             'TAP::Parser::IteratorFactory'=> '3.36',
12305             'TAP::Parser::Multiplexer'=> '3.36',
12306             'TAP::Parser::Result' => '3.36',
12307             'TAP::Parser::Result::Bailout'=> '3.36',
12308             'TAP::Parser::Result::Comment'=> '3.36',
12309             'TAP::Parser::Result::Plan'=> '3.36',
12310             'TAP::Parser::Result::Pragma'=> '3.36',
12311             'TAP::Parser::Result::Test'=> '3.36',
12312             'TAP::Parser::Result::Unknown'=> '3.36',
12313             'TAP::Parser::Result::Version'=> '3.36',
12314             'TAP::Parser::Result::YAML'=> '3.36',
12315             'TAP::Parser::ResultFactory'=> '3.36',
12316             'TAP::Parser::Scheduler'=> '3.36',
12317             'TAP::Parser::Scheduler::Job'=> '3.36',
12318             'TAP::Parser::Scheduler::Spinner'=> '3.36',
12319             'TAP::Parser::Source' => '3.36',
12320             'TAP::Parser::SourceHandler'=> '3.36',
12321             'TAP::Parser::SourceHandler::Executable'=> '3.36',
12322             'TAP::Parser::SourceHandler::File'=> '3.36',
12323             'TAP::Parser::SourceHandler::Handle'=> '3.36',
12324             'TAP::Parser::SourceHandler::Perl'=> '3.36',
12325             'TAP::Parser::SourceHandler::RawTAP'=> '3.36',
12326             'TAP::Parser::YAMLish::Reader'=> '3.36',
12327             'TAP::Parser::YAMLish::Writer'=> '3.36',
12328             'Test::Harness' => '3.36',
12329             'Unicode::Normalize' => '1.25',
12330             'Unicode::UCD' => '0.64',
12331             'XS::APItest' => '0.78',
12332             'bigint' => '0.42',
12333             'bignum' => '0.42',
12334             'bigrat' => '0.42',
12335             'utf8' => '1.19',
12336             },
12337             removed => {
12338             }
12339             },
12340             5.023008 => {
12341             delta_from => 5.023007,
12342             changed => {
12343             'B::Op_private' => '5.023008',
12344             'Config' => '5.023008',
12345             'Cwd' => '3.63',
12346             'DynaLoader' => '1.38',
12347             'Encode' => '2.80',
12348             'Encode::Alias' => '2.20',
12349             'Encode::MIME::Header' => '2.19',
12350             'Encode::Unicode' => '2.15',
12351             'ExtUtils::CBuilder' => '0.280225',
12352             'ExtUtils::CBuilder::Base'=> '0.280225',
12353             'ExtUtils::CBuilder::Platform::Unix'=> '0.280225',
12354             'ExtUtils::CBuilder::Platform::VMS'=> '0.280225',
12355             'ExtUtils::CBuilder::Platform::Windows'=> '0.280225',
12356             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225',
12357             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225',
12358             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225',
12359             'ExtUtils::CBuilder::Platform::aix'=> '0.280225',
12360             'ExtUtils::CBuilder::Platform::android'=> '0.280225',
12361             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225',
12362             'ExtUtils::CBuilder::Platform::darwin'=> '0.280225',
12363             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225',
12364             'ExtUtils::CBuilder::Platform::os2'=> '0.280225',
12365             'ExtUtils::Command::MM' => '7.10_01',
12366             'ExtUtils::Liblist' => '7.10_01',
12367             'ExtUtils::Liblist::Kid'=> '7.10_01',
12368             'ExtUtils::MM' => '7.10_01',
12369             'ExtUtils::MM_AIX' => '7.10_01',
12370             'ExtUtils::MM_Any' => '7.10_01',
12371             'ExtUtils::MM_BeOS' => '7.10_01',
12372             'ExtUtils::MM_Cygwin' => '7.10_01',
12373             'ExtUtils::MM_DOS' => '7.10_01',
12374             'ExtUtils::MM_Darwin' => '7.10_01',
12375             'ExtUtils::MM_MacOS' => '7.10_01',
12376             'ExtUtils::MM_NW5' => '7.10_01',
12377             'ExtUtils::MM_OS2' => '7.10_01',
12378             'ExtUtils::MM_QNX' => '7.10_01',
12379             'ExtUtils::MM_UWIN' => '7.10_01',
12380             'ExtUtils::MM_Unix' => '7.10_01',
12381             'ExtUtils::MM_VMS' => '7.10_01',
12382             'ExtUtils::MM_VOS' => '7.10_01',
12383             'ExtUtils::MM_Win32' => '7.10_01',
12384             'ExtUtils::MM_Win95' => '7.10_01',
12385             'ExtUtils::MY' => '7.10_01',
12386             'ExtUtils::MakeMaker' => '7.10_01',
12387             'ExtUtils::MakeMaker::Config'=> '7.10_01',
12388             'ExtUtils::MakeMaker::version'=> '7.10_01',
12389             'ExtUtils::MakeMaker::version::regex'=> '7.10_01',
12390             'ExtUtils::Mkbootstrap' => '7.10_01',
12391             'ExtUtils::Mksymlists' => '7.10_01',
12392             'ExtUtils::testlib' => '7.10_01',
12393             'File::Spec' => '3.63',
12394             'File::Spec::AmigaOS' => '3.63',
12395             'File::Spec::Cygwin' => '3.63',
12396             'File::Spec::Epoc' => '3.63',
12397             'File::Spec::Functions' => '3.63',
12398             'File::Spec::Mac' => '3.63',
12399             'File::Spec::OS2' => '3.63',
12400             'File::Spec::Unix' => '3.63',
12401             'File::Spec::VMS' => '3.63',
12402             'File::Spec::Win32' => '3.63',
12403             'IPC::Msg' => '2.05',
12404             'IPC::Semaphore' => '2.05',
12405             'IPC::SharedMem' => '2.05',
12406             'IPC::SysV' => '2.05',
12407             'Module::CoreList' => '5.20160121',
12408             'Module::CoreList::TieHashDelta'=> '5.20160121',
12409             'Module::CoreList::Utils'=> '5.20160121',
12410             'ODBM_File' => '1.13',
12411             'POSIX' => '1.63',
12412             'PerlIO::encoding' => '0.24',
12413             'Pod::Man' => '4.06',
12414             'Pod::ParseLink' => '4.06',
12415             'Pod::Text' => '4.06',
12416             'Pod::Text::Color' => '4.06',
12417             'Pod::Text::Overstrike' => '4.06',
12418             'Pod::Text::Termcap' => '4.06',
12419             'Storable' => '2.55',
12420             'Time::HiRes' => '1.9730',
12421             'XS::APItest' => '0.79',
12422             },
12423             removed => {
12424             }
12425             },
12426             5.023009 => {
12427             delta_from => 5.023008,
12428             changed => {
12429             'Amiga::ARexx' => '0.04',
12430             'Amiga::Exec' => '0.02',
12431             'B::Op_private' => '5.023009',
12432             'Carp' => '1.40',
12433             'Carp::Heavy' => '1.40',
12434             'Config' => '5.023009',
12435             'Errno' => '1.25',
12436             'ExtUtils::Embed' => '1.33',
12437             'File::Find' => '1.34',
12438             'File::Glob' => '1.26',
12439             'File::Spec::AmigaOS' => ';.64',
12440             'IPC::Msg' => '2.06_01',
12441             'IPC::Semaphore' => '2.06_01',
12442             'IPC::SharedMem' => '2.06_01',
12443             'IPC::SysV' => '2.06_01',
12444             'List::Util' => '1.42_02',
12445             'List::Util::XS' => '1.42_02',
12446             'Module::CoreList' => '5.20160320',
12447             'Module::CoreList::TieHashDelta'=> '5.20160320',
12448             'Module::CoreList::Utils'=> '5.20160320',
12449             'POSIX' => '1.64',
12450             'Pod::Functions' => '1.10',
12451             'Pod::Functions::Functions'=> '1.10',
12452             'Scalar::Util' => '1.42_02',
12453             'SelfLoader' => '1.23',
12454             'Socket' => '2.020_03',
12455             'Storable' => '2.56',
12456             'Sub::Util' => '1.42_02',
12457             'Thread::Queue' => '3.08',
12458             'Tie::File' => '1.02',
12459             'Time::HiRes' => '1.9732',
12460             'Win32API::File' => '0.1203',
12461             'XS::APItest' => '0.80',
12462             'autouse' => '1.11',
12463             'bytes' => '1.05',
12464             'strict' => '1.11',
12465             'threads' => '2.06',
12466             'version' => '0.9916',
12467             'version::regex' => '0.9916',
12468             'warnings' => '1.36',
12469             },
12470             removed => {
12471             'Win32API::File::ExtUtils::Myconst2perl'=> 1,
12472             }
12473             },
12474             5.022002 => {
12475             delta_from => 5.022001,
12476             changed => {
12477             'B::Op_private' => '5.022002',
12478             'Config' => '5.022002',
12479             'Cwd' => '3.56_01',
12480             'File::Spec' => '3.56_01',
12481             'File::Spec::Cygwin' => '3.56_01',
12482             'File::Spec::Epoc' => '3.56_01',
12483             'File::Spec::Functions' => '3.56_01',
12484             'File::Spec::Mac' => '3.56_01',
12485             'File::Spec::OS2' => '3.56_01',
12486             'File::Spec::Unix' => '3.56_01',
12487             'File::Spec::VMS' => '3.56_01',
12488             'File::Spec::Win32' => '3.56_01',
12489             'Module::CoreList' => '5.20160429',
12490             'Module::CoreList::TieHashDelta'=> '5.20160429',
12491             'Module::CoreList::Utils'=> '5.20160429',
12492             'XS::APItest' => '0.72_01',
12493             },
12494             removed => {
12495             }
12496             },
12497             5.024000 => {
12498             delta_from => 5.023009,
12499             changed => {
12500             'B::Op_private' => '5.024000',
12501             'Config' => '5.024',
12502             'File::Copy' => '2.31',
12503             'File::Path' => '2.12_01',
12504             'File::Spec::AmigaOS' => '3.64',
12505             'IO::Handle' => '1.36',
12506             'Module::CoreList' => '5.20160506',
12507             'Module::CoreList::TieHashDelta'=> '5.20160506',
12508             'Module::CoreList::Utils'=> '5.20160506',
12509             'ODBM_File' => '1.14',
12510             'POSIX' => '1.65',
12511             'Pod::Man' => '4.07',
12512             'Pod::ParseLink' => '4.07',
12513             'Pod::Text' => '4.07',
12514             'Pod::Text::Color' => '4.07',
12515             'Pod::Text::Overstrike' => '4.07',
12516             'Pod::Text::Termcap' => '4.07',
12517             'Thread::Queue' => '3.09',
12518             'Time::HiRes' => '1.9733',
12519             'threads' => '2.07',
12520             'threads::shared' => '1.51',
12521             'locale' => '1.09',
12522             },
12523             removed => {
12524             }
12525             },
12526             5.025000 => {
12527             delta_from => 5.024,
12528             changed => {
12529             'B::Op_private' => '5.025000',
12530             'Config' => '5.025',
12531             'Module::CoreList' => '5.20160507',
12532             'Module::CoreList::TieHashDelta'=> '5.20160507',
12533             'Module::CoreList::Utils'=> '5.20160507',
12534             'feature' => '1.43',
12535             },
12536             removed => {
12537             }
12538             },
12539             5.025001 => {
12540             delta_from => 5.025,
12541             changed => {
12542             'Archive::Tar' => '2.08',
12543             'Archive::Tar::Constant'=> '2.08',
12544             'Archive::Tar::File' => '2.08',
12545             'B::Op_private' => '5.025001',
12546             'Carp' => '1.41',
12547             'Carp::Heavy' => '1.41',
12548             'Config' => '5.025001',
12549             'Config::Perl::V' => '0.26',
12550             'DB_File' => '1.838',
12551             'Digest::MD5' => '2.55',
12552             'IPC::Cmd' => '0.94',
12553             'IPC::Msg' => '2.07',
12554             'IPC::Semaphore' => '2.07',
12555             'IPC::SharedMem' => '2.07',
12556             'IPC::SysV' => '2.07',
12557             'List::Util' => '1.45_01',
12558             'List::Util::XS' => '1.45_01',
12559             'Locale::Codes' => '3.38',
12560             'Locale::Codes::Constants'=> '3.38',
12561             'Locale::Codes::Country'=> '3.38',
12562             'Locale::Codes::Country_Codes'=> '3.38',
12563             'Locale::Codes::Country_Retired'=> '3.38',
12564             'Locale::Codes::Currency'=> '3.38',
12565             'Locale::Codes::Currency_Codes'=> '3.38',
12566             'Locale::Codes::Currency_Retired'=> '3.38',
12567             'Locale::Codes::LangExt'=> '3.38',
12568             'Locale::Codes::LangExt_Codes'=> '3.38',
12569             'Locale::Codes::LangExt_Retired'=> '3.38',
12570             'Locale::Codes::LangFam'=> '3.38',
12571             'Locale::Codes::LangFam_Codes'=> '3.38',
12572             'Locale::Codes::LangFam_Retired'=> '3.38',
12573             'Locale::Codes::LangVar'=> '3.38',
12574             'Locale::Codes::LangVar_Codes'=> '3.38',
12575             'Locale::Codes::LangVar_Retired'=> '3.38',
12576             'Locale::Codes::Language'=> '3.38',
12577             'Locale::Codes::Language_Codes'=> '3.38',
12578             'Locale::Codes::Language_Retired'=> '3.38',
12579             'Locale::Codes::Script' => '3.38',
12580             'Locale::Codes::Script_Codes'=> '3.38',
12581             'Locale::Codes::Script_Retired'=> '3.38',
12582             'Locale::Country' => '3.38',
12583             'Locale::Currency' => '3.38',
12584             'Locale::Language' => '3.38',
12585             'Locale::Maketext' => '1.27',
12586             'Locale::Script' => '3.38',
12587             'Module::CoreList' => '5.20160520',
12588             'Module::CoreList::TieHashDelta'=> '5.20160520',
12589             'Module::CoreList::Utils'=> '5.20160520',
12590             'Module::Metadata' => '1.000032',
12591             'POSIX' => '1.69',
12592             'Scalar::Util' => '1.45_01',
12593             'Sub::Util' => '1.45_01',
12594             'Sys::Syslog' => '0.34',
12595             'Term::ANSIColor' => '4.05',
12596             'Test2' => '1.302015',
12597             'Test2::API' => '1.302015',
12598             'Test2::API::Breakage' => '1.302015',
12599             'Test2::API::Context' => '1.302015',
12600             'Test2::API::Instance' => '1.302015',
12601             'Test2::API::Stack' => '1.302015',
12602             'Test2::Event' => '1.302015',
12603             'Test2::Event::Bail' => '1.302015',
12604             'Test2::Event::Diag' => '1.302015',
12605             'Test2::Event::Exception'=> '1.302015',
12606             'Test2::Event::Note' => '1.302015',
12607             'Test2::Event::Ok' => '1.302015',
12608             'Test2::Event::Plan' => '1.302015',
12609             'Test2::Event::Skip' => '1.302015',
12610             'Test2::Event::Subtest' => '1.302015',
12611             'Test2::Event::Waiting' => '1.302015',
12612             'Test2::Formatter' => '1.302015',
12613             'Test2::Formatter::TAP' => '1.302015',
12614             'Test2::Hub' => '1.302015',
12615             'Test2::Hub::Interceptor'=> '1.302015',
12616             'Test2::Hub::Interceptor::Terminator'=> '1.302015',
12617             'Test2::Hub::Subtest' => '1.302015',
12618             'Test2::IPC' => '1.302015',
12619             'Test2::IPC::Driver' => '1.302015',
12620             'Test2::IPC::Driver::Files'=> '1.302015',
12621             'Test2::Util' => '1.302015',
12622             'Test2::Util::ExternalMeta'=> '1.302015',
12623             'Test2::Util::HashBase' => '1.302015',
12624             'Test2::Util::Trace' => '1.302015',
12625             'Test::Builder' => '1.302015',
12626             'Test::Builder::Formatter'=> '1.302015',
12627             'Test::Builder::Module' => '1.302015',
12628             'Test::Builder::Tester' => '1.302015',
12629             'Test::Builder::Tester::Color'=> '1.302015',
12630             'Test::Builder::TodoDiag'=> '1.302015',
12631             'Test::More' => '1.302015',
12632             'Test::Simple' => '1.302015',
12633             'Test::Tester' => '1.302015',
12634             'Test::Tester::Capture' => '1.302015',
12635             'Test::Tester::CaptureRunner'=> '1.302015',
12636             'Test::Tester::Delegate'=> '1.302015',
12637             'Test::use::ok' => '1.302015',
12638             'XS::APItest' => '0.81',
12639             '_charnames' => '1.44',
12640             'charnames' => '1.44',
12641             'ok' => '1.302015',
12642             'perlfaq' => '5.021011',
12643             're' => '0.33',
12644             'threads' => '2.08',
12645             'threads::shared' => '1.52',
12646             },
12647             removed => {
12648             }
12649             },
12650             5.025002 => {
12651             delta_from => 5.025001,
12652             changed => {
12653             'App::Cpan' => '1.64',
12654             'B::Op_private' => '5.025002',
12655             'CPAN' => '2.14',
12656             'CPAN::Distribution' => '2.12',
12657             'CPAN::FTP' => '5.5007',
12658             'CPAN::FirstTime' => '5.5309',
12659             'CPAN::HandleConfig' => '5.5007',
12660             'CPAN::Index' => '2.12',
12661             'CPAN::Mirrors' => '2.12',
12662             'CPAN::Plugin' => '0.96',
12663             'CPAN::Shell' => '5.5006',
12664             'Config' => '5.025002',
12665             'Cwd' => '3.64',
12666             'Devel::Peek' => '1.24',
12667             'DynaLoader' => '1.39',
12668             'ExtUtils::Command' => '7.18',
12669             'ExtUtils::Command::MM' => '7.18',
12670             'ExtUtils::Liblist' => '7.18',
12671             'ExtUtils::Liblist::Kid'=> '7.18',
12672             'ExtUtils::MM' => '7.18',
12673             'ExtUtils::MM_AIX' => '7.18',
12674             'ExtUtils::MM_Any' => '7.18',
12675             'ExtUtils::MM_BeOS' => '7.18',
12676             'ExtUtils::MM_Cygwin' => '7.18',
12677             'ExtUtils::MM_DOS' => '7.18',
12678             'ExtUtils::MM_Darwin' => '7.18',
12679             'ExtUtils::MM_MacOS' => '7.18',
12680             'ExtUtils::MM_NW5' => '7.18',
12681             'ExtUtils::MM_OS2' => '7.18',
12682             'ExtUtils::MM_QNX' => '7.18',
12683             'ExtUtils::MM_UWIN' => '7.18',
12684             'ExtUtils::MM_Unix' => '7.18',
12685             'ExtUtils::MM_VMS' => '7.18',
12686             'ExtUtils::MM_VOS' => '7.18',
12687             'ExtUtils::MM_Win32' => '7.18',
12688             'ExtUtils::MM_Win95' => '7.18',
12689             'ExtUtils::MY' => '7.18',
12690             'ExtUtils::MakeMaker' => '7.18',
12691             'ExtUtils::MakeMaker::Config'=> '7.18',
12692             'ExtUtils::MakeMaker::Locale'=> '7.18',
12693             'ExtUtils::MakeMaker::version'=> '7.18',
12694             'ExtUtils::MakeMaker::version::regex'=> '7.18',
12695             'ExtUtils::Miniperl' => '1.06',
12696             'ExtUtils::Mkbootstrap' => '7.18',
12697             'ExtUtils::Mksymlists' => '7.18',
12698             'ExtUtils::ParseXS' => '3.32',
12699             'ExtUtils::ParseXS::Constants'=> '3.32',
12700             'ExtUtils::ParseXS::CountLines'=> '3.32',
12701             'ExtUtils::ParseXS::Eval'=> '3.32',
12702             'ExtUtils::ParseXS::Utilities'=> '3.32',
12703             'ExtUtils::Typemaps' => '3.32',
12704             'ExtUtils::Typemaps::Cmd'=> '3.32',
12705             'ExtUtils::Typemaps::InputMap'=> '3.32',
12706             'ExtUtils::Typemaps::OutputMap'=> '3.32',
12707             'ExtUtils::Typemaps::Type'=> '3.32',
12708             'ExtUtils::testlib' => '7.18',
12709             'File::Copy' => '2.32',
12710             'File::Glob' => '1.27',
12711             'File::Spec' => '3.64',
12712             'File::Spec::Cygwin' => '3.64',
12713             'File::Spec::Epoc' => '3.64',
12714             'File::Spec::Functions' => '3.64',
12715             'File::Spec::Mac' => '3.64',
12716             'File::Spec::OS2' => '3.64',
12717             'File::Spec::Unix' => '3.64',
12718             'File::Spec::VMS' => '3.64',
12719             'File::Spec::Win32' => '3.64',
12720             'FileHandle' => '2.03',
12721             'Getopt::Long' => '2.49',
12722             'HTTP::Tiny' => '0.058',
12723             'JSON::PP' => '2.27400',
12724             'Locale::Codes' => '3.39',
12725             'Locale::Codes::Constants'=> '3.39',
12726             'Locale::Codes::Country'=> '3.39',
12727             'Locale::Codes::Country_Codes'=> '3.39',
12728             'Locale::Codes::Country_Retired'=> '3.39',
12729             'Locale::Codes::Currency'=> '3.39',
12730             'Locale::Codes::Currency_Codes'=> '3.39',
12731             'Locale::Codes::Currency_Retired'=> '3.39',
12732             'Locale::Codes::LangExt'=> '3.39',
12733             'Locale::Codes::LangExt_Codes'=> '3.39',
12734             'Locale::Codes::LangExt_Retired'=> '3.39',
12735             'Locale::Codes::LangFam'=> '3.39',
12736             'Locale::Codes::LangFam_Codes'=> '3.39',
12737             'Locale::Codes::LangFam_Retired'=> '3.39',
12738             'Locale::Codes::LangVar'=> '3.39',
12739             'Locale::Codes::LangVar_Codes'=> '3.39',
12740             'Locale::Codes::LangVar_Retired'=> '3.39',
12741             'Locale::Codes::Language'=> '3.39',
12742             'Locale::Codes::Language_Codes'=> '3.39',
12743             'Locale::Codes::Language_Retired'=> '3.39',
12744             'Locale::Codes::Script' => '3.39',
12745             'Locale::Codes::Script_Codes'=> '3.39',
12746             'Locale::Codes::Script_Retired'=> '3.39',
12747             'Locale::Country' => '3.39',
12748             'Locale::Currency' => '3.39',
12749             'Locale::Language' => '3.39',
12750             'Locale::Script' => '3.39',
12751             'Module::CoreList' => '5.20160620',
12752             'Module::CoreList::TieHashDelta'=> '5.20160620',
12753             'Module::CoreList::Utils'=> '5.20160620',
12754             'Opcode' => '1.35',
12755             'POSIX' => '1.70',
12756             'Pod::Checker' => '1.73',
12757             'Pod::Functions' => '1.11',
12758             'Pod::Functions::Functions'=> '1.11',
12759             'Pod::Usage' => '1.69',
12760             'Test2' => '1.302026',
12761             'Test2::API' => '1.302026',
12762             'Test2::API::Breakage' => '1.302026',
12763             'Test2::API::Context' => '1.302026',
12764             'Test2::API::Instance' => '1.302026',
12765             'Test2::API::Stack' => '1.302026',
12766             'Test2::Event' => '1.302026',
12767             'Test2::Event::Bail' => '1.302026',
12768             'Test2::Event::Diag' => '1.302026',
12769             'Test2::Event::Exception'=> '1.302026',
12770             'Test2::Event::Generic' => '1.302026',
12771             'Test2::Event::Note' => '1.302026',
12772             'Test2::Event::Ok' => '1.302026',
12773             'Test2::Event::Plan' => '1.302026',
12774             'Test2::Event::Skip' => '1.302026',
12775             'Test2::Event::Subtest' => '1.302026',
12776             'Test2::Event::Waiting' => '1.302026',
12777             'Test2::Formatter' => '1.302026',
12778             'Test2::Formatter::TAP' => '1.302026',
12779             'Test2::Hub' => '1.302026',
12780             'Test2::Hub::Interceptor'=> '1.302026',
12781             'Test2::Hub::Interceptor::Terminator'=> '1.302026',
12782             'Test2::Hub::Subtest' => '1.302026',
12783             'Test2::IPC' => '1.302026',
12784             'Test2::IPC::Driver' => '1.302026',
12785             'Test2::IPC::Driver::Files'=> '1.302026',
12786             'Test2::Util' => '1.302026',
12787             'Test2::Util::ExternalMeta'=> '1.302026',
12788             'Test2::Util::HashBase' => '1.302026',
12789             'Test2::Util::Trace' => '1.302026',
12790             'Test::Builder' => '1.302026',
12791             'Test::Builder::Formatter'=> '1.302026',
12792             'Test::Builder::Module' => '1.302026',
12793             'Test::Builder::Tester' => '1.302026',
12794             'Test::Builder::Tester::Color'=> '1.302026',
12795             'Test::Builder::TodoDiag'=> '1.302026',
12796             'Test::More' => '1.302026',
12797             'Test::Simple' => '1.302026',
12798             'Test::Tester' => '1.302026',
12799             'Test::Tester::Capture' => '1.302026',
12800             'Test::Tester::CaptureRunner'=> '1.302026',
12801             'Test::Tester::Delegate'=> '1.302026',
12802             'Test::use::ok' => '1.302026',
12803             'Thread::Queue' => '3.11',
12804             'Time::HiRes' => '1.9734',
12805             'Unicode::UCD' => '0.65',
12806             'VMS::DCLsym' => '1.07',
12807             'XS::APItest' => '0.82',
12808             'diagnostics' => '1.35',
12809             'feature' => '1.44',
12810             'ok' => '1.302026',
12811             'threads' => '2.09',
12812             },
12813             removed => {
12814             }
12815             },
12816             5.025003 => {
12817             delta_from => 5.025002,
12818             changed => {
12819             'B::Op_private' => '5.025003',
12820             'Config' => '5.025003',
12821             'Data::Dumper' => '2.161',
12822             'Devel::PPPort' => '3.35',
12823             'Encode' => '2.84',
12824             'Encode::MIME::Header' => '2.23',
12825             'Encode::MIME::Header::ISO_2022_JP'=> '1.07',
12826             'ExtUtils::ParseXS' => '3.33',
12827             'ExtUtils::ParseXS::Constants'=> '3.33',
12828             'ExtUtils::ParseXS::CountLines'=> '3.33',
12829             'ExtUtils::ParseXS::Eval'=> '3.33',
12830             'ExtUtils::ParseXS::Utilities'=> '3.33',
12831             'ExtUtils::Typemaps' => '3.33',
12832             'ExtUtils::Typemaps::Cmd'=> '3.33',
12833             'ExtUtils::Typemaps::InputMap'=> '3.33',
12834             'ExtUtils::Typemaps::OutputMap'=> '3.33',
12835             'ExtUtils::Typemaps::Type'=> '3.33',
12836             'Hash::Util' => '0.20',
12837             'Math::BigFloat' => '1.999726',
12838             'Math::BigFloat::Trace' => '0.43',
12839             'Math::BigInt' => '1.999726',
12840             'Math::BigInt::Calc' => '1.999726',
12841             'Math::BigInt::CalcEmu' => '1.999726',
12842             'Math::BigInt::FastCalc'=> '0.42',
12843             'Math::BigInt::Trace' => '0.43',
12844             'Math::BigRat' => '0.260804',
12845             'Module::CoreList' => '5.20160720',
12846             'Module::CoreList::TieHashDelta'=> '5.20160720',
12847             'Module::CoreList::Utils'=> '5.20160720',
12848             'Net::Cmd' => '3.09',
12849             'Net::Config' => '3.09',
12850             'Net::Domain' => '3.09',
12851             'Net::FTP' => '3.09',
12852             'Net::FTP::A' => '3.09',
12853             'Net::FTP::E' => '3.09',
12854             'Net::FTP::I' => '3.09',
12855             'Net::FTP::L' => '3.09',
12856             'Net::FTP::dataconn' => '3.09',
12857             'Net::NNTP' => '3.09',
12858             'Net::Netrc' => '3.09',
12859             'Net::POP3' => '3.09',
12860             'Net::SMTP' => '3.09',
12861             'Net::Time' => '3.09',
12862             'Parse::CPAN::Meta' => '1.4422',
12863             'Perl::OSType' => '1.010',
12864             'Test2' => '1.302045',
12865             'Test2::API' => '1.302045',
12866             'Test2::API::Breakage' => '1.302045',
12867             'Test2::API::Context' => '1.302045',
12868             'Test2::API::Instance' => '1.302045',
12869             'Test2::API::Stack' => '1.302045',
12870             'Test2::Event' => '1.302045',
12871             'Test2::Event::Bail' => '1.302045',
12872             'Test2::Event::Diag' => '1.302045',
12873             'Test2::Event::Exception'=> '1.302045',
12874             'Test2::Event::Generic' => '1.302045',
12875             'Test2::Event::Info' => '1.302045',
12876             'Test2::Event::Note' => '1.302045',
12877             'Test2::Event::Ok' => '1.302045',
12878             'Test2::Event::Plan' => '1.302045',
12879             'Test2::Event::Skip' => '1.302045',
12880             'Test2::Event::Subtest' => '1.302045',
12881             'Test2::Event::Waiting' => '1.302045',
12882             'Test2::Formatter' => '1.302045',
12883             'Test2::Formatter::TAP' => '1.302045',
12884             'Test2::Hub' => '1.302045',
12885             'Test2::Hub::Interceptor'=> '1.302045',
12886             'Test2::Hub::Interceptor::Terminator'=> '1.302045',
12887             'Test2::Hub::Subtest' => '1.302045',
12888             'Test2::IPC' => '1.302045',
12889             'Test2::IPC::Driver' => '1.302045',
12890             'Test2::IPC::Driver::Files'=> '1.302045',
12891             'Test2::Util' => '1.302045',
12892             'Test2::Util::ExternalMeta'=> '1.302045',
12893             'Test2::Util::HashBase' => '1.302045',
12894             'Test2::Util::Trace' => '1.302045',
12895             'Test::Builder' => '1.302045',
12896             'Test::Builder::Formatter'=> '1.302045',
12897             'Test::Builder::Module' => '1.302045',
12898             'Test::Builder::Tester' => '1.302045',
12899             'Test::Builder::Tester::Color'=> '1.302045',
12900             'Test::Builder::TodoDiag'=> '1.302045',
12901             'Test::More' => '1.302045',
12902             'Test::Simple' => '1.302045',
12903             'Test::Tester' => '1.302045',
12904             'Test::Tester::Capture' => '1.302045',
12905             'Test::Tester::CaptureRunner'=> '1.302045',
12906             'Test::Tester::Delegate'=> '1.302045',
12907             'Test::use::ok' => '1.302045',
12908             'Time::HiRes' => '1.9739',
12909             'Unicode' => '9.0.0',
12910             'Unicode::UCD' => '0.66',
12911             'XSLoader' => '0.22',
12912             'bigint' => '0.43',
12913             'bignum' => '0.43',
12914             'bigrat' => '0.43',
12915             'encoding' => '2.17_01',
12916             'encoding::warnings' => '0.13',
12917             'feature' => '1.45',
12918             'ok' => '1.302045',
12919             'version' => '0.9917',
12920             'version::regex' => '0.9917',
12921             'warnings' => '1.37',
12922             },
12923             removed => {
12924             }
12925             },
12926             5.025004 => {
12927             delta_from => 5.025003,
12928             changed => {
12929             'App::Cpan' => '1.64_01',
12930             'App::Prove' => '3.36_01',
12931             'App::Prove::State' => '3.36_01',
12932             'App::Prove::State::Result'=> '3.36_01',
12933             'App::Prove::State::Result::Test'=> '3.36_01',
12934             'Archive::Tar' => '2.10',
12935             'Archive::Tar::Constant'=> '2.10',
12936             'Archive::Tar::File' => '2.10',
12937             'B' => '1.63',
12938             'B::Concise' => '0.998',
12939             'B::Deparse' => '1.38',
12940             'B::Op_private' => '5.025004',
12941             'CPAN' => '2.14_01',
12942             'CPAN::Meta' => '2.150010',
12943             'CPAN::Meta::Converter' => '2.150010',
12944             'CPAN::Meta::Feature' => '2.150010',
12945             'CPAN::Meta::History' => '2.150010',
12946             'CPAN::Meta::Merge' => '2.150010',
12947             'CPAN::Meta::Prereqs' => '2.150010',
12948             'CPAN::Meta::Spec' => '2.150010',
12949             'CPAN::Meta::Validator' => '2.150010',
12950             'Carp' => '1.42',
12951             'Carp::Heavy' => '1.42',
12952             'Compress::Zlib' => '2.069_01',
12953             'Config' => '5.025004',
12954             'Config::Perl::V' => '0.27',
12955             'Cwd' => '3.65',
12956             'Digest' => '1.17_01',
12957             'Digest::SHA' => '5.96',
12958             'Encode' => '2.86',
12959             'Errno' => '1.26',
12960             'ExtUtils::Command' => '7.24',
12961             'ExtUtils::Command::MM' => '7.24',
12962             'ExtUtils::Liblist' => '7.24',
12963             'ExtUtils::Liblist::Kid'=> '7.24',
12964             'ExtUtils::MM' => '7.24',
12965             'ExtUtils::MM_AIX' => '7.24',
12966             'ExtUtils::MM_Any' => '7.24',
12967             'ExtUtils::MM_BeOS' => '7.24',
12968             'ExtUtils::MM_Cygwin' => '7.24',
12969             'ExtUtils::MM_DOS' => '7.24',
12970             'ExtUtils::MM_Darwin' => '7.24',
12971             'ExtUtils::MM_MacOS' => '7.24',
12972             'ExtUtils::MM_NW5' => '7.24',
12973             'ExtUtils::MM_OS2' => '7.24',
12974             'ExtUtils::MM_QNX' => '7.24',
12975             'ExtUtils::MM_UWIN' => '7.24',
12976             'ExtUtils::MM_Unix' => '7.24',
12977             'ExtUtils::MM_VMS' => '7.24',
12978             'ExtUtils::MM_VOS' => '7.24',
12979             'ExtUtils::MM_Win32' => '7.24',
12980             'ExtUtils::MM_Win95' => '7.24',
12981             'ExtUtils::MY' => '7.24',
12982             'ExtUtils::MakeMaker' => '7.24',
12983             'ExtUtils::MakeMaker::Config'=> '7.24',
12984             'ExtUtils::MakeMaker::Locale'=> '7.24',
12985             'ExtUtils::MakeMaker::version'=> '7.24',
12986             'ExtUtils::MakeMaker::version::regex'=> '7.24',
12987             'ExtUtils::Mkbootstrap' => '7.24',
12988             'ExtUtils::Mksymlists' => '7.24',
12989             'ExtUtils::testlib' => '7.24',
12990             'File::Fetch' => '0.52',
12991             'File::Spec' => '3.65',
12992             'File::Spec::AmigaOS' => '3.65',
12993             'File::Spec::Cygwin' => '3.65',
12994             'File::Spec::Epoc' => '3.65',
12995             'File::Spec::Functions' => '3.65',
12996             'File::Spec::Mac' => '3.65',
12997             'File::Spec::OS2' => '3.65',
12998             'File::Spec::Unix' => '3.65',
12999             'File::Spec::VMS' => '3.65',
13000             'File::Spec::Win32' => '3.65',
13001             'HTTP::Tiny' => '0.064',
13002             'Hash::Util' => '0.21',
13003             'I18N::LangTags' => '0.41',
13004             'I18N::LangTags::Detect'=> '1.06',
13005             'IO' => '1.37',
13006             'IO::Compress::Adapter::Bzip2'=> '2.069_01',
13007             'IO::Compress::Adapter::Deflate'=> '2.069_01',
13008             'IO::Compress::Adapter::Identity'=> '2.069_01',
13009             'IO::Compress::Base' => '2.069_01',
13010             'IO::Compress::Base::Common'=> '2.069_01',
13011             'IO::Compress::Bzip2' => '2.069_01',
13012             'IO::Compress::Deflate' => '2.069_01',
13013             'IO::Compress::Gzip' => '2.069_01',
13014             'IO::Compress::Gzip::Constants'=> '2.069_01',
13015             'IO::Compress::RawDeflate'=> '2.069_01',
13016             'IO::Compress::Zip' => '2.069_01',
13017             'IO::Compress::Zip::Constants'=> '2.069_01',
13018             'IO::Compress::Zlib::Constants'=> '2.069_01',
13019             'IO::Compress::Zlib::Extra'=> '2.069_01',
13020             'IO::Socket::IP' => '0.38',
13021             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_01',
13022             'IO::Uncompress::Adapter::Identity'=> '2.069_01',
13023             'IO::Uncompress::Adapter::Inflate'=> '2.069_01',
13024             'IO::Uncompress::AnyInflate'=> '2.069_01',
13025             'IO::Uncompress::AnyUncompress'=> '2.069_01',
13026             'IO::Uncompress::Base' => '2.069_01',
13027             'IO::Uncompress::Bunzip2'=> '2.069_01',
13028             'IO::Uncompress::Gunzip'=> '2.069_01',
13029             'IO::Uncompress::Inflate'=> '2.069_01',
13030             'IO::Uncompress::RawInflate'=> '2.069_01',
13031             'IO::Uncompress::Unzip' => '2.069_01',
13032             'IPC::Cmd' => '0.96',
13033             'JSON::PP' => '2.27400_01',
13034             'Locale::Maketext' => '1.28',
13035             'Locale::Maketext::Simple'=> '0.21_01',
13036             'Math::BigFloat::Trace' => '0.43_01',
13037             'Math::BigInt::Trace' => '0.43_01',
13038             'Memoize' => '1.03_01',
13039             'Module::CoreList' => '5.20160820',
13040             'Module::CoreList::TieHashDelta'=> '5.20160820',
13041             'Module::CoreList::Utils'=> '5.20160820',
13042             'Module::Load::Conditional'=> '0.68',
13043             'Module::Metadata' => '1.000033',
13044             'NEXT' => '0.67',
13045             'Net::Cmd' => '3.10',
13046             'Net::Config' => '3.10',
13047             'Net::Domain' => '3.10',
13048             'Net::FTP' => '3.10',
13049             'Net::FTP::A' => '3.10',
13050             'Net::FTP::E' => '3.10',
13051             'Net::FTP::I' => '3.10',
13052             'Net::FTP::L' => '3.10',
13053             'Net::FTP::dataconn' => '3.10',
13054             'Net::NNTP' => '3.10',
13055             'Net::Netrc' => '3.10',
13056             'Net::POP3' => '3.10',
13057             'Net::Ping' => '2.44',
13058             'Net::SMTP' => '3.10',
13059             'Net::Time' => '3.10',
13060             'Opcode' => '1.37',
13061             'POSIX' => '1.71',
13062             'Parse::CPAN::Meta' => '2.150010',
13063             'Pod::Html' => '1.2201',
13064             'Pod::Perldoc' => '3.27',
13065             'Pod::Perldoc::BaseTo' => '3.27',
13066             'Pod::Perldoc::GetOptsOO'=> '3.27',
13067             'Pod::Perldoc::ToANSI' => '3.27',
13068             'Pod::Perldoc::ToChecker'=> '3.27',
13069             'Pod::Perldoc::ToMan' => '3.27',
13070             'Pod::Perldoc::ToNroff' => '3.27',
13071             'Pod::Perldoc::ToPod' => '3.27',
13072             'Pod::Perldoc::ToRtf' => '3.27',
13073             'Pod::Perldoc::ToTerm' => '3.27',
13074             'Pod::Perldoc::ToText' => '3.27',
13075             'Pod::Perldoc::ToTk' => '3.27',
13076             'Pod::Perldoc::ToXml' => '3.27',
13077             'Storable' => '2.57',
13078             'Sys::Syslog' => '0.34_01',
13079             'TAP::Base' => '3.36_01',
13080             'TAP::Formatter::Base' => '3.36_01',
13081             'TAP::Formatter::Color' => '3.36_01',
13082             'TAP::Formatter::Console'=> '3.36_01',
13083             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13084             'TAP::Formatter::Console::Session'=> '3.36_01',
13085             'TAP::Formatter::File' => '3.36_01',
13086             'TAP::Formatter::File::Session'=> '3.36_01',
13087             'TAP::Formatter::Session'=> '3.36_01',
13088             'TAP::Harness' => '3.36_01',
13089             'TAP::Harness::Env' => '3.36_01',
13090             'TAP::Object' => '3.36_01',
13091             'TAP::Parser' => '3.36_01',
13092             'TAP::Parser::Aggregator'=> '3.36_01',
13093             'TAP::Parser::Grammar' => '3.36_01',
13094             'TAP::Parser::Iterator' => '3.36_01',
13095             'TAP::Parser::Iterator::Array'=> '3.36_01',
13096             'TAP::Parser::Iterator::Process'=> '3.36_01',
13097             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13098             'TAP::Parser::IteratorFactory'=> '3.36_01',
13099             'TAP::Parser::Multiplexer'=> '3.36_01',
13100             'TAP::Parser::Result' => '3.36_01',
13101             'TAP::Parser::Result::Bailout'=> '3.36_01',
13102             'TAP::Parser::Result::Comment'=> '3.36_01',
13103             'TAP::Parser::Result::Plan'=> '3.36_01',
13104             'TAP::Parser::Result::Pragma'=> '3.36_01',
13105             'TAP::Parser::Result::Test'=> '3.36_01',
13106             'TAP::Parser::Result::Unknown'=> '3.36_01',
13107             'TAP::Parser::Result::Version'=> '3.36_01',
13108             'TAP::Parser::Result::YAML'=> '3.36_01',
13109             'TAP::Parser::ResultFactory'=> '3.36_01',
13110             'TAP::Parser::Scheduler'=> '3.36_01',
13111             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13112             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13113             'TAP::Parser::Source' => '3.36_01',
13114             'TAP::Parser::SourceHandler'=> '3.36_01',
13115             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13116             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13117             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13118             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13119             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13120             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13121             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13122             'Test' => '1.29',
13123             'Test2' => '1.302052',
13124             'Test2::API' => '1.302052',
13125             'Test2::API::Breakage' => '1.302052',
13126             'Test2::API::Context' => '1.302052',
13127             'Test2::API::Instance' => '1.302052',
13128             'Test2::API::Stack' => '1.302052',
13129             'Test2::Event' => '1.302052',
13130             'Test2::Event::Bail' => '1.302052',
13131             'Test2::Event::Diag' => '1.302052',
13132             'Test2::Event::Exception'=> '1.302052',
13133             'Test2::Event::Generic' => '1.302052',
13134             'Test2::Event::Info' => '1.302052',
13135             'Test2::Event::Note' => '1.302052',
13136             'Test2::Event::Ok' => '1.302052',
13137             'Test2::Event::Plan' => '1.302052',
13138             'Test2::Event::Skip' => '1.302052',
13139             'Test2::Event::Subtest' => '1.302052',
13140             'Test2::Event::Waiting' => '1.302052',
13141             'Test2::Formatter' => '1.302052',
13142             'Test2::Formatter::TAP' => '1.302052',
13143             'Test2::Hub' => '1.302052',
13144             'Test2::Hub::Interceptor'=> '1.302052',
13145             'Test2::Hub::Interceptor::Terminator'=> '1.302052',
13146             'Test2::Hub::Subtest' => '1.302052',
13147             'Test2::IPC' => '1.302052',
13148             'Test2::IPC::Driver' => '1.302052',
13149             'Test2::IPC::Driver::Files'=> '1.302052',
13150             'Test2::Util' => '1.302052',
13151             'Test2::Util::ExternalMeta'=> '1.302052',
13152             'Test2::Util::HashBase' => '1.302052',
13153             'Test2::Util::Trace' => '1.302052',
13154             'Test::Builder' => '1.302052',
13155             'Test::Builder::Formatter'=> '1.302052',
13156             'Test::Builder::Module' => '1.302052',
13157             'Test::Builder::Tester' => '1.302052',
13158             'Test::Builder::Tester::Color'=> '1.302052',
13159             'Test::Builder::TodoDiag'=> '1.302052',
13160             'Test::Harness' => '3.36_01',
13161             'Test::More' => '1.302052',
13162             'Test::Simple' => '1.302052',
13163             'Test::Tester' => '1.302052',
13164             'Test::Tester::Capture' => '1.302052',
13165             'Test::Tester::CaptureRunner'=> '1.302052',
13166             'Test::Tester::Delegate'=> '1.302052',
13167             'Test::use::ok' => '1.302052',
13168             'Tie::Hash::NamedCapture'=> '0.10',
13169             'Time::Local' => '1.24',
13170             'XS::APItest' => '0.83',
13171             'arybase' => '0.12',
13172             'base' => '2.24',
13173             'bigint' => '0.43_01',
13174             'bignum' => '0.43_01',
13175             'bigrat' => '0.43_01',
13176             'encoding' => '2.18',
13177             'ok' => '1.302052',
13178             },
13179             removed => {
13180             }
13181             },
13182             5.025005 => {
13183             delta_from => 5.025004,
13184             changed => {
13185             'B::Op_private' => '5.025005',
13186             'Config' => '5.025005',
13187             'Filter::Simple' => '0.93',
13188             'Locale::Codes' => '3.40',
13189             'Locale::Codes::Constants'=> '3.40',
13190             'Locale::Codes::Country'=> '3.40',
13191             'Locale::Codes::Country_Codes'=> '3.40',
13192             'Locale::Codes::Country_Retired'=> '3.40',
13193             'Locale::Codes::Currency'=> '3.40',
13194             'Locale::Codes::Currency_Codes'=> '3.40',
13195             'Locale::Codes::Currency_Retired'=> '3.40',
13196             'Locale::Codes::LangExt'=> '3.40',
13197             'Locale::Codes::LangExt_Codes'=> '3.40',
13198             'Locale::Codes::LangExt_Retired'=> '3.40',
13199             'Locale::Codes::LangFam'=> '3.40',
13200             'Locale::Codes::LangFam_Codes'=> '3.40',
13201             'Locale::Codes::LangFam_Retired'=> '3.40',
13202             'Locale::Codes::LangVar'=> '3.40',
13203             'Locale::Codes::LangVar_Codes'=> '3.40',
13204             'Locale::Codes::LangVar_Retired'=> '3.40',
13205             'Locale::Codes::Language'=> '3.40',
13206             'Locale::Codes::Language_Codes'=> '3.40',
13207             'Locale::Codes::Language_Retired'=> '3.40',
13208             'Locale::Codes::Script' => '3.40',
13209             'Locale::Codes::Script_Codes'=> '3.40',
13210             'Locale::Codes::Script_Retired'=> '3.40',
13211             'Locale::Country' => '3.40',
13212             'Locale::Currency' => '3.40',
13213             'Locale::Language' => '3.40',
13214             'Locale::Script' => '3.40',
13215             'Module::CoreList' => '5.20160920',
13216             'Module::CoreList::TieHashDelta'=> '5.20160920',
13217             'Module::CoreList::Utils'=> '5.20160920',
13218             'POSIX' => '1.72',
13219             'Sys::Syslog' => '0.35',
13220             'Test2' => '1.302056',
13221             'Test2::API' => '1.302056',
13222             'Test2::API::Breakage' => '1.302056',
13223             'Test2::API::Context' => '1.302056',
13224             'Test2::API::Instance' => '1.302056',
13225             'Test2::API::Stack' => '1.302056',
13226             'Test2::Event' => '1.302056',
13227             'Test2::Event::Bail' => '1.302056',
13228             'Test2::Event::Diag' => '1.302056',
13229             'Test2::Event::Exception'=> '1.302056',
13230             'Test2::Event::Generic' => '1.302056',
13231             'Test2::Event::Info' => '1.302056',
13232             'Test2::Event::Note' => '1.302056',
13233             'Test2::Event::Ok' => '1.302056',
13234             'Test2::Event::Plan' => '1.302056',
13235             'Test2::Event::Skip' => '1.302056',
13236             'Test2::Event::Subtest' => '1.302056',
13237             'Test2::Event::Waiting' => '1.302056',
13238             'Test2::Formatter' => '1.302056',
13239             'Test2::Formatter::TAP' => '1.302056',
13240             'Test2::Hub' => '1.302056',
13241             'Test2::Hub::Interceptor'=> '1.302056',
13242             'Test2::Hub::Interceptor::Terminator'=> '1.302056',
13243             'Test2::Hub::Subtest' => '1.302056',
13244             'Test2::IPC' => '1.302056',
13245             'Test2::IPC::Driver' => '1.302056',
13246             'Test2::IPC::Driver::Files'=> '1.302056',
13247             'Test2::Util' => '1.302056',
13248             'Test2::Util::ExternalMeta'=> '1.302056',
13249             'Test2::Util::HashBase' => '1.302056',
13250             'Test2::Util::Trace' => '1.302056',
13251             'Test::Builder' => '1.302056',
13252             'Test::Builder::Formatter'=> '1.302056',
13253             'Test::Builder::Module' => '1.302056',
13254             'Test::Builder::Tester' => '1.302056',
13255             'Test::Builder::Tester::Color'=> '1.302056',
13256             'Test::Builder::TodoDiag'=> '1.302056',
13257             'Test::More' => '1.302056',
13258             'Test::Simple' => '1.302056',
13259             'Test::Tester' => '1.302056',
13260             'Test::Tester::Capture' => '1.302056',
13261             'Test::Tester::CaptureRunner'=> '1.302056',
13262             'Test::Tester::Delegate'=> '1.302056',
13263             'Test::use::ok' => '1.302056',
13264             'Thread::Semaphore' => '2.13',
13265             'XS::APItest' => '0.84',
13266             'XSLoader' => '0.24',
13267             'ok' => '1.302056',
13268             },
13269             removed => {
13270             }
13271             },
13272             5.025006 => {
13273             delta_from => 5.025005,
13274             changed => {
13275             'Archive::Tar' => '2.14',
13276             'Archive::Tar::Constant'=> '2.14',
13277             'Archive::Tar::File' => '2.14',
13278             'B' => '1.64',
13279             'B::Concise' => '0.999',
13280             'B::Deparse' => '1.39',
13281             'B::Op_private' => '5.025006',
13282             'Config' => '5.025006',
13283             'Data::Dumper' => '2.162',
13284             'Devel::Peek' => '1.25',
13285             'HTTP::Tiny' => '0.070',
13286             'List::Util' => '1.46',
13287             'List::Util::XS' => '1.46',
13288             'Module::CoreList' => '5.20161020',
13289             'Module::CoreList::TieHashDelta'=> '5.20161020',
13290             'Module::CoreList::Utils'=> '5.20161020',
13291             'Net::Ping' => '2.51',
13292             'OS2::DLL' => '1.07',
13293             'Opcode' => '1.38',
13294             'POSIX' => '1.73',
13295             'PerlIO::encoding' => '0.25',
13296             'Pod::Man' => '4.08',
13297             'Pod::ParseLink' => '4.08',
13298             'Pod::Text' => '4.08',
13299             'Pod::Text::Color' => '4.08',
13300             'Pod::Text::Overstrike' => '4.08',
13301             'Pod::Text::Termcap' => '4.08',
13302             'Scalar::Util' => '1.46',
13303             'Storable' => '2.58',
13304             'Sub::Util' => '1.46',
13305             'Test2' => '1.302059',
13306             'Test2::API' => '1.302059',
13307             'Test2::API::Breakage' => '1.302059',
13308             'Test2::API::Context' => '1.302059',
13309             'Test2::API::Instance' => '1.302059',
13310             'Test2::API::Stack' => '1.302059',
13311             'Test2::Event' => '1.302059',
13312             'Test2::Event::Bail' => '1.302059',
13313             'Test2::Event::Diag' => '1.302059',
13314             'Test2::Event::Exception'=> '1.302059',
13315             'Test2::Event::Generic' => '1.302059',
13316             'Test2::Event::Info' => '1.302059',
13317             'Test2::Event::Note' => '1.302059',
13318             'Test2::Event::Ok' => '1.302059',
13319             'Test2::Event::Plan' => '1.302059',
13320             'Test2::Event::Skip' => '1.302059',
13321             'Test2::Event::Subtest' => '1.302059',
13322             'Test2::Event::Waiting' => '1.302059',
13323             'Test2::Formatter' => '1.302059',
13324             'Test2::Formatter::TAP' => '1.302059',
13325             'Test2::Hub' => '1.302059',
13326             'Test2::Hub::Interceptor'=> '1.302059',
13327             'Test2::Hub::Interceptor::Terminator'=> '1.302059',
13328             'Test2::Hub::Subtest' => '1.302059',
13329             'Test2::IPC' => '1.302059',
13330             'Test2::IPC::Driver' => '1.302059',
13331             'Test2::IPC::Driver::Files'=> '1.302059',
13332             'Test2::Util' => '1.302059',
13333             'Test2::Util::ExternalMeta'=> '1.302059',
13334             'Test2::Util::HashBase' => '1.302059',
13335             'Test2::Util::Trace' => '1.302059',
13336             'Test::Builder' => '1.302059',
13337             'Test::Builder::Formatter'=> '1.302059',
13338             'Test::Builder::Module' => '1.302059',
13339             'Test::Builder::Tester' => '1.302059',
13340             'Test::Builder::Tester::Color'=> '1.302059',
13341             'Test::Builder::TodoDiag'=> '1.302059',
13342             'Test::More' => '1.302059',
13343             'Test::Simple' => '1.302059',
13344             'Test::Tester' => '1.302059',
13345             'Test::Tester::Capture' => '1.302059',
13346             'Test::Tester::CaptureRunner'=> '1.302059',
13347             'Test::Tester::Delegate'=> '1.302059',
13348             'Test::use::ok' => '1.302059',
13349             'Time::HiRes' => '1.9740_01',
13350             'VMS::Stdio' => '2.42',
13351             'XS::APItest' => '0.86',
13352             'attributes' => '0.28',
13353             'mro' => '1.19',
13354             'ok' => '1.302059',
13355             'overload' => '1.27',
13356             'parent' => '0.236',
13357             },
13358             removed => {
13359             }
13360             },
13361             5.025007 => {
13362             delta_from => 5.025006,
13363             changed => {
13364             'Archive::Tar' => '2.18',
13365             'Archive::Tar::Constant'=> '2.18',
13366             'Archive::Tar::File' => '2.18',
13367             'B' => '1.65',
13368             'B::Op_private' => '5.025007',
13369             'Config' => '5.025007',
13370             'Cwd' => '3.66',
13371             'Data::Dumper' => '2.165',
13372             'Devel::Peek' => '1.26',
13373             'DynaLoader' => '1.40',
13374             'Errno' => '1.27',
13375             'ExtUtils::ParseXS::Utilities'=> '3.34',
13376             'File::Spec' => '3.66',
13377             'File::Spec::AmigaOS' => '3.66',
13378             'File::Spec::Cygwin' => '3.66',
13379             'File::Spec::Epoc' => '3.66',
13380             'File::Spec::Functions' => '3.66',
13381             'File::Spec::Mac' => '3.66',
13382             'File::Spec::OS2' => '3.66',
13383             'File::Spec::Unix' => '3.66',
13384             'File::Spec::VMS' => '3.66',
13385             'File::Spec::Win32' => '3.66',
13386             'Hash::Util' => '0.22',
13387             'JSON::PP' => '2.27400_02',
13388             'List::Util' => '1.46_02',
13389             'List::Util::XS' => '1.46_02',
13390             'Math::BigFloat' => '1.999727',
13391             'Math::BigInt' => '1.999727',
13392             'Math::BigInt::Calc' => '1.999727',
13393             'Math::BigInt::CalcEmu' => '1.999727',
13394             'Math::Complex' => '1.5901',
13395             'Module::CoreList' => '5.20161120',
13396             'Module::CoreList::TieHashDelta'=> '5.20161120',
13397             'Module::CoreList::Utils'=> '5.20161120',
13398             'Net::Ping' => '2.55',
13399             'Opcode' => '1.39',
13400             'POSIX' => '1.75',
13401             'Pod::Man' => '4.09',
13402             'Pod::ParseLink' => '4.09',
13403             'Pod::Text' => '4.09',
13404             'Pod::Text::Color' => '4.09',
13405             'Pod::Text::Overstrike' => '4.09',
13406             'Pod::Text::Termcap' => '4.09',
13407             'Scalar::Util' => '1.46_02',
13408             'Storable' => '2.59',
13409             'Sub::Util' => '1.46_02',
13410             'Term::ANSIColor' => '4.06',
13411             'Test2' => '1.302062',
13412             'Test2::API' => '1.302062',
13413             'Test2::API::Breakage' => '1.302062',
13414             'Test2::API::Context' => '1.302062',
13415             'Test2::API::Instance' => '1.302062',
13416             'Test2::API::Stack' => '1.302062',
13417             'Test2::Event' => '1.302062',
13418             'Test2::Event::Bail' => '1.302062',
13419             'Test2::Event::Diag' => '1.302062',
13420             'Test2::Event::Exception'=> '1.302062',
13421             'Test2::Event::Generic' => '1.302062',
13422             'Test2::Event::Info' => '1.302062',
13423             'Test2::Event::Note' => '1.302062',
13424             'Test2::Event::Ok' => '1.302062',
13425             'Test2::Event::Plan' => '1.302062',
13426             'Test2::Event::Skip' => '1.302062',
13427             'Test2::Event::Subtest' => '1.302062',
13428             'Test2::Event::Waiting' => '1.302062',
13429             'Test2::Formatter' => '1.302062',
13430             'Test2::Formatter::TAP' => '1.302062',
13431             'Test2::Hub' => '1.302062',
13432             'Test2::Hub::Interceptor'=> '1.302062',
13433             'Test2::Hub::Interceptor::Terminator'=> '1.302062',
13434             'Test2::Hub::Subtest' => '1.302062',
13435             'Test2::IPC' => '1.302062',
13436             'Test2::IPC::Driver' => '1.302062',
13437             'Test2::IPC::Driver::Files'=> '1.302062',
13438             'Test2::Util' => '1.302062',
13439             'Test2::Util::ExternalMeta'=> '1.302062',
13440             'Test2::Util::HashBase' => '1.302062',
13441             'Test2::Util::Trace' => '1.302062',
13442             'Test::Builder' => '1.302062',
13443             'Test::Builder::Formatter'=> '1.302062',
13444             'Test::Builder::Module' => '1.302062',
13445             'Test::Builder::Tester' => '1.302062',
13446             'Test::Builder::Tester::Color'=> '1.302062',
13447             'Test::Builder::TodoDiag'=> '1.302062',
13448             'Test::More' => '1.302062',
13449             'Test::Simple' => '1.302062',
13450             'Test::Tester' => '1.302062',
13451             'Test::Tester::Capture' => '1.302062',
13452             'Test::Tester::CaptureRunner'=> '1.302062',
13453             'Test::Tester::Delegate'=> '1.302062',
13454             'Test::use::ok' => '1.302062',
13455             'Time::HiRes' => '1.9740_03',
13456             'Unicode::Collate' => '1.18',
13457             'Unicode::Collate::CJK::Big5'=> '1.18',
13458             'Unicode::Collate::CJK::GB2312'=> '1.18',
13459             'Unicode::Collate::CJK::JISX0208'=> '1.18',
13460             'Unicode::Collate::CJK::Korean'=> '1.18',
13461             'Unicode::Collate::CJK::Pinyin'=> '1.18',
13462             'Unicode::Collate::CJK::Stroke'=> '1.18',
13463             'Unicode::Collate::CJK::Zhuyin'=> '1.18',
13464             'Unicode::Collate::Locale'=> '1.18',
13465             'Unicode::UCD' => '0.67',
13466             'XS::APItest' => '0.87',
13467             'XS::Typemap' => '0.15',
13468             'mro' => '1.20',
13469             'ok' => '1.302062',
13470             'threads' => '2.10',
13471             },
13472             removed => {
13473             }
13474             },
13475             5.025008 => {
13476             delta_from => 5.025007,
13477             changed => {
13478             'Archive::Tar' => '2.24',
13479             'Archive::Tar::Constant'=> '2.24',
13480             'Archive::Tar::File' => '2.24',
13481             'B::Debug' => '1.24',
13482             'B::Op_private' => '5.025008',
13483             'Config' => '5.025008',
13484             'Data::Dumper' => '2.166',
13485             'Encode' => '2.88',
13486             'Encode::Alias' => '2.21',
13487             'Encode::CN::HZ' => '2.08',
13488             'Encode::MIME::Header' => '2.24',
13489             'Encode::MIME::Name' => '1.02',
13490             'Encode::Unicode' => '2.1501',
13491             'IO' => '1.38',
13492             'Locale::Codes' => '3.42',
13493             'Locale::Codes::Constants'=> '3.42',
13494             'Locale::Codes::Country'=> '3.42',
13495             'Locale::Codes::Country_Codes'=> '3.42',
13496             'Locale::Codes::Country_Retired'=> '3.42',
13497             'Locale::Codes::Currency'=> '3.42',
13498             'Locale::Codes::Currency_Codes'=> '3.42',
13499             'Locale::Codes::Currency_Retired'=> '3.42',
13500             'Locale::Codes::LangExt'=> '3.42',
13501             'Locale::Codes::LangExt_Codes'=> '3.42',
13502             'Locale::Codes::LangExt_Retired'=> '3.42',
13503             'Locale::Codes::LangFam'=> '3.42',
13504             'Locale::Codes::LangFam_Codes'=> '3.42',
13505             'Locale::Codes::LangFam_Retired'=> '3.42',
13506             'Locale::Codes::LangVar'=> '3.42',
13507             'Locale::Codes::LangVar_Codes'=> '3.42',
13508             'Locale::Codes::LangVar_Retired'=> '3.42',
13509             'Locale::Codes::Language'=> '3.42',
13510             'Locale::Codes::Language_Codes'=> '3.42',
13511             'Locale::Codes::Language_Retired'=> '3.42',
13512             'Locale::Codes::Script' => '3.42',
13513             'Locale::Codes::Script_Codes'=> '3.42',
13514             'Locale::Codes::Script_Retired'=> '3.42',
13515             'Locale::Country' => '3.42',
13516             'Locale::Currency' => '3.42',
13517             'Locale::Language' => '3.42',
13518             'Locale::Script' => '3.42',
13519             'Math::BigFloat' => '1.999806',
13520             'Math::BigFloat::Trace' => '0.47',
13521             'Math::BigInt' => '1.999806',
13522             'Math::BigInt::Calc' => '1.999806',
13523             'Math::BigInt::CalcEmu' => '1.999806',
13524             'Math::BigInt::FastCalc'=> '0.5005',
13525             'Math::BigInt::Lib' => '1.999806',
13526             'Math::BigInt::Trace' => '0.47',
13527             'Math::BigRat' => '0.2611',
13528             'Module::CoreList' => '5.20161220',
13529             'Module::CoreList::TieHashDelta'=> '5.20161220',
13530             'Module::CoreList::Utils'=> '5.20161220',
13531             'POSIX' => '1.76',
13532             'PerlIO::scalar' => '0.25',
13533             'Pod::Simple' => '3.35',
13534             'Pod::Simple::BlackBox' => '3.35',
13535             'Pod::Simple::Checker' => '3.35',
13536             'Pod::Simple::Debug' => '3.35',
13537             'Pod::Simple::DumpAsText'=> '3.35',
13538             'Pod::Simple::DumpAsXML'=> '3.35',
13539             'Pod::Simple::HTML' => '3.35',
13540             'Pod::Simple::HTMLBatch'=> '3.35',
13541             'Pod::Simple::LinkSection'=> '3.35',
13542             'Pod::Simple::Methody' => '3.35',
13543             'Pod::Simple::Progress' => '3.35',
13544             'Pod::Simple::PullParser'=> '3.35',
13545             'Pod::Simple::PullParserEndToken'=> '3.35',
13546             'Pod::Simple::PullParserStartToken'=> '3.35',
13547             'Pod::Simple::PullParserTextToken'=> '3.35',
13548             'Pod::Simple::PullParserToken'=> '3.35',
13549             'Pod::Simple::RTF' => '3.35',
13550             'Pod::Simple::Search' => '3.35',
13551             'Pod::Simple::SimpleTree'=> '3.35',
13552             'Pod::Simple::Text' => '3.35',
13553             'Pod::Simple::TextContent'=> '3.35',
13554             'Pod::Simple::TiedOutFH'=> '3.35',
13555             'Pod::Simple::Transcode'=> '3.35',
13556             'Pod::Simple::TranscodeDumb'=> '3.35',
13557             'Pod::Simple::TranscodeSmart'=> '3.35',
13558             'Pod::Simple::XHTML' => '3.35',
13559             'Pod::Simple::XMLOutStream'=> '3.35',
13560             'Test2' => '1.302073',
13561             'Test2::API' => '1.302073',
13562             'Test2::API::Breakage' => '1.302073',
13563             'Test2::API::Context' => '1.302073',
13564             'Test2::API::Instance' => '1.302073',
13565             'Test2::API::Stack' => '1.302073',
13566             'Test2::Event' => '1.302073',
13567             'Test2::Event::Bail' => '1.302073',
13568             'Test2::Event::Diag' => '1.302073',
13569             'Test2::Event::Encoding'=> '1.302073',
13570             'Test2::Event::Exception'=> '1.302073',
13571             'Test2::Event::Generic' => '1.302073',
13572             'Test2::Event::Info' => '1.302073',
13573             'Test2::Event::Note' => '1.302073',
13574             'Test2::Event::Ok' => '1.302073',
13575             'Test2::Event::Plan' => '1.302073',
13576             'Test2::Event::Skip' => '1.302073',
13577             'Test2::Event::Subtest' => '1.302073',
13578             'Test2::Event::TAP::Version'=> '1.302073',
13579             'Test2::Event::Waiting' => '1.302073',
13580             'Test2::Formatter' => '1.302073',
13581             'Test2::Formatter::TAP' => '1.302073',
13582             'Test2::Hub' => '1.302073',
13583             'Test2::Hub::Interceptor'=> '1.302073',
13584             'Test2::Hub::Interceptor::Terminator'=> '1.302073',
13585             'Test2::Hub::Subtest' => '1.302073',
13586             'Test2::IPC' => '1.302073',
13587             'Test2::IPC::Driver' => '1.302073',
13588             'Test2::IPC::Driver::Files'=> '1.302073',
13589             'Test2::Tools::Tiny' => '1.302073',
13590             'Test2::Util' => '1.302073',
13591             'Test2::Util::ExternalMeta'=> '1.302073',
13592             'Test2::Util::HashBase' => '0.002',
13593             'Test2::Util::Trace' => '1.302073',
13594             'Test::Builder' => '1.302073',
13595             'Test::Builder::Formatter'=> '1.302073',
13596             'Test::Builder::Module' => '1.302073',
13597             'Test::Builder::Tester' => '1.302073',
13598             'Test::Builder::Tester::Color'=> '1.302073',
13599             'Test::Builder::TodoDiag'=> '1.302073',
13600             'Test::More' => '1.302073',
13601             'Test::Simple' => '1.302073',
13602             'Test::Tester' => '1.302073',
13603             'Test::Tester::Capture' => '1.302073',
13604             'Test::Tester::CaptureRunner'=> '1.302073',
13605             'Test::Tester::Delegate'=> '1.302073',
13606             'Test::use::ok' => '1.302073',
13607             'Time::HiRes' => '1.9741',
13608             'Time::Local' => '1.25',
13609             'Unicode::Collate' => '1.19',
13610             'Unicode::Collate::CJK::Big5'=> '1.19',
13611             'Unicode::Collate::CJK::GB2312'=> '1.19',
13612             'Unicode::Collate::CJK::JISX0208'=> '1.19',
13613             'Unicode::Collate::CJK::Korean'=> '1.19',
13614             'Unicode::Collate::CJK::Pinyin'=> '1.19',
13615             'Unicode::Collate::CJK::Stroke'=> '1.19',
13616             'Unicode::Collate::CJK::Zhuyin'=> '1.19',
13617             'Unicode::Collate::Locale'=> '1.19',
13618             'bigint' => '0.47',
13619             'bignum' => '0.47',
13620             'bigrat' => '0.47',
13621             'encoding' => '2.19',
13622             'ok' => '1.302073',
13623             },
13624             removed => {
13625             }
13626             },
13627             5.022003 => {
13628             delta_from => 5.022002,
13629             changed => {
13630             'App::Cpan' => '1.63_01',
13631             'App::Prove' => '3.35_01',
13632             'App::Prove::State' => '3.35_01',
13633             'App::Prove::State::Result'=> '3.35_01',
13634             'App::Prove::State::Result::Test'=> '3.35_01',
13635             'Archive::Tar' => '2.04_01',
13636             'Archive::Tar::Constant'=> '2.04_01',
13637             'Archive::Tar::File' => '2.04_01',
13638             'B::Op_private' => '5.022003',
13639             'CPAN' => '2.11_01',
13640             'Compress::Zlib' => '2.068_001',
13641             'Config' => '5.022003',
13642             'Cwd' => '3.56_02',
13643             'Digest' => '1.17_01',
13644             'Digest::SHA' => '5.95_01',
13645             'Encode' => '2.72_01',
13646             'ExtUtils::Command' => '1.20_01',
13647             'ExtUtils::Command::MM' => '7.04_02',
13648             'ExtUtils::Liblist' => '7.04_02',
13649             'ExtUtils::Liblist::Kid'=> '7.04_02',
13650             'ExtUtils::MM' => '7.04_02',
13651             'ExtUtils::MM_AIX' => '7.04_02',
13652             'ExtUtils::MM_Any' => '7.04_02',
13653             'ExtUtils::MM_BeOS' => '7.04_02',
13654             'ExtUtils::MM_Cygwin' => '7.04_02',
13655             'ExtUtils::MM_DOS' => '7.04_02',
13656             'ExtUtils::MM_Darwin' => '7.04_02',
13657             'ExtUtils::MM_MacOS' => '7.04_02',
13658             'ExtUtils::MM_NW5' => '7.04_02',
13659             'ExtUtils::MM_OS2' => '7.04_02',
13660             'ExtUtils::MM_QNX' => '7.04_02',
13661             'ExtUtils::MM_UWIN' => '7.04_02',
13662             'ExtUtils::MM_Unix' => '7.04_02',
13663             'ExtUtils::MM_VMS' => '7.04_02',
13664             'ExtUtils::MM_VOS' => '7.04_02',
13665             'ExtUtils::MM_Win32' => '7.04_02',
13666             'ExtUtils::MM_Win95' => '7.04_02',
13667             'ExtUtils::MY' => '7.04_02',
13668             'ExtUtils::MakeMaker' => '7.04_02',
13669             'ExtUtils::MakeMaker::Config'=> '7.04_02',
13670             'ExtUtils::Mkbootstrap' => '7.04_02',
13671             'ExtUtils::Mksymlists' => '7.04_02',
13672             'ExtUtils::testlib' => '7.04_02',
13673             'File::Fetch' => '0.48_01',
13674             'File::Spec' => '3.56_02',
13675             'File::Spec::Cygwin' => '3.56_02',
13676             'File::Spec::Epoc' => '3.56_02',
13677             'File::Spec::Functions' => '3.56_02',
13678             'File::Spec::Mac' => '3.56_02',
13679             'File::Spec::OS2' => '3.56_02',
13680             'File::Spec::Unix' => '3.56_02',
13681             'File::Spec::VMS' => '3.56_02',
13682             'File::Spec::Win32' => '3.56_02',
13683             'HTTP::Tiny' => '0.054_01',
13684             'I18N::LangTags::Detect'=> '1.05_01',
13685             'IO' => '1.35_01',
13686             'IO::Compress::Adapter::Bzip2'=> '2.068_001',
13687             'IO::Compress::Adapter::Deflate'=> '2.068_001',
13688             'IO::Compress::Adapter::Identity'=> '2.068_001',
13689             'IO::Compress::Base' => '2.068_001',
13690             'IO::Compress::Base::Common'=> '2.068_001',
13691             'IO::Compress::Bzip2' => '2.068_001',
13692             'IO::Compress::Deflate' => '2.068_001',
13693             'IO::Compress::Gzip' => '2.068_001',
13694             'IO::Compress::Gzip::Constants'=> '2.068_001',
13695             'IO::Compress::RawDeflate'=> '2.068_001',
13696             'IO::Compress::Zip' => '2.068_001',
13697             'IO::Compress::Zip::Constants'=> '2.068_001',
13698             'IO::Compress::Zlib::Constants'=> '2.068_001',
13699             'IO::Compress::Zlib::Extra'=> '2.068_001',
13700             'IO::Uncompress::Adapter::Bunzip2'=> '2.068_001',
13701             'IO::Uncompress::Adapter::Identity'=> '2.068_001',
13702             'IO::Uncompress::Adapter::Inflate'=> '2.068_001',
13703             'IO::Uncompress::AnyInflate'=> '2.068_001',
13704             'IO::Uncompress::AnyUncompress'=> '2.068_001',
13705             'IO::Uncompress::Base' => '2.068_001',
13706             'IO::Uncompress::Bunzip2'=> '2.068_001',
13707             'IO::Uncompress::Gunzip'=> '2.068_001',
13708             'IO::Uncompress::Inflate'=> '2.068_001',
13709             'IO::Uncompress::RawInflate'=> '2.068_001',
13710             'IO::Uncompress::Unzip' => '2.068_001',
13711             'IPC::Cmd' => '0.92_01',
13712             'JSON::PP' => '2.27300_01',
13713             'Locale::Maketext' => '1.26_01',
13714             'Locale::Maketext::Simple'=> '0.21_01',
13715             'Memoize' => '1.03_01',
13716             'Module::CoreList' => '5.20170114_22',
13717             'Module::CoreList::TieHashDelta'=> '5.20170114_22',
13718             'Module::CoreList::Utils'=> '5.20170114_22',
13719             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13720             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13721             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13722             'Net::Cmd' => '3.05_01',
13723             'Net::Config' => '3.05_01',
13724             'Net::Domain' => '3.05_01',
13725             'Net::FTP' => '3.05_01',
13726             'Net::FTP::A' => '3.05_01',
13727             'Net::FTP::E' => '3.05_01',
13728             'Net::FTP::I' => '3.05_01',
13729             'Net::FTP::L' => '3.05_01',
13730             'Net::FTP::dataconn' => '3.05_01',
13731             'Net::NNTP' => '3.05_01',
13732             'Net::Netrc' => '3.05_01',
13733             'Net::POP3' => '3.05_01',
13734             'Net::Ping' => '2.43_01',
13735             'Net::SMTP' => '3.05_01',
13736             'Net::Time' => '3.05_01',
13737             'Parse::CPAN::Meta' => '1.4414_001',
13738             'Pod::Html' => '1.2201',
13739             'Pod::Perldoc' => '3.25_01',
13740             'Storable' => '2.53_02',
13741             'Sys::Syslog' => '0.33_01',
13742             'TAP::Base' => '3.35_01',
13743             'TAP::Formatter::Base' => '3.35_01',
13744             'TAP::Formatter::Color' => '3.35_01',
13745             'TAP::Formatter::Console'=> '3.35_01',
13746             'TAP::Formatter::Console::ParallelSession'=> '3.35_01',
13747             'TAP::Formatter::Console::Session'=> '3.35_01',
13748             'TAP::Formatter::File' => '3.35_01',
13749             'TAP::Formatter::File::Session'=> '3.35_01',
13750             'TAP::Formatter::Session'=> '3.35_01',
13751             'TAP::Harness' => '3.35_01',
13752             'TAP::Harness::Env' => '3.35_01',
13753             'TAP::Object' => '3.35_01',
13754             'TAP::Parser' => '3.35_01',
13755             'TAP::Parser::Aggregator'=> '3.35_01',
13756             'TAP::Parser::Grammar' => '3.35_01',
13757             'TAP::Parser::Iterator' => '3.35_01',
13758             'TAP::Parser::Iterator::Array'=> '3.35_01',
13759             'TAP::Parser::Iterator::Process'=> '3.35_01',
13760             'TAP::Parser::Iterator::Stream'=> '3.35_01',
13761             'TAP::Parser::IteratorFactory'=> '3.35_01',
13762             'TAP::Parser::Multiplexer'=> '3.35_01',
13763             'TAP::Parser::Result' => '3.35_01',
13764             'TAP::Parser::Result::Bailout'=> '3.35_01',
13765             'TAP::Parser::Result::Comment'=> '3.35_01',
13766             'TAP::Parser::Result::Plan'=> '3.35_01',
13767             'TAP::Parser::Result::Pragma'=> '3.35_01',
13768             'TAP::Parser::Result::Test'=> '3.35_01',
13769             'TAP::Parser::Result::Unknown'=> '3.35_01',
13770             'TAP::Parser::Result::Version'=> '3.35_01',
13771             'TAP::Parser::Result::YAML'=> '3.35_01',
13772             'TAP::Parser::ResultFactory'=> '3.35_01',
13773             'TAP::Parser::Scheduler'=> '3.35_01',
13774             'TAP::Parser::Scheduler::Job'=> '3.35_01',
13775             'TAP::Parser::Scheduler::Spinner'=> '3.35_01',
13776             'TAP::Parser::Source' => '3.35_01',
13777             'TAP::Parser::SourceHandler'=> '3.35_01',
13778             'TAP::Parser::SourceHandler::Executable'=> '3.35_01',
13779             'TAP::Parser::SourceHandler::File'=> '3.35_01',
13780             'TAP::Parser::SourceHandler::Handle'=> '3.35_01',
13781             'TAP::Parser::SourceHandler::Perl'=> '3.35_01',
13782             'TAP::Parser::SourceHandler::RawTAP'=> '3.35_01',
13783             'TAP::Parser::YAMLish::Reader'=> '3.35_01',
13784             'TAP::Parser::YAMLish::Writer'=> '3.35_01',
13785             'Test' => '1.26_01',
13786             'Test::Harness' => '3.35_01',
13787             'XSLoader' => '0.20_01',
13788             'bigint' => '0.39_01',
13789             'bignum' => '0.39_01',
13790             'bigrat' => '0.39_01',
13791             },
13792             removed => {
13793             }
13794             },
13795             5.024001 => {
13796             delta_from => 5.024000,
13797             changed => {
13798             'App::Cpan' => '1.63_01',
13799             'App::Prove' => '3.36_01',
13800             'App::Prove::State' => '3.36_01',
13801             'App::Prove::State::Result'=> '3.36_01',
13802             'App::Prove::State::Result::Test'=> '3.36_01',
13803             'Archive::Tar' => '2.04_01',
13804             'Archive::Tar::Constant'=> '2.04_01',
13805             'Archive::Tar::File' => '2.04_01',
13806             'B::Op_private' => '5.024001',
13807             'CPAN' => '2.11_01',
13808             'Compress::Zlib' => '2.069_001',
13809             'Config' => '5.024001',
13810             'Cwd' => '3.63_01',
13811             'Digest' => '1.17_01',
13812             'Digest::SHA' => '5.95_01',
13813             'Encode' => '2.80_01',
13814             'ExtUtils::Command' => '7.10_02',
13815             'ExtUtils::Command::MM' => '7.10_02',
13816             'ExtUtils::Liblist' => '7.10_02',
13817             'ExtUtils::Liblist::Kid'=> '7.10_02',
13818             'ExtUtils::MM' => '7.10_02',
13819             'ExtUtils::MM_AIX' => '7.10_02',
13820             'ExtUtils::MM_Any' => '7.10_02',
13821             'ExtUtils::MM_BeOS' => '7.10_02',
13822             'ExtUtils::MM_Cygwin' => '7.10_02',
13823             'ExtUtils::MM_DOS' => '7.10_02',
13824             'ExtUtils::MM_Darwin' => '7.10_02',
13825             'ExtUtils::MM_MacOS' => '7.10_02',
13826             'ExtUtils::MM_NW5' => '7.10_02',
13827             'ExtUtils::MM_OS2' => '7.10_02',
13828             'ExtUtils::MM_QNX' => '7.10_02',
13829             'ExtUtils::MM_UWIN' => '7.10_02',
13830             'ExtUtils::MM_Unix' => '7.10_02',
13831             'ExtUtils::MM_VMS' => '7.10_02',
13832             'ExtUtils::MM_VOS' => '7.10_02',
13833             'ExtUtils::MM_Win32' => '7.10_02',
13834             'ExtUtils::MM_Win95' => '7.10_02',
13835             'ExtUtils::MY' => '7.10_02',
13836             'ExtUtils::MakeMaker' => '7.10_02',
13837             'ExtUtils::MakeMaker::Config'=> '7.10_02',
13838             'ExtUtils::Mkbootstrap' => '7.10_02',
13839             'ExtUtils::Mksymlists' => '7.10_02',
13840             'ExtUtils::testlib' => '7.10_02',
13841             'File::Fetch' => '0.48_01',
13842             'File::Spec' => '3.63_01',
13843             'File::Spec::Cygwin' => '3.63_01',
13844             'File::Spec::Epoc' => '3.63_01',
13845             'File::Spec::Functions' => '3.63_01',
13846             'File::Spec::Mac' => '3.63_01',
13847             'File::Spec::OS2' => '3.63_01',
13848             'File::Spec::Unix' => '3.63_01',
13849             'File::Spec::VMS' => '3.63_01',
13850             'File::Spec::Win32' => '3.63_01',
13851             'HTTP::Tiny' => '0.056_001',
13852             'I18N::LangTags::Detect'=> '1.05_01',
13853             'IO' => '1.36_01',
13854             'IO::Compress::Adapter::Bzip2'=> '2.069_001',
13855             'IO::Compress::Adapter::Deflate'=> '2.069_001',
13856             'IO::Compress::Adapter::Identity'=> '2.069_001',
13857             'IO::Compress::Base' => '2.069_001',
13858             'IO::Compress::Base::Common'=> '2.069_001',
13859             'IO::Compress::Bzip2' => '2.069_001',
13860             'IO::Compress::Deflate' => '2.069_001',
13861             'IO::Compress::Gzip' => '2.069_001',
13862             'IO::Compress::Gzip::Constants'=> '2.069_001',
13863             'IO::Compress::RawDeflate'=> '2.069_001',
13864             'IO::Compress::Zip' => '2.069_001',
13865             'IO::Compress::Zip::Constants'=> '2.069_001',
13866             'IO::Compress::Zlib::Constants'=> '2.069_001',
13867             'IO::Compress::Zlib::Extra'=> '2.069_001',
13868             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_001',
13869             'IO::Uncompress::Adapter::Identity'=> '2.069_001',
13870             'IO::Uncompress::Adapter::Inflate'=> '2.069_001',
13871             'IO::Uncompress::AnyInflate'=> '2.069_001',
13872             'IO::Uncompress::AnyUncompress'=> '2.069_001',
13873             'IO::Uncompress::Base' => '2.069_001',
13874             'IO::Uncompress::Bunzip2'=> '2.069_001',
13875             'IO::Uncompress::Gunzip'=> '2.069_001',
13876             'IO::Uncompress::Inflate'=> '2.069_001',
13877             'IO::Uncompress::RawInflate'=> '2.069_001',
13878             'IO::Uncompress::Unzip' => '2.069_001',
13879             'IPC::Cmd' => '0.92_01',
13880             'JSON::PP' => '2.27300_01',
13881             'Locale::Maketext' => '1.26_01',
13882             'Locale::Maketext::Simple'=> '0.21_01',
13883             'Math::BigFloat::Trace' => '0.42_01',
13884             'Math::BigInt::Trace' => '0.42_01',
13885             'Memoize' => '1.03_01',
13886             'Module::CoreList' => '5.20170114_24',
13887             'Module::CoreList::TieHashDelta'=> '5.20170114_24',
13888             'Module::CoreList::Utils'=> '5.20170114_24',
13889             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13890             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13891             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13892             'Net::Cmd' => '3.08_01',
13893             'Net::Config' => '3.08_01',
13894             'Net::Domain' => '3.08_01',
13895             'Net::FTP' => '3.08_01',
13896             'Net::FTP::A' => '3.08_01',
13897             'Net::FTP::E' => '3.08_01',
13898             'Net::FTP::I' => '3.08_01',
13899             'Net::FTP::L' => '3.08_01',
13900             'Net::FTP::dataconn' => '3.08_01',
13901             'Net::NNTP' => '3.08_01',
13902             'Net::Netrc' => '3.08_01',
13903             'Net::POP3' => '3.08_01',
13904             'Net::Ping' => '2.43_01',
13905             'Net::SMTP' => '3.08_01',
13906             'Net::Time' => '3.08_01',
13907             'Parse::CPAN::Meta' => '1.4417_001',
13908             'Pod::Html' => '1.2201',
13909             'Pod::Perldoc' => '3.25_03',
13910             'Storable' => '2.56_01',
13911             'Sys::Syslog' => '0.33_01',
13912             'TAP::Base' => '3.36_01',
13913             'TAP::Formatter::Base' => '3.36_01',
13914             'TAP::Formatter::Color' => '3.36_01',
13915             'TAP::Formatter::Console'=> '3.36_01',
13916             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13917             'TAP::Formatter::Console::Session'=> '3.36_01',
13918             'TAP::Formatter::File' => '3.36_01',
13919             'TAP::Formatter::File::Session'=> '3.36_01',
13920             'TAP::Formatter::Session'=> '3.36_01',
13921             'TAP::Harness' => '3.36_01',
13922             'TAP::Harness::Env' => '3.36_01',
13923             'TAP::Object' => '3.36_01',
13924             'TAP::Parser' => '3.36_01',
13925             'TAP::Parser::Aggregator'=> '3.36_01',
13926             'TAP::Parser::Grammar' => '3.36_01',
13927             'TAP::Parser::Iterator' => '3.36_01',
13928             'TAP::Parser::Iterator::Array'=> '3.36_01',
13929             'TAP::Parser::Iterator::Process'=> '3.36_01',
13930             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13931             'TAP::Parser::IteratorFactory'=> '3.36_01',
13932             'TAP::Parser::Multiplexer'=> '3.36_01',
13933             'TAP::Parser::Result' => '3.36_01',
13934             'TAP::Parser::Result::Bailout'=> '3.36_01',
13935             'TAP::Parser::Result::Comment'=> '3.36_01',
13936             'TAP::Parser::Result::Plan'=> '3.36_01',
13937             'TAP::Parser::Result::Pragma'=> '3.36_01',
13938             'TAP::Parser::Result::Test'=> '3.36_01',
13939             'TAP::Parser::Result::Unknown'=> '3.36_01',
13940             'TAP::Parser::Result::Version'=> '3.36_01',
13941             'TAP::Parser::Result::YAML'=> '3.36_01',
13942             'TAP::Parser::ResultFactory'=> '3.36_01',
13943             'TAP::Parser::Scheduler'=> '3.36_01',
13944             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13945             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13946             'TAP::Parser::Source' => '3.36_01',
13947             'TAP::Parser::SourceHandler'=> '3.36_01',
13948             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13949             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13950             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13951             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13952             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13953             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13954             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13955             'Test' => '1.28_01',
13956             'Test::Harness' => '3.36_01',
13957             'XSLoader' => '0.22',
13958             'bigint' => '0.42_01',
13959             'bignum' => '0.42_01',
13960             'bigrat' => '0.42_01',
13961             },
13962             removed => {
13963             }
13964             },
13965             5.025009 => {
13966             delta_from => 5.025008,
13967             changed => {
13968             'App::Cpan' => '1.66',
13969             'B::Deparse' => '1.40',
13970             'B::Op_private' => '5.025009',
13971             'B::Terse' => '1.07',
13972             'B::Xref' => '1.06',
13973             'CPAN' => '2.16',
13974             'CPAN::Bundle' => '5.5002',
13975             'CPAN::Distribution' => '2.16',
13976             'CPAN::Exception::RecursiveDependency'=> '5.5001',
13977             'CPAN::FTP' => '5.5008',
13978             'CPAN::FirstTime' => '5.5310',
13979             'CPAN::HandleConfig' => '5.5008',
13980             'CPAN::Module' => '5.5003',
13981             'Compress::Raw::Bzip2' => '2.070',
13982             'Compress::Raw::Zlib' => '2.070',
13983             'Config' => '5.025009',
13984             'DB_File' => '1.840',
13985             'Data::Dumper' => '2.167',
13986             'Devel::SelfStubber' => '1.06',
13987             'DynaLoader' => '1.41',
13988             'Errno' => '1.28',
13989             'ExtUtils::Embed' => '1.34',
13990             'File::Glob' => '1.28',
13991             'I18N::LangTags' => '0.42',
13992             'Module::CoreList' => '5.20170120',
13993             'Module::CoreList::TieHashDelta'=> '5.20170120',
13994             'Module::CoreList::Utils'=> '5.20170120',
13995             'OS2::Process' => '1.12',
13996             'PerlIO::scalar' => '0.26',
13997             'Pod::Html' => '1.2202',
13998             'Storable' => '2.61',
13999             'Symbol' => '1.08',
14000             'Term::ReadLine' => '1.16',
14001             'Test' => '1.30',
14002             'Unicode::UCD' => '0.68',
14003             'VMS::DCLsym' => '1.08',
14004             'XS::APItest' => '0.88',
14005             'XSLoader' => '0.26',
14006             'attributes' => '0.29',
14007             'diagnostics' => '1.36',
14008             'feature' => '1.46',
14009             'lib' => '0.64',
14010             'overload' => '1.28',
14011             're' => '0.34',
14012             'threads' => '2.12',
14013             'threads::shared' => '1.54',
14014             },
14015             removed => {
14016             }
14017             },
14018             5.025010 => {
14019             delta_from => 5.025009,
14020             changed => {
14021             'B' => '1.68',
14022             'B::Op_private' => '5.025010',
14023             'CPAN' => '2.17',
14024             'CPAN::Distribution' => '2.17',
14025             'Config' => '5.02501',
14026             'Getopt::Std' => '1.12',
14027             'Module::CoreList' => '5.20170220',
14028             'Module::CoreList::TieHashDelta'=> '5.20170220',
14029             'Module::CoreList::Utils'=> '5.20170220',
14030             'PerlIO' => '1.10',
14031             'Storable' => '2.62',
14032             'Thread::Queue' => '3.12',
14033             'feature' => '1.47',
14034             'open' => '1.11',
14035             'threads' => '2.13',
14036             },
14037             removed => {
14038             }
14039             },
14040             5.025011 => {
14041             delta_from => 5.025010,
14042             changed => {
14043             'App::Prove' => '3.38',
14044             'App::Prove::State' => '3.38',
14045             'App::Prove::State::Result'=> '3.38',
14046             'App::Prove::State::Result::Test'=> '3.38',
14047             'B::Op_private' => '5.025011',
14048             'Compress::Raw::Bzip2' => '2.074',
14049             'Compress::Raw::Zlib' => '2.074',
14050             'Compress::Zlib' => '2.074',
14051             'Config' => '5.025011',
14052             'Config::Perl::V' => '0.28',
14053             'Cwd' => '3.67',
14054             'ExtUtils::ParseXS' => '3.34',
14055             'ExtUtils::ParseXS::Constants'=> '3.34',
14056             'ExtUtils::ParseXS::CountLines'=> '3.34',
14057             'ExtUtils::ParseXS::Eval'=> '3.34',
14058             'ExtUtils::Typemaps' => '3.34',
14059             'ExtUtils::Typemaps::Cmd'=> '3.34',
14060             'ExtUtils::Typemaps::InputMap'=> '3.34',
14061             'ExtUtils::Typemaps::OutputMap'=> '3.34',
14062             'ExtUtils::Typemaps::Type'=> '3.34',
14063             'File::Spec' => '3.67',
14064             'File::Spec::AmigaOS' => '3.67',
14065             'File::Spec::Cygwin' => '3.67',
14066             'File::Spec::Epoc' => '3.67',
14067             'File::Spec::Functions' => '3.67',
14068             'File::Spec::Mac' => '3.67',
14069             'File::Spec::OS2' => '3.67',
14070             'File::Spec::Unix' => '3.67',
14071             'File::Spec::VMS' => '3.67',
14072             'File::Spec::Win32' => '3.67',
14073             'IO::Compress::Adapter::Bzip2'=> '2.074',
14074             'IO::Compress::Adapter::Deflate'=> '2.074',
14075             'IO::Compress::Adapter::Identity'=> '2.074',
14076             'IO::Compress::Base' => '2.074',
14077             'IO::Compress::Base::Common'=> '2.074',
14078             'IO::Compress::Bzip2' => '2.074',
14079             'IO::Compress::Deflate' => '2.074',
14080             'IO::Compress::Gzip' => '2.074',
14081             'IO::Compress::Gzip::Constants'=> '2.074',
14082             'IO::Compress::RawDeflate'=> '2.074',
14083             'IO::Compress::Zip' => '2.074',
14084             'IO::Compress::Zip::Constants'=> '2.074',
14085             'IO::Compress::Zlib::Constants'=> '2.074',
14086             'IO::Compress::Zlib::Extra'=> '2.074',
14087             'IO::Uncompress::Adapter::Bunzip2'=> '2.074',
14088             'IO::Uncompress::Adapter::Identity'=> '2.074',
14089             'IO::Uncompress::Adapter::Inflate'=> '2.074',
14090             'IO::Uncompress::AnyInflate'=> '2.074',
14091             'IO::Uncompress::AnyUncompress'=> '2.074',
14092             'IO::Uncompress::Base' => '2.074',
14093             'IO::Uncompress::Bunzip2'=> '2.074',
14094             'IO::Uncompress::Gunzip'=> '2.074',
14095             'IO::Uncompress::Inflate'=> '2.074',
14096             'IO::Uncompress::RawInflate'=> '2.074',
14097             'IO::Uncompress::Unzip' => '2.074',
14098             'Module::CoreList' => '5.20170320',
14099             'Module::CoreList::TieHashDelta'=> '5.20170230',
14100             'Module::CoreList::Utils'=> '5.20170320',
14101             'Pod::Perldoc' => '3.28',
14102             'Pod::Perldoc::BaseTo' => '3.28',
14103             'Pod::Perldoc::GetOptsOO'=> '3.28',
14104             'Pod::Perldoc::ToANSI' => '3.28',
14105             'Pod::Perldoc::ToChecker'=> '3.28',
14106             'Pod::Perldoc::ToMan' => '3.28',
14107             'Pod::Perldoc::ToNroff' => '3.28',
14108             'Pod::Perldoc::ToPod' => '3.28',
14109             'Pod::Perldoc::ToRtf' => '3.28',
14110             'Pod::Perldoc::ToTerm' => '3.28',
14111             'Pod::Perldoc::ToText' => '3.28',
14112             'Pod::Perldoc::ToTk' => '3.28',
14113             'Pod::Perldoc::ToXml' => '3.28',
14114             'TAP::Base' => '3.38',
14115             'TAP::Formatter::Base' => '3.38',
14116             'TAP::Formatter::Color' => '3.38',
14117             'TAP::Formatter::Console'=> '3.38',
14118             'TAP::Formatter::Console::ParallelSession'=> '3.38',
14119             'TAP::Formatter::Console::Session'=> '3.38',
14120             'TAP::Formatter::File' => '3.38',
14121             'TAP::Formatter::File::Session'=> '3.38',
14122             'TAP::Formatter::Session'=> '3.38',
14123             'TAP::Harness' => '3.38',
14124             'TAP::Harness::Env' => '3.38',
14125             'TAP::Object' => '3.38',
14126             'TAP::Parser' => '3.38',
14127             'TAP::Parser::Aggregator'=> '3.38',
14128             'TAP::Parser::Grammar' => '3.38',
14129             'TAP::Parser::Iterator' => '3.38',
14130             'TAP::Parser::Iterator::Array'=> '3.38',
14131             'TAP::Parser::Iterator::Process'=> '3.38',
14132             'TAP::Parser::Iterator::Stream'=> '3.38',
14133             'TAP::Parser::IteratorFactory'=> '3.38',
14134             'TAP::Parser::Multiplexer'=> '3.38',
14135             'TAP::Parser::Result' => '3.38',
14136             'TAP::Parser::Result::Bailout'=> '3.38',
14137             'TAP::Parser::Result::Comment'=> '3.38',
14138             'TAP::Parser::Result::Plan'=> '3.38',
14139             'TAP::Parser::Result::Pragma'=> '3.38',
14140             'TAP::Parser::Result::Test'=> '3.38',
14141             'TAP::Parser::Result::Unknown'=> '3.38',
14142             'TAP::Parser::Result::Version'=> '3.38',
14143             'TAP::Parser::Result::YAML'=> '3.38',
14144             'TAP::Parser::ResultFactory'=> '3.38',
14145             'TAP::Parser::Scheduler'=> '3.38',
14146             'TAP::Parser::Scheduler::Job'=> '3.38',
14147             'TAP::Parser::Scheduler::Spinner'=> '3.38',
14148             'TAP::Parser::Source' => '3.38',
14149             'TAP::Parser::SourceHandler'=> '3.38',
14150             'TAP::Parser::SourceHandler::Executable'=> '3.38',
14151             'TAP::Parser::SourceHandler::File'=> '3.38',
14152             'TAP::Parser::SourceHandler::Handle'=> '3.38',
14153             'TAP::Parser::SourceHandler::Perl'=> '3.38',
14154             'TAP::Parser::SourceHandler::RawTAP'=> '3.38',
14155             'TAP::Parser::YAMLish::Reader'=> '3.38',
14156             'TAP::Parser::YAMLish::Writer'=> '3.38',
14157             'Test::Harness' => '3.38',
14158             'VMS::Stdio' => '2.41',
14159             'threads' => '2.15',
14160             'threads::shared' => '1.55',
14161             },
14162             removed => {
14163             }
14164             },
14165             5.025012 => {
14166             delta_from => 5.025011,
14167             changed => {
14168             'B::Op_private' => '5.025012',
14169             'CPAN' => '2.18',
14170             'CPAN::Bundle' => '5.5003',
14171             'CPAN::Distribution' => '2.18',
14172             'Config' => '5.025012',
14173             'DynaLoader' => '1.42',
14174             'Module::CoreList' => '5.20170420',
14175             'Module::CoreList::TieHashDelta'=> '5.20170420',
14176             'Module::CoreList::Utils'=> '5.20170420',
14177             'Safe' => '2.40',
14178             'XSLoader' => '0.27',
14179             'base' => '2.25',
14180             'threads::shared' => '1.56',
14181             },
14182             removed => {
14183             }
14184             },
14185             5.026000 => {
14186             delta_from => 5.025012,
14187             changed => {
14188             'B::Op_private' => '5.026000',
14189             'Config' => '5.026',
14190             'Module::CoreList' => '5.20170530',
14191             'Module::CoreList::TieHashDelta'=> '5.20170530',
14192             'Module::CoreList::Utils'=> '5.20170530',
14193             },
14194             removed => {
14195             }
14196             },
14197             5.027000 => {
14198             delta_from => 5.026000,
14199             changed => {
14200             'Attribute::Handlers' => '1.00',
14201             'B::Concise' => '1.000',
14202             'B::Deparse' => '1.41',
14203             'B::Op_private' => '5.027000',
14204             'Config' => '5.027',
14205             'Module::CoreList' => '5.20170531',
14206             'Module::CoreList::TieHashDelta'=> '5.20170531',
14207             'Module::CoreList::Utils'=> '5.20170531',
14208             'O' => '1.02',
14209             'attributes' => '0.3',
14210             'feature' => '1.48',
14211             },
14212             removed => {
14213             }
14214             },
14215             5.027001 => {
14216             delta_from => 5.027,
14217             changed => {
14218             'App::Prove' => '3.39',
14219             'App::Prove::State' => '3.39',
14220             'App::Prove::State::Result'=> '3.39',
14221             'App::Prove::State::Result::Test'=> '3.39',
14222             'Archive::Tar' => '2.26',
14223             'Archive::Tar::Constant'=> '2.26',
14224             'Archive::Tar::File' => '2.26',
14225             'B::Op_private' => '5.027001',
14226             'B::Terse' => '1.08',
14227             'Config' => '5.027001',
14228             'Devel::PPPort' => '3.36',
14229             'DirHandle' => '1.05',
14230             'ExtUtils::Command' => '7.30',
14231             'ExtUtils::Command::MM' => '7.30',
14232             'ExtUtils::Install' => '2.14',
14233             'ExtUtils::Installed' => '2.14',
14234             'ExtUtils::Liblist' => '7.30',
14235             'ExtUtils::Liblist::Kid'=> '7.30',
14236             'ExtUtils::MM' => '7.30',
14237             'ExtUtils::MM_AIX' => '7.30',
14238             'ExtUtils::MM_Any' => '7.30',
14239             'ExtUtils::MM_BeOS' => '7.30',
14240             'ExtUtils::MM_Cygwin' => '7.30',
14241             'ExtUtils::MM_DOS' => '7.30',
14242             'ExtUtils::MM_Darwin' => '7.30',
14243             'ExtUtils::MM_MacOS' => '7.30',
14244             'ExtUtils::MM_NW5' => '7.30',
14245             'ExtUtils::MM_OS2' => '7.30',
14246             'ExtUtils::MM_QNX' => '7.30',
14247             'ExtUtils::MM_UWIN' => '7.30',
14248             'ExtUtils::MM_Unix' => '7.30',
14249             'ExtUtils::MM_VMS' => '7.30',
14250             'ExtUtils::MM_VOS' => '7.30',
14251             'ExtUtils::MM_Win32' => '7.30',
14252             'ExtUtils::MM_Win95' => '7.30',
14253             'ExtUtils::MY' => '7.30',
14254             'ExtUtils::MakeMaker' => '7.30',
14255             'ExtUtils::MakeMaker::Config'=> '7.30',
14256             'ExtUtils::MakeMaker::Locale'=> '7.30',
14257             'ExtUtils::MakeMaker::version'=> '7.30',
14258             'ExtUtils::MakeMaker::version::regex'=> '7.30',
14259             'ExtUtils::Mkbootstrap' => '7.30',
14260             'ExtUtils::Mksymlists' => '7.30',
14261             'ExtUtils::Packlist' => '2.14',
14262             'ExtUtils::testlib' => '7.30',
14263             'File::Path' => '2.14',
14264             'Filter::Util::Call' => '1.57',
14265             'GDBM_File' => '1.16',
14266             'Getopt::Long' => '2.5',
14267             'IO::Socket::IP' => '0.39',
14268             'IPC::Cmd' => '0.98',
14269             'JSON::PP' => '2.94',
14270             'JSON::PP::Boolean' => '2.94',
14271             'Locale::Codes' => '3.52',
14272             'Locale::Codes::Constants'=> '3.52',
14273             'Locale::Codes::Country'=> '3.52',
14274             'Locale::Codes::Country_Codes'=> '3.52',
14275             'Locale::Codes::Country_Retired'=> '3.52',
14276             'Locale::Codes::Currency'=> '3.52',
14277             'Locale::Codes::Currency_Codes'=> '3.52',
14278             'Locale::Codes::Currency_Retired'=> '3.52',
14279             'Locale::Codes::LangExt'=> '3.52',
14280             'Locale::Codes::LangExt_Codes'=> '3.52',
14281             'Locale::Codes::LangExt_Retired'=> '3.52',
14282             'Locale::Codes::LangFam'=> '3.52',
14283             'Locale::Codes::LangFam_Codes'=> '3.52',
14284             'Locale::Codes::LangFam_Retired'=> '3.52',
14285             'Locale::Codes::LangVar'=> '3.52',
14286             'Locale::Codes::LangVar_Codes'=> '3.52',
14287             'Locale::Codes::LangVar_Retired'=> '3.52',
14288             'Locale::Codes::Language'=> '3.52',
14289             'Locale::Codes::Language_Codes'=> '3.52',
14290             'Locale::Codes::Language_Retired'=> '3.52',
14291             'Locale::Codes::Script' => '3.52',
14292             'Locale::Codes::Script_Codes'=> '3.52',
14293             'Locale::Codes::Script_Retired'=> '3.52',
14294             'Locale::Country' => '3.52',
14295             'Locale::Currency' => '3.52',
14296             'Locale::Language' => '3.52',
14297             'Locale::Script' => '3.52',
14298             'Module::CoreList' => '5.20170621',
14299             'Module::CoreList::TieHashDelta'=> '5.20170621',
14300             'Module::CoreList::Utils'=> '5.20170621',
14301             'PerlIO::scalar' => '0.27',
14302             'PerlIO::via' => '0.17',
14303             'Storable' => '2.63',
14304             'TAP::Base' => '3.39',
14305             'TAP::Formatter::Base' => '3.39',
14306             'TAP::Formatter::Color' => '3.39',
14307             'TAP::Formatter::Console'=> '3.39',
14308             'TAP::Formatter::Console::ParallelSession'=> '3.39',
14309             'TAP::Formatter::Console::Session'=> '3.39',
14310             'TAP::Formatter::File' => '3.39',
14311             'TAP::Formatter::File::Session'=> '3.39',
14312             'TAP::Formatter::Session'=> '3.39',
14313             'TAP::Harness' => '3.39',
14314             'TAP::Harness::Env' => '3.39',
14315             'TAP::Object' => '3.39',
14316             'TAP::Parser' => '3.39',
14317             'TAP::Parser::Aggregator'=> '3.39',
14318             'TAP::Parser::Grammar' => '3.39',
14319             'TAP::Parser::Iterator' => '3.39',
14320             'TAP::Parser::Iterator::Array'=> '3.39',
14321             'TAP::Parser::Iterator::Process'=> '3.39',
14322             'TAP::Parser::Iterator::Stream'=> '3.39',
14323             'TAP::Parser::IteratorFactory'=> '3.39',
14324             'TAP::Parser::Multiplexer'=> '3.39',
14325             'TAP::Parser::Result' => '3.39',
14326             'TAP::Parser::Result::Bailout'=> '3.39',
14327             'TAP::Parser::Result::Comment'=> '3.39',
14328             'TAP::Parser::Result::Plan'=> '3.39',
14329             'TAP::Parser::Result::Pragma'=> '3.39',
14330             'TAP::Parser::Result::Test'=> '3.39',
14331             'TAP::Parser::Result::Unknown'=> '3.39',
14332             'TAP::Parser::Result::Version'=> '3.39',
14333             'TAP::Parser::Result::YAML'=> '3.39',
14334             'TAP::Parser::ResultFactory'=> '3.39',
14335             'TAP::Parser::Scheduler'=> '3.39',
14336             'TAP::Parser::Scheduler::Job'=> '3.39',
14337             'TAP::Parser::Scheduler::Spinner'=> '3.39',
14338             'TAP::Parser::Source' => '3.39',
14339             'TAP::Parser::SourceHandler'=> '3.39',
14340             'TAP::Parser::SourceHandler::Executable'=> '3.39',
14341             'TAP::Parser::SourceHandler::File'=> '3.39',
14342             'TAP::Parser::SourceHandler::Handle'=> '3.39',
14343             'TAP::Parser::SourceHandler::Perl'=> '3.39',
14344             'TAP::Parser::SourceHandler::RawTAP'=> '3.39',
14345             'TAP::Parser::YAMLish::Reader'=> '3.39',
14346             'TAP::Parser::YAMLish::Writer'=> '3.39',
14347             'Test::Harness' => '3.39',
14348             'XS::APItest' => '0.89',
14349             '_charnames' => '1.45',
14350             'charnames' => '1.45',
14351             'if' => '0.0607',
14352             'mro' => '1.21',
14353             'threads' => '2.16',
14354             'threads::shared' => '1.57',
14355             'version' => '0.9918',
14356             'version::regex' => '0.9918',
14357             },
14358             removed => {
14359             }
14360             },
14361             5.022004 => {
14362             delta_from => 5.022003,
14363             changed => {
14364             'B::Op_private' => '5.022004',
14365             'Config' => '5.022004',
14366             'Module::CoreList' => '5.20170715_22',
14367             'Module::CoreList::TieHashDelta'=> '5.20170715_22',
14368             'Module::CoreList::Utils'=> '5.20170715_22',
14369             'base' => '2.22_01',
14370             },
14371             removed => {
14372             }
14373             },
14374             5.024002 => {
14375             delta_from => 5.024001,
14376             changed => {
14377             'B::Op_private' => '5.024002',
14378             'Config' => '5.024002',
14379             'Module::CoreList' => '5.20170715_24',
14380             'Module::CoreList::TieHashDelta'=> '5.20170715_24',
14381             'Module::CoreList::Utils'=> '5.20170715_24',
14382             'base' => '2.23_01',
14383             },
14384             removed => {
14385             }
14386             },
14387             5.027002 => {
14388             delta_from => 5.027001,
14389             changed => {
14390             'B::Op_private' => '5.027002',
14391             'Carp' => '1.43',
14392             'Carp::Heavy' => '1.43',
14393             'Config' => '5.027002',
14394             'Cwd' => '3.68',
14395             'Encode' => '2.92',
14396             'Encode::Alias' => '2.23',
14397             'Encode::CN::HZ' => '2.09',
14398             'Encode::Encoding' => '2.08',
14399             'Encode::GSM0338' => '2.07',
14400             'Encode::Guess' => '2.07',
14401             'Encode::JP::JIS7' => '2.07',
14402             'Encode::KR::2022_KR' => '2.04',
14403             'Encode::MIME::Header' => '2.27',
14404             'Encode::MIME::Header::ISO_2022_JP'=> '1.09',
14405             'Encode::Unicode' => '2.16',
14406             'Encode::Unicode::UTF7' => '2.10',
14407             'ExtUtils::CBuilder' => '0.280228',
14408             'ExtUtils::CBuilder::Base'=> '0.280228',
14409             'ExtUtils::CBuilder::Platform::Unix'=> '0.280228',
14410             'ExtUtils::CBuilder::Platform::VMS'=> '0.280228',
14411             'ExtUtils::CBuilder::Platform::Windows'=> '0.280228',
14412             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228',
14413             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228',
14414             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228',
14415             'ExtUtils::CBuilder::Platform::aix'=> '0.280228',
14416             'ExtUtils::CBuilder::Platform::android'=> '0.280228',
14417             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228',
14418             'ExtUtils::CBuilder::Platform::darwin'=> '0.280228',
14419             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228',
14420             'ExtUtils::CBuilder::Platform::os2'=> '0.280228',
14421             'File::Glob' => '1.29',
14422             'File::Spec' => '3.68',
14423             'File::Spec::AmigaOS' => '3.68',
14424             'File::Spec::Cygwin' => '3.68',
14425             'File::Spec::Epoc' => '3.68',
14426             'File::Spec::Functions' => '3.68',
14427             'File::Spec::Mac' => '3.68',
14428             'File::Spec::OS2' => '3.68',
14429             'File::Spec::Unix' => '3.68',
14430             'File::Spec::VMS' => '3.68',
14431             'File::Spec::Win32' => '3.68',
14432             'List::Util' => '1.48',
14433             'List::Util::XS' => '1.48',
14434             'Math::BigRat' => '0.2613',
14435             'Module::CoreList' => '5.20170720',
14436             'Module::CoreList::TieHashDelta'=> '5.20170720',
14437             'Module::CoreList::Utils'=> '5.20170720',
14438             'Opcode' => '1.40',
14439             'POSIX' => '1.77',
14440             'PerlIO::scalar' => '0.29',
14441             'Scalar::Util' => '1.48',
14442             'Sub::Util' => '1.48',
14443             'Time::HiRes' => '1.9743',
14444             'Time::Piece' => '1.3201',
14445             'Time::Seconds' => '1.3201',
14446             'Unicode' => '10.0.0',
14447             'XS::APItest' => '0.90',
14448             'arybase' => '0.13',
14449             'encoding' => '2.20',
14450             'feature' => '1.49',
14451             're' => '0.35',
14452             },
14453             removed => {
14454             }
14455             },
14456             5.027003 => {
14457             delta_from => 5.027002,
14458             changed => {
14459             'B' => '1.69',
14460             'B::Concise' => '1.001',
14461             'B::Debug' => '1.25',
14462             'B::Deparse' => '1.42',
14463             'B::Op_private' => '5.027003',
14464             'Config' => '5.027003',
14465             'Data::Dumper' => '2.167_02',
14466             'Devel::Peek' => '1.27',
14467             'ExtUtils::Constant' => '0.24',
14468             'ExtUtils::Constant::Base'=> '0.06',
14469             'ExtUtils::Constant::ProxySubs'=> '0.09',
14470             'ExtUtils::Constant::Utils'=> '0.04',
14471             'ExtUtils::ParseXS' => '3.35',
14472             'ExtUtils::ParseXS::Constants'=> '3.35',
14473             'ExtUtils::ParseXS::CountLines'=> '3.35',
14474             'ExtUtils::ParseXS::Eval'=> '3.35',
14475             'ExtUtils::ParseXS::Utilities'=> '3.35',
14476             'ExtUtils::Typemaps' => '3.35',
14477             'ExtUtils::Typemaps::Cmd'=> '3.35',
14478             'ExtUtils::Typemaps::InputMap'=> '3.35',
14479             'ExtUtils::Typemaps::OutputMap'=> '3.35',
14480             'ExtUtils::Typemaps::Type'=> '3.35',
14481             'Filter::Simple' => '0.94',
14482             'Module::CoreList' => '5.20170821',
14483             'Module::CoreList::TieHashDelta'=> '5.20170821',
14484             'Module::CoreList::Utils'=> '5.20170821',
14485             'SelfLoader' => '1.24',
14486             'Storable' => '2.64',
14487             'XS::APItest' => '0.91',
14488             'base' => '2.26',
14489             'threads' => '2.17',
14490             'utf8' => '1.20',
14491             },
14492             removed => {
14493             }
14494             },
14495             5.027004 => {
14496             delta_from => 5.027003,
14497             changed => {
14498             'B::Op_private' => '5.027004',
14499             'Config' => '5.027004',
14500             'File::Glob' => '1.30',
14501             'I18N::Langinfo' => '0.14',
14502             'Module::CoreList' => '5.20170920',
14503             'Module::CoreList::TieHashDelta'=> '5.20170920',
14504             'Module::CoreList::Utils'=> '5.20170920',
14505             'Term::ReadLine' => '1.17',
14506             'VMS::Stdio' => '2.42',
14507             'XS::APItest' => '0.92',
14508             'attributes' => '0.31',
14509             'sort' => '2.03',
14510             'threads' => '2.18',
14511             },
14512             removed => {
14513             }
14514             },
14515             5.024003 => {
14516             delta_from => 5.024002,
14517             changed => {
14518             'B::Op_private' => '5.024003',
14519             'Config' => '5.024003',
14520             'Module::CoreList' => '5.20170922_24',
14521             'Module::CoreList::TieHashDelta'=> '5.20170922_24',
14522             'Module::CoreList::Utils'=> '5.20170922_24',
14523             'POSIX' => '1.65_01',
14524             'Time::HiRes' => '1.9741',
14525             },
14526             removed => {
14527             }
14528             },
14529             5.026001 => {
14530             delta_from => 5.026000,
14531             changed => {
14532             'B::Op_private' => '5.026001',
14533             'Config' => '5.026001',
14534             'Module::CoreList' => '5.20170922_26',
14535             'Module::CoreList::TieHashDelta'=> '5.20170922_26',
14536             'Module::CoreList::Utils'=> '5.20170922_26',
14537             '_charnames' => '1.45',
14538             'base' => '2.26',
14539             'charnames' => '1.45',
14540             },
14541             removed => {
14542             }
14543             },
14544             5.027005 => {
14545             delta_from => 5.027004,
14546             changed => {
14547             'B' => '1.70',
14548             'B::Concise' => '1.002',
14549             'B::Deparse' => '1.43',
14550             'B::Op_private' => '5.027005',
14551             'B::Xref' => '1.07',
14552             'Config' => '5.027005',
14553             'Config::Perl::V' => '0.29',
14554             'Digest::SHA' => '5.98',
14555             'Encode' => '2.93',
14556             'Encode::CN::HZ' => '2.10',
14557             'Encode::JP::JIS7' => '2.08',
14558             'Encode::MIME::Header' => '2.28',
14559             'Encode::MIME::Name' => '1.03',
14560             'File::Fetch' => '0.54',
14561             'File::Path' => '2.15',
14562             'List::Util' => '1.49',
14563             'List::Util::XS' => '1.49',
14564             'Locale::Codes' => '3.54',
14565             'Locale::Codes::Constants'=> '3.54',
14566             'Locale::Codes::Country'=> '3.54',
14567             'Locale::Codes::Country_Codes'=> '3.54',
14568             'Locale::Codes::Country_Retired'=> '3.54',
14569             'Locale::Codes::Currency'=> '3.54',
14570             'Locale::Codes::Currency_Codes'=> '3.54',
14571             'Locale::Codes::Currency_Retired'=> '3.54',
14572             'Locale::Codes::LangExt'=> '3.54',
14573             'Locale::Codes::LangExt_Codes'=> '3.54',
14574             'Locale::Codes::LangExt_Retired'=> '3.54',
14575             'Locale::Codes::LangFam'=> '3.54',
14576             'Locale::Codes::LangFam_Codes'=> '3.54',
14577             'Locale::Codes::LangFam_Retired'=> '3.54',
14578             'Locale::Codes::LangVar'=> '3.54',
14579             'Locale::Codes::LangVar_Codes'=> '3.54',
14580             'Locale::Codes::LangVar_Retired'=> '3.54',
14581             'Locale::Codes::Language'=> '3.54',
14582             'Locale::Codes::Language_Codes'=> '3.54',
14583             'Locale::Codes::Language_Retired'=> '3.54',
14584             'Locale::Codes::Script' => '3.54',
14585             'Locale::Codes::Script_Codes'=> '3.54',
14586             'Locale::Codes::Script_Retired'=> '3.54',
14587             'Locale::Country' => '3.54',
14588             'Locale::Currency' => '3.54',
14589             'Locale::Language' => '3.54',
14590             'Locale::Script' => '3.54',
14591             'Math::BigFloat' => '1.999811',
14592             'Math::BigInt' => '1.999811',
14593             'Math::BigInt::Calc' => '1.999811',
14594             'Math::BigInt::CalcEmu' => '1.999811',
14595             'Math::BigInt::FastCalc'=> '0.5006',
14596             'Math::BigInt::Lib' => '1.999811',
14597             'Module::CoreList' => '5.20171020',
14598             'Module::CoreList::TieHashDelta'=> '5.20171020',
14599             'Module::CoreList::Utils'=> '5.20171020',
14600             'NEXT' => '0.67_01',
14601             'POSIX' => '1.78',
14602             'Pod::Perldoc' => '3.2801',
14603             'Scalar::Util' => '1.49',
14604             'Sub::Util' => '1.49',
14605             'Sys::Hostname' => '1.21',
14606             'Test2' => '1.302103',
14607             'Test2::API' => '1.302103',
14608             'Test2::API::Breakage' => '1.302103',
14609             'Test2::API::Context' => '1.302103',
14610             'Test2::API::Instance' => '1.302103',
14611             'Test2::API::Stack' => '1.302103',
14612             'Test2::Event' => '1.302103',
14613             'Test2::Event::Bail' => '1.302103',
14614             'Test2::Event::Diag' => '1.302103',
14615             'Test2::Event::Encoding'=> '1.302103',
14616             'Test2::Event::Exception'=> '1.302103',
14617             'Test2::Event::Fail' => '1.302103',
14618             'Test2::Event::Generic' => '1.302103',
14619             'Test2::Event::Note' => '1.302103',
14620             'Test2::Event::Ok' => '1.302103',
14621             'Test2::Event::Pass' => '1.302103',
14622             'Test2::Event::Plan' => '1.302103',
14623             'Test2::Event::Skip' => '1.302103',
14624             'Test2::Event::Subtest' => '1.302103',
14625             'Test2::Event::TAP::Version'=> '1.302103',
14626             'Test2::Event::Waiting' => '1.302103',
14627             'Test2::EventFacet' => '1.302103',
14628             'Test2::EventFacet::About'=> '1.302103',
14629             'Test2::EventFacet::Amnesty'=> '1.302103',
14630             'Test2::EventFacet::Assert'=> '1.302103',
14631             'Test2::EventFacet::Control'=> '1.302103',
14632             'Test2::EventFacet::Error'=> '1.302103',
14633             'Test2::EventFacet::Info'=> '1.302103',
14634             'Test2::EventFacet::Meta'=> '1.302103',
14635             'Test2::EventFacet::Parent'=> '1.302103',
14636             'Test2::EventFacet::Plan'=> '1.302103',
14637             'Test2::EventFacet::Trace'=> '1.302103',
14638             'Test2::Formatter' => '1.302103',
14639             'Test2::Formatter::TAP' => '1.302103',
14640             'Test2::Hub' => '1.302103',
14641             'Test2::Hub::Interceptor'=> '1.302103',
14642             'Test2::Hub::Interceptor::Terminator'=> '1.302103',
14643             'Test2::Hub::Subtest' => '1.302103',
14644             'Test2::IPC' => '1.302103',
14645             'Test2::IPC::Driver' => '1.302103',
14646             'Test2::IPC::Driver::Files'=> '1.302103',
14647             'Test2::Tools::Tiny' => '1.302103',
14648             'Test2::Util' => '1.302103',
14649             'Test2::Util::ExternalMeta'=> '1.302103',
14650             'Test2::Util::Facets2Legacy'=> '1.302103',
14651             'Test2::Util::HashBase' => '0.005',
14652             'Test2::Util::Trace' => '1.302103',
14653             'Test::Builder' => '1.302103',
14654             'Test::Builder::Formatter'=> '1.302103',
14655             'Test::Builder::IO::Scalar'=> '2.114',
14656             'Test::Builder::Module' => '1.302103',
14657             'Test::Builder::Tester' => '1.302103',
14658             'Test::Builder::Tester::Color'=> '1.302103',
14659             'Test::Builder::TodoDiag'=> '1.302103',
14660             'Test::More' => '1.302103',
14661             'Test::Simple' => '1.302103',
14662             'Test::Tester' => '1.302103',
14663             'Test::Tester::Capture' => '1.302103',
14664             'Test::Tester::CaptureRunner'=> '1.302103',
14665             'Test::Tester::Delegate'=> '1.302103',
14666             'Test::use::ok' => '1.302103',
14667             'Time::HiRes' => '1.9746',
14668             'Time::Piece' => '1.3202',
14669             'Time::Seconds' => '1.3202',
14670             'arybase' => '0.14',
14671             'encoding' => '2.21',
14672             'ok' => '1.302103',
14673             },
14674             removed => {
14675             'Test2::Event::Info' => 1,
14676             }
14677             },
14678             5.027006 => {
14679             delta_from => 5.027005,
14680             changed => {
14681             'Attribute::Handlers' => '1.01',
14682             'B' => '1.72',
14683             'B::Concise' => '1.003',
14684             'B::Deparse' => '1.45',
14685             'B::Op_private' => '5.027006',
14686             'Carp' => '1.44',
14687             'Carp::Heavy' => '1.44',
14688             'Compress::Raw::Zlib' => '2.075',
14689             'Config' => '5.027006',
14690             'Config::Extensions' => '0.02',
14691             'Cwd' => '3.70',
14692             'DynaLoader' => '1.44',
14693             'ExtUtils::CBuilder' => '0.280229',
14694             'ExtUtils::CBuilder::Platform::Unix'=> '0.280229',
14695             'ExtUtils::CBuilder::Platform::VMS'=> '0.280229',
14696             'ExtUtils::CBuilder::Platform::Windows'=> '0.280229',
14697             'ExtUtils::CBuilder::Platform::aix'=> '0.280229',
14698             'ExtUtils::CBuilder::Platform::android'=> '0.280229',
14699             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280229',
14700             'ExtUtils::CBuilder::Platform::darwin'=> '0.280229',
14701             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280229',
14702             'ExtUtils::CBuilder::Platform::os2'=> '0.280229',
14703             'ExtUtils::Embed' => '1.35',
14704             'ExtUtils::Miniperl' => '1.07',
14705             'ExtUtils::ParseXS' => '3.36',
14706             'ExtUtils::ParseXS::Constants'=> '3.36',
14707             'ExtUtils::ParseXS::CountLines'=> '3.36',
14708             'ExtUtils::ParseXS::Eval'=> '3.36',
14709             'ExtUtils::ParseXS::Utilities'=> '3.36',
14710             'ExtUtils::Typemaps' => '3.36',
14711             'ExtUtils::Typemaps::Cmd'=> '3.36',
14712             'ExtUtils::Typemaps::InputMap'=> '3.36',
14713             'ExtUtils::Typemaps::OutputMap'=> '3.36',
14714             'ExtUtils::Typemaps::Type'=> '3.36',
14715             'ExtUtils::XSSymSet' => '1.4',
14716             'File::Copy' => '2.33',
14717             'File::Spec' => '3.69',
14718             'File::Spec::AmigaOS' => '3.69',
14719             'File::Spec::Cygwin' => '3.69',
14720             'File::Spec::Epoc' => '3.69',
14721             'File::Spec::Functions' => '3.69',
14722             'File::Spec::Mac' => '3.69',
14723             'File::Spec::OS2' => '3.69',
14724             'File::Spec::Unix' => '3.69',
14725             'File::Spec::VMS' => '3.69',
14726             'File::Spec::Win32' => '3.69',
14727             'File::stat' => '1.08',
14728             'FileCache' => '1.10',
14729             'Filter::Simple' => '0.95',
14730             'Hash::Util::FieldHash' => '1.20',
14731             'I18N::LangTags' => '0.43',
14732             'I18N::LangTags::Detect'=> '1.07',
14733             'I18N::LangTags::List' => '0.40',
14734             'I18N::Langinfo' => '0.15',
14735             'IO::Handle' => '1.37',
14736             'IO::Select' => '1.23',
14737             'Locale::Maketext' => '1.29',
14738             'Module::CoreList' => '5.20171120',
14739             'Module::CoreList::TieHashDelta'=> '5.20171120',
14740             'Module::CoreList::Utils'=> '5.20171120',
14741             'Net::Cmd' => '3.11',
14742             'Net::Config' => '3.11',
14743             'Net::Domain' => '3.11',
14744             'Net::FTP' => '3.11',
14745             'Net::FTP::A' => '3.11',
14746             'Net::FTP::E' => '3.11',
14747             'Net::FTP::I' => '3.11',
14748             'Net::FTP::L' => '3.11',
14749             'Net::FTP::dataconn' => '3.11',
14750             'Net::NNTP' => '3.11',
14751             'Net::Netrc' => '3.11',
14752             'Net::POP3' => '3.11',
14753             'Net::Ping' => '2.62',
14754             'Net::SMTP' => '3.11',
14755             'Net::Time' => '3.11',
14756             'Net::hostent' => '1.02',
14757             'Net::netent' => '1.01',
14758             'Net::protoent' => '1.01',
14759             'Net::servent' => '1.02',
14760             'O' => '1.03',
14761             'ODBM_File' => '1.15',
14762             'Opcode' => '1.41',
14763             'POSIX' => '1.80',
14764             'Pod::Html' => '1.2203',
14765             'SelfLoader' => '1.25',
14766             'Socket' => '2.020_04',
14767             'Storable' => '2.65',
14768             'Test' => '1.31',
14769             'Test2' => '1.302111',
14770             'Test2::API' => '1.302111',
14771             'Test2::API::Breakage' => '1.302111',
14772             'Test2::API::Context' => '1.302111',
14773             'Test2::API::Instance' => '1.302111',
14774             'Test2::API::Stack' => '1.302111',
14775             'Test2::Event' => '1.302111',
14776             'Test2::Event::Bail' => '1.302111',
14777             'Test2::Event::Diag' => '1.302111',
14778             'Test2::Event::Encoding'=> '1.302111',
14779             'Test2::Event::Exception'=> '1.302111',
14780             'Test2::Event::Fail' => '1.302111',
14781             'Test2::Event::Generic' => '1.302111',
14782             'Test2::Event::Note' => '1.302111',
14783             'Test2::Event::Ok' => '1.302111',
14784             'Test2::Event::Pass' => '1.302111',
14785             'Test2::Event::Plan' => '1.302111',
14786             'Test2::Event::Skip' => '1.302111',
14787             'Test2::Event::Subtest' => '1.302111',
14788             'Test2::Event::TAP::Version'=> '1.302111',
14789             'Test2::Event::Waiting' => '1.302111',
14790             'Test2::EventFacet' => '1.302111',
14791             'Test2::EventFacet::About'=> '1.302111',
14792             'Test2::EventFacet::Amnesty'=> '1.302111',
14793             'Test2::EventFacet::Assert'=> '1.302111',
14794             'Test2::EventFacet::Control'=> '1.302111',
14795             'Test2::EventFacet::Error'=> '1.302111',
14796             'Test2::EventFacet::Info'=> '1.302111',
14797             'Test2::EventFacet::Meta'=> '1.302111',
14798             'Test2::EventFacet::Parent'=> '1.302111',
14799             'Test2::EventFacet::Plan'=> '1.302111',
14800             'Test2::EventFacet::Trace'=> '1.302111',
14801             'Test2::Formatter' => '1.302111',
14802             'Test2::Formatter::TAP' => '1.302111',
14803             'Test2::Hub' => '1.302111',
14804             'Test2::Hub::Interceptor'=> '1.302111',
14805             'Test2::Hub::Interceptor::Terminator'=> '1.302111',
14806             'Test2::Hub::Subtest' => '1.302111',
14807             'Test2::IPC' => '1.302111',
14808             'Test2::IPC::Driver' => '1.302111',
14809             'Test2::IPC::Driver::Files'=> '1.302111',
14810             'Test2::Tools::Tiny' => '1.302111',
14811             'Test2::Util' => '1.302111',
14812             'Test2::Util::ExternalMeta'=> '1.302111',
14813             'Test2::Util::Facets2Legacy'=> '1.302111',
14814             'Test2::Util::HashBase' => '1.302111',
14815             'Test2::Util::Trace' => '1.302111',
14816             'Test::Builder' => '1.302111',
14817             'Test::Builder::Formatter'=> '1.302111',
14818             'Test::Builder::Module' => '1.302111',
14819             'Test::Builder::Tester' => '1.302111',
14820             'Test::Builder::Tester::Color'=> '1.302111',
14821             'Test::Builder::TodoDiag'=> '1.302111',
14822             'Test::More' => '1.302111',
14823             'Test::Simple' => '1.302111',
14824             'Test::Tester' => '1.302111',
14825             'Test::Tester::Capture' => '1.302111',
14826             'Test::Tester::CaptureRunner'=> '1.302111',
14827             'Test::Tester::Delegate'=> '1.302111',
14828             'Test::use::ok' => '1.302111',
14829             'Tie::Array' => '1.07',
14830             'Tie::StdHandle' => '4.5',
14831             'Time::HiRes' => '1.9747',
14832             'Time::gmtime' => '1.04',
14833             'Time::localtime' => '1.03',
14834             'Unicode::Collate' => '1.23',
14835             'Unicode::Collate::CJK::Big5'=> '1.23',
14836             'Unicode::Collate::CJK::GB2312'=> '1.23',
14837             'Unicode::Collate::CJK::JISX0208'=> '1.23',
14838             'Unicode::Collate::CJK::Korean'=> '1.23',
14839             'Unicode::Collate::CJK::Pinyin'=> '1.23',
14840             'Unicode::Collate::CJK::Stroke'=> '1.23',
14841             'Unicode::Collate::CJK::Zhuyin'=> '1.23',
14842             'Unicode::Collate::Locale'=> '1.23',
14843             'Unicode::Normalize' => '1.26',
14844             'User::grent' => '1.02',
14845             'User::pwent' => '1.01',
14846             'VMS::DCLsym' => '1.09',
14847             'VMS::Stdio' => '2.44',
14848             'XS::APItest' => '0.93',
14849             'XS::Typemap' => '0.16',
14850             'XSLoader' => '0.28',
14851             'attributes' => '0.32',
14852             'base' => '2.27',
14853             'blib' => '1.07',
14854             'experimental' => '0.017',
14855             'fields' => '2.24',
14856             'ok' => '1.302111',
14857             're' => '0.36',
14858             'sort' => '2.04',
14859             'threads' => '2.19',
14860             'warnings' => '1.38',
14861             },
14862             removed => {
14863             }
14864             },
14865             5.027007 => {
14866             delta_from => 5.027006,
14867             changed => {
14868             'App::Cpan' => '1.67',
14869             'B' => '1.73',
14870             'B::Debug' => '1.26',
14871             'B::Deparse' => '1.46',
14872             'B::Op_private' => '5.027007',
14873             'CPAN' => '2.20',
14874             'CPAN::Distribution' => '2.19',
14875             'CPAN::FTP' => '5.5011',
14876             'CPAN::FirstTime' => '5.5311',
14877             'CPAN::Shell' => '5.5007',
14878             'Carp' => '1.45',
14879             'Carp::Heavy' => '1.45',
14880             'Compress::Raw::Zlib' => '2.076',
14881             'Config' => '5.027007',
14882             'Cwd' => '3.71',
14883             'Data::Dumper' => '2.169',
14884             'Devel::PPPort' => '3.37',
14885             'Digest::SHA' => '6.00',
14886             'DynaLoader' => '1.45',
14887             'ExtUtils::CBuilder' => '0.280230',
14888             'ExtUtils::CBuilder::Base'=> '0.280230',
14889             'ExtUtils::CBuilder::Platform::Unix'=> '0.280230',
14890             'ExtUtils::CBuilder::Platform::VMS'=> '0.280230',
14891             'ExtUtils::CBuilder::Platform::Windows'=> '0.280230',
14892             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280230',
14893             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280230',
14894             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280230',
14895             'ExtUtils::CBuilder::Platform::aix'=> '0.280230',
14896             'ExtUtils::CBuilder::Platform::android'=> '0.280230',
14897             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280230',
14898             'ExtUtils::CBuilder::Platform::darwin'=> '0.280230',
14899             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280230',
14900             'ExtUtils::CBuilder::Platform::os2'=> '0.280230',
14901             'ExtUtils::Typemaps' => '3.37',
14902             'File::Fetch' => '0.56',
14903             'File::Spec' => '3.71',
14904             'File::Spec::AmigaOS' => '3.71',
14905             'File::Spec::Cygwin' => '3.71',
14906             'File::Spec::Epoc' => '3.71',
14907             'File::Spec::Functions' => '3.71',
14908             'File::Spec::Mac' => '3.71',
14909             'File::Spec::OS2' => '3.71',
14910             'File::Spec::Unix' => '3.71',
14911             'File::Spec::VMS' => '3.71',
14912             'File::Spec::Win32' => '3.71',
14913             'Filter::Util::Call' => '1.58',
14914             'GDBM_File' => '1.17',
14915             'JSON::PP' => '2.97000',
14916             'JSON::PP::Boolean' => '2.97000',
14917             'Locale::Codes' => '3.55',
14918             'Locale::Codes::Constants'=> '3.55',
14919             'Locale::Codes::Country'=> '3.55',
14920             'Locale::Codes::Country_Codes'=> '3.55',
14921             'Locale::Codes::Country_Retired'=> '3.55',
14922             'Locale::Codes::Currency'=> '3.55',
14923             'Locale::Codes::Currency_Codes'=> '3.55',
14924             'Locale::Codes::Currency_Retired'=> '3.55',
14925             'Locale::Codes::LangExt'=> '3.55',
14926             'Locale::Codes::LangExt_Codes'=> '3.55',
14927             'Locale::Codes::LangExt_Retired'=> '3.55',
14928             'Locale::Codes::LangFam'=> '3.55',
14929             'Locale::Codes::LangFam_Codes'=> '3.55',
14930             'Locale::Codes::LangFam_Retired'=> '3.55',
14931             'Locale::Codes::LangVar'=> '3.55',
14932             'Locale::Codes::LangVar_Codes'=> '3.55',
14933             'Locale::Codes::LangVar_Retired'=> '3.55',
14934             'Locale::Codes::Language'=> '3.55',
14935             'Locale::Codes::Language_Codes'=> '3.55',
14936             'Locale::Codes::Language_Retired'=> '3.55',
14937             'Locale::Codes::Script' => '3.55',
14938             'Locale::Codes::Script_Codes'=> '3.55',
14939             'Locale::Codes::Script_Retired'=> '3.55',
14940             'Locale::Country' => '3.55',
14941             'Locale::Currency' => '3.55',
14942             'Locale::Language' => '3.55',
14943             'Locale::Script' => '3.55',
14944             'Module::CoreList' => '5.20171220',
14945             'Module::CoreList::TieHashDelta'=> '5.20171220',
14946             'Module::CoreList::Utils'=> '5.20171220',
14947             'Opcode' => '1.42',
14948             'POSIX' => '1.81',
14949             'Pod::Functions' => '1.12',
14950             'Pod::Functions::Functions'=> '1.12',
14951             'Pod::Html' => '1.23',
14952             'Sys::Hostname' => '1.22',
14953             'Test2' => '1.302120',
14954             'Test2::API' => '1.302120',
14955             'Test2::API::Breakage' => '1.302120',
14956             'Test2::API::Context' => '1.302120',
14957             'Test2::API::Instance' => '1.302120',
14958             'Test2::API::Stack' => '1.302120',
14959             'Test2::Event' => '1.302120',
14960             'Test2::Event::Bail' => '1.302120',
14961             'Test2::Event::Diag' => '1.302120',
14962             'Test2::Event::Encoding'=> '1.302120',
14963             'Test2::Event::Exception'=> '1.302120',
14964             'Test2::Event::Fail' => '1.302120',
14965             'Test2::Event::Generic' => '1.302120',
14966             'Test2::Event::Note' => '1.302120',
14967             'Test2::Event::Ok' => '1.302120',
14968             'Test2::Event::Pass' => '1.302120',
14969             'Test2::Event::Plan' => '1.302120',
14970             'Test2::Event::Skip' => '1.302120',
14971             'Test2::Event::Subtest' => '1.302120',
14972             'Test2::Event::TAP::Version'=> '1.302120',
14973             'Test2::Event::Waiting' => '1.302120',
14974             'Test2::EventFacet' => '1.302120',
14975             'Test2::EventFacet::About'=> '1.302120',
14976             'Test2::EventFacet::Amnesty'=> '1.302120',
14977             'Test2::EventFacet::Assert'=> '1.302120',
14978             'Test2::EventFacet::Control'=> '1.302120',
14979             'Test2::EventFacet::Error'=> '1.302120',
14980             'Test2::EventFacet::Info'=> '1.302120',
14981             'Test2::EventFacet::Meta'=> '1.302120',
14982             'Test2::EventFacet::Parent'=> '1.302120',
14983             'Test2::EventFacet::Plan'=> '1.302120',
14984             'Test2::EventFacet::Trace'=> '1.302120',
14985             'Test2::Formatter' => '1.302120',
14986             'Test2::Formatter::TAP' => '1.302120',
14987             'Test2::Hub' => '1.302120',
14988             'Test2::Hub::Interceptor'=> '1.302120',
14989             'Test2::Hub::Interceptor::Terminator'=> '1.302120',
14990             'Test2::Hub::Subtest' => '1.302120',
14991             'Test2::IPC' => '1.302120',
14992             'Test2::IPC::Driver' => '1.302120',
14993             'Test2::IPC::Driver::Files'=> '1.302120',
14994             'Test2::Tools::Tiny' => '1.302120',
14995             'Test2::Util' => '1.302120',
14996             'Test2::Util::ExternalMeta'=> '1.302120',
14997             'Test2::Util::Facets2Legacy'=> '1.302120',
14998             'Test2::Util::HashBase' => '1.302120',
14999             'Test2::Util::Trace' => '1.302120',
15000             'Test::Builder' => '1.302120',
15001             'Test::Builder::Formatter'=> '1.302120',
15002             'Test::Builder::Module' => '1.302120',
15003             'Test::Builder::Tester' => '1.302120',
15004             'Test::Builder::Tester::Color'=> '1.302120',
15005             'Test::Builder::TodoDiag'=> '1.302120',
15006             'Test::More' => '1.302120',
15007             'Test::Simple' => '1.302120',
15008             'Test::Tester' => '1.302120',
15009             'Test::Tester::Capture' => '1.302120',
15010             'Test::Tester::CaptureRunner'=> '1.302120',
15011             'Test::Tester::Delegate'=> '1.302120',
15012             'Test::use::ok' => '1.302120',
15013             'Time::HiRes' => '1.9748',
15014             'Time::Piece' => '1.3203',
15015             'Time::Seconds' => '1.3203',
15016             'Unicode::Collate' => '1.25',
15017             'Unicode::Collate::CJK::Big5'=> '1.25',
15018             'Unicode::Collate::CJK::GB2312'=> '1.25',
15019             'Unicode::Collate::CJK::JISX0208'=> '1.25',
15020             'Unicode::Collate::CJK::Korean'=> '1.25',
15021             'Unicode::Collate::CJK::Pinyin'=> '1.25',
15022             'Unicode::Collate::CJK::Stroke'=> '1.25',
15023             'Unicode::Collate::CJK::Zhuyin'=> '1.25',
15024             'Unicode::Collate::Locale'=> '1.25',
15025             'Unicode::UCD' => '0.69',
15026             'XS::APItest' => '0.94',
15027             'XSLoader' => '0.29',
15028             'arybase' => '0.15',
15029             'autodie::exception' => '2.29001',
15030             'autodie::hints' => '2.29001',
15031             'experimental' => '0.019',
15032             'feature' => '1.50',
15033             'ok' => '1.302120',
15034             'overload' => '1.29',
15035             'threads' => '2.21',
15036             'threads::shared' => '1.58',
15037             'warnings' => '1.39',
15038             },
15039             removed => {
15040             }
15041             },
15042             5.027008 => {
15043             delta_from => 5.027007,
15044             changed => {
15045             'B' => '1.74',
15046             'B::Deparse' => '1.47',
15047             'B::Op_private' => '5.027008',
15048             'Config' => '5.027008',
15049             'Cwd' => '3.72',
15050             'Data::Dumper' => '2.170',
15051             'Devel::PPPort' => '3.38',
15052             'Digest::SHA' => '6.01',
15053             'Encode' => '2.94',
15054             'Encode::Alias' => '2.24',
15055             'ExtUtils::Miniperl' => '1.08',
15056             'File::Spec' => '3.72',
15057             'File::Spec::AmigaOS' => '3.72',
15058             'File::Spec::Cygwin' => '3.72',
15059             'File::Spec::Epoc' => '3.72',
15060             'File::Spec::Functions' => '3.72',
15061             'File::Spec::Mac' => '3.72',
15062             'File::Spec::OS2' => '3.72',
15063             'File::Spec::Unix' => '3.72',
15064             'File::Spec::VMS' => '3.72',
15065             'File::Spec::Win32' => '3.72',
15066             'JSON::PP' => '2.97001',
15067             'JSON::PP::Boolean' => '2.97001',
15068             'Module::CoreList' => '5.20180120',
15069             'Module::CoreList::TieHashDelta'=> '5.20180120',
15070             'Module::CoreList::Utils'=> '5.20180120',
15071             'Opcode' => '1.43',
15072             'Pod::Functions' => '1.13',
15073             'Pod::Functions::Functions'=> '1.13',
15074             'Pod::Html' => '1.24',
15075             'Pod::Man' => '4.10',
15076             'Pod::ParseLink' => '4.10',
15077             'Pod::Text' => '4.10',
15078             'Pod::Text::Color' => '4.10',
15079             'Pod::Text::Overstrike' => '4.10',
15080             'Pod::Text::Termcap' => '4.10',
15081             'Socket' => '2.027',
15082             'Time::HiRes' => '1.9752',
15083             'Unicode::UCD' => '0.70',
15084             'XS::APItest' => '0.95',
15085             'XSLoader' => '0.30',
15086             'autodie::exception' => '2.29002',
15087             'feature' => '1.51',
15088             'overload' => '1.30',
15089             'utf8' => '1.21',
15090             'warnings' => '1.40',
15091             },
15092             removed => {
15093             }
15094             },
15095             5.027009 => {
15096             delta_from => 5.027008,
15097             changed => {
15098             'B::Op_private' => '5.027009',
15099             'Carp' => '1.46',
15100             'Carp::Heavy' => '1.46',
15101             'Config' => '5.027009',
15102             'Cwd' => '3.74',
15103             'Devel::PPPort' => '3.39',
15104             'Encode' => '2.96',
15105             'Encode::Unicode' => '2.17',
15106             'Errno' => '1.29',
15107             'ExtUtils::Command' => '7.32',
15108             'ExtUtils::Command::MM' => '7.32',
15109             'ExtUtils::Liblist' => '7.32',
15110             'ExtUtils::Liblist::Kid'=> '7.32',
15111             'ExtUtils::MM' => '7.32',
15112             'ExtUtils::MM_AIX' => '7.32',
15113             'ExtUtils::MM_Any' => '7.32',
15114             'ExtUtils::MM_BeOS' => '7.32',
15115             'ExtUtils::MM_Cygwin' => '7.32',
15116             'ExtUtils::MM_DOS' => '7.32',
15117             'ExtUtils::MM_Darwin' => '7.32',
15118             'ExtUtils::MM_MacOS' => '7.32',
15119             'ExtUtils::MM_NW5' => '7.32',
15120             'ExtUtils::MM_OS2' => '7.32',
15121             'ExtUtils::MM_QNX' => '7.32',
15122             'ExtUtils::MM_UWIN' => '7.32',
15123             'ExtUtils::MM_Unix' => '7.32',
15124             'ExtUtils::MM_VMS' => '7.32',
15125             'ExtUtils::MM_VOS' => '7.32',
15126             'ExtUtils::MM_Win32' => '7.32',
15127             'ExtUtils::MM_Win95' => '7.32',
15128             'ExtUtils::MY' => '7.32',
15129             'ExtUtils::MakeMaker' => '7.32',
15130             'ExtUtils::MakeMaker::Config'=> '7.32',
15131             'ExtUtils::MakeMaker::Locale'=> '7.32',
15132             'ExtUtils::MakeMaker::version'=> '7.32',
15133             'ExtUtils::MakeMaker::version::regex'=> '7.32',
15134             'ExtUtils::Mkbootstrap' => '7.32',
15135             'ExtUtils::Mksymlists' => '7.32',
15136             'ExtUtils::ParseXS' => '3.38',
15137             'ExtUtils::ParseXS::Constants'=> '3.38',
15138             'ExtUtils::ParseXS::CountLines'=> '3.38',
15139             'ExtUtils::ParseXS::Eval'=> '3.38',
15140             'ExtUtils::ParseXS::Utilities'=> '3.38',
15141             'ExtUtils::Typemaps' => '3.38',
15142             'ExtUtils::Typemaps::Cmd'=> '3.38',
15143             'ExtUtils::Typemaps::InputMap'=> '3.38',
15144             'ExtUtils::Typemaps::OutputMap'=> '3.38',
15145             'ExtUtils::Typemaps::Type'=> '3.38',
15146             'ExtUtils::testlib' => '7.32',
15147             'File::Spec' => '3.74',
15148             'File::Spec::AmigaOS' => '3.74',
15149             'File::Spec::Cygwin' => '3.74',
15150             'File::Spec::Epoc' => '3.74',
15151             'File::Spec::Functions' => '3.74',
15152             'File::Spec::Mac' => '3.74',
15153             'File::Spec::OS2' => '3.74',
15154             'File::Spec::Unix' => '3.74',
15155             'File::Spec::VMS' => '3.74',
15156             'File::Spec::Win32' => '3.74',
15157             'IPC::Cmd' => '1.00',
15158             'Math::BigFloat::Trace' => '0.49',
15159             'Math::BigInt::Trace' => '0.49',
15160             'Module::CoreList' => '5.20180220',
15161             'Module::CoreList::Utils'=> '5.20180220',
15162             'POSIX' => '1.82',
15163             'PerlIO::encoding' => '0.26',
15164             'Storable' => '3.06',
15165             'Storable::Limit' => undef,
15166             'Test2' => '1.302122',
15167             'Test2::API' => '1.302122',
15168             'Test2::API::Breakage' => '1.302122',
15169             'Test2::API::Context' => '1.302122',
15170             'Test2::API::Instance' => '1.302122',
15171             'Test2::API::Stack' => '1.302122',
15172             'Test2::Event' => '1.302122',
15173             'Test2::Event::Bail' => '1.302122',
15174             'Test2::Event::Diag' => '1.302122',
15175             'Test2::Event::Encoding'=> '1.302122',
15176             'Test2::Event::Exception'=> '1.302122',
15177             'Test2::Event::Fail' => '1.302122',
15178             'Test2::Event::Generic' => '1.302122',
15179             'Test2::Event::Note' => '1.302122',
15180             'Test2::Event::Ok' => '1.302122',
15181             'Test2::Event::Pass' => '1.302122',
15182             'Test2::Event::Plan' => '1.302122',
15183             'Test2::Event::Skip' => '1.302122',
15184             'Test2::Event::Subtest' => '1.302122',
15185             'Test2::Event::TAP::Version'=> '1.302122',
15186             'Test2::Event::Waiting' => '1.302122',
15187             'Test2::EventFacet' => '1.302122',
15188             'Test2::EventFacet::About'=> '1.302122',
15189             'Test2::EventFacet::Amnesty'=> '1.302122',
15190             'Test2::EventFacet::Assert'=> '1.302122',
15191             'Test2::EventFacet::Control'=> '1.302122',
15192             'Test2::EventFacet::Error'=> '1.302122',
15193             'Test2::EventFacet::Info'=> '1.302122',
15194             'Test2::EventFacet::Meta'=> '1.302122',
15195             'Test2::EventFacet::Parent'=> '1.302122',
15196             'Test2::EventFacet::Plan'=> '1.302122',
15197             'Test2::EventFacet::Render'=> '1.302122',
15198             'Test2::EventFacet::Trace'=> '1.302122',
15199             'Test2::Formatter' => '1.302122',
15200             'Test2::Formatter::TAP' => '1.302122',
15201             'Test2::Hub' => '1.302122',
15202             'Test2::Hub::Interceptor'=> '1.302122',
15203             'Test2::Hub::Interceptor::Terminator'=> '1.302122',
15204             'Test2::Hub::Subtest' => '1.302122',
15205             'Test2::IPC' => '1.302122',
15206             'Test2::IPC::Driver' => '1.302122',
15207             'Test2::IPC::Driver::Files'=> '1.302122',
15208             'Test2::Tools::Tiny' => '1.302122',
15209             'Test2::Util' => '1.302122',
15210             'Test2::Util::ExternalMeta'=> '1.302122',
15211             'Test2::Util::Facets2Legacy'=> '1.302122',
15212             'Test2::Util::HashBase' => '1.302122',
15213             'Test2::Util::Trace' => '1.302122',
15214             'Test::Builder' => '1.302122',
15215             'Test::Builder::Formatter'=> '1.302122',
15216             'Test::Builder::Module' => '1.302122',
15217             'Test::Builder::Tester' => '1.302122',
15218             'Test::Builder::Tester::Color'=> '1.302122',
15219             'Test::Builder::TodoDiag'=> '1.302122',
15220             'Test::More' => '1.302122',
15221             'Test::Simple' => '1.302122',
15222             'Test::Tester' => '1.302122',
15223             'Test::Tester::Capture' => '1.302122',
15224             'Test::Tester::CaptureRunner'=> '1.302122',
15225             'Test::Tester::Delegate'=> '1.302122',
15226             'Test::use::ok' => '1.302122',
15227             'Time::HiRes' => '1.9753',
15228             'XS::APItest' => '0.96',
15229             'bigint' => '0.49',
15230             'bignum' => '0.49',
15231             'bigrat' => '0.49',
15232             'encoding' => '2.22',
15233             'if' => '0.0608',
15234             'mro' => '1.22',
15235             'ok' => '1.302122',
15236             'threads' => '2.22',
15237             'warnings' => '1.41',
15238             },
15239             removed => {
15240             'Module::CoreList::TieHashDelta'=> 1,
15241             }
15242             },
15243             5.027010 => {
15244             delta_from => 5.027009,
15245             changed => {
15246             'App::Prove' => '3.42',
15247             'App::Prove::State' => '3.42',
15248             'App::Prove::State::Result'=> '3.42',
15249             'App::Prove::State::Result::Test'=> '3.42',
15250             'B::Deparse' => '1.48',
15251             'B::Op_private' => '5.027010',
15252             'Carp' => '1.49',
15253             'Carp::Heavy' => '1.49',
15254             'Config' => '5.02701',
15255             'Encode' => '2.97',
15256             'ExtUtils::Command' => '7.34',
15257             'ExtUtils::Command::MM' => '7.34',
15258             'ExtUtils::Liblist' => '7.34',
15259             'ExtUtils::Liblist::Kid'=> '7.34',
15260             'ExtUtils::MM' => '7.34',
15261             'ExtUtils::MM_AIX' => '7.34',
15262             'ExtUtils::MM_Any' => '7.34',
15263             'ExtUtils::MM_BeOS' => '7.34',
15264             'ExtUtils::MM_Cygwin' => '7.34',
15265             'ExtUtils::MM_DOS' => '7.34',
15266             'ExtUtils::MM_Darwin' => '7.34',
15267             'ExtUtils::MM_MacOS' => '7.34',
15268             'ExtUtils::MM_NW5' => '7.34',
15269             'ExtUtils::MM_OS2' => '7.34',
15270             'ExtUtils::MM_QNX' => '7.34',
15271             'ExtUtils::MM_UWIN' => '7.34',
15272             'ExtUtils::MM_Unix' => '7.34',
15273             'ExtUtils::MM_VMS' => '7.34',
15274             'ExtUtils::MM_VOS' => '7.34',
15275             'ExtUtils::MM_Win32' => '7.34',
15276             'ExtUtils::MM_Win95' => '7.34',
15277             'ExtUtils::MY' => '7.34',
15278             'ExtUtils::MakeMaker' => '7.34',
15279             'ExtUtils::MakeMaker::Config'=> '7.34',
15280             'ExtUtils::MakeMaker::Locale'=> '7.34',
15281             'ExtUtils::MakeMaker::version'=> '7.34',
15282             'ExtUtils::MakeMaker::version::regex'=> '7.34',
15283             'ExtUtils::Mkbootstrap' => '7.34',
15284             'ExtUtils::Mksymlists' => '7.34',
15285             'ExtUtils::ParseXS' => '3.39',
15286             'ExtUtils::ParseXS::Constants'=> '3.39',
15287             'ExtUtils::ParseXS::CountLines'=> '3.39',
15288             'ExtUtils::ParseXS::Eval'=> '3.39',
15289             'ExtUtils::ParseXS::Utilities'=> '3.39',
15290             'ExtUtils::testlib' => '7.34',
15291             'File::Glob' => '1.31',
15292             'I18N::Langinfo' => '0.16',
15293             'List::Util' => '1.50',
15294             'List::Util::XS' => '1.50',
15295             'Locale::Codes' => '3.56',
15296             'Locale::Codes::Constants'=> '3.56',
15297             'Locale::Codes::Country'=> '3.56',
15298             'Locale::Codes::Country_Codes'=> '3.56',
15299             'Locale::Codes::Country_Retired'=> '3.56',
15300             'Locale::Codes::Currency'=> '3.56',
15301             'Locale::Codes::Currency_Codes'=> '3.56',
15302             'Locale::Codes::Currency_Retired'=> '3.56',
15303             'Locale::Codes::LangExt'=> '3.56',
15304             'Locale::Codes::LangExt_Codes'=> '3.56',
15305             'Locale::Codes::LangExt_Retired'=> '3.56',
15306             'Locale::Codes::LangFam'=> '3.56',
15307             'Locale::Codes::LangFam_Codes'=> '3.56',
15308             'Locale::Codes::LangFam_Retired'=> '3.56',
15309             'Locale::Codes::LangVar'=> '3.56',
15310             'Locale::Codes::LangVar_Codes'=> '3.56',
15311             'Locale::Codes::LangVar_Retired'=> '3.56',
15312             'Locale::Codes::Language'=> '3.56',
15313             'Locale::Codes::Language_Codes'=> '3.56',
15314             'Locale::Codes::Language_Retired'=> '3.56',
15315             'Locale::Codes::Script' => '3.56',
15316             'Locale::Codes::Script_Codes'=> '3.56',
15317             'Locale::Codes::Script_Retired'=> '3.56',
15318             'Locale::Country' => '3.56',
15319             'Locale::Currency' => '3.56',
15320             'Locale::Language' => '3.56',
15321             'Locale::Script' => '3.56',
15322             'Module::CoreList' => '5.20180221',
15323             'Module::CoreList::Utils'=> '5.20180221',
15324             'POSIX' => '1.83',
15325             'Scalar::Util' => '1.50',
15326             'Sub::Util' => '1.50',
15327             'TAP::Base' => '3.42',
15328             'TAP::Formatter::Base' => '3.42',
15329             'TAP::Formatter::Color' => '3.42',
15330             'TAP::Formatter::Console'=> '3.42',
15331             'TAP::Formatter::Console::ParallelSession'=> '3.42',
15332             'TAP::Formatter::Console::Session'=> '3.42',
15333             'TAP::Formatter::File' => '3.42',
15334             'TAP::Formatter::File::Session'=> '3.42',
15335             'TAP::Formatter::Session'=> '3.42',
15336             'TAP::Harness' => '3.42',
15337             'TAP::Harness::Env' => '3.42',
15338             'TAP::Object' => '3.42',
15339             'TAP::Parser' => '3.42',
15340             'TAP::Parser::Aggregator'=> '3.42',
15341             'TAP::Parser::Grammar' => '3.42',
15342             'TAP::Parser::Iterator' => '3.42',
15343             'TAP::Parser::Iterator::Array'=> '3.42',
15344             'TAP::Parser::Iterator::Process'=> '3.42',
15345             'TAP::Parser::Iterator::Stream'=> '3.42',
15346             'TAP::Parser::IteratorFactory'=> '3.42',
15347             'TAP::Parser::Multiplexer'=> '3.42',
15348             'TAP::Parser::Result' => '3.42',
15349             'TAP::Parser::Result::Bailout'=> '3.42',
15350             'TAP::Parser::Result::Comment'=> '3.42',
15351             'TAP::Parser::Result::Plan'=> '3.42',
15352             'TAP::Parser::Result::Pragma'=> '3.42',
15353             'TAP::Parser::Result::Test'=> '3.42',
15354             'TAP::Parser::Result::Unknown'=> '3.42',
15355             'TAP::Parser::Result::Version'=> '3.42',
15356             'TAP::Parser::Result::YAML'=> '3.42',
15357             'TAP::Parser::ResultFactory'=> '3.42',
15358             'TAP::Parser::Scheduler'=> '3.42',
15359             'TAP::Parser::Scheduler::Job'=> '3.42',
15360             'TAP::Parser::Scheduler::Spinner'=> '3.42',
15361             'TAP::Parser::Source' => '3.42',
15362             'TAP::Parser::SourceHandler'=> '3.42',
15363             'TAP::Parser::SourceHandler::Executable'=> '3.42',
15364             'TAP::Parser::SourceHandler::File'=> '3.42',
15365             'TAP::Parser::SourceHandler::Handle'=> '3.42',
15366             'TAP::Parser::SourceHandler::Perl'=> '3.42',
15367             'TAP::Parser::SourceHandler::RawTAP'=> '3.42',
15368             'TAP::Parser::YAMLish::Reader'=> '3.42',
15369             'TAP::Parser::YAMLish::Writer'=> '3.42',
15370             'Test2' => '1.302133',
15371             'Test2::API' => '1.302133',
15372             'Test2::API::Breakage' => '1.302133',
15373             'Test2::API::Context' => '1.302133',
15374             'Test2::API::Instance' => '1.302133',
15375             'Test2::API::Stack' => '1.302133',
15376             'Test2::Event' => '1.302133',
15377             'Test2::Event::Bail' => '1.302133',
15378             'Test2::Event::Diag' => '1.302133',
15379             'Test2::Event::Encoding'=> '1.302133',
15380             'Test2::Event::Exception'=> '1.302133',
15381             'Test2::Event::Fail' => '1.302133',
15382             'Test2::Event::Generic' => '1.302133',
15383             'Test2::Event::Note' => '1.302133',
15384             'Test2::Event::Ok' => '1.302133',
15385             'Test2::Event::Pass' => '1.302133',
15386             'Test2::Event::Plan' => '1.302133',
15387             'Test2::Event::Skip' => '1.302133',
15388             'Test2::Event::Subtest' => '1.302133',
15389             'Test2::Event::TAP::Version'=> '1.302133',
15390             'Test2::Event::V2' => '1.302133',
15391             'Test2::Event::Waiting' => '1.302133',
15392             'Test2::EventFacet' => '1.302133',
15393             'Test2::EventFacet::About'=> '1.302133',
15394             'Test2::EventFacet::Amnesty'=> '1.302133',
15395             'Test2::EventFacet::Assert'=> '1.302133',
15396             'Test2::EventFacet::Control'=> '1.302133',
15397             'Test2::EventFacet::Error'=> '1.302133',
15398             'Test2::EventFacet::Hub'=> '1.302133',
15399             'Test2::EventFacet::Info'=> '1.302133',
15400             'Test2::EventFacet::Meta'=> '1.302133',
15401             'Test2::EventFacet::Parent'=> '1.302133',
15402             'Test2::EventFacet::Plan'=> '1.302133',
15403             'Test2::EventFacet::Render'=> '1.302133',
15404             'Test2::EventFacet::Trace'=> '1.302133',
15405             'Test2::Formatter' => '1.302133',
15406             'Test2::Formatter::TAP' => '1.302133',
15407             'Test2::Hub' => '1.302133',
15408             'Test2::Hub::Interceptor'=> '1.302133',
15409             'Test2::Hub::Interceptor::Terminator'=> '1.302133',
15410             'Test2::Hub::Subtest' => '1.302133',
15411             'Test2::IPC' => '1.302133',
15412             'Test2::IPC::Driver' => '1.302133',
15413             'Test2::IPC::Driver::Files'=> '1.302133',
15414             'Test2::Tools::Tiny' => '1.302133',
15415             'Test2::Util' => '1.302133',
15416             'Test2::Util::ExternalMeta'=> '1.302133',
15417             'Test2::Util::Facets2Legacy'=> '1.302133',
15418             'Test2::Util::HashBase' => '1.302133',
15419             'Test2::Util::Trace' => '1.302133',
15420             'Test::Builder' => '1.302133',
15421             'Test::Builder::Formatter'=> '1.302133',
15422             'Test::Builder::Module' => '1.302133',
15423             'Test::Builder::Tester' => '1.302133',
15424             'Test::Builder::Tester::Color'=> '1.302133',
15425             'Test::Builder::TodoDiag'=> '1.302133',
15426             'Test::Harness' => '3.42',
15427             'Test::More' => '1.302133',
15428             'Test::Simple' => '1.302133',
15429             'Test::Tester' => '1.302133',
15430             'Test::Tester::Capture' => '1.302133',
15431             'Test::Tester::CaptureRunner'=> '1.302133',
15432             'Test::Tester::Delegate'=> '1.302133',
15433             'Test::use::ok' => '1.302133',
15434             'Time::HiRes' => '1.9757',
15435             'Time::Piece' => '1.3204',
15436             'Time::Seconds' => '1.3204',
15437             'attributes' => '0.33',
15438             'ok' => '1.302133',
15439             'warnings' => '1.42',
15440             },
15441             removed => {
15442             }
15443             },
15444             5.024004 => {
15445             delta_from => 5.024003,
15446             changed => {
15447             'B::Op_private' => '5.024004',
15448             'Config' => '5.024004',
15449             'Module::CoreList' => '5.20180414_24',
15450             'Module::CoreList::TieHashDelta'=> '5.20180414_24',
15451             'Module::CoreList::Utils'=> '5.20180414_24',
15452             },
15453             removed => {
15454             }
15455             },
15456             5.026002 => {
15457             delta_from => 5.026001,
15458             changed => {
15459             'B::Op_private' => '5.026002',
15460             'Config' => '5.026002',
15461             'Module::CoreList' => '5.20180414_26',
15462             'Module::CoreList::TieHashDelta'=> '5.20180414_26',
15463             'Module::CoreList::Utils'=> '5.20180414_26',
15464             'PerlIO::via' => '0.17',
15465             'Term::ReadLine' => '1.17',
15466             'Unicode::UCD' => '0.69',
15467             },
15468             removed => {
15469             }
15470             },
15471             5.027011 => {
15472             delta_from => 5.027010,
15473             changed => {
15474             'B::Op_private' => '5.027011',
15475             'Carp' => '1.50',
15476             'Carp::Heavy' => '1.50',
15477             'Config' => '5.027011',
15478             'Devel::PPPort' => '3.40',
15479             'Exporter' => '5.73',
15480             'Exporter::Heavy' => '5.73',
15481             'ExtUtils::Constant' => '0.25',
15482             'I18N::Langinfo' => '0.17',
15483             'IO' => '1.39',
15484             'IO::Dir' => '1.39',
15485             'IO::File' => '1.39',
15486             'IO::Handle' => '1.39',
15487             'IO::Pipe' => '1.39',
15488             'IO::Poll' => '1.39',
15489             'IO::Seekable' => '1.39',
15490             'IO::Select' => '1.39',
15491             'IO::Socket' => '1.39',
15492             'IO::Socket::INET' => '1.39',
15493             'IO::Socket::UNIX' => '1.39',
15494             'Module::CoreList' => '5.20180420',
15495             'Module::CoreList::Utils'=> '5.20180420',
15496             'POSIX' => '1.84',
15497             'Time::HiRes' => '1.9759',
15498             'XS::APItest' => '0.97',
15499             'bytes' => '1.06',
15500             'subs' => '1.03',
15501             'vars' => '1.04',
15502             'version' => '0.9923',
15503             'version::regex' => '0.9923',
15504             },
15505             removed => {
15506             }
15507             },
15508             5.028000 => {
15509             delta_from => 5.027011,
15510             changed => {
15511             'Archive::Tar' => '2.30',
15512             'Archive::Tar::Constant'=> '2.30',
15513             'Archive::Tar::File' => '2.30',
15514             'B::Op_private' => '5.028000',
15515             'Config' => '5.028',
15516             'Module::CoreList' => '5.20180622',
15517             'Module::CoreList::Utils'=> '5.20180622',
15518             'Storable' => '3.08',
15519             'XS::APItest' => '0.98',
15520             'feature' => '1.52',
15521             },
15522             removed => {
15523             }
15524             },
15525             5.029000 => {
15526             delta_from => 5.028,
15527             changed => {
15528             'B::Op_private' => '5.029000',
15529             'Config' => '5.029',
15530             'Module::CoreList' => '5.20180626',
15531             'Module::CoreList::Utils'=> '5.20180626',
15532             'Unicode::UCD' => '0.71',
15533             'XS::APItest' => '0.99',
15534             'feature' => '1.53',
15535             },
15536             removed => {
15537             }
15538             },
15539             5.029001 => {
15540             delta_from => 5.029000,
15541             changed => {
15542             'B::Op_private' => '5.029001',
15543             'Compress::Raw::Bzip2' => '2.081',
15544             'Compress::Raw::Zlib' => '2.081',
15545             'Compress::Zlib' => '2.081',
15546             'Config' => '5.029001',
15547             'Config::Perl::V' => '0.30',
15548             'DB_File' => '1.842',
15549             'Devel::PPPort' => '3.42',
15550             'Digest::SHA' => '6.02',
15551             'ExtUtils::Manifest' => '1.71',
15552             'File::GlobMapper' => '1.001',
15553             'File::Temp' => '0.2308',
15554             'IO::Compress::Adapter::Bzip2'=> '2.081',
15555             'IO::Compress::Adapter::Deflate'=> '2.081',
15556             'IO::Compress::Adapter::Identity'=> '2.081',
15557             'IO::Compress::Base' => '2.081',
15558             'IO::Compress::Base::Common'=> '2.081',
15559             'IO::Compress::Bzip2' => '2.081',
15560             'IO::Compress::Deflate' => '2.081',
15561             'IO::Compress::Gzip' => '2.081',
15562             'IO::Compress::Gzip::Constants'=> '2.081',
15563             'IO::Compress::RawDeflate'=> '2.081',
15564             'IO::Compress::Zip' => '2.081',
15565             'IO::Compress::Zip::Constants'=> '2.081',
15566             'IO::Compress::Zlib::Constants'=> '2.081',
15567             'IO::Compress::Zlib::Extra'=> '2.081',
15568             'IO::Uncompress::Adapter::Bunzip2'=> '2.081',
15569             'IO::Uncompress::Adapter::Identity'=> '2.081',
15570             'IO::Uncompress::Adapter::Inflate'=> '2.081',
15571             'IO::Uncompress::AnyInflate'=> '2.081',
15572             'IO::Uncompress::AnyUncompress'=> '2.081',
15573             'IO::Uncompress::Base' => '2.081',
15574             'IO::Uncompress::Bunzip2'=> '2.081',
15575             'IO::Uncompress::Gunzip'=> '2.081',
15576             'IO::Uncompress::Inflate'=> '2.081',
15577             'IO::Uncompress::RawInflate'=> '2.081',
15578             'IO::Uncompress::Unzip' => '2.081',
15579             'IPC::Cmd' => '1.02',
15580             'Locale::Codes' => '3.57',
15581             'Locale::Codes::Constants'=> '3.57',
15582             'Locale::Codes::Country'=> '3.57',
15583             'Locale::Codes::Country_Codes'=> '3.57',
15584             'Locale::Codes::Country_Retired'=> '3.57',
15585             'Locale::Codes::Currency'=> '3.57',
15586             'Locale::Codes::Currency_Codes'=> '3.57',
15587             'Locale::Codes::Currency_Retired'=> '3.57',
15588             'Locale::Codes::LangExt'=> '3.57',
15589             'Locale::Codes::LangExt_Codes'=> '3.57',
15590             'Locale::Codes::LangExt_Retired'=> '3.57',
15591             'Locale::Codes::LangFam'=> '3.57',
15592             'Locale::Codes::LangFam_Codes'=> '3.57',
15593             'Locale::Codes::LangFam_Retired'=> '3.57',
15594             'Locale::Codes::LangVar'=> '3.57',
15595             'Locale::Codes::LangVar_Codes'=> '3.57',
15596             'Locale::Codes::LangVar_Retired'=> '3.57',
15597             'Locale::Codes::Language'=> '3.57',
15598             'Locale::Codes::Language_Codes'=> '3.57',
15599             'Locale::Codes::Language_Retired'=> '3.57',
15600             'Locale::Codes::Script' => '3.57',
15601             'Locale::Codes::Script_Codes'=> '3.57',
15602             'Locale::Codes::Script_Retired'=> '3.57',
15603             'Locale::Country' => '3.57',
15604             'Locale::Currency' => '3.57',
15605             'Locale::Language' => '3.57',
15606             'Locale::Script' => '3.57',
15607             'Math::BigFloat' => '1.999813',
15608             'Math::BigFloat::Trace' => '0.50',
15609             'Math::BigInt' => '1.999813',
15610             'Math::BigInt::Calc' => '1.999813',
15611             'Math::BigInt::CalcEmu' => '1.999813',
15612             'Math::BigInt::FastCalc'=> '0.5007',
15613             'Math::BigInt::Lib' => '1.999813',
15614             'Math::BigInt::Trace' => '0.50',
15615             'Math::BigRat' => '0.2614',
15616             'Module::CoreList' => '5.20180720',
15617             'Module::CoreList::Utils'=> '5.20180720',
15618             'Pod::Man' => '4.11',
15619             'Pod::ParseLink' => '4.11',
15620             'Pod::Text' => '4.11',
15621             'Pod::Text::Color' => '4.11',
15622             'Pod::Text::Overstrike' => '4.11',
15623             'Pod::Text::Termcap' => '4.11',
15624             'Storable' => '3.11',
15625             'Test2' => '1.302138',
15626             'Test2::API' => '1.302138',
15627             'Test2::API::Breakage' => '1.302138',
15628             'Test2::API::Context' => '1.302138',
15629             'Test2::API::Instance' => '1.302138',
15630             'Test2::API::Stack' => '1.302138',
15631             'Test2::Event' => '1.302138',
15632             'Test2::Event::Bail' => '1.302138',
15633             'Test2::Event::Diag' => '1.302138',
15634             'Test2::Event::Encoding'=> '1.302138',
15635             'Test2::Event::Exception'=> '1.302138',
15636             'Test2::Event::Fail' => '1.302138',
15637             'Test2::Event::Generic' => '1.302138',
15638             'Test2::Event::Note' => '1.302138',
15639             'Test2::Event::Ok' => '1.302138',
15640             'Test2::Event::Pass' => '1.302138',
15641             'Test2::Event::Plan' => '1.302138',
15642             'Test2::Event::Skip' => '1.302138',
15643             'Test2::Event::Subtest' => '1.302138',
15644             'Test2::Event::TAP::Version'=> '1.302138',
15645             'Test2::Event::V2' => '1.302138',
15646             'Test2::Event::Waiting' => '1.302138',
15647             'Test2::EventFacet' => '1.302138',
15648             'Test2::EventFacet::About'=> '1.302138',
15649             'Test2::EventFacet::Amnesty'=> '1.302138',
15650             'Test2::EventFacet::Assert'=> '1.302138',
15651             'Test2::EventFacet::Control'=> '1.302138',
15652             'Test2::EventFacet::Error'=> '1.302138',
15653             'Test2::EventFacet::Hub'=> '1.302138',
15654             'Test2::EventFacet::Info'=> '1.302138',
15655             'Test2::EventFacet::Meta'=> '1.302138',
15656             'Test2::EventFacet::Parent'=> '1.302138',
15657             'Test2::EventFacet::Plan'=> '1.302138',
15658             'Test2::EventFacet::Render'=> '1.302138',
15659             'Test2::EventFacet::Trace'=> '1.302138',
15660             'Test2::Formatter' => '1.302138',
15661             'Test2::Formatter::TAP' => '1.302138',
15662             'Test2::Hub' => '1.302138',
15663             'Test2::Hub::Interceptor'=> '1.302138',
15664             'Test2::Hub::Interceptor::Terminator'=> '1.302138',
15665             'Test2::Hub::Subtest' => '1.302138',
15666             'Test2::IPC' => '1.302138',
15667             'Test2::IPC::Driver' => '1.302138',
15668             'Test2::IPC::Driver::Files'=> '1.302138',
15669             'Test2::Tools::Tiny' => '1.302138',
15670             'Test2::Util' => '1.302138',
15671             'Test2::Util::ExternalMeta'=> '1.302138',
15672             'Test2::Util::Facets2Legacy'=> '1.302138',
15673             'Test2::Util::HashBase' => '1.302138',
15674             'Test2::Util::Trace' => '1.302138',
15675             'Test::Builder' => '1.302138',
15676             'Test::Builder::Formatter'=> '1.302138',
15677             'Test::Builder::Module' => '1.302138',
15678             'Test::Builder::Tester' => '1.302138',
15679             'Test::Builder::Tester::Color'=> '1.302138',
15680             'Test::Builder::TodoDiag'=> '1.302138',
15681             'Test::More' => '1.302138',
15682             'Test::Simple' => '1.302138',
15683             'Test::Tester' => '1.302138',
15684             'Test::Tester::Capture' => '1.302138',
15685             'Test::Tester::CaptureRunner'=> '1.302138',
15686             'Test::Tester::Delegate'=> '1.302138',
15687             'Test::use::ok' => '1.302138',
15688             'Thread::Queue' => '3.13',
15689             'Time::Local' => '1.28',
15690             'bigint' => '0.50',
15691             'bignum' => '0.50',
15692             'bigrat' => '0.50',
15693             'experimental' => '0.020',
15694             'ok' => '1.302138',
15695             'parent' => '0.237',
15696             'perlfaq' => '5.20180605',
15697             'version' => '0.9924',
15698             'version::regex' => '0.9924',
15699             },
15700             removed => {
15701             }
15702             },
15703             5.029002 => {
15704             delta_from => 5.029001,
15705             changed => {
15706             'B::Op_private' => '5.029002',
15707             'Config' => '5.029002',
15708             'Config::Extensions' => '0.03',
15709             'Cwd' => '3.75',
15710             'Data::Dumper' => '2.171',
15711             'Filter::Util::Call' => '1.59',
15712             'HTTP::Tiny' => '0.076',
15713             'Module::CoreList' => '5.20180820',
15714             'Module::CoreList::Utils'=> '5.20180820',
15715             'PerlIO::scalar' => '0.30',
15716             'Storable' => '3.12',
15717             'Test2' => '1.302140',
15718             'Test2::API' => '1.302140',
15719             'Test2::API::Breakage' => '1.302140',
15720             'Test2::API::Context' => '1.302140',
15721             'Test2::API::Instance' => '1.302140',
15722             'Test2::API::Stack' => '1.302140',
15723             'Test2::Event' => '1.302140',
15724             'Test2::Event::Bail' => '1.302140',
15725             'Test2::Event::Diag' => '1.302140',
15726             'Test2::Event::Encoding'=> '1.302140',
15727             'Test2::Event::Exception'=> '1.302140',
15728             'Test2::Event::Fail' => '1.302140',
15729             'Test2::Event::Generic' => '1.302140',
15730             'Test2::Event::Note' => '1.302140',
15731             'Test2::Event::Ok' => '1.302140',
15732             'Test2::Event::Pass' => '1.302140',
15733             'Test2::Event::Plan' => '1.302140',
15734             'Test2::Event::Skip' => '1.302140',
15735             'Test2::Event::Subtest' => '1.302140',
15736             'Test2::Event::TAP::Version'=> '1.302140',
15737             'Test2::Event::V2' => '1.302140',
15738             'Test2::Event::Waiting' => '1.302140',
15739             'Test2::EventFacet' => '1.302140',
15740             'Test2::EventFacet::About'=> '1.302140',
15741             'Test2::EventFacet::Amnesty'=> '1.302140',
15742             'Test2::EventFacet::Assert'=> '1.302140',
15743             'Test2::EventFacet::Control'=> '1.302140',
15744             'Test2::EventFacet::Error'=> '1.302140',
15745             'Test2::EventFacet::Hub'=> '1.302140',
15746             'Test2::EventFacet::Info'=> '1.302140',
15747             'Test2::EventFacet::Meta'=> '1.302140',
15748             'Test2::EventFacet::Parent'=> '1.302140',
15749             'Test2::EventFacet::Plan'=> '1.302140',
15750             'Test2::EventFacet::Render'=> '1.302140',
15751             'Test2::EventFacet::Trace'=> '1.302140',
15752             'Test2::Formatter' => '1.302140',
15753             'Test2::Formatter::TAP' => '1.302140',
15754             'Test2::Hub' => '1.302140',
15755             'Test2::Hub::Interceptor'=> '1.302140',
15756             'Test2::Hub::Interceptor::Terminator'=> '1.302140',
15757             'Test2::Hub::Subtest' => '1.302140',
15758             'Test2::IPC' => '1.302140',
15759             'Test2::IPC::Driver' => '1.302140',
15760             'Test2::IPC::Driver::Files'=> '1.302140',
15761             'Test2::Tools::Tiny' => '1.302140',
15762             'Test2::Util' => '1.302140',
15763             'Test2::Util::ExternalMeta'=> '1.302140',
15764             'Test2::Util::Facets2Legacy'=> '1.302140',
15765             'Test2::Util::HashBase' => '1.302140',
15766             'Test2::Util::Trace' => '1.302140',
15767             'Test::Builder' => '1.302140',
15768             'Test::Builder::Formatter'=> '1.302140',
15769             'Test::Builder::Module' => '1.302140',
15770             'Test::Builder::Tester' => '1.302140',
15771             'Test::Builder::Tester::Color'=> '1.302140',
15772             'Test::Builder::TodoDiag'=> '1.302140',
15773             'Test::More' => '1.302140',
15774             'Test::Simple' => '1.302140',
15775             'Test::Tester' => '1.302140',
15776             'Test::Tester::Capture' => '1.302140',
15777             'Test::Tester::CaptureRunner'=> '1.302140',
15778             'Test::Tester::Delegate'=> '1.302140',
15779             'Test::use::ok' => '1.302140',
15780             'Time::HiRes' => '1.9760',
15781             'Time::Piece' => '1.33',
15782             'Time::Seconds' => '1.33',
15783             'Unicode' => '11.0.0',
15784             'ok' => '1.302140',
15785             'warnings' => '1.43',
15786             },
15787             removed => {
15788             }
15789             },
15790             5.029003 => {
15791             delta_from => 5.029002,
15792             changed => {
15793             'Archive::Tar' => '2.32',
15794             'Archive::Tar::Constant'=> '2.32',
15795             'Archive::Tar::File' => '2.32',
15796             'B::Op_private' => '5.029003',
15797             'Config' => '5.029003',
15798             'Data::Dumper' => '2.172',
15799             'Devel::PPPort' => '3.43',
15800             'File::Path' => '2.16',
15801             'File::Spec' => '3.75',
15802             'File::Spec::AmigaOS' => '3.75',
15803             'File::Spec::Cygwin' => '3.75',
15804             'File::Spec::Epoc' => '3.75',
15805             'File::Spec::Functions' => '3.75',
15806             'File::Spec::Mac' => '3.75',
15807             'File::Spec::OS2' => '3.75',
15808             'File::Spec::Unix' => '3.75',
15809             'File::Spec::VMS' => '3.75',
15810             'File::Spec::Win32' => '3.75',
15811             'Module::CoreList' => '5.20180920',
15812             'Module::CoreList::Utils'=> '5.20180920',
15813             'POSIX' => '1.85',
15814             'Storable' => '3.13',
15815             'User::grent' => '1.03',
15816             'perlfaq' => '5.20180915',
15817             },
15818             removed => {
15819             'Locale::Codes' => 1,
15820             'Locale::Codes::Constants'=> 1,
15821             'Locale::Codes::Country'=> 1,
15822             'Locale::Codes::Country_Codes'=> 1,
15823             'Locale::Codes::Country_Retired'=> 1,
15824             'Locale::Codes::Currency'=> 1,
15825             'Locale::Codes::Currency_Codes'=> 1,
15826             'Locale::Codes::Currency_Retired'=> 1,
15827             'Locale::Codes::LangExt'=> 1,
15828             'Locale::Codes::LangExt_Codes'=> 1,
15829             'Locale::Codes::LangExt_Retired'=> 1,
15830             'Locale::Codes::LangFam'=> 1,
15831             'Locale::Codes::LangFam_Codes'=> 1,
15832             'Locale::Codes::LangFam_Retired'=> 1,
15833             'Locale::Codes::LangVar'=> 1,
15834             'Locale::Codes::LangVar_Codes'=> 1,
15835             'Locale::Codes::LangVar_Retired'=> 1,
15836             'Locale::Codes::Language'=> 1,
15837             'Locale::Codes::Language_Codes'=> 1,
15838             'Locale::Codes::Language_Retired'=> 1,
15839             'Locale::Codes::Script' => 1,
15840             'Locale::Codes::Script_Codes'=> 1,
15841             'Locale::Codes::Script_Retired'=> 1,
15842             'Locale::Country' => 1,
15843             'Locale::Currency' => 1,
15844             'Locale::Language' => 1,
15845             'Locale::Script' => 1,
15846             }
15847             },
15848             5.029004 => {
15849             delta_from => 5.029003,
15850             changed => {
15851             'App::Cpan' => '1.671',
15852             'B' => '1.75',
15853             'B::Concise' => '1.004',
15854             'B::Deparse' => '1.49',
15855             'B::Op_private' => '5.029004',
15856             'B::Terse' => '1.09',
15857             'CPAN' => '2.21',
15858             'CPAN::Distribution' => '2.21',
15859             'CPAN::Mirrors' => '2.21',
15860             'CPAN::Plugin' => '0.97',
15861             'CPAN::Shell' => '5.5008',
15862             'Config' => '5.029004',
15863             'Devel::Peek' => '1.28',
15864             'File::Copy' => '2.34',
15865             'File::Glob' => '1.32',
15866             'Math::BigFloat::Trace' => '0.51',
15867             'Math::BigInt::Trace' => '0.51',
15868             'Module::CoreList' => '5.20181020',
15869             'Module::CoreList::Utils'=> '5.20181020',
15870             'Unicode::UCD' => '0.72',
15871             'bigint' => '0.51',
15872             'bignum' => '0.51',
15873             'bigrat' => '0.51',
15874             'bytes' => '1.07',
15875             'feature' => '1.54',
15876             'sigtrap' => '1.09',
15877             'vars' => '1.05',
15878             },
15879             removed => {
15880             'B::Debug' => 1,
15881             'arybase' => 1,
15882             }
15883             },
15884             5.029005 => {
15885             delta_from => 5.029004,
15886             changed => {
15887             'B::Op_private' => '5.029005',
15888             'Config' => '5.029005',
15889             'Cwd' => '3.76',
15890             'Data::Dumper' => '2.173',
15891             'Errno' => '1.30',
15892             'File::Spec' => '3.76',
15893             'File::Spec::AmigaOS' => '3.76',
15894             'File::Spec::Cygwin' => '3.76',
15895             'File::Spec::Epoc' => '3.76',
15896             'File::Spec::Functions' => '3.76',
15897             'File::Spec::Mac' => '3.76',
15898             'File::Spec::OS2' => '3.76',
15899             'File::Spec::Unix' => '3.76',
15900             'File::Spec::VMS' => '3.76',
15901             'File::Spec::Win32' => '3.76',
15902             'GDBM_File' => '1.18',
15903             'Module::CoreList' => '5.20181120',
15904             'Module::CoreList::Utils'=> '5.20181120',
15905             'NDBM_File' => '1.15',
15906             'ODBM_File' => '1.16',
15907             'SDBM_File' => '1.15',
15908             're' => '0.37',
15909             },
15910             removed => {
15911             }
15912             },
15913             5.026003 => {
15914             delta_from => 5.026002,
15915             changed => {
15916             'Archive::Tar' => '2.24_01',
15917             'B::Op_private' => '5.026003',
15918             'Config' => '5.026003',
15919             'Module::CoreList' => '5.20181129_26',
15920             'Module::CoreList::TieHashDelta'=> '5.20181129_26',
15921             'Module::CoreList::Utils'=> '5.20181129_26',
15922             },
15923             removed => {
15924             }
15925             },
15926             5.028001 => {
15927             delta_from => 5.028,
15928             changed => {
15929             'B::Op_private' => '5.028001',
15930             'Config' => '5.028001',
15931             'Module::CoreList' => '5.20181129_28',
15932             'Module::CoreList::Utils'=> '5.20181129_28',
15933             },
15934             removed => {
15935             }
15936             },
15937             5.029006 => {
15938             delta_from => 5.029005,
15939             changed => {
15940             'B::Op_private' => '5.029006',
15941             'Config' => '5.029006',
15942             'Config::Perl::V' => '0.32',
15943             'ExtUtils::ParseXS' => '3.40',
15944             'ExtUtils::ParseXS::Constants'=> '3.40',
15945             'ExtUtils::ParseXS::CountLines'=> '3.40',
15946             'ExtUtils::ParseXS::Eval'=> '3.40',
15947             'ExtUtils::ParseXS::Utilities'=> '3.40',
15948             'File::Find' => '1.35',
15949             'Module::CoreList' => '5.20181218',
15950             'Module::CoreList::Utils'=> '5.20181218',
15951             'POSIX' => '1.86',
15952             'Storable' => '3.14',
15953             'Test2' => '1.302141',
15954             'Test2::API' => '1.302141',
15955             'Test2::API::Breakage' => '1.302141',
15956             'Test2::API::Context' => '1.302141',
15957             'Test2::API::Instance' => '1.302141',
15958             'Test2::API::Stack' => '1.302141',
15959             'Test2::Event' => '1.302141',
15960             'Test2::Event::Bail' => '1.302141',
15961             'Test2::Event::Diag' => '1.302141',
15962             'Test2::Event::Encoding'=> '1.302141',
15963             'Test2::Event::Exception'=> '1.302141',
15964             'Test2::Event::Fail' => '1.302141',
15965             'Test2::Event::Generic' => '1.302141',
15966             'Test2::Event::Note' => '1.302141',
15967             'Test2::Event::Ok' => '1.302141',
15968             'Test2::Event::Pass' => '1.302141',
15969             'Test2::Event::Plan' => '1.302141',
15970             'Test2::Event::Skip' => '1.302141',
15971             'Test2::Event::Subtest' => '1.302141',
15972             'Test2::Event::TAP::Version'=> '1.302141',
15973             'Test2::Event::V2' => '1.302141',
15974             'Test2::Event::Waiting' => '1.302141',
15975             'Test2::EventFacet' => '1.302141',
15976             'Test2::EventFacet::About'=> '1.302141',
15977             'Test2::EventFacet::Amnesty'=> '1.302141',
15978             'Test2::EventFacet::Assert'=> '1.302141',
15979             'Test2::EventFacet::Control'=> '1.302141',
15980             'Test2::EventFacet::Error'=> '1.302141',
15981             'Test2::EventFacet::Hub'=> '1.302141',
15982             'Test2::EventFacet::Info'=> '1.302141',
15983             'Test2::EventFacet::Meta'=> '1.302141',
15984             'Test2::EventFacet::Parent'=> '1.302141',
15985             'Test2::EventFacet::Plan'=> '1.302141',
15986             'Test2::EventFacet::Render'=> '1.302141',
15987             'Test2::EventFacet::Trace'=> '1.302141',
15988             'Test2::Formatter' => '1.302141',
15989             'Test2::Formatter::TAP' => '1.302141',
15990             'Test2::Hub' => '1.302141',
15991             'Test2::Hub::Interceptor'=> '1.302141',
15992             'Test2::Hub::Interceptor::Terminator'=> '1.302141',
15993             'Test2::Hub::Subtest' => '1.302141',
15994             'Test2::IPC' => '1.302141',
15995             'Test2::IPC::Driver' => '1.302141',
15996             'Test2::IPC::Driver::Files'=> '1.302141',
15997             'Test2::Tools::Tiny' => '1.302141',
15998             'Test2::Util' => '1.302141',
15999             'Test2::Util::ExternalMeta'=> '1.302141',
16000             'Test2::Util::Facets2Legacy'=> '1.302141',
16001             'Test2::Util::HashBase' => '1.302141',
16002             'Test2::Util::Trace' => '1.302141',
16003             'Test::Builder' => '1.302141',
16004             'Test::Builder::Formatter'=> '1.302141',
16005             'Test::Builder::Module' => '1.302141',
16006             'Test::Builder::Tester' => '1.302141',
16007             'Test::Builder::Tester::Color'=> '1.302141',
16008             'Test::Builder::TodoDiag'=> '1.302141',
16009             'Test::More' => '1.302141',
16010             'Test::Simple' => '1.302141',
16011             'Test::Tester' => '1.302141',
16012             'Test::Tester::Capture' => '1.302141',
16013             'Test::Tester::CaptureRunner'=> '1.302141',
16014             'Test::Tester::Delegate'=> '1.302141',
16015             'Test::use::ok' => '1.302141',
16016             'ok' => '1.302141',
16017             'threads::shared' => '1.59',
16018             },
16019             removed => {
16020             'Storable::Limit' => 1,
16021             }
16022             },
16023             5.029007 => {
16024             delta_from => 5.029006,
16025             changed => {
16026             'App::Cpan' => '1.672',
16027             'B::Op_private' => '5.029007',
16028             'CPAN' => '2.22',
16029             'CPAN::Distribution' => '2.22',
16030             'CPAN::Plugin::Specfile'=> '0.02',
16031             'Compress::Raw::Bzip2' => '2.084',
16032             'Compress::Raw::Zlib' => '2.084',
16033             'Compress::Zlib' => '2.084',
16034             'Config' => '5.029007',
16035             'Cwd' => '3.77',
16036             'DB_File' => '1.843',
16037             'File::Find' => '1.36',
16038             'File::Spec' => '3.77',
16039             'File::Spec::AmigaOS' => '3.77',
16040             'File::Spec::Cygwin' => '3.77',
16041             'File::Spec::Epoc' => '3.77',
16042             'File::Spec::Functions' => '3.77',
16043             'File::Spec::Mac' => '3.77',
16044             'File::Spec::OS2' => '3.77',
16045             'File::Spec::Unix' => '3.77',
16046             'File::Spec::VMS' => '3.77',
16047             'File::Spec::Win32' => '3.77',
16048             'File::Temp' => '0.2309',
16049             'IO::Compress::Adapter::Bzip2'=> '2.084',
16050             'IO::Compress::Adapter::Deflate'=> '2.084',
16051             'IO::Compress::Adapter::Identity'=> '2.084',
16052             'IO::Compress::Base' => '2.084',
16053             'IO::Compress::Base::Common'=> '2.084',
16054             'IO::Compress::Bzip2' => '2.084',
16055             'IO::Compress::Deflate' => '2.084',
16056             'IO::Compress::Gzip' => '2.084',
16057             'IO::Compress::Gzip::Constants'=> '2.084',
16058             'IO::Compress::RawDeflate'=> '2.084',
16059             'IO::Compress::Zip' => '2.084',
16060             'IO::Compress::Zip::Constants'=> '2.084',
16061             'IO::Compress::Zlib::Constants'=> '2.084',
16062             'IO::Compress::Zlib::Extra'=> '2.084',
16063             'IO::Uncompress::Adapter::Bunzip2'=> '2.084',
16064             'IO::Uncompress::Adapter::Identity'=> '2.084',
16065             'IO::Uncompress::Adapter::Inflate'=> '2.084',
16066             'IO::Uncompress::AnyInflate'=> '2.084',
16067             'IO::Uncompress::AnyUncompress'=> '2.084',
16068             'IO::Uncompress::Base' => '2.084',
16069             'IO::Uncompress::Bunzip2'=> '2.084',
16070             'IO::Uncompress::Gunzip'=> '2.084',
16071             'IO::Uncompress::Inflate'=> '2.084',
16072             'IO::Uncompress::RawInflate'=> '2.084',
16073             'IO::Uncompress::Unzip' => '2.084',
16074             'Math::BigFloat' => '1.999816',
16075             'Math::BigInt' => '1.999816',
16076             'Math::BigInt::Calc' => '1.999816',
16077             'Math::BigInt::FastCalc'=> '0.5008',
16078             'Math::BigInt::Lib' => '1.999816',
16079             'Module::CoreList' => '5.20190120',
16080             'Module::CoreList::Utils'=> '5.20190120',
16081             'Test2' => '1.302160',
16082             'Test2::API' => '1.302160',
16083             'Test2::API::Breakage' => '1.302160',
16084             'Test2::API::Context' => '1.302160',
16085             'Test2::API::Instance' => '1.302160',
16086             'Test2::API::Stack' => '1.302160',
16087             'Test2::Event' => '1.302160',
16088             'Test2::Event::Bail' => '1.302160',
16089             'Test2::Event::Diag' => '1.302160',
16090             'Test2::Event::Encoding'=> '1.302160',
16091             'Test2::Event::Exception'=> '1.302160',
16092             'Test2::Event::Fail' => '1.302160',
16093             'Test2::Event::Generic' => '1.302160',
16094             'Test2::Event::Note' => '1.302160',
16095             'Test2::Event::Ok' => '1.302160',
16096             'Test2::Event::Pass' => '1.302160',
16097             'Test2::Event::Plan' => '1.302160',
16098             'Test2::Event::Skip' => '1.302160',
16099             'Test2::Event::Subtest' => '1.302160',
16100             'Test2::Event::TAP::Version'=> '1.302160',
16101             'Test2::Event::V2' => '1.302160',
16102             'Test2::Event::Waiting' => '1.302160',
16103             'Test2::EventFacet' => '1.302160',
16104             'Test2::EventFacet::About'=> '1.302160',
16105             'Test2::EventFacet::Amnesty'=> '1.302160',
16106             'Test2::EventFacet::Assert'=> '1.302160',
16107             'Test2::EventFacet::Control'=> '1.302160',
16108             'Test2::EventFacet::Error'=> '1.302160',
16109             'Test2::EventFacet::Hub'=> '1.302160',
16110             'Test2::EventFacet::Info'=> '1.302160',
16111             'Test2::EventFacet::Info::Table'=> undef,
16112             'Test2::EventFacet::Meta'=> '1.302160',
16113             'Test2::EventFacet::Parent'=> '1.302160',
16114             'Test2::EventFacet::Plan'=> '1.302160',
16115             'Test2::EventFacet::Render'=> '1.302160',
16116             'Test2::EventFacet::Trace'=> '1.302160',
16117             'Test2::Formatter' => '1.302160',
16118             'Test2::Formatter::TAP' => '1.302160',
16119             'Test2::Hub' => '1.302160',
16120             'Test2::Hub::Interceptor'=> '1.302160',
16121             'Test2::Hub::Interceptor::Terminator'=> '1.302160',
16122             'Test2::Hub::Subtest' => '1.302160',
16123             'Test2::IPC' => '1.302160',
16124             'Test2::IPC::Driver' => '1.302160',
16125             'Test2::IPC::Driver::Files'=> '1.302160',
16126             'Test2::Tools::Tiny' => '1.302160',
16127             'Test2::Util' => '1.302160',
16128             'Test2::Util::ExternalMeta'=> '1.302160',
16129             'Test2::Util::Facets2Legacy'=> '1.302160',
16130             'Test2::Util::HashBase' => '1.302160',
16131             'Test2::Util::Trace' => '1.302160',
16132             'Test::Builder' => '1.302160',
16133             'Test::Builder::Formatter'=> '1.302160',
16134             'Test::Builder::Module' => '1.302160',
16135             'Test::Builder::Tester' => '1.302160',
16136             'Test::Builder::Tester::Color'=> '1.302160',
16137             'Test::Builder::TodoDiag'=> '1.302160',
16138             'Test::More' => '1.302160',
16139             'Test::Simple' => '1.302160',
16140             'Test::Tester' => '1.302160',
16141             'Test::Tester::Capture' => '1.302160',
16142             'Test::Tester::CaptureRunner'=> '1.302160',
16143             'Test::Tester::Delegate'=> '1.302160',
16144             'Test::use::ok' => '1.302160',
16145             'Unicode::Collate' => '1.27',
16146             'Unicode::Collate::CJK::Big5'=> '1.27',
16147             'Unicode::Collate::CJK::GB2312'=> '1.27',
16148             'Unicode::Collate::CJK::JISX0208'=> '1.27',
16149             'Unicode::Collate::CJK::Korean'=> '1.27',
16150             'Unicode::Collate::CJK::Pinyin'=> '1.27',
16151             'Unicode::Collate::CJK::Stroke'=> '1.27',
16152             'Unicode::Collate::CJK::Zhuyin'=> '1.27',
16153             'Unicode::Collate::Locale'=> '1.27',
16154             'lib' => '0.65',
16155             'ok' => '1.302160',
16156             },
16157             removed => {
16158             'Math::BigInt::CalcEmu' => 1,
16159             }
16160             },
16161             5.029008 => {
16162             delta_from => 5.029007,
16163             changed => {
16164             'B' => '1.76',
16165             'B::Op_private' => '5.029008',
16166             'Config' => '5.029008',
16167             'Devel::PPPort' => '3.44',
16168             'Encode' => '3.00',
16169             'Encode::Unicode' => '2.18',
16170             'ExtUtils::Miniperl' => '1.09',
16171             'IO' => '1.40',
16172             'IO::Dir' => '1.40',
16173             'IO::File' => '1.40',
16174             'IO::Handle' => '1.40',
16175             'IO::Pipe' => '1.40',
16176             'IO::Poll' => '1.40',
16177             'IO::Seekable' => '1.40',
16178             'IO::Select' => '1.40',
16179             'IO::Socket' => '1.40',
16180             'IO::Socket::INET' => '1.40',
16181             'IO::Socket::UNIX' => '1.40',
16182             'JSON::PP' => '4.00',
16183             'JSON::PP::Boolean' => '4.00',
16184             'Module::CoreList' => '5.20190220',
16185             'Module::CoreList::Utils'=> '5.20190220',
16186             'Module::Load' => '0.34',
16187             'Net::Ping' => '2.71',
16188             'POSIX' => '1.87',
16189             'Test2' => '1.302162',
16190             'Test2::API' => '1.302162',
16191             'Test2::API::Breakage' => '1.302162',
16192             'Test2::API::Context' => '1.302162',
16193             'Test2::API::Instance' => '1.302162',
16194             'Test2::API::Stack' => '1.302162',
16195             'Test2::Event' => '1.302162',
16196             'Test2::Event::Bail' => '1.302162',
16197             'Test2::Event::Diag' => '1.302162',
16198             'Test2::Event::Encoding'=> '1.302162',
16199             'Test2::Event::Exception'=> '1.302162',
16200             'Test2::Event::Fail' => '1.302162',
16201             'Test2::Event::Generic' => '1.302162',
16202             'Test2::Event::Note' => '1.302162',
16203             'Test2::Event::Ok' => '1.302162',
16204             'Test2::Event::Pass' => '1.302162',
16205             'Test2::Event::Plan' => '1.302162',
16206             'Test2::Event::Skip' => '1.302162',
16207             'Test2::Event::Subtest' => '1.302162',
16208             'Test2::Event::TAP::Version'=> '1.302162',
16209             'Test2::Event::V2' => '1.302162',
16210             'Test2::Event::Waiting' => '1.302162',
16211             'Test2::EventFacet' => '1.302162',
16212             'Test2::EventFacet::About'=> '1.302162',
16213             'Test2::EventFacet::Amnesty'=> '1.302162',
16214             'Test2::EventFacet::Assert'=> '1.302162',
16215             'Test2::EventFacet::Control'=> '1.302162',
16216             'Test2::EventFacet::Error'=> '1.302162',
16217             'Test2::EventFacet::Hub'=> '1.302162',
16218             'Test2::EventFacet::Info'=> '1.302162',
16219             'Test2::EventFacet::Meta'=> '1.302162',
16220             'Test2::EventFacet::Parent'=> '1.302162',
16221             'Test2::EventFacet::Plan'=> '1.302162',
16222             'Test2::EventFacet::Render'=> '1.302162',
16223             'Test2::EventFacet::Trace'=> '1.302162',
16224             'Test2::Formatter' => '1.302162',
16225             'Test2::Formatter::TAP' => '1.302162',
16226             'Test2::Hub' => '1.302162',
16227             'Test2::Hub::Interceptor'=> '1.302162',
16228             'Test2::Hub::Interceptor::Terminator'=> '1.302162',
16229             'Test2::Hub::Subtest' => '1.302162',
16230             'Test2::IPC' => '1.302162',
16231             'Test2::IPC::Driver' => '1.302162',
16232             'Test2::IPC::Driver::Files'=> '1.302162',
16233             'Test2::Tools::Tiny' => '1.302162',
16234             'Test2::Util' => '1.302162',
16235             'Test2::Util::ExternalMeta'=> '1.302162',
16236             'Test2::Util::Facets2Legacy'=> '1.302162',
16237             'Test2::Util::HashBase' => '1.302162',
16238             'Test2::Util::Trace' => '1.302162',
16239             'Test::Builder' => '1.302162',
16240             'Test::Builder::Formatter'=> '1.302162',
16241             'Test::Builder::Module' => '1.302162',
16242             'Test::Builder::Tester' => '1.302162',
16243             'Test::Builder::Tester::Color'=> '1.302162',
16244             'Test::Builder::TodoDiag'=> '1.302162',
16245             'Test::More' => '1.302162',
16246             'Test::Simple' => '1.302162',
16247             'Test::Tester' => '1.302162',
16248             'Test::Tester::Capture' => '1.302162',
16249             'Test::Tester::CaptureRunner'=> '1.302162',
16250             'Test::Tester::Delegate'=> '1.302162',
16251             'Test::use::ok' => '1.302162',
16252             'XS::APItest' => '1.00',
16253             'deprecate' => '0.04',
16254             'ok' => '1.302162',
16255             'perlfaq' => '5.20190126',
16256             },
16257             removed => {
16258             }
16259             },
16260             5.029009 => {
16261             delta_from => 5.029008,
16262             changed => {
16263             'B::Op_private' => '5.029009',
16264             'Config' => '5.029009',
16265             'Devel::PPPort' => '3.45',
16266             'Encode' => '3.01',
16267             'ExtUtils::Manifest' => '1.72',
16268             'JSON::PP' => '4.02',
16269             'JSON::PP::Boolean' => '4.02',
16270             'Module::CoreList' => '5.20190320',
16271             'Module::CoreList::Utils'=> '5.20190320',
16272             'PerlIO::encoding' => '0.27',
16273             'Unicode' => '12.0.0',
16274             'threads::shared' => '1.60',
16275             'utf8' => '1.22',
16276             'warnings' => '1.44',
16277             },
16278             removed => {
16279             }
16280             },
16281             5.028002 => {
16282             delta_from => 5.028001,
16283             changed => {
16284             'B::Op_private' => '5.028002',
16285             'Config' => '5.028002',
16286             'Module::CoreList' => '5.20190419',
16287             'Module::CoreList::Utils'=> '5.20190419',
16288             'PerlIO::scalar' => '0.30',
16289             'Storable' => '3.08_01',
16290             },
16291             removed => {
16292             }
16293             },
16294             5.029010 => {
16295             delta_from => 5.029009,
16296             changed => {
16297             'B::Op_private' => '5.029010',
16298             'Config' => '5.02901',
16299             'Cwd' => '3.78',
16300             'Data::Dumper' => '2.174',
16301             'ExtUtils::CBuilder' => '0.280231',
16302             'ExtUtils::CBuilder::Base'=> '0.280231',
16303             'ExtUtils::CBuilder::Platform::Unix'=> '0.280231',
16304             'ExtUtils::CBuilder::Platform::VMS'=> '0.280231',
16305             'ExtUtils::CBuilder::Platform::Windows'=> '0.280231',
16306             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280231',
16307             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280231',
16308             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280231',
16309             'ExtUtils::CBuilder::Platform::aix'=> '0.280231',
16310             'ExtUtils::CBuilder::Platform::android'=> '0.280231',
16311             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280231',
16312             'ExtUtils::CBuilder::Platform::darwin'=> '0.280231',
16313             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280231',
16314             'ExtUtils::CBuilder::Platform::os2'=> '0.280231',
16315             'File::Spec' => '3.78',
16316             'File::Spec::AmigaOS' => '3.78',
16317             'File::Spec::Cygwin' => '3.78',
16318             'File::Spec::Epoc' => '3.78',
16319             'File::Spec::Functions' => '3.78',
16320             'File::Spec::Mac' => '3.78',
16321             'File::Spec::OS2' => '3.78',
16322             'File::Spec::Unix' => '3.78',
16323             'File::Spec::VMS' => '3.78',
16324             'File::Spec::Win32' => '3.78',
16325             'I18N::Langinfo' => '0.18',
16326             'Module::CoreList' => '5.20190420',
16327             'Module::CoreList::Utils'=> '5.20190420',
16328             'Module::Metadata' => '1.000036',
16329             'POSIX' => '1.88',
16330             'Storable' => '3.15',
16331             'Unicode' => '12.1.0',
16332             },
16333             removed => {
16334             }
16335             },
16336             5.030000 => {
16337             delta_from => 5.02901,
16338             changed => {
16339             'B::Op_private' => '5.030000',
16340             'Config' => '5.03',
16341             'Devel::PPPort' => '3.52',
16342             'Module::CoreList' => '5.20190522',
16343             'Module::CoreList::Utils'=> '5.20190522',
16344             'XS::Typemap' => '0.17',
16345             },
16346             removed => {
16347             }
16348             },
16349             5.031000 => {
16350             delta_from => 5.03,
16351             changed => {
16352             'B::Op_private' => '5.031000',
16353             'Config' => '5.031',
16354             'Module::CoreList' => '5.20190524',
16355             'Module::CoreList::Utils'=> '5.20190524',
16356             'Pod::Simple' => '3.36',
16357             'Pod::Simple::BlackBox' => '3.36',
16358             'Pod::Simple::Checker' => '3.36',
16359             'Pod::Simple::Debug' => '3.36',
16360             'Pod::Simple::DumpAsText'=> '3.36',
16361             'Pod::Simple::DumpAsXML'=> '3.36',
16362             'Pod::Simple::HTML' => '3.36',
16363             'Pod::Simple::HTMLBatch'=> '3.36',
16364             'Pod::Simple::JustPod' => undef,
16365             'Pod::Simple::LinkSection'=> '3.36',
16366             'Pod::Simple::Methody' => '3.36',
16367             'Pod::Simple::Progress' => '3.36',
16368             'Pod::Simple::PullParser'=> '3.36',
16369             'Pod::Simple::PullParserEndToken'=> '3.36',
16370             'Pod::Simple::PullParserStartToken'=> '3.36',
16371             'Pod::Simple::PullParserTextToken'=> '3.36',
16372             'Pod::Simple::PullParserToken'=> '3.36',
16373             'Pod::Simple::RTF' => '3.36',
16374             'Pod::Simple::Search' => '3.36',
16375             'Pod::Simple::SimpleTree'=> '3.36',
16376             'Pod::Simple::Text' => '3.36',
16377             'Pod::Simple::TextContent'=> '3.36',
16378             'Pod::Simple::TiedOutFH'=> '3.36',
16379             'Pod::Simple::Transcode'=> '3.36',
16380             'Pod::Simple::TranscodeDumb'=> '3.36',
16381             'Pod::Simple::TranscodeSmart'=> '3.36',
16382             'Pod::Simple::XHTML' => '3.36',
16383             'Pod::Simple::XMLOutStream'=> '3.36',
16384             'Socket' => '2.029',
16385             'feature' => '1.55',
16386             },
16387             removed => {
16388             }
16389             },
16390             5.031001 => {
16391             delta_from => 5.031000,
16392             changed => {
16393             'App::Cpan' => '1.675',
16394             'B::Op_private' => '5.031001',
16395             'CPAN' => '2.27',
16396             'CPAN::Bundle' => '5.5005',
16397             'CPAN::Distribution' => '2.27',
16398             'CPAN::FTP' => '5.5012',
16399             'CPAN::FirstTime' => '5.5314',
16400             'CPAN::HandleConfig' => '5.5011',
16401             'CPAN::Mirrors' => '2.27',
16402             'CPAN::Queue' => '5.5003',
16403             'CPAN::Shell' => '5.5009',
16404             'CPAN::Tarzip' => '5.5013',
16405             'Class::Struct' => '0.66',
16406             'Compress::Raw::Bzip2' => '2.086',
16407             'Compress::Raw::Zlib' => '2.086',
16408             'Compress::Zlib' => '2.086',
16409             'Config' => '5.031001',
16410             'DB_File' => '1.852',
16411             'Devel::PPPort' => '3.53',
16412             'ExtUtils::CBuilder' => '0.280232',
16413             'ExtUtils::Command' => '7.36',
16414             'ExtUtils::Command::MM' => '7.36',
16415             'ExtUtils::Liblist' => '7.36',
16416             'ExtUtils::Liblist::Kid'=> '7.36',
16417             'ExtUtils::MM' => '7.36',
16418             'ExtUtils::MM_AIX' => '7.36',
16419             'ExtUtils::MM_Any' => '7.36',
16420             'ExtUtils::MM_BeOS' => '7.36',
16421             'ExtUtils::MM_Cygwin' => '7.36',
16422             'ExtUtils::MM_DOS' => '7.36',
16423             'ExtUtils::MM_Darwin' => '7.36',
16424             'ExtUtils::MM_MacOS' => '7.36',
16425             'ExtUtils::MM_NW5' => '7.36',
16426             'ExtUtils::MM_OS2' => '7.36',
16427             'ExtUtils::MM_QNX' => '7.36',
16428             'ExtUtils::MM_UWIN' => '7.36',
16429             'ExtUtils::MM_Unix' => '7.36',
16430             'ExtUtils::MM_VMS' => '7.36',
16431             'ExtUtils::MM_VOS' => '7.36',
16432             'ExtUtils::MM_Win32' => '7.36',
16433             'ExtUtils::MM_Win95' => '7.36',
16434             'ExtUtils::MY' => '7.36',
16435             'ExtUtils::MakeMaker' => '7.36',
16436             'ExtUtils::MakeMaker::Config'=> '7.36',
16437             'ExtUtils::MakeMaker::Locale'=> '7.36',
16438             'ExtUtils::MakeMaker::version'=> '7.36',
16439             'ExtUtils::MakeMaker::version::regex'=> '7.36',
16440             'ExtUtils::Mkbootstrap' => '7.36',
16441             'ExtUtils::Mksymlists' => '7.36',
16442             'ExtUtils::testlib' => '7.36',
16443             'File::Spec::Win32' => '3.79',
16444             'I18N::LangTags' => '0.44',
16445             'IO' => '1.41',
16446             'IO::Compress::Adapter::Bzip2'=> '2.086',
16447             'IO::Compress::Adapter::Deflate'=> '2.086',
16448             'IO::Compress::Adapter::Identity'=> '2.086',
16449             'IO::Compress::Base' => '2.086',
16450             'IO::Compress::Base::Common'=> '2.086',
16451             'IO::Compress::Bzip2' => '2.086',
16452             'IO::Compress::Deflate' => '2.086',
16453             'IO::Compress::Gzip' => '2.086',
16454             'IO::Compress::Gzip::Constants'=> '2.086',
16455             'IO::Compress::RawDeflate'=> '2.086',
16456             'IO::Compress::Zip' => '2.086',
16457             'IO::Compress::Zip::Constants'=> '2.086',
16458             'IO::Compress::Zlib::Constants'=> '2.086',
16459             'IO::Compress::Zlib::Extra'=> '2.086',
16460             'IO::Dir' => '1.41',
16461             'IO::File' => '1.41',
16462             'IO::Handle' => '1.41',
16463             'IO::Pipe' => '1.41',
16464             'IO::Poll' => '1.41',
16465             'IO::Seekable' => '1.41',
16466             'IO::Select' => '1.41',
16467             'IO::Socket' => '1.41',
16468             'IO::Socket::INET' => '1.41',
16469             'IO::Socket::UNIX' => '1.41',
16470             'IO::Uncompress::Adapter::Bunzip2'=> '2.086',
16471             'IO::Uncompress::Adapter::Identity'=> '2.086',
16472             'IO::Uncompress::Adapter::Inflate'=> '2.086',
16473             'IO::Uncompress::AnyInflate'=> '2.086',
16474             'IO::Uncompress::AnyUncompress'=> '2.086',
16475             'IO::Uncompress::Base' => '2.086',
16476             'IO::Uncompress::Bunzip2'=> '2.086',
16477             'IO::Uncompress::Gunzip'=> '2.086',
16478             'IO::Uncompress::Inflate'=> '2.086',
16479             'IO::Uncompress::RawInflate'=> '2.086',
16480             'IO::Uncompress::Unzip' => '2.086',
16481             'Module::CoreList' => '5.20190620',
16482             'Module::CoreList::Utils'=> '5.20190620',
16483             'POSIX' => '1.89',
16484             'Pod::Man' => '4.12',
16485             'Pod::ParseLink' => '4.12',
16486             'Pod::Simple' => '3.38',
16487             'Pod::Simple::BlackBox' => '3.38',
16488             'Pod::Simple::Checker' => '3.38',
16489             'Pod::Simple::Debug' => '3.38',
16490             'Pod::Simple::DumpAsText'=> '3.38',
16491             'Pod::Simple::DumpAsXML'=> '3.38',
16492             'Pod::Simple::HTML' => '3.38',
16493             'Pod::Simple::HTMLBatch'=> '3.38',
16494             'Pod::Simple::LinkSection'=> '3.38',
16495             'Pod::Simple::Methody' => '3.38',
16496             'Pod::Simple::Progress' => '3.38',
16497             'Pod::Simple::PullParser'=> '3.38',
16498             'Pod::Simple::PullParserEndToken'=> '3.38',
16499             'Pod::Simple::PullParserStartToken'=> '3.38',
16500             'Pod::Simple::PullParserTextToken'=> '3.38',
16501             'Pod::Simple::PullParserToken'=> '3.38',
16502             'Pod::Simple::RTF' => '3.38',
16503             'Pod::Simple::Search' => '3.38',
16504             'Pod::Simple::SimpleTree'=> '3.38',
16505             'Pod::Simple::Text' => '3.38',
16506             'Pod::Simple::TextContent'=> '3.38',
16507             'Pod::Simple::TiedOutFH'=> '3.38',
16508             'Pod::Simple::Transcode'=> '3.38',
16509             'Pod::Simple::TranscodeDumb'=> '3.38',
16510             'Pod::Simple::TranscodeSmart'=> '3.38',
16511             'Pod::Simple::XHTML' => '3.38',
16512             'Pod::Simple::XMLOutStream'=> '3.38',
16513             'Pod::Text' => '4.12',
16514             'Pod::Text::Color' => '4.12',
16515             'Pod::Text::Overstrike' => '4.12',
16516             'Pod::Text::Termcap' => '4.12',
16517             'SelfLoader' => '1.26',
16518             'Storable' => '3.16',
16519             'Sys::Hostname' => '1.23',
16520             'Test2' => '1.302164',
16521             'Test2::API' => '1.302164',
16522             'Test2::API::Breakage' => '1.302164',
16523             'Test2::API::Context' => '1.302164',
16524             'Test2::API::Instance' => '1.302164',
16525             'Test2::API::Stack' => '1.302164',
16526             'Test2::Event' => '1.302164',
16527             'Test2::Event::Bail' => '1.302164',
16528             'Test2::Event::Diag' => '1.302164',
16529             'Test2::Event::Encoding'=> '1.302164',
16530             'Test2::Event::Exception'=> '1.302164',
16531             'Test2::Event::Fail' => '1.302164',
16532             'Test2::Event::Generic' => '1.302164',
16533             'Test2::Event::Note' => '1.302164',
16534             'Test2::Event::Ok' => '1.302164',
16535             'Test2::Event::Pass' => '1.302164',
16536             'Test2::Event::Plan' => '1.302164',
16537             'Test2::Event::Skip' => '1.302164',
16538             'Test2::Event::Subtest' => '1.302164',
16539             'Test2::Event::TAP::Version'=> '1.302164',
16540             'Test2::Event::V2' => '1.302164',
16541             'Test2::Event::Waiting' => '1.302164',
16542             'Test2::EventFacet' => '1.302164',
16543             'Test2::EventFacet::About'=> '1.302164',
16544             'Test2::EventFacet::Amnesty'=> '1.302164',
16545             'Test2::EventFacet::Assert'=> '1.302164',
16546             'Test2::EventFacet::Control'=> '1.302164',
16547             'Test2::EventFacet::Error'=> '1.302164',
16548             'Test2::EventFacet::Hub'=> '1.302164',
16549             'Test2::EventFacet::Info'=> '1.302164',
16550             'Test2::EventFacet::Info::Table'=> '1.302164',
16551             'Test2::EventFacet::Meta'=> '1.302164',
16552             'Test2::EventFacet::Parent'=> '1.302164',
16553             'Test2::EventFacet::Plan'=> '1.302164',
16554             'Test2::EventFacet::Render'=> '1.302164',
16555             'Test2::EventFacet::Trace'=> '1.302164',
16556             'Test2::Formatter' => '1.302164',
16557             'Test2::Formatter::TAP' => '1.302164',
16558             'Test2::Hub' => '1.302164',
16559             'Test2::Hub::Interceptor'=> '1.302164',
16560             'Test2::Hub::Interceptor::Terminator'=> '1.302164',
16561             'Test2::Hub::Subtest' => '1.302164',
16562             'Test2::IPC' => '1.302164',
16563             'Test2::IPC::Driver' => '1.302164',
16564             'Test2::IPC::Driver::Files'=> '1.302164',
16565             'Test2::Tools::Tiny' => '1.302164',
16566             'Test2::Util' => '1.302164',
16567             'Test2::Util::ExternalMeta'=> '1.302164',
16568             'Test2::Util::Facets2Legacy'=> '1.302164',
16569             'Test2::Util::HashBase' => '1.302164',
16570             'Test2::Util::Trace' => '1.302164',
16571             'Test::Builder' => '1.302164',
16572             'Test::Builder::Formatter'=> '1.302164',
16573             'Test::Builder::Module' => '1.302164',
16574             'Test::Builder::Tester' => '1.302164',
16575             'Test::Builder::Tester::Color'=> '1.302164',
16576             'Test::Builder::TodoDiag'=> '1.302164',
16577             'Test::More' => '1.302164',
16578             'Test::Simple' => '1.302164',
16579             'Test::Tester' => '1.302164',
16580             'Test::Tester::Capture' => '1.302164',
16581             'Test::Tester::CaptureRunner'=> '1.302164',
16582             'Test::Tester::Delegate'=> '1.302164',
16583             'Test::use::ok' => '1.302164',
16584             'Tie::File' => '1.03',
16585             'Tie::Hash::NamedCapture'=> '0.11',
16586             'Time::HiRes' => '1.9761',
16587             'Unicode::Normalize' => '1.27',
16588             'Unicode::UCD' => '0.73',
16589             'XS::APItest' => '1.01',
16590             'ok' => '1.302164',
16591             'overload' => '1.31',
16592             'warnings' => '1.45',
16593             },
16594             removed => {
16595             'Pod::Find' => 1,
16596             'Pod::InputObjects' => 1,
16597             'Pod::ParseUtils' => 1,
16598             'Pod::Parser' => 1,
16599             'Pod::PlainText' => 1,
16600             'Pod::Select' => 1,
16601             }
16602             },
16603             5.031002 => {
16604             delta_from => 5.031001,
16605             changed => {
16606             'B::Op_private' => '5.031002',
16607             'Config' => '5.031002',
16608             'Devel::PPPort' => '3.54',
16609             'Exporter' => '5.74',
16610             'Exporter::Heavy' => '5.74',
16611             'IPC::Cmd' => '1.04',
16612             'JSON::PP' => '4.04',
16613             'JSON::PP::Boolean' => '4.04',
16614             'Module::CoreList' => '5.20190720',
16615             'Module::CoreList::Utils'=> '5.20190720',
16616             'Opcode' => '1.44',
16617             'PerlIO::encoding' => '0.28',
16618             'Pod::Simple' => '3.39',
16619             'Pod::Simple::BlackBox' => '3.39',
16620             'Pod::Simple::Checker' => '3.39',
16621             'Pod::Simple::Debug' => '3.39',
16622             'Pod::Simple::DumpAsText'=> '3.39',
16623             'Pod::Simple::DumpAsXML'=> '3.39',
16624             'Pod::Simple::HTML' => '3.39',
16625             'Pod::Simple::HTMLBatch'=> '3.39',
16626             'Pod::Simple::LinkSection'=> '3.39',
16627             'Pod::Simple::Methody' => '3.39',
16628             'Pod::Simple::Progress' => '3.39',
16629             'Pod::Simple::PullParser'=> '3.39',
16630             'Pod::Simple::PullParserEndToken'=> '3.39',
16631             'Pod::Simple::PullParserStartToken'=> '3.39',
16632             'Pod::Simple::PullParserTextToken'=> '3.39',
16633             'Pod::Simple::PullParserToken'=> '3.39',
16634             'Pod::Simple::RTF' => '3.39',
16635             'Pod::Simple::Search' => '3.39',
16636             'Pod::Simple::SimpleTree'=> '3.39',
16637             'Pod::Simple::Text' => '3.39',
16638             'Pod::Simple::TextContent'=> '3.39',
16639             'Pod::Simple::TiedOutFH'=> '3.39',
16640             'Pod::Simple::Transcode'=> '3.39',
16641             'Pod::Simple::TranscodeDumb'=> '3.39',
16642             'Pod::Simple::TranscodeSmart'=> '3.39',
16643             'Pod::Simple::XHTML' => '3.39',
16644             'Pod::Simple::XMLOutStream'=> '3.39',
16645             'threads::shared' => '1.61',
16646             },
16647             removed => {
16648             }
16649             },
16650             5.031003 => {
16651             delta_from => 5.031002,
16652             changed => {
16653             'B::Op_private' => '5.031003',
16654             'Compress::Raw::Bzip2' => '2.087',
16655             'Compress::Raw::Zlib' => '2.087',
16656             'Compress::Zlib' => '2.087',
16657             'Config' => '5.031003',
16658             'Devel::PPPort' => '3.55',
16659             'File::Find' => '1.37',
16660             'Getopt::Long' => '2.51',
16661             'I18N::LangTags::Detect'=> '1.08',
16662             'IO::Compress::Adapter::Bzip2'=> '2.087',
16663             'IO::Compress::Adapter::Deflate'=> '2.087',
16664             'IO::Compress::Adapter::Identity'=> '2.087',
16665             'IO::Compress::Base' => '2.087',
16666             'IO::Compress::Base::Common'=> '2.087',
16667             'IO::Compress::Bzip2' => '2.087',
16668             'IO::Compress::Deflate' => '2.087',
16669             'IO::Compress::Gzip' => '2.087',
16670             'IO::Compress::Gzip::Constants'=> '2.087',
16671             'IO::Compress::RawDeflate'=> '2.087',
16672             'IO::Compress::Zip' => '2.087',
16673             'IO::Compress::Zip::Constants'=> '2.087',
16674             'IO::Compress::Zlib::Constants'=> '2.087',
16675             'IO::Compress::Zlib::Extra'=> '2.087',
16676             'IO::Uncompress::Adapter::Bunzip2'=> '2.087',
16677             'IO::Uncompress::Adapter::Identity'=> '2.087',
16678             'IO::Uncompress::Adapter::Inflate'=> '2.087',
16679             'IO::Uncompress::AnyInflate'=> '2.087',
16680             'IO::Uncompress::AnyUncompress'=> '2.087',
16681             'IO::Uncompress::Base' => '2.087',
16682             'IO::Uncompress::Bunzip2'=> '2.087',
16683             'IO::Uncompress::Gunzip'=> '2.087',
16684             'IO::Uncompress::Inflate'=> '2.087',
16685             'IO::Uncompress::RawInflate'=> '2.087',
16686             'IO::Uncompress::Unzip' => '2.087',
16687             'Module::CoreList' => '5.20190820',
16688             'Module::CoreList::Utils'=> '5.20190820',
16689             'PerlIO::via' => '0.18',
16690             'Storable' => '3.17',
16691             'Test2' => '1.302166',
16692             'Test2::API' => '1.302166',
16693             'Test2::API::Breakage' => '1.302166',
16694             'Test2::API::Context' => '1.302166',
16695             'Test2::API::Instance' => '1.302166',
16696             'Test2::API::Stack' => '1.302166',
16697             'Test2::Event' => '1.302166',
16698             'Test2::Event::Bail' => '1.302166',
16699             'Test2::Event::Diag' => '1.302166',
16700             'Test2::Event::Encoding'=> '1.302166',
16701             'Test2::Event::Exception'=> '1.302166',
16702             'Test2::Event::Fail' => '1.302166',
16703             'Test2::Event::Generic' => '1.302166',
16704             'Test2::Event::Note' => '1.302166',
16705             'Test2::Event::Ok' => '1.302166',
16706             'Test2::Event::Pass' => '1.302166',
16707             'Test2::Event::Plan' => '1.302166',
16708             'Test2::Event::Skip' => '1.302166',
16709             'Test2::Event::Subtest' => '1.302166',
16710             'Test2::Event::TAP::Version'=> '1.302166',
16711             'Test2::Event::V2' => '1.302166',
16712             'Test2::Event::Waiting' => '1.302166',
16713             'Test2::EventFacet' => '1.302166',
16714             'Test2::EventFacet::About'=> '1.302166',
16715             'Test2::EventFacet::Amnesty'=> '1.302166',
16716             'Test2::EventFacet::Assert'=> '1.302166',
16717             'Test2::EventFacet::Control'=> '1.302166',
16718             'Test2::EventFacet::Error'=> '1.302166',
16719             'Test2::EventFacet::Hub'=> '1.302166',
16720             'Test2::EventFacet::Info'=> '1.302166',
16721             'Test2::EventFacet::Info::Table'=> '1.302166',
16722             'Test2::EventFacet::Meta'=> '1.302166',
16723             'Test2::EventFacet::Parent'=> '1.302166',
16724             'Test2::EventFacet::Plan'=> '1.302166',
16725             'Test2::EventFacet::Render'=> '1.302166',
16726             'Test2::EventFacet::Trace'=> '1.302166',
16727             'Test2::Formatter' => '1.302166',
16728             'Test2::Formatter::TAP' => '1.302166',
16729             'Test2::Hub' => '1.302166',
16730             'Test2::Hub::Interceptor'=> '1.302166',
16731             'Test2::Hub::Interceptor::Terminator'=> '1.302166',
16732             'Test2::Hub::Subtest' => '1.302166',
16733             'Test2::IPC' => '1.302166',
16734             'Test2::IPC::Driver' => '1.302166',
16735             'Test2::IPC::Driver::Files'=> '1.302166',
16736             'Test2::Tools::Tiny' => '1.302166',
16737             'Test2::Util' => '1.302166',
16738             'Test2::Util::ExternalMeta'=> '1.302166',
16739             'Test2::Util::Facets2Legacy'=> '1.302166',
16740             'Test2::Util::HashBase' => '1.302166',
16741             'Test2::Util::Trace' => '1.302166',
16742             'Test::Builder' => '1.302166',
16743             'Test::Builder::Formatter'=> '1.302166',
16744             'Test::Builder::Module' => '1.302166',
16745             'Test::Builder::Tester' => '1.302166',
16746             'Test::Builder::Tester::Color'=> '1.302166',
16747             'Test::Builder::TodoDiag'=> '1.302166',
16748             'Test::More' => '1.302166',
16749             'Test::Simple' => '1.302166',
16750             'Test::Tester' => '1.302166',
16751             'Test::Tester::Capture' => '1.302166',
16752             'Test::Tester::CaptureRunner'=> '1.302166',
16753             'Test::Tester::Delegate'=> '1.302166',
16754             'Test::use::ok' => '1.302166',
16755             'Thread' => '3.05',
16756             'Time::HiRes' => '1.9762',
16757             'Win32' => '0.53',
16758             'XS::APItest' => '1.02',
16759             'ok' => '1.302166',
16760             },
16761             removed => {
16762             }
16763             },
16764             5.031004 => {
16765             delta_from => 5.031003,
16766             changed => {
16767             'B::Op_private' => '5.031004',
16768             'Config' => '5.031004',
16769             'ExtUtils::Command' => '7.38',
16770             'ExtUtils::Command::MM' => '7.38',
16771             'ExtUtils::Liblist' => '7.38',
16772             'ExtUtils::Liblist::Kid'=> '7.38',
16773             'ExtUtils::MM' => '7.38',
16774             'ExtUtils::MM_AIX' => '7.38',
16775             'ExtUtils::MM_Any' => '7.38',
16776             'ExtUtils::MM_BeOS' => '7.38',
16777             'ExtUtils::MM_Cygwin' => '7.38',
16778             'ExtUtils::MM_DOS' => '7.38',
16779             'ExtUtils::MM_Darwin' => '7.38',
16780             'ExtUtils::MM_MacOS' => '7.38',
16781             'ExtUtils::MM_NW5' => '7.38',
16782             'ExtUtils::MM_OS2' => '7.38',
16783             'ExtUtils::MM_QNX' => '7.38',
16784             'ExtUtils::MM_UWIN' => '7.38',
16785             'ExtUtils::MM_Unix' => '7.38',
16786             'ExtUtils::MM_VMS' => '7.38',
16787             'ExtUtils::MM_VOS' => '7.38',
16788             'ExtUtils::MM_Win32' => '7.38',
16789             'ExtUtils::MM_Win95' => '7.38',
16790             'ExtUtils::MY' => '7.38',
16791             'ExtUtils::MakeMaker' => '7.38',
16792             'ExtUtils::MakeMaker::Config'=> '7.38',
16793             'ExtUtils::MakeMaker::Locale'=> '7.38',
16794             'ExtUtils::MakeMaker::version'=> '7.38',
16795             'ExtUtils::MakeMaker::version::regex'=> '7.38',
16796             'ExtUtils::Mkbootstrap' => '7.38',
16797             'ExtUtils::Mksymlists' => '7.38',
16798             'ExtUtils::testlib' => '7.38',
16799             'I18N::Langinfo' => '0.19',
16800             'List::Util' => '1.52',
16801             'List::Util::XS' => '1.52',
16802             'Module::CoreList' => '5.20190920',
16803             'Module::CoreList::Utils'=> '5.20190920',
16804             'Module::Metadata' => '1.000037',
16805             'Scalar::Util' => '1.52',
16806             'Sub::Util' => '1.52',
16807             'Test2' => '1.302168',
16808             'Test2::API' => '1.302168',
16809             'Test2::API::Breakage' => '1.302168',
16810             'Test2::API::Context' => '1.302168',
16811             'Test2::API::Instance' => '1.302168',
16812             'Test2::API::Stack' => '1.302168',
16813             'Test2::Event' => '1.302168',
16814             'Test2::Event::Bail' => '1.302168',
16815             'Test2::Event::Diag' => '1.302168',
16816             'Test2::Event::Encoding'=> '1.302168',
16817             'Test2::Event::Exception'=> '1.302168',
16818             'Test2::Event::Fail' => '1.302168',
16819             'Test2::Event::Generic' => '1.302168',
16820             'Test2::Event::Note' => '1.302168',
16821             'Test2::Event::Ok' => '1.302168',
16822             'Test2::Event::Pass' => '1.302168',
16823             'Test2::Event::Plan' => '1.302168',
16824             'Test2::Event::Skip' => '1.302168',
16825             'Test2::Event::Subtest' => '1.302168',
16826             'Test2::Event::TAP::Version'=> '1.302168',
16827             'Test2::Event::V2' => '1.302168',
16828             'Test2::Event::Waiting' => '1.302168',
16829             'Test2::EventFacet' => '1.302168',
16830             'Test2::EventFacet::About'=> '1.302168',
16831             'Test2::EventFacet::Amnesty'=> '1.302168',
16832             'Test2::EventFacet::Assert'=> '1.302168',
16833             'Test2::EventFacet::Control'=> '1.302168',
16834             'Test2::EventFacet::Error'=> '1.302168',
16835             'Test2::EventFacet::Hub'=> '1.302168',
16836             'Test2::EventFacet::Info'=> '1.302168',
16837             'Test2::EventFacet::Info::Table'=> '1.302168',
16838             'Test2::EventFacet::Meta'=> '1.302168',
16839             'Test2::EventFacet::Parent'=> '1.302168',
16840             'Test2::EventFacet::Plan'=> '1.302168',
16841             'Test2::EventFacet::Render'=> '1.302168',
16842             'Test2::EventFacet::Trace'=> '1.302168',
16843             'Test2::Formatter' => '1.302168',
16844             'Test2::Formatter::TAP' => '1.302168',
16845             'Test2::Hub' => '1.302168',
16846             'Test2::Hub::Interceptor'=> '1.302168',
16847             'Test2::Hub::Interceptor::Terminator'=> '1.302168',
16848             'Test2::Hub::Subtest' => '1.302168',
16849             'Test2::IPC' => '1.302168',
16850             'Test2::IPC::Driver' => '1.302168',
16851             'Test2::IPC::Driver::Files'=> '1.302168',
16852             'Test2::Tools::Tiny' => '1.302168',
16853             'Test2::Util' => '1.302168',
16854             'Test2::Util::ExternalMeta'=> '1.302168',
16855             'Test2::Util::Facets2Legacy'=> '1.302168',
16856             'Test2::Util::HashBase' => '1.302168',
16857             'Test2::Util::Trace' => '1.302168',
16858             'Test::Builder' => '1.302168',
16859             'Test::Builder::Formatter'=> '1.302168',
16860             'Test::Builder::Module' => '1.302168',
16861             'Test::Builder::Tester' => '1.302168',
16862             'Test::Builder::Tester::Color'=> '1.302168',
16863             'Test::Builder::TodoDiag'=> '1.302168',
16864             'Test::More' => '1.302168',
16865             'Test::Simple' => '1.302168',
16866             'Test::Tester' => '1.302168',
16867             'Test::Tester::Capture' => '1.302168',
16868             'Test::Tester::CaptureRunner'=> '1.302168',
16869             'Test::Tester::Delegate'=> '1.302168',
16870             'Test::use::ok' => '1.302168',
16871             'Time::HiRes' => '1.9763',
16872             'XS::APItest' => '1.03',
16873             'ok' => '1.302168',
16874             're' => '0.38',
16875             },
16876             removed => {
16877             }
16878             },
16879             5.031005 => {
16880             delta_from => 5.031004,
16881             changed => {
16882             'B' => '1.77',
16883             'B::Deparse' => '1.50',
16884             'B::Op_private' => '5.031005',
16885             'Config' => '5.031005',
16886             'Devel::PPPort' => '3.54',
16887             'Digest::MD5' => '2.55_01',
16888             'Dumpvalue' => '1.21',
16889             'ExtUtils::CBuilder' => '0.280233',
16890             'Math::BigFloat' => '1.999817_01',
16891             'Math::BigInt' => '1.999817_01',
16892             'Math::BigInt::Calc' => '1.999817_01',
16893             'Math::BigInt::FastCalc'=> '0.5009',
16894             'Math::BigInt::Lib' => '1.999817_01',
16895             'Module::CoreList' => '5.20191020',
16896             'Module::CoreList::Utils'=> '5.20191020',
16897             'Safe' => '2.41',
16898             'Time::HiRes' => '1.9764',
16899             'XS::APItest' => '1.04',
16900             'threads' => '2.23',
16901             },
16902             removed => {
16903             }
16904             },
16905             5.030001 => {
16906             delta_from => 5.030000,
16907             changed => {
16908             'B::Op_private' => '5.030001',
16909             'Config' => '5.030001',
16910             'Module::CoreList' => '5.20191110',
16911             'Module::CoreList::Utils'=> '5.20191110',
16912             },
16913             removed => {
16914             }
16915             },
16916             5.031006 => {
16917             delta_from => 5.031005,
16918             changed => {
16919             'B::Deparse' => '1.51',
16920             'B::Op_private' => '5.031006',
16921             'Compress::Raw::Bzip2' => '2.090',
16922             'Compress::Raw::Zlib' => '2.090',
16923             'Compress::Zlib' => '2.090',
16924             'Config' => '5.031006',
16925             'Devel::PPPort' => '3.55',
16926             'DynaLoader' => '1.46',
16927             'IO::Compress::Adapter::Bzip2'=> '2.090',
16928             'IO::Compress::Adapter::Deflate'=> '2.090',
16929             'IO::Compress::Adapter::Identity'=> '2.090',
16930             'IO::Compress::Base' => '2.090',
16931             'IO::Compress::Base::Common'=> '2.090',
16932             'IO::Compress::Bzip2' => '2.090',
16933             'IO::Compress::Deflate' => '2.090',
16934             'IO::Compress::Gzip' => '2.090',
16935             'IO::Compress::Gzip::Constants'=> '2.090',
16936             'IO::Compress::RawDeflate'=> '2.090',
16937             'IO::Compress::Zip' => '2.090',
16938             'IO::Compress::Zip::Constants'=> '2.090',
16939             'IO::Compress::Zlib::Constants'=> '2.090',
16940             'IO::Compress::Zlib::Extra'=> '2.090',
16941             'IO::Uncompress::Adapter::Bunzip2'=> '2.090',
16942             'IO::Uncompress::Adapter::Identity'=> '2.090',
16943             'IO::Uncompress::Adapter::Inflate'=> '2.090',
16944             'IO::Uncompress::AnyInflate'=> '2.090',
16945             'IO::Uncompress::AnyUncompress'=> '2.090',
16946             'IO::Uncompress::Base' => '2.090',
16947             'IO::Uncompress::Bunzip2'=> '2.090',
16948             'IO::Uncompress::Gunzip'=> '2.090',
16949             'IO::Uncompress::Inflate'=> '2.090',
16950             'IO::Uncompress::RawInflate'=> '2.090',
16951             'IO::Uncompress::Unzip' => '2.090',
16952             'List::Util' => '1.53',
16953             'List::Util::XS' => '1.53',
16954             'Math::BigFloat' => '1.999818',
16955             'Math::BigInt' => '1.999818',
16956             'Math::BigInt::Calc' => '1.999818',
16957             'Math::BigInt::Lib' => '1.999818',
16958             'Module::CoreList' => '5.20191120',
16959             'Module::CoreList::Utils'=> '5.20191120',
16960             'Module::Load::Conditional'=> '0.70',
16961             'POSIX' => '1.90',
16962             'Pod::Simple' => '3.40',
16963             'Pod::Simple::BlackBox' => '3.40',
16964             'Pod::Simple::Checker' => '3.40',
16965             'Pod::Simple::Debug' => '3.40',
16966             'Pod::Simple::DumpAsText'=> '3.40',
16967             'Pod::Simple::DumpAsXML'=> '3.40',
16968             'Pod::Simple::HTML' => '3.40',
16969             'Pod::Simple::HTMLBatch'=> '3.40',
16970             'Pod::Simple::LinkSection'=> '3.40',
16971             'Pod::Simple::Methody' => '3.40',
16972             'Pod::Simple::Progress' => '3.40',
16973             'Pod::Simple::PullParser'=> '3.40',
16974             'Pod::Simple::PullParserEndToken'=> '3.40',
16975             'Pod::Simple::PullParserStartToken'=> '3.40',
16976             'Pod::Simple::PullParserTextToken'=> '3.40',
16977             'Pod::Simple::PullParserToken'=> '3.40',
16978             'Pod::Simple::RTF' => '3.40',
16979             'Pod::Simple::Search' => '3.40',
16980             'Pod::Simple::SimpleTree'=> '3.40',
16981             'Pod::Simple::Text' => '3.40',
16982             'Pod::Simple::TextContent'=> '3.40',
16983             'Pod::Simple::TiedOutFH'=> '3.40',
16984             'Pod::Simple::Transcode'=> '3.40',
16985             'Pod::Simple::TranscodeDumb'=> '3.40',
16986             'Pod::Simple::TranscodeSmart'=> '3.40',
16987             'Pod::Simple::XHTML' => '3.40',
16988             'Pod::Simple::XMLOutStream'=> '3.40',
16989             'Scalar::Util' => '1.53',
16990             'Sub::Util' => '1.53',
16991             'Sys::Syslog' => '0.36',
16992             'Test2' => '1.302169',
16993             'Test2::API' => '1.302169',
16994             'Test2::API::Breakage' => '1.302169',
16995             'Test2::API::Context' => '1.302169',
16996             'Test2::API::Instance' => '1.302169',
16997             'Test2::API::Stack' => '1.302169',
16998             'Test2::Event' => '1.302169',
16999             'Test2::Event::Bail' => '1.302169',
17000             'Test2::Event::Diag' => '1.302169',
17001             'Test2::Event::Encoding'=> '1.302169',
17002             'Test2::Event::Exception'=> '1.302169',
17003             'Test2::Event::Fail' => '1.302169',
17004             'Test2::Event::Generic' => '1.302169',
17005             'Test2::Event::Note' => '1.302169',
17006             'Test2::Event::Ok' => '1.302169',
17007             'Test2::Event::Pass' => '1.302169',
17008             'Test2::Event::Plan' => '1.302169',
17009             'Test2::Event::Skip' => '1.302169',
17010             'Test2::Event::Subtest' => '1.302169',
17011             'Test2::Event::TAP::Version'=> '1.302169',
17012             'Test2::Event::V2' => '1.302169',
17013             'Test2::Event::Waiting' => '1.302169',
17014             'Test2::EventFacet' => '1.302169',
17015             'Test2::EventFacet::About'=> '1.302169',
17016             'Test2::EventFacet::Amnesty'=> '1.302169',
17017             'Test2::EventFacet::Assert'=> '1.302169',
17018             'Test2::EventFacet::Control'=> '1.302169',
17019             'Test2::EventFacet::Error'=> '1.302169',
17020             'Test2::EventFacet::Hub'=> '1.302169',
17021             'Test2::EventFacet::Info'=> '1.302169',
17022             'Test2::EventFacet::Info::Table'=> '1.302169',
17023             'Test2::EventFacet::Meta'=> '1.302169',
17024             'Test2::EventFacet::Parent'=> '1.302169',
17025             'Test2::EventFacet::Plan'=> '1.302169',
17026             'Test2::EventFacet::Render'=> '1.302169',
17027             'Test2::EventFacet::Trace'=> '1.302169',
17028             'Test2::Formatter' => '1.302169',
17029             'Test2::Formatter::TAP' => '1.302169',
17030             'Test2::Hub' => '1.302169',
17031             'Test2::Hub::Interceptor'=> '1.302169',
17032             'Test2::Hub::Interceptor::Terminator'=> '1.302169',
17033             'Test2::Hub::Subtest' => '1.302169',
17034             'Test2::IPC' => '1.302169',
17035             'Test2::IPC::Driver' => '1.302169',
17036             'Test2::IPC::Driver::Files'=> '1.302169',
17037             'Test2::Tools::Tiny' => '1.302169',
17038             'Test2::Util' => '1.302169',
17039             'Test2::Util::ExternalMeta'=> '1.302169',
17040             'Test2::Util::Facets2Legacy'=> '1.302169',
17041             'Test2::Util::HashBase' => '1.302169',
17042             'Test2::Util::Trace' => '1.302169',
17043             'Test::Builder' => '1.302169',
17044             'Test::Builder::Formatter'=> '1.302169',
17045             'Test::Builder::Module' => '1.302169',
17046             'Test::Builder::Tester' => '1.302169',
17047             'Test::Builder::Tester::Color'=> '1.302169',
17048             'Test::Builder::TodoDiag'=> '1.302169',
17049             'Test::More' => '1.302169',
17050             'Test::Simple' => '1.302169',
17051             'Test::Tester' => '1.302169',
17052             'Test::Tester::Capture' => '1.302169',
17053             'Test::Tester::CaptureRunner'=> '1.302169',
17054             'Test::Tester::Delegate'=> '1.302169',
17055             'Test::use::ok' => '1.302169',
17056             'Tie::StdHandle' => '4.6',
17057             'Unicode::UCD' => '0.74',
17058             'Win32API::File' => '0.1203_01',
17059             'feature' => '1.56',
17060             'mro' => '1.23',
17061             'ok' => '1.302169',
17062             'perlfaq' => '5.20191102',
17063             },
17064             removed => {
17065             }
17066             },
17067             5.031007 => {
17068             delta_from => 5.031006,
17069             changed => {
17070             'B' => '1.78',
17071             'B::Deparse' => '1.52',
17072             'B::Op_private' => '5.031007',
17073             'Compress::Raw::Bzip2' => '2.093',
17074             'Compress::Raw::Zlib' => '2.093',
17075             'Compress::Zlib' => '2.093',
17076             'Config' => '5.031007',
17077             'Devel::PPPort' => '3.56',
17078             'English' => '1.11',
17079             'ExtUtils::Command' => '7.42',
17080             'ExtUtils::Command::MM' => '7.42',
17081             'ExtUtils::Liblist' => '7.42',
17082             'ExtUtils::Liblist::Kid'=> '7.42',
17083             'ExtUtils::MM' => '7.42',
17084             'ExtUtils::MM_AIX' => '7.42',
17085             'ExtUtils::MM_Any' => '7.42',
17086             'ExtUtils::MM_BeOS' => '7.42',
17087             'ExtUtils::MM_Cygwin' => '7.42',
17088             'ExtUtils::MM_DOS' => '7.42',
17089             'ExtUtils::MM_Darwin' => '7.42',
17090             'ExtUtils::MM_MacOS' => '7.42',
17091             'ExtUtils::MM_NW5' => '7.42',
17092             'ExtUtils::MM_OS2' => '7.42',
17093             'ExtUtils::MM_QNX' => '7.42',
17094             'ExtUtils::MM_UWIN' => '7.42',
17095             'ExtUtils::MM_Unix' => '7.42',
17096             'ExtUtils::MM_VMS' => '7.42',
17097             'ExtUtils::MM_VOS' => '7.42',
17098             'ExtUtils::MM_Win32' => '7.42',
17099             'ExtUtils::MM_Win95' => '7.42',
17100             'ExtUtils::MY' => '7.42',
17101             'ExtUtils::MakeMaker' => '7.42',
17102             'ExtUtils::MakeMaker::Config'=> '7.42',
17103             'ExtUtils::MakeMaker::Locale'=> '7.42',
17104             'ExtUtils::MakeMaker::version'=> '7.42',
17105             'ExtUtils::MakeMaker::version::regex'=> '7.42',
17106             'ExtUtils::Mkbootstrap' => '7.42',
17107             'ExtUtils::Mksymlists' => '7.42',
17108             'ExtUtils::testlib' => '7.42',
17109             'File::stat' => '1.09',
17110             'Filter::Simple' => '0.96',
17111             'IO::Compress::Adapter::Bzip2'=> '2.093',
17112             'IO::Compress::Adapter::Deflate'=> '2.093',
17113             'IO::Compress::Adapter::Identity'=> '2.093',
17114             'IO::Compress::Base' => '2.093',
17115             'IO::Compress::Base::Common'=> '2.093',
17116             'IO::Compress::Bzip2' => '2.093',
17117             'IO::Compress::Deflate' => '2.093',
17118             'IO::Compress::Gzip' => '2.093',
17119             'IO::Compress::Gzip::Constants'=> '2.093',
17120             'IO::Compress::RawDeflate'=> '2.093',
17121             'IO::Compress::Zip' => '2.093',
17122             'IO::Compress::Zip::Constants'=> '2.093',
17123             'IO::Compress::Zlib::Constants'=> '2.093',
17124             'IO::Compress::Zlib::Extra'=> '2.093',
17125             'IO::Uncompress::Adapter::Bunzip2'=> '2.093',
17126             'IO::Uncompress::Adapter::Identity'=> '2.093',
17127             'IO::Uncompress::Adapter::Inflate'=> '2.093',
17128             'IO::Uncompress::AnyInflate'=> '2.093',
17129             'IO::Uncompress::AnyUncompress'=> '2.093',
17130             'IO::Uncompress::Base' => '2.093',
17131             'IO::Uncompress::Bunzip2'=> '2.093',
17132             'IO::Uncompress::Gunzip'=> '2.093',
17133             'IO::Uncompress::Inflate'=> '2.093',
17134             'IO::Uncompress::RawInflate'=> '2.093',
17135             'IO::Uncompress::Unzip' => '2.093',
17136             'Module::CoreList' => '5.20191220',
17137             'Module::CoreList::Utils'=> '5.20191220',
17138             'Net::Ping' => '2.72',
17139             'Opcode' => '1.45',
17140             'Storable' => '3.18',
17141             'Test2' => '1.302170',
17142             'Test2::API' => '1.302170',
17143             'Test2::API::Breakage' => '1.302170',
17144             'Test2::API::Context' => '1.302170',
17145             'Test2::API::Instance' => '1.302170',
17146             'Test2::API::Stack' => '1.302170',
17147             'Test2::Event' => '1.302170',
17148             'Test2::Event::Bail' => '1.302170',
17149             'Test2::Event::Diag' => '1.302170',
17150             'Test2::Event::Encoding'=> '1.302170',
17151             'Test2::Event::Exception'=> '1.302170',
17152             'Test2::Event::Fail' => '1.302170',
17153             'Test2::Event::Generic' => '1.302170',
17154             'Test2::Event::Note' => '1.302170',
17155             'Test2::Event::Ok' => '1.302170',
17156             'Test2::Event::Pass' => '1.302170',
17157             'Test2::Event::Plan' => '1.302170',
17158             'Test2::Event::Skip' => '1.302170',
17159             'Test2::Event::Subtest' => '1.302170',
17160             'Test2::Event::TAP::Version'=> '1.302170',
17161             'Test2::Event::V2' => '1.302170',
17162             'Test2::Event::Waiting' => '1.302170',
17163             'Test2::EventFacet' => '1.302170',
17164             'Test2::EventFacet::About'=> '1.302170',
17165             'Test2::EventFacet::Amnesty'=> '1.302170',
17166             'Test2::EventFacet::Assert'=> '1.302170',
17167             'Test2::EventFacet::Control'=> '1.302170',
17168             'Test2::EventFacet::Error'=> '1.302170',
17169             'Test2::EventFacet::Hub'=> '1.302170',
17170             'Test2::EventFacet::Info'=> '1.302170',
17171             'Test2::EventFacet::Info::Table'=> '1.302170',
17172             'Test2::EventFacet::Meta'=> '1.302170',
17173             'Test2::EventFacet::Parent'=> '1.302170',
17174             'Test2::EventFacet::Plan'=> '1.302170',
17175             'Test2::EventFacet::Render'=> '1.302170',
17176             'Test2::EventFacet::Trace'=> '1.302170',
17177             'Test2::Formatter' => '1.302170',
17178             'Test2::Formatter::TAP' => '1.302170',
17179             'Test2::Hub' => '1.302170',
17180             'Test2::Hub::Interceptor'=> '1.302170',
17181             'Test2::Hub::Interceptor::Terminator'=> '1.302170',
17182             'Test2::Hub::Subtest' => '1.302170',
17183             'Test2::IPC' => '1.302170',
17184             'Test2::IPC::Driver' => '1.302170',
17185             'Test2::IPC::Driver::Files'=> '1.302170',
17186             'Test2::Tools::Tiny' => '1.302170',
17187             'Test2::Util' => '1.302170',
17188             'Test2::Util::ExternalMeta'=> '1.302170',
17189             'Test2::Util::Facets2Legacy'=> '1.302170',
17190             'Test2::Util::HashBase' => '1.302170',
17191             'Test2::Util::Trace' => '1.302170',
17192             'Test::Builder' => '1.302170',
17193             'Test::Builder::Formatter'=> '1.302170',
17194             'Test::Builder::Module' => '1.302170',
17195             'Test::Builder::Tester' => '1.302170',
17196             'Test::Builder::Tester::Color'=> '1.302170',
17197             'Test::Builder::TodoDiag'=> '1.302170',
17198             'Test::More' => '1.302170',
17199             'Test::Simple' => '1.302170',
17200             'Test::Tester' => '1.302170',
17201             'Test::Tester::Capture' => '1.302170',
17202             'Test::Tester::CaptureRunner'=> '1.302170',
17203             'Test::Tester::Delegate'=> '1.302170',
17204             'Test::use::ok' => '1.302170',
17205             'Tie::Hash::NamedCapture'=> '0.13',
17206             'VMS::Stdio' => '2.45',
17207             'XS::APItest' => '1.05',
17208             'feature' => '1.57',
17209             'ok' => '1.302170',
17210             'warnings' => '1.46',
17211             },
17212             removed => {
17213             }
17214             },
17215             5.031008 => {
17216             delta_from => 5.031007,
17217             changed => {
17218             'B::Op_private' => '5.031008',
17219             'Config' => '5.031008',
17220             'DB_File' => '1.853',
17221             'Encode' => '3.02',
17222             'ExtUtils::Command' => '7.44',
17223             'ExtUtils::Command::MM' => '7.44',
17224             'ExtUtils::Liblist' => '7.44',
17225             'ExtUtils::Liblist::Kid'=> '7.44',
17226             'ExtUtils::MM' => '7.44',
17227             'ExtUtils::MM_AIX' => '7.44',
17228             'ExtUtils::MM_Any' => '7.44',
17229             'ExtUtils::MM_BeOS' => '7.44',
17230             'ExtUtils::MM_Cygwin' => '7.44',
17231             'ExtUtils::MM_DOS' => '7.44',
17232             'ExtUtils::MM_Darwin' => '7.44',
17233             'ExtUtils::MM_MacOS' => '7.44',
17234             'ExtUtils::MM_NW5' => '7.44',
17235             'ExtUtils::MM_OS2' => '7.44',
17236             'ExtUtils::MM_QNX' => '7.44',
17237             'ExtUtils::MM_UWIN' => '7.44',
17238             'ExtUtils::MM_Unix' => '7.44',
17239             'ExtUtils::MM_VMS' => '7.44',
17240             'ExtUtils::MM_VOS' => '7.44',
17241             'ExtUtils::MM_Win32' => '7.44',
17242             'ExtUtils::MM_Win95' => '7.44',
17243             'ExtUtils::MY' => '7.44',
17244             'ExtUtils::MakeMaker' => '7.44',
17245             'ExtUtils::MakeMaker::Config'=> '7.44',
17246             'ExtUtils::MakeMaker::Locale'=> '7.44',
17247             'ExtUtils::MakeMaker::version'=> '7.44',
17248             'ExtUtils::MakeMaker::version::regex'=> '7.44',
17249             'ExtUtils::Mkbootstrap' => '7.44',
17250             'ExtUtils::Mksymlists' => '7.44',
17251             'ExtUtils::testlib' => '7.44',
17252             'Fatal' => '2.32',
17253             'Hash::Util' => '0.23',
17254             'IO' => '1.42',
17255             'IO::Handle' => '1.42',
17256             'IO::Socket' => '1.42',
17257             'Module::CoreList' => '5.20200120',
17258             'Module::CoreList::Utils'=> '5.20200120',
17259             'POSIX' => '1.91',
17260             'Pod::Man' => '4.14',
17261             'Pod::ParseLink' => '4.14',
17262             'Pod::Text' => '4.14',
17263             'Pod::Text::Color' => '4.14',
17264             'Pod::Text::Overstrike' => '4.14',
17265             'Pod::Text::Termcap' => '4.14',
17266             'Term::ANSIColor' => '5.01',
17267             'Test2' => '1.302171',
17268             'Test2::API' => '1.302171',
17269             'Test2::API::Breakage' => '1.302171',
17270             'Test2::API::Context' => '1.302171',
17271             'Test2::API::Instance' => '1.302171',
17272             'Test2::API::Stack' => '1.302171',
17273             'Test2::Event' => '1.302171',
17274             'Test2::Event::Bail' => '1.302171',
17275             'Test2::Event::Diag' => '1.302171',
17276             'Test2::Event::Encoding'=> '1.302171',
17277             'Test2::Event::Exception'=> '1.302171',
17278             'Test2::Event::Fail' => '1.302171',
17279             'Test2::Event::Generic' => '1.302171',
17280             'Test2::Event::Note' => '1.302171',
17281             'Test2::Event::Ok' => '1.302171',
17282             'Test2::Event::Pass' => '1.302171',
17283             'Test2::Event::Plan' => '1.302171',
17284             'Test2::Event::Skip' => '1.302171',
17285             'Test2::Event::Subtest' => '1.302171',
17286             'Test2::Event::TAP::Version'=> '1.302171',
17287             'Test2::Event::V2' => '1.302171',
17288             'Test2::Event::Waiting' => '1.302171',
17289             'Test2::EventFacet' => '1.302171',
17290             'Test2::EventFacet::About'=> '1.302171',
17291             'Test2::EventFacet::Amnesty'=> '1.302171',
17292             'Test2::EventFacet::Assert'=> '1.302171',
17293             'Test2::EventFacet::Control'=> '1.302171',
17294             'Test2::EventFacet::Error'=> '1.302171',
17295             'Test2::EventFacet::Hub'=> '1.302171',
17296             'Test2::EventFacet::Info'=> '1.302171',
17297             'Test2::EventFacet::Info::Table'=> '1.302171',
17298             'Test2::EventFacet::Meta'=> '1.302171',
17299             'Test2::EventFacet::Parent'=> '1.302171',
17300             'Test2::EventFacet::Plan'=> '1.302171',
17301             'Test2::EventFacet::Render'=> '1.302171',
17302             'Test2::EventFacet::Trace'=> '1.302171',
17303             'Test2::Formatter' => '1.302171',
17304             'Test2::Formatter::TAP' => '1.302171',
17305             'Test2::Hub' => '1.302171',
17306             'Test2::Hub::Interceptor'=> '1.302171',
17307             'Test2::Hub::Interceptor::Terminator'=> '1.302171',
17308             'Test2::Hub::Subtest' => '1.302171',
17309             'Test2::IPC' => '1.302171',
17310             'Test2::IPC::Driver' => '1.302171',
17311             'Test2::IPC::Driver::Files'=> '1.302171',
17312             'Test2::Tools::Tiny' => '1.302171',
17313             'Test2::Util' => '1.302171',
17314             'Test2::Util::ExternalMeta'=> '1.302171',
17315             'Test2::Util::Facets2Legacy'=> '1.302171',
17316             'Test2::Util::HashBase' => '1.302171',
17317             'Test2::Util::Trace' => '1.302171',
17318             'Test::Builder' => '1.302171',
17319             'Test::Builder::Formatter'=> '1.302171',
17320             'Test::Builder::Module' => '1.302171',
17321             'Test::Builder::Tester' => '1.302171',
17322             'Test::Builder::Tester::Color'=> '1.302171',
17323             'Test::Builder::TodoDiag'=> '1.302171',
17324             'Test::More' => '1.302171',
17325             'Test::Simple' => '1.302171',
17326             'Test::Tester' => '1.302171',
17327             'Test::Tester::Capture' => '1.302171',
17328             'Test::Tester::CaptureRunner'=> '1.302171',
17329             'Test::Tester::Delegate'=> '1.302171',
17330             'Test::use::ok' => '1.302171',
17331             'XS::APItest' => '1.06',
17332             'autodie' => '2.32',
17333             'autodie::Scope::Guard' => '2.32',
17334             'autodie::Scope::GuardStack'=> '2.32',
17335             'autodie::Util' => '2.32',
17336             'autodie::exception' => '2.32',
17337             'autodie::exception::system'=> '2.32',
17338             'autodie::hints' => '2.32',
17339             'autodie::skip' => '2.32',
17340             'ok' => '1.302171',
17341             },
17342             removed => {
17343             }
17344             },
17345             5.031009 => {
17346             delta_from => 5.031008,
17347             changed => {
17348             'Archive::Tar' => '2.36',
17349             'Archive::Tar::Constant'=> '2.36',
17350             'Archive::Tar::File' => '2.36',
17351             'B' => '1.80',
17352             'B::Op_private' => '5.031009',
17353             'Config' => '5.031009',
17354             'Devel::PPPort' => '3.57',
17355             'Encode' => '3.03',
17356             'ExtUtils::CBuilder' => '0.280234',
17357             'ExtUtils::CBuilder::Base'=> '0.280234',
17358             'ExtUtils::CBuilder::Platform::Unix'=> '0.280234',
17359             'ExtUtils::CBuilder::Platform::VMS'=> '0.280234',
17360             'ExtUtils::CBuilder::Platform::Windows'=> '0.280234',
17361             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280234',
17362             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280234',
17363             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280234',
17364             'ExtUtils::CBuilder::Platform::aix'=> '0.280234',
17365             'ExtUtils::CBuilder::Platform::android'=> '0.280234',
17366             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280234',
17367             'ExtUtils::CBuilder::Platform::darwin'=> '0.280234',
17368             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280234',
17369             'ExtUtils::CBuilder::Platform::os2'=> '0.280234',
17370             'IO' => '1.43',
17371             'IO::Select' => '1.42',
17372             'IO::Socket' => '1.43',
17373             'Module::CoreList' => '5.20200220',
17374             'Module::CoreList::Utils'=> '5.20200220',
17375             'POSIX' => '1.92',
17376             'Pod::Html' => '1.25',
17377             'Storable' => '3.19',
17378             'Tie::File' => '1.06',
17379             'Unicode' => '13.0.0',
17380             'XS::APItest' => '1.07',
17381             '_charnames' => '1.46',
17382             'charnames' => '1.46',
17383             'diagnostics' => '1.37',
17384             'feature' => '1.58',
17385             'parent' => '0.238',
17386             'perlfaq' => '5.20200125',
17387             'threads' => '2.24',
17388             },
17389             removed => {
17390             }
17391             },
17392             5.030002 => {
17393             delta_from => 5.030001,
17394             changed => {
17395             'B::Op_private' => '5.030002',
17396             'Compress::Raw::Bzip2' => '2.089',
17397             'Config' => '5.030002',
17398             'Module::CoreList' => '5.20200314',
17399             'Module::CoreList::Utils'=> '5.20200314',
17400             },
17401             removed => {
17402             }
17403             },
17404             5.031010 => {
17405             delta_from => 5.031009,
17406             changed => {
17407             'B::Op_private' => '5.031010',
17408             'Config' => '5.03101',
17409             },
17410             removed => {
17411             }
17412             },
17413             5.031011 => {
17414             delta_from => 5.031010,
17415             changed => {
17416             'B::Deparse' => '1.53',
17417             'B::Op_private' => '5.031011',
17418             'Config' => '5.031011',
17419             'DynaLoader' => '1.47',
17420             'Encode' => '3.04',
17421             'IPC::Open2' => '1.05',
17422             'IPC::Open3' => '1.21',
17423             'Module::CoreList' => '5.20200428',
17424             'Module::CoreList::Utils'=> '5.20200428',
17425             'Opcode' => '1.47',
17426             'POSIX' => '1.93',
17427             'PerlIO' => '1.11',
17428             'Storable' => '3.20',
17429             'Test2' => '1.302175',
17430             'Test2::API' => '1.302175',
17431             'Test2::API::Breakage' => '1.302175',
17432             'Test2::API::Context' => '1.302175',
17433             'Test2::API::Instance' => '1.302175',
17434             'Test2::API::Stack' => '1.302175',
17435             'Test2::Event' => '1.302175',
17436             'Test2::Event::Bail' => '1.302175',
17437             'Test2::Event::Diag' => '1.302175',
17438             'Test2::Event::Encoding'=> '1.302175',
17439             'Test2::Event::Exception'=> '1.302175',
17440             'Test2::Event::Fail' => '1.302175',
17441             'Test2::Event::Generic' => '1.302175',
17442             'Test2::Event::Note' => '1.302175',
17443             'Test2::Event::Ok' => '1.302175',
17444             'Test2::Event::Pass' => '1.302175',
17445             'Test2::Event::Plan' => '1.302175',
17446             'Test2::Event::Skip' => '1.302175',
17447             'Test2::Event::Subtest' => '1.302175',
17448             'Test2::Event::TAP::Version'=> '1.302175',
17449             'Test2::Event::V2' => '1.302175',
17450             'Test2::Event::Waiting' => '1.302175',
17451             'Test2::EventFacet' => '1.302175',
17452             'Test2::EventFacet::About'=> '1.302175',
17453             'Test2::EventFacet::Amnesty'=> '1.302175',
17454             'Test2::EventFacet::Assert'=> '1.302175',
17455             'Test2::EventFacet::Control'=> '1.302175',
17456             'Test2::EventFacet::Error'=> '1.302175',
17457             'Test2::EventFacet::Hub'=> '1.302175',
17458             'Test2::EventFacet::Info'=> '1.302175',
17459             'Test2::EventFacet::Info::Table'=> '1.302175',
17460             'Test2::EventFacet::Meta'=> '1.302175',
17461             'Test2::EventFacet::Parent'=> '1.302175',
17462             'Test2::EventFacet::Plan'=> '1.302175',
17463             'Test2::EventFacet::Render'=> '1.302175',
17464             'Test2::EventFacet::Trace'=> '1.302175',
17465             'Test2::Formatter' => '1.302175',
17466             'Test2::Formatter::TAP' => '1.302175',
17467             'Test2::Hub' => '1.302175',
17468             'Test2::Hub::Interceptor'=> '1.302175',
17469             'Test2::Hub::Interceptor::Terminator'=> '1.302175',
17470             'Test2::Hub::Subtest' => '1.302175',
17471             'Test2::IPC' => '1.302175',
17472             'Test2::IPC::Driver' => '1.302175',
17473             'Test2::IPC::Driver::Files'=> '1.302175',
17474             'Test2::Tools::Tiny' => '1.302175',
17475             'Test2::Util' => '1.302175',
17476             'Test2::Util::ExternalMeta'=> '1.302175',
17477             'Test2::Util::Facets2Legacy'=> '1.302175',
17478             'Test2::Util::HashBase' => '1.302175',
17479             'Test2::Util::Trace' => '1.302175',
17480             'Test::Builder' => '1.302175',
17481             'Test::Builder::Formatter'=> '1.302175',
17482             'Test::Builder::Module' => '1.302175',
17483             'Test::Builder::Tester' => '1.302175',
17484             'Test::Builder::Tester::Color'=> '1.302175',
17485             'Test::Builder::TodoDiag'=> '1.302175',
17486             'Test::More' => '1.302175',
17487             'Test::Simple' => '1.302175',
17488             'Test::Tester' => '1.302175',
17489             'Test::Tester::Capture' => '1.302175',
17490             'Test::Tester::CaptureRunner'=> '1.302175',
17491             'Test::Tester::Delegate'=> '1.302175',
17492             'Test::use::ok' => '1.302175',
17493             'Time::Piece' => '1.3401',
17494             'Time::Seconds' => '1.3401',
17495             'Unicode::UCD' => '0.75',
17496             'XS::APItest' => '1.09',
17497             '_charnames' => '1.47',
17498             'charnames' => '1.47',
17499             'ok' => '1.302175',
17500             'open' => '1.12',
17501             're' => '0.39',
17502             'warnings' => '1.47',
17503             },
17504             removed => {
17505             }
17506             },
17507             5.028003 => {
17508             delta_from => 5.028002,
17509             changed => {
17510             'B::Op_private' => '5.028003',
17511             'Config' => '5.028003',
17512             'Module::CoreList' => '5.20200601_28',
17513             'Module::CoreList::Utils'=> '5.20200601_28',
17514             },
17515             removed => {
17516             }
17517             },
17518             5.030003 => {
17519             delta_from => 5.030002,
17520             changed => {
17521             'B::Op_private' => '5.030003',
17522             'Config' => '5.030003',
17523             'Module::CoreList' => '5.20200601_30',
17524             'Module::CoreList::Utils'=> '5.20200601_30',
17525             },
17526             removed => {
17527             }
17528             },
17529             5.032000 => {
17530             delta_from => 5.031011,
17531             changed => {
17532             'B::Deparse' => '1.54',
17533             'B::Op_private' => '5.032000',
17534             'Benchmark' => '1.23',
17535             'Config' => '5.032',
17536             'Encode' => '3.06',
17537             'Encode::Guess' => '2.08',
17538             'File::Glob' => '1.33',
17539             'List::Util' => '1.55',
17540             'List::Util::XS' => '1.55',
17541             'Module::CoreList' => '5.20200620',
17542             'Module::CoreList::Utils'=> '5.20200620',
17543             'POSIX' => '1.94',
17544             'Scalar::Util' => '1.55',
17545             'Storable' => '3.21',
17546             'Sub::Util' => '1.55',
17547             'Thread::Queue' => '3.14',
17548             'Tie::Scalar' => '1.05',
17549             '_charnames' => '1.48',
17550             'charnames' => '1.48',
17551             'encoding' => '3.00',
17552             'perlfaq' => '5.20200523',
17553             're' => '0.40',
17554             'threads' => '2.25',
17555             },
17556             removed => {
17557             }
17558             },
17559             5.033000 => {
17560             delta_from => 5.032000,
17561             changed => {
17562             'B::Op_private' => '5.033000',
17563             'Config' => '5.033',
17564             'Module::CoreList' => '5.20200717',
17565             'Module::CoreList::Utils'=> '5.20200717',
17566             'feature' => '1.59',
17567             },
17568             removed => {
17569             }
17570             },
17571             5.033001 => {
17572             delta_from => 5.033,
17573             changed => {
17574             'B' => '1.81',
17575             'B::Deparse' => '1.55',
17576             'B::Op_private' => '5.033001',
17577             'Config' => '5.033001',
17578             'Data::Dumper' => '2.175',
17579             'Devel::PPPort' => '3.60',
17580             'Devel::Peek' => '1.29',
17581             'DynaLoader' => '1.48',
17582             'Errno' => '1.31',
17583             'Exporter' => '5.75',
17584             'Exporter::Heavy' => '5.75',
17585             'ExtUtils::Miniperl' => '1.10',
17586             'ExtUtils::PL2Bat' => '0.002',
17587             'ExtUtils::ParseXS' => '3.41',
17588             'ExtUtils::ParseXS::Constants'=> '3.41',
17589             'ExtUtils::ParseXS::CountLines'=> '3.41',
17590             'ExtUtils::ParseXS::Eval'=> '3.41',
17591             'ExtUtils::ParseXS::Utilities'=> '3.41',
17592             'Fcntl' => '1.14',
17593             'File::Path' => '2.17',
17594             'Hash::Util' => '0.24',
17595             'Hash::Util::FieldHash' => '1.21',
17596             'IO' => '1.44',
17597             'IO::Socket' => '1.44',
17598             'IO::Socket::UNIX' => '1.42',
17599             'IPC::Msg' => '2.08',
17600             'IPC::Semaphore' => '2.08',
17601             'IPC::SharedMem' => '2.08',
17602             'IPC::SysV' => '2.08',
17603             'JSON::PP' => '4.05',
17604             'JSON::PP::Boolean' => '4.05',
17605             'Math::Complex' => '1.5902',
17606             'Module::CoreList' => '5.20200820',
17607             'Module::CoreList::Utils'=> '5.20200820',
17608             'Net::Ping' => '2.73_01',
17609             'POSIX' => '1.95',
17610             'PerlIO::mmap' => '0.017',
17611             'Pod::Usage' => '1.70',
17612             'Safe' => '2.42',
17613             'Socket' => '2.030',
17614             'Storable' => '3.22',
17615             'Time::HiRes' => '1.9765',
17616             'Unicode::Normalize' => '1.28',
17617             'XS::APItest' => '1.11',
17618             'XS::Typemap' => '0.18',
17619             'feature' => '1.60',
17620             'mro' => '1.24',
17621             'strict' => '1.12',
17622             'threads' => '2.26',
17623             'threads::shared' => '1.62',
17624             'warnings' => '1.48',
17625             },
17626             removed => {
17627             'Moped::Msg' => 1,
17628             }
17629             },
17630             5.033002 => {
17631             delta_from => 5.033001,
17632             changed => {
17633             'Archive::Tar' => '2.38',
17634             'Archive::Tar::Constant'=> '2.38',
17635             'Archive::Tar::File' => '2.38',
17636             'B::Op_private' => '5.033002',
17637             'Compress::Raw::Bzip2' => '2.096',
17638             'Compress::Raw::Zlib' => '2.096',
17639             'Compress::Zlib' => '2.096',
17640             'Config' => '5.033002',
17641             'DB_File' => '1.854',
17642             'Env' => '1.05',
17643             'Errno' => '1.32',
17644             'ExtUtils::Install' => '2.18',
17645             'ExtUtils::Installed' => '2.18',
17646             'ExtUtils::Packlist' => '2.18',
17647             'Filter::Util::Call' => '1.60',
17648             'IO::Compress::Adapter::Bzip2'=> '2.096',
17649             'IO::Compress::Adapter::Deflate'=> '2.096',
17650             'IO::Compress::Adapter::Identity'=> '2.096',
17651             'IO::Compress::Base' => '2.096',
17652             'IO::Compress::Base::Common'=> '2.096',
17653             'IO::Compress::Bzip2' => '2.096',
17654             'IO::Compress::Deflate' => '2.096',
17655             'IO::Compress::Gzip' => '2.096',
17656             'IO::Compress::Gzip::Constants'=> '2.096',
17657             'IO::Compress::RawDeflate'=> '2.096',
17658             'IO::Compress::Zip' => '2.096',
17659             'IO::Compress::Zip::Constants'=> '2.096',
17660             'IO::Compress::Zlib::Constants'=> '2.096',
17661             'IO::Compress::Zlib::Extra'=> '2.096',
17662             'IO::Socket::IP' => '0.41',
17663             'IO::Uncompress::Adapter::Bunzip2'=> '2.096',
17664             'IO::Uncompress::Adapter::Identity'=> '2.096',
17665             'IO::Uncompress::Adapter::Inflate'=> '2.096',
17666             'IO::Uncompress::AnyInflate'=> '2.096',
17667             'IO::Uncompress::AnyUncompress'=> '2.096',
17668             'IO::Uncompress::Base' => '2.096',
17669             'IO::Uncompress::Bunzip2'=> '2.096',
17670             'IO::Uncompress::Gunzip'=> '2.096',
17671             'IO::Uncompress::Inflate'=> '2.096',
17672             'IO::Uncompress::RawInflate'=> '2.096',
17673             'IO::Uncompress::Unzip' => '2.096',
17674             'IO::Zlib' => '1.11',
17675             'Module::CoreList' => '5.20200920',
17676             'Module::CoreList::Utils'=> '5.20200920',
17677             'Module::Load::Conditional'=> '0.74',
17678             'Opcode' => '1.48',
17679             'PerlIO::scalar' => '0.31',
17680             'Safe' => '2.43',
17681             'Test2' => '1.302181',
17682             'Test2::API' => '1.302181',
17683             'Test2::API::Breakage' => '1.302181',
17684             'Test2::API::Context' => '1.302181',
17685             'Test2::API::Instance' => '1.302181',
17686             'Test2::API::InterceptResult'=> '1.302181',
17687             'Test2::API::InterceptResult::Event'=> '1.302181',
17688             'Test2::API::InterceptResult::Facet'=> '1.302181',
17689             'Test2::API::InterceptResult::Hub'=> '1.302181',
17690             'Test2::API::InterceptResult::Squasher'=> '1.302181',
17691             'Test2::API::Stack' => '1.302181',
17692             'Test2::Event' => '1.302181',
17693             'Test2::Event::Bail' => '1.302181',
17694             'Test2::Event::Diag' => '1.302181',
17695             'Test2::Event::Encoding'=> '1.302181',
17696             'Test2::Event::Exception'=> '1.302181',
17697             'Test2::Event::Fail' => '1.302181',
17698             'Test2::Event::Generic' => '1.302181',
17699             'Test2::Event::Note' => '1.302181',
17700             'Test2::Event::Ok' => '1.302181',
17701             'Test2::Event::Pass' => '1.302181',
17702             'Test2::Event::Plan' => '1.302181',
17703             'Test2::Event::Skip' => '1.302181',
17704             'Test2::Event::Subtest' => '1.302181',
17705             'Test2::Event::TAP::Version'=> '1.302181',
17706             'Test2::Event::V2' => '1.302181',
17707             'Test2::Event::Waiting' => '1.302181',
17708             'Test2::EventFacet' => '1.302181',
17709             'Test2::EventFacet::About'=> '1.302181',
17710             'Test2::EventFacet::Amnesty'=> '1.302181',
17711             'Test2::EventFacet::Assert'=> '1.302181',
17712             'Test2::EventFacet::Control'=> '1.302181',
17713             'Test2::EventFacet::Error'=> '1.302181',
17714             'Test2::EventFacet::Hub'=> '1.302181',
17715             'Test2::EventFacet::Info'=> '1.302181',
17716             'Test2::EventFacet::Info::Table'=> '1.302181',
17717             'Test2::EventFacet::Meta'=> '1.302181',
17718             'Test2::EventFacet::Parent'=> '1.302181',
17719             'Test2::EventFacet::Plan'=> '1.302181',
17720             'Test2::EventFacet::Render'=> '1.302181',
17721             'Test2::EventFacet::Trace'=> '1.302181',
17722             'Test2::Formatter' => '1.302181',
17723             'Test2::Formatter::TAP' => '1.302181',
17724             'Test2::Hub' => '1.302181',
17725             'Test2::Hub::Interceptor'=> '1.302181',
17726             'Test2::Hub::Interceptor::Terminator'=> '1.302181',
17727             'Test2::Hub::Subtest' => '1.302181',
17728             'Test2::IPC' => '1.302181',
17729             'Test2::IPC::Driver' => '1.302181',
17730             'Test2::IPC::Driver::Files'=> '1.302181',
17731             'Test2::Tools::Tiny' => '1.302181',
17732             'Test2::Util' => '1.302181',
17733             'Test2::Util::ExternalMeta'=> '1.302181',
17734             'Test2::Util::Facets2Legacy'=> '1.302181',
17735             'Test2::Util::HashBase' => '1.302181',
17736             'Test2::Util::Trace' => '1.302181',
17737             'Test::Builder' => '1.302181',
17738             'Test::Builder::Formatter'=> '1.302181',
17739             'Test::Builder::Module' => '1.302181',
17740             'Test::Builder::Tester' => '1.302181',
17741             'Test::Builder::Tester::Color'=> '1.302181',
17742             'Test::Builder::TodoDiag'=> '1.302181',
17743             'Test::More' => '1.302181',
17744             'Test::Simple' => '1.302181',
17745             'Test::Tester' => '1.302181',
17746             'Test::Tester::Capture' => '1.302181',
17747             'Test::Tester::CaptureRunner'=> '1.302181',
17748             'Test::Tester::Delegate'=> '1.302181',
17749             'Test::use::ok' => '1.302181',
17750             'ok' => '1.302181',
17751             'overload' => '1.32',
17752             },
17753             removed => {
17754             }
17755             },
17756             5.033003 => {
17757             delta_from => 5.033002,
17758             changed => {
17759             'Amiga::ARexx' => '0.05',
17760             'App::Cpan' => '1.676',
17761             'B::Op_private' => '5.033003',
17762             'CPAN' => '2.28',
17763             'CPAN::FTP' => '5.5013',
17764             'CPAN::FirstTime' => '5.5315',
17765             'Config' => '5.033003',
17766             'DB_File' => '1.855',
17767             'Data::Dumper' => '2.176',
17768             'Devel::PPPort' => '3.62',
17769             'Devel::Peek' => '1.30',
17770             'Digest' => '1.19',
17771             'Digest::MD5' => '2.58',
17772             'Digest::base' => '1.19',
17773             'Digest::file' => '1.19',
17774             'Encode' => '3.07',
17775             'Encode::GSM0338' => '2.08',
17776             'Errno' => '1.33',
17777             'Exporter' => '5.76',
17778             'Exporter::Heavy' => '5.76',
17779             'ExtUtils::Command' => '7.48',
17780             'ExtUtils::Command::MM' => '7.48',
17781             'ExtUtils::Liblist' => '7.48',
17782             'ExtUtils::Liblist::Kid'=> '7.48',
17783             'ExtUtils::MM' => '7.48',
17784             'ExtUtils::MM_AIX' => '7.48',
17785             'ExtUtils::MM_Any' => '7.48',
17786             'ExtUtils::MM_BeOS' => '7.48',
17787             'ExtUtils::MM_Cygwin' => '7.48',
17788             'ExtUtils::MM_DOS' => '7.48',
17789             'ExtUtils::MM_Darwin' => '7.48',
17790             'ExtUtils::MM_MacOS' => '7.48',
17791             'ExtUtils::MM_NW5' => '7.48',
17792             'ExtUtils::MM_OS2' => '7.48',
17793             'ExtUtils::MM_OS390' => '7.48',
17794             'ExtUtils::MM_QNX' => '7.48',
17795             'ExtUtils::MM_UWIN' => '7.48',
17796             'ExtUtils::MM_Unix' => '7.48',
17797             'ExtUtils::MM_VMS' => '7.48',
17798             'ExtUtils::MM_VOS' => '7.48',
17799             'ExtUtils::MM_Win32' => '7.48',
17800             'ExtUtils::MM_Win95' => '7.48',
17801             'ExtUtils::MY' => '7.48',
17802             'ExtUtils::MakeMaker' => '7.48',
17803             'ExtUtils::MakeMaker::Config'=> '7.48',
17804             'ExtUtils::MakeMaker::Locale'=> '7.48',
17805             'ExtUtils::MakeMaker::version'=> '7.48',
17806             'ExtUtils::MakeMaker::version::regex'=> '7.48',
17807             'ExtUtils::Mkbootstrap' => '7.48',
17808             'ExtUtils::Mksymlists' => '7.48',
17809             'ExtUtils::PL2Bat' => '0.003',
17810             'ExtUtils::testlib' => '7.48',
17811             'File::Temp' => '0.2311',
17812             'FindBin' => '1.52',
17813             'Getopt::Long' => '2.52',
17814             'Getopt::Std' => '1.13',
17815             'I18N::LangTags' => '0.45',
17816             'MIME::Base64' => '3.16',
17817             'MIME::QuotedPrint' => '3.16',
17818             'Module::CoreList' => '5.20201020',
17819             'Module::CoreList::Utils'=> '5.20201020',
17820             'Module::Load' => '0.36',
17821             'Pod::Checker' => '1.74',
17822             'Pod::Simple' => '3.41',
17823             'Pod::Simple::BlackBox' => '3.41',
17824             'Pod::Simple::Checker' => '3.41',
17825             'Pod::Simple::Debug' => '3.41',
17826             'Pod::Simple::DumpAsText'=> '3.41',
17827             'Pod::Simple::DumpAsXML'=> '3.41',
17828             'Pod::Simple::HTML' => '3.41',
17829             'Pod::Simple::HTMLBatch'=> '3.41',
17830             'Pod::Simple::LinkSection'=> '3.41',
17831             'Pod::Simple::Methody' => '3.41',
17832             'Pod::Simple::Progress' => '3.41',
17833             'Pod::Simple::PullParser'=> '3.41',
17834             'Pod::Simple::PullParserEndToken'=> '3.41',
17835             'Pod::Simple::PullParserStartToken'=> '3.41',
17836             'Pod::Simple::PullParserTextToken'=> '3.41',
17837             'Pod::Simple::PullParserToken'=> '3.41',
17838             'Pod::Simple::RTF' => '3.41',
17839             'Pod::Simple::Search' => '3.41',
17840             'Pod::Simple::SimpleTree'=> '3.41',
17841             'Pod::Simple::Text' => '3.41',
17842             'Pod::Simple::TextContent'=> '3.41',
17843             'Pod::Simple::TiedOutFH'=> '3.41',
17844             'Pod::Simple::Transcode'=> '3.41',
17845             'Pod::Simple::TranscodeDumb'=> '3.41',
17846             'Pod::Simple::TranscodeSmart'=> '3.41',
17847             'Pod::Simple::XHTML' => '3.41',
17848             'Pod::Simple::XMLOutStream'=> '3.41',
17849             'Pod::Usage' => '2.01',
17850             'Storable' => '3.23',
17851             'Symbol' => '1.09',
17852             'Test2' => '1.302182',
17853             'Test2::API' => '1.302182',
17854             'Test2::API::Breakage' => '1.302182',
17855             'Test2::API::Context' => '1.302182',
17856             'Test2::API::Instance' => '1.302182',
17857             'Test2::API::InterceptResult'=> '1.302182',
17858             'Test2::API::InterceptResult::Event'=> '1.302182',
17859             'Test2::API::InterceptResult::Facet'=> '1.302182',
17860             'Test2::API::InterceptResult::Hub'=> '1.302182',
17861             'Test2::API::InterceptResult::Squasher'=> '1.302182',
17862             'Test2::API::Stack' => '1.302182',
17863             'Test2::Event' => '1.302182',
17864             'Test2::Event::Bail' => '1.302182',
17865             'Test2::Event::Diag' => '1.302182',
17866             'Test2::Event::Encoding'=> '1.302182',
17867             'Test2::Event::Exception'=> '1.302182',
17868             'Test2::Event::Fail' => '1.302182',
17869             'Test2::Event::Generic' => '1.302182',
17870             'Test2::Event::Note' => '1.302182',
17871             'Test2::Event::Ok' => '1.302182',
17872             'Test2::Event::Pass' => '1.302182',
17873             'Test2::Event::Plan' => '1.302182',
17874             'Test2::Event::Skip' => '1.302182',
17875             'Test2::Event::Subtest' => '1.302182',
17876             'Test2::Event::TAP::Version'=> '1.302182',
17877             'Test2::Event::V2' => '1.302182',
17878             'Test2::Event::Waiting' => '1.302182',
17879             'Test2::EventFacet' => '1.302182',
17880             'Test2::EventFacet::About'=> '1.302182',
17881             'Test2::EventFacet::Amnesty'=> '1.302182',
17882             'Test2::EventFacet::Assert'=> '1.302182',
17883             'Test2::EventFacet::Control'=> '1.302182',
17884             'Test2::EventFacet::Error'=> '1.302182',
17885             'Test2::EventFacet::Hub'=> '1.302182',
17886             'Test2::EventFacet::Info'=> '1.302182',
17887             'Test2::EventFacet::Info::Table'=> '1.302182',
17888             'Test2::EventFacet::Meta'=> '1.302182',
17889             'Test2::EventFacet::Parent'=> '1.302182',
17890             'Test2::EventFacet::Plan'=> '1.302182',
17891             'Test2::EventFacet::Render'=> '1.302182',
17892             'Test2::EventFacet::Trace'=> '1.302182',
17893             'Test2::Formatter' => '1.302182',
17894             'Test2::Formatter::TAP' => '1.302182',
17895             'Test2::Hub' => '1.302182',
17896             'Test2::Hub::Interceptor'=> '1.302182',
17897             'Test2::Hub::Interceptor::Terminator'=> '1.302182',
17898             'Test2::Hub::Subtest' => '1.302182',
17899             'Test2::IPC' => '1.302182',
17900             'Test2::IPC::Driver' => '1.302182',
17901             'Test2::IPC::Driver::Files'=> '1.302182',
17902             'Test2::Tools::Tiny' => '1.302182',
17903             'Test2::Util' => '1.302182',
17904             'Test2::Util::ExternalMeta'=> '1.302182',
17905             'Test2::Util::Facets2Legacy'=> '1.302182',
17906             'Test2::Util::HashBase' => '1.302182',
17907             'Test2::Util::Trace' => '1.302182',
17908             'Test::Builder' => '1.302182',
17909             'Test::Builder::Formatter'=> '1.302182',
17910             'Test::Builder::Module' => '1.302182',
17911             'Test::Builder::Tester' => '1.302182',
17912             'Test::Builder::Tester::Color'=> '1.302182',
17913             'Test::Builder::TodoDiag'=> '1.302182',
17914             'Test::More' => '1.302182',
17915             'Test::Simple' => '1.302182',
17916             'Test::Tester' => '1.302182',
17917             'Test::Tester::Capture' => '1.302182',
17918             'Test::Tester::CaptureRunner'=> '1.302182',
17919             'Test::Tester::Delegate'=> '1.302182',
17920             'Test::use::ok' => '1.302182',
17921             'Tie::RefHash' => '1.40',
17922             'Time::Local' => '1.30',
17923             'Unicode::Collate' => '1.29',
17924             'Unicode::Collate::CJK::Big5'=> '1.29',
17925             'Unicode::Collate::CJK::GB2312'=> '1.29',
17926             'Unicode::Collate::CJK::JISX0208'=> '1.29',
17927             'Unicode::Collate::CJK::Korean'=> '1.29',
17928             'Unicode::Collate::CJK::Pinyin'=> '1.29',
17929             'Unicode::Collate::CJK::Stroke'=> '1.29',
17930             'Unicode::Collate::CJK::Zhuyin'=> '1.29',
17931             'Unicode::Collate::Locale'=> '1.29',
17932             'Win32' => '0.54',
17933             'XS::APItest' => '1.12',
17934             'bytes' => '1.08',
17935             'experimental' => '0.022',
17936             'feature' => '1.61',
17937             'if' => '0.0609',
17938             'locale' => '1.10',
17939             'mro' => '1.25',
17940             'ok' => '1.302182',
17941             'overload' => '1.33',
17942             're' => '0.41',
17943             'subs' => '1.04',
17944             'utf8' => '1.24',
17945             'version' => '0.9928',
17946             'version::regex' => '0.9928',
17947             },
17948             removed => {
17949             }
17950             },
17951             5.033004 => {
17952             delta_from => 5.033003,
17953             changed => {
17954             'B' => '1.82',
17955             'B::Op_private' => '5.033004',
17956             'Config' => '5.033004',
17957             'Cwd' => '3.79',
17958             'ExtUtils::CBuilder' => '0.280235',
17959             'ExtUtils::CBuilder::Base'=> '0.280235',
17960             'ExtUtils::CBuilder::Platform::Unix'=> '0.280235',
17961             'ExtUtils::CBuilder::Platform::VMS'=> '0.280235',
17962             'ExtUtils::CBuilder::Platform::Windows'=> '0.280235',
17963             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280235',
17964             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280235',
17965             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280235',
17966             'ExtUtils::CBuilder::Platform::aix'=> '0.280235',
17967             'ExtUtils::CBuilder::Platform::android'=> '0.280235',
17968             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280235',
17969             'ExtUtils::CBuilder::Platform::darwin'=> '0.280235',
17970             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280235',
17971             'ExtUtils::CBuilder::Platform::os2'=> '0.280235',
17972             'ExtUtils::Command' => '7.56',
17973             'ExtUtils::Command::MM' => '7.56',
17974             'ExtUtils::Liblist' => '7.56',
17975             'ExtUtils::Liblist::Kid'=> '7.56',
17976             'ExtUtils::MM' => '7.56',
17977             'ExtUtils::MM_AIX' => '7.56',
17978             'ExtUtils::MM_Any' => '7.56',
17979             'ExtUtils::MM_BeOS' => '7.56',
17980             'ExtUtils::MM_Cygwin' => '7.56',
17981             'ExtUtils::MM_DOS' => '7.56',
17982             'ExtUtils::MM_Darwin' => '7.56',
17983             'ExtUtils::MM_MacOS' => '7.56',
17984             'ExtUtils::MM_NW5' => '7.56',
17985             'ExtUtils::MM_OS2' => '7.56',
17986             'ExtUtils::MM_OS390' => '7.56',
17987             'ExtUtils::MM_QNX' => '7.56',
17988             'ExtUtils::MM_UWIN' => '7.56',
17989             'ExtUtils::MM_Unix' => '7.56',
17990             'ExtUtils::MM_VMS' => '7.56',
17991             'ExtUtils::MM_VOS' => '7.56',
17992             'ExtUtils::MM_Win32' => '7.56',
17993             'ExtUtils::MM_Win95' => '7.56',
17994             'ExtUtils::MY' => '7.56',
17995             'ExtUtils::MakeMaker' => '7.56',
17996             'ExtUtils::MakeMaker::Config'=> '7.56',
17997             'ExtUtils::MakeMaker::Locale'=> '7.56',
17998             'ExtUtils::MakeMaker::version'=> '7.56',
17999             'ExtUtils::MakeMaker::version::regex'=> '7.56',
18000             'ExtUtils::Mkbootstrap' => '7.56',
18001             'ExtUtils::Mksymlists' => '7.56',
18002             'ExtUtils::testlib' => '7.56',
18003             'File::Fetch' => '1.00',
18004             'File::Path' => '2.18',
18005             'File::Spec' => '3.79',
18006             'File::Spec::AmigaOS' => '3.79',
18007             'File::Spec::Cygwin' => '3.79',
18008             'File::Spec::Epoc' => '3.79',
18009             'File::Spec::Functions' => '3.79',
18010             'File::Spec::Mac' => '3.79',
18011             'File::Spec::OS2' => '3.79',
18012             'File::Spec::Unix' => '3.79',
18013             'File::Spec::VMS' => '3.79',
18014             'IPC::Msg' => '2.09',
18015             'IPC::Semaphore' => '2.09',
18016             'IPC::SharedMem' => '2.09',
18017             'IPC::SysV' => '2.09',
18018             'Module::CoreList' => '5.20201120',
18019             'Module::CoreList::Utils'=> '5.20201120',
18020             'Net::Ping' => '2.74',
18021             'Pod::Html' => '1.26',
18022             'Pod::Simple' => '3.42',
18023             'Pod::Simple::BlackBox' => '3.42',
18024             'Pod::Simple::Checker' => '3.42',
18025             'Pod::Simple::Debug' => '3.42',
18026             'Pod::Simple::DumpAsText'=> '3.42',
18027             'Pod::Simple::DumpAsXML'=> '3.42',
18028             'Pod::Simple::HTML' => '3.42',
18029             'Pod::Simple::HTMLBatch'=> '3.42',
18030             'Pod::Simple::LinkSection'=> '3.42',
18031             'Pod::Simple::Methody' => '3.42',
18032             'Pod::Simple::Progress' => '3.42',
18033             'Pod::Simple::PullParser'=> '3.42',
18034             'Pod::Simple::PullParserEndToken'=> '3.42',
18035             'Pod::Simple::PullParserStartToken'=> '3.42',
18036             'Pod::Simple::PullParserTextToken'=> '3.42',
18037             'Pod::Simple::PullParserToken'=> '3.42',
18038             'Pod::Simple::RTF' => '3.42',
18039             'Pod::Simple::Search' => '3.42',
18040             'Pod::Simple::SimpleTree'=> '3.42',
18041             'Pod::Simple::Text' => '3.42',
18042             'Pod::Simple::TextContent'=> '3.42',
18043             'Pod::Simple::TiedOutFH'=> '3.42',
18044             'Pod::Simple::Transcode'=> '3.42',
18045             'Pod::Simple::TranscodeDumb'=> '3.42',
18046             'Pod::Simple::TranscodeSmart'=> '3.42',
18047             'Pod::Simple::XHTML' => '3.42',
18048             'Pod::Simple::XMLOutStream'=> '3.42',
18049             'Test2' => '1.302183',
18050             'Test2::API' => '1.302183',
18051             'Test2::API::Breakage' => '1.302183',
18052             'Test2::API::Context' => '1.302183',
18053             'Test2::API::Instance' => '1.302183',
18054             'Test2::API::InterceptResult'=> '1.302183',
18055             'Test2::API::InterceptResult::Event'=> '1.302183',
18056             'Test2::API::InterceptResult::Facet'=> '1.302183',
18057             'Test2::API::InterceptResult::Hub'=> '1.302183',
18058             'Test2::API::InterceptResult::Squasher'=> '1.302183',
18059             'Test2::API::Stack' => '1.302183',
18060             'Test2::Event' => '1.302183',
18061             'Test2::Event::Bail' => '1.302183',
18062             'Test2::Event::Diag' => '1.302183',
18063             'Test2::Event::Encoding'=> '1.302183',
18064             'Test2::Event::Exception'=> '1.302183',
18065             'Test2::Event::Fail' => '1.302183',
18066             'Test2::Event::Generic' => '1.302183',
18067             'Test2::Event::Note' => '1.302183',
18068             'Test2::Event::Ok' => '1.302183',
18069             'Test2::Event::Pass' => '1.302183',
18070             'Test2::Event::Plan' => '1.302183',
18071             'Test2::Event::Skip' => '1.302183',
18072             'Test2::Event::Subtest' => '1.302183',
18073             'Test2::Event::TAP::Version'=> '1.302183',
18074             'Test2::Event::V2' => '1.302183',
18075             'Test2::Event::Waiting' => '1.302183',
18076             'Test2::EventFacet' => '1.302183',
18077             'Test2::EventFacet::About'=> '1.302183',
18078             'Test2::EventFacet::Amnesty'=> '1.302183',
18079             'Test2::EventFacet::Assert'=> '1.302183',
18080             'Test2::EventFacet::Control'=> '1.302183',
18081             'Test2::EventFacet::Error'=> '1.302183',
18082             'Test2::EventFacet::Hub'=> '1.302183',
18083             'Test2::EventFacet::Info'=> '1.302183',
18084             'Test2::EventFacet::Info::Table'=> '1.302183',
18085             'Test2::EventFacet::Meta'=> '1.302183',
18086             'Test2::EventFacet::Parent'=> '1.302183',
18087             'Test2::EventFacet::Plan'=> '1.302183',
18088             'Test2::EventFacet::Render'=> '1.302183',
18089             'Test2::EventFacet::Trace'=> '1.302183',
18090             'Test2::Formatter' => '1.302183',
18091             'Test2::Formatter::TAP' => '1.302183',
18092             'Test2::Hub' => '1.302183',
18093             'Test2::Hub::Interceptor'=> '1.302183',
18094             'Test2::Hub::Interceptor::Terminator'=> '1.302183',
18095             'Test2::Hub::Subtest' => '1.302183',
18096             'Test2::IPC' => '1.302183',
18097             'Test2::IPC::Driver' => '1.302183',
18098             'Test2::IPC::Driver::Files'=> '1.302183',
18099             'Test2::Tools::Tiny' => '1.302183',
18100             'Test2::Util' => '1.302183',
18101             'Test2::Util::ExternalMeta'=> '1.302183',
18102             'Test2::Util::Facets2Legacy'=> '1.302183',
18103             'Test2::Util::HashBase' => '1.302183',
18104             'Test2::Util::Trace' => '1.302183',
18105             'Test::Builder' => '1.302183',
18106             'Test::Builder::Formatter'=> '1.302183',
18107             'Test::Builder::Module' => '1.302183',
18108             'Test::Builder::Tester' => '1.302183',
18109             'Test::Builder::Tester::Color'=> '1.302183',
18110             'Test::Builder::TodoDiag'=> '1.302183',
18111             'Test::More' => '1.302183',
18112             'Test::Simple' => '1.302183',
18113             'Test::Tester' => '1.302183',
18114             'Test::Tester::Capture' => '1.302183',
18115             'Test::Tester::CaptureRunner'=> '1.302183',
18116             'Test::Tester::Delegate'=> '1.302183',
18117             'Test::use::ok' => '1.302183',
18118             'XS::APItest' => '1.13',
18119             'ok' => '1.302183',
18120             'perlfaq' => '5.20201107',
18121             },
18122             removed => {
18123             }
18124             },
18125             5.033005 => {
18126             delta_from => 5.033004,
18127             changed => {
18128             'App::Prove' => '3.43',
18129             'App::Prove::State' => '3.43',
18130             'App::Prove::State::Result'=> '3.43',
18131             'App::Prove::State::Result::Test'=> '3.43',
18132             'B::Op_private' => '5.033005',
18133             'Carp' => '1.51',
18134             'Carp::Heavy' => '1.51',
18135             'Config' => '5.033005',
18136             'Config::Perl::V' => '0.33',
18137             'Cwd' => '3.80',
18138             'DynaLoader' => '1.49',
18139             'Encode' => '3.08',
18140             'Encode::GSM0338' => '2.09',
18141             'ExtUtils::Install' => '2.20',
18142             'ExtUtils::Installed' => '2.20',
18143             'ExtUtils::Packlist' => '2.20',
18144             'ExtUtils::ParseXS' => '3.42',
18145             'ExtUtils::ParseXS::Constants'=> '3.42',
18146             'ExtUtils::ParseXS::CountLines'=> '3.42',
18147             'ExtUtils::ParseXS::Eval'=> '3.42',
18148             'ExtUtils::ParseXS::Utilities'=> '3.42',
18149             'File::Copy' => '2.35',
18150             'File::Find' => '1.38',
18151             'File::Spec' => '3.80',
18152             'File::Spec::AmigaOS' => '3.80',
18153             'File::Spec::Cygwin' => '3.80',
18154             'File::Spec::Epoc' => '3.80',
18155             'File::Spec::Functions' => '3.80',
18156             'File::Spec::Mac' => '3.80',
18157             'File::Spec::OS2' => '3.80',
18158             'File::Spec::Unix' => '3.80',
18159             'File::Spec::VMS' => '3.80',
18160             'File::Spec::Win32' => '3.80',
18161             'Module::CoreList' => '5.20201220',
18162             'Module::CoreList::Utils'=> '5.20201220',
18163             'Net::Cmd' => '3.12',
18164             'Net::Config' => '3.12',
18165             'Net::Domain' => '3.12',
18166             'Net::FTP' => '3.12',
18167             'Net::FTP::A' => '3.12',
18168             'Net::FTP::E' => '3.12',
18169             'Net::FTP::I' => '3.12',
18170             'Net::FTP::L' => '3.12',
18171             'Net::FTP::dataconn' => '3.12',
18172             'Net::NNTP' => '3.12',
18173             'Net::Netrc' => '3.12',
18174             'Net::POP3' => '3.12',
18175             'Net::SMTP' => '3.12',
18176             'Net::Time' => '3.12',
18177             'ODBM_File' => '1.17',
18178             'Opcode' => '1.49',
18179             'POSIX' => '1.96',
18180             'PerlIO::via::QuotedPrint'=> '0.09',
18181             'TAP::Base' => '3.43',
18182             'TAP::Formatter::Base' => '3.43',
18183             'TAP::Formatter::Color' => '3.43',
18184             'TAP::Formatter::Console'=> '3.43',
18185             'TAP::Formatter::Console::ParallelSession'=> '3.43',
18186             'TAP::Formatter::Console::Session'=> '3.43',
18187             'TAP::Formatter::File' => '3.43',
18188             'TAP::Formatter::File::Session'=> '3.43',
18189             'TAP::Formatter::Session'=> '3.43',
18190             'TAP::Harness' => '3.43',
18191             'TAP::Harness::Env' => '3.43',
18192             'TAP::Object' => '3.43',
18193             'TAP::Parser' => '3.43',
18194             'TAP::Parser::Aggregator'=> '3.43',
18195             'TAP::Parser::Grammar' => '3.43',
18196             'TAP::Parser::Iterator' => '3.43',
18197             'TAP::Parser::Iterator::Array'=> '3.43',
18198             'TAP::Parser::Iterator::Process'=> '3.43',
18199             'TAP::Parser::Iterator::Stream'=> '3.43',
18200             'TAP::Parser::IteratorFactory'=> '3.43',
18201             'TAP::Parser::Multiplexer'=> '3.43',
18202             'TAP::Parser::Result' => '3.43',
18203             'TAP::Parser::Result::Bailout'=> '3.43',
18204             'TAP::Parser::Result::Comment'=> '3.43',
18205             'TAP::Parser::Result::Plan'=> '3.43',
18206             'TAP::Parser::Result::Pragma'=> '3.43',
18207             'TAP::Parser::Result::Test'=> '3.43',
18208             'TAP::Parser::Result::Unknown'=> '3.43',
18209             'TAP::Parser::Result::Version'=> '3.43',
18210             'TAP::Parser::Result::YAML'=> '3.43',
18211             'TAP::Parser::ResultFactory'=> '3.43',
18212             'TAP::Parser::Scheduler'=> '3.43',
18213             'TAP::Parser::Scheduler::Job'=> '3.43',
18214             'TAP::Parser::Scheduler::Spinner'=> '3.43',
18215             'TAP::Parser::Source' => '3.43',
18216             'TAP::Parser::SourceHandler'=> '3.43',
18217             'TAP::Parser::SourceHandler::Executable'=> '3.43',
18218             'TAP::Parser::SourceHandler::File'=> '3.43',
18219             'TAP::Parser::SourceHandler::Handle'=> '3.43',
18220             'TAP::Parser::SourceHandler::Perl'=> '3.43',
18221             'TAP::Parser::SourceHandler::RawTAP'=> '3.43',
18222             'TAP::Parser::YAMLish::Reader'=> '3.43',
18223             'TAP::Parser::YAMLish::Writer'=> '3.43',
18224             'Test::Harness' => '3.43',
18225             'Text::Balanced' => '2.04',
18226             'Time::HiRes' => '1.9766',
18227             'XS::APItest' => '1.14',
18228             'warnings' => '1.49',
18229             },
18230             removed => {
18231             }
18232             },
18233             5.033006 => {
18234             delta_from => 5.033005,
18235             changed => {
18236             'B::Op_private' => '5.033006',
18237             'Carp' => '1.52',
18238             'Carp::Heavy' => '1.52',
18239             'Compress::Raw::Bzip2' => '2.100',
18240             'Compress::Raw::Zlib' => '2.100',
18241             'Compress::Zlib' => '2.100',
18242             'Config' => '5.033006',
18243             'DynaLoader' => '1.50',
18244             'ExtUtils::Command' => '7.58',
18245             'ExtUtils::Command::MM' => '7.58',
18246             'ExtUtils::Liblist' => '7.58',
18247             'ExtUtils::Liblist::Kid'=> '7.58',
18248             'ExtUtils::MM' => '7.58',
18249             'ExtUtils::MM_AIX' => '7.58',
18250             'ExtUtils::MM_Any' => '7.58',
18251             'ExtUtils::MM_BeOS' => '7.58',
18252             'ExtUtils::MM_Cygwin' => '7.58',
18253             'ExtUtils::MM_DOS' => '7.58',
18254             'ExtUtils::MM_Darwin' => '7.58',
18255             'ExtUtils::MM_MacOS' => '7.58',
18256             'ExtUtils::MM_NW5' => '7.58',
18257             'ExtUtils::MM_OS2' => '7.58',
18258             'ExtUtils::MM_OS390' => '7.58',
18259             'ExtUtils::MM_QNX' => '7.58',
18260             'ExtUtils::MM_UWIN' => '7.58',
18261             'ExtUtils::MM_Unix' => '7.58',
18262             'ExtUtils::MM_VMS' => '7.58',
18263             'ExtUtils::MM_VOS' => '7.58',
18264             'ExtUtils::MM_Win32' => '7.58',
18265             'ExtUtils::MM_Win95' => '7.58',
18266             'ExtUtils::MY' => '7.58',
18267             'ExtUtils::MakeMaker' => '7.58',
18268             'ExtUtils::MakeMaker::Config'=> '7.58',
18269             'ExtUtils::MakeMaker::Locale'=> '7.58',
18270             'ExtUtils::MakeMaker::version'=> '7.58',
18271             'ExtUtils::MakeMaker::version::regex'=> '7.58',
18272             'ExtUtils::Manifest' => '1.73',
18273             'ExtUtils::Mkbootstrap' => '7.58',
18274             'ExtUtils::Mksymlists' => '7.58',
18275             'ExtUtils::testlib' => '7.58',
18276             'GDBM_File' => '1.19',
18277             'IO' => '1.45',
18278             'IO::Compress::Adapter::Bzip2'=> '2.100',
18279             'IO::Compress::Adapter::Deflate'=> '2.100',
18280             'IO::Compress::Adapter::Identity'=> '2.100',
18281             'IO::Compress::Base' => '2.100',
18282             'IO::Compress::Base::Common'=> '2.100',
18283             'IO::Compress::Bzip2' => '2.100',
18284             'IO::Compress::Deflate' => '2.100',
18285             'IO::Compress::Gzip' => '2.100',
18286             'IO::Compress::Gzip::Constants'=> '2.100',
18287             'IO::Compress::RawDeflate'=> '2.100',
18288             'IO::Compress::Zip' => '2.100',
18289             'IO::Compress::Zip::Constants'=> '2.100',
18290             'IO::Compress::Zlib::Constants'=> '2.100',
18291             'IO::Compress::Zlib::Extra'=> '2.100',
18292             'IO::Dir' => '1.45',
18293             'IO::File' => '1.45',
18294             'IO::Handle' => '1.45',
18295             'IO::Pipe' => '1.45',
18296             'IO::Poll' => '1.45',
18297             'IO::Seekable' => '1.45',
18298             'IO::Select' => '1.45',
18299             'IO::Socket' => '1.45',
18300             'IO::Socket::INET' => '1.45',
18301             'IO::Socket::UNIX' => '1.45',
18302             'IO::Uncompress::Adapter::Bunzip2'=> '2.100',
18303             'IO::Uncompress::Adapter::Identity'=> '2.100',
18304             'IO::Uncompress::Adapter::Inflate'=> '2.100',
18305             'IO::Uncompress::AnyInflate'=> '2.100',
18306             'IO::Uncompress::AnyUncompress'=> '2.100',
18307             'IO::Uncompress::Base' => '2.100',
18308             'IO::Uncompress::Bunzip2'=> '2.100',
18309             'IO::Uncompress::Gunzip'=> '2.100',
18310             'IO::Uncompress::Inflate'=> '2.100',
18311             'IO::Uncompress::RawInflate'=> '2.100',
18312             'IO::Uncompress::Unzip' => '2.100',
18313             'Module::CoreList' => '5.20210120',
18314             'Module::CoreList::Utils'=> '5.20210120',
18315             'Net::Cmd' => '3.13',
18316             'Net::Config' => '3.13',
18317             'Net::Domain' => '3.13',
18318             'Net::FTP' => '3.13',
18319             'Net::FTP::A' => '3.13',
18320             'Net::FTP::E' => '3.13',
18321             'Net::FTP::I' => '3.13',
18322             'Net::FTP::L' => '3.13',
18323             'Net::FTP::dataconn' => '3.13',
18324             'Net::NNTP' => '3.13',
18325             'Net::Netrc' => '3.13',
18326             'Net::POP3' => '3.13',
18327             'Net::SMTP' => '3.13',
18328             'Net::Time' => '3.13',
18329             'POSIX' => '1.97',
18330             'Socket' => '2.031',
18331             'XS::APItest' => '1.15',
18332             'feature' => '1.62',
18333             'warnings' => '1.50',
18334             },
18335             removed => {
18336             }
18337             },
18338             5.032001 => {
18339             delta_from => 5.032000,
18340             changed => {
18341             'B::Op_private' => '5.032001',
18342             'Config' => '5.032001',
18343             'Data::Dumper' => '2.174_01',
18344             'DynaLoader' => '1.47_01',
18345             'ExtUtils::Liblist::Kid'=> '7.44_01',
18346             'Module::CoreList' => '5.20210123',
18347             'Module::CoreList::Utils'=> '5.20210123',
18348             'Opcode' => '1.48',
18349             'Safe' => '2.41_01',
18350             'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
18351             },
18352             removed => {
18353             }
18354             },
18355             5.033007 => {
18356             delta_from => 5.033006,
18357             changed => {
18358             'B::Deparse' => '1.56',
18359             'B::Op_private' => '5.033007',
18360             'Config' => '5.033007',
18361             'ExtUtils::CBuilder' => '0.280236',
18362             'ExtUtils::CBuilder::Base'=> '0.280236',
18363             'ExtUtils::CBuilder::Platform::Unix'=> '0.280236',
18364             'ExtUtils::CBuilder::Platform::VMS'=> '0.280236',
18365             'ExtUtils::CBuilder::Platform::Windows'=> '0.280236',
18366             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280236',
18367             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280236',
18368             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280236',
18369             'ExtUtils::CBuilder::Platform::aix'=> '0.280236',
18370             'ExtUtils::CBuilder::Platform::android'=> '0.280236',
18371             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280236',
18372             'ExtUtils::CBuilder::Platform::darwin'=> '0.280236',
18373             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280236',
18374             'ExtUtils::CBuilder::Platform::os2'=> '0.280236',
18375             'ExtUtils::Command' => '7.60',
18376             'ExtUtils::Command::MM' => '7.60',
18377             'ExtUtils::Liblist' => '7.60',
18378             'ExtUtils::Liblist::Kid'=> '7.60',
18379             'ExtUtils::MM' => '7.60',
18380             'ExtUtils::MM_AIX' => '7.60',
18381             'ExtUtils::MM_Any' => '7.60',
18382             'ExtUtils::MM_BeOS' => '7.60',
18383             'ExtUtils::MM_Cygwin' => '7.60',
18384             'ExtUtils::MM_DOS' => '7.60',
18385             'ExtUtils::MM_Darwin' => '7.60',
18386             'ExtUtils::MM_MacOS' => '7.60',
18387             'ExtUtils::MM_NW5' => '7.60',
18388             'ExtUtils::MM_OS2' => '7.60',
18389             'ExtUtils::MM_OS390' => '7.60',
18390             'ExtUtils::MM_QNX' => '7.60',
18391             'ExtUtils::MM_UWIN' => '7.60',
18392             'ExtUtils::MM_Unix' => '7.60',
18393             'ExtUtils::MM_VMS' => '7.60',
18394             'ExtUtils::MM_VOS' => '7.60',
18395             'ExtUtils::MM_Win32' => '7.60',
18396             'ExtUtils::MM_Win95' => '7.60',
18397             'ExtUtils::MY' => '7.60',
18398             'ExtUtils::MakeMaker' => '7.60',
18399             'ExtUtils::MakeMaker::Config'=> '7.60',
18400             'ExtUtils::MakeMaker::Locale'=> '7.60',
18401             'ExtUtils::MakeMaker::version'=> '7.60',
18402             'ExtUtils::MakeMaker::version::regex'=> '7.60',
18403             'ExtUtils::Mkbootstrap' => '7.60',
18404             'ExtUtils::Mksymlists' => '7.60',
18405             'ExtUtils::PL2Bat' => '0.004',
18406             'ExtUtils::testlib' => '7.60',
18407             'Fatal' => '2.34',
18408             'File::Find' => '1.39',
18409             'Hash::Util' => '0.25',
18410             'IO' => '1.46',
18411             'IO::Dir' => '1.46',
18412             'IO::File' => '1.46',
18413             'IO::Handle' => '1.46',
18414             'IO::Pipe' => '1.46',
18415             'IO::Poll' => '1.46',
18416             'IO::Seekable' => '1.46',
18417             'IO::Select' => '1.46',
18418             'IO::Socket' => '1.46',
18419             'IO::Socket::INET' => '1.46',
18420             'IO::Socket::UNIX' => '1.46',
18421             'JSON::PP' => '4.06',
18422             'JSON::PP::Boolean' => '4.06',
18423             'Module::CoreList' => '5.20210220',
18424             'Module::CoreList::Utils'=> '5.20210220',
18425             'Opcode' => '1.50',
18426             'PerlIO::encoding' => '0.30',
18427             'Time::HiRes' => '1.9767',
18428             'autodie' => '2.34',
18429             'autodie::Scope::Guard' => '2.34',
18430             'autodie::Scope::GuardStack'=> '2.34',
18431             'autodie::Util' => '2.34',
18432             'autodie::exception' => '2.34',
18433             'autodie::exception::system'=> '2.34',
18434             'autodie::hints' => '2.34',
18435             'autodie::skip' => '2.34',
18436             'feature' => '1.63',
18437             'mro' => '1.25_001',
18438             'warnings' => '1.51',
18439             },
18440             removed => {
18441             }
18442             },
18443             5.033008 => {
18444             delta_from => 5.033007,
18445             changed => {
18446             'B::Op_private' => '5.033008',
18447             'Compress::Raw::Bzip2' => '2.101',
18448             'Compress::Raw::Zlib' => '2.101',
18449             'Compress::Zlib' => '2.102',
18450             'Config' => '5.033008',
18451             'Data::Dumper' => '2.177',
18452             'IO::Compress::Adapter::Bzip2'=> '2.102',
18453             'IO::Compress::Adapter::Deflate'=> '2.102',
18454             'IO::Compress::Adapter::Identity'=> '2.102',
18455             'IO::Compress::Base' => '2.102',
18456             'IO::Compress::Base::Common'=> '2.102',
18457             'IO::Compress::Bzip2' => '2.102',
18458             'IO::Compress::Deflate' => '2.102',
18459             'IO::Compress::Gzip' => '2.102',
18460             'IO::Compress::Gzip::Constants'=> '2.102',
18461             'IO::Compress::RawDeflate'=> '2.102',
18462             'IO::Compress::Zip' => '2.102',
18463             'IO::Compress::Zip::Constants'=> '2.102',
18464             'IO::Compress::Zlib::Constants'=> '2.102',
18465             'IO::Compress::Zlib::Extra'=> '2.102',
18466             'IO::Uncompress::Adapter::Bunzip2'=> '2.102',
18467             'IO::Uncompress::Adapter::Identity'=> '2.102',
18468             'IO::Uncompress::Adapter::Inflate'=> '2.102',
18469             'IO::Uncompress::AnyInflate'=> '2.102',
18470             'IO::Uncompress::AnyUncompress'=> '2.102',
18471             'IO::Uncompress::Base' => '2.102',
18472             'IO::Uncompress::Bunzip2'=> '2.102',
18473             'IO::Uncompress::Gunzip'=> '2.102',
18474             'IO::Uncompress::Inflate'=> '2.102',
18475             'IO::Uncompress::RawInflate'=> '2.102',
18476             'IO::Uncompress::Unzip' => '2.102',
18477             'Module::CoreList' => '5.20210320',
18478             'Module::CoreList::Utils'=> '5.20210320',
18479             'Pod::Html' => '1.27',
18480             'Win32' => '0.57',
18481             },
18482             removed => {
18483             }
18484             },
18485             5.033009 => {
18486             delta_from => 5.033008,
18487             changed => {
18488             'B::Op_private' => '5.033009',
18489             'Config' => '5.033009',
18490             'Data::Dumper' => '2.178',
18491             'ExtUtils::Command' => '7.62',
18492             'ExtUtils::Command::MM' => '7.62',
18493             'ExtUtils::Liblist' => '7.62',
18494             'ExtUtils::Liblist::Kid'=> '7.62',
18495             'ExtUtils::MM' => '7.62',
18496             'ExtUtils::MM_AIX' => '7.62',
18497             'ExtUtils::MM_Any' => '7.62',
18498             'ExtUtils::MM_BeOS' => '7.62',
18499             'ExtUtils::MM_Cygwin' => '7.62',
18500             'ExtUtils::MM_DOS' => '7.62',
18501             'ExtUtils::MM_Darwin' => '7.62',
18502             'ExtUtils::MM_MacOS' => '7.62',
18503             'ExtUtils::MM_NW5' => '7.62',
18504             'ExtUtils::MM_OS2' => '7.62',
18505             'ExtUtils::MM_OS390' => '7.62',
18506             'ExtUtils::MM_QNX' => '7.62',
18507             'ExtUtils::MM_UWIN' => '7.62',
18508             'ExtUtils::MM_Unix' => '7.62',
18509             'ExtUtils::MM_VMS' => '7.62',
18510             'ExtUtils::MM_VOS' => '7.62',
18511             'ExtUtils::MM_Win32' => '7.62',
18512             'ExtUtils::MM_Win95' => '7.62',
18513             'ExtUtils::MY' => '7.62',
18514             'ExtUtils::MakeMaker' => '7.62',
18515             'ExtUtils::MakeMaker::Config'=> '7.62',
18516             'ExtUtils::MakeMaker::Locale'=> '7.62',
18517             'ExtUtils::MakeMaker::version'=> '7.62',
18518             'ExtUtils::MakeMaker::version::regex'=> '7.62',
18519             'ExtUtils::Mkbootstrap' => '7.62',
18520             'ExtUtils::Mksymlists' => '7.62',
18521             'ExtUtils::ParseXS' => '3.43',
18522             'ExtUtils::ParseXS::Constants'=> '3.43',
18523             'ExtUtils::ParseXS::CountLines'=> '3.43',
18524             'ExtUtils::ParseXS::Eval'=> '3.43',
18525             'ExtUtils::ParseXS::Utilities'=> '3.43',
18526             'ExtUtils::Typemaps' => '3.43',
18527             'ExtUtils::Typemaps::Cmd'=> '3.43',
18528             'ExtUtils::Typemaps::InputMap'=> '3.43',
18529             'ExtUtils::Typemaps::OutputMap'=> '3.43',
18530             'ExtUtils::Typemaps::Type'=> '3.43',
18531             'ExtUtils::testlib' => '7.62',
18532             'Module::CoreList' => '5.20210420',
18533             'Module::CoreList::Utils'=> '5.20210420',
18534             'NEXT' => '0.68',
18535             'XS::APItest' => '1.16',
18536             'feature' => '1.64',
18537             'perlfaq' => '5.20210411',
18538             },
18539             removed => {
18540             }
18541             },
18542             5.034000 => {
18543             delta_from => 5.033009,
18544             changed => {
18545             'B::Op_private' => '5.034000',
18546             'Config' => '5.034',
18547             'Data::Dumper' => '2.179',
18548             'Module::CoreList' => '5.20210520',
18549             'Module::CoreList::Utils'=> '5.20210520',
18550             'experimental' => '0.024',
18551             },
18552             removed => {
18553             }
18554             },
18555             5.035000 => {
18556             delta_from => 5.034,
18557             changed => {
18558             'B::Op_private' => '5.035000',
18559             'Config' => '5.035',
18560             'Module::CoreList' => '5.20210521',
18561             'Module::CoreList::Utils'=> '5.20210521',
18562             'feature' => '1.65',
18563             },
18564             removed => {
18565             }
18566             },
18567             5.035001 => {
18568             delta_from => 5.035000,
18569             changed => {
18570             'B::Deparse' => '1.57',
18571             'B::Op_private' => '5.035001',
18572             'Config' => '5.035001',
18573             'Cwd' => '3.81',
18574             'Data::Dumper' => '2.181',
18575             'File::Copy' => '2.36',
18576             'File::Glob' => '1.35',
18577             'File::Spec' => '3.81',
18578             'File::Spec::AmigaOS' => '3.81',
18579             'File::Spec::Cygwin' => '3.81',
18580             'File::Spec::Epoc' => '3.81',
18581             'File::Spec::Functions' => '3.81',
18582             'File::Spec::Mac' => '3.81',
18583             'File::Spec::OS2' => '3.81',
18584             'File::Spec::Unix' => '3.81',
18585             'File::Spec::VMS' => '3.81',
18586             'File::Spec::Win32' => '3.81',
18587             'File::stat' => '1.10',
18588             'IO' => '1.47',
18589             'IO::Dir' => '1.47',
18590             'IO::File' => '1.47',
18591             'IO::Handle' => '1.47',
18592             'IO::Pipe' => '1.47',
18593             'IO::Poll' => '1.47',
18594             'IO::Seekable' => '1.47',
18595             'IO::Select' => '1.47',
18596             'IO::Socket' => '1.47',
18597             'IO::Socket::INET' => '1.47',
18598             'IO::Socket::UNIX' => '1.47',
18599             'List::Util' => '1.56',
18600             'List::Util::XS' => '1.56',
18601             'Module::CoreList' => '5.20210620',
18602             'Module::CoreList::Utils'=> '5.20210620',
18603             'Opcode' => '1.51',
18604             'POSIX' => '1.98',
18605             'Scalar::Util' => '1.56',
18606             'Socket' => '2.032',
18607             'Sub::Util' => '1.56',
18608             'Test2' => '1.302185',
18609             'Test2::API' => '1.302185',
18610             'Test2::API::Breakage' => '1.302185',
18611             'Test2::API::Context' => '1.302185',
18612             'Test2::API::Instance' => '1.302185',
18613             'Test2::API::InterceptResult'=> '1.302185',
18614             'Test2::API::InterceptResult::Event'=> '1.302185',
18615             'Test2::API::InterceptResult::Facet'=> '1.302185',
18616             'Test2::API::InterceptResult::Hub'=> '1.302185',
18617             'Test2::API::InterceptResult::Squasher'=> '1.302185',
18618             'Test2::API::Stack' => '1.302185',
18619             'Test2::Event' => '1.302185',
18620             'Test2::Event::Bail' => '1.302185',
18621             'Test2::Event::Diag' => '1.302185',
18622             'Test2::Event::Encoding'=> '1.302185',
18623             'Test2::Event::Exception'=> '1.302185',
18624             'Test2::Event::Fail' => '1.302185',
18625             'Test2::Event::Generic' => '1.302185',
18626             'Test2::Event::Note' => '1.302185',
18627             'Test2::Event::Ok' => '1.302185',
18628             'Test2::Event::Pass' => '1.302185',
18629             'Test2::Event::Plan' => '1.302185',
18630             'Test2::Event::Skip' => '1.302185',
18631             'Test2::Event::Subtest' => '1.302185',
18632             'Test2::Event::TAP::Version'=> '1.302185',
18633             'Test2::Event::V2' => '1.302185',
18634             'Test2::Event::Waiting' => '1.302185',
18635             'Test2::EventFacet' => '1.302185',
18636             'Test2::EventFacet::About'=> '1.302185',
18637             'Test2::EventFacet::Amnesty'=> '1.302185',
18638             'Test2::EventFacet::Assert'=> '1.302185',
18639             'Test2::EventFacet::Control'=> '1.302185',
18640             'Test2::EventFacet::Error'=> '1.302185',
18641             'Test2::EventFacet::Hub'=> '1.302185',
18642             'Test2::EventFacet::Info'=> '1.302185',
18643             'Test2::EventFacet::Info::Table'=> '1.302185',
18644             'Test2::EventFacet::Meta'=> '1.302185',
18645             'Test2::EventFacet::Parent'=> '1.302185',
18646             'Test2::EventFacet::Plan'=> '1.302185',
18647             'Test2::EventFacet::Render'=> '1.302185',
18648             'Test2::EventFacet::Trace'=> '1.302185',
18649             'Test2::Formatter' => '1.302185',
18650             'Test2::Formatter::TAP' => '1.302185',
18651             'Test2::Hub' => '1.302185',
18652             'Test2::Hub::Interceptor'=> '1.302185',
18653             'Test2::Hub::Interceptor::Terminator'=> '1.302185',
18654             'Test2::Hub::Subtest' => '1.302185',
18655             'Test2::IPC' => '1.302185',
18656             'Test2::IPC::Driver' => '1.302185',
18657             'Test2::IPC::Driver::Files'=> '1.302185',
18658             'Test2::Tools::Tiny' => '1.302185',
18659             'Test2::Util' => '1.302185',
18660             'Test2::Util::ExternalMeta'=> '1.302185',
18661             'Test2::Util::Facets2Legacy'=> '1.302185',
18662             'Test2::Util::HashBase' => '1.302185',
18663             'Test2::Util::Trace' => '1.302185',
18664             'Test::Builder' => '1.302185',
18665             'Test::Builder::Formatter'=> '1.302185',
18666             'Test::Builder::Module' => '1.302185',
18667             'Test::Builder::Tester' => '1.302185',
18668             'Test::Builder::Tester::Color'=> '1.302185',
18669             'Test::Builder::TodoDiag'=> '1.302185',
18670             'Test::More' => '1.302185',
18671             'Test::Simple' => '1.302185',
18672             'Test::Tester' => '1.302185',
18673             'Test::Tester::Capture' => '1.302185',
18674             'Test::Tester::CaptureRunner'=> '1.302185',
18675             'Test::Tester::Delegate'=> '1.302185',
18676             'Test::use::ok' => '1.302185',
18677             'Unicode::Collate' => '1.30',
18678             'Unicode::Collate::CJK::Big5'=> '1.30',
18679             'Unicode::Collate::CJK::GB2312'=> '1.30',
18680             'Unicode::Collate::CJK::JISX0208'=> '1.30',
18681             'Unicode::Collate::CJK::Korean'=> '1.30',
18682             'Unicode::Collate::CJK::Pinyin'=> '1.30',
18683             'Unicode::Collate::CJK::Stroke'=> '1.30',
18684             'Unicode::Collate::CJK::Zhuyin'=> '1.30',
18685             'Unicode::Collate::Locale'=> '1.30',
18686             'Unicode::UCD' => '0.76',
18687             'XS::APItest' => '1.17',
18688             'feature' => '1.66',
18689             'ok' => '1.302185',
18690             'open' => '1.13',
18691             'perlfaq' => '5.20210520',
18692             'version' => '0.9929',
18693             'version::regex' => '0.9929',
18694             },
18695             removed => {
18696             }
18697             },
18698             5.035002 => {
18699             delta_from => 5.035001,
18700             changed => {
18701             'Amiga::ARexx' => '0.06',
18702             'Amiga::Exec' => '0.03',
18703             'B::Concise' => '1.005',
18704             'B::Op_private' => '5.035002',
18705             'Config' => '5.035002',
18706             'Cwd' => '3.82',
18707             'DB_File' => '1.856',
18708             'Data::Dumper' => '2.183',
18709             'Devel::PPPort' => '3.63',
18710             'Devel::Peek' => '1.31',
18711             'DynaLoader' => '1.51',
18712             'Encode' => '3.10',
18713             'Encode::JP' => '2.05',
18714             'Errno' => '1.34',
18715             'ExtUtils::Miniperl' => '1.11',
18716             'Fcntl' => '1.15',
18717             'File::Find' => '1.39_01',
18718             'File::Glob' => '1.36',
18719             'File::stat' => '1.11',
18720             'GDBM_File' => '1.20',
18721             'Hash::Util' => '0.26',
18722             'Hash::Util::FieldHash' => '1.22',
18723             'I18N::Langinfo' => '0.20',
18724             'IPC::Open2' => '1.06',
18725             'IPC::Open3' => '1.22',
18726             'Math::BigFloat' => '1.999823',
18727             'Math::BigFloat::Trace' => '0.53',
18728             'Math::BigInt' => '1.999823',
18729             'Math::BigInt::Calc' => '1.999823',
18730             'Math::BigInt::FastCalc'=> '0.5010',
18731             'Math::BigInt::Lib' => '1.999823',
18732             'Math::BigInt::Trace' => '0.53',
18733             'Math::BigRat' => '0.2617',
18734             'Module::CoreList' => '5.20210723',
18735             'Module::CoreList::Utils'=> '5.20210723',
18736             'Opcode' => '1.52',
18737             'PerlIO' => '1.12',
18738             'Pod::Functions' => '1.14',
18739             'Pod::Functions::Functions'=> '1.14',
18740             'Pod::Html' => '1.31',
18741             'Pod::Html::Util' => '1.31',
18742             'Pod::Simple' => '3.43',
18743             'Pod::Simple::BlackBox' => '3.43',
18744             'Pod::Simple::Checker' => '3.43',
18745             'Pod::Simple::Debug' => '3.43',
18746             'Pod::Simple::DumpAsText'=> '3.43',
18747             'Pod::Simple::DumpAsXML'=> '3.43',
18748             'Pod::Simple::HTML' => '3.43',
18749             'Pod::Simple::HTMLBatch'=> '3.43',
18750             'Pod::Simple::LinkSection'=> '3.43',
18751             'Pod::Simple::Methody' => '3.43',
18752             'Pod::Simple::Progress' => '3.43',
18753             'Pod::Simple::PullParser'=> '3.43',
18754             'Pod::Simple::PullParserEndToken'=> '3.43',
18755             'Pod::Simple::PullParserStartToken'=> '3.43',
18756             'Pod::Simple::PullParserTextToken'=> '3.43',
18757             'Pod::Simple::PullParserToken'=> '3.43',
18758             'Pod::Simple::RTF' => '3.43',
18759             'Pod::Simple::Search' => '3.43',
18760             'Pod::Simple::SimpleTree'=> '3.43',
18761             'Pod::Simple::Text' => '3.43',
18762             'Pod::Simple::TextContent'=> '3.43',
18763             'Pod::Simple::TiedOutFH'=> '3.43',
18764             'Pod::Simple::Transcode'=> '3.43',
18765             'Pod::Simple::TranscodeDumb'=> '3.43',
18766             'Pod::Simple::TranscodeSmart'=> '3.43',
18767             'Pod::Simple::XHTML' => '3.43',
18768             'Pod::Simple::XMLOutStream'=> '3.43',
18769             'Sys::Hostname' => '1.24',
18770             'Text::Tabs' => '2021.0717',
18771             'Text::Wrap' => '2021.0717',
18772             'Time::HiRes' => '1.9768',
18773             'Unicode::UCD' => '0.77',
18774             'VMS::Filespec' => '1.13',
18775             'VMS::Stdio' => '2.46',
18776             'XSLoader' => '0.31',
18777             'bigint' => '0.53',
18778             'bignum' => '0.53',
18779             'bigrat' => '0.53',
18780             'if' => '0.0610',
18781             'threads' => '2.27',
18782             'warnings' => '1.52',
18783             },
18784             removed => {
18785             }
18786             },
18787             5.035003 => {
18788             delta_from => 5.035002,
18789             changed => {
18790             'Archive::Tar' => '2.40',
18791             'Archive::Tar::Constant'=> '2.40',
18792             'Archive::Tar::File' => '2.40',
18793             'B::Op_private' => '5.035003',
18794             'Config' => '5.035003',
18795             'Encode' => '3.12',
18796             'Encode::GSM0338' => '2.10',
18797             'Encode::Unicode' => '2.19',
18798             'Module::CoreList' => '5.20210820',
18799             'Module::CoreList::Utils'=> '5.20210820',
18800             'Net::hostent' => '1.03',
18801             'Opcode' => '1.53',
18802             'POSIX' => '1.99',
18803             'Pod::Html' => '1.32',
18804             'Pod::Html::Util' => '1.32',
18805             'Storable' => '3.24',
18806             'Text::Tabs' => '2021.0804',
18807             'Text::Wrap' => '2021.0804',
18808             'Time::HiRes' => '1.9769',
18809             'Unicode::Normalize' => '1.30',
18810             'XS::APItest' => '1.18',
18811             'diagnostics' => '1.38',
18812             'feature' => '1.67',
18813             'sort' => '2.05',
18814             'threads::shared' => '1.63',
18815             'warnings' => '1.53',
18816             },
18817             removed => {
18818             }
18819             },
18820             5.035004 => {
18821             delta_from => 5.035003,
18822             changed => {
18823             'B' => '1.83',
18824             'B::Deparse' => '1.58',
18825             'B::Op_private' => '5.035004',
18826             'Config' => '5.035004',
18827             'Devel::Peek' => '1.32',
18828             'Exporter' => '5.77',
18829             'Exporter::Heavy' => '5.77',
18830             'ExtUtils::ParseXS' => '3.44',
18831             'ExtUtils::ParseXS::Constants'=> '3.44',
18832             'ExtUtils::ParseXS::CountLines'=> '3.44',
18833             'ExtUtils::ParseXS::Eval'=> '3.44',
18834             'ExtUtils::ParseXS::Utilities'=> '3.44',
18835             'ExtUtils::Typemaps' => '3.44',
18836             'ExtUtils::Typemaps::Cmd'=> '3.44',
18837             'ExtUtils::Typemaps::InputMap'=> '3.44',
18838             'ExtUtils::Typemaps::OutputMap'=> '3.44',
18839             'ExtUtils::Typemaps::Type'=> '3.44',
18840             'Hash::Util::FieldHash' => '1.23',
18841             'IO' => '1.48',
18842             'IO::Dir' => '1.48',
18843             'IO::File' => '1.48',
18844             'IO::Handle' => '1.48',
18845             'IO::Pipe' => '1.48',
18846             'IO::Poll' => '1.48',
18847             'IO::Seekable' => '1.48',
18848             'IO::Select' => '1.48',
18849             'IO::Socket' => '1.48',
18850             'IO::Socket::INET' => '1.48',
18851             'IO::Socket::UNIX' => '1.48',
18852             'List::Util' => '1.56_001',
18853             'List::Util::XS' => '1.56_001',
18854             'Module::CoreList' => '5.20210920',
18855             'Module::CoreList::Utils'=> '5.20210920',
18856             'Opcode' => '1.54',
18857             'Pod::Html' => '1.33',
18858             'Pod::Html::Util' => '1.33',
18859             'Scalar::Util' => '1.56_001',
18860             'Storable' => '3.25',
18861             'Sub::Util' => '1.56_001',
18862             'Text::Tabs' => '2021.0814',
18863             'Text::Wrap' => '2021.0814',
18864             'UNIVERSAL' => '1.14',
18865             'Unicode' => '14.0.0',
18866             'Unicode::Collate' => '1.31',
18867             'Unicode::Collate::CJK::Big5'=> '1.31',
18868             'Unicode::Collate::CJK::GB2312'=> '1.31',
18869             'Unicode::Collate::CJK::JISX0208'=> '1.31',
18870             'Unicode::Collate::CJK::Korean'=> '1.31',
18871             'Unicode::Collate::CJK::Pinyin'=> '1.31',
18872             'Unicode::Collate::CJK::Stroke'=> '1.31',
18873             'Unicode::Collate::CJK::Zhuyin'=> '1.31',
18874             'Unicode::Collate::Locale'=> '1.31',
18875             'Unicode::UCD' => '0.78',
18876             'XS::APItest' => '1.19',
18877             'XS::Typemap' => '0.19',
18878             'attributes' => '0.34',
18879             'feature' => '1.68',
18880             'mro' => '1.26',
18881             'threads::shared' => '1.64',
18882             'warnings' => '1.54',
18883             },
18884             removed => {
18885             }
18886             },
18887             5.035005 => {
18888             delta_from => 5.035004,
18889             changed => {
18890             'B::Concise' => '1.006',
18891             'B::Deparse' => '1.59',
18892             'B::Op_private' => '5.035005',
18893             'Config' => '5.035005',
18894             'Digest' => '1.20',
18895             'Digest::base' => '1.20',
18896             'Digest::file' => '1.20',
18897             'DynaLoader' => '1.52',
18898             'Encode' => '3.16',
18899             'Errno' => '1.35',
18900             'File::Copy' => '2.37',
18901             'File::Spec::Unix' => '3.82',
18902             'FindBin' => '1.53',
18903             'GDBM_File' => '1.21',
18904             'HTTP::Tiny' => '0.078',
18905             'I18N::Langinfo' => '0.21',
18906             'IO::Dir' => '1.49',
18907             'IO::Pipe' => '1.49',
18908             'IO::Poll' => '1.49',
18909             'IO::Select' => '1.49',
18910             'IO::Socket' => '1.49',
18911             'IO::Socket::INET' => '1.49',
18912             'IO::Socket::UNIX' => '1.49',
18913             'List::Util' => '1.60',
18914             'List::Util::XS' => '1.60',
18915             'Math::BigRat::Trace' => '0.63',
18916             'Module::CoreList' => '5.20211020',
18917             'Module::CoreList::Utils'=> '5.20211020',
18918             'POSIX' => '2.01',
18919             'Scalar::Util' => '1.60',
18920             'Sub::Util' => '1.60',
18921             'Test2' => '1.302188',
18922             'Test2::API' => '1.302188',
18923             'Test2::API::Breakage' => '1.302188',
18924             'Test2::API::Context' => '1.302188',
18925             'Test2::API::Instance' => '1.302188',
18926             'Test2::API::InterceptResult'=> '1.302188',
18927             'Test2::API::InterceptResult::Event'=> '1.302188',
18928             'Test2::API::InterceptResult::Facet'=> '1.302188',
18929             'Test2::API::InterceptResult::Hub'=> '1.302188',
18930             'Test2::API::InterceptResult::Squasher'=> '1.302188',
18931             'Test2::API::Stack' => '1.302188',
18932             'Test2::Event' => '1.302188',
18933             'Test2::Event::Bail' => '1.302188',
18934             'Test2::Event::Diag' => '1.302188',
18935             'Test2::Event::Encoding'=> '1.302188',
18936             'Test2::Event::Exception'=> '1.302188',
18937             'Test2::Event::Fail' => '1.302188',
18938             'Test2::Event::Generic' => '1.302188',
18939             'Test2::Event::Note' => '1.302188',
18940             'Test2::Event::Ok' => '1.302188',
18941             'Test2::Event::Pass' => '1.302188',
18942             'Test2::Event::Plan' => '1.302188',
18943             'Test2::Event::Skip' => '1.302188',
18944             'Test2::Event::Subtest' => '1.302188',
18945             'Test2::Event::TAP::Version'=> '1.302188',
18946             'Test2::Event::V2' => '1.302188',
18947             'Test2::Event::Waiting' => '1.302188',
18948             'Test2::EventFacet' => '1.302188',
18949             'Test2::EventFacet::About'=> '1.302188',
18950             'Test2::EventFacet::Amnesty'=> '1.302188',
18951             'Test2::EventFacet::Assert'=> '1.302188',
18952             'Test2::EventFacet::Control'=> '1.302188',
18953             'Test2::EventFacet::Error'=> '1.302188',
18954             'Test2::EventFacet::Hub'=> '1.302188',
18955             'Test2::EventFacet::Info'=> '1.302188',
18956             'Test2::EventFacet::Info::Table'=> '1.302188',
18957             'Test2::EventFacet::Meta'=> '1.302188',
18958             'Test2::EventFacet::Parent'=> '1.302188',
18959             'Test2::EventFacet::Plan'=> '1.302188',
18960             'Test2::EventFacet::Render'=> '1.302188',
18961             'Test2::EventFacet::Trace'=> '1.302188',
18962             'Test2::Formatter' => '1.302188',
18963             'Test2::Formatter::TAP' => '1.302188',
18964             'Test2::Hub' => '1.302188',
18965             'Test2::Hub::Interceptor'=> '1.302188',
18966             'Test2::Hub::Interceptor::Terminator'=> '1.302188',
18967             'Test2::Hub::Subtest' => '1.302188',
18968             'Test2::IPC' => '1.302188',
18969             'Test2::IPC::Driver' => '1.302188',
18970             'Test2::IPC::Driver::Files'=> '1.302188',
18971             'Test2::Tools::Tiny' => '1.302188',
18972             'Test2::Util' => '1.302188',
18973             'Test2::Util::ExternalMeta'=> '1.302188',
18974             'Test2::Util::Facets2Legacy'=> '1.302188',
18975             'Test2::Util::HashBase' => '1.302188',
18976             'Test2::Util::Trace' => '1.302188',
18977             'Test::Builder' => '1.302188',
18978             'Test::Builder::Formatter'=> '1.302188',
18979             'Test::Builder::Module' => '1.302188',
18980             'Test::Builder::Tester' => '1.302188',
18981             'Test::Builder::Tester::Color'=> '1.302188',
18982             'Test::Builder::TodoDiag'=> '1.302188',
18983             'Test::More' => '1.302188',
18984             'Test::Simple' => '1.302188',
18985             'Test::Tester' => '1.302188',
18986             'Test::Tester::Capture' => '1.302188',
18987             'Test::Tester::CaptureRunner'=> '1.302188',
18988             'Test::Tester::Delegate'=> '1.302188',
18989             'Test::use::ok' => '1.302188',
18990             'Tie::Handle' => '4.3',
18991             'Tie::Hash' => '1.06',
18992             'Tie::Scalar' => '1.06',
18993             'XS::APItest' => '1.20',
18994             'experimental' => '0.025',
18995             'ok' => '1.302188',
18996             'warnings' => '1.55',
18997             },
18998             removed => {
18999             }
19000             },
19001             5.035006 => {
19002             delta_from => 5.035005,
19003             changed => {
19004             'B::Op_private' => '5.035006',
19005             'Config' => '5.035006',
19006             'File::Glob' => '1.37',
19007             'File::stat' => '1.12',
19008             'GDBM_File' => '1.22',
19009             'HTTP::Tiny' => '0.080',
19010             'Math::BigFloat' => '1.999827',
19011             'Math::BigFloat::Trace' => '0.63',
19012             'Math::BigInt' => '1.999827',
19013             'Math::BigInt::Calc' => '1.999827',
19014             'Math::BigInt::FastCalc'=> '0.5012',
19015             'Math::BigInt::Lib' => '1.999827',
19016             'Math::BigInt::Trace' => '0.63',
19017             'Math::BigRat' => '0.2620',
19018             'Module::CoreList' => '5.20211120',
19019             'Module::CoreList::Utils'=> '5.20211120',
19020             'POSIX' => '2.02',
19021             'bigint' => '0.63',
19022             'bignum' => '0.63',
19023             'bigrat' => '0.63',
19024             'diagnostics' => '1.39',
19025             'feature' => '1.69',
19026             'warnings' => '1.56',
19027             },
19028             removed => {
19029             }
19030             },
19031             5.035007 => {
19032             delta_from => 5.035006,
19033             changed => {
19034             'B::Deparse' => '1.60',
19035             'B::Op_private' => '5.035007',
19036             'CPAN' => '2.29',
19037             'CPAN::Distribution' => '2.29',
19038             'CPAN::FTP' => '5.5014',
19039             'CPAN::FirstTime' => '5.5316',
19040             'CPAN::HandleConfig' => '5.5012',
19041             'CPAN::Index' => '2.29',
19042             'Config' => '5.035007',
19043             'Cwd' => '3.83',
19044             'ExtUtils::Command' => '7.64',
19045             'ExtUtils::Command::MM' => '7.64',
19046             'ExtUtils::Liblist' => '7.64',
19047             'ExtUtils::Liblist::Kid'=> '7.64',
19048             'ExtUtils::MM' => '7.64',
19049             'ExtUtils::MM_AIX' => '7.64',
19050             'ExtUtils::MM_Any' => '7.64',
19051             'ExtUtils::MM_BeOS' => '7.64',
19052             'ExtUtils::MM_Cygwin' => '7.64',
19053             'ExtUtils::MM_DOS' => '7.64',
19054             'ExtUtils::MM_Darwin' => '7.64',
19055             'ExtUtils::MM_MacOS' => '7.64',
19056             'ExtUtils::MM_NW5' => '7.64',
19057             'ExtUtils::MM_OS2' => '7.64',
19058             'ExtUtils::MM_OS390' => '7.64',
19059             'ExtUtils::MM_QNX' => '7.64',
19060             'ExtUtils::MM_UWIN' => '7.64',
19061             'ExtUtils::MM_Unix' => '7.64',
19062             'ExtUtils::MM_VMS' => '7.64',
19063             'ExtUtils::MM_VOS' => '7.64',
19064             'ExtUtils::MM_Win32' => '7.64',
19065             'ExtUtils::MM_Win95' => '7.64',
19066             'ExtUtils::MY' => '7.64',
19067             'ExtUtils::MakeMaker' => '7.64',
19068             'ExtUtils::MakeMaker::Config'=> '7.64',
19069             'ExtUtils::MakeMaker::Locale'=> '7.64',
19070             'ExtUtils::MakeMaker::version'=> '7.64',
19071             'ExtUtils::MakeMaker::version::regex'=> '7.64',
19072             'ExtUtils::Mkbootstrap' => '7.64',
19073             'ExtUtils::Mksymlists' => '7.64',
19074             'ExtUtils::testlib' => '7.64',
19075             'File::Compare' => '1.1007',
19076             'File::Copy' => '2.38',
19077             'File::Spec' => '3.83',
19078             'File::Spec::AmigaOS' => '3.83',
19079             'File::Spec::Cygwin' => '3.83',
19080             'File::Spec::Epoc' => '3.83',
19081             'File::Spec::Functions' => '3.83',
19082             'File::Spec::Mac' => '3.83',
19083             'File::Spec::OS2' => '3.83',
19084             'File::Spec::Unix' => '3.83',
19085             'File::Spec::VMS' => '3.83',
19086             'File::Spec::Win32' => '3.83',
19087             'Hash::Util' => '0.27',
19088             'Hash::Util::FieldHash' => '1.24',
19089             'IO' => '1.49',
19090             'JSON::PP' => '4.07',
19091             'JSON::PP::Boolean' => '4.07',
19092             'Math::BigFloat' => '1.999828',
19093             'Math::BigInt' => '1.999828',
19094             'Math::BigInt::Calc' => '1.999828',
19095             'Math::BigInt::Lib' => '1.999828',
19096             'Module::CoreList' => '5.20211220',
19097             'Module::CoreList::Utils'=> '5.20211220',
19098             'Opcode' => '1.55',
19099             'builtin' => '0.001',
19100             'overload' => '1.34',
19101             },
19102             removed => {
19103             }
19104             },
19105             5.035008 => {
19106             delta_from => 5.035007,
19107             changed => {
19108             'B::Deparse' => '1.61',
19109             'B::Op_private' => '5.035008',
19110             'Config' => '5.035008',
19111             'Data::Dumper' => '2.184',
19112             'Errno' => '1.36',
19113             'File::Fetch' => '1.04',
19114             'File::Find' => '1.40',
19115             'Hash::Util::FieldHash' => '1.25',
19116             'Locale::Maketext' => '1.30',
19117             'Math::BigFloat' => '1.999829',
19118             'Math::BigFloat::Trace' => '0.64',
19119             'Math::BigInt' => '1.999829',
19120             'Math::BigInt::Calc' => '1.999829',
19121             'Math::BigInt::Lib' => '1.999829',
19122             'Math::BigInt::Trace' => '0.64',
19123             'Math::BigRat::Trace' => '0.64',
19124             'Module::CoreList' => '5.20220120',
19125             'Module::CoreList::Utils'=> '5.20220120',
19126             'NEXT' => '0.69',
19127             'POSIX' => '2.03',
19128             'Win32' => '0.58',
19129             '_charnames' => '1.49',
19130             'bigint' => '0.64',
19131             'bignum' => '0.64',
19132             'bigrat' => '0.64',
19133             'charnames' => '1.49',
19134             },
19135             removed => {
19136             }
19137             },
19138             5.035009 => {
19139             delta_from => 5.035008,
19140             changed => {
19141             'App::Cpan' => '1.678',
19142             'B::Deparse' => '1.62',
19143             'B::Op_private' => '5.035009',
19144             'CPAN' => '2.33',
19145             'CPAN::Distribution' => '2.33',
19146             'CPAN::FTP' => '5.5016',
19147             'CPAN::FirstTime' => '5.5317',
19148             'Config' => '5.035009',
19149             'Devel::PPPort' => '3.64',
19150             'File::Copy' => '2.39',
19151             'Hash::Util' => '0.28',
19152             'Hash::Util::FieldHash' => '1.26',
19153             'List::Util' => '1.61',
19154             'List::Util::XS' => '1.61',
19155             'Module::CoreList' => '5.20220220',
19156             'Module::CoreList::Utils'=> '5.20220220',
19157             'Opcode' => '1.56',
19158             'Scalar::Util' => '1.61',
19159             'Sub::Util' => '1.61',
19160             'Tie::SubstrHash' => '1.01',
19161             'XS::APItest' => '1.21',
19162             '_charnames' => '1.50',
19163             'builtin' => '0.002',
19164             'charnames' => '1.50',
19165             'experimental' => '0.027',
19166             'feature' => '1.70',
19167             'overload' => '1.35',
19168             're' => '0.42',
19169             'sigtrap' => '1.10',
19170             'warnings' => '1.57',
19171             },
19172             removed => {
19173             }
19174             },
19175             5.034001 => {
19176             delta_from => 5.034000,
19177             changed => {
19178             'B::Deparse' => '1.57',
19179             'B::Op_private' => '5.034001',
19180             'Config' => '5.034001',
19181             'Encode' => '3.08_01',
19182             'GDBM_File' => '1.19_01',
19183             'Module::CoreList' => '5.20220313',
19184             'Module::CoreList::Utils'=> '5.20220313',
19185             },
19186             removed => {
19187             }
19188             },
19189             5.035010 => {
19190             delta_from => 5.035009,
19191             changed => {
19192             'Attribute::Handlers' => '1.02',
19193             'B::Deparse' => '1.63',
19194             'B::Op_private' => '5.035010',
19195             'Config' => '5.03501',
19196             'Cwd' => '3.84',
19197             'DB_File' => '1.857',
19198             'Devel::PPPort' => '3.68',
19199             'ExtUtils::ParseXS' => '3.45',
19200             'ExtUtils::ParseXS::Constants'=> '3.45',
19201             'ExtUtils::ParseXS::CountLines'=> '3.45',
19202             'ExtUtils::ParseXS::Eval'=> '3.45',
19203             'ExtUtils::ParseXS::Utilities'=> '3.45',
19204             'ExtUtils::Typemaps' => '3.45',
19205             'ExtUtils::Typemaps::Cmd'=> '3.45',
19206             'ExtUtils::Typemaps::InputMap'=> '3.45',
19207             'ExtUtils::Typemaps::OutputMap'=> '3.45',
19208             'ExtUtils::Typemaps::Type'=> '3.45',
19209             'File::Spec' => '3.84',
19210             'File::Spec::AmigaOS' => '3.84',
19211             'File::Spec::Cygwin' => '3.84',
19212             'File::Spec::Epoc' => '3.84',
19213             'File::Spec::Functions' => '3.84',
19214             'File::Spec::Mac' => '3.84',
19215             'File::Spec::OS2' => '3.84',
19216             'File::Spec::Unix' => '3.84',
19217             'File::Spec::VMS' => '3.84',
19218             'File::Spec::Win32' => '3.84',
19219             'GDBM_File' => '1.23',
19220             'List::Util' => '1.62',
19221             'List::Util::XS' => '1.62',
19222             'Module::CoreList' => '5.20220320',
19223             'Module::CoreList::Utils'=> '5.20220320',
19224             'Opcode' => '1.57',
19225             'Scalar::Util' => '1.62',
19226             'Sub::Util' => '1.62',
19227             'Test2' => '1.302190',
19228             'Test2::API' => '1.302190',
19229             'Test2::API::Breakage' => '1.302190',
19230             'Test2::API::Context' => '1.302190',
19231             'Test2::API::Instance' => '1.302190',
19232             'Test2::API::InterceptResult'=> '1.302190',
19233             'Test2::API::InterceptResult::Event'=> '1.302190',
19234             'Test2::API::InterceptResult::Facet'=> '1.302190',
19235             'Test2::API::InterceptResult::Hub'=> '1.302190',
19236             'Test2::API::InterceptResult::Squasher'=> '1.302190',
19237             'Test2::API::Stack' => '1.302190',
19238             'Test2::Event' => '1.302190',
19239             'Test2::Event::Bail' => '1.302190',
19240             'Test2::Event::Diag' => '1.302190',
19241             'Test2::Event::Encoding'=> '1.302190',
19242             'Test2::Event::Exception'=> '1.302190',
19243             'Test2::Event::Fail' => '1.302190',
19244             'Test2::Event::Generic' => '1.302190',
19245             'Test2::Event::Note' => '1.302190',
19246             'Test2::Event::Ok' => '1.302190',
19247             'Test2::Event::Pass' => '1.302190',
19248             'Test2::Event::Plan' => '1.302190',
19249             'Test2::Event::Skip' => '1.302190',
19250             'Test2::Event::Subtest' => '1.302190',
19251             'Test2::Event::TAP::Version'=> '1.302190',
19252             'Test2::Event::V2' => '1.302190',
19253             'Test2::Event::Waiting' => '1.302190',
19254             'Test2::EventFacet' => '1.302190',
19255             'Test2::EventFacet::About'=> '1.302190',
19256             'Test2::EventFacet::Amnesty'=> '1.302190',
19257             'Test2::EventFacet::Assert'=> '1.302190',
19258             'Test2::EventFacet::Control'=> '1.302190',
19259             'Test2::EventFacet::Error'=> '1.302190',
19260             'Test2::EventFacet::Hub'=> '1.302190',
19261             'Test2::EventFacet::Info'=> '1.302190',
19262             'Test2::EventFacet::Info::Table'=> '1.302190',
19263             'Test2::EventFacet::Meta'=> '1.302190',
19264             'Test2::EventFacet::Parent'=> '1.302190',
19265             'Test2::EventFacet::Plan'=> '1.302190',
19266             'Test2::EventFacet::Render'=> '1.302190',
19267             'Test2::EventFacet::Trace'=> '1.302190',
19268             'Test2::Formatter' => '1.302190',
19269             'Test2::Formatter::TAP' => '1.302190',
19270             'Test2::Hub' => '1.302190',
19271             'Test2::Hub::Interceptor'=> '1.302190',
19272             'Test2::Hub::Interceptor::Terminator'=> '1.302190',
19273             'Test2::Hub::Subtest' => '1.302190',
19274             'Test2::IPC' => '1.302190',
19275             'Test2::IPC::Driver' => '1.302190',
19276             'Test2::IPC::Driver::Files'=> '1.302190',
19277             'Test2::Tools::Tiny' => '1.302190',
19278             'Test2::Util' => '1.302190',
19279             'Test2::Util::ExternalMeta'=> '1.302190',
19280             'Test2::Util::Facets2Legacy'=> '1.302190',
19281             'Test2::Util::HashBase' => '1.302190',
19282             'Test2::Util::Trace' => '1.302190',
19283             'Test::Builder' => '1.302190',
19284             'Test::Builder::Formatter'=> '1.302190',
19285             'Test::Builder::Module' => '1.302190',
19286             'Test::Builder::Tester' => '1.302190',
19287             'Test::Builder::Tester::Color'=> '1.302190',
19288             'Test::Builder::TodoDiag'=> '1.302190',
19289             'Test::More' => '1.302190',
19290             'Test::Simple' => '1.302190',
19291             'Test::Tester' => '1.302190',
19292             'Test::Tester::Capture' => '1.302190',
19293             'Test::Tester::CaptureRunner'=> '1.302190',
19294             'Test::Tester::Delegate'=> '1.302190',
19295             'Test::use::ok' => '1.302190',
19296             'XS::APItest' => '1.22',
19297             'builtin' => '0.004',
19298             'experimental' => '0.028',
19299             'feature' => '1.71',
19300             'ok' => '1.302190',
19301             'warnings' => '1.58',
19302             },
19303             removed => {
19304             }
19305             },
19306             5.035011 => {
19307             delta_from => 5.03501,
19308             changed => {
19309             'App::Prove' => '3.44',
19310             'App::Prove::State' => '3.44',
19311             'App::Prove::State::Result'=> '3.44',
19312             'App::Prove::State::Result::Test'=> '3.44',
19313             'B::Deparse' => '1.64',
19314             'B::Op_private' => '5.035011',
19315             'Compress::Raw::Bzip2' => '2.103',
19316             'Compress::Raw::Zlib' => '2.103',
19317             'Compress::Zlib' => '2.106',
19318             'Config' => '5.035011',
19319             'Encode' => '3.17',
19320             'Encode::Unicode' => '2.20',
19321             'ExtUtils::Constant::Base'=> '0.07',
19322             'IO' => '1.49_01',
19323             'IO::Compress::Adapter::Bzip2'=> '2.106',
19324             'IO::Compress::Adapter::Deflate'=> '2.106',
19325             'IO::Compress::Adapter::Identity'=> '2.106',
19326             'IO::Compress::Base' => '2.106',
19327             'IO::Compress::Base::Common'=> '2.106',
19328             'IO::Compress::Bzip2' => '2.106',
19329             'IO::Compress::Deflate' => '2.106',
19330             'IO::Compress::Gzip' => '2.106',
19331             'IO::Compress::Gzip::Constants'=> '2.106',
19332             'IO::Compress::RawDeflate'=> '2.106',
19333             'IO::Compress::Zip' => '2.106',
19334             'IO::Compress::Zip::Constants'=> '2.106',
19335             'IO::Compress::Zlib::Constants'=> '2.106',
19336             'IO::Compress::Zlib::Extra'=> '2.106',
19337             'IO::Uncompress::Adapter::Bunzip2'=> '2.106',
19338             'IO::Uncompress::Adapter::Identity'=> '2.106',
19339             'IO::Uncompress::Adapter::Inflate'=> '2.106',
19340             'IO::Uncompress::AnyInflate'=> '2.106',
19341             'IO::Uncompress::AnyUncompress'=> '2.106',
19342             'IO::Uncompress::Base' => '2.106',
19343             'IO::Uncompress::Bunzip2'=> '2.106',
19344             'IO::Uncompress::Gunzip'=> '2.106',
19345             'IO::Uncompress::Inflate'=> '2.106',
19346             'IO::Uncompress::RawInflate'=> '2.106',
19347             'IO::Uncompress::Unzip' => '2.106',
19348             'Locale::Maketext' => '1.31',
19349             'Math::BigFloat' => '1.999830',
19350             'Math::BigFloat::Trace' => '0.65',
19351             'Math::BigInt' => '1.999830',
19352             'Math::BigInt::Calc' => '1.999830',
19353             'Math::BigInt::Lib' => '1.999830',
19354             'Math::BigInt::Trace' => '0.65',
19355             'Math::BigRat' => '0.2621',
19356             'Math::BigRat::Trace' => '0.65',
19357             'Module::CoreList' => '5.20220420',
19358             'Module::CoreList::Utils'=> '5.20220420',
19359             'Net::Cmd' => '3.14',
19360             'Net::Config' => '3.14',
19361             'Net::Domain' => '3.14',
19362             'Net::FTP' => '3.14',
19363             'Net::FTP::A' => '3.14',
19364             'Net::FTP::E' => '3.14',
19365             'Net::FTP::I' => '3.14',
19366             'Net::FTP::L' => '3.14',
19367             'Net::FTP::dataconn' => '3.14',
19368             'Net::NNTP' => '3.14',
19369             'Net::Netrc' => '3.14',
19370             'Net::POP3' => '3.14',
19371             'Net::SMTP' => '3.14',
19372             'Net::Time' => '3.14',
19373             'Socket' => '2.033',
19374             'Storable' => '3.26',
19375             'TAP::Base' => '3.44',
19376             'TAP::Formatter::Base' => '3.44',
19377             'TAP::Formatter::Color' => '3.44',
19378             'TAP::Formatter::Console'=> '3.44',
19379             'TAP::Formatter::Console::ParallelSession'=> '3.44',
19380             'TAP::Formatter::Console::Session'=> '3.44',
19381             'TAP::Formatter::File' => '3.44',
19382             'TAP::Formatter::File::Session'=> '3.44',
19383             'TAP::Formatter::Session'=> '3.44',
19384             'TAP::Harness' => '3.44',
19385             'TAP::Harness::Env' => '3.44',
19386             'TAP::Object' => '3.44',
19387             'TAP::Parser' => '3.44',
19388             'TAP::Parser::Aggregator'=> '3.44',
19389             'TAP::Parser::Grammar' => '3.44',
19390             'TAP::Parser::Iterator' => '3.44',
19391             'TAP::Parser::Iterator::Array'=> '3.44',
19392             'TAP::Parser::Iterator::Process'=> '3.44',
19393             'TAP::Parser::Iterator::Stream'=> '3.44',
19394             'TAP::Parser::IteratorFactory'=> '3.44',
19395             'TAP::Parser::Multiplexer'=> '3.44',
19396             'TAP::Parser::Result' => '3.44',
19397             'TAP::Parser::Result::Bailout'=> '3.44',
19398             'TAP::Parser::Result::Comment'=> '3.44',
19399             'TAP::Parser::Result::Plan'=> '3.44',
19400             'TAP::Parser::Result::Pragma'=> '3.44',
19401             'TAP::Parser::Result::Test'=> '3.44',
19402             'TAP::Parser::Result::Unknown'=> '3.44',
19403             'TAP::Parser::Result::Version'=> '3.44',
19404             'TAP::Parser::Result::YAML'=> '3.44',
19405             'TAP::Parser::ResultFactory'=> '3.44',
19406             'TAP::Parser::Scheduler'=> '3.44',
19407             'TAP::Parser::Scheduler::Job'=> '3.44',
19408             'TAP::Parser::Scheduler::Spinner'=> '3.44',
19409             'TAP::Parser::Source' => '3.44',
19410             'TAP::Parser::SourceHandler'=> '3.44',
19411             'TAP::Parser::SourceHandler::Executable'=> '3.44',
19412             'TAP::Parser::SourceHandler::File'=> '3.44',
19413             'TAP::Parser::SourceHandler::Handle'=> '3.44',
19414             'TAP::Parser::SourceHandler::Perl'=> '3.44',
19415             'TAP::Parser::SourceHandler::RawTAP'=> '3.44',
19416             'TAP::Parser::YAMLish::Reader'=> '3.44',
19417             'TAP::Parser::YAMLish::Writer'=> '3.44',
19418             'Test::Harness' => '3.44',
19419             'Text::ParseWords' => '3.31',
19420             'Time::HiRes' => '1.9770',
19421             'Unicode::Normalize' => '1.31',
19422             'bigfloat' => '0.65',
19423             'bigint' => '0.65',
19424             'bignum' => '0.65',
19425             'bigrat' => '0.65',
19426             'builtin' => '0.005',
19427             're' => '0.43',
19428             },
19429             removed => {
19430             }
19431             },
19432             5.036000 => {
19433             delta_from => 5.035011,
19434             changed => {
19435             'Amiga::Exec' => '0.04',
19436             'B::Op_private' => '5.036000',
19437             'Compress::Raw::Zlib' => '2.105',
19438             'Config' => '5.036',
19439             'IO' => '1.50',
19440             'Module::CoreList' => '5.20220520',
19441             'Module::CoreList::Utils'=> '5.20220520',
19442             'Win32' => '0.59',
19443             'builtin' => '0.006',
19444             'feature' => '1.72',
19445             },
19446             removed => {
19447             }
19448             },
19449             5.037000 => {
19450             delta_from => 5.036000,
19451             changed => {
19452             'feature' => '1.73',
19453             'Module::CoreList' => '5.20220527',
19454             'Module::CoreList::Utils'=> '5.20220527',
19455             },
19456             removed => {
19457             }
19458             },
19459             5.037001 => {
19460             delta_from => 5.037000,
19461             changed => {
19462             'B' => '1.84',
19463             'B::Op_private' => '5.037001',
19464             'Carp' => '1.53',
19465             'Carp::Heavy' => '1.53',
19466             'Config' => '5.037001',
19467             'Cwd' => '3.85',
19468             'Data::Dumper' => '2.185',
19469             'ExtUtils::CBuilder' => '0.280237',
19470             'ExtUtils::CBuilder::Base'=> '0.280237',
19471             'ExtUtils::CBuilder::Platform::Unix'=> '0.280237',
19472             'ExtUtils::CBuilder::Platform::VMS'=> '0.280237',
19473             'ExtUtils::CBuilder::Platform::Windows'=> '0.280237',
19474             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280237',
19475             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280237',
19476             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280237',
19477             'ExtUtils::CBuilder::Platform::aix'=> '0.280237',
19478             'ExtUtils::CBuilder::Platform::android'=> '0.280237',
19479             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280237',
19480             'ExtUtils::CBuilder::Platform::darwin'=> '0.280237',
19481             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280237',
19482             'ExtUtils::CBuilder::Platform::os2'=> '0.280237',
19483             'ExtUtils::Miniperl' => '1.12',
19484             'File::Spec' => '3.85',
19485             'File::Spec::AmigaOS' => '3.85',
19486             'File::Spec::Cygwin' => '3.85',
19487             'File::Spec::Epoc' => '3.85',
19488             'File::Spec::Functions' => '3.85',
19489             'File::Spec::Mac' => '3.85',
19490             'File::Spec::OS2' => '3.85',
19491             'File::Spec::Unix' => '3.85',
19492             'File::Spec::VMS' => '3.85',
19493             'File::Spec::Win32' => '3.85',
19494             'FileHandle' => '2.04',
19495             'GDBM_File' => '1.24',
19496             'IO::Handle' => '1.49',
19497             'IO::Pipe' => '1.50',
19498             'IO::Socket::INET' => '1.50',
19499             'IO::Socket::UNIX' => '1.50',
19500             'Module::CoreList' => '5.20220620',
19501             'Module::CoreList::Utils'=> '5.20220620',
19502             'ODBM_File' => '1.18',
19503             'OS2::REXX' => '1.06',
19504             'Opcode' => '1.58',
19505             'POSIX' => '2.04',
19506             'SDBM_File' => '1.16',
19507             'Unicode::Normalize' => '1.32',
19508             'XS::APItest' => '1.23',
19509             'builtin' => '0.007',
19510             'encoding::warnings' => '0.14',
19511             'feature' => '1.74',
19512             'threads' => '2.28',
19513             },
19514             removed => {
19515             }
19516             },
19517             5.037002 => {
19518             delta_from => 5.037001,
19519             changed => {
19520             'B' => '1.85',
19521             'B::Concise' => '1.007',
19522             'B::Deparse' => '1.65',
19523             'B::Op_private' => '5.037002',
19524             'CPAN' => '2.34',
19525             'CPAN::Distribution' => '2.34',
19526             'Compress::Raw::Bzip2' => '2.201',
19527             'Compress::Raw::Zlib' => '2.202',
19528             'Compress::Zlib' => '2.201',
19529             'Config' => '5.037002',
19530             'Cwd' => '3.86',
19531             'DB_File' => '1.858',
19532             'Data::Dumper' => '2.186',
19533             'Encode' => '3.18',
19534             'Encode::MIME::Header' => '2.29',
19535             'File::Glob' => '1.38',
19536             'File::Spec' => '3.86',
19537             'File::Spec::AmigaOS' => '3.86',
19538             'File::Spec::Cygwin' => '3.86',
19539             'File::Spec::Epoc' => '3.86',
19540             'File::Spec::Functions' => '3.86',
19541             'File::Spec::Mac' => '3.86',
19542             'File::Spec::OS2' => '3.86',
19543             'File::Spec::Unix' => '3.86',
19544             'File::Spec::VMS' => '3.86',
19545             'File::Spec::Win32' => '3.86',
19546             'Filter::Util::Call' => '1.61',
19547             'Hash::Util' => '0.29',
19548             'I18N::LangTags::List' => '0.41',
19549             'IO::Compress::Adapter::Bzip2'=> '2.201',
19550             'IO::Compress::Adapter::Deflate'=> '2.201',
19551             'IO::Compress::Adapter::Identity'=> '2.201',
19552             'IO::Compress::Base' => '2.201',
19553             'IO::Compress::Base::Common'=> '2.201',
19554             'IO::Compress::Bzip2' => '2.201',
19555             'IO::Compress::Deflate' => '2.201',
19556             'IO::Compress::Gzip' => '2.201',
19557             'IO::Compress::Gzip::Constants'=> '2.201',
19558             'IO::Compress::RawDeflate'=> '2.201',
19559             'IO::Compress::Zip' => '2.201',
19560             'IO::Compress::Zip::Constants'=> '2.201',
19561             'IO::Compress::Zlib::Constants'=> '2.201',
19562             'IO::Compress::Zlib::Extra'=> '2.201',
19563             'IO::Uncompress::Adapter::Bunzip2'=> '2.201',
19564             'IO::Uncompress::Adapter::Identity'=> '2.201',
19565             'IO::Uncompress::Adapter::Inflate'=> '2.201',
19566             'IO::Uncompress::AnyInflate'=> '2.201',
19567             'IO::Uncompress::AnyUncompress'=> '2.201',
19568             'IO::Uncompress::Base' => '2.201',
19569             'IO::Uncompress::Bunzip2'=> '2.201',
19570             'IO::Uncompress::Gunzip'=> '2.201',
19571             'IO::Uncompress::Inflate'=> '2.201',
19572             'IO::Uncompress::RawInflate'=> '2.201',
19573             'IO::Uncompress::Unzip' => '2.201',
19574             'JSON::PP' => '4.10',
19575             'JSON::PP::Boolean' => '4.10',
19576             'Math::BigFloat' => '1.999837',
19577             'Math::BigFloat::Trace' => '0.66',
19578             'Math::BigInt' => '1.999837',
19579             'Math::BigInt::Calc' => '1.999837',
19580             'Math::BigInt::FastCalc'=> '0.5013',
19581             'Math::BigInt::Lib' => '1.999837',
19582             'Math::BigInt::Trace' => '0.66',
19583             'Math::BigRat' => '0.2624',
19584             'Math::BigRat::Trace' => '0.66',
19585             'Module::CoreList' => '5.20220720',
19586             'Module::CoreList::Utils'=> '5.20220720',
19587             'Opcode' => '1.59',
19588             'PerlIO::via::QuotedPrint'=> '0.10',
19589             'Pod::Checker' => '1.75',
19590             'Pod::Usage' => '2.03',
19591             'Socket' => '2.035',
19592             'Storable' => '3.27',
19593             'Test2' => '1.302191',
19594             'Test2::API' => '1.302191',
19595             'Test2::API::Breakage' => '1.302191',
19596             'Test2::API::Context' => '1.302191',
19597             'Test2::API::Instance' => '1.302191',
19598             'Test2::API::InterceptResult'=> '1.302191',
19599             'Test2::API::InterceptResult::Event'=> '1.302191',
19600             'Test2::API::InterceptResult::Facet'=> '1.302191',
19601             'Test2::API::InterceptResult::Hub'=> '1.302191',
19602             'Test2::API::InterceptResult::Squasher'=> '1.302191',
19603             'Test2::API::Stack' => '1.302191',
19604             'Test2::Event' => '1.302191',
19605             'Test2::Event::Bail' => '1.302191',
19606             'Test2::Event::Diag' => '1.302191',
19607             'Test2::Event::Encoding'=> '1.302191',
19608             'Test2::Event::Exception'=> '1.302191',
19609             'Test2::Event::Fail' => '1.302191',
19610             'Test2::Event::Generic' => '1.302191',
19611             'Test2::Event::Note' => '1.302191',
19612             'Test2::Event::Ok' => '1.302191',
19613             'Test2::Event::Pass' => '1.302191',
19614             'Test2::Event::Plan' => '1.302191',
19615             'Test2::Event::Skip' => '1.302191',
19616             'Test2::Event::Subtest' => '1.302191',
19617             'Test2::Event::TAP::Version'=> '1.302191',
19618             'Test2::Event::V2' => '1.302191',
19619             'Test2::Event::Waiting' => '1.302191',
19620             'Test2::EventFacet' => '1.302191',
19621             'Test2::EventFacet::About'=> '1.302191',
19622             'Test2::EventFacet::Amnesty'=> '1.302191',
19623             'Test2::EventFacet::Assert'=> '1.302191',
19624             'Test2::EventFacet::Control'=> '1.302191',
19625             'Test2::EventFacet::Error'=> '1.302191',
19626             'Test2::EventFacet::Hub'=> '1.302191',
19627             'Test2::EventFacet::Info'=> '1.302191',
19628             'Test2::EventFacet::Info::Table'=> '1.302191',
19629             'Test2::EventFacet::Meta'=> '1.302191',
19630             'Test2::EventFacet::Parent'=> '1.302191',
19631             'Test2::EventFacet::Plan'=> '1.302191',
19632             'Test2::EventFacet::Render'=> '1.302191',
19633             'Test2::EventFacet::Trace'=> '1.302191',
19634             'Test2::Formatter' => '1.302191',
19635             'Test2::Formatter::TAP' => '1.302191',
19636             'Test2::Hub' => '1.302191',
19637             'Test2::Hub::Interceptor'=> '1.302191',
19638             'Test2::Hub::Interceptor::Terminator'=> '1.302191',
19639             'Test2::Hub::Subtest' => '1.302191',
19640             'Test2::IPC' => '1.302191',
19641             'Test2::IPC::Driver' => '1.302191',
19642             'Test2::IPC::Driver::Files'=> '1.302191',
19643             'Test2::Tools::Tiny' => '1.302191',
19644             'Test2::Util' => '1.302191',
19645             'Test2::Util::ExternalMeta'=> '1.302191',
19646             'Test2::Util::Facets2Legacy'=> '1.302191',
19647             'Test2::Util::HashBase' => '1.302191',
19648             'Test2::Util::Trace' => '1.302191',
19649             'Test::Builder' => '1.302191',
19650             'Test::Builder::Formatter'=> '1.302191',
19651             'Test::Builder::Module' => '1.302191',
19652             'Test::Builder::Tester' => '1.302191',
19653             'Test::Builder::Tester::Color'=> '1.302191',
19654             'Test::Builder::TodoDiag'=> '1.302191',
19655             'Test::More' => '1.302191',
19656             'Test::Simple' => '1.302191',
19657             'Test::Tester' => '1.302191',
19658             'Test::Tester::Capture' => '1.302191',
19659             'Test::Tester::CaptureRunner'=> '1.302191',
19660             'Test::Tester::Delegate'=> '1.302191',
19661             'Test::use::ok' => '1.302191',
19662             'Text::Balanced' => '2.06',
19663             'XS::APItest' => '1.24',
19664             'bigfloat' => '0.66',
19665             'bigint' => '0.66',
19666             'bignum' => '0.66',
19667             'bigrat' => '0.66',
19668             'builtin' => '0.008',
19669             'feature' => '1.75',
19670             'ok' => '1.302191',
19671             'threads::shared' => '1.65',
19672             },
19673             removed => {
19674             }
19675             },
19676             5.037003 => {
19677             delta_from => 5.037002,
19678             changed => {
19679             'B' => '1.86',
19680             'B::Deparse' => '1.68',
19681             'B::Op_private' => '5.037003',
19682             'Config' => '5.037003',
19683             'Digest::SHA' => '6.03',
19684             'DynaLoader' => '1.53',
19685             'Encode' => '3.19',
19686             'Encode::Alias' => '2.25',
19687             'ExtUtils::PL2Bat' => '0.005',
19688             'File::Find' => '1.41',
19689             'Filter::Util::Call' => '1.64',
19690             'HTTP::Tiny' => '0.082',
19691             'JSON::PP' => '4.11',
19692             'JSON::PP::Boolean' => '4.11',
19693             'List::Util' => '1.63',
19694             'List::Util::XS' => '1.63',
19695             'Memoize' => '1.10',
19696             'Memoize::AnyDBM_File' => '1.10',
19697             'Memoize::Expire' => '1.10',
19698             'Memoize::NDBM_File' => '1.10',
19699             'Memoize::SDBM_File' => '1.10',
19700             'Memoize::Storable' => '1.10',
19701             'Module::CoreList' => '5.20220820',
19702             'Module::CoreList::Utils'=> '5.20220820',
19703             'NDBM_File' => '1.16',
19704             'Opcode' => '1.60',
19705             'Scalar::Util' => '1.63',
19706             'Socket' => '2.036',
19707             'Sub::Util' => '1.63',
19708             'XS::APItest' => '1.25',
19709             'attributes' => '0.35',
19710             'threads' => '2.29',
19711             },
19712             removed => {
19713             'Memoize::ExpireFile' => 1,
19714             'Memoize::ExpireTest' => 1,
19715             }
19716             },
19717             5.037004 => {
19718             delta_from => 5.037003,
19719             changed => {
19720             'B::Deparse' => '1.69',
19721             'B::Op_private' => '5.037004',
19722             'Carp' => '1.54',
19723             'Carp::Heavy' => '1.54',
19724             'Class::Struct' => '0.67',
19725             'Config' => '5.037004',
19726             'Config::Perl::V' => '0.34',
19727             'Errno' => '1.37',
19728             'ExtUtils::ParseXS' => '3.46',
19729             'ExtUtils::ParseXS::Constants'=> '3.46',
19730             'ExtUtils::ParseXS::CountLines'=> '3.46',
19731             'ExtUtils::ParseXS::Eval'=> '3.46',
19732             'ExtUtils::ParseXS::Utilities'=> '3.46',
19733             'ExtUtils::Typemaps' => '3.46',
19734             'ExtUtils::Typemaps::Cmd'=> '3.46',
19735             'ExtUtils::Typemaps::InputMap'=> '3.46',
19736             'ExtUtils::Typemaps::OutputMap'=> '3.46',
19737             'ExtUtils::Typemaps::Type'=> '3.46',
19738             'File::Basename' => '2.86',
19739             'File::Copy' => '2.40',
19740             'File::Spec' => '3.87',
19741             'File::stat' => '1.13',
19742             'FileHandle' => '2.05',
19743             'Hash::Util' => '0.30',
19744             'I18N::Langinfo' => '0.22',
19745             'IO' => '1.51',
19746             'IO::Dir' => '1.51',
19747             'IO::File' => '1.51',
19748             'IO::Handle' => '1.51',
19749             'IO::Pipe' => '1.51',
19750             'IO::Poll' => '1.51',
19751             'IO::Seekable' => '1.51',
19752             'IO::Select' => '1.51',
19753             'IO::Socket' => '1.51',
19754             'IO::Socket::INET' => '1.51',
19755             'IO::Socket::UNIX' => '1.51',
19756             'Locale::Maketext' => '1.32',
19757             'Module::CoreList' => '5.20220920',
19758             'Module::CoreList::Utils'=> '5.20220920',
19759             'Net::protoent' => '1.02',
19760             'Net::servent' => '1.03',
19761             'Opcode' => '1.61',
19762             'POSIX' => '2.06',
19763             'Safe' => '2.44',
19764             'Sys::Hostname' => '1.25',
19765             'Time::HiRes' => '1.9771',
19766             'User::grent' => '1.04',
19767             'User::pwent' => '1.02',
19768             'XS::APItest' => '1.26',
19769             'XSLoader' => '0.32',
19770             'feature' => '1.76',
19771             },
19772             removed => {
19773             }
19774             },
19775             5.037005 => {
19776             delta_from => 5.037004,
19777             changed => {
19778             'B::Deparse' => '1.70',
19779             'B::Op_private' => '5.037005',
19780             'Config' => '5.037005',
19781             'JSON::PP' => '4.12',
19782             'JSON::PP::Boolean' => '4.12',
19783             'Math::Complex' => '1.5903',
19784             'Math::Trig' => '1.2301',
19785             'Memoize' => '1.14',
19786             'Memoize::AnyDBM_File' => '1.14',
19787             'Memoize::Expire' => '1.14',
19788             'Memoize::NDBM_File' => '1.14',
19789             'Memoize::SDBM_File' => '1.14',
19790             'Memoize::Storable' => '1.14',
19791             'Module::CoreList' => '5.20221020',
19792             'Module::CoreList::Utils'=> '5.20221020',
19793             'Net::Ping' => '2.75',
19794             'POSIX' => '2.07',
19795             'Unicode' => '15.0.0',
19796             'threads' => '2.31',
19797             'warnings' => '1.59',
19798             },
19799             removed => {
19800             }
19801             },
19802             5.037006 => {
19803             delta_from => 5.037005,
19804             changed => {
19805             'Attribute::Handlers' => '1.03',
19806             'B' => '1.87',
19807             'B::Deparse' => '1.71',
19808             'B::Op_private' => '5.037006',
19809             'Config' => '5.037006',
19810             'Data::Dumper' => '2.187',
19811             'Devel::PPPort' => '3.69',
19812             'ExtUtils::CBuilder' => '0.280238',
19813             'ExtUtils::CBuilder::Base'=> '0.280238',
19814             'ExtUtils::CBuilder::Platform::Unix'=> '0.280238',
19815             'ExtUtils::CBuilder::Platform::VMS'=> '0.280238',
19816             'ExtUtils::CBuilder::Platform::Windows'=> '0.280238',
19817             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280238',
19818             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280238',
19819             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280238',
19820             'ExtUtils::CBuilder::Platform::aix'=> '0.280238',
19821             'ExtUtils::CBuilder::Platform::android'=> '0.280238',
19822             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280238',
19823             'ExtUtils::CBuilder::Platform::darwin'=> '0.280238',
19824             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280238',
19825             'ExtUtils::CBuilder::Platform::os2'=> '0.280238',
19826             'ExtUtils::ParseXS' => '3.48',
19827             'ExtUtils::ParseXS::Constants'=> '3.48',
19828             'ExtUtils::ParseXS::CountLines'=> '3.48',
19829             'ExtUtils::ParseXS::Eval'=> '3.48',
19830             'ExtUtils::ParseXS::Utilities'=> '3.48',
19831             'ExtUtils::Typemaps' => '3.48',
19832             'ExtUtils::Typemaps::Cmd'=> '3.48',
19833             'ExtUtils::Typemaps::InputMap'=> '3.48',
19834             'ExtUtils::Typemaps::OutputMap'=> '3.48',
19835             'ExtUtils::Typemaps::Type'=> '3.48',
19836             'Getopt::Long' => '2.54',
19837             'Memoize' => '1.15',
19838             'Memoize::AnyDBM_File' => '1.15',
19839             'Memoize::Expire' => '1.15',
19840             'Memoize::NDBM_File' => '1.15',
19841             'Memoize::SDBM_File' => '1.15',
19842             'Memoize::Storable' => '1.15',
19843             'Module::CoreList' => '5.20221120',
19844             'Module::CoreList::Utils'=> '5.20221120',
19845             'Opcode' => '1.62',
19846             'POSIX' => '2.08',
19847             'Storable' => '3.28',
19848             'Time::HiRes' => '1.9772',
19849             'XS::APItest' => '1.27',
19850             'experimental' => '0.029',
19851             'feature' => '1.77',
19852             'overload' => '1.36',
19853             'threads' => '2.32',
19854             'utf8' => '1.25',
19855             'warnings' => '1.61',
19856             },
19857             removed => {
19858             }
19859             },
19860             5.037007 => {
19861             delta_from => 5.037006,
19862             changed => {
19863             'B::Deparse' => '1.72',
19864             'B::Op_private' => '5.037007',
19865             'Config' => '5.037007',
19866             'Cwd' => '3.88',
19867             'ExtUtils::Miniperl' => '1.13',
19868             'ExtUtils::ParseXS' => '3.49',
19869             'ExtUtils::ParseXS::Constants'=> '3.49',
19870             'ExtUtils::ParseXS::CountLines'=> '3.49',
19871             'ExtUtils::ParseXS::Eval'=> '3.49',
19872             'ExtUtils::ParseXS::Utilities'=> '3.49',
19873             'ExtUtils::Typemaps' => '3.49',
19874             'ExtUtils::Typemaps::Cmd'=> '3.49',
19875             'ExtUtils::Typemaps::InputMap'=> '3.49',
19876             'ExtUtils::Typemaps::OutputMap'=> '3.49',
19877             'ExtUtils::Typemaps::Type'=> '3.49',
19878             'File::Glob' => '1.39',
19879             'File::Spec' => '3.88',
19880             'File::Spec::AmigaOS' => '3.88',
19881             'File::Spec::Cygwin' => '3.88',
19882             'File::Spec::Epoc' => '3.88',
19883             'File::Spec::Functions' => '3.88',
19884             'File::Spec::Mac' => '3.88',
19885             'File::Spec::OS2' => '3.88',
19886             'File::Spec::Unix' => '3.88',
19887             'File::Spec::VMS' => '3.88',
19888             'File::Spec::Win32' => '3.88',
19889             'Module::CoreList' => '5.20221220',
19890             'Module::CoreList::Utils'=> '5.20221220',
19891             'Opcode' => '1.63',
19892             'POSIX' => '2.10',
19893             'Pod::Html' => '1.34',
19894             'Pod::Html::Util' => '1.34',
19895             'Pod::Man' => '5.00',
19896             'Pod::ParseLink' => '5.00',
19897             'Pod::Text' => '5.00',
19898             'Pod::Text::Color' => '5.00',
19899             'Pod::Text::Overstrike' => '5.00',
19900             'Pod::Text::Termcap' => '5.00',
19901             'XS::APItest' => '1.28',
19902             'experimental' => '0.030',
19903             'feature' => '1.78',
19904             'parent' => '0.239',
19905             'threads' => '2.33',
19906             },
19907             removed => {
19908             }
19909             },
19910             5.037008 => {
19911             delta_from => 5.037007,
19912             changed => {
19913             'B::Op_private' => '5.037008',
19914             'Config' => '5.037008',
19915             'Config::Perl::V' => '0.35',
19916             'ExtUtils::Command' => '7.66',
19917             'ExtUtils::Command::MM' => '7.66',
19918             'ExtUtils::Install' => '2.22',
19919             'ExtUtils::Installed' => '2.22',
19920             'ExtUtils::Liblist' => '7.66',
19921             'ExtUtils::Liblist::Kid'=> '7.66',
19922             'ExtUtils::MM' => '7.66',
19923             'ExtUtils::MM_AIX' => '7.66',
19924             'ExtUtils::MM_Any' => '7.66',
19925             'ExtUtils::MM_BeOS' => '7.66',
19926             'ExtUtils::MM_Cygwin' => '7.66',
19927             'ExtUtils::MM_DOS' => '7.66',
19928             'ExtUtils::MM_Darwin' => '7.66',
19929             'ExtUtils::MM_MacOS' => '7.66',
19930             'ExtUtils::MM_NW5' => '7.66',
19931             'ExtUtils::MM_OS2' => '7.66',
19932             'ExtUtils::MM_OS390' => '7.66',
19933             'ExtUtils::MM_QNX' => '7.66',
19934             'ExtUtils::MM_UWIN' => '7.66',
19935             'ExtUtils::MM_Unix' => '7.66',
19936             'ExtUtils::MM_VMS' => '7.66',
19937             'ExtUtils::MM_VOS' => '7.66',
19938             'ExtUtils::MM_Win32' => '7.66',
19939             'ExtUtils::MM_Win95' => '7.66',
19940             'ExtUtils::MY' => '7.66',
19941             'ExtUtils::MakeMaker' => '7.66',
19942             'ExtUtils::MakeMaker::Config'=> '7.66',
19943             'ExtUtils::MakeMaker::Locale'=> '7.66',
19944             'ExtUtils::MakeMaker::version'=> '7.66',
19945             'ExtUtils::MakeMaker::version::regex'=> '7.66',
19946             'ExtUtils::Mkbootstrap' => '7.66',
19947             'ExtUtils::Mksymlists' => '7.66',
19948             'ExtUtils::Packlist' => '2.22',
19949             'ExtUtils::testlib' => '7.66',
19950             'File::Find' => '1.42',
19951             'IO::Zlib' => '1.14',
19952             'JSON::PP' => '4.16',
19953             'JSON::PP::Boolean' => '4.16',
19954             'Math::Complex' => '1.6',
19955             'Math::Trig' => '1.6',
19956             'Module::CoreList' => '5.20230120',
19957             'Module::CoreList::Utils'=> '5.20230120',
19958             'POSIX' => '2.11',
19959             'Pod::Man' => '5.01',
19960             'Pod::ParseLink' => '5.01',
19961             'Pod::Text' => '5.01',
19962             'Pod::Text::Color' => '5.01',
19963             'Pod::Text::Overstrike' => '5.01',
19964             'Pod::Text::Termcap' => '5.01',
19965             'Storable' => '3.29',
19966             'XS::APItest' => '1.30',
19967             'feature' => '1.79',
19968             're' => '0.44',
19969             'threads' => '2.34',
19970             },
19971             removed => {
19972             }
19973             },
19974             5.037009 => {
19975             delta_from => 5.037008,
19976             changed => {
19977             'B' => '1.88',
19978             'B::Op_private' => '5.037009',
19979             'Compress::Raw::Bzip2' => '2.204',
19980             'Compress::Raw::Zlib' => '2.204',
19981             'Compress::Zlib' => '2.204',
19982             'Config' => '5.037009',
19983             'Devel::PPPort' => '3.70',
19984             'Devel::Peek' => '1.33',
19985             'Fatal' => '2.36',
19986             'File::Find' => '1.43',
19987             'IO::Compress::Adapter::Bzip2'=> '2.204',
19988             'IO::Compress::Adapter::Deflate'=> '2.204',
19989             'IO::Compress::Adapter::Identity'=> '2.204',
19990             'IO::Compress::Base' => '2.204',
19991             'IO::Compress::Base::Common'=> '2.204',
19992             'IO::Compress::Bzip2' => '2.204',
19993             'IO::Compress::Deflate' => '2.204',
19994             'IO::Compress::Gzip' => '2.204',
19995             'IO::Compress::Gzip::Constants'=> '2.204',
19996             'IO::Compress::RawDeflate'=> '2.204',
19997             'IO::Compress::Zip' => '2.204',
19998             'IO::Compress::Zip::Constants'=> '2.204',
19999             'IO::Compress::Zlib::Constants'=> '2.204',
20000             'IO::Compress::Zlib::Extra'=> '2.204',
20001             'IO::Uncompress::Adapter::Bunzip2'=> '2.204',
20002             'IO::Uncompress::Adapter::Identity'=> '2.204',
20003             'IO::Uncompress::Adapter::Inflate'=> '2.204',
20004             'IO::Uncompress::AnyInflate'=> '2.204',
20005             'IO::Uncompress::AnyUncompress'=> '2.204',
20006             'IO::Uncompress::Base' => '2.204',
20007             'IO::Uncompress::Bunzip2'=> '2.204',
20008             'IO::Uncompress::Gunzip'=> '2.204',
20009             'IO::Uncompress::Inflate'=> '2.204',
20010             'IO::Uncompress::RawInflate'=> '2.204',
20011             'IO::Uncompress::Unzip' => '2.204',
20012             'Math::Complex' => '1.61',
20013             'Math::Trig' => '1.61',
20014             'Memoize' => '1.16',
20015             'Memoize::AnyDBM_File' => '1.16',
20016             'Memoize::Expire' => '1.16',
20017             'Memoize::NDBM_File' => '1.16',
20018             'Memoize::SDBM_File' => '1.16',
20019             'Memoize::Storable' => '1.16',
20020             'Module::CoreList' => '5.20230220',
20021             'Module::CoreList::Utils'=> '5.20230220',
20022             'Opcode' => '1.64',
20023             'Term::Cap' => '1.18',
20024             'Test2' => '1.302192',
20025             'Test2::API' => '1.302192',
20026             'Test2::API::Breakage' => '1.302192',
20027             'Test2::API::Context' => '1.302192',
20028             'Test2::API::Instance' => '1.302192',
20029             'Test2::API::InterceptResult'=> '1.302192',
20030             'Test2::API::InterceptResult::Event'=> '1.302192',
20031             'Test2::API::InterceptResult::Facet'=> '1.302192',
20032             'Test2::API::InterceptResult::Hub'=> '1.302192',
20033             'Test2::API::InterceptResult::Squasher'=> '1.302192',
20034             'Test2::API::Stack' => '1.302192',
20035             'Test2::Event' => '1.302192',
20036             'Test2::Event::Bail' => '1.302192',
20037             'Test2::Event::Diag' => '1.302192',
20038             'Test2::Event::Encoding'=> '1.302192',
20039             'Test2::Event::Exception'=> '1.302192',
20040             'Test2::Event::Fail' => '1.302192',
20041             'Test2::Event::Generic' => '1.302192',
20042             'Test2::Event::Note' => '1.302192',
20043             'Test2::Event::Ok' => '1.302192',
20044             'Test2::Event::Pass' => '1.302192',
20045             'Test2::Event::Plan' => '1.302192',
20046             'Test2::Event::Skip' => '1.302192',
20047             'Test2::Event::Subtest' => '1.302192',
20048             'Test2::Event::TAP::Version'=> '1.302192',
20049             'Test2::Event::V2' => '1.302192',
20050             'Test2::Event::Waiting' => '1.302192',
20051             'Test2::EventFacet' => '1.302192',
20052             'Test2::EventFacet::About'=> '1.302192',
20053             'Test2::EventFacet::Amnesty'=> '1.302192',
20054             'Test2::EventFacet::Assert'=> '1.302192',
20055             'Test2::EventFacet::Control'=> '1.302192',
20056             'Test2::EventFacet::Error'=> '1.302192',
20057             'Test2::EventFacet::Hub'=> '1.302192',
20058             'Test2::EventFacet::Info'=> '1.302192',
20059             'Test2::EventFacet::Info::Table'=> '1.302192',
20060             'Test2::EventFacet::Meta'=> '1.302192',
20061             'Test2::EventFacet::Parent'=> '1.302192',
20062             'Test2::EventFacet::Plan'=> '1.302192',
20063             'Test2::EventFacet::Render'=> '1.302192',
20064             'Test2::EventFacet::Trace'=> '1.302192',
20065             'Test2::Formatter' => '1.302192',
20066             'Test2::Formatter::TAP' => '1.302192',
20067             'Test2::Hub' => '1.302192',
20068             'Test2::Hub::Interceptor'=> '1.302192',
20069             'Test2::Hub::Interceptor::Terminator'=> '1.302192',
20070             'Test2::Hub::Subtest' => '1.302192',
20071             'Test2::IPC' => '1.302192',
20072             'Test2::IPC::Driver' => '1.302192',
20073             'Test2::IPC::Driver::Files'=> '1.302192',
20074             'Test2::Tools::Tiny' => '1.302192',
20075             'Test2::Util' => '1.302192',
20076             'Test2::Util::ExternalMeta'=> '1.302192',
20077             'Test2::Util::Facets2Legacy'=> '1.302192',
20078             'Test2::Util::HashBase' => '1.302192',
20079             'Test2::Util::Trace' => '1.302192',
20080             'Test::Builder' => '1.302192',
20081             'Test::Builder::Formatter'=> '1.302192',
20082             'Test::Builder::Module' => '1.302192',
20083             'Test::Builder::Tester' => '1.302192',
20084             'Test::Builder::Tester::Color'=> '1.302192',
20085             'Test::Builder::TodoDiag'=> '1.302192',
20086             'Test::More' => '1.302192',
20087             'Test::Simple' => '1.302192',
20088             'Test::Tester' => '1.302192',
20089             'Test::Tester::Capture' => '1.302192',
20090             'Test::Tester::CaptureRunner'=> '1.302192',
20091             'Test::Tester::Delegate'=> '1.302192',
20092             'Test::use::ok' => '1.302192',
20093             'Tie::File' => '1.07',
20094             'UNIVERSAL' => '1.15',
20095             'autodie' => '2.36',
20096             'autodie::Scope::Guard' => '2.36',
20097             'autodie::Scope::GuardStack'=> '2.36',
20098             'autodie::Util' => '2.36',
20099             'autodie::exception' => '2.36',
20100             'autodie::exception::system'=> '2.36',
20101             'autodie::hints' => '2.36',
20102             'autodie::skip' => '2.36',
20103             'experimental' => '0.031',
20104             'feature' => '1.80',
20105             'mro' => '1.28',
20106             'ok' => '1.302192',
20107             'parent' => '0.241',
20108             'stable' => '0.031',
20109             'warnings' => '1.62',
20110             },
20111             removed => {
20112             }
20113             },
20114             5.037010 => {
20115             delta_from => 5.037009,
20116             changed => {
20117             'B::Op_private' => '5.037010',
20118             'Benchmark' => '1.24',
20119             'Class::Struct' => '0.68',
20120             'Config' => '5.03701',
20121             'Config::Perl::V' => '0.36',
20122             'Cwd' => '3.89',
20123             'Data::Dumper' => '2.188',
20124             'Digest::SHA' => '6.04',
20125             'Env' => '1.06',
20126             'Math::Complex' => '1.62',
20127             'Math::Trig' => '1.62',
20128             'Module::CoreList' => '5.20230320',
20129             'Module::CoreList::Utils'=> '5.20230320',
20130             'Net::Cmd' => '3.15',
20131             'Net::Config' => '3.15',
20132             'Net::Domain' => '3.15',
20133             'Net::FTP' => '3.15',
20134             'Net::FTP::A' => '3.15',
20135             'Net::FTP::E' => '3.15',
20136             'Net::FTP::I' => '3.15',
20137             'Net::FTP::L' => '3.15',
20138             'Net::FTP::dataconn' => '3.15',
20139             'Net::NNTP' => '3.15',
20140             'Net::Netrc' => '3.15',
20141             'Net::POP3' => '3.15',
20142             'Net::SMTP' => '3.15',
20143             'Net::Time' => '3.15',
20144             'POSIX' => '2.12',
20145             'Storable' => '3.31',
20146             'Test2' => '1.302194',
20147             'Test2::API' => '1.302194',
20148             'Test2::API::Breakage' => '1.302194',
20149             'Test2::API::Context' => '1.302194',
20150             'Test2::API::Instance' => '1.302194',
20151             'Test2::API::InterceptResult'=> '1.302194',
20152             'Test2::API::InterceptResult::Event'=> '1.302194',
20153             'Test2::API::InterceptResult::Facet'=> '1.302194',
20154             'Test2::API::InterceptResult::Hub'=> '1.302194',
20155             'Test2::API::InterceptResult::Squasher'=> '1.302194',
20156             'Test2::API::Stack' => '1.302194',
20157             'Test2::Event' => '1.302194',
20158             'Test2::Event::Bail' => '1.302194',
20159             'Test2::Event::Diag' => '1.302194',
20160             'Test2::Event::Encoding'=> '1.302194',
20161             'Test2::Event::Exception'=> '1.302194',
20162             'Test2::Event::Fail' => '1.302194',
20163             'Test2::Event::Generic' => '1.302194',
20164             'Test2::Event::Note' => '1.302194',
20165             'Test2::Event::Ok' => '1.302194',
20166             'Test2::Event::Pass' => '1.302194',
20167             'Test2::Event::Plan' => '1.302194',
20168             'Test2::Event::Skip' => '1.302194',
20169             'Test2::Event::Subtest' => '1.302194',
20170             'Test2::Event::TAP::Version'=> '1.302194',
20171             'Test2::Event::V2' => '1.302194',
20172             'Test2::Event::Waiting' => '1.302194',
20173             'Test2::EventFacet' => '1.302194',
20174             'Test2::EventFacet::About'=> '1.302194',
20175             'Test2::EventFacet::Amnesty'=> '1.302194',
20176             'Test2::EventFacet::Assert'=> '1.302194',
20177             'Test2::EventFacet::Control'=> '1.302194',
20178             'Test2::EventFacet::Error'=> '1.302194',
20179             'Test2::EventFacet::Hub'=> '1.302194',
20180             'Test2::EventFacet::Info'=> '1.302194',
20181             'Test2::EventFacet::Info::Table'=> '1.302194',
20182             'Test2::EventFacet::Meta'=> '1.302194',
20183             'Test2::EventFacet::Parent'=> '1.302194',
20184             'Test2::EventFacet::Plan'=> '1.302194',
20185             'Test2::EventFacet::Render'=> '1.302194',
20186             'Test2::EventFacet::Trace'=> '1.302194',
20187             'Test2::Formatter' => '1.302194',
20188             'Test2::Formatter::TAP' => '1.302194',
20189             'Test2::Hub' => '1.302194',
20190             'Test2::Hub::Interceptor'=> '1.302194',
20191             'Test2::Hub::Interceptor::Terminator'=> '1.302194',
20192             'Test2::Hub::Subtest' => '1.302194',
20193             'Test2::IPC' => '1.302194',
20194             'Test2::IPC::Driver' => '1.302194',
20195             'Test2::IPC::Driver::Files'=> '1.302194',
20196             'Test2::Tools::Tiny' => '1.302194',
20197             'Test2::Util' => '1.302194',
20198             'Test2::Util::ExternalMeta'=> '1.302194',
20199             'Test2::Util::Facets2Legacy'=> '1.302194',
20200             'Test2::Util::HashBase' => '1.302194',
20201             'Test2::Util::Trace' => '1.302194',
20202             'Test::Builder' => '1.302194',
20203             'Test::Builder::Formatter'=> '1.302194',
20204             'Test::Builder::Module' => '1.302194',
20205             'Test::Builder::Tester' => '1.302194',
20206             'Test::Builder::Tester::Color'=> '1.302194',
20207             'Test::Builder::TodoDiag'=> '1.302194',
20208             'Test::More' => '1.302194',
20209             'Test::Simple' => '1.302194',
20210             'Test::Tester' => '1.302194',
20211             'Test::Tester::Capture' => '1.302194',
20212             'Test::Tester::CaptureRunner'=> '1.302194',
20213             'Test::Tester::Delegate'=> '1.302194',
20214             'Test::use::ok' => '1.302194',
20215             'Time::HiRes' => '1.9774',
20216             'XS::APItest' => '1.32',
20217             'feature' => '1.81',
20218             'ok' => '1.302194',
20219             'overload' => '1.37',
20220             'threads' => '2.35',
20221             'threads::shared' => '1.67',
20222             'warnings' => '1.63',
20223             'warnings::register' => '1.05',
20224             },
20225             removed => {
20226             }
20227             },
20228             5.037011 => {
20229             delta_from => 5.037010,
20230             changed => {
20231             'B::Deparse' => '1.73',
20232             'B::Op_private' => '5.037011',
20233             'Config' => '5.037011',
20234             'Devel::PPPort' => '3.71',
20235             'ExtUtils::Command' => '7.70',
20236             'ExtUtils::Command::MM' => '7.70',
20237             'ExtUtils::Liblist' => '7.70',
20238             'ExtUtils::Liblist::Kid'=> '7.70',
20239             'ExtUtils::MM' => '7.70',
20240             'ExtUtils::MM_AIX' => '7.70',
20241             'ExtUtils::MM_Any' => '7.70',
20242             'ExtUtils::MM_BeOS' => '7.70',
20243             'ExtUtils::MM_Cygwin' => '7.70',
20244             'ExtUtils::MM_DOS' => '7.70',
20245             'ExtUtils::MM_Darwin' => '7.70',
20246             'ExtUtils::MM_MacOS' => '7.70',
20247             'ExtUtils::MM_NW5' => '7.70',
20248             'ExtUtils::MM_OS2' => '7.70',
20249             'ExtUtils::MM_OS390' => '7.70',
20250             'ExtUtils::MM_QNX' => '7.70',
20251             'ExtUtils::MM_UWIN' => '7.70',
20252             'ExtUtils::MM_Unix' => '7.70',
20253             'ExtUtils::MM_VMS' => '7.70',
20254             'ExtUtils::MM_VOS' => '7.70',
20255             'ExtUtils::MM_Win32' => '7.70',
20256             'ExtUtils::MM_Win95' => '7.70',
20257             'ExtUtils::MY' => '7.70',
20258             'ExtUtils::MakeMaker' => '7.70',
20259             'ExtUtils::MakeMaker::Config'=> '7.70',
20260             'ExtUtils::MakeMaker::Locale'=> '7.70',
20261             'ExtUtils::MakeMaker::version'=> '7.70',
20262             'ExtUtils::MakeMaker::version::regex'=> '7.70',
20263             'ExtUtils::Mkbootstrap' => '7.70',
20264             'ExtUtils::Mksymlists' => '7.70',
20265             'ExtUtils::ParseXS' => '3.50',
20266             'ExtUtils::ParseXS::Constants'=> '3.50',
20267             'ExtUtils::ParseXS::CountLines'=> '3.50',
20268             'ExtUtils::ParseXS::Eval'=> '3.50',
20269             'ExtUtils::ParseXS::Utilities'=> '3.50',
20270             'ExtUtils::testlib' => '7.70',
20271             'File::Copy' => '2.41',
20272             'Locale::Maketext' => '1.33',
20273             'Module::CoreList' => '5.20230420',
20274             'Module::CoreList::Utils'=> '5.20230420',
20275             'Net::Ping' => '2.76',
20276             'feature' => '1.82',
20277             'threads' => '2.36',
20278             'threads::shared' => '1.68',
20279             'warnings' => '1.64',
20280             },
20281             removed => {
20282             }
20283             },
20284             5.036001 => {
20285             delta_from => 5.036000,
20286             changed => {
20287             'B::Op_private' => '5.036001',
20288             'Config' => '5.036001',
20289             'Module::CoreList' => '5.20230423',
20290             'Module::CoreList::Utils'=> '5.20230423',
20291             },
20292             removed => {
20293             }
20294             },
20295             5.038000 => {
20296             delta_from => 5.037011,
20297             changed => {
20298             'B::Deparse' => '1.74',
20299             'B::Op_private' => '5.038000',
20300             'CPAN' => '2.36',
20301             'CPAN::HTTP::Client' => '1.9602',
20302             'Compress::Raw::Bzip2' => '2.204_001',
20303             'Compress::Raw::Zlib' => '2.204_001',
20304             'Config' => '5.038',
20305             'Digest::MD5' => '2.58_01',
20306             'DynaLoader' => '1.54',
20307             'ExtUtils::ParseXS' => '3.51',
20308             'ExtUtils::ParseXS::Constants'=> '3.51',
20309             'ExtUtils::ParseXS::CountLines'=> '3.51',
20310             'ExtUtils::ParseXS::Eval'=> '3.51',
20311             'ExtUtils::ParseXS::Utilities'=> '3.51',
20312             'ExtUtils::Typemaps' => '3.51',
20313             'ExtUtils::Typemaps::Cmd'=> '3.51',
20314             'ExtUtils::Typemaps::InputMap'=> '3.51',
20315             'ExtUtils::Typemaps::OutputMap'=> '3.51',
20316             'ExtUtils::Typemaps::Type'=> '3.51',
20317             'File::Glob' => '1.40',
20318             'HTTP::Tiny' => '0.086',
20319             'IO' => '1.52',
20320             'IO::Dir' => '1.52',
20321             'IO::File' => '1.52',
20322             'IO::Handle' => '1.52',
20323             'IO::Pipe' => '1.52',
20324             'IO::Poll' => '1.52',
20325             'IO::Seekable' => '1.52',
20326             'IO::Select' => '1.52',
20327             'IO::Socket' => '1.52',
20328             'IO::Socket::INET' => '1.52',
20329             'IO::Socket::IP' => '0.41_01',
20330             'IO::Socket::UNIX' => '1.52',
20331             'MIME::Base64' => '3.16_01',
20332             'MIME::QuotedPrint' => '3.16_01',
20333             'Module::CoreList' => '5.20230520',
20334             'Module::CoreList::Utils'=> '5.20230520',
20335             'POSIX' => '2.13',
20336             'SDBM_File' => '1.17',
20337             'Storable' => '3.32',
20338             'Time::HiRes' => '1.9775',
20339             'Time::Piece' => '1.3401_01',
20340             'warnings' => '1.65',
20341             },
20342             removed => {
20343             }
20344             },
20345             5.039001 => {
20346             delta_from => 5.038000,
20347             changed => {
20348             'B::Op_private' => '5.039001',
20349             'CPAN::Meta::Requirements'=> '2.143',
20350             'CPAN::Meta::Requirements::Range'=> '2.143',
20351             'Compress::Raw::Bzip2' => '2.205',
20352             'Compress::Raw::Zlib' => '2.205',
20353             'Compress::Zlib' => '2.205',
20354             'Config' => '5.039001',
20355             'Errno' => '1.38',
20356             'ExtUtils::CBuilder' => '0.280239',
20357             'ExtUtils::CBuilder::Base'=> '0.280239',
20358             'ExtUtils::CBuilder::Platform::Unix'=> '0.280239',
20359             'ExtUtils::CBuilder::Platform::VMS'=> '0.280239',
20360             'ExtUtils::CBuilder::Platform::Windows'=> '0.280239',
20361             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280239',
20362             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280239',
20363             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280239',
20364             'ExtUtils::CBuilder::Platform::aix'=> '0.280239',
20365             'ExtUtils::CBuilder::Platform::android'=> '0.280239',
20366             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280239',
20367             'ExtUtils::CBuilder::Platform::darwin'=> '0.280239',
20368             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280239',
20369             'ExtUtils::CBuilder::Platform::os2'=> '0.280239',
20370             'ExtUtils::Manifest' => '1.75',
20371             'IO::Compress::Adapter::Bzip2'=> '2.205',
20372             'IO::Compress::Adapter::Deflate'=> '2.205',
20373             'IO::Compress::Adapter::Identity'=> '2.205',
20374             'IO::Compress::Base' => '2.205',
20375             'IO::Compress::Base::Common'=> '2.205',
20376             'IO::Compress::Bzip2' => '2.205',
20377             'IO::Compress::Deflate' => '2.205',
20378             'IO::Compress::Gzip' => '2.205',
20379             'IO::Compress::Gzip::Constants'=> '2.205',
20380             'IO::Compress::RawDeflate'=> '2.205',
20381             'IO::Compress::Zip' => '2.205',
20382             'IO::Compress::Zip::Constants'=> '2.205',
20383             'IO::Compress::Zlib::Constants'=> '2.205',
20384             'IO::Compress::Zlib::Extra'=> '2.205',
20385             'IO::Uncompress::Adapter::Bunzip2'=> '2.205',
20386             'IO::Uncompress::Adapter::Identity'=> '2.205',
20387             'IO::Uncompress::Adapter::Inflate'=> '2.205',
20388             'IO::Uncompress::AnyInflate'=> '2.205',
20389             'IO::Uncompress::AnyUncompress'=> '2.205',
20390             'IO::Uncompress::Base' => '2.205',
20391             'IO::Uncompress::Bunzip2'=> '2.205',
20392             'IO::Uncompress::Gunzip'=> '2.205',
20393             'IO::Uncompress::Inflate'=> '2.205',
20394             'IO::Uncompress::RawInflate'=> '2.205',
20395             'IO::Uncompress::Unzip' => '2.205',
20396             'Math::BigFloat' => '1.999839',
20397             'Math::BigInt' => '1.999839',
20398             'Math::BigInt::Calc' => '1.999839',
20399             'Math::BigInt::FastCalc'=> '0.5014',
20400             'Math::BigInt::Lib' => '1.999839',
20401             'Module::CoreList' => '5.20230720',
20402             'Module::CoreList::Utils'=> '5.20230720',
20403             'Module::Metadata' => '1.000038',
20404             'POSIX' => '2.14',
20405             'Socket' => '2.037',
20406             'Test2' => '1.302195',
20407             'Test2::API' => '1.302195',
20408             'Test2::API::Breakage' => '1.302195',
20409             'Test2::API::Context' => '1.302195',
20410             'Test2::API::Instance' => '1.302195',
20411             'Test2::API::InterceptResult'=> '1.302195',
20412             'Test2::API::InterceptResult::Event'=> '1.302195',
20413             'Test2::API::InterceptResult::Facet'=> '1.302195',
20414             'Test2::API::InterceptResult::Hub'=> '1.302195',
20415             'Test2::API::InterceptResult::Squasher'=> '1.302195',
20416             'Test2::API::Stack' => '1.302195',
20417             'Test2::Event' => '1.302195',
20418             'Test2::Event::Bail' => '1.302195',
20419             'Test2::Event::Diag' => '1.302195',
20420             'Test2::Event::Encoding'=> '1.302195',
20421             'Test2::Event::Exception'=> '1.302195',
20422             'Test2::Event::Fail' => '1.302195',
20423             'Test2::Event::Generic' => '1.302195',
20424             'Test2::Event::Note' => '1.302195',
20425             'Test2::Event::Ok' => '1.302195',
20426             'Test2::Event::Pass' => '1.302195',
20427             'Test2::Event::Plan' => '1.302195',
20428             'Test2::Event::Skip' => '1.302195',
20429             'Test2::Event::Subtest' => '1.302195',
20430             'Test2::Event::TAP::Version'=> '1.302195',
20431             'Test2::Event::V2' => '1.302195',
20432             'Test2::Event::Waiting' => '1.302195',
20433             'Test2::EventFacet' => '1.302195',
20434             'Test2::EventFacet::About'=> '1.302195',
20435             'Test2::EventFacet::Amnesty'=> '1.302195',
20436             'Test2::EventFacet::Assert'=> '1.302195',
20437             'Test2::EventFacet::Control'=> '1.302195',
20438             'Test2::EventFacet::Error'=> '1.302195',
20439             'Test2::EventFacet::Hub'=> '1.302195',
20440             'Test2::EventFacet::Info'=> '1.302195',
20441             'Test2::EventFacet::Info::Table'=> '1.302195',
20442             'Test2::EventFacet::Meta'=> '1.302195',
20443             'Test2::EventFacet::Parent'=> '1.302195',
20444             'Test2::EventFacet::Plan'=> '1.302195',
20445             'Test2::EventFacet::Render'=> '1.302195',
20446             'Test2::EventFacet::Trace'=> '1.302195',
20447             'Test2::Formatter' => '1.302195',
20448             'Test2::Formatter::TAP' => '1.302195',
20449             'Test2::Hub' => '1.302195',
20450             'Test2::Hub::Interceptor'=> '1.302195',
20451             'Test2::Hub::Interceptor::Terminator'=> '1.302195',
20452             'Test2::Hub::Subtest' => '1.302195',
20453             'Test2::IPC' => '1.302195',
20454             'Test2::IPC::Driver' => '1.302195',
20455             'Test2::IPC::Driver::Files'=> '1.302195',
20456             'Test2::Tools::Tiny' => '1.302195',
20457             'Test2::Util' => '1.302195',
20458             'Test2::Util::ExternalMeta'=> '1.302195',
20459             'Test2::Util::Facets2Legacy'=> '1.302195',
20460             'Test2::Util::HashBase' => '1.302195',
20461             'Test2::Util::Trace' => '1.302195',
20462             'Test::Builder' => '1.302195',
20463             'Test::Builder::Formatter'=> '1.302195',
20464             'Test::Builder::Module' => '1.302195',
20465             'Test::Builder::Tester' => '1.302195',
20466             'Test::Builder::Tester::Color'=> '1.302195',
20467             'Test::Builder::TodoDiag'=> '1.302195',
20468             'Test::More' => '1.302195',
20469             'Test::Simple' => '1.302195',
20470             'Test::Tester' => '1.302195',
20471             'Test::Tester::Capture' => '1.302195',
20472             'Test::Tester::CaptureRunner'=> '1.302195',
20473             'Test::Tester::Delegate'=> '1.302195',
20474             'Test::use::ok' => '1.302195',
20475             'Text::Tabs' => '2023.0511',
20476             'Text::Wrap' => '2023.0511',
20477             'Time::HiRes' => '1.9776',
20478             'Time::Local' => '1.35',
20479             'UNIVERSAL' => '1.16',
20480             'feature' => '1.83',
20481             'ok' => '1.302195',
20482             'perlfaq' => '5.20230701',
20483             'threads' => '2.37',
20484             'warnings' => '1.66',
20485             'warnings::register' => '1.06',
20486             },
20487             removed => {
20488             }
20489             },
20490             5.039002 => {
20491             delta_from => 5.039001,
20492             changed => {
20493             'App::Prove' => '3.47',
20494             'App::Prove::State' => '3.47',
20495             'App::Prove::State::Result'=> '3.47',
20496             'App::Prove::State::Result::Test'=> '3.47',
20497             'B::Op_private' => '5.039002',
20498             'Compress::Raw::Bzip2' => '2.206',
20499             'Compress::Raw::Zlib' => '2.206',
20500             'Compress::Zlib' => '2.206',
20501             'Config' => '5.039002',
20502             'Cwd' => '3.90',
20503             'Devel::Peek' => '1.34',
20504             'ExtUtils::Miniperl' => '1.14',
20505             'File::Spec' => '3.90',
20506             'File::Spec::AmigaOS' => '3.90',
20507             'File::Spec::Cygwin' => '3.90',
20508             'File::Spec::Epoc' => '3.90',
20509             'File::Spec::Functions' => '3.90',
20510             'File::Spec::Mac' => '3.90',
20511             'File::Spec::OS2' => '3.90',
20512             'File::Spec::Unix' => '3.90',
20513             'File::Spec::VMS' => '3.90',
20514             'File::Spec::Win32' => '3.90',
20515             'HTTP::Tiny' => '0.088',
20516             'IO::Compress::Adapter::Bzip2'=> '2.206',
20517             'IO::Compress::Adapter::Deflate'=> '2.206',
20518             'IO::Compress::Adapter::Identity'=> '2.206',
20519             'IO::Compress::Base' => '2.206',
20520             'IO::Compress::Base::Common'=> '2.206',
20521             'IO::Compress::Bzip2' => '2.206',
20522             'IO::Compress::Deflate' => '2.206',
20523             'IO::Compress::Gzip' => '2.206',
20524             'IO::Compress::Gzip::Constants'=> '2.206',
20525             'IO::Compress::RawDeflate'=> '2.206',
20526             'IO::Compress::Zip' => '2.206',
20527             'IO::Compress::Zip::Constants'=> '2.206',
20528             'IO::Compress::Zlib::Constants'=> '2.206',
20529             'IO::Compress::Zlib::Extra'=> '2.206',
20530             'IO::Socket::IP' => '0.42',
20531             'IO::Uncompress::Adapter::Bunzip2'=> '2.206',
20532             'IO::Uncompress::Adapter::Identity'=> '2.206',
20533             'IO::Uncompress::Adapter::Inflate'=> '2.206',
20534             'IO::Uncompress::AnyInflate'=> '2.206',
20535             'IO::Uncompress::AnyUncompress'=> '2.206',
20536             'IO::Uncompress::Base' => '2.206',
20537             'IO::Uncompress::Bunzip2'=> '2.206',
20538             'IO::Uncompress::Gunzip'=> '2.206',
20539             'IO::Uncompress::Inflate'=> '2.206',
20540             'IO::Uncompress::RawInflate'=> '2.206',
20541             'IO::Uncompress::Unzip' => '2.206',
20542             'Module::CoreList' => '5.20230820',
20543             'Module::CoreList::Utils'=> '5.20230820',
20544             'NDBM_File' => '1.17',
20545             'Opcode' => '1.65',
20546             'POSIX' => '2.15',
20547             'PerlIO::scalar' => '0.32',
20548             'PerlIO::via' => '0.19',
20549             'Pod::Html' => '1.35',
20550             'Pod::Html::Util' => '1.35',
20551             'Pod::Simple' => '3.45',
20552             'Pod::Simple::BlackBox' => '3.45',
20553             'Pod::Simple::Checker' => '3.45',
20554             'Pod::Simple::Debug' => '3.45',
20555             'Pod::Simple::DumpAsText'=> '3.45',
20556             'Pod::Simple::DumpAsXML'=> '3.45',
20557             'Pod::Simple::HTML' => '3.45',
20558             'Pod::Simple::HTMLBatch'=> '3.45',
20559             'Pod::Simple::HTMLLegacy'=> '5.02',
20560             'Pod::Simple::LinkSection'=> '3.45',
20561             'Pod::Simple::Methody' => '3.45',
20562             'Pod::Simple::Progress' => '3.45',
20563             'Pod::Simple::PullParser'=> '3.45',
20564             'Pod::Simple::PullParserEndToken'=> '3.45',
20565             'Pod::Simple::PullParserStartToken'=> '3.45',
20566             'Pod::Simple::PullParserTextToken'=> '3.45',
20567             'Pod::Simple::PullParserToken'=> '3.45',
20568             'Pod::Simple::RTF' => '3.45',
20569             'Pod::Simple::Search' => '3.45',
20570             'Pod::Simple::SimpleTree'=> '3.45',
20571             'Pod::Simple::Text' => '3.45',
20572             'Pod::Simple::TextContent'=> '3.45',
20573             'Pod::Simple::TiedOutFH'=> '3.45',
20574             'Pod::Simple::Transcode'=> '3.45',
20575             'Pod::Simple::TranscodeDumb'=> '3.45',
20576             'Pod::Simple::TranscodeSmart'=> '3.45',
20577             'Pod::Simple::XHTML' => '3.45',
20578             'Pod::Simple::XMLOutStream'=> '3.45',
20579             'Safe' => '2.45',
20580             'TAP::Base' => '3.47',
20581             'TAP::Formatter::Base' => '3.47',
20582             'TAP::Formatter::Color' => '3.47',
20583             'TAP::Formatter::Console'=> '3.47',
20584             'TAP::Formatter::Console::ParallelSession'=> '3.47',
20585             'TAP::Formatter::Console::Session'=> '3.47',
20586             'TAP::Formatter::File' => '3.47',
20587             'TAP::Formatter::File::Session'=> '3.47',
20588             'TAP::Formatter::Session'=> '3.47',
20589             'TAP::Harness' => '3.47',
20590             'TAP::Harness::Env' => '3.47',
20591             'TAP::Object' => '3.47',
20592             'TAP::Parser' => '3.47',
20593             'TAP::Parser::Aggregator'=> '3.47',
20594             'TAP::Parser::Grammar' => '3.47',
20595             'TAP::Parser::Iterator' => '3.47',
20596             'TAP::Parser::Iterator::Array'=> '3.47',
20597             'TAP::Parser::Iterator::Process'=> '3.47',
20598             'TAP::Parser::Iterator::Stream'=> '3.47',
20599             'TAP::Parser::IteratorFactory'=> '3.47',
20600             'TAP::Parser::Multiplexer'=> '3.47',
20601             'TAP::Parser::Result' => '3.47',
20602             'TAP::Parser::Result::Bailout'=> '3.47',
20603             'TAP::Parser::Result::Comment'=> '3.47',
20604             'TAP::Parser::Result::Plan'=> '3.47',
20605             'TAP::Parser::Result::Pragma'=> '3.47',
20606             'TAP::Parser::Result::Test'=> '3.47',
20607             'TAP::Parser::Result::Unknown'=> '3.47',
20608             'TAP::Parser::Result::Version'=> '3.47',
20609             'TAP::Parser::Result::YAML'=> '3.47',
20610             'TAP::Parser::ResultFactory'=> '3.47',
20611             'TAP::Parser::Scheduler'=> '3.47',
20612             'TAP::Parser::Scheduler::Job'=> '3.47',
20613             'TAP::Parser::Scheduler::Spinner'=> '3.47',
20614             'TAP::Parser::Source' => '3.47',
20615             'TAP::Parser::SourceHandler'=> '3.47',
20616             'TAP::Parser::SourceHandler::Executable'=> '3.47',
20617             'TAP::Parser::SourceHandler::File'=> '3.47',
20618             'TAP::Parser::SourceHandler::Handle'=> '3.47',
20619             'TAP::Parser::SourceHandler::Perl'=> '3.47',
20620             'TAP::Parser::SourceHandler::RawTAP'=> '3.47',
20621             'TAP::Parser::YAMLish::Reader'=> '3.47',
20622             'TAP::Parser::YAMLish::Writer'=> '3.47',
20623             'Test::Harness' => '3.47',
20624             'XS::APItest' => '1.33',
20625             'builtin' => '0.009',
20626             'feature' => '1.84',
20627             'perlfaq' => '5.20230812',
20628             'strict' => '1.13',
20629             'threads' => '2.38',
20630             'warnings' => '1.67',
20631             },
20632             removed => {
20633             }
20634             },
20635             );
20636              
20637             sub is_core
20638             {
20639 43 100 66 43 1 368 shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0];
      100        
20640 43         86 my $module = shift;
20641 43 100       113 my $module_version = @_ > 0 ? shift : undef;
20642 43 100       88 my $perl_version = @_ > 0 ? shift : $];
20643              
20644 43         86 my $first_release = first_release($module);
20645              
20646 43 100 100     368 return 0 if !defined($first_release) || $first_release > $perl_version;
20647              
20648 32         76 my $final_release = removed_from($module);
20649              
20650 32 100 100     138 return 0 if defined($final_release) && $perl_version >= $final_release;
20651              
20652             # If a minimum version of the module was specified:
20653             # Step through all perl releases ($prn)
20654             # so we can find what version of the module
20655             # was included in the specified version of perl.
20656             # On the way if we pass the required module version, we can
20657             # short-circuit and return true
20658 28 100       59 if (defined($module_version)) {
20659 21         39 my $module_version_object = eval { version->parse($module_version) };
  21         184  
20660 21 100       57 if (!defined($module_version_object)) {
20661 1         17 (my $err = $@) =~ s/^Invalid version format\b/Invalid version '$module_version' specified/;
20662 1         7 die $err;
20663             }
20664             # The Perl releases aren't a linear sequence, but a tree. We need to build the path
20665             # of releases from 5 to the specified release, and follow the module's version(s)
20666             # along that path.
20667 20         46 my @releases = ($perl_version);
20668 20         34 my $rel = $perl_version;
20669 20         43 while (defined($rel)) {
20670             # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
20671 498   66     1397 my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
20672 498         871 $rel = $this_delta->{delta_from};
20673 498 100       1096 unshift(@releases, $rel) if defined($rel);
20674             }
20675             RELEASE:
20676 20         46 foreach my $prn (@releases) {
20677 382 100       692 next RELEASE if $prn < $first_release;
20678 291 50       480 last RELEASE if $prn > $perl_version;
20679             next unless defined(my $next_module_version
20680 291 100       1058 = $delta{$prn}->{changed}->{$module});
20681 56 100       79 return 1 if eval { version->parse($next_module_version) >= $module_version_object };
  56         568  
20682             }
20683 4         37 return 0;
20684             }
20685              
20686 7 100       53 return 1 if !defined($final_release);
20687              
20688 2         14 return $perl_version <= $final_release;
20689             }
20690              
20691             %version = _undelta(\%delta);
20692              
20693             %deprecated = (
20694             5.011 => {
20695             changed => { map { $_ => 1 } qw/
20696             Class::ISA
20697             Pod::Plainer
20698             Shell
20699             Switch
20700             /},
20701             },
20702             5.011001 => { delta_from => 5.011 },
20703             5.011002 => { delta_from => 5.011001 },
20704             5.011003 => { delta_from => 5.011002 },
20705             5.011004 => { delta_from => 5.011003 },
20706             5.011005 => { delta_from => 5.011004 },
20707              
20708             5.012 => { delta_from => 5.011005 },
20709             5.012001 => { delta_from => 5.012 },
20710             5.012002 => { delta_from => 5.012001 },
20711             5.012003 => { delta_from => 5.012002 },
20712             5.012004 => { delta_from => 5.012003 },
20713             5.012005 => { delta_from => 5.012004 },
20714              
20715             5.013 => { delta_from => 5.012005 },
20716             5.013001 => {
20717             delta_from => 5.013,
20718             removed => { map { $_ => 1 } qw/
20719             Class::ISA
20720             Pod::Plainer
20721             Switch
20722             /},
20723             },
20724             5.013002 => { delta_from => 5.013001 },
20725             5.013003 => { delta_from => 5.013002 },
20726             5.013004 => { delta_from => 5.013003 },
20727             5.013005 => { delta_from => 5.013004 },
20728             5.013006 => { delta_from => 5.013005 },
20729             5.013007 => { delta_from => 5.013006 },
20730             5.013008 => { delta_from => 5.013007 },
20731             5.013009 => { delta_from => 5.013008 },
20732             5.01301 => { delta_from => 5.013009 },
20733             5.013011 => { delta_from => 5.01301 },
20734              
20735             5.014 => { delta_from => 5.013011 },
20736             5.014001 => { delta_from => 5.014 },
20737             5.014002 => { delta_from => 5.014001 },
20738             5.014003 => { delta_from => 5.014002 },
20739             5.014004 => { delta_from => 5.014003 },
20740              
20741             5.015 => {
20742             delta_from => 5.014004,
20743             removed => { Shell => 1 },
20744             },
20745             5.015001 => { delta_from => 5.015 },
20746             5.015002 => { delta_from => 5.015001 },
20747             5.015003 => { delta_from => 5.015002 },
20748             5.015004 => { delta_from => 5.015003 },
20749             5.015005 => { delta_from => 5.015004 },
20750             5.015006 => { delta_from => 5.015005 },
20751             5.015007 => { delta_from => 5.015006 },
20752             5.015008 => { delta_from => 5.015007 },
20753             5.015009 => { delta_from => 5.015008 },
20754              
20755             5.016 => { delta_from => 5.015009 },
20756             5.016001 => { delta_from => 5.016 },
20757             5.016002 => { delta_from => 5.016001 },
20758             5.016003 => { delta_from => 5.016002 },
20759              
20760             5.017 => { delta_from => 5.016003 },
20761             5.017001 => { delta_from => 5.017 },
20762             5.017002 => { delta_from => 5.017001 },
20763             5.017003 => { delta_from => 5.017002 },
20764             5.017004 => { delta_from => 5.017003 },
20765             5.017005 => { delta_from => 5.017004 },
20766             5.017006 => { delta_from => 5.017005 },
20767             5.017007 => { delta_from => 5.017006 },
20768             5.017008 => {
20769             delta_from => 5.017007,
20770             changed => { 'Pod::LaTeX' => 1 },
20771             },
20772             5.017009 => {
20773             delta_from => 5.017008,
20774             changed => { map { $_ => 1 } qw/
20775             Archive::Extract
20776             B::Lint
20777             B::Lint::Debug
20778             CPANPLUS
20779             CPANPLUS::Backend
20780             CPANPLUS::Backend::RV
20781             CPANPLUS::Config
20782             CPANPLUS::Config::HomeEnv
20783             CPANPLUS::Configure
20784             CPANPLUS::Configure::Setup
20785             CPANPLUS::Dist
20786             CPANPLUS::Dist::Autobundle
20787             CPANPLUS::Dist::Base
20788             CPANPLUS::Dist::Build
20789             CPANPLUS::Dist::Build::Constants
20790             CPANPLUS::Dist::MM
20791             CPANPLUS::Dist::Sample
20792             CPANPLUS::Error
20793             CPANPLUS::Internals
20794             CPANPLUS::Internals::Constants
20795             CPANPLUS::Internals::Constants::Report
20796             CPANPLUS::Internals::Extract
20797             CPANPLUS::Internals::Fetch
20798             CPANPLUS::Internals::Report
20799             CPANPLUS::Internals::Search
20800             CPANPLUS::Internals::Source
20801             CPANPLUS::Internals::Source::Memory
20802             CPANPLUS::Internals::Source::SQLite
20803             CPANPLUS::Internals::Source::SQLite::Tie
20804             CPANPLUS::Internals::Utils
20805             CPANPLUS::Internals::Utils::Autoflush
20806             CPANPLUS::Module
20807             CPANPLUS::Module::Author
20808             CPANPLUS::Module::Author::Fake
20809             CPANPLUS::Module::Checksums
20810             CPANPLUS::Module::Fake
20811             CPANPLUS::Module::Signature
20812             CPANPLUS::Selfupdate
20813             CPANPLUS::Shell
20814             CPANPLUS::Shell::Classic
20815             CPANPLUS::Shell::Default
20816             CPANPLUS::Shell::Default::Plugins::CustomSource
20817             CPANPLUS::Shell::Default::Plugins::Remote
20818             CPANPLUS::Shell::Default::Plugins::Source
20819             Devel::InnerPackage
20820             File::CheckTree
20821             Log::Message
20822             Log::Message::Config
20823             Log::Message::Handlers
20824             Log::Message::Item
20825             Log::Message::Simple
20826             Module::Pluggable
20827             Module::Pluggable::Object
20828             Object::Accessor
20829             Term::UI
20830             Term::UI::History
20831             Text::Soundex
20832             /},
20833             },
20834             5.01701 => { delta_from => 5.017009 },
20835             5.017011 => { delta_from => 5.01701 },
20836              
20837             5.018 => { delta_from => 5.017011 },
20838             5.018001 => {
20839             delta_from => 5.018,
20840             changed => {
20841             },
20842             removed => {
20843             }
20844             },
20845             5.018002 => {
20846             delta_from => 5.018001,
20847             changed => {
20848             },
20849             removed => {
20850             }
20851             },
20852             5.018003 => {
20853             delta_from => 5.018,
20854             changed => {
20855             },
20856             removed => {
20857             }
20858             },
20859             5.018004 => {
20860             delta_from => 5.018,
20861             changed => {
20862             },
20863             removed => {
20864             }
20865             },
20866              
20867             5.019 => {
20868             delta_from => 5.018,
20869             changed => { 'Module::Build' => 1 },
20870             removed => { map { $_ => 1 } qw/
20871             Archive::Extract
20872             B::Lint
20873             B::Lint::Debug
20874             CPANPLUS
20875             CPANPLUS::Backend
20876             CPANPLUS::Backend::RV
20877             CPANPLUS::Config
20878             CPANPLUS::Config::HomeEnv
20879             CPANPLUS::Configure
20880             CPANPLUS::Configure::Setup
20881             CPANPLUS::Dist
20882             CPANPLUS::Dist::Autobundle
20883             CPANPLUS::Dist::Base
20884             CPANPLUS::Dist::Build
20885             CPANPLUS::Dist::Build::Constants
20886             CPANPLUS::Dist::MM
20887             CPANPLUS::Dist::Sample
20888             CPANPLUS::Error
20889             CPANPLUS::Internals
20890             CPANPLUS::Internals::Constants
20891             CPANPLUS::Internals::Constants::Report
20892             CPANPLUS::Internals::Extract
20893             CPANPLUS::Internals::Fetch
20894             CPANPLUS::Internals::Report
20895             CPANPLUS::Internals::Search
20896             CPANPLUS::Internals::Source
20897             CPANPLUS::Internals::Source::Memory
20898             CPANPLUS::Internals::Source::SQLite
20899             CPANPLUS::Internals::Source::SQLite::Tie
20900             CPANPLUS::Internals::Utils
20901             CPANPLUS::Internals::Utils::Autoflush
20902             CPANPLUS::Module
20903             CPANPLUS::Module::Author
20904             CPANPLUS::Module::Author::Fake
20905             CPANPLUS::Module::Checksums
20906             CPANPLUS::Module::Fake
20907             CPANPLUS::Module::Signature
20908             CPANPLUS::Selfupdate
20909             CPANPLUS::Shell
20910             CPANPLUS::Shell::Classic
20911             CPANPLUS::Shell::Default
20912             CPANPLUS::Shell::Default::Plugins::CustomSource
20913             CPANPLUS::Shell::Default::Plugins::Remote
20914             CPANPLUS::Shell::Default::Plugins::Source
20915             Devel::InnerPackage
20916             File::CheckTree
20917             Log::Message
20918             Log::Message::Config
20919             Log::Message::Handlers
20920             Log::Message::Item
20921             Log::Message::Simple
20922             Module::Pluggable
20923             Module::Pluggable::Object
20924             Object::Accessor
20925             Pod::LaTeX
20926             Term::UI
20927             Term::UI::History
20928             Text::Soundex
20929             /}
20930             },
20931             5.019001 => {
20932             delta_from => 5.019,
20933             changed => {
20934             },
20935             removed => {
20936             }
20937             },
20938             5.019002 => {
20939             delta_from => 5.019001,
20940             changed => {
20941             },
20942             removed => {
20943             }
20944             },
20945             5.019003 => {
20946             delta_from => 5.019002,
20947             changed => {
20948             },
20949             removed => {
20950             }
20951             },
20952             5.019004 => {
20953             delta_from => 5.019003,
20954             changed => {
20955             'Module::Build::Base' => '1',
20956             'Module::Build::Compat' => '1',
20957             'Module::Build::Config' => '1',
20958             'Module::Build::ConfigData'=> '1',
20959             'Module::Build::Cookbook'=> '1',
20960             'Module::Build::Dumper' => '1',
20961             'Module::Build::ModuleInfo'=> '1',
20962             'Module::Build::Notes' => '1',
20963             'Module::Build::PPMMaker'=> '1',
20964             'Module::Build::Platform::Default'=> '1',
20965             'Module::Build::Platform::MacOS'=> '1',
20966             'Module::Build::Platform::Unix'=> '1',
20967             'Module::Build::Platform::VMS'=> '1',
20968             'Module::Build::Platform::VOS'=> '1',
20969             'Module::Build::Platform::Windows'=> '1',
20970             'Module::Build::Platform::aix'=> '1',
20971             'Module::Build::Platform::cygwin'=> '1',
20972             'Module::Build::Platform::darwin'=> '1',
20973             'Module::Build::Platform::os2'=> '1',
20974             'Module::Build::PodParser'=> '1',
20975             'Module::Build::Version'=> '1',
20976             'Module::Build::YAML' => '1',
20977             'inc::latest' => '1',
20978             },
20979             removed => {
20980             }
20981             },
20982             5.019005 => {
20983             delta_from => 5.019004,
20984             changed => {
20985             },
20986             removed => {
20987             }
20988             },
20989             5.019006 => {
20990             delta_from => 5.019005,
20991             changed => {
20992             'Package::Constants' => '1',
20993             },
20994             removed => {
20995             }
20996             },
20997             5.019007 => {
20998             delta_from => 5.019006,
20999             changed => {
21000             'CGI' => '1',
21001             'CGI::Apache' => '1',
21002             'CGI::Carp' => '1',
21003             'CGI::Cookie' => '1',
21004             'CGI::Fast' => '1',
21005             'CGI::Pretty' => '1',
21006             'CGI::Push' => '1',
21007             'CGI::Switch' => '1',
21008             'CGI::Util' => '1',
21009             },
21010             removed => {
21011             }
21012             },
21013             5.019008 => {
21014             delta_from => 5.019007,
21015             changed => {
21016             },
21017             removed => {
21018             }
21019             },
21020             5.019009 => {
21021             delta_from => 5.019008,
21022             changed => {
21023             },
21024             removed => {
21025             }
21026             },
21027             5.01901 => {
21028             delta_from => 5.019009,
21029             changed => {
21030             },
21031             removed => {
21032             }
21033             },
21034             5.019011 => {
21035             delta_from => 5.019010,
21036             changed => {
21037             },
21038             removed => {
21039             }
21040             },
21041             5.020000 => {
21042             delta_from => 5.019011,
21043             changed => {
21044             },
21045             removed => {
21046             }
21047             },
21048             5.021000 => {
21049             delta_from => 5.020000,
21050             changed => {
21051             },
21052             removed => {
21053             'CGI' => 1,
21054             'CGI::Apache' => 1,
21055             'CGI::Carp' => 1,
21056             'CGI::Cookie' => 1,
21057             'CGI::Fast' => 1,
21058             'CGI::Pretty' => 1,
21059             'CGI::Push' => 1,
21060             'CGI::Switch' => 1,
21061             'CGI::Util' => 1,
21062             'Module::Build' => 1,
21063             'Module::Build::Base' => 1,
21064             'Module::Build::Compat' => 1,
21065             'Module::Build::Config' => 1,
21066             'Module::Build::ConfigData'=> 1,
21067             'Module::Build::Cookbook'=> 1,
21068             'Module::Build::Dumper' => 1,
21069             'Module::Build::ModuleInfo'=> 1,
21070             'Module::Build::Notes' => 1,
21071             'Module::Build::PPMMaker'=> 1,
21072             'Module::Build::Platform::Default'=> 1,
21073             'Module::Build::Platform::MacOS'=> 1,
21074             'Module::Build::Platform::Unix'=> 1,
21075             'Module::Build::Platform::VMS'=> 1,
21076             'Module::Build::Platform::VOS'=> 1,
21077             'Module::Build::Platform::Windows'=> 1,
21078             'Module::Build::Platform::aix'=> 1,
21079             'Module::Build::Platform::cygwin'=> 1,
21080             'Module::Build::Platform::darwin'=> 1,
21081             'Module::Build::Platform::os2'=> 1,
21082             'Module::Build::PodParser'=> 1,
21083             'Module::Build::Version'=> 1,
21084             'Module::Build::YAML' => 1,
21085             'Package::Constants' => 1,
21086             'inc::latest' => 1,
21087             }
21088             },
21089             5.021001 => {
21090             delta_from => 5.021000,
21091             changed => {
21092             },
21093             removed => {
21094             }
21095             },
21096             5.021002 => {
21097             delta_from => 5.021001,
21098             changed => {
21099             },
21100             removed => {
21101             }
21102             },
21103             5.021003 => {
21104             delta_from => 5.021002,
21105             changed => {
21106             },
21107             removed => {
21108             }
21109             },
21110             5.020001 => {
21111             delta_from => 5.020000,
21112             changed => {
21113             },
21114             removed => {
21115             }
21116             },
21117             5.021004 => {
21118             delta_from => 5.021003,
21119             changed => {
21120             },
21121             removed => {
21122             }
21123             },
21124             5.021005 => {
21125             delta_from => 5.021004,
21126             changed => {
21127             },
21128             removed => {
21129             }
21130             },
21131             5.021006 => {
21132             delta_from => 5.021005,
21133             changed => {
21134             },
21135             removed => {
21136             }
21137             },
21138             5.021007 => {
21139             delta_from => 5.021006,
21140             changed => {
21141             },
21142             removed => {
21143             }
21144             },
21145             5.021008 => {
21146             delta_from => 5.021007,
21147             changed => {
21148             },
21149             removed => {
21150             }
21151             },
21152             5.020002 => {
21153             delta_from => 5.020001,
21154             changed => {
21155             },
21156             removed => {
21157             }
21158             },
21159             5.021009 => {
21160             delta_from => 5.021008,
21161             changed => {
21162             },
21163             removed => {
21164             }
21165             },
21166             5.021010 => {
21167             delta_from => 5.021009,
21168             changed => {
21169             },
21170             removed => {
21171             }
21172             },
21173             5.021011 => {
21174             delta_from => 5.02101,
21175             changed => {
21176             },
21177             removed => {
21178             }
21179             },
21180             5.022000 => {
21181             delta_from => 5.021011,
21182             changed => {
21183             },
21184             removed => {
21185             }
21186             },
21187             5.023000 => {
21188             delta_from => 5.022000,
21189             changed => {
21190             },
21191             removed => {
21192             }
21193             },
21194             5.023001 => {
21195             delta_from => 5.023000,
21196             changed => {
21197             },
21198             removed => {
21199             }
21200             },
21201             5.023002 => {
21202             delta_from => 5.023001,
21203             changed => {
21204             },
21205             removed => {
21206             }
21207             },
21208             5.020003 => {
21209             delta_from => 5.020002,
21210             changed => {
21211             },
21212             removed => {
21213             }
21214             },
21215             5.023003 => {
21216             delta_from => 5.023002,
21217             changed => {
21218             },
21219             removed => {
21220             }
21221             },
21222             5.023004 => {
21223             delta_from => 5.023003,
21224             changed => {
21225             },
21226             removed => {
21227             }
21228             },
21229             5.023005 => {
21230             delta_from => 5.023004,
21231             changed => {
21232             },
21233             removed => {
21234             }
21235             },
21236             5.022001 => {
21237             delta_from => 5.022,
21238             changed => {
21239             },
21240             removed => {
21241             }
21242             },
21243             5.023006 => {
21244             delta_from => 5.023005,
21245             changed => {
21246             },
21247             removed => {
21248             }
21249             },
21250             5.023007 => {
21251             delta_from => 5.023006,
21252             changed => {
21253             },
21254             removed => {
21255             }
21256             },
21257             5.023008 => {
21258             delta_from => 5.023007,
21259             changed => {
21260             },
21261             removed => {
21262             }
21263             },
21264             5.023009 => {
21265             delta_from => 5.023008,
21266             changed => {
21267             },
21268             removed => {
21269             }
21270             },
21271             5.022002 => {
21272             delta_from => 5.022001,
21273             changed => {
21274             },
21275             removed => {
21276             }
21277             },
21278             5.024000 => {
21279             delta_from => 5.023009,
21280             changed => {
21281             },
21282             removed => {
21283             }
21284             },
21285             5.025000 => {
21286             delta_from => 5.024,
21287             changed => {
21288             },
21289             removed => {
21290             }
21291             },
21292             5.025001 => {
21293             delta_from => 5.025,
21294             changed => {
21295             },
21296             removed => {
21297             }
21298             },
21299             5.025002 => {
21300             delta_from => 5.025001,
21301             changed => {
21302             },
21303             removed => {
21304             }
21305             },
21306             5.025003 => {
21307             delta_from => 5.025002,
21308             changed => {
21309             },
21310             removed => {
21311             }
21312             },
21313             5.025004 => {
21314             delta_from => 5.025003,
21315             changed => {
21316             },
21317             removed => {
21318             }
21319             },
21320             5.025005 => {
21321             delta_from => 5.025004,
21322             changed => {
21323             },
21324             removed => {
21325             }
21326             },
21327             5.025006 => {
21328             delta_from => 5.025005,
21329             changed => {
21330             },
21331             removed => {
21332             }
21333             },
21334             5.025007 => {
21335             delta_from => 5.025006,
21336             changed => {
21337             },
21338             removed => {
21339             }
21340             },
21341             5.025008 => {
21342             delta_from => 5.025007,
21343             changed => {
21344             },
21345             removed => {
21346             }
21347             },
21348             5.022003 => {
21349             delta_from => 5.022002,
21350             changed => {
21351             },
21352             removed => {
21353             }
21354             },
21355             5.024001 => {
21356             delta_from => 5.024000,
21357             changed => {
21358             },
21359             removed => {
21360             }
21361             },
21362             5.025009 => {
21363             delta_from => 5.025008,
21364             changed => {
21365             },
21366             removed => {
21367             }
21368             },
21369             5.025010 => {
21370             delta_from => 5.025009,
21371             changed => {
21372             },
21373             removed => {
21374             }
21375             },
21376             5.025011 => {
21377             delta_from => 5.025010,
21378             changed => {
21379             },
21380             removed => {
21381             }
21382             },
21383             5.025012 => {
21384             delta_from => 5.025011,
21385             changed => {
21386             },
21387             removed => {
21388             }
21389             },
21390             5.026000 => {
21391             delta_from => 5.025012,
21392             changed => {
21393             },
21394             removed => {
21395             }
21396             },
21397             5.027000 => {
21398             delta_from => 5.026,
21399             changed => {
21400             },
21401             removed => {
21402             }
21403             },
21404             5.027001 => {
21405             delta_from => 5.027,
21406             changed => {
21407             },
21408             removed => {
21409             }
21410             },
21411             5.022004 => {
21412             delta_from => 5.022003,
21413             changed => {
21414             },
21415             removed => {
21416             }
21417             },
21418             5.024002 => {
21419             delta_from => 5.024001,
21420             changed => {
21421             },
21422             removed => {
21423             }
21424             },
21425             5.027002 => {
21426             delta_from => 5.027001,
21427             changed => {
21428             },
21429             removed => {
21430             }
21431             },
21432             5.027003 => {
21433             delta_from => 5.027002,
21434             changed => {
21435             'B::Debug' => '1',
21436             },
21437             removed => {
21438             }
21439             },
21440             5.027004 => {
21441             delta_from => 5.027003,
21442             changed => {
21443             },
21444             removed => {
21445             }
21446             },
21447             5.024003 => {
21448             delta_from => 5.024002,
21449             changed => {
21450             },
21451             removed => {
21452             }
21453             },
21454             5.026001 => {
21455             delta_from => 5.026000,
21456             changed => {
21457             },
21458             removed => {
21459             }
21460             },
21461             5.027005 => {
21462             delta_from => 5.027004,
21463             changed => {
21464             },
21465             removed => {
21466             }
21467             },
21468             5.027006 => {
21469             delta_from => 5.027005,
21470             changed => {
21471             },
21472             removed => {
21473             }
21474             },
21475             5.027007 => {
21476             delta_from => 5.027006,
21477             changed => {
21478             },
21479             removed => {
21480             }
21481             },
21482             5.027008 => {
21483             delta_from => 5.027007,
21484             changed => {
21485             },
21486             removed => {
21487             }
21488             },
21489             5.027009 => {
21490             delta_from => 5.027008,
21491             changed => {
21492             },
21493             removed => {
21494             }
21495             },
21496             5.027010 => {
21497             delta_from => 5.027009,
21498             changed => {
21499             },
21500             removed => {
21501             }
21502             },
21503             5.024004 => {
21504             delta_from => 5.024003,
21505             changed => {
21506             },
21507             removed => {
21508             }
21509             },
21510             5.026002 => {
21511             delta_from => 5.026001,
21512             changed => {
21513             },
21514             removed => {
21515             }
21516             },
21517             5.027011 => {
21518             delta_from => 5.02701,
21519             changed => {
21520             },
21521             removed => {
21522             }
21523             },
21524             5.028000 => {
21525             delta_from => 5.027011,
21526             changed => {
21527             },
21528             removed => {
21529             }
21530             },
21531             5.029000 => {
21532             delta_from => 5.028,
21533             changed => {
21534             },
21535             removed => {
21536             }
21537             },
21538             5.029001 => {
21539             delta_from => 5.029,
21540             changed => {
21541             },
21542             removed => {
21543             }
21544             },
21545             5.029002 => {
21546             delta_from => 5.029001,
21547             changed => {
21548             },
21549             removed => {
21550             }
21551             },
21552             5.029003 => {
21553             delta_from => 5.029002,
21554             changed => {
21555             },
21556             removed => {
21557             }
21558             },
21559             5.029004 => {
21560             delta_from => 5.029003,
21561             changed => {
21562             },
21563             removed => {
21564             arybase => '1',
21565             }
21566             },
21567             5.029005 => {
21568             delta_from => 5.027002,
21569             changed => {
21570             },
21571             removed => {
21572             }
21573             },
21574             5.026003 => {
21575             delta_from => 5.026002,
21576             changed => {
21577             },
21578             removed => {
21579             }
21580             },
21581             5.028001 => {
21582             delta_from => 5.028000,
21583             changed => {
21584             },
21585             removed => {
21586             }
21587             },
21588             5.029006 => {
21589             delta_from => 5.029005,
21590             changed => {
21591             },
21592             removed => {
21593             }
21594             },
21595             5.029007 => {
21596             delta_from => 5.029006,
21597             changed => {
21598             },
21599             removed => {
21600             }
21601             },
21602             5.029008 => {
21603             delta_from => 5.029007,
21604             changed => {
21605             },
21606             removed => {
21607             }
21608             },
21609             5.029009 => {
21610             delta_from => 5.029008,
21611             changed => {
21612             },
21613             removed => {
21614             }
21615             },
21616             5.028002 => {
21617             delta_from => 5.028001,
21618             changed => {
21619             },
21620             removed => {
21621             }
21622             },
21623             5.029010 => {
21624             delta_from => 5.029009,
21625             changed => {
21626             },
21627             removed => {
21628             }
21629             },
21630             5.030000 => {
21631             delta_from => 5.02901,
21632             changed => {
21633             },
21634             removed => {
21635             }
21636             },
21637             5.031000 => {
21638             delta_from => 5.030000,
21639             changed => {
21640             },
21641             removed => {
21642             }
21643             },
21644             5.031001 => {
21645             delta_from => 5.031000,
21646             changed => {
21647             },
21648             removed => {
21649             }
21650             },
21651             5.031002 => {
21652             delta_from => 5.031001,
21653             changed => {
21654             },
21655             removed => {
21656             }
21657             },
21658             5.031003 => {
21659             delta_from => 5.031002,
21660             changed => {
21661             },
21662             removed => {
21663             }
21664             },
21665             5.031004 => {
21666             delta_from => 5.031003,
21667             changed => {
21668             },
21669             removed => {
21670             }
21671             },
21672             5.031005 => {
21673             delta_from => 5.031004,
21674             changed => {
21675             },
21676             removed => {
21677             }
21678             },
21679             5.030001 => {
21680             delta_from => 5.030000,
21681             changed => {
21682             },
21683             removed => {
21684             }
21685             },
21686             5.031006 => {
21687             delta_from => 5.031005,
21688             changed => {
21689             },
21690             removed => {
21691             }
21692             },
21693             5.031007 => {
21694             delta_from => 5.031006,
21695             changed => {
21696             },
21697             removed => {
21698             }
21699             },
21700             5.031008 => {
21701             delta_from => 5.031007,
21702             changed => {
21703             },
21704             removed => {
21705             }
21706             },
21707             5.031009 => {
21708             delta_from => 5.031008,
21709             changed => {
21710             },
21711             removed => {
21712             }
21713             },
21714             5.030002 => {
21715             delta_from => 5.030001,
21716             changed => {
21717             },
21718             removed => {
21719             }
21720             },
21721             5.031010 => {
21722             delta_from => 5.031009,
21723             changed => {
21724             },
21725             removed => {
21726             }
21727             },
21728             5.031011 => {
21729             delta_from => 5.03101,
21730             changed => {
21731             },
21732             removed => {
21733             }
21734             },
21735             5.028003 => {
21736             delta_from => 5.028002,
21737             changed => {
21738             },
21739             removed => {
21740             }
21741             },
21742             5.030003 => {
21743             delta_from => 5.030002,
21744             changed => {
21745             },
21746             removed => {
21747             }
21748             },
21749             5.032000 => {
21750             delta_from => 5.031011,
21751             changed => {
21752             },
21753             removed => {
21754             }
21755             },
21756             5.033000 => {
21757             delta_from => 5.032,
21758             changed => {
21759             },
21760             removed => {
21761             }
21762             },
21763             5.033001 => {
21764             delta_from => 5.033000,
21765             changed => {
21766             },
21767             removed => {
21768             }
21769             },
21770             5.033002 => {
21771             delta_from => 5.033001,
21772             changed => {
21773             },
21774             removed => {
21775             }
21776             },
21777             5.033003 => {
21778             delta_from => 5.033002,
21779             changed => {
21780             },
21781             removed => {
21782             }
21783             },
21784             5.033004 => {
21785             delta_from => 5.033003,
21786             changed => {
21787             },
21788             removed => {
21789             }
21790             },
21791             5.033005 => {
21792             delta_from => 5.033004,
21793             changed => {
21794             },
21795             removed => {
21796             }
21797             },
21798             5.033006 => {
21799             delta_from => 5.033005,
21800             changed => {
21801             },
21802             removed => {
21803             }
21804             },
21805             5.032001 => {
21806             delta_from => 5.032,
21807             changed => {
21808             },
21809             removed => {
21810             }
21811             },
21812             5.033007 => {
21813             delta_from => 5.033006,
21814             changed => {
21815             },
21816             removed => {
21817             }
21818             },
21819             5.033008 => {
21820             delta_from => 5.033007,
21821             changed => {
21822             },
21823             removed => {
21824             }
21825             },
21826             5.033009 => {
21827             delta_from => 5.033008,
21828             changed => {
21829             },
21830             removed => {
21831             }
21832             },
21833             5.034000 => {
21834             delta_from => 5.033009,
21835             changed => {
21836             },
21837             removed => {
21838             }
21839             },
21840             5.035000 => {
21841             delta_from => 5.034,
21842             changed => {
21843             },
21844             removed => {
21845             }
21846             },
21847             5.035001 => {
21848             delta_from => 5.035,
21849             changed => {
21850             },
21851             removed => {
21852             }
21853             },
21854             5.035002 => {
21855             delta_from => 5.035001,
21856             changed => {
21857             },
21858             removed => {
21859             }
21860             },
21861             5.035003 => {
21862             delta_from => 5.035002,
21863             changed => {
21864             },
21865             removed => {
21866             }
21867             },
21868             5.035004 => {
21869             delta_from => 5.035003,
21870             changed => {
21871             },
21872             removed => {
21873             }
21874             },
21875             5.035005 => {
21876             delta_from => 5.035004,
21877             changed => {
21878             },
21879             removed => {
21880             }
21881             },
21882             5.035006 => {
21883             delta_from => 5.035005,
21884             changed => {
21885             },
21886             removed => {
21887             }
21888             },
21889             5.035007 => {
21890             delta_from => 5.035006,
21891             changed => {
21892             },
21893             removed => {
21894             }
21895             },
21896             5.035008 => {
21897             delta_from => 5.035007,
21898             changed => {
21899             },
21900             removed => {
21901             }
21902             },
21903             5.035009 => {
21904             delta_from => 5.035008,
21905             changed => {
21906             },
21907             removed => {
21908             }
21909             },
21910             5.034001 => {
21911             delta_from => 5.034000,
21912             changed => {
21913             },
21914             removed => {
21915             }
21916             },
21917             5.035010 => {
21918             delta_from => 5.035009,
21919             changed => {
21920             },
21921             removed => {
21922             }
21923             },
21924             5.035011 => {
21925             delta_from => 5.035010,
21926             changed => {
21927             },
21928             removed => {
21929             }
21930             },
21931             5.036000 => {
21932             delta_from => 5.035011,
21933             changed => {
21934             },
21935             removed => {
21936             }
21937             },
21938             5.037000 => {
21939             delta_from => 5.036000,
21940             changed => {
21941             },
21942             removed => {
21943             }
21944             },
21945             5.037001 => {
21946             delta_from => 5.037000,
21947             changed => {
21948             },
21949             removed => {
21950             }
21951             },
21952             5.037002 => {
21953             delta_from => 5.037001,
21954             changed => {
21955             },
21956             removed => {
21957             }
21958             },
21959             5.037003 => {
21960             delta_from => 5.037002,
21961             changed => {
21962             },
21963             removed => {
21964             }
21965             },
21966             5.037004 => {
21967             delta_from => 5.037003,
21968             changed => {
21969             },
21970             removed => {
21971             }
21972             },
21973             5.037005 => {
21974             delta_from => 5.037004,
21975             changed => {
21976             },
21977             removed => {
21978             }
21979             },
21980             5.037006 => {
21981             delta_from => 5.037005,
21982             changed => {
21983             },
21984             removed => {
21985             }
21986             },
21987             5.037007 => {
21988             delta_from => 5.037006,
21989             changed => {
21990             },
21991             removed => {
21992             }
21993             },
21994             5.037008 => {
21995             delta_from => 5.037007,
21996             changed => {
21997             },
21998             removed => {
21999             }
22000             },
22001             5.037009 => {
22002             delta_from => 5.037008,
22003             changed => {
22004             },
22005             removed => {
22006             }
22007             },
22008             5.037010 => {
22009             delta_from => 5.037009,
22010             changed => {
22011             },
22012             removed => {
22013             }
22014             },
22015             5.037011 => {
22016             delta_from => 5.037010,
22017             changed => {
22018             },
22019             removed => {
22020             }
22021             },
22022             5.036001 => {
22023             delta_from => 5.036,
22024             changed => {
22025             },
22026             removed => {
22027             }
22028             },
22029             5.038000 => {
22030             delta_from => 5.037011,
22031             changed => {
22032             },
22033             removed => {
22034             }
22035             },
22036             5.039001 => {
22037             delta_from => 5.038,
22038             changed => {
22039             },
22040             removed => {
22041             }
22042             },
22043             5.039002 => {
22044             delta_from => 5.039001,
22045             changed => {
22046             },
22047             removed => {
22048             }
22049             },
22050             );
22051              
22052             %deprecated = _undelta(\%deprecated);
22053              
22054             %upstream = (
22055             'App::Cpan' => 'cpan',
22056             'App::Prove' => 'cpan',
22057             'App::Prove::State' => 'cpan',
22058             'App::Prove::State::Result'=> 'cpan',
22059             'App::Prove::State::Result::Test'=> 'cpan',
22060             'Archive::Tar' => 'cpan',
22061             'Archive::Tar::Constant'=> 'cpan',
22062             'Archive::Tar::File' => 'cpan',
22063             'AutoLoader' => 'cpan',
22064             'AutoSplit' => 'cpan',
22065             'CPAN' => 'cpan',
22066             'CPAN::Author' => 'cpan',
22067             'CPAN::Bundle' => 'cpan',
22068             'CPAN::CacheMgr' => 'cpan',
22069             'CPAN::Complete' => 'cpan',
22070             'CPAN::Debug' => 'cpan',
22071             'CPAN::DeferredCode' => 'cpan',
22072             'CPAN::Distribution' => 'cpan',
22073             'CPAN::Distroprefs' => 'cpan',
22074             'CPAN::Distrostatus' => 'cpan',
22075             'CPAN::Exception::RecursiveDependency'=> 'cpan',
22076             'CPAN::Exception::blocked_urllist'=> 'cpan',
22077             'CPAN::Exception::yaml_not_installed'=> 'cpan',
22078             'CPAN::Exception::yaml_process_error'=> 'cpan',
22079             'CPAN::FTP' => 'cpan',
22080             'CPAN::FTP::netrc' => 'cpan',
22081             'CPAN::FirstTime' => 'cpan',
22082             'CPAN::HTTP::Client' => 'cpan',
22083             'CPAN::HTTP::Credentials'=> 'cpan',
22084             'CPAN::HandleConfig' => 'cpan',
22085             'CPAN::Index' => 'cpan',
22086             'CPAN::InfoObj' => 'cpan',
22087             'CPAN::Kwalify' => 'cpan',
22088             'CPAN::LWP::UserAgent' => 'cpan',
22089             'CPAN::Meta' => 'cpan',
22090             'CPAN::Meta::Converter' => 'cpan',
22091             'CPAN::Meta::Feature' => 'cpan',
22092             'CPAN::Meta::History' => 'cpan',
22093             'CPAN::Meta::Merge' => 'cpan',
22094             'CPAN::Meta::Prereqs' => 'cpan',
22095             'CPAN::Meta::Requirements'=> 'cpan',
22096             'CPAN::Meta::Requirements::Range'=> 'cpan',
22097             'CPAN::Meta::Spec' => 'cpan',
22098             'CPAN::Meta::Validator' => 'cpan',
22099             'CPAN::Meta::YAML' => 'cpan',
22100             'CPAN::Mirrors' => 'cpan',
22101             'CPAN::Module' => 'cpan',
22102             'CPAN::Nox' => 'cpan',
22103             'CPAN::Plugin' => 'cpan',
22104             'CPAN::Plugin::Specfile'=> 'cpan',
22105             'CPAN::Prompt' => 'cpan',
22106             'CPAN::Queue' => 'cpan',
22107             'CPAN::Shell' => 'cpan',
22108             'CPAN::Tarzip' => 'cpan',
22109             'CPAN::URL' => 'cpan',
22110             'CPAN::Version' => 'cpan',
22111             'Compress::Raw::Bzip2' => 'cpan',
22112             'Compress::Raw::Zlib' => 'cpan',
22113             'Compress::Zlib' => 'cpan',
22114             'Config::Perl::V' => 'cpan',
22115             'DB_File' => 'cpan',
22116             'Digest' => 'cpan',
22117             'Digest::MD5' => 'cpan',
22118             'Digest::SHA' => 'cpan',
22119             'Digest::base' => 'cpan',
22120             'Digest::file' => 'cpan',
22121             'Encode' => 'cpan',
22122             'Encode::Alias' => 'cpan',
22123             'Encode::Byte' => 'cpan',
22124             'Encode::CJKConstants' => 'cpan',
22125             'Encode::CN' => 'cpan',
22126             'Encode::CN::HZ' => 'cpan',
22127             'Encode::Config' => 'cpan',
22128             'Encode::EBCDIC' => 'cpan',
22129             'Encode::Encoder' => 'cpan',
22130             'Encode::Encoding' => 'cpan',
22131             'Encode::GSM0338' => 'cpan',
22132             'Encode::Guess' => 'cpan',
22133             'Encode::JP' => 'cpan',
22134             'Encode::JP::H2Z' => 'cpan',
22135             'Encode::JP::JIS7' => 'cpan',
22136             'Encode::KR' => 'cpan',
22137             'Encode::KR::2022_KR' => 'cpan',
22138             'Encode::MIME::Header' => 'cpan',
22139             'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
22140             'Encode::MIME::Name' => 'cpan',
22141             'Encode::Symbol' => 'cpan',
22142             'Encode::TW' => 'cpan',
22143             'Encode::Unicode' => 'cpan',
22144             'Encode::Unicode::UTF7' => 'cpan',
22145             'ExtUtils::Command' => 'cpan',
22146             'ExtUtils::Command::MM' => 'cpan',
22147             'ExtUtils::Constant' => 'cpan',
22148             'ExtUtils::Constant::Base'=> 'cpan',
22149             'ExtUtils::Constant::ProxySubs'=> 'cpan',
22150             'ExtUtils::Constant::Utils'=> 'cpan',
22151             'ExtUtils::Constant::XS'=> 'cpan',
22152             'ExtUtils::Install' => 'cpan',
22153             'ExtUtils::Installed' => 'cpan',
22154             'ExtUtils::Liblist' => 'cpan',
22155             'ExtUtils::Liblist::Kid'=> 'cpan',
22156             'ExtUtils::MM' => 'cpan',
22157             'ExtUtils::MM_AIX' => 'cpan',
22158             'ExtUtils::MM_Any' => 'cpan',
22159             'ExtUtils::MM_BeOS' => 'cpan',
22160             'ExtUtils::MM_Cygwin' => 'cpan',
22161             'ExtUtils::MM_DOS' => 'cpan',
22162             'ExtUtils::MM_Darwin' => 'cpan',
22163             'ExtUtils::MM_MacOS' => 'cpan',
22164             'ExtUtils::MM_NW5' => 'cpan',
22165             'ExtUtils::MM_OS2' => 'cpan',
22166             'ExtUtils::MM_OS390' => 'cpan',
22167             'ExtUtils::MM_QNX' => 'cpan',
22168             'ExtUtils::MM_UWIN' => 'cpan',
22169             'ExtUtils::MM_Unix' => 'cpan',
22170             'ExtUtils::MM_VMS' => 'cpan',
22171             'ExtUtils::MM_VOS' => 'cpan',
22172             'ExtUtils::MM_Win32' => 'cpan',
22173             'ExtUtils::MM_Win95' => 'cpan',
22174             'ExtUtils::MY' => 'cpan',
22175             'ExtUtils::MakeMaker' => 'cpan',
22176             'ExtUtils::MakeMaker::Config'=> 'cpan',
22177             'ExtUtils::MakeMaker::Locale'=> 'cpan',
22178             'ExtUtils::MakeMaker::version'=> 'cpan',
22179             'ExtUtils::MakeMaker::version::regex'=> 'cpan',
22180             'ExtUtils::Manifest' => 'cpan',
22181             'ExtUtils::Mkbootstrap' => 'cpan',
22182             'ExtUtils::Mksymlists' => 'cpan',
22183             'ExtUtils::PL2Bat' => 'cpan',
22184             'ExtUtils::Packlist' => 'cpan',
22185             'ExtUtils::testlib' => 'cpan',
22186             'Fatal' => 'cpan',
22187             'File::Fetch' => 'cpan',
22188             'File::GlobMapper' => 'cpan',
22189             'File::Path' => 'cpan',
22190             'File::Temp' => 'cpan',
22191             'Filter::Util::Call' => 'cpan',
22192             'Getopt::Long' => 'cpan',
22193             'HTTP::Tiny' => 'cpan',
22194             'IO::Compress::Adapter::Bzip2'=> 'cpan',
22195             'IO::Compress::Adapter::Deflate'=> 'cpan',
22196             'IO::Compress::Adapter::Identity'=> 'cpan',
22197             'IO::Compress::Base' => 'cpan',
22198             'IO::Compress::Base::Common'=> 'cpan',
22199             'IO::Compress::Bzip2' => 'cpan',
22200             'IO::Compress::Deflate' => 'cpan',
22201             'IO::Compress::Gzip' => 'cpan',
22202             'IO::Compress::Gzip::Constants'=> 'cpan',
22203             'IO::Compress::RawDeflate'=> 'cpan',
22204             'IO::Compress::Zip' => 'cpan',
22205             'IO::Compress::Zip::Constants'=> 'cpan',
22206             'IO::Compress::Zlib::Constants'=> 'cpan',
22207             'IO::Compress::Zlib::Extra'=> 'cpan',
22208             'IO::Socket::IP' => 'cpan',
22209             'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
22210             'IO::Uncompress::Adapter::Identity'=> 'cpan',
22211             'IO::Uncompress::Adapter::Inflate'=> 'cpan',
22212             'IO::Uncompress::AnyInflate'=> 'cpan',
22213             'IO::Uncompress::AnyUncompress'=> 'cpan',
22214             'IO::Uncompress::Base' => 'cpan',
22215             'IO::Uncompress::Bunzip2'=> 'cpan',
22216             'IO::Uncompress::Gunzip'=> 'cpan',
22217             'IO::Uncompress::Inflate'=> 'cpan',
22218             'IO::Uncompress::RawInflate'=> 'cpan',
22219             'IO::Uncompress::Unzip' => 'cpan',
22220             'IO::Zlib' => 'cpan',
22221             'IPC::Cmd' => 'cpan',
22222             'IPC::Msg' => 'cpan',
22223             'IPC::Semaphore' => 'cpan',
22224             'IPC::SharedMem' => 'cpan',
22225             'IPC::SysV' => 'cpan',
22226             'JSON::PP' => 'cpan',
22227             'JSON::PP::Boolean' => 'cpan',
22228             'List::Util' => 'cpan',
22229             'List::Util::XS' => 'cpan',
22230             'Locale::Maketext::Simple'=> 'cpan',
22231             'MIME::Base64' => 'cpan',
22232             'MIME::QuotedPrint' => 'cpan',
22233             'Math::BigFloat' => 'cpan',
22234             'Math::BigFloat::Trace' => 'cpan',
22235             'Math::BigInt' => 'cpan',
22236             'Math::BigInt::Calc' => 'cpan',
22237             'Math::BigInt::FastCalc'=> 'cpan',
22238             'Math::BigInt::Lib' => 'cpan',
22239             'Math::BigInt::Trace' => 'cpan',
22240             'Math::BigRat' => 'cpan',
22241             'Math::BigRat::Trace' => 'cpan',
22242             'Memoize' => 'cpan',
22243             'Memoize::AnyDBM_File' => 'cpan',
22244             'Memoize::Expire' => 'cpan',
22245             'Memoize::NDBM_File' => 'cpan',
22246             'Memoize::SDBM_File' => 'cpan',
22247             'Memoize::Storable' => 'cpan',
22248             'Module::Load' => 'cpan',
22249             'Module::Load::Conditional'=> 'cpan',
22250             'Module::Loaded' => 'cpan',
22251             'Module::Metadata' => 'cpan',
22252             'NEXT' => 'cpan',
22253             'Net::Cmd' => 'cpan',
22254             'Net::Config' => 'cpan',
22255             'Net::Domain' => 'cpan',
22256             'Net::FTP' => 'cpan',
22257             'Net::FTP::A' => 'cpan',
22258             'Net::FTP::E' => 'cpan',
22259             'Net::FTP::I' => 'cpan',
22260             'Net::FTP::L' => 'cpan',
22261             'Net::FTP::dataconn' => 'cpan',
22262             'Net::NNTP' => 'cpan',
22263             'Net::Netrc' => 'cpan',
22264             'Net::POP3' => 'cpan',
22265             'Net::SMTP' => 'cpan',
22266             'Net::Time' => 'cpan',
22267             'Params::Check' => 'cpan',
22268             'Parse::CPAN::Meta' => 'cpan',
22269             'Perl::OSType' => 'cpan',
22270             'PerlIO::via::QuotedPrint'=> 'cpan',
22271             'Pod::Checker' => 'cpan',
22272             'Pod::Escapes' => 'cpan',
22273             'Pod::Man' => 'cpan',
22274             'Pod::ParseLink' => 'cpan',
22275             'Pod::Perldoc' => 'cpan',
22276             'Pod::Perldoc::BaseTo' => 'cpan',
22277             'Pod::Perldoc::GetOptsOO'=> 'cpan',
22278             'Pod::Perldoc::ToANSI' => 'cpan',
22279             'Pod::Perldoc::ToChecker'=> 'cpan',
22280             'Pod::Perldoc::ToMan' => 'cpan',
22281             'Pod::Perldoc::ToNroff' => 'cpan',
22282             'Pod::Perldoc::ToPod' => 'cpan',
22283             'Pod::Perldoc::ToRtf' => 'cpan',
22284             'Pod::Perldoc::ToTerm' => 'cpan',
22285             'Pod::Perldoc::ToText' => 'cpan',
22286             'Pod::Perldoc::ToTk' => 'cpan',
22287             'Pod::Perldoc::ToXml' => 'cpan',
22288             'Pod::Simple' => 'cpan',
22289             'Pod::Simple::BlackBox' => 'cpan',
22290             'Pod::Simple::Checker' => 'cpan',
22291             'Pod::Simple::Debug' => 'cpan',
22292             'Pod::Simple::DumpAsText'=> 'cpan',
22293             'Pod::Simple::DumpAsXML'=> 'cpan',
22294             'Pod::Simple::HTML' => 'cpan',
22295             'Pod::Simple::HTMLBatch'=> 'cpan',
22296             'Pod::Simple::HTMLLegacy'=> 'cpan',
22297             'Pod::Simple::JustPod' => 'cpan',
22298             'Pod::Simple::LinkSection'=> 'cpan',
22299             'Pod::Simple::Methody' => 'cpan',
22300             'Pod::Simple::Progress' => 'cpan',
22301             'Pod::Simple::PullParser'=> 'cpan',
22302             'Pod::Simple::PullParserEndToken'=> 'cpan',
22303             'Pod::Simple::PullParserStartToken'=> 'cpan',
22304             'Pod::Simple::PullParserTextToken'=> 'cpan',
22305             'Pod::Simple::PullParserToken'=> 'cpan',
22306             'Pod::Simple::RTF' => 'cpan',
22307             'Pod::Simple::Search' => 'cpan',
22308             'Pod::Simple::SimpleTree'=> 'cpan',
22309             'Pod::Simple::Text' => 'cpan',
22310             'Pod::Simple::TextContent'=> 'cpan',
22311             'Pod::Simple::TiedOutFH'=> 'cpan',
22312             'Pod::Simple::Transcode'=> 'cpan',
22313             'Pod::Simple::TranscodeDumb'=> 'cpan',
22314             'Pod::Simple::TranscodeSmart'=> 'cpan',
22315             'Pod::Simple::XHTML' => 'cpan',
22316             'Pod::Simple::XMLOutStream'=> 'cpan',
22317             'Pod::Text' => 'cpan',
22318             'Pod::Text::Color' => 'cpan',
22319             'Pod::Text::Overstrike' => 'cpan',
22320             'Pod::Text::Termcap' => 'cpan',
22321             'Pod::Usage' => 'cpan',
22322             'Scalar::Util' => 'cpan',
22323             'Socket' => 'cpan',
22324             'Sub::Util' => 'cpan',
22325             'Sys::Syslog' => 'cpan',
22326             'Sys::Syslog::Win32' => 'cpan',
22327             'TAP::Base' => 'cpan',
22328             'TAP::Formatter::Base' => 'cpan',
22329             'TAP::Formatter::Color' => 'cpan',
22330             'TAP::Formatter::Console'=> 'cpan',
22331             'TAP::Formatter::Console::ParallelSession'=> 'cpan',
22332             'TAP::Formatter::Console::Session'=> 'cpan',
22333             'TAP::Formatter::File' => 'cpan',
22334             'TAP::Formatter::File::Session'=> 'cpan',
22335             'TAP::Formatter::Session'=> 'cpan',
22336             'TAP::Harness' => 'cpan',
22337             'TAP::Harness::Env' => 'cpan',
22338             'TAP::Object' => 'cpan',
22339             'TAP::Parser' => 'cpan',
22340             'TAP::Parser::Aggregator'=> 'cpan',
22341             'TAP::Parser::Grammar' => 'cpan',
22342             'TAP::Parser::Iterator' => 'cpan',
22343             'TAP::Parser::Iterator::Array'=> 'cpan',
22344             'TAP::Parser::Iterator::Process'=> 'cpan',
22345             'TAP::Parser::Iterator::Stream'=> 'cpan',
22346             'TAP::Parser::IteratorFactory'=> 'cpan',
22347             'TAP::Parser::Multiplexer'=> 'cpan',
22348             'TAP::Parser::Result' => 'cpan',
22349             'TAP::Parser::Result::Bailout'=> 'cpan',
22350             'TAP::Parser::Result::Comment'=> 'cpan',
22351             'TAP::Parser::Result::Plan'=> 'cpan',
22352             'TAP::Parser::Result::Pragma'=> 'cpan',
22353             'TAP::Parser::Result::Test'=> 'cpan',
22354             'TAP::Parser::Result::Unknown'=> 'cpan',
22355             'TAP::Parser::Result::Version'=> 'cpan',
22356             'TAP::Parser::Result::YAML'=> 'cpan',
22357             'TAP::Parser::ResultFactory'=> 'cpan',
22358             'TAP::Parser::Scheduler'=> 'cpan',
22359             'TAP::Parser::Scheduler::Job'=> 'cpan',
22360             'TAP::Parser::Scheduler::Spinner'=> 'cpan',
22361             'TAP::Parser::Source' => 'cpan',
22362             'TAP::Parser::SourceHandler'=> 'cpan',
22363             'TAP::Parser::SourceHandler::Executable'=> 'cpan',
22364             'TAP::Parser::SourceHandler::File'=> 'cpan',
22365             'TAP::Parser::SourceHandler::Handle'=> 'cpan',
22366             'TAP::Parser::SourceHandler::Perl'=> 'cpan',
22367             'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
22368             'TAP::Parser::YAMLish::Reader'=> 'cpan',
22369             'TAP::Parser::YAMLish::Writer'=> 'cpan',
22370             'Term::ANSIColor' => 'cpan',
22371             'Term::Cap' => 'cpan',
22372             'Test2' => 'cpan',
22373             'Test2::API' => 'cpan',
22374             'Test2::API::Breakage' => 'cpan',
22375             'Test2::API::Context' => 'cpan',
22376             'Test2::API::Instance' => 'cpan',
22377             'Test2::API::InterceptResult'=> 'cpan',
22378             'Test2::API::InterceptResult::Event'=> 'cpan',
22379             'Test2::API::InterceptResult::Facet'=> 'cpan',
22380             'Test2::API::InterceptResult::Hub'=> 'cpan',
22381             'Test2::API::InterceptResult::Squasher'=> 'cpan',
22382             'Test2::API::Stack' => 'cpan',
22383             'Test2::Event' => 'cpan',
22384             'Test2::Event::Bail' => 'cpan',
22385             'Test2::Event::Diag' => 'cpan',
22386             'Test2::Event::Encoding'=> 'cpan',
22387             'Test2::Event::Exception'=> 'cpan',
22388             'Test2::Event::Fail' => 'cpan',
22389             'Test2::Event::Generic' => 'cpan',
22390             'Test2::Event::Note' => 'cpan',
22391             'Test2::Event::Ok' => 'cpan',
22392             'Test2::Event::Pass' => 'cpan',
22393             'Test2::Event::Plan' => 'cpan',
22394             'Test2::Event::Skip' => 'cpan',
22395             'Test2::Event::Subtest' => 'cpan',
22396             'Test2::Event::TAP::Version'=> 'cpan',
22397             'Test2::Event::V2' => 'cpan',
22398             'Test2::Event::Waiting' => 'cpan',
22399             'Test2::EventFacet' => 'cpan',
22400             'Test2::EventFacet::About'=> 'cpan',
22401             'Test2::EventFacet::Amnesty'=> 'cpan',
22402             'Test2::EventFacet::Assert'=> 'cpan',
22403             'Test2::EventFacet::Control'=> 'cpan',
22404             'Test2::EventFacet::Error'=> 'cpan',
22405             'Test2::EventFacet::Hub'=> 'cpan',
22406             'Test2::EventFacet::Info'=> 'cpan',
22407             'Test2::EventFacet::Info::Table'=> 'cpan',
22408             'Test2::EventFacet::Meta'=> 'cpan',
22409             'Test2::EventFacet::Parent'=> 'cpan',
22410             'Test2::EventFacet::Plan'=> 'cpan',
22411             'Test2::EventFacet::Render'=> 'cpan',
22412             'Test2::EventFacet::Trace'=> 'cpan',
22413             'Test2::Formatter' => 'cpan',
22414             'Test2::Formatter::TAP' => 'cpan',
22415             'Test2::Hub' => 'cpan',
22416             'Test2::Hub::Interceptor'=> 'cpan',
22417             'Test2::Hub::Interceptor::Terminator'=> 'cpan',
22418             'Test2::Hub::Subtest' => 'cpan',
22419             'Test2::IPC' => 'cpan',
22420             'Test2::IPC::Driver' => 'cpan',
22421             'Test2::IPC::Driver::Files'=> 'cpan',
22422             'Test2::Tools::Tiny' => 'cpan',
22423             'Test2::Util' => 'cpan',
22424             'Test2::Util::ExternalMeta'=> 'cpan',
22425             'Test2::Util::Facets2Legacy'=> 'cpan',
22426             'Test2::Util::HashBase' => 'cpan',
22427             'Test2::Util::Trace' => 'cpan',
22428             'Test::Builder' => 'cpan',
22429             'Test::Builder::Formatter'=> 'cpan',
22430             'Test::Builder::IO::Scalar'=> 'cpan',
22431             'Test::Builder::Module' => 'cpan',
22432             'Test::Builder::Tester' => 'cpan',
22433             'Test::Builder::Tester::Color'=> 'cpan',
22434             'Test::Builder::TodoDiag'=> 'cpan',
22435             'Test::Harness' => 'cpan',
22436             'Test::More' => 'cpan',
22437             'Test::Simple' => 'cpan',
22438             'Test::Tester' => 'cpan',
22439             'Test::Tester::Capture' => 'cpan',
22440             'Test::Tester::CaptureRunner'=> 'cpan',
22441             'Test::Tester::Delegate'=> 'cpan',
22442             'Test::use::ok' => 'cpan',
22443             'Text::Balanced' => 'cpan',
22444             'Text::ParseWords' => 'cpan',
22445             'Text::Tabs' => 'cpan',
22446             'Text::Wrap' => 'cpan',
22447             'Tie::RefHash' => 'cpan',
22448             'Time::Local' => 'cpan',
22449             'Time::Piece' => 'cpan',
22450             'Time::Seconds' => 'cpan',
22451             'Unicode::Collate' => 'cpan',
22452             'Unicode::Collate::CJK::Big5'=> 'cpan',
22453             'Unicode::Collate::CJK::GB2312'=> 'cpan',
22454             'Unicode::Collate::CJK::JISX0208'=> 'cpan',
22455             'Unicode::Collate::CJK::Korean'=> 'cpan',
22456             'Unicode::Collate::CJK::Pinyin'=> 'cpan',
22457             'Unicode::Collate::CJK::Stroke'=> 'cpan',
22458             'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
22459             'Unicode::Collate::Locale'=> 'cpan',
22460             'Win32' => 'cpan',
22461             'Win32API::File' => 'cpan',
22462             'autodie' => 'cpan',
22463             'autodie::Scope::Guard' => 'cpan',
22464             'autodie::Scope::GuardStack'=> 'cpan',
22465             'autodie::Util' => 'cpan',
22466             'autodie::exception' => 'cpan',
22467             'autodie::exception::system'=> 'cpan',
22468             'autodie::hints' => 'cpan',
22469             'autodie::skip' => 'cpan',
22470             'bigfloat' => 'cpan',
22471             'bigint' => 'cpan',
22472             'bignum' => 'cpan',
22473             'bigrat' => 'cpan',
22474             'encoding' => 'cpan',
22475             'experimental' => 'cpan',
22476             'ok' => 'cpan',
22477             'parent' => 'cpan',
22478             'perlfaq' => 'cpan',
22479             'stable' => 'cpan',
22480             'version' => 'cpan',
22481             'version::regex' => 'cpan',
22482             );
22483              
22484             %bug_tracker = (
22485             'App::Cpan' => undef,
22486             'App::Prove' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22487             'App::Prove::State' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22488             'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22489             'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22490             'Archive::Tar' => undef,
22491             'Archive::Tar::Constant'=> undef,
22492             'Archive::Tar::File' => undef,
22493             'CPAN' => undef,
22494             'CPAN::Author' => undef,
22495             'CPAN::Bundle' => undef,
22496             'CPAN::CacheMgr' => undef,
22497             'CPAN::Complete' => undef,
22498             'CPAN::Debug' => undef,
22499             'CPAN::DeferredCode' => undef,
22500             'CPAN::Distribution' => undef,
22501             'CPAN::Distroprefs' => undef,
22502             'CPAN::Distrostatus' => undef,
22503             'CPAN::Exception::RecursiveDependency'=> undef,
22504             'CPAN::Exception::blocked_urllist'=> undef,
22505             'CPAN::Exception::yaml_not_installed'=> undef,
22506             'CPAN::Exception::yaml_process_error'=> undef,
22507             'CPAN::FTP' => undef,
22508             'CPAN::FTP::netrc' => undef,
22509             'CPAN::FirstTime' => undef,
22510             'CPAN::HTTP::Client' => undef,
22511             'CPAN::HTTP::Credentials'=> undef,
22512             'CPAN::HandleConfig' => undef,
22513             'CPAN::Index' => undef,
22514             'CPAN::InfoObj' => undef,
22515             'CPAN::Kwalify' => undef,
22516             'CPAN::LWP::UserAgent' => undef,
22517             'CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22518             'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22519             'CPAN::Meta::Feature' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22520             'CPAN::Meta::History' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22521             'CPAN::Meta::Merge' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22522             'CPAN::Meta::Prereqs' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22523             'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
22524             'CPAN::Meta::Requirements::Range'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
22525             'CPAN::Meta::Spec' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22526             'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22527             'CPAN::Meta::YAML' => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
22528             'CPAN::Mirrors' => undef,
22529             'CPAN::Module' => undef,
22530             'CPAN::Nox' => undef,
22531             'CPAN::Plugin' => undef,
22532             'CPAN::Plugin::Specfile'=> undef,
22533             'CPAN::Prompt' => undef,
22534             'CPAN::Queue' => undef,
22535             'CPAN::Shell' => undef,
22536             'CPAN::Tarzip' => undef,
22537             'CPAN::URL' => undef,
22538             'CPAN::Version' => undef,
22539             'Compress::Raw::Bzip2' => 'https://github.com/pmqs/Compress-Raw-Bzip2/issues',
22540             'Compress::Raw::Zlib' => 'https://github.com/pmqs/Compress-Raw-Zlib/issues',
22541             'Compress::Zlib' => 'https://github.com/pmqs/IO-Compress/issues',
22542             'Config::Perl::V' => 'https://github.com/Tux/Config-Perl-V/issues',
22543             'DB_File' => 'https://github.com/pmqs/DB_File/issues',
22544             'Digest' => 'https://github.com/Dual-Life/digest/issues',
22545             'Digest::MD5' => 'https://github.com/Dual-Life/digest-md5/issues',
22546             'Digest::SHA' => undef,
22547             'Digest::base' => 'https://github.com/Dual-Life/digest/issues',
22548             'Digest::file' => 'https://github.com/Dual-Life/digest/issues',
22549             'Encode' => undef,
22550             'Encode::Alias' => undef,
22551             'Encode::Byte' => undef,
22552             'Encode::CJKConstants' => undef,
22553             'Encode::CN' => undef,
22554             'Encode::CN::HZ' => undef,
22555             'Encode::Config' => undef,
22556             'Encode::EBCDIC' => undef,
22557             'Encode::Encoder' => undef,
22558             'Encode::Encoding' => undef,
22559             'Encode::GSM0338' => undef,
22560             'Encode::Guess' => undef,
22561             'Encode::JP' => undef,
22562             'Encode::JP::H2Z' => undef,
22563             'Encode::JP::JIS7' => undef,
22564             'Encode::KR' => undef,
22565             'Encode::KR::2022_KR' => undef,
22566             'Encode::MIME::Header' => undef,
22567             'Encode::MIME::Header::ISO_2022_JP'=> undef,
22568             'Encode::MIME::Name' => undef,
22569             'Encode::Symbol' => undef,
22570             'Encode::TW' => undef,
22571             'Encode::Unicode' => undef,
22572             'Encode::Unicode::UTF7' => undef,
22573             'ExtUtils::Command' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22574             'ExtUtils::Command::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22575             'ExtUtils::Constant' => undef,
22576             'ExtUtils::Constant::Base'=> undef,
22577             'ExtUtils::Constant::ProxySubs'=> undef,
22578             'ExtUtils::Constant::Utils'=> undef,
22579             'ExtUtils::Constant::XS'=> undef,
22580             'ExtUtils::Install' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
22581             'ExtUtils::Installed' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
22582             'ExtUtils::Liblist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22583             'ExtUtils::Liblist::Kid'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22584             'ExtUtils::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22585             'ExtUtils::MM_AIX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22586             'ExtUtils::MM_Any' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22587             'ExtUtils::MM_BeOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22588             'ExtUtils::MM_Cygwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22589             'ExtUtils::MM_DOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22590             'ExtUtils::MM_Darwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22591             'ExtUtils::MM_MacOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22592             'ExtUtils::MM_NW5' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22593             'ExtUtils::MM_OS2' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22594             'ExtUtils::MM_OS390' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22595             'ExtUtils::MM_QNX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22596             'ExtUtils::MM_UWIN' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22597             'ExtUtils::MM_Unix' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22598             'ExtUtils::MM_VMS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22599             'ExtUtils::MM_VOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22600             'ExtUtils::MM_Win32' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22601             'ExtUtils::MM_Win95' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22602             'ExtUtils::MY' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22603             'ExtUtils::MakeMaker' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22604             'ExtUtils::MakeMaker::Config'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22605             'ExtUtils::MakeMaker::Locale'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22606             'ExtUtils::MakeMaker::version'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22607             'ExtUtils::MakeMaker::version::regex'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22608             'ExtUtils::Manifest' => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
22609             'ExtUtils::Mkbootstrap' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22610             'ExtUtils::Mksymlists' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22611             'ExtUtils::PL2Bat' => 'https://github.com/Perl-Toolchain-Gang/extutils-pl2bat/issues',
22612             'ExtUtils::Packlist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
22613             'ExtUtils::testlib' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22614             'Fatal' => 'https://github.com/pjf/autodie/issues',
22615             'File::Fetch' => undef,
22616             'File::GlobMapper' => 'https://github.com/pmqs/IO-Compress/issues',
22617             'File::Path' => undef,
22618             'File::Temp' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
22619             'Filter::Util::Call' => undef,
22620             'Getopt::Long' => undef,
22621             'HTTP::Tiny' => 'https://github.com/Perl-Toolchain-Gang/HTTP-Tiny/issues',
22622             'IO::Compress::Adapter::Bzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
22623             'IO::Compress::Adapter::Deflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22624             'IO::Compress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
22625             'IO::Compress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
22626             'IO::Compress::Base::Common'=> 'https://github.com/pmqs/IO-Compress/issues',
22627             'IO::Compress::Bzip2' => 'https://github.com/pmqs/IO-Compress/issues',
22628             'IO::Compress::Deflate' => 'https://github.com/pmqs/IO-Compress/issues',
22629             'IO::Compress::Gzip' => 'https://github.com/pmqs/IO-Compress/issues',
22630             'IO::Compress::Gzip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
22631             'IO::Compress::RawDeflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22632             'IO::Compress::Zip' => 'https://github.com/pmqs/IO-Compress/issues',
22633             'IO::Compress::Zip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
22634             'IO::Compress::Zlib::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
22635             'IO::Compress::Zlib::Extra'=> 'https://github.com/pmqs/IO-Compress/issues',
22636             'IO::Socket::IP' => undef,
22637             'IO::Uncompress::Adapter::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
22638             'IO::Uncompress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
22639             'IO::Uncompress::Adapter::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22640             'IO::Uncompress::AnyInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22641             'IO::Uncompress::AnyUncompress'=> 'https://github.com/pmqs/IO-Compress/issues',
22642             'IO::Uncompress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
22643             'IO::Uncompress::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
22644             'IO::Uncompress::Gunzip'=> 'https://github.com/pmqs/IO-Compress/issues',
22645             'IO::Uncompress::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22646             'IO::Uncompress::RawInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22647             'IO::Uncompress::Unzip' => 'https://github.com/pmqs/IO-Compress/issues',
22648             'IO::Zlib' => 'https://github.com/tomhughes/IO-Zlib/issues',
22649             'IPC::Cmd' => undef,
22650             'IPC::Msg' => undef,
22651             'IPC::Semaphore' => undef,
22652             'IPC::SharedMem' => undef,
22653             'IPC::SysV' => undef,
22654             'JSON::PP' => 'https://github.com/makamaka/JSON-PP/issues',
22655             'JSON::PP::Boolean' => 'https://github.com/makamaka/JSON-PP/issues',
22656             'List::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
22657             'List::Util::XS' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
22658             'Locale::Maketext::Simple'=> undef,
22659             'MIME::Base64' => 'https://github.com/Dual-Life/mime-base64/issues',
22660             'MIME::QuotedPrint' => 'https://github.com/Dual-Life/mime-base64/issues',
22661             'Math::BigFloat' => undef,
22662             'Math::BigFloat::Trace' => undef,
22663             'Math::BigInt' => undef,
22664             'Math::BigInt::Calc' => undef,
22665             'Math::BigInt::FastCalc'=> undef,
22666             'Math::BigInt::Lib' => undef,
22667             'Math::BigInt::Trace' => undef,
22668             'Math::BigRat' => undef,
22669             'Math::BigRat::Trace' => undef,
22670             'Memoize' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22671             'Memoize::AnyDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22672             'Memoize::Expire' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22673             'Memoize::NDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22674             'Memoize::SDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22675             'Memoize::Storable' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22676             'Module::Load' => undef,
22677             'Module::Load::Conditional'=> undef,
22678             'Module::Loaded' => undef,
22679             'Module::Metadata' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
22680             'NEXT' => undef,
22681             'Net::Cmd' => undef,
22682             'Net::Config' => undef,
22683             'Net::Domain' => undef,
22684             'Net::FTP' => undef,
22685             'Net::FTP::A' => undef,
22686             'Net::FTP::E' => undef,
22687             'Net::FTP::I' => undef,
22688             'Net::FTP::L' => undef,
22689             'Net::FTP::dataconn' => undef,
22690             'Net::NNTP' => undef,
22691             'Net::Netrc' => undef,
22692             'Net::POP3' => undef,
22693             'Net::SMTP' => undef,
22694             'Net::Time' => undef,
22695             'Params::Check' => undef,
22696             'Parse::CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22697             'Perl::OSType' => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
22698             'PerlIO::via::QuotedPrint'=> undef,
22699             'Pod::Checker' => undef,
22700             'Pod::Escapes' => undef,
22701             'Pod::Man' => 'https://github.com/rra/podlators/issues',
22702             'Pod::ParseLink' => 'https://github.com/rra/podlators/issues',
22703             'Pod::Perldoc' => undef,
22704             'Pod::Perldoc::BaseTo' => undef,
22705             'Pod::Perldoc::GetOptsOO'=> undef,
22706             'Pod::Perldoc::ToANSI' => undef,
22707             'Pod::Perldoc::ToChecker'=> undef,
22708             'Pod::Perldoc::ToMan' => undef,
22709             'Pod::Perldoc::ToNroff' => undef,
22710             'Pod::Perldoc::ToPod' => undef,
22711             'Pod::Perldoc::ToRtf' => undef,
22712             'Pod::Perldoc::ToTerm' => undef,
22713             'Pod::Perldoc::ToText' => undef,
22714             'Pod::Perldoc::ToTk' => undef,
22715             'Pod::Perldoc::ToXml' => undef,
22716             'Pod::Simple' => 'https://github.com/perl-pod/pod-simple/issues',
22717             'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
22718             'Pod::Simple::Checker' => 'https://github.com/perl-pod/pod-simple/issues',
22719             'Pod::Simple::Debug' => 'https://github.com/perl-pod/pod-simple/issues',
22720             'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
22721             'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
22722             'Pod::Simple::HTML' => 'https://github.com/perl-pod/pod-simple/issues',
22723             'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
22724             'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
22725             'Pod::Simple::JustPod' => 'https://github.com/perl-pod/pod-simple/issues',
22726             'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
22727             'Pod::Simple::Methody' => 'https://github.com/perl-pod/pod-simple/issues',
22728             'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
22729             'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
22730             'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
22731             'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
22732             'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
22733             'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
22734             'Pod::Simple::RTF' => 'https://github.com/perl-pod/pod-simple/issues',
22735             'Pod::Simple::Search' => 'https://github.com/perl-pod/pod-simple/issues',
22736             'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
22737             'Pod::Simple::Text' => 'https://github.com/perl-pod/pod-simple/issues',
22738             'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
22739             'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
22740             'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
22741             'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
22742             'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
22743             'Pod::Simple::XHTML' => 'https://github.com/perl-pod/pod-simple/issues',
22744             'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
22745             'Pod::Text' => 'https://github.com/rra/podlators/issues',
22746             'Pod::Text::Color' => 'https://github.com/rra/podlators/issues',
22747             'Pod::Text::Overstrike' => 'https://github.com/rra/podlators/issues',
22748             'Pod::Text::Termcap' => 'https://github.com/rra/podlators/issues',
22749             'Pod::Usage' => 'https://github.com/Dual-Life/Pod-Usage/issues',
22750             'Scalar::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
22751             'Socket' => undef,
22752             'Sub::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
22753             'Sys::Syslog' => undef,
22754             'Sys::Syslog::Win32' => undef,
22755             'TAP::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22756             'TAP::Formatter::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22757             'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22758             'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22759             'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22760             'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22761             'TAP::Formatter::File' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22762             'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22763             'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22764             'TAP::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22765             'TAP::Harness::Env' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22766             'TAP::Object' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22767             'TAP::Parser' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22768             'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22769             'TAP::Parser::Grammar' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22770             'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22771             'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22772             'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22773             'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22774             'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22775             'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22776             'TAP::Parser::Result' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22777             'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22778             'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22779             'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22780             'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22781             'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22782             'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22783             'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22784             'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22785             'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22786             'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22787             'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22788             'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22789             'TAP::Parser::Source' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22790             'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22791             'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22792             'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22793             'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22794             'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22795             'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22796             'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22797             'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22798             'Term::ANSIColor' => 'https://rt.cpan.org/Dist/Display.html?Name=Term-ANSIColor',
22799             'Term::Cap' => undef,
22800             'Test2' => 'http://github.com/Test-More/test-more/issues',
22801             'Test2::API' => 'http://github.com/Test-More/test-more/issues',
22802             'Test2::API::Breakage' => 'http://github.com/Test-More/test-more/issues',
22803             'Test2::API::Context' => 'http://github.com/Test-More/test-more/issues',
22804             'Test2::API::Instance' => 'http://github.com/Test-More/test-more/issues',
22805             'Test2::API::InterceptResult'=> 'http://github.com/Test-More/test-more/issues',
22806             'Test2::API::InterceptResult::Event'=> 'http://github.com/Test-More/test-more/issues',
22807             'Test2::API::InterceptResult::Facet'=> 'http://github.com/Test-More/test-more/issues',
22808             'Test2::API::InterceptResult::Hub'=> 'http://github.com/Test-More/test-more/issues',
22809             'Test2::API::InterceptResult::Squasher'=> 'http://github.com/Test-More/test-more/issues',
22810             'Test2::API::Stack' => 'http://github.com/Test-More/test-more/issues',
22811             'Test2::Event' => 'http://github.com/Test-More/test-more/issues',
22812             'Test2::Event::Bail' => 'http://github.com/Test-More/test-more/issues',
22813             'Test2::Event::Diag' => 'http://github.com/Test-More/test-more/issues',
22814             'Test2::Event::Encoding'=> 'http://github.com/Test-More/test-more/issues',
22815             'Test2::Event::Exception'=> 'http://github.com/Test-More/test-more/issues',
22816             'Test2::Event::Fail' => 'http://github.com/Test-More/test-more/issues',
22817             'Test2::Event::Generic' => 'http://github.com/Test-More/test-more/issues',
22818             'Test2::Event::Note' => 'http://github.com/Test-More/test-more/issues',
22819             'Test2::Event::Ok' => 'http://github.com/Test-More/test-more/issues',
22820             'Test2::Event::Pass' => 'http://github.com/Test-More/test-more/issues',
22821             'Test2::Event::Plan' => 'http://github.com/Test-More/test-more/issues',
22822             'Test2::Event::Skip' => 'http://github.com/Test-More/test-more/issues',
22823             'Test2::Event::Subtest' => 'http://github.com/Test-More/test-more/issues',
22824             'Test2::Event::TAP::Version'=> 'http://github.com/Test-More/test-more/issues',
22825             'Test2::Event::V2' => 'http://github.com/Test-More/test-more/issues',
22826             'Test2::Event::Waiting' => 'http://github.com/Test-More/test-more/issues',
22827             'Test2::EventFacet' => 'http://github.com/Test-More/test-more/issues',
22828             'Test2::EventFacet::About'=> 'http://github.com/Test-More/test-more/issues',
22829             'Test2::EventFacet::Amnesty'=> 'http://github.com/Test-More/test-more/issues',
22830             'Test2::EventFacet::Assert'=> 'http://github.com/Test-More/test-more/issues',
22831             'Test2::EventFacet::Control'=> 'http://github.com/Test-More/test-more/issues',
22832             'Test2::EventFacet::Error'=> 'http://github.com/Test-More/test-more/issues',
22833             'Test2::EventFacet::Hub'=> 'http://github.com/Test-More/test-more/issues',
22834             'Test2::EventFacet::Info'=> 'http://github.com/Test-More/test-more/issues',
22835             'Test2::EventFacet::Info::Table'=> 'http://github.com/Test-More/test-more/issues',
22836             'Test2::EventFacet::Meta'=> 'http://github.com/Test-More/test-more/issues',
22837             'Test2::EventFacet::Parent'=> 'http://github.com/Test-More/test-more/issues',
22838             'Test2::EventFacet::Plan'=> 'http://github.com/Test-More/test-more/issues',
22839             'Test2::EventFacet::Render'=> 'http://github.com/Test-More/test-more/issues',
22840             'Test2::EventFacet::Trace'=> 'http://github.com/Test-More/test-more/issues',
22841             'Test2::Formatter' => 'http://github.com/Test-More/test-more/issues',
22842             'Test2::Formatter::TAP' => 'http://github.com/Test-More/test-more/issues',
22843             'Test2::Hub' => 'http://github.com/Test-More/test-more/issues',
22844             'Test2::Hub::Interceptor'=> 'http://github.com/Test-More/test-more/issues',
22845             'Test2::Hub::Interceptor::Terminator'=> 'http://github.com/Test-More/test-more/issues',
22846             'Test2::Hub::Subtest' => 'http://github.com/Test-More/test-more/issues',
22847             'Test2::IPC' => 'http://github.com/Test-More/test-more/issues',
22848             'Test2::IPC::Driver' => 'http://github.com/Test-More/test-more/issues',
22849             'Test2::IPC::Driver::Files'=> 'http://github.com/Test-More/test-more/issues',
22850             'Test2::Tools::Tiny' => 'http://github.com/Test-More/test-more/issues',
22851             'Test2::Util' => 'http://github.com/Test-More/test-more/issues',
22852             'Test2::Util::ExternalMeta'=> 'http://github.com/Test-More/test-more/issues',
22853             'Test2::Util::Facets2Legacy'=> 'http://github.com/Test-More/test-more/issues',
22854             'Test2::Util::HashBase' => 'http://github.com/Test-More/test-more/issues',
22855             'Test2::Util::Trace' => 'http://github.com/Test-More/test-more/issues',
22856             'Test::Builder' => 'http://github.com/Test-More/test-more/issues',
22857             'Test::Builder::Formatter'=> 'http://github.com/Test-More/test-more/issues',
22858             'Test::Builder::IO::Scalar'=> 'http://github.com/Test-More/test-more/issues',
22859             'Test::Builder::Module' => 'http://github.com/Test-More/test-more/issues',
22860             'Test::Builder::Tester' => 'http://github.com/Test-More/test-more/issues',
22861             'Test::Builder::Tester::Color'=> 'http://github.com/Test-More/test-more/issues',
22862             'Test::Builder::TodoDiag'=> 'http://github.com/Test-More/test-more/issues',
22863             'Test::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22864             'Test::More' => 'http://github.com/Test-More/test-more/issues',
22865             'Test::Simple' => 'http://github.com/Test-More/test-more/issues',
22866             'Test::Tester' => 'http://github.com/Test-More/test-more/issues',
22867             'Test::Tester::Capture' => 'http://github.com/Test-More/test-more/issues',
22868             'Test::Tester::CaptureRunner'=> 'http://github.com/Test-More/test-more/issues',
22869             'Test::Tester::Delegate'=> 'http://github.com/Test-More/test-more/issues',
22870             'Test::use::ok' => 'http://github.com/Test-More/test-more/issues',
22871             'Text::Balanced' => undef,
22872             'Text::ParseWords' => undef,
22873             'Text::Tabs' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
22874             'Text::Wrap' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
22875             'Tie::RefHash' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Tie-RefHash',
22876             'Time::Local' => 'https://github.com/houseabsolute/Time-Local/issues',
22877             'Time::Piece' => undef,
22878             'Time::Seconds' => undef,
22879             'Unicode::Collate' => undef,
22880             'Unicode::Collate::CJK::Big5'=> undef,
22881             'Unicode::Collate::CJK::GB2312'=> undef,
22882             'Unicode::Collate::CJK::JISX0208'=> undef,
22883             'Unicode::Collate::CJK::Korean'=> undef,
22884             'Unicode::Collate::CJK::Pinyin'=> undef,
22885             'Unicode::Collate::CJK::Stroke'=> undef,
22886             'Unicode::Collate::CJK::Zhuyin'=> undef,
22887             'Unicode::Collate::Locale'=> undef,
22888             'Win32' => 'https://github.com/perl-libwin32/win32/issues',
22889             'Win32API::File' => undef,
22890             'autodie' => 'https://github.com/pjf/autodie/issues',
22891             'autodie::Scope::Guard' => 'https://github.com/pjf/autodie/issues',
22892             'autodie::Scope::GuardStack'=> 'https://github.com/pjf/autodie/issues',
22893             'autodie::Util' => 'https://github.com/pjf/autodie/issues',
22894             'autodie::exception' => 'https://github.com/pjf/autodie/issues',
22895             'autodie::exception::system'=> 'https://github.com/pjf/autodie/issues',
22896             'autodie::hints' => 'https://github.com/pjf/autodie/issues',
22897             'autodie::skip' => 'https://github.com/pjf/autodie/issues',
22898             'bigfloat' => undef,
22899             'bigint' => undef,
22900             'bignum' => undef,
22901             'bigrat' => undef,
22902             'encoding' => undef,
22903             'experimental' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
22904             'ok' => 'http://github.com/Test-More/test-more/issues',
22905             'parent' => undef,
22906             'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues',
22907             'stable' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
22908             'version' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
22909             'version::regex' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
22910             );
22911              
22912             # Create aliases with trailing zeros for $] use
22913              
22914             $released{'5.000'} = $released{5};
22915             $version{'5.000'} = $version{5};
22916              
22917             _create_aliases(\%delta);
22918             _create_aliases(\%released);
22919             _create_aliases(\%version);
22920             _create_aliases(\%deprecated);
22921              
22922             sub _create_aliases {
22923 20     20   51 my ($hash) = @_;
22924              
22925 20         565 for my $version (keys %$hash) {
22926 4695 100       9833 next unless $version >= 5.006;
22927              
22928 4550         11532 my $padded = sprintf "%0.6f", $version;
22929              
22930             # If the version in string form isn't the same as the numeric version,
22931             # alias it.
22932 4550 100 66     10795 if ($padded ne $version && $version == $padded) {
22933 820         2265 $hash->{$padded} = $hash->{$version};
22934             }
22935             }
22936             }
22937              
22938             1;
22939             __END__