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   17586 use strict;
  5         24  
  5         337  
3              
4             our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
5              
6 5     5   2485 use version;
  5         10484  
  5         36  
7             our $VERSION = '5.20230720';
8              
9             sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
10 42     42   81 sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
  42         82  
  42         354  
11              
12             sub _undelta {
13 11     11   47 my ($delta) = @_;
14 11         34 my (%expanded, $delta_from, $base, $changed, $removed);
15 11         1162 for my $v (sort keys %$delta) {
16 2496         3868 ($delta_from, $changed, $removed) = @{$delta->{$v}}{qw( delta_from changed removed )};
  2496         7273  
17 2496 100       9452 $base = $delta_from ? $expanded{$delta_from} : {};
18 2496 100       67611 my %full = ( %$base, %{$changed || {}} );
  2496         314675  
19 2496         39487 delete @full{ keys %$removed };
20 2496         8051 $expanded{$v} = \%full;
21             }
22 11         2077 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 7374 0   7374   15373 : $released{$a} cmp $released{$b} )
    50          
    50          
33             }
34              
35             my $dumpinc = 0;
36             sub import {
37 4     4   69 my $self = shift;
38 4   50     403 my $what = shift || '';
39 4 50       4995 if ($what eq 'dumpinc') {
40 0         0 $dumpinc = 1;
41             }
42             }
43              
44             END {
45 5 50   5   1202 print "---INC---\n", join "\n" => keys %INC
46             if $dumpinc;
47             }
48              
49              
50             sub first_release_raw {
51 91 100 100 91 0 301 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
52 91         139 my $module = shift;
53 91         130 my $version = shift;
54              
55             my @perls = $version
56             ? grep { defined $version{$_}{ $module } &&
57 1420 100       6319 $version{$_}{ $module } ge $version } keys %version
58 91 100       3687 : grep { exists $version{$_}{ $module } } keys %version;
  24424         45320  
59              
60 91         2754 return @perls;
61             }
62              
63             sub first_release_by_date {
64 4     4 1 2048 my @perls = &first_release_raw;
65 4 50       15 return unless @perls;
66 4         34 return (sort _released_order @perls)[0];
67             }
68              
69             sub first_release {
70 53     53 1 111 my @perls = &first_release_raw;
71 53 100       167 return unless @perls;
72 49         319 return (sort { $a cmp $b } @perls)[0];
  71551         87046  
73             }
74              
75             sub find_modules {
76 5 100   5 1 107 shift if _looks_like_invocant $_[0];
77 5         10 my $regex = shift;
78 5 100       341 my @perls = @_ ? @_ : keys %version;
79              
80 5         13 my %mods;
81 5         11 foreach (@perls) {
82 855         1202 while (my ($k, $v) = each %{$version{$_}}) {
  514912         1357635  
83 514057 100       1439262 $mods{$k}++ if $k =~ $regex;
84             }
85             }
86 5         182 return sort keys %mods
87             }
88              
89             sub find_version {
90 3 50   3 1 466 shift if _looks_like_invocant $_[0];
91 3         8 my $v = shift;
92 3 100 66     42 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 2009 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      33        
98 3         8 my $module = shift;
99 3   66     35 my $perl_version = shift || $];
100 3 50 33     43 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 9 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         52 my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
  498         864  
108 2 100       25 return unless @perls;
109 1         11 require List::Util;
110 1         11 return List::Util::minstr(@perls);
111             }
112              
113             sub removed_from {
114 34     34 1 75 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 121 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
125 34         68 my $mod = shift;
126 34 50       75 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
  42226         51429  
127 34         254 my $last = pop @perls;
128 34         1178 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
  9656         18093  
  66766         81044  
129 34         839 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             );
411              
412             for my $version ( sort { $a <=> $b } keys %released ) {
413             my $family = int ($version * 1000) / 1000;
414             push @{ $families{ $family }} , $version;
415             }
416              
417             %delta = (
418             5 => {
419             changed => {
420             'AnyDBM_File' => undef,
421             'AutoLoader' => undef,
422             'AutoSplit' => undef,
423             'Benchmark' => undef,
424             'Carp' => undef,
425             'Cwd' => undef,
426             'DB_File' => undef,
427             'DynaLoader' => undef,
428             'English' => undef,
429             'Env' => undef,
430             'Exporter' => undef,
431             'ExtUtils::MakeMaker' => undef,
432             'Fcntl' => undef,
433             'File::Basename' => undef,
434             'File::CheckTree' => undef,
435             'File::Find' => undef,
436             'FileHandle' => undef,
437             'GDBM_File' => undef,
438             'Getopt::Long' => undef,
439             'Getopt::Std' => undef,
440             'I18N::Collate' => undef,
441             'IPC::Open2' => undef,
442             'IPC::Open3' => undef,
443             'Math::BigFloat' => undef,
444             'Math::BigInt' => undef,
445             'Math::Complex' => undef,
446             'NDBM_File' => undef,
447             'Net::Ping' => undef,
448             'ODBM_File' => undef,
449             'POSIX' => undef,
450             'SDBM_File' => undef,
451             'Search::Dict' => undef,
452             'Shell' => undef,
453             'Socket' => undef,
454             'Sys::Hostname' => undef,
455             'Sys::Syslog' => undef,
456             'Term::Cap' => undef,
457             'Term::Complete' => undef,
458             'Test::Harness' => undef,
459             'Text::Abbrev' => undef,
460             'Text::ParseWords' => undef,
461             'Text::Soundex' => undef,
462             'Text::Tabs' => undef,
463             'TieHash' => undef,
464             'Time::Local' => undef,
465             'integer' => undef,
466             'less' => undef,
467             'sigtrap' => undef,
468             'strict' => undef,
469             'subs' => undef,
470             },
471             removed => {
472             }
473             },
474             5.001 => {
475             delta_from => 5,
476             changed => {
477             'ExtUtils::Liblist' => undef,
478             'ExtUtils::Manifest' => undef,
479             'ExtUtils::Mkbootstrap' => undef,
480             'File::Path' => undef,
481             'SubstrHash' => undef,
482             'lib' => undef,
483             },
484             removed => {
485             }
486             },
487             5.002 => {
488             delta_from => 5.001,
489             changed => {
490             'DB_File' => '1.01',
491             'Devel::SelfStubber' => '1.01',
492             'DirHandle' => undef,
493             'DynaLoader' => '1.00',
494             'ExtUtils::Install' => undef,
495             'ExtUtils::MM_OS2' => undef,
496             'ExtUtils::MM_Unix' => undef,
497             'ExtUtils::MM_VMS' => undef,
498             'ExtUtils::MakeMaker' => '5.21',
499             'ExtUtils::Manifest' => '1.22',
500             'ExtUtils::Mksymlists' => '1.00',
501             'Fcntl' => '1.00',
502             'File::Copy' => '1.5',
503             'File::Path' => '1.01',
504             'FileCache' => undef,
505             'FileHandle' => '1.00',
506             'GDBM_File' => '1.00',
507             'Getopt::Long' => '2.01',
508             'NDBM_File' => '1.00',
509             'Net::Ping' => '1',
510             'ODBM_File' => '1.00',
511             'POSIX' => '1.00',
512             'Pod::Functions' => undef,
513             'Pod::Text' => undef,
514             'SDBM_File' => '1.00',
515             'Safe' => '1.00',
516             'SelectSaver' => undef,
517             'SelfLoader' => '1.06',
518             'Socket' => '1.5',
519             'Symbol' => undef,
520             'Term::ReadLine' => undef,
521             'Test::Harness' => '1.07',
522             'Text::Wrap' => undef,
523             'Tie::Hash' => undef,
524             'Tie::Scalar' => undef,
525             'Tie::SubstrHash' => undef,
526             'diagnostics' => undef,
527             'overload' => undef,
528             'vars' => undef,
529             },
530             removed => {
531             'SubstrHash' => 1,
532             'TieHash' => 1,
533             }
534             },
535             5.00307 => {
536             delta_from => 5.002,
537             changed => {
538             'Config' => undef,
539             'DB_File' => '1.03',
540             'ExtUtils::Embed' => '1.18',
541             'ExtUtils::Install' => '1.15',
542             'ExtUtils::Liblist' => '1.20',
543             'ExtUtils::MM_Unix' => '1.107',
544             'ExtUtils::MakeMaker' => '5.38',
545             'ExtUtils::Manifest' => '1.27',
546             'ExtUtils::Mkbootstrap' => '1.13',
547             'ExtUtils::Mksymlists' => '1.12',
548             'ExtUtils::testlib' => '1.11',
549             'Fatal' => undef,
550             'File::Basename' => '2.4',
551             'FindBin' => '1.04',
552             'Getopt::Long' => '2.04',
553             'IO' => undef,
554             'IO::File' => '1.05',
555             'IO::Handle' => '1.12',
556             'IO::Pipe' => '1.07',
557             'IO::Seekable' => '1.05',
558             'IO::Select' => '1.09',
559             'IO::Socket' => '1.13',
560             'Net::Ping' => '1.01',
561             'OS2::ExtAttr' => '0.01',
562             'OS2::PrfDB' => '0.02',
563             'OS2::Process' => undef,
564             'OS2::REXX' => undef,
565             'Opcode' => '1.01',
566             'Safe' => '2.06',
567             'Test::Harness' => '1.13',
568             'Text::Tabs' => '96.051501',
569             'Text::Wrap' => '96.041801',
570             'UNIVERSAL' => undef,
571             'VMS::Filespec' => undef,
572             'VMS::Stdio' => '2.0',
573             'ops' => undef,
574             'sigtrap' => '1.01',
575             },
576             removed => {
577             }
578             },
579             5.004 => {
580             delta_from => 5.00307,
581             changed => {
582             'Bundle::CPAN' => '0.02',
583             'CGI' => '2.36',
584             'CGI::Apache' => '1.01',
585             'CGI::Carp' => '1.06',
586             'CGI::Fast' => '1.00a',
587             'CGI::Push' => '1.00',
588             'CGI::Switch' => '0.05',
589             'CPAN' => '1.2401',
590             'CPAN::FirstTime' => '1.18',
591             'CPAN::Nox' => undef,
592             'Class::Struct' => undef,
593             'Cwd' => '2.00',
594             'DB_File' => '1.14',
595             'DynaLoader' => '1.02',
596             'ExtUtils::Command' => '1.00',
597             'ExtUtils::Embed' => '1.2501',
598             'ExtUtils::Install' => '1.16',
599             'ExtUtils::Liblist' => '1.2201',
600             'ExtUtils::MM_Unix' => '1.114',
601             'ExtUtils::MM_Win32' => undef,
602             'ExtUtils::MakeMaker' => '5.4002',
603             'ExtUtils::Manifest' => '1.33',
604             'ExtUtils::Mksymlists' => '1.13',
605             'ExtUtils::XSSymSet' => '1.0',
606             'Fcntl' => '1.03',
607             'File::Basename' => '2.5',
608             'File::Compare' => '1.1001',
609             'File::Copy' => '2.02',
610             'File::Path' => '1.04',
611             'File::stat' => undef,
612             'FileHandle' => '2.00',
613             'Getopt::Long' => '2.10',
614             'IO::File' => '1.0602',
615             'IO::Handle' => '1.1504',
616             'IO::Pipe' => '1.0901',
617             'IO::Seekable' => '1.06',
618             'IO::Select' => '1.10',
619             'IO::Socket' => '1.1602',
620             'IPC::Open2' => '1.01',
621             'IPC::Open3' => '1.0101',
622             'Math::Complex' => '1.01',
623             'Math::Trig' => '1',
624             'Net::Ping' => '2.02',
625             'Net::hostent' => undef,
626             'Net::netent' => undef,
627             'Net::protoent' => undef,
628             'Net::servent' => undef,
629             'Opcode' => '1.04',
630             'POSIX' => '1.02',
631             'Pod::Html' => undef,
632             'Pod::Text' => '1.0203',
633             'SelfLoader' => '1.07',
634             'Socket' => '1.6',
635             'Symbol' => '1.02',
636             'Test::Harness' => '1.1502',
637             'Text::Tabs' => '96.121201',
638             'Text::Wrap' => '97.011701',
639             'Tie::RefHash' => undef,
640             'Time::gmtime' => '1.01',
641             'Time::localtime' => '1.01',
642             'Time::tm' => undef,
643             'User::grent' => undef,
644             'User::pwent' => undef,
645             'VMS::DCLsym' => '1.01',
646             'VMS::Stdio' => '2.02',
647             'autouse' => '1.01',
648             'blib' => undef,
649             'constant' => '1.00',
650             'locale' => undef,
651             'sigtrap' => '1.02',
652             'vmsish' => undef,
653             },
654             removed => {
655             'Fatal' => 1,
656             }
657             },
658             5.00405 => {
659             delta_from => 5.004,
660             changed => {
661             'AutoLoader' => '5.56',
662             'AutoSplit' => '1.0303',
663             'Bundle::CPAN' => '0.03',
664             'CGI' => '2.42',
665             'CGI::Apache' => '1.1',
666             'CGI::Carp' => '1.10',
667             'CGI::Cookie' => '1.06',
668             'CGI::Push' => '1.01',
669             'CGI::Switch' => '0.06',
670             'CPAN' => '1.40',
671             'CPAN::FirstTime' => '1.30',
672             'Cwd' => '2.01',
673             'DB_File' => '1.15',
674             'DynaLoader' => '1.03',
675             'ExtUtils::Command' => '1.01',
676             'ExtUtils::Embed' => '1.2505',
677             'ExtUtils::Install' => '1.28',
678             'ExtUtils::Liblist' => '1.25',
679             'ExtUtils::MM_Unix' => '1.118',
680             'ExtUtils::MakeMaker' => '5.42',
681             'ExtUtils::Mkbootstrap' => '1.14',
682             'ExtUtils::Mksymlists' => '1.16',
683             'File::Basename' => '2.6',
684             'File::DosGlob' => undef,
685             'File::Path' => '1.0402',
686             'File::Spec' => '0.6',
687             'File::Spec::Mac' => '1.0',
688             'File::Spec::OS2' => undef,
689             'File::Spec::Unix' => undef,
690             'File::Spec::VMS' => undef,
691             'File::Spec::Win32' => undef,
692             'FindBin' => '1.41',
693             'Getopt::Long' => '2.19',
694             'IO::File' => '1.06021',
695             'IO::Socket' => '1.1603',
696             'IPC::Open3' => '1.0103',
697             'Math::Complex' => '1.25',
698             'NDBM_File' => '1.01',
699             'Pod::Html' => '1.0101',
700             'Pod::Text' => '1.0204',
701             'SelfLoader' => '1.08',
702             'Socket' => '1.7',
703             'Test' => '1.04',
704             'Test::Harness' => '1.1602',
705             'Text::ParseWords' => '3.1001',
706             'Text::Wrap' => '98.112902',
707             'Tie::Handle' => undef,
708             'attrs' => '0.1',
709             'base' => undef,
710             'blib' => '1.00',
711             're' => undef,
712             'strict' => '1.01',
713             },
714             removed => {
715             }
716             },
717             5.005 => {
718             delta_from => 5.00405,
719             changed => {
720             'AutoLoader' => undef,
721             'AutoSplit' => '1.0302',
722             'B' => undef,
723             'B::Asmdata' => undef,
724             'B::Assembler' => undef,
725             'B::Bblock' => undef,
726             'B::Bytecode' => undef,
727             'B::C' => undef,
728             'B::CC' => undef,
729             'B::Debug' => undef,
730             'B::Deparse' => '0.56',
731             'B::Disassembler' => undef,
732             'B::Lint' => undef,
733             'B::Showlex' => undef,
734             'B::Stackobj' => undef,
735             'B::Terse' => undef,
736             'B::Xref' => undef,
737             'CGI::Carp' => '1.101',
738             'CPAN' => '1.3901',
739             'CPAN::FirstTime' => '1.29',
740             'DB_File' => '1.60',
741             'Data::Dumper' => '2.09',
742             'Errno' => '1.09',
743             'ExtUtils::Installed' => '0.02',
744             'ExtUtils::MM_Unix' => '1.12601',
745             'ExtUtils::MakeMaker' => '5.4301',
746             'ExtUtils::Mkbootstrap' => '1.13',
747             'ExtUtils::Mksymlists' => '1.17',
748             'ExtUtils::Packlist' => '0.03',
749             'Fatal' => '1.02',
750             'File::Path' => '1.0401',
751             'Getopt::Long' => '2.17',
752             'IO::Handle' => '1.1505',
753             'IPC::Msg' => '1.00',
754             'IPC::Open3' => '1.0102',
755             'IPC::Semaphore' => '1.00',
756             'IPC::SysV' => '1.03',
757             'O' => undef,
758             'OS2::Process' => '0.2',
759             'Pod::Html' => '1.01',
760             'Pod::Text' => '1.0203',
761             'Text::ParseWords' => '3.1',
762             'Text::Wrap' => '97.02',
763             'Thread' => '1.0',
764             'Thread::Queue' => undef,
765             'Thread::Semaphore' => undef,
766             'Thread::Signal' => undef,
767             'Thread::Specific' => undef,
768             'Tie::Array' => '1.00',
769             'VMS::Stdio' => '2.1',
770             'attrs' => '1.0',
771             'fields' => '0.02',
772             're' => '0.02',
773             },
774             removed => {
775             'Bundle::CPAN' => 1,
776             }
777             },
778             5.00503 => {
779             delta_from => 5.005,
780             changed => {
781             'AutoSplit' => '1.0303',
782             'CGI' => '2.46',
783             'CGI::Carp' => '1.13',
784             'CGI::Fast' => '1.01',
785             'CPAN' => '1.48',
786             'CPAN::FirstTime' => '1.36',
787             'CPAN::Nox' => '1.00',
788             'DB_File' => '1.65',
789             'Data::Dumper' => '2.101',
790             'Dumpvalue' => undef,
791             'Errno' => '1.111',
792             'ExtUtils::Install' => '1.28',
793             'ExtUtils::Liblist' => '1.25',
794             'ExtUtils::MM_Unix' => '1.12602',
795             'ExtUtils::MakeMaker' => '5.4302',
796             'ExtUtils::Manifest' => '1.33',
797             'ExtUtils::Mkbootstrap' => '1.14',
798             'ExtUtils::Mksymlists' => '1.17',
799             'ExtUtils::testlib' => '1.11',
800             'FindBin' => '1.42',
801             'Getopt::Long' => '2.19',
802             'Getopt::Std' => '1.01',
803             'IO::Pipe' => '1.0902',
804             'IPC::Open3' => '1.0103',
805             'Math::Complex' => '1.26',
806             'Test' => '1.122',
807             'Text::Wrap' => '98.112902',
808             },
809             removed => {
810             }
811             },
812             5.00504 => {
813             delta_from => 5.00503,
814             changed => {
815             'CPAN::FirstTime' => '1.36',
816             'DB_File' => '1.807',
817             'ExtUtils::Install' => '1.28',
818             'ExtUtils::Liblist' => '1.25',
819             'ExtUtils::MM_Unix' => '1.12602',
820             'ExtUtils::Manifest' => '1.33',
821             'ExtUtils::Miniperl' => undef,
822             'ExtUtils::Mkbootstrap' => '1.14',
823             'ExtUtils::Mksymlists' => '1.17',
824             'ExtUtils::testlib' => '1.11',
825             'File::Compare' => '1.1002',
826             'File::Spec' => '0.8',
827             'File::Spec::Functions' => undef,
828             'File::Spec::Mac' => undef,
829             'Getopt::Long' => '2.20',
830             'Pod::Html' => '1.02',
831             },
832             removed => {
833             }
834             },
835             5.006 => {
836             delta_from => 5.00504,
837             changed => {
838             'AutoLoader' => '5.57',
839             'AutoSplit' => '1.0305',
840             'B::Deparse' => '0.59',
841             'B::Stash' => undef,
842             'Benchmark' => '1',
843             'ByteLoader' => '0.03',
844             'CGI' => '2.56',
845             'CGI::Apache' => undef,
846             'CGI::Carp' => '1.14',
847             'CGI::Cookie' => '1.12',
848             'CGI::Fast' => '1.02',
849             'CGI::Pretty' => '1.03',
850             'CGI::Switch' => undef,
851             'CPAN' => '1.52',
852             'CPAN::FirstTime' => '1.38',
853             'Carp::Heavy' => undef,
854             'Class::Struct' => '0.58',
855             'Cwd' => '2.02',
856             'DB' => '1.0',
857             'DB_File' => '1.72',
858             'Devel::DProf' => '20000000.00_00',
859             'Devel::Peek' => '1.00_01',
860             'DynaLoader' => '1.04',
861             'Exporter' => '5.562',
862             'Exporter::Heavy' => undef,
863             'ExtUtils::MM_Cygwin' => undef,
864             'ExtUtils::MM_Unix' => '1.12603',
865             'ExtUtils::MakeMaker' => '5.45',
866             'File::Copy' => '2.03',
867             'File::Glob' => '0.991',
868             'File::Path' => '1.0403',
869             'GDBM_File' => '1.03',
870             'Getopt::Long' => '2.23',
871             'Getopt::Std' => '1.02',
872             'IO' => '1.20',
873             'IO::Dir' => '1.03',
874             'IO::File' => '1.08',
875             'IO::Handle' => '1.21',
876             'IO::Pipe' => '1.121',
877             'IO::Poll' => '0.01',
878             'IO::Seekable' => '1.08',
879             'IO::Select' => '1.14',
880             'IO::Socket' => '1.26',
881             'IO::Socket::INET' => '1.25',
882             'IO::Socket::UNIX' => '1.20',
883             'JNI' => '0.01',
884             'JPL::AutoLoader' => undef,
885             'JPL::Class' => undef,
886             'JPL::Compile' => undef,
887             'NDBM_File' => '1.03',
888             'ODBM_File' => '1.02',
889             'OS2::DLL' => undef,
890             'POSIX' => '1.03',
891             'Pod::Checker' => '1.098',
892             'Pod::Find' => '0.12',
893             'Pod::Html' => '1.03',
894             'Pod::InputObjects' => '1.12',
895             'Pod::Man' => '1.02',
896             'Pod::ParseUtils' => '0.2',
897             'Pod::Parser' => '1.12',
898             'Pod::Plainer' => '0.01',
899             'Pod::Select' => '1.12',
900             'Pod::Text' => '2.03',
901             'Pod::Text::Color' => '0.05',
902             'Pod::Text::Termcap' => '0.04',
903             'Pod::Usage' => '1.12',
904             'SDBM_File' => '1.02',
905             'SelfLoader' => '1.0901',
906             'Shell' => '0.2',
907             'Socket' => '1.72',
908             'Sys::Hostname' => '1.1',
909             'Sys::Syslog' => '0.01',
910             'Term::ANSIColor' => '1.01',
911             'Test' => '1.13',
912             'Test::Harness' => '1.1604',
913             'Text::ParseWords' => '3.2',
914             'Text::Soundex' => '1.0',
915             'Text::Tabs' => '98.112801',
916             'Tie::Array' => '1.01',
917             'Tie::Handle' => '1.0',
918             'VMS::Stdio' => '2.2',
919             'XSLoader' => '0.01',
920             'attributes' => '0.03',
921             'autouse' => '1.02',
922             'base' => '1.01',
923             'bytes' => undef,
924             'charnames' => undef,
925             'constant' => '1.02',
926             'diagnostics' => '1.0',
927             'fields' => '1.01',
928             'filetest' => undef,
929             'lib' => '0.5564',
930             'open' => undef,
931             'utf8' => undef,
932             'warnings' => undef,
933             'warnings::register' => undef,
934             },
935             removed => {
936             }
937             },
938             5.006001 => {
939             delta_from => 5.006,
940             changed => {
941             'AutoLoader' => '5.58',
942             'B::Assembler' => '0.02',
943             'B::Concise' => '0.51',
944             'B::Deparse' => '0.6',
945             'ByteLoader' => '0.04',
946             'CGI' => '2.752',
947             'CGI::Carp' => '1.20',
948             'CGI::Cookie' => '1.18',
949             'CGI::Pretty' => '1.05',
950             'CGI::Push' => '1.04',
951             'CGI::Util' => '1.1',
952             'CPAN' => '1.59_54',
953             'CPAN::FirstTime' => '1.53',
954             'Class::Struct' => '0.59',
955             'Cwd' => '2.04',
956             'DB_File' => '1.75',
957             'Data::Dumper' => '2.102',
958             'ExtUtils::Install' => '1.28',
959             'ExtUtils::Liblist' => '1.26',
960             'ExtUtils::MM_Unix' => '1.12603',
961             'ExtUtils::Manifest' => '1.33',
962             'ExtUtils::Mkbootstrap' => '1.14',
963             'ExtUtils::Mksymlists' => '1.17',
964             'ExtUtils::testlib' => '1.11',
965             'File::Path' => '1.0404',
966             'File::Spec' => '0.82',
967             'File::Spec::Epoc' => undef,
968             'File::Spec::Functions' => '1.1',
969             'File::Spec::Mac' => '1.2',
970             'File::Spec::OS2' => '1.1',
971             'File::Spec::Unix' => '1.2',
972             'File::Spec::VMS' => '1.1',
973             'File::Spec::Win32' => '1.2',
974             'File::Temp' => '0.12',
975             'GDBM_File' => '1.05',
976             'Getopt::Long' => '2.25',
977             'IO::Poll' => '0.05',
978             'JNI' => '0.1',
979             'Math::BigFloat' => '0.02',
980             'Math::BigInt' => '0.01',
981             'Math::Complex' => '1.31',
982             'NDBM_File' => '1.04',
983             'ODBM_File' => '1.03',
984             'OS2::REXX' => '1.00',
985             'Pod::Checker' => '1.2',
986             'Pod::Find' => '0.21',
987             'Pod::InputObjects' => '1.13',
988             'Pod::LaTeX' => '0.53',
989             'Pod::Man' => '1.15',
990             'Pod::ParseUtils' => '0.22',
991             'Pod::Parser' => '1.13',
992             'Pod::Select' => '1.13',
993             'Pod::Text' => '2.08',
994             'Pod::Text::Color' => '0.06',
995             'Pod::Text::Overstrike' => '1.01',
996             'Pod::Text::Termcap' => '1',
997             'Pod::Usage' => '1.14',
998             'SDBM_File' => '1.03',
999             'SelfLoader' => '1.0902',
1000             'Shell' => '0.3',
1001             'Term::ANSIColor' => '1.03',
1002             'Test' => '1.15',
1003             'Text::Wrap' => '2001.0131',
1004             'Tie::Handle' => '4.0',
1005             'Tie::RefHash' => '1.3',
1006             },
1007             removed => {
1008             }
1009             },
1010             5.006002 => {
1011             delta_from => 5.006001,
1012             changed => {
1013             'CPAN::FirstTime' => '1.53',
1014             'DB_File' => '1.806',
1015             'Data::Dumper' => '2.121',
1016             'ExtUtils::Command' => '1.05',
1017             'ExtUtils::Command::MM' => '0.03',
1018             'ExtUtils::Install' => '1.32',
1019             'ExtUtils::Installed' => '0.08',
1020             'ExtUtils::Liblist' => '1.01',
1021             'ExtUtils::Liblist::Kid'=> '1.3',
1022             'ExtUtils::MM' => '0.04',
1023             'ExtUtils::MM_Any' => '0.07',
1024             'ExtUtils::MM_BeOS' => '1.04',
1025             'ExtUtils::MM_Cygwin' => '1.06',
1026             'ExtUtils::MM_DOS' => '0.02',
1027             'ExtUtils::MM_MacOS' => '1.07',
1028             'ExtUtils::MM_NW5' => '2.06',
1029             'ExtUtils::MM_OS2' => '1.04',
1030             'ExtUtils::MM_UWIN' => '0.02',
1031             'ExtUtils::MM_Unix' => '1.42',
1032             'ExtUtils::MM_VMS' => '5.70',
1033             'ExtUtils::MM_Win32' => '1.09',
1034             'ExtUtils::MM_Win95' => '0.03',
1035             'ExtUtils::MY' => '0.01',
1036             'ExtUtils::MakeMaker' => '6.17',
1037             'ExtUtils::MakeMaker::bytes'=> '0.01',
1038             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1039             'ExtUtils::Manifest' => '1.42',
1040             'ExtUtils::Mkbootstrap' => '1.15',
1041             'ExtUtils::Mksymlists' => '1.19',
1042             'ExtUtils::Packlist' => '0.04',
1043             'ExtUtils::testlib' => '1.15',
1044             'File::Spec' => '0.86',
1045             'File::Spec::Cygwin' => '1.1',
1046             'File::Spec::Epoc' => '1.1',
1047             'File::Spec::Functions' => '1.3',
1048             'File::Spec::Mac' => '1.4',
1049             'File::Spec::OS2' => '1.2',
1050             'File::Spec::Unix' => '1.5',
1051             'File::Spec::VMS' => '1.4',
1052             'File::Spec::Win32' => '1.4',
1053             'File::Temp' => '0.14',
1054             'Safe' => '2.10',
1055             'Test' => '1.24',
1056             'Test::Builder' => '0.17',
1057             'Test::Harness' => '2.30',
1058             'Test::Harness::Assert' => '0.01',
1059             'Test::Harness::Iterator'=> '0.01',
1060             'Test::Harness::Straps' => '0.15',
1061             'Test::More' => '0.47',
1062             'Test::Simple' => '0.47',
1063             'Unicode' => '3.0.1',
1064             'if' => '0.03',
1065             'ops' => '1.00',
1066             },
1067             removed => {
1068             }
1069             },
1070             5.007003 => {
1071             delta_from => 5.006001,
1072             changed => {
1073             'AnyDBM_File' => '1.00',
1074             'Attribute::Handlers' => '0.76',
1075             'AutoLoader' => '5.59',
1076             'AutoSplit' => '1.0307',
1077             'B' => '1.00',
1078             'B::Asmdata' => '1.00',
1079             'B::Assembler' => '0.04',
1080             'B::Bblock' => '1.00',
1081             'B::Bytecode' => '1.00',
1082             'B::C' => '1.01',
1083             'B::CC' => '1.00',
1084             'B::Concise' => '0.52',
1085             'B::Debug' => '1.00',
1086             'B::Deparse' => '0.63',
1087             'B::Disassembler' => '1.01',
1088             'B::Lint' => '1.00',
1089             'B::Showlex' => '1.00',
1090             'B::Stackobj' => '1.00',
1091             'B::Stash' => '1.00',
1092             'B::Terse' => '1.00',
1093             'B::Xref' => '1.00',
1094             'Benchmark' => '1.04',
1095             'CGI' => '2.80',
1096             'CGI::Apache' => '1.00',
1097             'CGI::Carp' => '1.22',
1098             'CGI::Cookie' => '1.20',
1099             'CGI::Fast' => '1.04',
1100             'CGI::Pretty' => '1.05_00',
1101             'CGI::Switch' => '1.00',
1102             'CGI::Util' => '1.3',
1103             'CPAN' => '1.59_56',
1104             'CPAN::FirstTime' => '1.54',
1105             'CPAN::Nox' => '1.00_01',
1106             'Carp' => '1.01',
1107             'Carp::Heavy' => '1.01',
1108             'Class::ISA' => '0.32',
1109             'Class::Struct' => '0.61',
1110             'Cwd' => '2.06',
1111             'DB_File' => '1.804',
1112             'Data::Dumper' => '2.12',
1113             'Devel::DProf' => '20000000.00_01',
1114             'Devel::PPPort' => '2.0002',
1115             'Devel::Peek' => '1.00_03',
1116             'Devel::SelfStubber' => '1.03',
1117             'Digest' => '1.00',
1118             'Digest::MD5' => '2.16',
1119             'DirHandle' => '1.00',
1120             'Dumpvalue' => '1.10',
1121             'Encode' => '0.40',
1122             'Encode::CN' => '0.02',
1123             'Encode::CN::HZ' => undef,
1124             'Encode::Encoding' => '0.02',
1125             'Encode::Internal' => '0.30',
1126             'Encode::JP' => '0.02',
1127             'Encode::JP::Constants' => '1.02',
1128             'Encode::JP::H2Z' => '0.77',
1129             'Encode::JP::ISO_2022_JP'=> undef,
1130             'Encode::JP::JIS' => undef,
1131             'Encode::JP::Tr' => '0.77',
1132             'Encode::KR' => '0.02',
1133             'Encode::TW' => '0.02',
1134             'Encode::Tcl' => '1.01',
1135             'Encode::Tcl::Escape' => '1.01',
1136             'Encode::Tcl::Extended' => '1.01',
1137             'Encode::Tcl::HanZi' => '1.01',
1138             'Encode::Tcl::Table' => '1.01',
1139             'Encode::Unicode' => '0.30',
1140             'Encode::XS' => '0.40',
1141             'Encode::iso10646_1' => '0.30',
1142             'Encode::usc2_le' => '0.30',
1143             'Encode::utf8' => '0.30',
1144             'English' => '1.00',
1145             'Env' => '1.00',
1146             'Exporter' => '5.566',
1147             'Exporter::Heavy' => '5.562',
1148             'ExtUtils::Command' => '1.02',
1149             'ExtUtils::Constant' => '0.11',
1150             'ExtUtils::Embed' => '1.250601',
1151             'ExtUtils::Install' => '1.29',
1152             'ExtUtils::Installed' => '0.04',
1153             'ExtUtils::Liblist' => '1.2701',
1154             'ExtUtils::MM_BeOS' => '1.00',
1155             'ExtUtils::MM_Cygwin' => '1.00',
1156             'ExtUtils::MM_OS2' => '1.00',
1157             'ExtUtils::MM_Unix' => '1.12607',
1158             'ExtUtils::MM_VMS' => '5.56',
1159             'ExtUtils::MM_Win32' => '1.00_02',
1160             'ExtUtils::MakeMaker' => '5.48_03',
1161             'ExtUtils::Manifest' => '1.35',
1162             'ExtUtils::Mkbootstrap' => '1.1401',
1163             'ExtUtils::Mksymlists' => '1.18',
1164             'ExtUtils::Packlist' => '0.04',
1165             'ExtUtils::testlib' => '1.1201',
1166             'Fatal' => '1.03',
1167             'Fcntl' => '1.04',
1168             'File::Basename' => '2.71',
1169             'File::CheckTree' => '4.1',
1170             'File::Compare' => '1.1003',
1171             'File::Copy' => '2.05',
1172             'File::DosGlob' => '1.00',
1173             'File::Find' => '1.04',
1174             'File::Glob' => '1.01',
1175             'File::Path' => '1.05',
1176             'File::Spec' => '0.83',
1177             'File::Spec::Cygwin' => '1.0',
1178             'File::Spec::Epoc' => '1.00',
1179             'File::Spec::Functions' => '1.2',
1180             'File::Spec::Mac' => '1.3',
1181             'File::Spec::Unix' => '1.4',
1182             'File::Spec::VMS' => '1.2',
1183             'File::Spec::Win32' => '1.3',
1184             'File::Temp' => '0.13',
1185             'File::stat' => '1.00',
1186             'FileCache' => '1.00',
1187             'FileHandle' => '2.01',
1188             'Filter::Simple' => '0.77',
1189             'Filter::Util::Call' => '1.06',
1190             'FindBin' => '1.43',
1191             'GDBM_File' => '1.06',
1192             'Getopt::Long' => '2.28',
1193             'Getopt::Std' => '1.03',
1194             'I18N::Collate' => '1.00',
1195             'I18N::LangTags' => '0.27',
1196             'I18N::LangTags::List' => '0.25',
1197             'I18N::Langinfo' => '0.01',
1198             'IO::Dir' => '1.03_00',
1199             'IO::File' => '1.09',
1200             'IO::Handle' => '1.21_00',
1201             'IO::Pipe' => '1.122',
1202             'IO::Poll' => '0.06',
1203             'IO::Seekable' => '1.08_00',
1204             'IO::Select' => '1.15',
1205             'IO::Socket' => '1.27',
1206             'IO::Socket::INET' => '1.26',
1207             'IO::Socket::UNIX' => '1.20_00',
1208             'IPC::Msg' => '1.00_00',
1209             'IPC::Open3' => '1.0104',
1210             'IPC::Semaphore' => '1.00_00',
1211             'IPC::SysV' => '1.03_00',
1212             'List::Util' => '1.06_00',
1213             'Locale::Constants' => '2.01',
1214             'Locale::Country' => '2.01',
1215             'Locale::Currency' => '2.01',
1216             'Locale::Language' => '2.01',
1217             'Locale::Maketext' => '1.03',
1218             'Locale::Script' => '2.01',
1219             'MIME::Base64' => '2.12',
1220             'MIME::QuotedPrint' => '2.03',
1221             'Math::BigFloat' => '1.30',
1222             'Math::BigInt' => '1.54',
1223             'Math::BigInt::Calc' => '0.25',
1224             'Math::Complex' => '1.34',
1225             'Math::Trig' => '1.01',
1226             'Memoize' => '0.66',
1227             'Memoize::AnyDBM_File' => '0.65',
1228             'Memoize::Expire' => '0.66',
1229             'Memoize::ExpireFile' => '0.65',
1230             'Memoize::ExpireTest' => '0.65',
1231             'Memoize::NDBM_File' => '0.65',
1232             'Memoize::SDBM_File' => '0.65',
1233             'Memoize::Storable' => '0.65',
1234             'NEXT' => '0.50',
1235             'Net::Cmd' => '2.21',
1236             'Net::Config' => '1.10',
1237             'Net::Domain' => '2.17',
1238             'Net::FTP' => '2.64',
1239             'Net::FTP::A' => '1.15',
1240             'Net::FTP::E' => '0.01',
1241             'Net::FTP::I' => '1.12',
1242             'Net::FTP::L' => '0.01',
1243             'Net::FTP::dataconn' => '0.10',
1244             'Net::NNTP' => '2.21',
1245             'Net::Netrc' => '2.12',
1246             'Net::POP3' => '2.23',
1247             'Net::Ping' => '2.12',
1248             'Net::SMTP' => '2.21',
1249             'Net::Time' => '2.09',
1250             'Net::hostent' => '1.00',
1251             'Net::netent' => '1.00',
1252             'Net::protoent' => '1.00',
1253             'Net::servent' => '1.00',
1254             'O' => '1.00',
1255             'OS2::DLL' => '1.00',
1256             'OS2::Process' => '1.0',
1257             'OS2::REXX' => '1.01',
1258             'Opcode' => '1.05',
1259             'POSIX' => '1.05',
1260             'PerlIO' => '1.00',
1261             'PerlIO::Scalar' => '0.01',
1262             'PerlIO::Via' => '0.01',
1263             'Pod::Checker' => '1.3',
1264             'Pod::Find' => '0.22',
1265             'Pod::Functions' => '1.01',
1266             'Pod::Html' => '1.04',
1267             'Pod::LaTeX' => '0.54',
1268             'Pod::Man' => '1.32',
1269             'Pod::ParseLink' => '1.05',
1270             'Pod::Text' => '2.18',
1271             'Pod::Text::Color' => '1.03',
1272             'Pod::Text::Overstrike' => '1.08',
1273             'Pod::Text::Termcap' => '1.09',
1274             'Safe' => '2.07',
1275             'Scalar::Util' => '1.06_00',
1276             'Search::Dict' => '1.02',
1277             'SelectSaver' => '1.00',
1278             'SelfLoader' => '1.0903',
1279             'Shell' => '0.4',
1280             'Socket' => '1.75',
1281             'Storable' => '1.015',
1282             'Switch' => '2.06',
1283             'Symbol' => '1.04',
1284             'Sys::Syslog' => '0.02',
1285             'Term::ANSIColor' => '1.04',
1286             'Term::Cap' => '1.07',
1287             'Term::Complete' => '1.4',
1288             'Term::ReadLine' => '1.00',
1289             'Test' => '1.18',
1290             'Test::Builder' => '0.11',
1291             'Test::Harness' => '2.01',
1292             'Test::Harness::Assert' => '0.01',
1293             'Test::Harness::Iterator'=> '0.01',
1294             'Test::Harness::Straps' => '0.08',
1295             'Test::More' => '0.41',
1296             'Test::Simple' => '0.41',
1297             'Text::Abbrev' => '1.00',
1298             'Text::Balanced' => '1.89',
1299             'Text::ParseWords' => '3.21',
1300             'Text::Soundex' => '1.01',
1301             'Text::Wrap' => '2001.0929',
1302             'Thread' => '2.00',
1303             'Thread::Queue' => '1.00',
1304             'Thread::Semaphore' => '1.00',
1305             'Thread::Signal' => '1.00',
1306             'Thread::Specific' => '1.00',
1307             'Tie::Array' => '1.02',
1308             'Tie::File' => '0.17',
1309             'Tie::Handle' => '4.1',
1310             'Tie::Hash' => '1.00',
1311             'Tie::Memoize' => '1.0',
1312             'Tie::RefHash' => '1.3_00',
1313             'Tie::Scalar' => '1.00',
1314             'Tie::SubstrHash' => '1.00',
1315             'Time::HiRes' => '1.20_00',
1316             'Time::Local' => '1.04',
1317             'Time::gmtime' => '1.02',
1318             'Time::localtime' => '1.02',
1319             'Time::tm' => '1.00',
1320             'UNIVERSAL' => '1.00',
1321             'Unicode::Collate' => '0.10',
1322             'Unicode::Normalize' => '0.14',
1323             'Unicode::UCD' => '0.2',
1324             'User::grent' => '1.00',
1325             'User::pwent' => '1.00',
1326             'VMS::DCLsym' => '1.02',
1327             'VMS::Filespec' => '1.1',
1328             'VMS::Stdio' => '2.3',
1329             'XS::Typemap' => '0.01',
1330             'attributes' => '0.04_01',
1331             'attrs' => '1.01',
1332             'autouse' => '1.03',
1333             'base' => '1.02',
1334             'blib' => '1.01',
1335             'bytes' => '1.00',
1336             'charnames' => '1.01',
1337             'constant' => '1.04',
1338             'diagnostics' => '1.1',
1339             'encoding' => '1.00',
1340             'fields' => '1.02',
1341             'filetest' => '1.00',
1342             'if' => '0.01',
1343             'integer' => '1.00',
1344             'less' => '0.01',
1345             'locale' => '1.00',
1346             'open' => '1.01',
1347             'ops' => '1.00',
1348             'overload' => '1.00',
1349             're' => '0.03',
1350             'sort' => '1.00',
1351             'strict' => '1.02',
1352             'subs' => '1.00',
1353             'threads' => '0.05',
1354             'threads::shared' => '0.90',
1355             'utf8' => '1.00',
1356             'vars' => '1.01',
1357             'vmsish' => '1.00',
1358             'warnings' => '1.00',
1359             'warnings::register' => '1.00',
1360             },
1361             removed => {
1362             }
1363             },
1364             5.008 => {
1365             delta_from => 5.007003,
1366             changed => {
1367             'Attribute::Handlers' => '0.77',
1368             'B' => '1.01',
1369             'B::Lint' => '1.01',
1370             'B::Xref' => '1.01',
1371             'CGI' => '2.81',
1372             'CGI::Carp' => '1.23',
1373             'CPAN' => '1.61',
1374             'CPAN::FirstTime' => '1.56',
1375             'CPAN::Nox' => '1.02',
1376             'Digest::MD5' => '2.20',
1377             'Dumpvalue' => '1.11',
1378             'Encode' => '1.75',
1379             'Encode::Alias' => '1.32',
1380             'Encode::Byte' => '1.22',
1381             'Encode::CJKConstants' => '1.00',
1382             'Encode::CN' => '1.24',
1383             'Encode::CN::HZ' => '1.04',
1384             'Encode::Config' => '1.06',
1385             'Encode::EBCDIC' => '1.21',
1386             'Encode::Encoder' => '0.05',
1387             'Encode::Encoding' => '1.30',
1388             'Encode::Guess' => '1.06',
1389             'Encode::JP' => '1.25',
1390             'Encode::JP::H2Z' => '1.02',
1391             'Encode::JP::JIS7' => '1.08',
1392             'Encode::KR' => '1.22',
1393             'Encode::KR::2022_KR' => '1.05',
1394             'Encode::MIME::Header' => '1.05',
1395             'Encode::Symbol' => '1.22',
1396             'Encode::TW' => '1.26',
1397             'Encode::Unicode' => '1.37',
1398             'Exporter::Heavy' => '5.566',
1399             'ExtUtils::Command' => '1.04',
1400             'ExtUtils::Command::MM' => '0.01',
1401             'ExtUtils::Constant' => '0.12',
1402             'ExtUtils::Installed' => '0.06',
1403             'ExtUtils::Liblist' => '1.00',
1404             'ExtUtils::Liblist::Kid'=> '1.29',
1405             'ExtUtils::MM' => '0.04',
1406             'ExtUtils::MM_Any' => '0.04',
1407             'ExtUtils::MM_BeOS' => '1.03',
1408             'ExtUtils::MM_Cygwin' => '1.04',
1409             'ExtUtils::MM_DOS' => '0.01',
1410             'ExtUtils::MM_MacOS' => '1.03',
1411             'ExtUtils::MM_NW5' => '2.05',
1412             'ExtUtils::MM_OS2' => '1.03',
1413             'ExtUtils::MM_UWIN' => '0.01',
1414             'ExtUtils::MM_Unix' => '1.33',
1415             'ExtUtils::MM_VMS' => '5.65',
1416             'ExtUtils::MM_Win32' => '1.05',
1417             'ExtUtils::MM_Win95' => '0.02',
1418             'ExtUtils::MY' => '0.01',
1419             'ExtUtils::MakeMaker' => '6.03',
1420             'ExtUtils::Manifest' => '1.38',
1421             'ExtUtils::Mkbootstrap' => '1.15',
1422             'ExtUtils::Mksymlists' => '1.19',
1423             'ExtUtils::testlib' => '1.15',
1424             'File::CheckTree' => '4.2',
1425             'FileCache' => '1.021',
1426             'Filter::Simple' => '0.78',
1427             'Getopt::Long' => '2.32',
1428             'Hash::Util' => '0.04',
1429             'List::Util' => '1.07_00',
1430             'Locale::Country' => '2.04',
1431             'Math::BigFloat' => '1.35',
1432             'Math::BigFloat::Trace' => '0.01',
1433             'Math::BigInt' => '1.60',
1434             'Math::BigInt::Calc' => '0.30',
1435             'Math::BigInt::Trace' => '0.01',
1436             'Math::BigRat' => '0.07',
1437             'Memoize' => '1.01',
1438             'Memoize::Expire' => '1.00',
1439             'Memoize::ExpireFile' => '1.01',
1440             'Net::FTP' => '2.65',
1441             'Net::FTP::dataconn' => '0.11',
1442             'Net::Ping' => '2.19',
1443             'Net::SMTP' => '2.24',
1444             'PerlIO' => '1.01',
1445             'PerlIO::encoding' => '0.06',
1446             'PerlIO::scalar' => '0.01',
1447             'PerlIO::via' => '0.01',
1448             'PerlIO::via::QuotedPrint'=> '0.04',
1449             'Pod::Man' => '1.33',
1450             'Pod::Text' => '2.19',
1451             'Scalar::Util' => '1.07_00',
1452             'Storable' => '2.04',
1453             'Switch' => '2.09',
1454             'Sys::Syslog' => '0.03',
1455             'Test' => '1.20',
1456             'Test::Builder' => '0.15',
1457             'Test::Harness' => '2.26',
1458             'Test::Harness::Straps' => '0.14',
1459             'Test::More' => '0.45',
1460             'Test::Simple' => '0.45',
1461             'Thread::Queue' => '2.00',
1462             'Thread::Semaphore' => '2.00',
1463             'Tie::File' => '0.93',
1464             'Tie::RefHash' => '1.30',
1465             'Unicode' => '3.2.0',
1466             'Unicode::Collate' => '0.12',
1467             'Unicode::Normalize' => '0.17',
1468             'XS::APItest' => '0.01',
1469             'attributes' => '0.05',
1470             'base' => '1.03',
1471             'bigint' => '0.02',
1472             'bignum' => '0.11',
1473             'bigrat' => '0.04',
1474             'blib' => '1.02',
1475             'encoding' => '1.35',
1476             'sort' => '1.01',
1477             'threads' => '0.99',
1478             },
1479             removed => {
1480             'Encode::Internal' => 1,
1481             'Encode::JP::Constants' => 1,
1482             'Encode::JP::ISO_2022_JP'=> 1,
1483             'Encode::JP::JIS' => 1,
1484             'Encode::JP::Tr' => 1,
1485             'Encode::Tcl' => 1,
1486             'Encode::Tcl::Escape' => 1,
1487             'Encode::Tcl::Extended' => 1,
1488             'Encode::Tcl::HanZi' => 1,
1489             'Encode::Tcl::Table' => 1,
1490             'Encode::XS' => 1,
1491             'Encode::iso10646_1' => 1,
1492             'Encode::usc2_le' => 1,
1493             'Encode::utf8' => 1,
1494             'PerlIO::Scalar' => 1,
1495             'PerlIO::Via' => 1,
1496             }
1497             },
1498             5.008001 => {
1499             delta_from => 5.008,
1500             changed => {
1501             'Attribute::Handlers' => '0.78',
1502             'AutoLoader' => '5.60',
1503             'AutoSplit' => '1.04',
1504             'B' => '1.02',
1505             'B::Asmdata' => '1.01',
1506             'B::Assembler' => '0.06',
1507             'B::Bblock' => '1.02',
1508             'B::Bytecode' => '1.01',
1509             'B::C' => '1.02',
1510             'B::Concise' => '0.56',
1511             'B::Debug' => '1.01',
1512             'B::Deparse' => '0.64',
1513             'B::Disassembler' => '1.03',
1514             'B::Lint' => '1.02',
1515             'B::Terse' => '1.02',
1516             'Benchmark' => '1.051',
1517             'ByteLoader' => '0.05',
1518             'CGI' => '3.00',
1519             'CGI::Carp' => '1.26',
1520             'CGI::Cookie' => '1.24',
1521             'CGI::Fast' => '1.041',
1522             'CGI::Pretty' => '1.07_00',
1523             'CGI::Util' => '1.31',
1524             'CPAN' => '1.76_01',
1525             'CPAN::FirstTime' => '1.60',
1526             'CPAN::Nox' => '1.03',
1527             'Class::Struct' => '0.63',
1528             'Cwd' => '2.08',
1529             'DB_File' => '1.806',
1530             'Data::Dumper' => '2.121',
1531             'Devel::DProf' => '20030813.00',
1532             'Devel::PPPort' => '2.007',
1533             'Devel::Peek' => '1.01',
1534             'Digest' => '1.02',
1535             'Digest::MD5' => '2.27',
1536             'Encode' => '1.9801',
1537             'Encode::Alias' => '1.38',
1538             'Encode::Byte' => '1.23',
1539             'Encode::CJKConstants' => '1.02',
1540             'Encode::CN::HZ' => '1.05',
1541             'Encode::Config' => '1.07',
1542             'Encode::Encoder' => '0.07',
1543             'Encode::Encoding' => '1.33',
1544             'Encode::Guess' => '1.09',
1545             'Encode::JP::JIS7' => '1.12',
1546             'Encode::KR' => '1.23',
1547             'Encode::KR::2022_KR' => '1.06',
1548             'Encode::MIME::Header' => '1.09',
1549             'Encode::Unicode' => '1.40',
1550             'Encode::Unicode::UTF7' => '0.02',
1551             'English' => '1.01',
1552             'Errno' => '1.09_00',
1553             'Exporter' => '5.567',
1554             'Exporter::Heavy' => '5.567',
1555             'ExtUtils::Command' => '1.05',
1556             'ExtUtils::Command::MM' => '0.03',
1557             'ExtUtils::Constant' => '0.14',
1558             'ExtUtils::Install' => '1.32',
1559             'ExtUtils::Installed' => '0.08',
1560             'ExtUtils::Liblist' => '1.01',
1561             'ExtUtils::Liblist::Kid'=> '1.3',
1562             'ExtUtils::MM_Any' => '0.07',
1563             'ExtUtils::MM_BeOS' => '1.04',
1564             'ExtUtils::MM_Cygwin' => '1.06',
1565             'ExtUtils::MM_DOS' => '0.02',
1566             'ExtUtils::MM_MacOS' => '1.07',
1567             'ExtUtils::MM_NW5' => '2.06',
1568             'ExtUtils::MM_OS2' => '1.04',
1569             'ExtUtils::MM_UWIN' => '0.02',
1570             'ExtUtils::MM_Unix' => '1.42',
1571             'ExtUtils::MM_VMS' => '5.70',
1572             'ExtUtils::MM_Win32' => '1.09',
1573             'ExtUtils::MM_Win95' => '0.03',
1574             'ExtUtils::MakeMaker' => '6.17',
1575             'ExtUtils::MakeMaker::bytes'=> '0.01',
1576             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1577             'ExtUtils::Manifest' => '1.42',
1578             'Fcntl' => '1.05',
1579             'File::Basename' => '2.72',
1580             'File::Copy' => '2.06',
1581             'File::Find' => '1.05',
1582             'File::Glob' => '1.02',
1583             'File::Path' => '1.06',
1584             'File::Spec' => '0.86',
1585             'File::Spec::Cygwin' => '1.1',
1586             'File::Spec::Epoc' => '1.1',
1587             'File::Spec::Functions' => '1.3',
1588             'File::Spec::Mac' => '1.4',
1589             'File::Spec::OS2' => '1.2',
1590             'File::Spec::Unix' => '1.5',
1591             'File::Spec::VMS' => '1.4',
1592             'File::Spec::Win32' => '1.4',
1593             'File::Temp' => '0.14',
1594             'FileCache' => '1.03',
1595             'Filter::Util::Call' => '1.0601',
1596             'GDBM_File' => '1.07',
1597             'Getopt::Long' => '2.34',
1598             'Getopt::Std' => '1.04',
1599             'Hash::Util' => '0.05',
1600             'I18N::LangTags' => '0.28',
1601             'I18N::LangTags::List' => '0.26',
1602             'I18N::Langinfo' => '0.02',
1603             'IO' => '1.21',
1604             'IO::Dir' => '1.04',
1605             'IO::File' => '1.10',
1606             'IO::Handle' => '1.23',
1607             'IO::Seekable' => '1.09',
1608             'IO::Select' => '1.16',
1609             'IO::Socket' => '1.28',
1610             'IO::Socket::INET' => '1.27',
1611             'IO::Socket::UNIX' => '1.21',
1612             'IPC::Msg' => '1.02',
1613             'IPC::Open3' => '1.0105',
1614             'IPC::Semaphore' => '1.02',
1615             'IPC::SysV' => '1.04',
1616             'JNI' => '0.2',
1617             'List::Util' => '1.13',
1618             'Locale::Country' => '2.61',
1619             'Locale::Currency' => '2.21',
1620             'Locale::Language' => '2.21',
1621             'Locale::Maketext' => '1.06',
1622             'Locale::Maketext::Guts'=> undef,
1623             'Locale::Maketext::GutsLoader'=> undef,
1624             'Locale::Script' => '2.21',
1625             'MIME::Base64' => '2.20',
1626             'MIME::QuotedPrint' => '2.20',
1627             'Math::BigFloat' => '1.40',
1628             'Math::BigInt' => '1.66',
1629             'Math::BigInt::Calc' => '0.36',
1630             'Math::BigInt::Scalar' => '0.11',
1631             'Math::BigRat' => '0.10',
1632             'Math::Trig' => '1.02',
1633             'NDBM_File' => '1.05',
1634             'NEXT' => '0.60',
1635             'Net::Cmd' => '2.24',
1636             'Net::Domain' => '2.18',
1637             'Net::FTP' => '2.71',
1638             'Net::FTP::A' => '1.16',
1639             'Net::NNTP' => '2.22',
1640             'Net::POP3' => '2.24',
1641             'Net::Ping' => '2.31',
1642             'Net::SMTP' => '2.26',
1643             'Net::hostent' => '1.01',
1644             'Net::servent' => '1.01',
1645             'ODBM_File' => '1.04',
1646             'OS2::DLL' => '1.01',
1647             'OS2::ExtAttr' => '0.02',
1648             'OS2::PrfDB' => '0.03',
1649             'OS2::Process' => '1.01',
1650             'OS2::REXX' => '1.02',
1651             'POSIX' => '1.06',
1652             'PerlIO' => '1.02',
1653             'PerlIO::encoding' => '0.07',
1654             'PerlIO::scalar' => '0.02',
1655             'PerlIO::via' => '0.02',
1656             'PerlIO::via::QuotedPrint'=> '0.05',
1657             'Pod::Checker' => '1.41',
1658             'Pod::Find' => '0.24',
1659             'Pod::Functions' => '1.02',
1660             'Pod::Html' => '1.0501',
1661             'Pod::InputObjects' => '1.14',
1662             'Pod::LaTeX' => '0.55',
1663             'Pod::Man' => '1.37',
1664             'Pod::ParseLink' => '1.06',
1665             'Pod::ParseUtils' => '0.3',
1666             'Pod::Perldoc' => '3.10',
1667             'Pod::Perldoc::BaseTo' => undef,
1668             'Pod::Perldoc::GetOptsOO'=> undef,
1669             'Pod::Perldoc::ToChecker'=> undef,
1670             'Pod::Perldoc::ToMan' => undef,
1671             'Pod::Perldoc::ToNroff' => undef,
1672             'Pod::Perldoc::ToPod' => undef,
1673             'Pod::Perldoc::ToRtf' => undef,
1674             'Pod::Perldoc::ToText' => undef,
1675             'Pod::Perldoc::ToTk' => undef,
1676             'Pod::Perldoc::ToXml' => undef,
1677             'Pod::PlainText' => '2.01',
1678             'Pod::Text' => '2.21',
1679             'Pod::Text::Color' => '1.04',
1680             'Pod::Text::Overstrike' => '1.1',
1681             'Pod::Text::Termcap' => '1.11',
1682             'Pod::Usage' => '1.16',
1683             'SDBM_File' => '1.04',
1684             'Safe' => '2.10',
1685             'Scalar::Util' => '1.13',
1686             'SelfLoader' => '1.0904',
1687             'Shell' => '0.5',
1688             'Socket' => '1.76',
1689             'Storable' => '2.08',
1690             'Switch' => '2.10',
1691             'Symbol' => '1.05',
1692             'Sys::Hostname' => '1.11',
1693             'Sys::Syslog' => '0.04',
1694             'Term::ANSIColor' => '1.07',
1695             'Term::Cap' => '1.08',
1696             'Term::Complete' => '1.401',
1697             'Term::ReadLine' => '1.01',
1698             'Test' => '1.24',
1699             'Test::Builder' => '0.17',
1700             'Test::Harness' => '2.30',
1701             'Test::Harness::Straps' => '0.15',
1702             'Test::More' => '0.47',
1703             'Test::Simple' => '0.47',
1704             'Text::Abbrev' => '1.01',
1705             'Text::Balanced' => '1.95',
1706             'Text::Wrap' => '2001.09291',
1707             'Thread::Semaphore' => '2.01',
1708             'Tie::Array' => '1.03',
1709             'Tie::File' => '0.97',
1710             'Tie::RefHash' => '1.31',
1711             'Time::HiRes' => '1.51',
1712             'Time::Local' => '1.07',
1713             'UNIVERSAL' => '1.01',
1714             'Unicode' => '4.0.0',
1715             'Unicode::Collate' => '0.28',
1716             'Unicode::Normalize' => '0.23',
1717             'Unicode::UCD' => '0.21',
1718             'VMS::Filespec' => '1.11',
1719             'XS::APItest' => '0.02',
1720             'XSLoader' => '0.02',
1721             'attributes' => '0.06',
1722             'base' => '2.03',
1723             'bigint' => '0.04',
1724             'bignum' => '0.14',
1725             'bigrat' => '0.06',
1726             'bytes' => '1.01',
1727             'charnames' => '1.02',
1728             'diagnostics' => '1.11',
1729             'encoding' => '1.47',
1730             'fields' => '2.03',
1731             'filetest' => '1.01',
1732             'if' => '0.03',
1733             'lib' => '0.5565',
1734             'open' => '1.02',
1735             'overload' => '1.01',
1736             're' => '0.04',
1737             'sort' => '1.02',
1738             'strict' => '1.03',
1739             'threads' => '1.00',
1740             'threads::shared' => '0.91',
1741             'utf8' => '1.02',
1742             'vmsish' => '1.01',
1743             'warnings' => '1.03',
1744             },
1745             removed => {
1746             }
1747             },
1748             5.008002 => {
1749             delta_from => 5.008001,
1750             changed => {
1751             'DB_File' => '1.807',
1752             'Devel::PPPort' => '2.009',
1753             'Digest::MD5' => '2.30',
1754             'I18N::LangTags' => '0.29',
1755             'I18N::LangTags::List' => '0.29',
1756             'MIME::Base64' => '2.21',
1757             'MIME::QuotedPrint' => '2.21',
1758             'Net::Domain' => '2.19',
1759             'Net::FTP' => '2.72',
1760             'Pod::Perldoc' => '3.11',
1761             'Time::HiRes' => '1.52',
1762             'Unicode::Collate' => '0.30',
1763             'Unicode::Normalize' => '0.25',
1764             },
1765             removed => {
1766             }
1767             },
1768             5.008003 => {
1769             delta_from => 5.008002,
1770             changed => {
1771             'Benchmark' => '1.052',
1772             'CGI' => '3.01',
1773             'CGI::Carp' => '1.27',
1774             'CGI::Fast' => '1.05',
1775             'CGI::Pretty' => '1.08',
1776             'CGI::Util' => '1.4',
1777             'Cwd' => '2.12',
1778             'DB_File' => '1.808',
1779             'Devel::PPPort' => '2.011',
1780             'Digest' => '1.05',
1781             'Digest::MD5' => '2.33',
1782             'Digest::base' => '1.00',
1783             'Encode' => '1.99',
1784             'Exporter' => '5.57',
1785             'File::CheckTree' => '4.3',
1786             'File::Copy' => '2.07',
1787             'File::Find' => '1.06',
1788             'File::Spec' => '0.87',
1789             'FindBin' => '1.44',
1790             'Getopt::Std' => '1.05',
1791             'Math::BigFloat' => '1.42',
1792             'Math::BigInt' => '1.68',
1793             'Math::BigInt::Calc' => '0.38',
1794             'Math::BigInt::CalcEmu' => '0.02',
1795             'OS2::DLL' => '1.02',
1796             'POSIX' => '1.07',
1797             'PerlIO' => '1.03',
1798             'PerlIO::via::QuotedPrint'=> '0.06',
1799             'Pod::Html' => '1.0502',
1800             'Pod::Parser' => '1.14',
1801             'Pod::Perldoc' => '3.12',
1802             'Pod::PlainText' => '2.02',
1803             'Storable' => '2.09',
1804             'Test::Harness' => '2.40',
1805             'Test::Harness::Assert' => '0.02',
1806             'Test::Harness::Iterator'=> '0.02',
1807             'Test::Harness::Straps' => '0.19',
1808             'Tie::Hash' => '1.01',
1809             'Unicode::Collate' => '0.33',
1810             'Unicode::Normalize' => '0.28',
1811             'XS::APItest' => '0.03',
1812             'base' => '2.04',
1813             'diagnostics' => '1.12',
1814             'encoding' => '1.48',
1815             'threads' => '1.01',
1816             'threads::shared' => '0.92',
1817             },
1818             removed => {
1819             'Math::BigInt::Scalar' => 1,
1820             }
1821             },
1822             5.008004 => {
1823             delta_from => 5.008003,
1824             changed => {
1825             'Attribute::Handlers' => '0.78_01',
1826             'B::Assembler' => '0.07',
1827             'B::Concise' => '0.60',
1828             'B::Deparse' => '0.66',
1829             'Benchmark' => '1.06',
1830             'CGI' => '3.04',
1831             'Carp' => '1.02',
1832             'Cwd' => '2.17',
1833             'DBM_Filter' => '0.01',
1834             'DBM_Filter::compress' => '0.01',
1835             'DBM_Filter::encode' => '0.01',
1836             'DBM_Filter::int32' => '0.01',
1837             'DBM_Filter::null' => '0.01',
1838             'DBM_Filter::utf8' => '0.01',
1839             'Digest' => '1.06',
1840             'DynaLoader' => '1.05',
1841             'Encode' => '1.99_01',
1842             'Encode::CN::HZ' => '1.0501',
1843             'Exporter' => '5.58',
1844             'Exporter::Heavy' => '5.57',
1845             'ExtUtils::Liblist::Kid'=> '1.3001',
1846             'ExtUtils::MM_NW5' => '2.07_02',
1847             'ExtUtils::MM_Win95' => '0.0301',
1848             'File::Find' => '1.07',
1849             'IO::Handle' => '1.24',
1850             'IO::Pipe' => '1.123',
1851             'IPC::Open3' => '1.0106',
1852             'Locale::Maketext' => '1.08',
1853             'MIME::Base64' => '3.01',
1854             'MIME::QuotedPrint' => '3.01',
1855             'Math::BigFloat' => '1.44',
1856             'Math::BigInt' => '1.70',
1857             'Math::BigInt::Calc' => '0.40',
1858             'Math::BigInt::CalcEmu' => '0.04',
1859             'Math::BigRat' => '0.12',
1860             'ODBM_File' => '1.05',
1861             'POSIX' => '1.08',
1862             'Shell' => '0.5.2',
1863             'Socket' => '1.77',
1864             'Storable' => '2.12',
1865             'Sys::Syslog' => '0.05',
1866             'Term::ANSIColor' => '1.08',
1867             'Time::HiRes' => '1.59',
1868             'Unicode' => '4.0.1',
1869             'Unicode::UCD' => '0.22',
1870             'Win32' => '0.23',
1871             'base' => '2.05',
1872             'bigint' => '0.05',
1873             'bignum' => '0.15',
1874             'charnames' => '1.03',
1875             'open' => '1.03',
1876             'threads' => '1.03',
1877             'utf8' => '1.03',
1878             },
1879             removed => {
1880             }
1881             },
1882             5.008005 => {
1883             delta_from => 5.008004,
1884             changed => {
1885             'B::Concise' => '0.61',
1886             'B::Deparse' => '0.67',
1887             'CGI' => '3.05',
1888             'CGI::Carp' => '1.28',
1889             'CGI::Util' => '1.5',
1890             'Carp' => '1.03',
1891             'Carp::Heavy' => '1.03',
1892             'Cwd' => '2.19',
1893             'DB_File' => '1.809',
1894             'Digest' => '1.08',
1895             'Encode' => '2.01',
1896             'Encode::Alias' => '2.00',
1897             'Encode::Byte' => '2.00',
1898             'Encode::CJKConstants' => '2.00',
1899             'Encode::CN' => '2.00',
1900             'Encode::CN::HZ' => '2.01',
1901             'Encode::Config' => '2.00',
1902             'Encode::EBCDIC' => '2.00',
1903             'Encode::Encoder' => '2.00',
1904             'Encode::Encoding' => '2.00',
1905             'Encode::Guess' => '2.00',
1906             'Encode::JP' => '2.00',
1907             'Encode::JP::H2Z' => '2.00',
1908             'Encode::JP::JIS7' => '2.00',
1909             'Encode::KR' => '2.00',
1910             'Encode::KR::2022_KR' => '2.00',
1911             'Encode::MIME::Header' => '2.00',
1912             'Encode::Symbol' => '2.00',
1913             'Encode::TW' => '2.00',
1914             'Encode::Unicode' => '2.00',
1915             'Encode::Unicode::UTF7' => '2.01',
1916             'File::Basename' => '2.73',
1917             'File::Copy' => '2.08',
1918             'File::Glob' => '1.03',
1919             'FileCache' => '1.04_01',
1920             'I18N::LangTags' => '0.33',
1921             'I18N::LangTags::Detect'=> '1.03',
1922             'List::Util' => '1.14',
1923             'Locale::Constants' => '2.07',
1924             'Locale::Country' => '2.07',
1925             'Locale::Currency' => '2.07',
1926             'Locale::Language' => '2.07',
1927             'Locale::Maketext' => '1.09',
1928             'Locale::Script' => '2.07',
1929             'Net::Cmd' => '2.26',
1930             'Net::FTP' => '2.75',
1931             'Net::NNTP' => '2.23',
1932             'Net::POP3' => '2.28',
1933             'Net::SMTP' => '2.29',
1934             'Net::Time' => '2.10',
1935             'Pod::Checker' => '1.42',
1936             'Pod::Find' => '0.2401',
1937             'Pod::LaTeX' => '0.56',
1938             'Pod::ParseUtils' => '1.2',
1939             'Pod::Perldoc' => '3.13',
1940             'Safe' => '2.11',
1941             'Scalar::Util' => '1.14',
1942             'Shell' => '0.6',
1943             'Storable' => '2.13',
1944             'Term::Cap' => '1.09',
1945             'Test' => '1.25',
1946             'Test::Harness' => '2.42',
1947             'Text::ParseWords' => '3.22',
1948             'Text::Wrap' => '2001.09292',
1949             'Time::Local' => '1.10',
1950             'Unicode::Collate' => '0.40',
1951             'Unicode::Normalize' => '0.30',
1952             'XS::APItest' => '0.04',
1953             'autouse' => '1.04',
1954             'base' => '2.06',
1955             'charnames' => '1.04',
1956             'diagnostics' => '1.13',
1957             'encoding' => '2.00',
1958             'threads' => '1.05',
1959             'utf8' => '1.04',
1960             },
1961             removed => {
1962             }
1963             },
1964             5.008006 => {
1965             delta_from => 5.008005,
1966             changed => {
1967             'B' => '1.07',
1968             'B::C' => '1.04',
1969             'B::Concise' => '0.64',
1970             'B::Debug' => '1.02',
1971             'B::Deparse' => '0.69',
1972             'B::Lint' => '1.03',
1973             'B::Showlex' => '1.02',
1974             'Cwd' => '3.01',
1975             'DB_File' => '1.810',
1976             'Data::Dumper' => '2.121_02',
1977             'Devel::PPPort' => '3.03',
1978             'Devel::Peek' => '1.02',
1979             'Encode' => '2.08',
1980             'Encode::Alias' => '2.02',
1981             'Encode::Encoding' => '2.02',
1982             'Encode::JP' => '2.01',
1983             'Encode::Unicode' => '2.02',
1984             'Exporter::Heavy' => '5.58',
1985             'ExtUtils::Constant' => '0.1401',
1986             'File::Spec' => '3.01',
1987             'File::Spec::Win32' => '1.5',
1988             'I18N::LangTags' => '0.35',
1989             'I18N::LangTags::List' => '0.35',
1990             'MIME::Base64' => '3.05',
1991             'MIME::QuotedPrint' => '3.03',
1992             'Math::BigFloat' => '1.47',
1993             'Math::BigInt' => '1.73',
1994             'Math::BigInt::Calc' => '0.43',
1995             'Math::BigRat' => '0.13',
1996             'Text::ParseWords' => '3.23',
1997             'Time::HiRes' => '1.65',
1998             'XS::APItest' => '0.05',
1999             'diagnostics' => '1.14',
2000             'encoding' => '2.01',
2001             'open' => '1.04',
2002             'overload' => '1.02',
2003             },
2004             removed => {
2005             }
2006             },
2007             5.008007 => {
2008             delta_from => 5.008006,
2009             changed => {
2010             'B' => '1.09',
2011             'B::Concise' => '0.65',
2012             'B::Deparse' => '0.7',
2013             'B::Disassembler' => '1.04',
2014             'B::Terse' => '1.03',
2015             'Benchmark' => '1.07',
2016             'CGI' => '3.10',
2017             'CGI::Carp' => '1.29',
2018             'CGI::Cookie' => '1.25',
2019             'Carp' => '1.04',
2020             'Carp::Heavy' => '1.04',
2021             'Class::ISA' => '0.33',
2022             'Cwd' => '3.05',
2023             'DB_File' => '1.811',
2024             'Data::Dumper' => '2.121_04',
2025             'Devel::DProf' => '20050310.00',
2026             'Devel::PPPort' => '3.06',
2027             'Digest' => '1.10',
2028             'Digest::file' => '0.01',
2029             'Encode' => '2.10',
2030             'Encode::Alias' => '2.03',
2031             'Errno' => '1.09_01',
2032             'ExtUtils::Constant' => '0.16',
2033             'ExtUtils::Constant::Base'=> '0.01',
2034             'ExtUtils::Constant::Utils'=> '0.01',
2035             'ExtUtils::Constant::XS'=> '0.01',
2036             'File::Find' => '1.09',
2037             'File::Glob' => '1.04',
2038             'File::Path' => '1.07',
2039             'File::Spec' => '3.05',
2040             'File::Temp' => '0.16',
2041             'FileCache' => '1.05',
2042             'IO::File' => '1.11',
2043             'IO::Socket::INET' => '1.28',
2044             'Math::BigFloat' => '1.51',
2045             'Math::BigInt' => '1.77',
2046             'Math::BigInt::Calc' => '0.47',
2047             'Math::BigInt::CalcEmu' => '0.05',
2048             'Math::BigRat' => '0.15',
2049             'Pod::Find' => '1.3',
2050             'Pod::Html' => '1.0503',
2051             'Pod::InputObjects' => '1.3',
2052             'Pod::LaTeX' => '0.58',
2053             'Pod::ParseUtils' => '1.3',
2054             'Pod::Parser' => '1.3',
2055             'Pod::Perldoc' => '3.14',
2056             'Pod::Select' => '1.3',
2057             'Pod::Usage' => '1.3',
2058             'SelectSaver' => '1.01',
2059             'Symbol' => '1.06',
2060             'Sys::Syslog' => '0.06',
2061             'Term::ANSIColor' => '1.09',
2062             'Term::Complete' => '1.402',
2063             'Test::Builder' => '0.22',
2064             'Test::Harness' => '2.48',
2065             'Test::Harness::Point' => '0.01',
2066             'Test::Harness::Straps' => '0.23',
2067             'Test::More' => '0.54',
2068             'Test::Simple' => '0.54',
2069             'Text::ParseWords' => '3.24',
2070             'Text::Wrap' => '2001.09293',
2071             'Tie::RefHash' => '1.32',
2072             'Time::HiRes' => '1.66',
2073             'Time::Local' => '1.11',
2074             'Unicode' => '4.1.0',
2075             'Unicode::Normalize' => '0.32',
2076             'Unicode::UCD' => '0.23',
2077             'Win32' => '0.24',
2078             'XS::APItest' => '0.06',
2079             'base' => '2.07',
2080             'bigint' => '0.07',
2081             'bignum' => '0.17',
2082             'bigrat' => '0.08',
2083             'bytes' => '1.02',
2084             'constant' => '1.05',
2085             'overload' => '1.03',
2086             'threads::shared' => '0.93',
2087             'utf8' => '1.05',
2088             },
2089             removed => {
2090             'JNI' => 1,
2091             'JPL::AutoLoader' => 1,
2092             'JPL::Class' => 1,
2093             'JPL::Compile' => 1,
2094             }
2095             },
2096             5.008008 => {
2097             delta_from => 5.008007,
2098             changed => {
2099             'Attribute::Handlers' => '0.78_02',
2100             'B' => '1.09_01',
2101             'B::Bblock' => '1.02_01',
2102             'B::Bytecode' => '1.01_01',
2103             'B::C' => '1.04_01',
2104             'B::CC' => '1.00_01',
2105             'B::Concise' => '0.66',
2106             'B::Debug' => '1.02_01',
2107             'B::Deparse' => '0.71',
2108             'B::Disassembler' => '1.05',
2109             'B::Terse' => '1.03_01',
2110             'ByteLoader' => '0.06',
2111             'CGI' => '3.15',
2112             'CGI::Cookie' => '1.26',
2113             'CPAN' => '1.76_02',
2114             'Cwd' => '3.12',
2115             'DB' => '1.01',
2116             'DB_File' => '1.814',
2117             'Data::Dumper' => '2.121_08',
2118             'Devel::DProf' => '20050603.00',
2119             'Devel::PPPort' => '3.06_01',
2120             'Devel::Peek' => '1.03',
2121             'Digest' => '1.14',
2122             'Digest::MD5' => '2.36',
2123             'Digest::file' => '1.00',
2124             'Dumpvalue' => '1.12',
2125             'Encode' => '2.12',
2126             'Encode::Alias' => '2.04',
2127             'Encode::Config' => '2.01',
2128             'Encode::MIME::Header' => '2.01',
2129             'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2130             'English' => '1.02',
2131             'ExtUtils::Command' => '1.09',
2132             'ExtUtils::Command::MM' => '0.05',
2133             'ExtUtils::Constant' => '0.17',
2134             'ExtUtils::Embed' => '1.26',
2135             'ExtUtils::Install' => '1.33',
2136             'ExtUtils::Liblist::Kid'=> '1.3',
2137             'ExtUtils::MM' => '0.05',
2138             'ExtUtils::MM_AIX' => '0.03',
2139             'ExtUtils::MM_Any' => '0.13',
2140             'ExtUtils::MM_BeOS' => '1.05',
2141             'ExtUtils::MM_Cygwin' => '1.08',
2142             'ExtUtils::MM_MacOS' => '1.08',
2143             'ExtUtils::MM_NW5' => '2.08',
2144             'ExtUtils::MM_OS2' => '1.05',
2145             'ExtUtils::MM_QNX' => '0.02',
2146             'ExtUtils::MM_Unix' => '1.50',
2147             'ExtUtils::MM_VMS' => '5.73',
2148             'ExtUtils::MM_VOS' => '0.02',
2149             'ExtUtils::MM_Win32' => '1.12',
2150             'ExtUtils::MM_Win95' => '0.04',
2151             'ExtUtils::MakeMaker' => '6.30',
2152             'ExtUtils::MakeMaker::Config'=> '0.02',
2153             'ExtUtils::Manifest' => '1.46',
2154             'File::Basename' => '2.74',
2155             'File::Copy' => '2.09',
2156             'File::Find' => '1.10',
2157             'File::Glob' => '1.05',
2158             'File::Path' => '1.08',
2159             'File::Spec' => '3.12',
2160             'File::Spec::Win32' => '1.6',
2161             'FileCache' => '1.06',
2162             'Filter::Simple' => '0.82',
2163             'FindBin' => '1.47',
2164             'GDBM_File' => '1.08',
2165             'Getopt::Long' => '2.35',
2166             'IO' => '1.22',
2167             'IO::Dir' => '1.05',
2168             'IO::File' => '1.13',
2169             'IO::Handle' => '1.25',
2170             'IO::Pipe' => '1.13',
2171             'IO::Poll' => '0.07',
2172             'IO::Seekable' => '1.10',
2173             'IO::Select' => '1.17',
2174             'IO::Socket' => '1.29',
2175             'IO::Socket::INET' => '1.29',
2176             'IO::Socket::UNIX' => '1.22',
2177             'IPC::Open2' => '1.02',
2178             'IPC::Open3' => '1.02',
2179             'List::Util' => '1.18',
2180             'MIME::Base64' => '3.07',
2181             'MIME::QuotedPrint' => '3.07',
2182             'Math::Complex' => '1.35',
2183             'Math::Trig' => '1.03',
2184             'NDBM_File' => '1.06',
2185             'ODBM_File' => '1.06',
2186             'OS2::PrfDB' => '0.04',
2187             'OS2::Process' => '1.02',
2188             'OS2::REXX' => '1.03',
2189             'Opcode' => '1.06',
2190             'POSIX' => '1.09',
2191             'PerlIO' => '1.04',
2192             'PerlIO::encoding' => '0.09',
2193             'PerlIO::scalar' => '0.04',
2194             'PerlIO::via' => '0.03',
2195             'Pod::Checker' => '1.43',
2196             'Pod::Find' => '1.34',
2197             'Pod::Functions' => '1.03',
2198             'Pod::Html' => '1.0504',
2199             'Pod::ParseUtils' => '1.33',
2200             'Pod::Parser' => '1.32',
2201             'Pod::Usage' => '1.33',
2202             'SDBM_File' => '1.05',
2203             'Safe' => '2.12',
2204             'Scalar::Util' => '1.18',
2205             'Socket' => '1.78',
2206             'Storable' => '2.15',
2207             'Switch' => '2.10_01',
2208             'Sys::Syslog' => '0.13',
2209             'Term::ANSIColor' => '1.10',
2210             'Term::ReadLine' => '1.02',
2211             'Test::Builder' => '0.32',
2212             'Test::Builder::Module' => '0.02',
2213             'Test::Builder::Tester' => '1.02',
2214             'Test::Builder::Tester::Color'=> undef,
2215             'Test::Harness' => '2.56',
2216             'Test::Harness::Straps' => '0.26',
2217             'Test::More' => '0.62',
2218             'Test::Simple' => '0.62',
2219             'Text::Tabs' => '2005.0824',
2220             'Text::Wrap' => '2005.082401',
2221             'Tie::Hash' => '1.02',
2222             'Time::HiRes' => '1.86',
2223             'Unicode::Collate' => '0.52',
2224             'Unicode::UCD' => '0.24',
2225             'User::grent' => '1.01',
2226             'Win32' => '0.2601',
2227             'XS::APItest' => '0.08',
2228             'XS::Typemap' => '0.02',
2229             'XSLoader' => '0.06',
2230             'attrs' => '1.02',
2231             'autouse' => '1.05',
2232             'blib' => '1.03',
2233             'charnames' => '1.05',
2234             'diagnostics' => '1.15',
2235             'encoding' => '2.02',
2236             'if' => '0.05',
2237             'open' => '1.05',
2238             'ops' => '1.01',
2239             'overload' => '1.04',
2240             're' => '0.05',
2241             'threads' => '1.07',
2242             'threads::shared' => '0.94',
2243             'utf8' => '1.06',
2244             'vmsish' => '1.02',
2245             'warnings' => '1.05',
2246             'warnings::register' => '1.01',
2247             },
2248             removed => {
2249             }
2250             },
2251             5.008009 => {
2252             delta_from => 5.008008,
2253             changed => {
2254             'Attribute::Handlers' => '0.78_03',
2255             'AutoLoader' => '5.67',
2256             'AutoSplit' => '1.06',
2257             'B' => '1.19',
2258             'B::Asmdata' => '1.02',
2259             'B::Assembler' => '0.08',
2260             'B::C' => '1.05',
2261             'B::Concise' => '0.76',
2262             'B::Debug' => '1.05',
2263             'B::Deparse' => '0.87',
2264             'B::Lint' => '1.11',
2265             'B::Lint::Debug' => undef,
2266             'B::Terse' => '1.05',
2267             'Benchmark' => '1.1',
2268             'CGI' => '3.42',
2269             'CGI::Carp' => '1.30_01',
2270             'CGI::Cookie' => '1.29',
2271             'CGI::Fast' => '1.07',
2272             'CGI::Util' => '1.5_01',
2273             'CPAN' => '1.9301',
2274             'CPAN::Debug' => '5.5',
2275             'CPAN::DeferedCode' => '5.50',
2276             'CPAN::Distroprefs' => '6',
2277             'CPAN::FirstTime' => '5.5_01',
2278             'CPAN::HandleConfig' => '5.5',
2279             'CPAN::Kwalify' => '5.50',
2280             'CPAN::Nox' => '5.50',
2281             'CPAN::Queue' => '5.5',
2282             'CPAN::Tarzip' => '5.5',
2283             'CPAN::Version' => '5.5',
2284             'Carp' => '1.10',
2285             'Carp::Heavy' => '1.10',
2286             'Cwd' => '3.29',
2287             'DBM_Filter' => '0.02',
2288             'DBM_Filter::compress' => '0.02',
2289             'DBM_Filter::encode' => '0.02',
2290             'DBM_Filter::int32' => '0.02',
2291             'DBM_Filter::null' => '0.02',
2292             'DBM_Filter::utf8' => '0.02',
2293             'DB_File' => '1.817',
2294             'Data::Dumper' => '2.121_17',
2295             'Devel::DProf' => '20080331.00',
2296             'Devel::InnerPackage' => '0.3',
2297             'Devel::PPPort' => '3.14',
2298             'Devel::Peek' => '1.04',
2299             'Digest' => '1.15',
2300             'Digest::MD5' => '2.37',
2301             'DirHandle' => '1.02',
2302             'DynaLoader' => '1.09',
2303             'Encode' => '2.26',
2304             'Encode::Alias' => '2.10',
2305             'Encode::Byte' => '2.03',
2306             'Encode::CJKConstants' => '2.02',
2307             'Encode::CN' => '2.02',
2308             'Encode::CN::HZ' => '2.05',
2309             'Encode::Config' => '2.05',
2310             'Encode::EBCDIC' => '2.02',
2311             'Encode::Encoder' => '2.01',
2312             'Encode::Encoding' => '2.05',
2313             'Encode::GSM0338' => '2.01',
2314             'Encode::Guess' => '2.02',
2315             'Encode::JP' => '2.03',
2316             'Encode::JP::H2Z' => '2.02',
2317             'Encode::JP::JIS7' => '2.04',
2318             'Encode::KR' => '2.02',
2319             'Encode::KR::2022_KR' => '2.02',
2320             'Encode::MIME::Header' => '2.05',
2321             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2322             'Encode::MIME::Name' => '1.01',
2323             'Encode::Symbol' => '2.02',
2324             'Encode::TW' => '2.02',
2325             'Encode::Unicode' => '2.05',
2326             'Encode::Unicode::UTF7' => '2.04',
2327             'English' => '1.03',
2328             'Errno' => '1.10',
2329             'Exporter' => '5.63',
2330             'Exporter::Heavy' => '5.63',
2331             'ExtUtils::Command' => '1.15',
2332             'ExtUtils::Command::MM' => '6.48',
2333             'ExtUtils::Constant' => '0.21',
2334             'ExtUtils::Constant::Base'=> '0.04',
2335             'ExtUtils::Constant::ProxySubs'=> '0.06',
2336             'ExtUtils::Constant::Utils'=> '0.02',
2337             'ExtUtils::Constant::XS'=> '0.02',
2338             'ExtUtils::Embed' => '1.28',
2339             'ExtUtils::Install' => '1.50_01',
2340             'ExtUtils::Installed' => '1.43',
2341             'ExtUtils::Liblist' => '6.48',
2342             'ExtUtils::Liblist::Kid'=> '6.48',
2343             'ExtUtils::MM' => '6.48',
2344             'ExtUtils::MM_AIX' => '6.48',
2345             'ExtUtils::MM_Any' => '6.48',
2346             'ExtUtils::MM_BeOS' => '6.48',
2347             'ExtUtils::MM_Cygwin' => '6.48',
2348             'ExtUtils::MM_DOS' => '6.48',
2349             'ExtUtils::MM_Darwin' => '6.48',
2350             'ExtUtils::MM_MacOS' => '6.48',
2351             'ExtUtils::MM_NW5' => '6.48',
2352             'ExtUtils::MM_OS2' => '6.48',
2353             'ExtUtils::MM_QNX' => '6.48',
2354             'ExtUtils::MM_UWIN' => '6.48',
2355             'ExtUtils::MM_Unix' => '6.48',
2356             'ExtUtils::MM_VMS' => '6.48',
2357             'ExtUtils::MM_VOS' => '6.48',
2358             'ExtUtils::MM_Win32' => '6.48',
2359             'ExtUtils::MM_Win95' => '6.48',
2360             'ExtUtils::MY' => '6.48',
2361             'ExtUtils::MakeMaker' => '6.48',
2362             'ExtUtils::MakeMaker::Config'=> '6.48',
2363             'ExtUtils::MakeMaker::bytes'=> '6.48',
2364             'ExtUtils::MakeMaker::vmsish'=> '6.48',
2365             'ExtUtils::Manifest' => '1.55',
2366             'ExtUtils::Mkbootstrap' => '6.48',
2367             'ExtUtils::Mksymlists' => '6.48',
2368             'ExtUtils::Packlist' => '1.43',
2369             'ExtUtils::ParseXS' => '2.19',
2370             'ExtUtils::XSSymSet' => '1.1',
2371             'ExtUtils::testlib' => '6.48',
2372             'Fatal' => '1.06',
2373             'Fcntl' => '1.06',
2374             'File::Basename' => '2.77',
2375             'File::CheckTree' => '4.4',
2376             'File::Compare' => '1.1005',
2377             'File::Copy' => '2.13',
2378             'File::DosGlob' => '1.01',
2379             'File::Find' => '1.13',
2380             'File::Glob' => '1.06',
2381             'File::Path' => '2.07_02',
2382             'File::Spec' => '3.29',
2383             'File::Spec::Cygwin' => '3.29',
2384             'File::Spec::Epoc' => '3.29',
2385             'File::Spec::Functions' => '3.29',
2386             'File::Spec::Mac' => '3.29',
2387             'File::Spec::OS2' => '3.29',
2388             'File::Spec::Unix' => '3.29',
2389             'File::Spec::VMS' => '3.29',
2390             'File::Spec::Win32' => '3.29',
2391             'File::Temp' => '0.20',
2392             'File::stat' => '1.01',
2393             'FileCache' => '1.07',
2394             'Filter::Simple' => '0.83',
2395             'Filter::Util::Call' => '1.07',
2396             'FindBin' => '1.49',
2397             'GDBM_File' => '1.09',
2398             'Getopt::Long' => '2.37',
2399             'Getopt::Std' => '1.06',
2400             'Hash::Util' => '0.06',
2401             'IO' => '1.23',
2402             'IO::Dir' => '1.06',
2403             'IO::File' => '1.14',
2404             'IO::Handle' => '1.27',
2405             'IO::Socket' => '1.30',
2406             'IO::Socket::INET' => '1.31',
2407             'IO::Socket::UNIX' => '1.23',
2408             'IPC::Msg' => '2.00',
2409             'IPC::Open2' => '1.03',
2410             'IPC::Open3' => '1.03',
2411             'IPC::Semaphore' => '2.00',
2412             'IPC::SharedMem' => '2.00',
2413             'IPC::SysV' => '2.00',
2414             'List::Util' => '1.19',
2415             'Locale::Maketext' => '1.13',
2416             'Locale::Maketext::Guts'=> '1.13',
2417             'Locale::Maketext::GutsLoader'=> '1.13',
2418             'Math::BigFloat' => '1.60',
2419             'Math::BigInt' => '1.89',
2420             'Math::BigInt::Calc' => '0.52',
2421             'Math::BigRat' => '0.22',
2422             'Math::Complex' => '1.54',
2423             'Math::Trig' => '1.18',
2424             'Module::CoreList' => '2.17',
2425             'Module::Pluggable' => '3.8',
2426             'Module::Pluggable::Object'=> '3.6',
2427             'NDBM_File' => '1.07',
2428             'NEXT' => '0.61',
2429             'Net::Cmd' => '2.29',
2430             'Net::Config' => '1.11',
2431             'Net::Domain' => '2.20',
2432             'Net::FTP' => '2.77',
2433             'Net::FTP::A' => '1.18',
2434             'Net::NNTP' => '2.24',
2435             'Net::POP3' => '2.29',
2436             'Net::Ping' => '2.35',
2437             'Net::SMTP' => '2.31',
2438             'O' => '1.01',
2439             'ODBM_File' => '1.07',
2440             'OS2::DLL' => '1.03',
2441             'OS2::Process' => '1.03',
2442             'Opcode' => '1.0601',
2443             'POSIX' => '1.15',
2444             'PerlIO' => '1.05',
2445             'PerlIO::encoding' => '0.11',
2446             'PerlIO::scalar' => '0.06',
2447             'PerlIO::via' => '0.05',
2448             'Pod::Html' => '1.09',
2449             'Pod::ParseUtils' => '1.35',
2450             'Pod::Parser' => '1.35',
2451             'Pod::Select' => '1.35',
2452             'Pod::Usage' => '1.35',
2453             'SDBM_File' => '1.06',
2454             'Safe' => '2.16',
2455             'Scalar::Util' => '1.19',
2456             'SelfLoader' => '1.17',
2457             'Shell' => '0.72',
2458             'Socket' => '1.81',
2459             'Storable' => '2.19',
2460             'Switch' => '2.13',
2461             'Sys::Syslog' => '0.27',
2462             'Sys::Syslog::win32::Win32'=> undef,
2463             'Term::ANSIColor' => '1.12',
2464             'Term::Cap' => '1.12',
2465             'Term::ReadLine' => '1.03',
2466             'Test::Builder' => '0.80',
2467             'Test::Builder::Module' => '0.80',
2468             'Test::Builder::Tester' => '1.13',
2469             'Test::Harness' => '2.64',
2470             'Test::Harness::Results'=> '0.01_01',
2471             'Test::Harness::Straps' => '0.26_01',
2472             'Test::Harness::Util' => '0.01',
2473             'Test::More' => '0.80',
2474             'Test::Simple' => '0.80',
2475             'Text::Balanced' => '1.98',
2476             'Text::ParseWords' => '3.27',
2477             'Text::Soundex' => '3.03',
2478             'Text::Tabs' => '2007.1117',
2479             'Text::Wrap' => '2006.1117',
2480             'Thread' => '2.01',
2481             'Thread::Queue' => '2.11',
2482             'Thread::Semaphore' => '2.09',
2483             'Tie::Handle' => '4.2',
2484             'Tie::Hash' => '1.03',
2485             'Tie::Memoize' => '1.1',
2486             'Tie::RefHash' => '1.38',
2487             'Tie::Scalar' => '1.01',
2488             'Tie::StdHandle' => '4.2',
2489             'Time::HiRes' => '1.9715',
2490             'Time::Local' => '1.1901',
2491             'Time::gmtime' => '1.03',
2492             'Unicode' => '5.1.0',
2493             'Unicode::Normalize' => '1.02',
2494             'Unicode::UCD' => '0.25',
2495             'VMS::DCLsym' => '1.03',
2496             'VMS::Stdio' => '2.4',
2497             'Win32' => '0.38',
2498             'Win32API::File' => '0.1001_01',
2499             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2500             'Win32CORE' => '0.02',
2501             'XS::APItest' => '0.15',
2502             'XS::Typemap' => '0.03',
2503             'XSLoader' => '0.10',
2504             'attributes' => '0.09',
2505             'autouse' => '1.06',
2506             'base' => '2.13',
2507             'bigint' => '0.23',
2508             'bignum' => '0.23',
2509             'bigrat' => '0.23',
2510             'blib' => '1.04',
2511             'charnames' => '1.06',
2512             'constant' => '1.17',
2513             'diagnostics' => '1.16',
2514             'encoding' => '2.6_01',
2515             'fields' => '2.12',
2516             'filetest' => '1.02',
2517             'lib' => '0.61',
2518             'open' => '1.06',
2519             'ops' => '1.02',
2520             'overload' => '1.06',
2521             're' => '0.0601',
2522             'sigtrap' => '1.04',
2523             'threads' => '1.71',
2524             'threads::shared' => '1.27',
2525             'utf8' => '1.07',
2526             'warnings' => '1.05_01',
2527             },
2528             removed => {
2529             }
2530             },
2531             5.009 => {
2532             delta_from => 5.008002,
2533             changed => {
2534             'B' => '1.03',
2535             'B::C' => '1.03',
2536             'B::Concise' => '0.57',
2537             'B::Deparse' => '0.65',
2538             'DB_File' => '1.806',
2539             'Devel::PPPort' => '2.008',
2540             'English' => '1.02',
2541             'Fatal' => '1.04',
2542             'OS2::DLL' => '1.02',
2543             'Opcode' => '1.06',
2544             'Time::HiRes' => '1.51',
2545             'Unicode::Collate' => '0.28',
2546             'Unicode::Normalize' => '0.23',
2547             'XSLoader' => '0.03',
2548             'assertions' => '0.01',
2549             'assertions::activate' => '0.01',
2550             'overload' => '1.02',
2551             'version' => '0.29',
2552             },
2553             removed => {
2554             }
2555             },
2556             5.009001 => {
2557             delta_from => 5.008004,
2558             changed => {
2559             'B' => '1.05',
2560             'B::Assembler' => '0.06',
2561             'B::C' => '1.04',
2562             'B::Concise' => '0.59',
2563             'B::Debug' => '1.02',
2564             'B::Deparse' => '0.65',
2565             'DB_File' => '1.808_01',
2566             'Devel::PPPort' => '2.011_01',
2567             'Digest' => '1.05',
2568             'DynaLoader' => '1.04',
2569             'English' => '1.02',
2570             'Exporter::Heavy' => '5.567',
2571             'ExtUtils::Command' => '1.07',
2572             'ExtUtils::Liblist::Kid'=> '1.3',
2573             'ExtUtils::MM_Any' => '0.0901',
2574             'ExtUtils::MM_Cygwin' => '1.07',
2575             'ExtUtils::MM_NW5' => '2.07_01',
2576             'ExtUtils::MM_Unix' => '1.45_01',
2577             'ExtUtils::MM_VMS' => '5.71_01',
2578             'ExtUtils::MM_Win32' => '1.10_01',
2579             'ExtUtils::MM_Win95' => '0.03',
2580             'ExtUtils::MakeMaker' => '6.21_02',
2581             'ExtUtils::Manifest' => '1.43',
2582             'Fatal' => '1.04',
2583             'Getopt::Long' => '2.3401',
2584             'IO::Handle' => '1.23',
2585             'IO::Pipe' => '1.122',
2586             'IPC::Open3' => '1.0105',
2587             'MIME::Base64' => '3.00_01',
2588             'MIME::QuotedPrint' => '3.00',
2589             'Memoize' => '1.01_01',
2590             'ODBM_File' => '1.04',
2591             'Opcode' => '1.06',
2592             'POSIX' => '1.07',
2593             'Storable' => '2.11',
2594             'Time::HiRes' => '1.56',
2595             'Time::Local' => '1.07_94',
2596             'UNIVERSAL' => '1.02',
2597             'Unicode' => '4.0.0',
2598             'Unicode::UCD' => '0.21',
2599             'XSLoader' => '0.03',
2600             'assertions' => '0.01',
2601             'assertions::activate' => '0.01',
2602             'base' => '2.04',
2603             'if' => '0.0401',
2604             'open' => '1.02',
2605             'overload' => '1.02',
2606             'threads' => '1.02',
2607             'utf8' => '1.02',
2608             'version' => '0.36',
2609             },
2610             removed => {
2611             }
2612             },
2613             5.009002 => {
2614             delta_from => 5.008007,
2615             changed => {
2616             'B' => '1.07',
2617             'B::Concise' => '0.64',
2618             'B::Deparse' => '0.69',
2619             'B::Disassembler' => '1.03',
2620             'B::Terse' => '1.02',
2621             'CGI' => '3.07',
2622             'Config::Extensions' => '0.01',
2623             'Devel::DProf' => '20030813.00',
2624             'DynaLoader' => '1.07',
2625             'Encode' => '2.09',
2626             'Encode::Alias' => '2.02',
2627             'English' => '1.03',
2628             'Exporter' => '5.59',
2629             'Exporter::Heavy' => '5.59',
2630             'ExtUtils::Command' => '1.07',
2631             'ExtUtils::Command::MM' => '0.03_01',
2632             'ExtUtils::Embed' => '1.26',
2633             'ExtUtils::Liblist::Kid'=> '1.3',
2634             'ExtUtils::MM_Any' => '0.10',
2635             'ExtUtils::MM_Cygwin' => '1.07',
2636             'ExtUtils::MM_MacOS' => '1.08',
2637             'ExtUtils::MM_NW5' => '2.07',
2638             'ExtUtils::MM_Unix' => '1.46_01',
2639             'ExtUtils::MM_VMS' => '5.71',
2640             'ExtUtils::MM_Win32' => '1.10',
2641             'ExtUtils::MM_Win95' => '0.03',
2642             'ExtUtils::MakeMaker' => '6.25',
2643             'ExtUtils::Manifest' => '1.44',
2644             'Fatal' => '1.04',
2645             'File::Path' => '1.06',
2646             'FileCache' => '1.04_01',
2647             'Getopt::Long' => '2.3401',
2648             'IO::File' => '1.10',
2649             'IO::Socket::INET' => '1.27',
2650             'Math::BigFloat' => '1.49',
2651             'Math::BigInt' => '1.75',
2652             'Math::BigInt::Calc' => '0.45',
2653             'Math::BigRat' => '0.14',
2654             'Memoize' => '1.01_01',
2655             'Module::CoreList' => '1.99',
2656             'NEXT' => '0.60_01',
2657             'Opcode' => '1.06',
2658             'Pod::Html' => '1.0502',
2659             'Scalar::Util' => '1.14_1',
2660             'Storable' => '2.14',
2661             'Symbol' => '1.05',
2662             'Test::Harness' => '2.46',
2663             'Test::Harness::Straps' => '0.20_01',
2664             'Text::Balanced' => '1.95_01',
2665             'Text::Wrap' => '2001.09292',
2666             'UNIVERSAL' => '1.02',
2667             'Unicode' => '4.0.1',
2668             'Unicode::Normalize' => '0.30',
2669             'Unicode::UCD' => '0.22',
2670             'Win32' => '0.23',
2671             'XS::APItest' => '0.05',
2672             'XSLoader' => '0.03',
2673             'assertions' => '0.01',
2674             'assertions::activate' => '0.01',
2675             'base' => '2.06',
2676             'bigint' => '0.06',
2677             'bignum' => '0.16',
2678             'bigrat' => '0.07',
2679             'bytes' => '1.01',
2680             'encoding::warnings' => '0.05',
2681             'if' => '0.0401',
2682             're' => '0.05',
2683             'threads::shared' => '0.92',
2684             'utf8' => '1.04',
2685             'version' => '0.42',
2686             'warnings' => '1.04',
2687             },
2688             removed => {
2689             'Test::Harness::Point' => 1,
2690             }
2691             },
2692             5.009003 => {
2693             delta_from => 5.008008,
2694             changed => {
2695             'Archive::Tar' => '1.26_01',
2696             'Archive::Tar::Constant'=> '0.02',
2697             'Archive::Tar::File' => '0.02',
2698             'AutoSplit' => '1.04_01',
2699             'B' => '1.10',
2700             'B::Bblock' => '1.02',
2701             'B::Bytecode' => '1.01',
2702             'B::C' => '1.04',
2703             'B::CC' => '1.00',
2704             'B::Concise' => '0.67',
2705             'B::Debug' => '1.02',
2706             'B::Deparse' => '0.73',
2707             'B::Lint' => '1.04',
2708             'B::Terse' => '1.03',
2709             'CGI' => '3.15_01',
2710             'CPAN' => '1.83_58',
2711             'CPAN::Debug' => '4.44',
2712             'CPAN::FirstTime' => '4.50',
2713             'CPAN::HandleConfig' => '4.31',
2714             'CPAN::Nox' => '2.31',
2715             'CPAN::Tarzip' => '3.36',
2716             'CPAN::Version' => '2.55',
2717             'Carp' => '1.05',
2718             'Carp::Heavy' => '1.05',
2719             'Compress::Zlib' => '2.000_07',
2720             'Compress::Zlib::Common'=> '2.000_07',
2721             'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2722             'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2723             'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2724             'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2725             'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2726             'Compress::Zlib::FileConstants'=> '2.000_07',
2727             'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2728             'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2729             'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2730             'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2731             'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2732             'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2733             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2734             'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2735             'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2736             'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2737             'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2738             'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2739             'Compress::Zlib::ParseParameters'=> '2.000_07',
2740             'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2741             'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2742             'Config::Extensions' => '0.01',
2743             'Cwd' => '3.15',
2744             'Devel::PPPort' => '3.08',
2745             'Digest::SHA' => '5.32',
2746             'DirHandle' => '1.01',
2747             'DynaLoader' => '1.07',
2748             'Encode' => '2.14',
2749             'Encode::CN::HZ' => '2.02',
2750             'Encode::MIME::Header' => '2.02',
2751             'English' => '1.04',
2752             'Exporter' => '5.59',
2753             'Exporter::Heavy' => '5.59',
2754             'ExtUtils::CBuilder' => '0.15',
2755             'ExtUtils::CBuilder::Base'=> '0.12',
2756             'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2757             'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2758             'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2759             'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2760             'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2761             'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2762             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2763             'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2764             'ExtUtils::Command::MM' => '0.05_01',
2765             'ExtUtils::Constant' => '0.2',
2766             'ExtUtils::Constant::Base'=> '0.02',
2767             'ExtUtils::Constant::ProxySubs'=> '0.01',
2768             'ExtUtils::Constant::XS'=> '0.02',
2769             'ExtUtils::MM_Any' => '0.13_01',
2770             'ExtUtils::MM_Unix' => '1.50_01',
2771             'ExtUtils::MakeMaker' => '6.30_01',
2772             'ExtUtils::ParseXS' => '2.15_02',
2773             'Fatal' => '1.04',
2774             'File::Compare' => '1.1005',
2775             'File::Spec' => '3.15',
2776             'File::Temp' => '0.16_01',
2777             'IO::File' => '1.13_01',
2778             'IO::Handle' => '1.26',
2779             'IO::Socket' => '1.29_01',
2780             'IO::Socket::INET' => '1.29_02',
2781             'IO::Socket::UNIX' => '1.22_01',
2782             'IO::Zlib' => '1.04_02',
2783             'Locale::Maketext' => '1.10_01',
2784             'Math::BigInt::FastCalc'=> '0.10',
2785             'Memoize' => '1.01_01',
2786             'Module::CoreList' => '2.02',
2787             'Moped::Msg' => '0.01',
2788             'NEXT' => '0.60_01',
2789             'Net::Cmd' => '2.26_01',
2790             'Net::Domain' => '2.19_01',
2791             'Net::Ping' => '2.31_04',
2792             'Opcode' => '1.08',
2793             'POSIX' => '1.10',
2794             'Pod::Escapes' => '1.04',
2795             'Pod::Man' => '2.04',
2796             'Pod::Perldoc' => '3.14_01',
2797             'Pod::Simple' => '3.04',
2798             'Pod::Simple::BlackBox' => undef,
2799             'Pod::Simple::Checker' => '2.02',
2800             'Pod::Simple::Debug' => undef,
2801             'Pod::Simple::DumpAsText'=> '2.02',
2802             'Pod::Simple::DumpAsXML'=> '2.02',
2803             'Pod::Simple::HTML' => '3.03',
2804             'Pod::Simple::HTMLBatch'=> '3.02',
2805             'Pod::Simple::HTMLLegacy'=> '5.01',
2806             'Pod::Simple::LinkSection'=> undef,
2807             'Pod::Simple::Methody' => '2.02',
2808             'Pod::Simple::Progress' => '1.01',
2809             'Pod::Simple::PullParser'=> '2.02',
2810             'Pod::Simple::PullParserEndToken'=> undef,
2811             'Pod::Simple::PullParserStartToken'=> undef,
2812             'Pod::Simple::PullParserTextToken'=> undef,
2813             'Pod::Simple::PullParserToken'=> '2.02',
2814             'Pod::Simple::RTF' => '2.02',
2815             'Pod::Simple::Search' => '3.04',
2816             'Pod::Simple::SimpleTree'=> '2.02',
2817             'Pod::Simple::Text' => '2.02',
2818             'Pod::Simple::TextContent'=> '2.02',
2819             'Pod::Simple::TiedOutFH'=> undef,
2820             'Pod::Simple::Transcode'=> undef,
2821             'Pod::Simple::TranscodeDumb'=> '2.02',
2822             'Pod::Simple::TranscodeSmart'=> undef,
2823             'Pod::Simple::XMLOutStream'=> '2.02',
2824             'Pod::Text' => '3.01',
2825             'Pod::Text::Color' => '2.01',
2826             'Pod::Text::Overstrike' => '2',
2827             'Pod::Text::Termcap' => '2.01',
2828             'Pod::Usage' => '1.33_01',
2829             'SelfLoader' => '1.0905',
2830             'Storable' => '2.15_02',
2831             'Test::Builder::Module' => '0.03',
2832             'Text::Balanced' => '1.95_01',
2833             'Tie::File' => '0.97_01',
2834             'UNIVERSAL' => '1.03',
2835             'XS::APItest' => '0.09',
2836             'assertions' => '0.02',
2837             'assertions::activate' => '0.02',
2838             'assertions::compat' => undef,
2839             'constant' => '1.07',
2840             'encoding::warnings' => '0.05',
2841             'feature' => '1.00',
2842             're' => '0.06',
2843             'sort' => '2.00',
2844             'version' => '0.53',
2845             },
2846             removed => {
2847             }
2848             },
2849             5.009004 => {
2850             delta_from => 5.009003,
2851             changed => {
2852             'Archive::Tar' => '1.30_01',
2853             'AutoLoader' => '5.61',
2854             'B' => '1.11',
2855             'B::Bytecode' => '1.02',
2856             'B::C' => '1.05',
2857             'B::Concise' => '0.69',
2858             'B::Deparse' => '0.76',
2859             'B::Lint' => '1.08',
2860             'Benchmark' => '1.08',
2861             'CGI' => '3.20',
2862             'CGI::Cookie' => '1.27',
2863             'CGI::Fast' => '1.07',
2864             'CPAN' => '1.87_55',
2865             'CPAN::Debug' => '5.400561',
2866             'CPAN::FirstTime' => '5.400742',
2867             'CPAN::HandleConfig' => '5.400740',
2868             'CPAN::Nox' => '5.400561',
2869             'CPAN::Tarzip' => '5.400714',
2870             'CPAN::Version' => '5.400561',
2871             'Compress::Raw::Zlib' => '2.000_13',
2872             'Compress::Zlib' => '2.000_13',
2873             'Cwd' => '3.19',
2874             'Devel::PPPort' => '3.10',
2875             'Digest' => '1.15',
2876             'Digest::SHA' => '5.43',
2877             'Encode' => '2.18_01',
2878             'Encode::Alias' => '2.06',
2879             'Encode::Byte' => '2.02',
2880             'Encode::CJKConstants' => '2.02',
2881             'Encode::CN' => '2.02',
2882             'Encode::CN::HZ' => '2.04',
2883             'Encode::Config' => '2.03',
2884             'Encode::EBCDIC' => '2.02',
2885             'Encode::Encoder' => '2.01',
2886             'Encode::Encoding' => '2.04',
2887             'Encode::Guess' => '2.02',
2888             'Encode::JP' => '2.03',
2889             'Encode::JP::H2Z' => '2.02',
2890             'Encode::JP::JIS7' => '2.02',
2891             'Encode::KR' => '2.02',
2892             'Encode::KR::2022_KR' => '2.02',
2893             'Encode::MIME::Header' => '2.04',
2894             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2895             'Encode::Symbol' => '2.02',
2896             'Encode::TW' => '2.02',
2897             'Encode::Unicode' => '2.03',
2898             'Encode::Unicode::UTF7' => '2.04',
2899             'ExtUtils::CBuilder' => '0.18',
2900             'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2901             'ExtUtils::Constant::Base'=> '0.03',
2902             'ExtUtils::Constant::ProxySubs'=> '0.03',
2903             'ExtUtils::Install' => '1.41',
2904             'ExtUtils::Installed' => '1.41',
2905             'ExtUtils::MM_Any' => '0.13_02',
2906             'ExtUtils::MM_NW5' => '2.08_01',
2907             'ExtUtils::MM_Unix' => '1.5003',
2908             'ExtUtils::MM_VMS' => '5.73_03',
2909             'ExtUtils::MM_Win32' => '1.12_02',
2910             'ExtUtils::MM_Win95' => '0.04_01',
2911             'ExtUtils::MakeMaker' => '6.30_02',
2912             'ExtUtils::Manifest' => '1.46_01',
2913             'ExtUtils::Mkbootstrap' => '1.15_01',
2914             'ExtUtils::Mksymlists' => '1.19_01',
2915             'ExtUtils::Packlist' => '1.41',
2916             'File::Basename' => '2.75',
2917             'File::Find' => '1.11',
2918             'File::GlobMapper' => '0.000_02',
2919             'File::Spec' => '3.19',
2920             'FileCache' => '1.07',
2921             'Getopt::Long' => '2.3501',
2922             'Hash::Util' => '0.07',
2923             'Hash::Util::FieldHash' => '0.01',
2924             'IO' => '1.23_01',
2925             'IO::Compress::Adapter::Deflate'=> '2.000_13',
2926             'IO::Compress::Adapter::Identity'=> '2.000_13',
2927             'IO::Compress::Base' => '2.000_13',
2928             'IO::Compress::Base::Common'=> '2.000_13',
2929             'IO::Compress::Deflate' => '2.000_13',
2930             'IO::Compress::Gzip' => '2.000_13',
2931             'IO::Compress::Gzip::Constants'=> '2.000_13',
2932             'IO::Compress::RawDeflate'=> '2.000_13',
2933             'IO::Compress::Zip' => '2.000_13',
2934             'IO::Compress::Zip::Constants'=> '2.000_13',
2935             'IO::Compress::Zlib::Constants'=> '2.000_13',
2936             'IO::Compress::Zlib::Extra'=> '2.000_13',
2937             'IO::Dir' => '1.06',
2938             'IO::File' => '1.14',
2939             'IO::Handle' => '1.27',
2940             'IO::Socket' => '1.30_01',
2941             'IO::Socket::INET' => '1.31',
2942             'IO::Socket::UNIX' => '1.23',
2943             'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2944             'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2945             'IO::Uncompress::AnyInflate'=> '2.000_13',
2946             'IO::Uncompress::AnyUncompress'=> '2.000_13',
2947             'IO::Uncompress::Base' => '2.000_13',
2948             'IO::Uncompress::Gunzip'=> '2.000_13',
2949             'IO::Uncompress::Inflate'=> '2.000_13',
2950             'IO::Uncompress::RawInflate'=> '2.000_13',
2951             'IO::Uncompress::Unzip' => '2.000_13',
2952             'MIME::Base64' => '3.07_01',
2953             'Math::Complex' => '1.36',
2954             'Math::Trig' => '1.04',
2955             'Module::Build' => '0.2805',
2956             'Module::Build::Base' => undef,
2957             'Module::Build::Compat' => '0.03',
2958             'Module::Build::ConfigData'=> undef,
2959             'Module::Build::Cookbook'=> undef,
2960             'Module::Build::ModuleInfo'=> undef,
2961             'Module::Build::Notes' => undef,
2962             'Module::Build::PPMMaker'=> undef,
2963             'Module::Build::Platform::Amiga'=> undef,
2964             'Module::Build::Platform::Default'=> undef,
2965             'Module::Build::Platform::EBCDIC'=> undef,
2966             'Module::Build::Platform::MPEiX'=> undef,
2967             'Module::Build::Platform::MacOS'=> undef,
2968             'Module::Build::Platform::RiscOS'=> undef,
2969             'Module::Build::Platform::Unix'=> undef,
2970             'Module::Build::Platform::VMS'=> undef,
2971             'Module::Build::Platform::VOS'=> undef,
2972             'Module::Build::Platform::Windows'=> undef,
2973             'Module::Build::Platform::aix'=> undef,
2974             'Module::Build::Platform::cygwin'=> undef,
2975             'Module::Build::Platform::darwin'=> undef,
2976             'Module::Build::Platform::os2'=> undef,
2977             'Module::Build::PodParser'=> undef,
2978             'Module::Build::Version'=> '0',
2979             'Module::Build::YAML' => '0.50',
2980             'Module::CoreList' => '2.08',
2981             'Module::Load' => '0.10',
2982             'Module::Loaded' => '0.01',
2983             'Package::Constants' => '0.01',
2984             'Pod::Html' => '1.07',
2985             'Pod::Man' => '2.09',
2986             'Pod::Text' => '3.07',
2987             'Pod::Text::Color' => '2.03',
2988             'Pod::Text::Termcap' => '2.03',
2989             'SDBM_File' => '1.06',
2990             'Shell' => '0.7',
2991             'Sys::Syslog' => '0.17',
2992             'Term::ANSIColor' => '1.11',
2993             'Test::Builder' => '0.33',
2994             'Test::Builder::Tester' => '1.04',
2995             'Test::Harness' => '2.62',
2996             'Test::Harness::Util' => '0.01',
2997             'Test::More' => '0.64',
2998             'Test::Simple' => '0.64',
2999             'Text::Balanced' => '1.98_01',
3000             'Text::ParseWords' => '3.25',
3001             'Text::Tabs' => '2007.071101',
3002             'Text::Wrap' => '2006.0711',
3003             'Tie::RefHash' => '1.34_01',
3004             'Time::HiRes' => '1.87',
3005             'Time::Local' => '1.13',
3006             'Time::gmtime' => '1.03',
3007             'UNIVERSAL' => '1.04',
3008             'Unicode::Normalize' => '1.01',
3009             'Win32API::File' => '0.1001',
3010             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
3011             'assertions' => '0.03',
3012             'assertions::compat' => '0.02',
3013             'autouse' => '1.06',
3014             'diagnostics' => '1.16',
3015             'encoding' => '2.04',
3016             'encoding::warnings' => '0.10',
3017             'feature' => '1.01',
3018             're' => '0.0601',
3019             'threads' => '1.38',
3020             'threads::shared' => '0.94_01',
3021             'version' => '0.67',
3022             },
3023             removed => {
3024             'Compress::Zlib::Common'=> 1,
3025             'Compress::Zlib::Compress::Gzip::Constants'=> 1,
3026             'Compress::Zlib::Compress::Zip::Constants'=> 1,
3027             'Compress::Zlib::CompressPlugin::Deflate'=> 1,
3028             'Compress::Zlib::CompressPlugin::Identity'=> 1,
3029             'Compress::Zlib::File::GlobMapper'=> 1,
3030             'Compress::Zlib::FileConstants'=> 1,
3031             'Compress::Zlib::IO::Compress::Base'=> 1,
3032             'Compress::Zlib::IO::Compress::Deflate'=> 1,
3033             'Compress::Zlib::IO::Compress::Gzip'=> 1,
3034             'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
3035             'Compress::Zlib::IO::Compress::Zip'=> 1,
3036             'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
3037             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
3038             'Compress::Zlib::IO::Uncompress::Base'=> 1,
3039             'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
3040             'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
3041             'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
3042             'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
3043             'Compress::Zlib::ParseParameters'=> 1,
3044             'Compress::Zlib::UncompressPlugin::Identity'=> 1,
3045             'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
3046             }
3047             },
3048             5.009005 => {
3049             delta_from => 5.009004,
3050             changed => {
3051             'Archive::Extract' => '0.22_01',
3052             'Archive::Tar' => '1.32',
3053             'Attribute::Handlers' => '0.78_06',
3054             'AutoLoader' => '5.63',
3055             'AutoSplit' => '1.05',
3056             'B' => '1.16',
3057             'B::Concise' => '0.72',
3058             'B::Debug' => '1.05',
3059             'B::Deparse' => '0.82',
3060             'B::Lint' => '1.09',
3061             'B::Terse' => '1.05',
3062             'Benchmark' => '1.1',
3063             'CGI' => '3.29',
3064             'CGI::Cookie' => '1.28',
3065             'CGI::Util' => '1.5_01',
3066             'CPAN' => '1.9102',
3067             'CPAN::Debug' => '5.400955',
3068             'CPAN::FirstTime' => '5.401669',
3069             'CPAN::HandleConfig' => '5.401744',
3070             'CPAN::Kwalify' => '5.401418',
3071             'CPAN::Nox' => '5.400844',
3072             'CPAN::Queue' => '5.401704',
3073             'CPAN::Tarzip' => '5.401717',
3074             'CPAN::Version' => '5.401387',
3075             'CPANPLUS' => '0.81_01',
3076             'CPANPLUS::Backend' => undef,
3077             'CPANPLUS::Backend::RV' => undef,
3078             'CPANPLUS::Config' => undef,
3079             'CPANPLUS::Configure' => undef,
3080             'CPANPLUS::Configure::Setup'=> undef,
3081             'CPANPLUS::Dist' => undef,
3082             'CPANPLUS::Dist::Base' => '0.01',
3083             'CPANPLUS::Dist::Build' => '0.06_01',
3084             'CPANPLUS::Dist::Build::Constants'=> '0.01',
3085             'CPANPLUS::Dist::MM' => undef,
3086             'CPANPLUS::Dist::Sample'=> undef,
3087             'CPANPLUS::Error' => undef,
3088             'CPANPLUS::Internals' => '0.81_01',
3089             'CPANPLUS::Internals::Constants'=> '0.01',
3090             'CPANPLUS::Internals::Constants::Report'=> '0.01',
3091             'CPANPLUS::Internals::Extract'=> undef,
3092             'CPANPLUS::Internals::Fetch'=> undef,
3093             'CPANPLUS::Internals::Report'=> undef,
3094             'CPANPLUS::Internals::Search'=> undef,
3095             'CPANPLUS::Internals::Source'=> undef,
3096             'CPANPLUS::Internals::Utils'=> undef,
3097             'CPANPLUS::Internals::Utils::Autoflush'=> undef,
3098             'CPANPLUS::Module' => undef,
3099             'CPANPLUS::Module::Author'=> undef,
3100             'CPANPLUS::Module::Author::Fake'=> undef,
3101             'CPANPLUS::Module::Checksums'=> undef,
3102             'CPANPLUS::Module::Fake'=> undef,
3103             'CPANPLUS::Module::Signature'=> undef,
3104             'CPANPLUS::Selfupdate' => undef,
3105             'CPANPLUS::Shell' => undef,
3106             'CPANPLUS::Shell::Classic'=> '0.0562',
3107             'CPANPLUS::Shell::Default'=> '0.81_01',
3108             'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
3109             'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
3110             'CPANPLUS::inc' => undef,
3111             'Carp' => '1.07',
3112             'Carp::Heavy' => '1.07',
3113             'Compress::Raw::Zlib' => '2.005',
3114             'Compress::Zlib' => '2.005',
3115             'Cwd' => '3.25',
3116             'DBM_Filter' => '0.02',
3117             'DB_File' => '1.815',
3118             'Data::Dumper' => '2.121_13',
3119             'Devel::InnerPackage' => '0.3',
3120             'Devel::PPPort' => '3.11_01',
3121             'Digest::MD5' => '2.36_01',
3122             'Digest::SHA' => '5.44',
3123             'DynaLoader' => '1.08',
3124             'Encode' => '2.23',
3125             'Encode::Alias' => '2.07',
3126             'Encode::Byte' => '2.03',
3127             'Encode::Config' => '2.04',
3128             'Encode::Encoding' => '2.05',
3129             'Encode::GSM0338' => '2.00',
3130             'Encode::JP::JIS7' => '2.03',
3131             'Encode::MIME::Header' => '2.05',
3132             'Encode::MIME::Name' => '1.01',
3133             'Encode::Unicode' => '2.05',
3134             'Errno' => '1.10',
3135             'Exporter' => '5.60',
3136             'Exporter::Heavy' => '5.60',
3137             'ExtUtils::CBuilder' => '0.19',
3138             'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3139             'ExtUtils::Command' => '1.13',
3140             'ExtUtils::Command::MM' => '0.07',
3141             'ExtUtils::Constant::Base'=> '0.04',
3142             'ExtUtils::Install' => '1.41_01',
3143             'ExtUtils::Liblist' => '1.03',
3144             'ExtUtils::Liblist::Kid'=> '1.33',
3145             'ExtUtils::MM' => '0.07',
3146             'ExtUtils::MM_AIX' => '0.05',
3147             'ExtUtils::MM_Any' => '0.15',
3148             'ExtUtils::MM_BeOS' => '1.07',
3149             'ExtUtils::MM_Cygwin' => '1.1',
3150             'ExtUtils::MM_DOS' => '0.04',
3151             'ExtUtils::MM_MacOS' => '1.1',
3152             'ExtUtils::MM_NW5' => '2.1',
3153             'ExtUtils::MM_OS2' => '1.07',
3154             'ExtUtils::MM_QNX' => '0.04',
3155             'ExtUtils::MM_UWIN' => '0.04',
3156             'ExtUtils::MM_Unix' => '1.54_01',
3157             'ExtUtils::MM_VMS' => '5.76',
3158             'ExtUtils::MM_VOS' => '0.04',
3159             'ExtUtils::MM_Win32' => '1.15',
3160             'ExtUtils::MM_Win95' => '0.06',
3161             'ExtUtils::MY' => '0.03',
3162             'ExtUtils::MakeMaker' => '6.36',
3163             'ExtUtils::MakeMaker::Config'=> '0.04',
3164             'ExtUtils::MakeMaker::bytes'=> '0.03',
3165             'ExtUtils::MakeMaker::vmsish'=> '0.03',
3166             'ExtUtils::Manifest' => '1.51_01',
3167             'ExtUtils::Mkbootstrap' => '1.17',
3168             'ExtUtils::Mksymlists' => '1.21',
3169             'ExtUtils::ParseXS' => '2.18',
3170             'ExtUtils::XSSymSet' => '1.1',
3171             'ExtUtils::testlib' => '1.17',
3172             'Fatal' => '1.05',
3173             'Fcntl' => '1.06',
3174             'File::Basename' => '2.76',
3175             'File::Copy' => '2.10',
3176             'File::Fetch' => '0.10',
3177             'File::Glob' => '1.06',
3178             'File::Path' => '2.01',
3179             'File::Spec' => '3.25',
3180             'File::Spec::Cygwin' => '1.1_01',
3181             'File::Spec::VMS' => '1.4_01',
3182             'File::Temp' => '0.18',
3183             'Filter::Util::Call' => '1.0602',
3184             'FindBin' => '1.49',
3185             'Getopt::Long' => '2.36',
3186             'Hash::Util::FieldHash' => '1.01',
3187             'IO::Compress::Adapter::Deflate'=> '2.005',
3188             'IO::Compress::Adapter::Identity'=> '2.005',
3189             'IO::Compress::Base' => '2.005',
3190             'IO::Compress::Base::Common'=> '2.005',
3191             'IO::Compress::Deflate' => '2.005',
3192             'IO::Compress::Gzip' => '2.005',
3193             'IO::Compress::Gzip::Constants'=> '2.005',
3194             'IO::Compress::RawDeflate'=> '2.005',
3195             'IO::Compress::Zip' => '2.005',
3196             'IO::Compress::Zip::Constants'=> '2.005',
3197             'IO::Compress::Zlib::Constants'=> '2.005',
3198             'IO::Compress::Zlib::Extra'=> '2.005',
3199             'IO::Uncompress::Adapter::Identity'=> '2.005',
3200             'IO::Uncompress::Adapter::Inflate'=> '2.005',
3201             'IO::Uncompress::AnyInflate'=> '2.005',
3202             'IO::Uncompress::AnyUncompress'=> '2.005',
3203             'IO::Uncompress::Base' => '2.005',
3204             'IO::Uncompress::Gunzip'=> '2.005',
3205             'IO::Uncompress::Inflate'=> '2.005',
3206             'IO::Uncompress::RawInflate'=> '2.005',
3207             'IO::Uncompress::Unzip' => '2.005',
3208             'IO::Zlib' => '1.05_01',
3209             'IPC::Cmd' => '0.36_01',
3210             'List::Util' => '1.19',
3211             'Locale::Maketext::Simple'=> '0.18',
3212             'Log::Message' => '0.01',
3213             'Log::Message::Config' => '0.01',
3214             'Log::Message::Handlers'=> undef,
3215             'Log::Message::Item' => undef,
3216             'Log::Message::Simple' => '0.0201',
3217             'Math::BigFloat' => '1.58',
3218             'Math::BigInt' => '1.87',
3219             'Math::BigInt::Calc' => '0.51',
3220             'Math::BigInt::FastCalc'=> '0.15_01',
3221             'Math::BigRat' => '0.19',
3222             'Math::Complex' => '1.37',
3223             'Memoize' => '1.01_02',
3224             'Module::Build' => '0.2808',
3225             'Module::Build::Config' => undef,
3226             'Module::Build::Version'=> '0.7203',
3227             'Module::CoreList' => '2.12',
3228             'Module::Load::Conditional'=> '0.16',
3229             'Module::Pluggable' => '3.6',
3230             'Module::Pluggable::Object'=> '3.6',
3231             'NDBM_File' => '1.07',
3232             'Net::Cmd' => '2.28',
3233             'Net::Config' => '1.11',
3234             'Net::Domain' => '2.20',
3235             'Net::FTP' => '2.77',
3236             'Net::FTP::A' => '1.18',
3237             'Net::NNTP' => '2.24',
3238             'Net::POP3' => '2.29',
3239             'Net::SMTP' => '2.31',
3240             'ODBM_File' => '1.07',
3241             'OS2::DLL' => '1.03',
3242             'Object::Accessor' => '0.32',
3243             'Opcode' => '1.09',
3244             'POSIX' => '1.13',
3245             'Params::Check' => '0.26',
3246             'PerlIO::encoding' => '0.10',
3247             'PerlIO::scalar' => '0.05',
3248             'PerlIO::via' => '0.04',
3249             'Pod::Html' => '1.08',
3250             'Pod::Man' => '2.12',
3251             'Pod::ParseUtils' => '1.35',
3252             'Pod::Parser' => '1.35',
3253             'Pod::Select' => '1.35',
3254             'Pod::Simple' => '3.05',
3255             'Pod::Text' => '3.08',
3256             'Pod::Usage' => '1.35',
3257             'Scalar::Util' => '1.19',
3258             'SelfLoader' => '1.11',
3259             'Shell' => '0.72_01',
3260             'Socket' => '1.79',
3261             'Storable' => '2.16',
3262             'Switch' => '2.13',
3263             'Sys::Syslog' => '0.18_01',
3264             'Term::ANSIColor' => '1.12',
3265             'Term::UI' => '0.14_01',
3266             'Term::UI::History' => undef,
3267             'Test::Builder' => '0.70',
3268             'Test::Builder::Module' => '0.68',
3269             'Test::Builder::Tester' => '1.07',
3270             'Test::Harness' => '2.64',
3271             'Test::Harness::Results'=> '0.01',
3272             'Test::More' => '0.70',
3273             'Test::Simple' => '0.70',
3274             'Text::Balanced' => '2.0.0',
3275             'Text::Soundex' => '3.02',
3276             'Text::Tabs' => '2007.1117',
3277             'Text::Wrap' => '2006.1117',
3278             'Thread' => '3.02',
3279             'Tie::File' => '0.97_02',
3280             'Tie::Hash::NamedCapture'=> '0.06',
3281             'Tie::Memoize' => '1.1',
3282             'Tie::RefHash' => '1.37',
3283             'Time::HiRes' => '1.9707',
3284             'Time::Local' => '1.17',
3285             'Time::Piece' => '1.11_02',
3286             'Time::Seconds' => undef,
3287             'Unicode' => '5.0.0',
3288             'Unicode::Normalize' => '1.02',
3289             'Unicode::UCD' => '0.25',
3290             'VMS::DCLsym' => '1.03',
3291             'Win32' => '0.30',
3292             'Win32API::File' => '0.1001_01',
3293             'Win32CORE' => '0.02',
3294             'XS::APItest' => '0.12',
3295             'XSLoader' => '0.08',
3296             'attributes' => '0.08',
3297             'base' => '2.12',
3298             'bigint' => '0.22',
3299             'bignum' => '0.22',
3300             'bigrat' => '0.22',
3301             'bytes' => '1.03',
3302             'charnames' => '1.06',
3303             'constant' => '1.10',
3304             'diagnostics' => '1.17',
3305             'encoding' => '2.06',
3306             'encoding::warnings' => '0.11',
3307             'feature' => '1.10',
3308             'fields' => '2.12',
3309             'less' => '0.02',
3310             'mro' => '1.00',
3311             'overload' => '1.06',
3312             're' => '0.08',
3313             'sigtrap' => '1.04',
3314             'sort' => '2.01',
3315             'strict' => '1.04',
3316             'threads' => '1.63',
3317             'threads::shared' => '1.12',
3318             'utf8' => '1.07',
3319             'version' => '0.7203',
3320             'warnings' => '1.06',
3321             },
3322             removed => {
3323             'B::Asmdata' => 1,
3324             'B::Assembler' => 1,
3325             'B::Bblock' => 1,
3326             'B::Bytecode' => 1,
3327             'B::C' => 1,
3328             'B::CC' => 1,
3329             'B::Disassembler' => 1,
3330             'B::Stackobj' => 1,
3331             'B::Stash' => 1,
3332             'ByteLoader' => 1,
3333             'Thread::Signal' => 1,
3334             'Thread::Specific' => 1,
3335             'assertions' => 1,
3336             'assertions::activate' => 1,
3337             'assertions::compat' => 1,
3338             }
3339             },
3340             5.01 => {
3341             delta_from => 5.009005,
3342             changed => {
3343             'Archive::Extract' => '0.24',
3344             'Archive::Tar' => '1.38',
3345             'Attribute::Handlers' => '0.79',
3346             'B' => '1.17',
3347             'B::Concise' => '0.74',
3348             'B::Deparse' => '0.83',
3349             'CPAN' => '1.9205',
3350             'CPAN::API::HOWTO' => undef,
3351             'CPAN::Debug' => '5.402212',
3352             'CPAN::DeferedCode' => '5.50',
3353             'CPAN::FirstTime' => '5.402229',
3354             'CPAN::HandleConfig' => '5.402212',
3355             'CPAN::Nox' => '5.402411',
3356             'CPAN::Queue' => '5.402212',
3357             'CPAN::Tarzip' => '5.402213',
3358             'CPAN::Version' => '5.5',
3359             'CPANPLUS' => '0.84',
3360             'CPANPLUS::Dist::Build' => '0.06_02',
3361             'CPANPLUS::Internals' => '0.84',
3362             'CPANPLUS::Shell::Default'=> '0.84',
3363             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3364             'Carp' => '1.08',
3365             'Carp::Heavy' => '1.08',
3366             'Compress::Raw::Zlib' => '2.008',
3367             'Compress::Zlib' => '2.008',
3368             'Cwd' => '3.2501',
3369             'DB_File' => '1.816_1',
3370             'Data::Dumper' => '2.121_14',
3371             'Devel::PPPort' => '3.13',
3372             'Digest::SHA' => '5.45',
3373             'Exporter' => '5.62',
3374             'Exporter::Heavy' => '5.62',
3375             'ExtUtils::CBuilder' => '0.21',
3376             'ExtUtils::CBuilder::Base'=> '0.21',
3377             'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3378             'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3379             'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3380             'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3381             'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3382             'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3383             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3384             'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3385             'ExtUtils::Command::MM' => '6.42',
3386             'ExtUtils::Constant::ProxySubs'=> '0.05',
3387             'ExtUtils::Embed' => '1.27',
3388             'ExtUtils::Install' => '1.44',
3389             'ExtUtils::Installed' => '1.43',
3390             'ExtUtils::Liblist' => '6.42',
3391             'ExtUtils::Liblist::Kid'=> '6.42',
3392             'ExtUtils::MM' => '6.42',
3393             'ExtUtils::MM_AIX' => '6.42',
3394             'ExtUtils::MM_Any' => '6.42',
3395             'ExtUtils::MM_BeOS' => '6.42',
3396             'ExtUtils::MM_Cygwin' => '6.42',
3397             'ExtUtils::MM_DOS' => '6.42',
3398             'ExtUtils::MM_MacOS' => '6.42',
3399             'ExtUtils::MM_NW5' => '6.42',
3400             'ExtUtils::MM_OS2' => '6.42',
3401             'ExtUtils::MM_QNX' => '6.42',
3402             'ExtUtils::MM_UWIN' => '6.42',
3403             'ExtUtils::MM_Unix' => '6.42',
3404             'ExtUtils::MM_VMS' => '6.42',
3405             'ExtUtils::MM_VOS' => '6.42',
3406             'ExtUtils::MM_Win32' => '6.42',
3407             'ExtUtils::MM_Win95' => '6.42',
3408             'ExtUtils::MY' => '6.42',
3409             'ExtUtils::MakeMaker' => '6.42',
3410             'ExtUtils::MakeMaker::Config'=> '6.42',
3411             'ExtUtils::MakeMaker::bytes'=> '6.42',
3412             'ExtUtils::MakeMaker::vmsish'=> '6.42',
3413             'ExtUtils::Mkbootstrap' => '6.42',
3414             'ExtUtils::Mksymlists' => '6.42',
3415             'ExtUtils::Packlist' => '1.43',
3416             'ExtUtils::ParseXS' => '2.18_02',
3417             'ExtUtils::testlib' => '6.42',
3418             'File::Copy' => '2.11',
3419             'File::Fetch' => '0.14',
3420             'File::Find' => '1.12',
3421             'File::Path' => '2.04',
3422             'File::Spec' => '3.2501',
3423             'File::Spec::Cygwin' => '3.2501',
3424             'File::Spec::Epoc' => '3.2501',
3425             'File::Spec::Functions' => '3.2501',
3426             'File::Spec::Mac' => '3.2501',
3427             'File::Spec::OS2' => '3.2501',
3428             'File::Spec::Unix' => '3.2501',
3429             'File::Spec::VMS' => '3.2501',
3430             'File::Spec::Win32' => '3.2501',
3431             'Filter::Util::Call' => '1.07',
3432             'Getopt::Long' => '2.37',
3433             'Hash::Util::FieldHash' => '1.03',
3434             'IO::Compress::Adapter::Deflate'=> '2.008',
3435             'IO::Compress::Adapter::Identity'=> '2.008',
3436             'IO::Compress::Base' => '2.008',
3437             'IO::Compress::Base::Common'=> '2.008',
3438             'IO::Compress::Deflate' => '2.008',
3439             'IO::Compress::Gzip' => '2.008',
3440             'IO::Compress::Gzip::Constants'=> '2.008',
3441             'IO::Compress::RawDeflate'=> '2.008',
3442             'IO::Compress::Zip' => '2.008',
3443             'IO::Compress::Zip::Constants'=> '2.008',
3444             'IO::Compress::Zlib::Constants'=> '2.008',
3445             'IO::Compress::Zlib::Extra'=> '2.008',
3446             'IO::Uncompress::Adapter::Identity'=> '2.008',
3447             'IO::Uncompress::Adapter::Inflate'=> '2.008',
3448             'IO::Uncompress::AnyInflate'=> '2.008',
3449             'IO::Uncompress::AnyUncompress'=> '2.008',
3450             'IO::Uncompress::Base' => '2.008',
3451             'IO::Uncompress::Gunzip'=> '2.008',
3452             'IO::Uncompress::Inflate'=> '2.008',
3453             'IO::Uncompress::RawInflate'=> '2.008',
3454             'IO::Uncompress::Unzip' => '2.008',
3455             'IO::Zlib' => '1.07',
3456             'IPC::Cmd' => '0.40_1',
3457             'IPC::SysV' => '1.05',
3458             'Locale::Maketext' => '1.12',
3459             'Log::Message::Simple' => '0.04',
3460             'Math::BigFloat' => '1.59',
3461             'Math::BigInt' => '1.88',
3462             'Math::BigInt::Calc' => '0.52',
3463             'Math::BigInt::FastCalc'=> '0.16',
3464             'Math::BigRat' => '0.21',
3465             'Module::Build' => '0.2808_01',
3466             'Module::Build::Base' => '0.2808_01',
3467             'Module::Build::Compat' => '0.2808_01',
3468             'Module::Build::Config' => '0.2808_01',
3469             'Module::Build::Dumper' => undef,
3470             'Module::Build::ModuleInfo'=> '0.2808_01',
3471             'Module::Build::Notes' => '0.2808_01',
3472             'Module::Build::PPMMaker'=> '0.2808_01',
3473             'Module::Build::Platform::Amiga'=> '0.2808_01',
3474             'Module::Build::Platform::Default'=> '0.2808_01',
3475             'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3476             'Module::Build::Platform::MPEiX'=> '0.2808_01',
3477             'Module::Build::Platform::MacOS'=> '0.2808_01',
3478             'Module::Build::Platform::RiscOS'=> '0.2808_01',
3479             'Module::Build::Platform::Unix'=> '0.2808_01',
3480             'Module::Build::Platform::VMS'=> '0.2808_01',
3481             'Module::Build::Platform::VOS'=> '0.2808_01',
3482             'Module::Build::Platform::Windows'=> '0.2808_01',
3483             'Module::Build::Platform::aix'=> '0.2808_01',
3484             'Module::Build::Platform::cygwin'=> '0.2808_01',
3485             'Module::Build::Platform::darwin'=> '0.2808_01',
3486             'Module::Build::Platform::os2'=> '0.2808_01',
3487             'Module::Build::PodParser'=> '0.2808_01',
3488             'Module::CoreList' => '2.13',
3489             'Module::Load' => '0.12',
3490             'Module::Load::Conditional'=> '0.22',
3491             'Net::Cmd' => '2.29',
3492             'Net::Ping' => '2.33',
3493             'Opcode' => '1.11',
3494             'Pod::Checker' => '1.43_01',
3495             'Pod::Man' => '2.16',
3496             'Pod::Perldoc' => '3.14_02',
3497             'Socket' => '1.80',
3498             'Storable' => '2.18',
3499             'Sys::Syslog' => '0.22',
3500             'Sys::Syslog::win32::Win32'=> undef,
3501             'Term::Cap' => '1.12',
3502             'Term::ReadLine' => '1.03',
3503             'Term::UI' => '0.18',
3504             'Test::Builder' => '0.72',
3505             'Test::Builder::Module' => '0.72',
3506             'Test::Builder::Tester' => '1.09',
3507             'Test::Harness::Straps' => '0.26_01',
3508             'Test::More' => '0.72',
3509             'Test::Simple' => '0.72',
3510             'Text::ParseWords' => '3.26',
3511             'Text::Soundex' => '3.03',
3512             'Tie::StdHandle' => undef,
3513             'Time::HiRes' => '1.9711',
3514             'Time::Local' => '1.18',
3515             'Time::Piece' => '1.12',
3516             'VMS::Filespec' => '1.12',
3517             'Win32' => '0.34',
3518             'base' => '2.13',
3519             'constant' => '1.13',
3520             'feature' => '1.11',
3521             'fields' => '2.13',
3522             'filetest' => '1.02',
3523             'open' => '1.06',
3524             'threads' => '1.67',
3525             'threads::shared' => '1.14',
3526             'version' => '0.74',
3527             },
3528             removed => {
3529             }
3530             },
3531             5.010001 => {
3532             delta_from => 5.01,
3533             changed => {
3534             'App::Prove' => '3.17',
3535             'App::Prove::State' => '3.17',
3536             'App::Prove::State::Result'=> '3.17',
3537             'App::Prove::State::Result::Test'=> '3.17',
3538             'Archive::Extract' => '0.34',
3539             'Archive::Tar' => '1.52',
3540             'Attribute::Handlers' => '0.85',
3541             'AutoLoader' => '5.68',
3542             'AutoSplit' => '1.06',
3543             'B' => '1.22',
3544             'B::Concise' => '0.76',
3545             'B::Debug' => '1.11',
3546             'B::Deparse' => '0.89',
3547             'B::Lint' => '1.11',
3548             'B::Lint::Debug' => undef,
3549             'B::Xref' => '1.02',
3550             'Benchmark' => '1.11',
3551             'CGI' => '3.43',
3552             'CGI::Carp' => '1.30_01',
3553             'CGI::Cookie' => '1.29',
3554             'CPAN' => '1.9402',
3555             'CPAN::Author' => '5.5',
3556             'CPAN::Bundle' => '5.5',
3557             'CPAN::CacheMgr' => '5.5',
3558             'CPAN::Complete' => '5.5',
3559             'CPAN::Debug' => '5.5',
3560             'CPAN::DeferredCode' => '5.50',
3561             'CPAN::Distribution' => '1.93',
3562             'CPAN::Distroprefs' => '6',
3563             'CPAN::Distrostatus' => '5.5',
3564             'CPAN::Exception::RecursiveDependency'=> '5.5',
3565             'CPAN::Exception::blocked_urllist'=> '1.0',
3566             'CPAN::Exception::yaml_not_installed'=> '5.5',
3567             'CPAN::FTP' => '5.5001',
3568             'CPAN::FTP::netrc' => '1.00',
3569             'CPAN::FirstTime' => '5.53',
3570             'CPAN::HandleConfig' => '5.5',
3571             'CPAN::Index' => '1.93',
3572             'CPAN::InfoObj' => '5.5',
3573             'CPAN::Kwalify' => '5.50',
3574             'CPAN::LWP::UserAgent' => '1.00',
3575             'CPAN::Module' => '5.5',
3576             'CPAN::Nox' => '5.50',
3577             'CPAN::Prompt' => '5.5',
3578             'CPAN::Queue' => '5.5',
3579             'CPAN::Shell' => '5.5',
3580             'CPAN::Tarzip' => '5.501',
3581             'CPAN::URL' => '5.5',
3582             'CPANPLUS' => '0.88',
3583             'CPANPLUS::Dist::Autobundle'=> undef,
3584             'CPANPLUS::Dist::Base' => undef,
3585             'CPANPLUS::Dist::Build' => '0.36',
3586             'CPANPLUS::Dist::Build::Constants'=> '0.36',
3587             'CPANPLUS::Internals' => '0.88',
3588             'CPANPLUS::Internals::Constants'=> undef,
3589             'CPANPLUS::Internals::Constants::Report'=> undef,
3590             'CPANPLUS::Internals::Source::Memory'=> undef,
3591             'CPANPLUS::Internals::Source::SQLite'=> undef,
3592             'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3593             'CPANPLUS::Shell::Default'=> '0.88',
3594             'Carp' => '1.11',
3595             'Carp::Heavy' => '1.11',
3596             'Compress::Raw::Bzip2' => '2.020',
3597             'Compress::Raw::Zlib' => '2.020',
3598             'Compress::Zlib' => '2.020',
3599             'Cwd' => '3.30',
3600             'DB' => '1.02',
3601             'DBM_Filter::compress' => '0.02',
3602             'DBM_Filter::encode' => '0.02',
3603             'DBM_Filter::int32' => '0.02',
3604             'DBM_Filter::null' => '0.02',
3605             'DBM_Filter::utf8' => '0.02',
3606             'DB_File' => '1.820',
3607             'Data::Dumper' => '2.124',
3608             'Devel::DProf' => '20080331.00',
3609             'Devel::PPPort' => '3.19',
3610             'Devel::Peek' => '1.04',
3611             'Digest' => '1.16',
3612             'Digest::MD5' => '2.39',
3613             'Digest::SHA' => '5.47',
3614             'Digest::base' => '1.16',
3615             'Digest::file' => '1.16',
3616             'DirHandle' => '1.03',
3617             'Dumpvalue' => '1.13',
3618             'DynaLoader' => '1.10',
3619             'Encode' => '2.35',
3620             'Encode::Alias' => '2.12',
3621             'Encode::CN::HZ' => '2.05',
3622             'Encode::Config' => '2.05',
3623             'Encode::GSM0338' => '2.01',
3624             'Encode::Guess' => '2.03',
3625             'Encode::JP::JIS7' => '2.04',
3626             'Encode::MIME::Header' => '2.11',
3627             'Encode::Unicode' => '2.06',
3628             'Errno' => '1.11',
3629             'Exporter' => '5.63',
3630             'Exporter::Heavy' => '5.63',
3631             'ExtUtils::CBuilder' => '0.2602',
3632             'ExtUtils::CBuilder::Base'=> '0.2602',
3633             'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3634             'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3635             'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3636             'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3637             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3638             'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3639             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3640             'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3641             'ExtUtils::Command' => '1.16',
3642             'ExtUtils::Command::MM' => '6.55_02',
3643             'ExtUtils::Constant' => '0.22',
3644             'ExtUtils::Constant::ProxySubs'=> '0.06',
3645             'ExtUtils::Constant::Utils'=> '0.02',
3646             'ExtUtils::Constant::XS'=> '0.03',
3647             'ExtUtils::Embed' => '1.28',
3648             'ExtUtils::Install' => '1.54',
3649             'ExtUtils::Installed' => '1.999_001',
3650             'ExtUtils::Liblist' => '6.55_02',
3651             'ExtUtils::Liblist::Kid'=> '6.5502',
3652             'ExtUtils::MM' => '6.55_02',
3653             'ExtUtils::MM_AIX' => '6.55_02',
3654             'ExtUtils::MM_Any' => '6.55_02',
3655             'ExtUtils::MM_BeOS' => '6.55_02',
3656             'ExtUtils::MM_Cygwin' => '6.55_02',
3657             'ExtUtils::MM_DOS' => '6.5502',
3658             'ExtUtils::MM_Darwin' => '6.55_02',
3659             'ExtUtils::MM_MacOS' => '6.5502',
3660             'ExtUtils::MM_NW5' => '6.55_02',
3661             'ExtUtils::MM_OS2' => '6.55_02',
3662             'ExtUtils::MM_QNX' => '6.55_02',
3663             'ExtUtils::MM_UWIN' => '6.5502',
3664             'ExtUtils::MM_Unix' => '6.55_02',
3665             'ExtUtils::MM_VMS' => '6.55_02',
3666             'ExtUtils::MM_VOS' => '6.55_02',
3667             'ExtUtils::MM_Win32' => '6.55_02',
3668             'ExtUtils::MM_Win95' => '6.55_02',
3669             'ExtUtils::MY' => '6.5502',
3670             'ExtUtils::MakeMaker' => '6.55_02',
3671             'ExtUtils::MakeMaker::Config'=> '6.55_02',
3672             'ExtUtils::Manifest' => '1.56',
3673             'ExtUtils::Mkbootstrap' => '6.55_02',
3674             'ExtUtils::Mksymlists' => '6.55_02',
3675             'ExtUtils::ParseXS' => '2.2002',
3676             'ExtUtils::testlib' => '6.5502',
3677             'Fatal' => '2.06_01',
3678             'File::Basename' => '2.77',
3679             'File::CheckTree' => '4.4',
3680             'File::Compare' => '1.1006',
3681             'File::Copy' => '2.14',
3682             'File::DosGlob' => '1.01',
3683             'File::Fetch' => '0.20',
3684             'File::Find' => '1.14',
3685             'File::GlobMapper' => '1.000',
3686             'File::Path' => '2.07_03',
3687             'File::Spec' => '3.30',
3688             'File::Spec::Cygwin' => '3.30',
3689             'File::Spec::Epoc' => '3.30',
3690             'File::Spec::Functions' => '3.30',
3691             'File::Spec::Mac' => '3.30',
3692             'File::Spec::OS2' => '3.30',
3693             'File::Spec::Unix' => '3.30',
3694             'File::Spec::VMS' => '3.30',
3695             'File::Spec::Win32' => '3.30',
3696             'File::Temp' => '0.22',
3697             'File::stat' => '1.01',
3698             'FileCache' => '1.08',
3699             'FileHandle' => '2.02',
3700             'Filter::Simple' => '0.84',
3701             'Filter::Util::Call' => '1.08',
3702             'FindBin' => '1.50',
3703             'GDBM_File' => '1.09',
3704             'Getopt::Long' => '2.38',
3705             'Getopt::Std' => '1.06',
3706             'Hash::Util::FieldHash' => '1.04',
3707             'I18N::Collate' => '1.01',
3708             'IO' => '1.25',
3709             'IO::Compress::Adapter::Bzip2'=> '2.020',
3710             'IO::Compress::Adapter::Deflate'=> '2.020',
3711             'IO::Compress::Adapter::Identity'=> '2.020',
3712             'IO::Compress::Base' => '2.020',
3713             'IO::Compress::Base::Common'=> '2.020',
3714             'IO::Compress::Bzip2' => '2.020',
3715             'IO::Compress::Deflate' => '2.020',
3716             'IO::Compress::Gzip' => '2.020',
3717             'IO::Compress::Gzip::Constants'=> '2.020',
3718             'IO::Compress::RawDeflate'=> '2.020',
3719             'IO::Compress::Zip' => '2.020',
3720             'IO::Compress::Zip::Constants'=> '2.020',
3721             'IO::Compress::Zlib::Constants'=> '2.020',
3722             'IO::Compress::Zlib::Extra'=> '2.020',
3723             'IO::Dir' => '1.07',
3724             'IO::Handle' => '1.28',
3725             'IO::Socket' => '1.31',
3726             'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3727             'IO::Uncompress::Adapter::Identity'=> '2.020',
3728             'IO::Uncompress::Adapter::Inflate'=> '2.020',
3729             'IO::Uncompress::AnyInflate'=> '2.020',
3730             'IO::Uncompress::AnyUncompress'=> '2.020',
3731             'IO::Uncompress::Base' => '2.020',
3732             'IO::Uncompress::Bunzip2'=> '2.020',
3733             'IO::Uncompress::Gunzip'=> '2.020',
3734             'IO::Uncompress::Inflate'=> '2.020',
3735             'IO::Uncompress::RawInflate'=> '2.020',
3736             'IO::Uncompress::Unzip' => '2.020',
3737             'IO::Zlib' => '1.09',
3738             'IPC::Cmd' => '0.46',
3739             'IPC::Msg' => '2.01',
3740             'IPC::Open2' => '1.03',
3741             'IPC::Open3' => '1.04',
3742             'IPC::Semaphore' => '2.01',
3743             'IPC::SharedMem' => '2.01',
3744             'IPC::SysV' => '2.01',
3745             'List::Util' => '1.21',
3746             'List::Util::PP' => '1.21',
3747             'List::Util::XS' => '1.21',
3748             'Locale::Maketext' => '1.13',
3749             'Locale::Maketext::Guts'=> '1.13',
3750             'Locale::Maketext::GutsLoader'=> '1.13',
3751             'Log::Message' => '0.02',
3752             'MIME::Base64' => '3.08',
3753             'MIME::QuotedPrint' => '3.08',
3754             'Math::BigFloat' => '1.60',
3755             'Math::BigInt' => '1.89',
3756             'Math::BigInt::FastCalc'=> '0.19',
3757             'Math::BigRat' => '0.22',
3758             'Math::Complex' => '1.56',
3759             'Math::Trig' => '1.2',
3760             'Memoize' => '1.01_03',
3761             'Module::Build' => '0.340201',
3762             'Module::Build::Base' => '0.340201',
3763             'Module::Build::Compat' => '0.340201',
3764             'Module::Build::Config' => '0.340201',
3765             'Module::Build::Cookbook'=> '0.340201',
3766             'Module::Build::Dumper' => '0.340201',
3767             'Module::Build::ModuleInfo'=> '0.340201',
3768             'Module::Build::Notes' => '0.340201',
3769             'Module::Build::PPMMaker'=> '0.340201',
3770             'Module::Build::Platform::Amiga'=> '0.340201',
3771             'Module::Build::Platform::Default'=> '0.340201',
3772             'Module::Build::Platform::EBCDIC'=> '0.340201',
3773             'Module::Build::Platform::MPEiX'=> '0.340201',
3774             'Module::Build::Platform::MacOS'=> '0.340201',
3775             'Module::Build::Platform::RiscOS'=> '0.340201',
3776             'Module::Build::Platform::Unix'=> '0.340201',
3777             'Module::Build::Platform::VMS'=> '0.340201',
3778             'Module::Build::Platform::VOS'=> '0.340201',
3779             'Module::Build::Platform::Windows'=> '0.340201',
3780             'Module::Build::Platform::aix'=> '0.340201',
3781             'Module::Build::Platform::cygwin'=> '0.340201',
3782             'Module::Build::Platform::darwin'=> '0.340201',
3783             'Module::Build::Platform::os2'=> '0.340201',
3784             'Module::Build::PodParser'=> '0.340201',
3785             'Module::Build::Version'=> '0.77',
3786             'Module::CoreList' => '2.18',
3787             'Module::Load' => '0.16',
3788             'Module::Load::Conditional'=> '0.30',
3789             'Module::Loaded' => '0.02',
3790             'Module::Pluggable' => '3.9',
3791             'Module::Pluggable::Object'=> '3.9',
3792             'NDBM_File' => '1.08',
3793             'NEXT' => '0.64',
3794             'Net::Ping' => '2.36',
3795             'O' => '1.01',
3796             'OS2::Process' => '1.03',
3797             'OS2::REXX' => '1.04',
3798             'Object::Accessor' => '0.34',
3799             'POSIX' => '1.17',
3800             'Package::Constants' => '0.02',
3801             'Parse::CPAN::Meta' => '1.39',
3802             'PerlIO' => '1.06',
3803             'PerlIO::encoding' => '0.11',
3804             'PerlIO::scalar' => '0.07',
3805             'PerlIO::via' => '0.07',
3806             'Pod::Checker' => '1.45',
3807             'Pod::Find' => '1.35',
3808             'Pod::Html' => '1.09',
3809             'Pod::InputObjects' => '1.31',
3810             'Pod::Man' => '2.22',
3811             'Pod::ParseLink' => '1.09',
3812             'Pod::ParseUtils' => '1.36',
3813             'Pod::Parser' => '1.37',
3814             'Pod::Perldoc' => '3.14_04',
3815             'Pod::PlainText' => '2.04',
3816             'Pod::Select' => '1.36',
3817             'Pod::Simple' => '3.07',
3818             'Pod::Simple::XHTML' => '3.04',
3819             'Pod::Text' => '3.13',
3820             'Pod::Text::Color' => '2.05',
3821             'Pod::Text::Overstrike' => '2.03',
3822             'Pod::Text::Termcap' => '2.05',
3823             'Pod::Usage' => '1.36',
3824             'Safe' => '2.18',
3825             'Scalar::Util' => '1.21',
3826             'Scalar::Util::PP' => '1.21',
3827             'SelectSaver' => '1.02',
3828             'SelfLoader' => '1.17',
3829             'Socket' => '1.82',
3830             'Storable' => '2.20',
3831             'Switch' => '2.14',
3832             'Symbol' => '1.07',
3833             'Sys::Syslog' => '0.27',
3834             'TAP::Base' => '3.17',
3835             'TAP::Formatter::Base' => '3.17',
3836             'TAP::Formatter::Color' => '3.17',
3837             'TAP::Formatter::Console'=> '3.17',
3838             'TAP::Formatter::Console::ParallelSession'=> '3.17',
3839             'TAP::Formatter::Console::Session'=> '3.17',
3840             'TAP::Formatter::File' => '3.17',
3841             'TAP::Formatter::File::Session'=> '3.17',
3842             'TAP::Formatter::Session'=> '3.17',
3843             'TAP::Harness' => '3.17',
3844             'TAP::Object' => '3.17',
3845             'TAP::Parser' => '3.17',
3846             'TAP::Parser::Aggregator'=> '3.17',
3847             'TAP::Parser::Grammar' => '3.17',
3848             'TAP::Parser::Iterator' => '3.17',
3849             'TAP::Parser::Iterator::Array'=> '3.17',
3850             'TAP::Parser::Iterator::Process'=> '3.17',
3851             'TAP::Parser::Iterator::Stream'=> '3.17',
3852             'TAP::Parser::IteratorFactory'=> '3.17',
3853             'TAP::Parser::Multiplexer'=> '3.17',
3854             'TAP::Parser::Result' => '3.17',
3855             'TAP::Parser::Result::Bailout'=> '3.17',
3856             'TAP::Parser::Result::Comment'=> '3.17',
3857             'TAP::Parser::Result::Plan'=> '3.17',
3858             'TAP::Parser::Result::Pragma'=> '3.17',
3859             'TAP::Parser::Result::Test'=> '3.17',
3860             'TAP::Parser::Result::Unknown'=> '3.17',
3861             'TAP::Parser::Result::Version'=> '3.17',
3862             'TAP::Parser::Result::YAML'=> '3.17',
3863             'TAP::Parser::ResultFactory'=> '3.17',
3864             'TAP::Parser::Scheduler'=> '3.17',
3865             'TAP::Parser::Scheduler::Job'=> '3.17',
3866             'TAP::Parser::Scheduler::Spinner'=> '3.17',
3867             'TAP::Parser::Source' => '3.17',
3868             'TAP::Parser::Source::Perl'=> '3.17',
3869             'TAP::Parser::Utils' => '3.17',
3870             'TAP::Parser::YAMLish::Reader'=> '3.17',
3871             'TAP::Parser::YAMLish::Writer'=> '3.17',
3872             'Term::ANSIColor' => '2.00',
3873             'Term::ReadLine' => '1.04',
3874             'Term::UI' => '0.20',
3875             'Test' => '1.25_02',
3876             'Test::Builder' => '0.92',
3877             'Test::Builder::Module' => '0.92',
3878             'Test::Builder::Tester' => '1.18',
3879             'Test::Builder::Tester::Color'=> '1.18',
3880             'Test::Harness' => '3.17',
3881             'Test::More' => '0.92',
3882             'Test::Simple' => '0.92',
3883             'Text::ParseWords' => '3.27',
3884             'Text::Tabs' => '2009.0305',
3885             'Text::Wrap' => '2009.0305',
3886             'Thread::Queue' => '2.11',
3887             'Thread::Semaphore' => '2.09',
3888             'Tie::Handle' => '4.2',
3889             'Tie::Hash' => '1.03',
3890             'Tie::RefHash' => '1.38',
3891             'Tie::Scalar' => '1.01',
3892             'Tie::StdHandle' => '4.2',
3893             'Time::HiRes' => '1.9719',
3894             'Time::Local' => '1.1901',
3895             'Time::Piece' => '1.15',
3896             'UNIVERSAL' => '1.05',
3897             'Unicode' => '5.1.0',
3898             'Unicode::Normalize' => '1.03',
3899             'Unicode::UCD' => '0.27',
3900             'VMS::Stdio' => '2.4',
3901             'Win32' => '0.39',
3902             'Win32API::File' => '0.1101',
3903             'XS::APItest' => '0.15',
3904             'XS::Typemap' => '0.03',
3905             'XSLoader' => '0.10',
3906             'attributes' => '0.09',
3907             'attrs' => '1.03',
3908             'autodie' => '2.06_01',
3909             'autodie::exception' => '2.06_01',
3910             'autodie::exception::system'=> '2.06_01',
3911             'autodie::hints' => '2.06_01',
3912             'base' => '2.14',
3913             'bigint' => '0.23',
3914             'bignum' => '0.23',
3915             'bigrat' => '0.23',
3916             'blib' => '1.04',
3917             'charnames' => '1.07',
3918             'constant' => '1.17',
3919             'encoding' => '2.6_01',
3920             'feature' => '1.13',
3921             'fields' => '2.14',
3922             'lib' => '0.62',
3923             'mro' => '1.01',
3924             'open' => '1.07',
3925             'ops' => '1.02',
3926             'overload' => '1.07',
3927             'overload::numbers' => undef,
3928             'overloading' => '0.01',
3929             'parent' => '0.221',
3930             're' => '0.09',
3931             'threads' => '1.72',
3932             'threads::shared' => '1.29',
3933             'version' => '0.77',
3934             },
3935             removed => {
3936             'CPAN::API::HOWTO' => 1,
3937             'CPAN::DeferedCode' => 1,
3938             'CPANPLUS::inc' => 1,
3939             'ExtUtils::MakeMaker::bytes'=> 1,
3940             'ExtUtils::MakeMaker::vmsish'=> 1,
3941             'Test::Harness::Assert' => 1,
3942             'Test::Harness::Iterator'=> 1,
3943             'Test::Harness::Point' => 1,
3944             'Test::Harness::Results'=> 1,
3945             'Test::Harness::Straps' => 1,
3946             'Test::Harness::Util' => 1,
3947             }
3948             },
3949             5.011 => {
3950             delta_from => 5.010001,
3951             changed => {
3952             'Archive::Tar' => '1.54',
3953             'Attribute::Handlers' => '0.87',
3954             'AutoLoader' => '5.70',
3955             'B::Deparse' => '0.91',
3956             'B::Lint' => '1.11_01',
3957             'B::Lint::Debug' => '0.01',
3958             'CGI' => '3.45',
3959             'CGI::Apache' => '1.01',
3960             'CGI::Carp' => '3.45',
3961             'CGI::Pretty' => '3.44',
3962             'CGI::Switch' => '1.01',
3963             'CGI::Util' => '3.45',
3964             'CPAN' => '1.94_51',
3965             'CPAN::Distribution' => '1.94',
3966             'CPAN::FTP' => '5.5002',
3967             'CPAN::Index' => '1.94',
3968             'CPAN::LWP::UserAgent' => '1.94',
3969             'CPANPLUS::Dist::Build' => '0.40',
3970             'CPANPLUS::Dist::Build::Constants'=> '0.40',
3971             'Carp' => '1.12',
3972             'Carp::Heavy' => '1.12',
3973             'Class::ISA' => '0.36',
3974             'Compress::Raw::Bzip2' => '2.021',
3975             'Compress::Raw::Zlib' => '2.021',
3976             'Compress::Zlib' => '2.021',
3977             'Cwd' => '3.3002',
3978             'Data::Dumper' => '2.125',
3979             'Encode' => '2.37',
3980             'Exporter' => '5.64',
3981             'Exporter::Heavy' => '5.64',
3982             'ExtUtils::ParseXS' => '2.200403',
3983             'File::Basename' => '2.78',
3984             'File::Copy' => '2.16',
3985             'File::stat' => '1.02',
3986             'IO' => '1.25_01',
3987             'IO::Compress::Adapter::Bzip2'=> '2.021',
3988             'IO::Compress::Adapter::Deflate'=> '2.021',
3989             'IO::Compress::Adapter::Identity'=> '2.021',
3990             'IO::Compress::Base' => '2.021',
3991             'IO::Compress::Base::Common'=> '2.021',
3992             'IO::Compress::Bzip2' => '2.021',
3993             'IO::Compress::Deflate' => '2.021',
3994             'IO::Compress::Gzip' => '2.021',
3995             'IO::Compress::Gzip::Constants'=> '2.021',
3996             'IO::Compress::RawDeflate'=> '2.021',
3997             'IO::Compress::Zip' => '2.021',
3998             'IO::Compress::Zip::Constants'=> '2.021',
3999             'IO::Compress::Zlib::Constants'=> '2.021',
4000             'IO::Compress::Zlib::Extra'=> '2.021',
4001             'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
4002             'IO::Uncompress::Adapter::Identity'=> '2.021',
4003             'IO::Uncompress::Adapter::Inflate'=> '2.021',
4004             'IO::Uncompress::AnyInflate'=> '2.021',
4005             'IO::Uncompress::AnyUncompress'=> '2.021',
4006             'IO::Uncompress::Base' => '2.021',
4007             'IO::Uncompress::Bunzip2'=> '2.021',
4008             'IO::Uncompress::Gunzip'=> '2.021',
4009             'IO::Uncompress::Inflate'=> '2.021',
4010             'IO::Uncompress::RawInflate'=> '2.021',
4011             'IO::Uncompress::Unzip' => '2.021',
4012             'IO::Zlib' => '1.10',
4013             'IPC::Cmd' => '0.50',
4014             'IPC::Open3' => '1.05',
4015             'Locale::Maketext::Simple'=> '0.21',
4016             'Log::Message::Simple' => '0.06',
4017             'Math::BigInt' => '1.89_01',
4018             'Math::BigRat' => '0.24',
4019             'Module::Build' => '0.35',
4020             'Module::Build::Base' => '0.35',
4021             'Module::Build::Compat' => '0.35',
4022             'Module::Build::Config' => '0.35',
4023             'Module::Build::Cookbook'=> '0.35',
4024             'Module::Build::Dumper' => '0.35',
4025             'Module::Build::ModuleInfo'=> '0.35',
4026             'Module::Build::Notes' => '0.35',
4027             'Module::Build::PPMMaker'=> '0.35',
4028             'Module::Build::Platform::Amiga'=> '0.35',
4029             'Module::Build::Platform::Default'=> '0.35',
4030             'Module::Build::Platform::EBCDIC'=> '0.35',
4031             'Module::Build::Platform::MPEiX'=> '0.35',
4032             'Module::Build::Platform::MacOS'=> '0.35',
4033             'Module::Build::Platform::RiscOS'=> '0.35',
4034             'Module::Build::Platform::Unix'=> '0.35',
4035             'Module::Build::Platform::VMS'=> '0.35',
4036             'Module::Build::Platform::VOS'=> '0.35',
4037             'Module::Build::Platform::Windows'=> '0.35',
4038             'Module::Build::Platform::aix'=> '0.35',
4039             'Module::Build::Platform::cygwin'=> '0.35',
4040             'Module::Build::Platform::darwin'=> '0.35',
4041             'Module::Build::Platform::os2'=> '0.35',
4042             'Module::Build::PodParser'=> '0.35',
4043             'Module::CoreList' => '2.19',
4044             'Module::Loaded' => '0.06',
4045             'Opcode' => '1.13',
4046             'PerlIO::via' => '0.08',
4047             'Pod::Perldoc' => '3.15_01',
4048             'Pod::Plainer' => '1.01',
4049             'Safe' => '2.19',
4050             'Socket' => '1.84',
4051             'Switch' => '2.14_01',
4052             'Term::ANSIColor' => '2.02',
4053             'Term::ReadLine' => '1.05',
4054             'Text::Balanced' => '2.02',
4055             'Text::Soundex' => '3.03_01',
4056             'Time::Local' => '1.1901_01',
4057             'Unicode::Collate' => '0.52_01',
4058             'attributes' => '0.12',
4059             'constant' => '1.19',
4060             'deprecate' => '0.01',
4061             'overload' => '1.08',
4062             'parent' => '0.223',
4063             're' => '0.10',
4064             'threads' => '1.74',
4065             'threads::shared' => '1.31',
4066             'warnings' => '1.07',
4067             },
4068             removed => {
4069             'attrs' => 1,
4070             }
4071             },
4072             5.011001 => {
4073             delta_from => 5.011,
4074             changed => {
4075             'B' => '1.23',
4076             'B::Concise' => '0.77',
4077             'B::Deparse' => '0.92',
4078             'CGI' => '3.48',
4079             'CGI::Pretty' => '3.46',
4080             'CGI::Util' => '3.48',
4081             'CPANPLUS' => '0.89_03',
4082             'CPANPLUS::Internals' => '0.89_03',
4083             'CPANPLUS::Shell::Default'=> '0.89_03',
4084             'Carp' => '1.13',
4085             'Carp::Heavy' => '1.13',
4086             'ExtUtils::CBuilder' => '0.260301',
4087             'ExtUtils::CBuilder::Base'=> '0.260301',
4088             'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
4089             'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
4090             'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
4091             'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
4092             'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
4093             'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
4094             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
4095             'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
4096             'ExtUtils::Install' => '1.55',
4097             'ExtUtils::Manifest' => '1.57',
4098             'ExtUtils::Packlist' => '1.44',
4099             'ExtUtils::ParseXS' => '2.21',
4100             'File::Glob' => '1.07',
4101             'File::Path' => '2.08',
4102             'IO' => '1.25_02',
4103             'Module::CoreList' => '2.21',
4104             'OS2::DLL' => '1.04',
4105             'OS2::Process' => '1.04',
4106             'Object::Accessor' => '0.36',
4107             'Opcode' => '1.15',
4108             'POSIX' => '1.18',
4109             'Parse::CPAN::Meta' => '1.40',
4110             'PerlIO::via' => '0.09',
4111             'Pod::Simple' => '3.08',
4112             'Socket' => '1.85',
4113             'Storable' => '2.22',
4114             'Switch' => '2.15',
4115             'Test::Builder' => '0.94',
4116             'Test::Builder::Module' => '0.94',
4117             'Test::More' => '0.94',
4118             'Test::Simple' => '0.94',
4119             'XS::APItest' => '0.16',
4120             'mro' => '1.02',
4121             'overload' => '1.09',
4122             'threads::shared' => '1.32',
4123             },
4124             removed => {
4125             }
4126             },
4127             5.011002 => {
4128             delta_from => 5.011001,
4129             changed => {
4130             'B::Concise' => '0.78',
4131             'B::Deparse' => '0.93',
4132             'CPANPLUS' => '0.89_09',
4133             'CPANPLUS::Dist::Build' => '0.44',
4134             'CPANPLUS::Dist::Build::Constants'=> '0.44',
4135             'CPANPLUS::Internals' => '0.89_09',
4136             'CPANPLUS::Shell::Default'=> '0.89_09',
4137             'Carp' => '1.14',
4138             'Carp::Heavy' => '1.14',
4139             'Compress::Zlib' => '2.022',
4140             'DBM_Filter' => '0.03',
4141             'Encode' => '2.38',
4142             'Encode::Byte' => '2.04',
4143             'Encode::CN' => '2.03',
4144             'Encode::JP' => '2.04',
4145             'Encode::KR' => '2.03',
4146             'Encode::TW' => '2.03',
4147             'Encode::Unicode' => '2.07',
4148             'Env' => '1.01',
4149             'Exporter' => '5.64_01',
4150             'Exporter::Heavy' => '5.64_01',
4151             'ExtUtils::CBuilder' => '0.27',
4152             'ExtUtils::CBuilder::Base'=> '0.27',
4153             'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
4154             'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
4155             'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
4156             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
4157             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
4158             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
4159             'ExtUtils::CBuilder::Platform::aix'=> '0.27',
4160             'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
4161             'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
4162             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
4163             'ExtUtils::CBuilder::Platform::os2'=> '0.27',
4164             'File::Fetch' => '0.22',
4165             'I18N::LangTags::Detect'=> '1.04',
4166             'I18N::Langinfo' => '0.03',
4167             'IO::Compress::Adapter::Bzip2'=> '2.022',
4168             'IO::Compress::Adapter::Deflate'=> '2.022',
4169             'IO::Compress::Adapter::Identity'=> '2.022',
4170             'IO::Compress::Base' => '2.022',
4171             'IO::Compress::Base::Common'=> '2.022',
4172             'IO::Compress::Bzip2' => '2.022',
4173             'IO::Compress::Deflate' => '2.022',
4174             'IO::Compress::Gzip' => '2.022',
4175             'IO::Compress::Gzip::Constants'=> '2.022',
4176             'IO::Compress::RawDeflate'=> '2.022',
4177             'IO::Compress::Zip' => '2.022',
4178             'IO::Compress::Zip::Constants'=> '2.022',
4179             'IO::Compress::Zlib::Constants'=> '2.022',
4180             'IO::Compress::Zlib::Extra'=> '2.022',
4181             'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4182             'IO::Uncompress::Adapter::Identity'=> '2.022',
4183             'IO::Uncompress::Adapter::Inflate'=> '2.022',
4184             'IO::Uncompress::AnyInflate'=> '2.022',
4185             'IO::Uncompress::AnyUncompress'=> '2.022',
4186             'IO::Uncompress::Base' => '2.022',
4187             'IO::Uncompress::Bunzip2'=> '2.022',
4188             'IO::Uncompress::Gunzip'=> '2.022',
4189             'IO::Uncompress::Inflate'=> '2.022',
4190             'IO::Uncompress::RawInflate'=> '2.022',
4191             'IO::Uncompress::Unzip' => '2.022',
4192             'IPC::Cmd' => '0.54',
4193             'List::Util' => '1.22',
4194             'List::Util::PP' => '1.22',
4195             'List::Util::XS' => '1.22',
4196             'Locale::Maketext' => '1.14',
4197             'Module::Build' => '0.35_09',
4198             'Module::Build::Base' => '0.35_09',
4199             'Module::Build::Compat' => '0.35_09',
4200             'Module::Build::Config' => '0.35_09',
4201             'Module::Build::Cookbook'=> '0.35_09',
4202             'Module::Build::Dumper' => '0.35_09',
4203             'Module::Build::ModuleInfo'=> '0.35_09',
4204             'Module::Build::Notes' => '0.35_09',
4205             'Module::Build::PPMMaker'=> '0.35_09',
4206             'Module::Build::Platform::Amiga'=> '0.35_09',
4207             'Module::Build::Platform::Default'=> '0.35_09',
4208             'Module::Build::Platform::EBCDIC'=> '0.35_09',
4209             'Module::Build::Platform::MPEiX'=> '0.35_09',
4210             'Module::Build::Platform::MacOS'=> '0.35_09',
4211             'Module::Build::Platform::RiscOS'=> '0.35_09',
4212             'Module::Build::Platform::Unix'=> '0.35_09',
4213             'Module::Build::Platform::VMS'=> '0.35_09',
4214             'Module::Build::Platform::VOS'=> '0.35_09',
4215             'Module::Build::Platform::Windows'=> '0.35_09',
4216             'Module::Build::Platform::aix'=> '0.35_09',
4217             'Module::Build::Platform::cygwin'=> '0.35_09',
4218             'Module::Build::Platform::darwin'=> '0.35_09',
4219             'Module::Build::Platform::os2'=> '0.35_09',
4220             'Module::Build::PodParser'=> '0.35_09',
4221             'Module::Build::YAML' => '1.40',
4222             'Module::CoreList' => '2.23',
4223             'Module::Load::Conditional'=> '0.34',
4224             'Pod::Simple' => '3.10',
4225             'Pod::Simple::XHTML' => '3.10',
4226             'Scalar::Util' => '1.22',
4227             'Scalar::Util::PP' => '1.22',
4228             'Switch' => '2.16',
4229             'XS::APItest' => '0.17',
4230             'XS::APItest::KeywordRPN'=> '0.003',
4231             'base' => '2.15',
4232             'diagnostics' => '1.18',
4233             'fields' => '2.15',
4234             'inc::latest' => '0.35_09',
4235             'legacy' => '1.00',
4236             'overload' => '1.10',
4237             },
4238             removed => {
4239             }
4240             },
4241             5.011003 => {
4242             delta_from => 5.011002,
4243             changed => {
4244             'App::Cpan' => '1.570001',
4245             'Archive::Extract' => '0.36',
4246             'CPAN' => '1.94_5301',
4247             'CPAN::FTP' => '5.5004',
4248             'CPAN::FirstTime' => '5.530001',
4249             'CPAN::Mirrors' => '1.770001',
4250             'CPANPLUS' => '0.90',
4251             'CPANPLUS::Internals' => '0.90',
4252             'CPANPLUS::Shell::Default'=> '0.90',
4253             'Cwd' => '3.31',
4254             'Encode' => '2.39',
4255             'ExtUtils::Command::MM' => '6.56',
4256             'ExtUtils::Liblist' => '6.56',
4257             'ExtUtils::Liblist::Kid'=> '6.56',
4258             'ExtUtils::MM' => '6.56',
4259             'ExtUtils::MM_AIX' => '6.56',
4260             'ExtUtils::MM_Any' => '6.56',
4261             'ExtUtils::MM_BeOS' => '6.56',
4262             'ExtUtils::MM_Cygwin' => '6.56',
4263             'ExtUtils::MM_DOS' => '6.56',
4264             'ExtUtils::MM_Darwin' => '6.56',
4265             'ExtUtils::MM_MacOS' => '6.56',
4266             'ExtUtils::MM_NW5' => '6.56',
4267             'ExtUtils::MM_OS2' => '6.56',
4268             'ExtUtils::MM_QNX' => '6.56',
4269             'ExtUtils::MM_UWIN' => '6.56',
4270             'ExtUtils::MM_Unix' => '6.56',
4271             'ExtUtils::MM_VMS' => '6.56',
4272             'ExtUtils::MM_VOS' => '6.56',
4273             'ExtUtils::MM_Win32' => '6.56',
4274             'ExtUtils::MM_Win95' => '6.56',
4275             'ExtUtils::MY' => '6.56',
4276             'ExtUtils::MakeMaker' => '6.56',
4277             'ExtUtils::MakeMaker::Config'=> '6.56',
4278             'ExtUtils::Mkbootstrap' => '6.56',
4279             'ExtUtils::Mksymlists' => '6.56',
4280             'ExtUtils::testlib' => '6.56',
4281             'File::Find' => '1.15',
4282             'File::Path' => '2.08_01',
4283             'File::Spec' => '3.31',
4284             'Module::Build' => '0.36',
4285             'Module::Build::Base' => '0.36',
4286             'Module::Build::Compat' => '0.36',
4287             'Module::Build::Config' => '0.36',
4288             'Module::Build::Cookbook'=> '0.36',
4289             'Module::Build::Dumper' => '0.36',
4290             'Module::Build::ModuleInfo'=> '0.36',
4291             'Module::Build::Notes' => '0.36',
4292             'Module::Build::PPMMaker'=> '0.36',
4293             'Module::Build::Platform::Amiga'=> '0.36',
4294             'Module::Build::Platform::Default'=> '0.36',
4295             'Module::Build::Platform::EBCDIC'=> '0.36',
4296             'Module::Build::Platform::MPEiX'=> '0.36',
4297             'Module::Build::Platform::MacOS'=> '0.36',
4298             'Module::Build::Platform::RiscOS'=> '0.36',
4299             'Module::Build::Platform::Unix'=> '0.36',
4300             'Module::Build::Platform::VMS'=> '0.36',
4301             'Module::Build::Platform::VOS'=> '0.36',
4302             'Module::Build::Platform::Windows'=> '0.36',
4303             'Module::Build::Platform::aix'=> '0.36',
4304             'Module::Build::Platform::cygwin'=> '0.36',
4305             'Module::Build::Platform::darwin'=> '0.36',
4306             'Module::Build::Platform::os2'=> '0.36',
4307             'Module::Build::PodParser'=> '0.36',
4308             'Module::CoreList' => '2.24',
4309             'POSIX' => '1.19',
4310             'Pod::Simple' => '3.13',
4311             'Pod::Simple::BlackBox' => '3.13',
4312             'Pod::Simple::Checker' => '3.13',
4313             'Pod::Simple::Debug' => '3.13',
4314             'Pod::Simple::DumpAsText'=> '3.13',
4315             'Pod::Simple::DumpAsXML'=> '3.13',
4316             'Pod::Simple::HTML' => '3.13',
4317             'Pod::Simple::HTMLBatch'=> '3.13',
4318             'Pod::Simple::LinkSection'=> '3.13',
4319             'Pod::Simple::Methody' => '3.13',
4320             'Pod::Simple::Progress' => '3.13',
4321             'Pod::Simple::PullParser'=> '3.13',
4322             'Pod::Simple::PullParserEndToken'=> '3.13',
4323             'Pod::Simple::PullParserStartToken'=> '3.13',
4324             'Pod::Simple::PullParserTextToken'=> '3.13',
4325             'Pod::Simple::PullParserToken'=> '3.13',
4326             'Pod::Simple::RTF' => '3.13',
4327             'Pod::Simple::Search' => '3.13',
4328             'Pod::Simple::SimpleTree'=> '3.13',
4329             'Pod::Simple::Text' => '3.13',
4330             'Pod::Simple::TextContent'=> '3.13',
4331             'Pod::Simple::TiedOutFH'=> '3.13',
4332             'Pod::Simple::Transcode'=> '3.13',
4333             'Pod::Simple::TranscodeDumb'=> '3.13',
4334             'Pod::Simple::TranscodeSmart'=> '3.13',
4335             'Pod::Simple::XHTML' => '3.13',
4336             'Pod::Simple::XMLOutStream'=> '3.13',
4337             'Safe' => '2.20',
4338             'Unicode' => '5.2.0',
4339             'constant' => '1.20',
4340             'diagnostics' => '1.19',
4341             'feature' => '1.14',
4342             'inc::latest' => '0.36',
4343             'threads' => '1.75',
4344             'warnings' => '1.08',
4345             },
4346             removed => {
4347             'legacy' => 1,
4348             }
4349             },
4350             5.011004 => {
4351             delta_from => 5.011003,
4352             changed => {
4353             'App::Cpan' => '1.5701',
4354             'Archive::Extract' => '0.38',
4355             'B::Deparse' => '0.94',
4356             'CPAN' => '1.94_54',
4357             'CPAN::FirstTime' => '5.53',
4358             'CPAN::Mirrors' => '1.77',
4359             'Carp' => '1.15',
4360             'Carp::Heavy' => '1.15',
4361             'Compress::Raw::Bzip2' => '2.024',
4362             'Compress::Raw::Zlib' => '2.024',
4363             'Compress::Zlib' => '2.024',
4364             'File::Copy' => '2.17',
4365             'File::Fetch' => '0.24',
4366             'GDBM_File' => '1.10',
4367             'IO::Compress::Adapter::Bzip2'=> '2.024',
4368             'IO::Compress::Adapter::Deflate'=> '2.024',
4369             'IO::Compress::Adapter::Identity'=> '2.024',
4370             'IO::Compress::Base' => '2.024',
4371             'IO::Compress::Base::Common'=> '2.024',
4372             'IO::Compress::Bzip2' => '2.024',
4373             'IO::Compress::Deflate' => '2.024',
4374             'IO::Compress::Gzip' => '2.024',
4375             'IO::Compress::Gzip::Constants'=> '2.024',
4376             'IO::Compress::RawDeflate'=> '2.024',
4377             'IO::Compress::Zip' => '2.024',
4378             'IO::Compress::Zip::Constants'=> '2.024',
4379             'IO::Compress::Zlib::Constants'=> '2.024',
4380             'IO::Compress::Zlib::Extra'=> '2.024',
4381             'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4382             'IO::Uncompress::Adapter::Identity'=> '2.024',
4383             'IO::Uncompress::Adapter::Inflate'=> '2.024',
4384             'IO::Uncompress::AnyInflate'=> '2.024',
4385             'IO::Uncompress::AnyUncompress'=> '2.024',
4386             'IO::Uncompress::Base' => '2.024',
4387             'IO::Uncompress::Bunzip2'=> '2.024',
4388             'IO::Uncompress::Gunzip'=> '2.024',
4389             'IO::Uncompress::Inflate'=> '2.024',
4390             'IO::Uncompress::RawInflate'=> '2.024',
4391             'IO::Uncompress::Unzip' => '2.024',
4392             'Module::Build' => '0.3603',
4393             'Module::Build::Base' => '0.3603',
4394             'Module::Build::Compat' => '0.3603',
4395             'Module::Build::Config' => '0.3603',
4396             'Module::Build::Cookbook'=> '0.3603',
4397             'Module::Build::Dumper' => '0.3603',
4398             'Module::Build::ModuleInfo'=> '0.3603',
4399             'Module::Build::Notes' => '0.3603',
4400             'Module::Build::PPMMaker'=> '0.3603',
4401             'Module::Build::Platform::Amiga'=> '0.3603',
4402             'Module::Build::Platform::Default'=> '0.3603',
4403             'Module::Build::Platform::EBCDIC'=> '0.3603',
4404             'Module::Build::Platform::MPEiX'=> '0.3603',
4405             'Module::Build::Platform::MacOS'=> '0.3603',
4406             'Module::Build::Platform::RiscOS'=> '0.3603',
4407             'Module::Build::Platform::Unix'=> '0.3603',
4408             'Module::Build::Platform::VMS'=> '0.3603',
4409             'Module::Build::Platform::VOS'=> '0.3603',
4410             'Module::Build::Platform::Windows'=> '0.3603',
4411             'Module::Build::Platform::aix'=> '0.3603',
4412             'Module::Build::Platform::cygwin'=> '0.3603',
4413             'Module::Build::Platform::darwin'=> '0.3603',
4414             'Module::Build::Platform::os2'=> '0.3603',
4415             'Module::Build::PodParser'=> '0.3603',
4416             'Module::CoreList' => '2.25',
4417             'PerlIO::encoding' => '0.12',
4418             'Safe' => '2.21',
4419             'UNIVERSAL' => '1.06',
4420             'feature' => '1.15',
4421             'inc::latest' => '0.3603',
4422             'less' => '0.03',
4423             're' => '0.11',
4424             'version' => '0.81',
4425             'warnings' => '1.09',
4426             },
4427             removed => {
4428             }
4429             },
4430             5.011005 => {
4431             delta_from => 5.011004,
4432             changed => {
4433             'B::Debug' => '1.12',
4434             'CPAN' => '1.94_56',
4435             'CPAN::Debug' => '5.5001',
4436             'CPAN::Distribution' => '1.9456',
4437             'CPAN::FirstTime' => '5.5301',
4438             'CPAN::HandleConfig' => '5.5001',
4439             'CPAN::Shell' => '5.5001',
4440             'CPAN::Tarzip' => '5.5011',
4441             'CPANPLUS::Dist::Build' => '0.46',
4442             'CPANPLUS::Dist::Build::Constants'=> '0.46',
4443             'Module::CoreList' => '2.26',
4444             'Pod::Man' => '2.23',
4445             'Pod::ParseLink' => '1.10',
4446             'Pod::Perldoc' => '3.15_02',
4447             'Pod::Plainer' => '1.02',
4448             'Pod::Text' => '3.14',
4449             'Pod::Text::Color' => '2.06',
4450             'Pod::Text::Overstrike' => '2.04',
4451             'Pod::Text::Termcap' => '2.06',
4452             'Safe' => '2.22',
4453             'Socket' => '1.86',
4454             'version' => '0.82',
4455             },
4456             removed => {
4457             }
4458             },
4459             5.012 => {
4460             delta_from => 5.011005,
4461             changed => {
4462             'B::Deparse' => '0.96',
4463             'CPAN::Distribution' => '1.9456_01',
4464             'Module::CoreList' => '2.29',
4465             'Safe' => '2.25',
4466             'Socket' => '1.87',
4467             'Tie::Scalar' => '1.02',
4468             'Time::Piece' => '1.15_01',
4469             'bytes' => '1.04',
4470             'feature' => '1.16',
4471             'utf8' => '1.08',
4472             },
4473             removed => {
4474             }
4475             },
4476             5.012001 => {
4477             delta_from => 5.012,
4478             changed => {
4479             'B::Deparse' => '0.97',
4480             'CGI' => '3.49',
4481             'CGI::Fast' => '1.08',
4482             'Carp' => '1.16',
4483             'Carp::Heavy' => '1.16',
4484             'File::Copy' => '2.18',
4485             'Module::CoreList' => '2.32',
4486             'Pod::Functions' => '1.04',
4487             'Pod::Simple' => '3.14',
4488             'Pod::Simple::BlackBox' => '3.14',
4489             'Pod::Simple::Checker' => '3.14',
4490             'Pod::Simple::Debug' => '3.14',
4491             'Pod::Simple::DumpAsText'=> '3.14',
4492             'Pod::Simple::DumpAsXML'=> '3.14',
4493             'Pod::Simple::HTML' => '3.14',
4494             'Pod::Simple::HTMLBatch'=> '3.14',
4495             'Pod::Simple::LinkSection'=> '3.14',
4496             'Pod::Simple::Methody' => '3.14',
4497             'Pod::Simple::Progress' => '3.14',
4498             'Pod::Simple::PullParser'=> '3.14',
4499             'Pod::Simple::PullParserEndToken'=> '3.14',
4500             'Pod::Simple::PullParserStartToken'=> '3.14',
4501             'Pod::Simple::PullParserTextToken'=> '3.14',
4502             'Pod::Simple::PullParserToken'=> '3.14',
4503             'Pod::Simple::RTF' => '3.14',
4504             'Pod::Simple::Search' => '3.14',
4505             'Pod::Simple::SimpleTree'=> '3.14',
4506             'Pod::Simple::Text' => '3.14',
4507             'Pod::Simple::TextContent'=> '3.14',
4508             'Pod::Simple::TiedOutFH'=> '3.14',
4509             'Pod::Simple::Transcode'=> '3.14',
4510             'Pod::Simple::TranscodeDumb'=> '3.14',
4511             'Pod::Simple::TranscodeSmart'=> '3.14',
4512             'Pod::Simple::XHTML' => '3.14',
4513             'Pod::Simple::XMLOutStream'=> '3.14',
4514             'Safe' => '2.27',
4515             },
4516             removed => {
4517             }
4518             },
4519             5.012002 => {
4520             delta_from => 5.012001,
4521             changed => {
4522             'Carp' => '1.17',
4523             'Carp::Heavy' => '1.17',
4524             'File::Spec' => '3.31_01',
4525             'Module::CoreList' => '2.38',
4526             'Module::Load::Conditional'=> '0.38',
4527             'PerlIO::scalar' => '0.08',
4528             },
4529             removed => {
4530             }
4531             },
4532             5.012003 => {
4533             delta_from => 5.012002,
4534             changed => {
4535             'B::Deparse' => '0.9701',
4536             'Module::Build::Platform::cygwin'=> '0.360301',
4537             'Module::CoreList' => '2.43',
4538             'Socket' => '1.87_01',
4539             },
4540             removed => {
4541             }
4542             },
4543             5.012004 => {
4544             delta_from => 5.012003,
4545             changed => {
4546             'Module::CoreList' => '2.50',
4547             },
4548             removed => {
4549             }
4550             },
4551             5.012005 => {
4552             delta_from => 5.012004,
4553             changed => {
4554             'B::Concise' => '0.78_01',
4555             'Encode' => '2.39_01',
4556             'File::Glob' => '1.07_01',
4557             'Module::CoreList' => '2.50_02',
4558             'Unicode::UCD' => '0.29',
4559             'charnames' => '1.07_01',
4560             },
4561             removed => {
4562             }
4563             },
4564             5.013 => {
4565             delta_from => 5.012,
4566             changed => {
4567             'CGI' => '3.49',
4568             'CGI::Fast' => '1.08',
4569             'Data::Dumper' => '2.126',
4570             'ExtUtils::MM_Unix' => '6.5601',
4571             'ExtUtils::MakeMaker' => '6.5601',
4572             'File::Copy' => '2.18',
4573             'IPC::Open3' => '1.06',
4574             'MIME::Base64' => '3.09',
4575             'MIME::QuotedPrint' => '3.09',
4576             'Module::CoreList' => '2.31',
4577             'Pod::Functions' => '1.04',
4578             'XS::APItest' => '0.18',
4579             'XS::APItest::KeywordRPN'=> '0.004',
4580             'feature' => '1.17',
4581             'threads' => '1.77_01',
4582             'threads::shared' => '1.33',
4583             },
4584             removed => {
4585             }
4586             },
4587             5.013001 => {
4588             delta_from => 5.012001,
4589             changed => {
4590             'Data::Dumper' => '2.126',
4591             'Dumpvalue' => '1.14',
4592             'Errno' => '1.12',
4593             'ExtUtils::MM_Unix' => '6.5601',
4594             'ExtUtils::MakeMaker' => '6.5601',
4595             'ExtUtils::ParseXS' => '2.2205',
4596             'File::Find' => '1.16',
4597             'IPC::Cmd' => '0.58',
4598             'IPC::Open3' => '1.06',
4599             'List::Util' => '1.23',
4600             'List::Util::PP' => '1.23',
4601             'List::Util::XS' => '1.23',
4602             'Locale::Codes' => '3.12',
4603             'Locale::Codes::Country'=> '3.12',
4604             'Locale::Codes::Currency'=> '3.12',
4605             'Locale::Codes::Language'=> '3.12',
4606             'Locale::Codes::Script' => '3.12',
4607             'Locale::Constants' => '3.12',
4608             'Locale::Country' => '3.12',
4609             'Locale::Currency' => '3.12',
4610             'Locale::Language' => '3.12',
4611             'Locale::Script' => '3.12',
4612             'MIME::Base64' => '3.09',
4613             'MIME::QuotedPrint' => '3.09',
4614             'Module::Build::Platform::cygwin'=> '0.360301',
4615             'Module::CoreList' => '2.34',
4616             'Module::Load::Conditional'=> '0.38',
4617             'PerlIO::scalar' => '0.08',
4618             'Scalar::Util' => '1.23',
4619             'Scalar::Util::PP' => '1.23',
4620             'Socket' => '1.88',
4621             'Term::ReadLine' => '1.06',
4622             'Unicode::UCD' => '0.28',
4623             'XS::APItest' => '0.19',
4624             'XS::APItest::KeywordRPN'=> '0.004',
4625             'charnames' => '1.08',
4626             'feature' => '1.17',
4627             'threads' => '1.77_01',
4628             'threads::shared' => '1.33',
4629             },
4630             removed => {
4631             'Class::ISA' => 1,
4632             'Pod::Plainer' => 1,
4633             'Switch' => 1,
4634             }
4635             },
4636             5.013002 => {
4637             delta_from => 5.013001,
4638             changed => {
4639             'B::Concise' => '0.79',
4640             'B::Deparse' => '0.98',
4641             'CPAN' => '1.94_57',
4642             'CPAN::Distribution' => '1.9600',
4643             'Exporter' => '5.64_02',
4644             'Exporter::Heavy' => '5.64_02',
4645             'File::Copy' => '2.19',
4646             'Hash::Util' => '0.08',
4647             'IO::Socket' => '1.32',
4648             'Locale::Codes' => '3.13',
4649             'Locale::Codes::Country'=> '3.13',
4650             'Locale::Codes::Currency'=> '3.13',
4651             'Locale::Codes::Language'=> '3.13',
4652             'Locale::Codes::Script' => '3.13',
4653             'Locale::Constants' => '3.13',
4654             'Locale::Country' => '3.13',
4655             'Locale::Currency' => '3.13',
4656             'Locale::Language' => '3.13',
4657             'Locale::Script' => '3.13',
4658             'Search::Dict' => '1.03',
4659             'Socket' => '1.89',
4660             'Thread::Semaphore' => '2.11',
4661             'UNIVERSAL' => '1.07',
4662             'VMS::DCLsym' => '1.04',
4663             'mro' => '1.03',
4664             'threads' => '1.77_02',
4665             'threads::shared' => '1.33_01',
4666             },
4667             removed => {
4668             }
4669             },
4670             5.013003 => {
4671             delta_from => 5.013002,
4672             changed => {
4673             'App::Prove' => '3.21',
4674             'App::Prove::State' => '3.21',
4675             'App::Prove::State::Result'=> '3.21',
4676             'App::Prove::State::Result::Test'=> '3.21',
4677             'Archive::Extract' => '0.42',
4678             'Archive::Tar' => '1.64',
4679             'Archive::Tar::Constant'=> '1.64',
4680             'Archive::Tar::File' => '1.64',
4681             'Attribute::Handlers' => '0.88',
4682             'CPANPLUS' => '0.9007',
4683             'CPANPLUS::Internals' => '0.9007',
4684             'CPANPLUS::Shell::Default'=> '0.9007',
4685             'Compress::Raw::Bzip2' => '2.027',
4686             'Compress::Raw::Zlib' => '2.027_01',
4687             'Compress::Zlib' => '2.027',
4688             'DB' => '1.03',
4689             'Digest::MD5' => '2.40',
4690             'Digest::SHA' => '5.48',
4691             'Exporter' => '5.64_03',
4692             'Exporter::Heavy' => '5.64_03',
4693             'ExtUtils::CBuilder' => '0.2703',
4694             'ExtUtils::CBuilder::Base'=> '0.2703_01',
4695             'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4696             'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4697             'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4698             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4699             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4700             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4701             'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4702             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4703             'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4704             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4705             'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4706             'ExtUtils::Manifest' => '1.58',
4707             'ExtUtils::ParseXS' => '2.2206',
4708             'Fatal' => '2.10',
4709             'File::Basename' => '2.79',
4710             'File::Copy' => '2.20',
4711             'File::DosGlob' => '1.02',
4712             'File::Find' => '1.17',
4713             'File::Glob' => '1.08',
4714             'File::stat' => '1.03',
4715             'I18N::LangTags' => '0.35_01',
4716             'I18N::LangTags::List' => '0.35_01',
4717             'IO::Compress::Adapter::Bzip2'=> '2.027',
4718             'IO::Compress::Adapter::Deflate'=> '2.027',
4719             'IO::Compress::Adapter::Identity'=> '2.027',
4720             'IO::Compress::Base' => '2.027',
4721             'IO::Compress::Base::Common'=> '2.027',
4722             'IO::Compress::Bzip2' => '2.027',
4723             'IO::Compress::Deflate' => '2.027',
4724             'IO::Compress::Gzip' => '2.027',
4725             'IO::Compress::Gzip::Constants'=> '2.027',
4726             'IO::Compress::RawDeflate'=> '2.027',
4727             'IO::Compress::Zip' => '2.027',
4728             'IO::Compress::Zip::Constants'=> '2.027',
4729             'IO::Compress::Zlib::Constants'=> '2.027',
4730             'IO::Compress::Zlib::Extra'=> '2.027',
4731             'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4732             'IO::Uncompress::Adapter::Identity'=> '2.027',
4733             'IO::Uncompress::Adapter::Inflate'=> '2.027',
4734             'IO::Uncompress::AnyInflate'=> '2.027',
4735             'IO::Uncompress::AnyUncompress'=> '2.027',
4736             'IO::Uncompress::Base' => '2.027',
4737             'IO::Uncompress::Bunzip2'=> '2.027',
4738             'IO::Uncompress::Gunzip'=> '2.027',
4739             'IO::Uncompress::Inflate'=> '2.027',
4740             'IO::Uncompress::RawInflate'=> '2.027',
4741             'IO::Uncompress::Unzip' => '2.027',
4742             'IPC::Cmd' => '0.60',
4743             'IPC::Msg' => '2.03',
4744             'IPC::Semaphore' => '2.03',
4745             'IPC::SharedMem' => '2.03',
4746             'IPC::SysV' => '2.03',
4747             'Locale::Maketext' => '1.15',
4748             'Locale::Maketext::Guts'=> undef,
4749             'Locale::Maketext::GutsLoader'=> undef,
4750             'Module::Build' => '0.3607',
4751             'Module::Build::Base' => '0.3607',
4752             'Module::Build::Compat' => '0.3607',
4753             'Module::Build::Config' => '0.3607',
4754             'Module::Build::Cookbook'=> '0.3607',
4755             'Module::Build::Dumper' => '0.3607',
4756             'Module::Build::ModuleInfo'=> '0.3607',
4757             'Module::Build::Notes' => '0.3607',
4758             'Module::Build::PPMMaker'=> '0.3607',
4759             'Module::Build::Platform::Amiga'=> '0.3607',
4760             'Module::Build::Platform::Default'=> '0.3607',
4761             'Module::Build::Platform::EBCDIC'=> '0.3607',
4762             'Module::Build::Platform::MPEiX'=> '0.3607',
4763             'Module::Build::Platform::MacOS'=> '0.3607',
4764             'Module::Build::Platform::RiscOS'=> '0.3607',
4765             'Module::Build::Platform::Unix'=> '0.3607',
4766             'Module::Build::Platform::VMS'=> '0.3607',
4767             'Module::Build::Platform::VOS'=> '0.3607',
4768             'Module::Build::Platform::Windows'=> '0.3607',
4769             'Module::Build::Platform::aix'=> '0.3607',
4770             'Module::Build::Platform::cygwin'=> '0.3607',
4771             'Module::Build::Platform::darwin'=> '0.3607',
4772             'Module::Build::Platform::os2'=> '0.3607',
4773             'Module::Build::PodParser'=> '0.3607',
4774             'Module::CoreList' => '2.36',
4775             'Module::Load' => '0.18',
4776             'TAP::Base' => '3.21',
4777             'TAP::Formatter::Base' => '3.21',
4778             'TAP::Formatter::Color' => '3.21',
4779             'TAP::Formatter::Console'=> '3.21',
4780             'TAP::Formatter::Console::ParallelSession'=> '3.21',
4781             'TAP::Formatter::Console::Session'=> '3.21',
4782             'TAP::Formatter::File' => '3.21',
4783             'TAP::Formatter::File::Session'=> '3.21',
4784             'TAP::Formatter::Session'=> '3.21',
4785             'TAP::Harness' => '3.21',
4786             'TAP::Object' => '3.21',
4787             'TAP::Parser' => '3.21',
4788             'TAP::Parser::Aggregator'=> '3.21',
4789             'TAP::Parser::Grammar' => '3.21',
4790             'TAP::Parser::Iterator' => '3.21',
4791             'TAP::Parser::Iterator::Array'=> '3.21',
4792             'TAP::Parser::Iterator::Process'=> '3.21',
4793             'TAP::Parser::Iterator::Stream'=> '3.21',
4794             'TAP::Parser::IteratorFactory'=> '3.21',
4795             'TAP::Parser::Multiplexer'=> '3.21',
4796             'TAP::Parser::Result' => '3.21',
4797             'TAP::Parser::Result::Bailout'=> '3.21',
4798             'TAP::Parser::Result::Comment'=> '3.21',
4799             'TAP::Parser::Result::Plan'=> '3.21',
4800             'TAP::Parser::Result::Pragma'=> '3.21',
4801             'TAP::Parser::Result::Test'=> '3.21',
4802             'TAP::Parser::Result::Unknown'=> '3.21',
4803             'TAP::Parser::Result::Version'=> '3.21',
4804             'TAP::Parser::Result::YAML'=> '3.21',
4805             'TAP::Parser::ResultFactory'=> '3.21',
4806             'TAP::Parser::Scheduler'=> '3.21',
4807             'TAP::Parser::Scheduler::Job'=> '3.21',
4808             'TAP::Parser::Scheduler::Spinner'=> '3.21',
4809             'TAP::Parser::Source' => '3.21',
4810             'TAP::Parser::SourceHandler'=> '3.21',
4811             'TAP::Parser::SourceHandler::Executable'=> '3.21',
4812             'TAP::Parser::SourceHandler::File'=> '3.21',
4813             'TAP::Parser::SourceHandler::Handle'=> '3.21',
4814             'TAP::Parser::SourceHandler::Perl'=> '3.21',
4815             'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4816             'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4817             'TAP::Parser::Utils' => '3.21',
4818             'TAP::Parser::YAMLish::Reader'=> '3.21',
4819             'TAP::Parser::YAMLish::Writer'=> '3.21',
4820             'Term::ANSIColor' => '3.00',
4821             'Term::ReadLine' => '1.07',
4822             'Test::Harness' => '3.21',
4823             'Tie::Array' => '1.04',
4824             'Time::HiRes' => '1.9721',
4825             'Time::Piece' => '1.20_01',
4826             'Unicode::Collate' => '0.53',
4827             'Unicode::Normalize' => '1.06',
4828             'Unicode::UCD' => '0.29',
4829             'autodie' => '2.10',
4830             'autodie::exception' => '2.10',
4831             'autodie::exception::system'=> '2.10',
4832             'autodie::hints' => '2.10',
4833             'blib' => '1.05',
4834             'charnames' => '1.11',
4835             'diagnostics' => '1.20',
4836             'inc::latest' => '0.3607',
4837             'lib' => '0.63',
4838             're' => '0.12',
4839             'threads' => '1.77_03',
4840             'threads::shared' => '1.33_02',
4841             'vars' => '1.02',
4842             'warnings' => '1.10',
4843             },
4844             removed => {
4845             'TAP::Parser::Source::Perl'=> 1,
4846             }
4847             },
4848             5.013004 => {
4849             delta_from => 5.013003,
4850             changed => {
4851             'App::Prove' => '3.22',
4852             'App::Prove::State' => '3.22',
4853             'App::Prove::State::Result'=> '3.22',
4854             'App::Prove::State::Result::Test'=> '3.22',
4855             'Archive::Tar' => '1.68',
4856             'Archive::Tar::Constant'=> '1.68',
4857             'Archive::Tar::File' => '1.68',
4858             'B::Lint' => '1.12',
4859             'B::Lint::Debug' => '1.12',
4860             'Carp' => '1.18',
4861             'Carp::Heavy' => '1.18',
4862             'Compress::Raw::Bzip2' => '2.030',
4863             'Compress::Raw::Zlib' => '2.030',
4864             'Compress::Zlib' => '2.030',
4865             'ExtUtils::ParseXS' => '2.2207',
4866             'File::Spec' => '3.31_01',
4867             'I18N::Langinfo' => '0.04',
4868             'IO::Compress::Adapter::Bzip2'=> '2.030',
4869             'IO::Compress::Adapter::Deflate'=> '2.030',
4870             'IO::Compress::Adapter::Identity'=> '2.030',
4871             'IO::Compress::Base' => '2.030',
4872             'IO::Compress::Base::Common'=> '2.030',
4873             'IO::Compress::Bzip2' => '2.030',
4874             'IO::Compress::Deflate' => '2.030',
4875             'IO::Compress::Gzip' => '2.030',
4876             'IO::Compress::Gzip::Constants'=> '2.030',
4877             'IO::Compress::RawDeflate'=> '2.030',
4878             'IO::Compress::Zip' => '2.030',
4879             'IO::Compress::Zip::Constants'=> '2.030',
4880             'IO::Compress::Zlib::Constants'=> '2.030',
4881             'IO::Compress::Zlib::Extra'=> '2.030',
4882             'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4883             'IO::Uncompress::Adapter::Identity'=> '2.030',
4884             'IO::Uncompress::Adapter::Inflate'=> '2.030',
4885             'IO::Uncompress::AnyInflate'=> '2.030',
4886             'IO::Uncompress::AnyUncompress'=> '2.030',
4887             'IO::Uncompress::Base' => '2.030',
4888             'IO::Uncompress::Bunzip2'=> '2.030',
4889             'IO::Uncompress::Gunzip'=> '2.030',
4890             'IO::Uncompress::Inflate'=> '2.030',
4891             'IO::Uncompress::RawInflate'=> '2.030',
4892             'IO::Uncompress::Unzip' => '2.030',
4893             'Module::CoreList' => '2.37',
4894             'TAP::Base' => '3.22',
4895             'TAP::Formatter::Base' => '3.22',
4896             'TAP::Formatter::Color' => '3.22',
4897             'TAP::Formatter::Console'=> '3.22',
4898             'TAP::Formatter::Console::ParallelSession'=> '3.22',
4899             'TAP::Formatter::Console::Session'=> '3.22',
4900             'TAP::Formatter::File' => '3.22',
4901             'TAP::Formatter::File::Session'=> '3.22',
4902             'TAP::Formatter::Session'=> '3.22',
4903             'TAP::Harness' => '3.22',
4904             'TAP::Object' => '3.22',
4905             'TAP::Parser' => '3.22',
4906             'TAP::Parser::Aggregator'=> '3.22',
4907             'TAP::Parser::Grammar' => '3.22',
4908             'TAP::Parser::Iterator' => '3.22',
4909             'TAP::Parser::Iterator::Array'=> '3.22',
4910             'TAP::Parser::Iterator::Process'=> '3.22',
4911             'TAP::Parser::Iterator::Stream'=> '3.22',
4912             'TAP::Parser::IteratorFactory'=> '3.22',
4913             'TAP::Parser::Multiplexer'=> '3.22',
4914             'TAP::Parser::Result' => '3.22',
4915             'TAP::Parser::Result::Bailout'=> '3.22',
4916             'TAP::Parser::Result::Comment'=> '3.22',
4917             'TAP::Parser::Result::Plan'=> '3.22',
4918             'TAP::Parser::Result::Pragma'=> '3.22',
4919             'TAP::Parser::Result::Test'=> '3.22',
4920             'TAP::Parser::Result::Unknown'=> '3.22',
4921             'TAP::Parser::Result::Version'=> '3.22',
4922             'TAP::Parser::Result::YAML'=> '3.22',
4923             'TAP::Parser::ResultFactory'=> '3.22',
4924             'TAP::Parser::Scheduler'=> '3.22',
4925             'TAP::Parser::Scheduler::Job'=> '3.22',
4926             'TAP::Parser::Scheduler::Spinner'=> '3.22',
4927             'TAP::Parser::Source' => '3.22',
4928             'TAP::Parser::SourceHandler'=> '3.22',
4929             'TAP::Parser::SourceHandler::Executable'=> '3.22',
4930             'TAP::Parser::SourceHandler::File'=> '3.22',
4931             'TAP::Parser::SourceHandler::Handle'=> '3.22',
4932             'TAP::Parser::SourceHandler::Perl'=> '3.22',
4933             'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4934             'TAP::Parser::Utils' => '3.22',
4935             'TAP::Parser::YAMLish::Reader'=> '3.22',
4936             'TAP::Parser::YAMLish::Writer'=> '3.22',
4937             'Test::Builder' => '0.96',
4938             'Test::Builder::Module' => '0.96',
4939             'Test::Builder::Tester' => '1.20',
4940             'Test::Builder::Tester::Color'=> '1.20',
4941             'Test::Harness' => '3.22',
4942             'Test::More' => '0.96',
4943             'Test::Simple' => '0.96',
4944             'Unicode::Collate' => '0.56',
4945             'Unicode::Collate::Locale'=> '0.56',
4946             'XS::APItest' => '0.20',
4947             'charnames' => '1.15',
4948             'feature' => '1.18',
4949             },
4950             removed => {
4951             'TAP::Parser::SourceHandler::pgTAP'=> 1,
4952             }
4953             },
4954             5.013005 => {
4955             delta_from => 5.013004,
4956             changed => {
4957             'B::Debug' => '1.16',
4958             'CPANPLUS::Dist::Build' => '0.48',
4959             'CPANPLUS::Dist::Build::Constants'=> '0.48',
4960             'Data::Dumper' => '2.128',
4961             'Encode' => '2.40',
4962             'Encode::Guess' => '2.04',
4963             'Encode::MIME::Header' => '2.12',
4964             'Encode::Unicode::UTF7' => '2.05',
4965             'Errno' => '1.13',
4966             'ExtUtils::Command::MM' => '6.57_05',
4967             'ExtUtils::Liblist' => '6.57_05',
4968             'ExtUtils::Liblist::Kid'=> '6.5705',
4969             'ExtUtils::MM' => '6.57_05',
4970             'ExtUtils::MM_AIX' => '6.57_05',
4971             'ExtUtils::MM_Any' => '6.57_05',
4972             'ExtUtils::MM_BeOS' => '6.57_05',
4973             'ExtUtils::MM_Cygwin' => '6.57_05',
4974             'ExtUtils::MM_DOS' => '6.5705',
4975             'ExtUtils::MM_Darwin' => '6.57_05',
4976             'ExtUtils::MM_MacOS' => '6.5705',
4977             'ExtUtils::MM_NW5' => '6.57_05',
4978             'ExtUtils::MM_OS2' => '6.57_05',
4979             'ExtUtils::MM_QNX' => '6.57_05',
4980             'ExtUtils::MM_UWIN' => '6.5705',
4981             'ExtUtils::MM_Unix' => '6.57_05',
4982             'ExtUtils::MM_VMS' => '6.57_05',
4983             'ExtUtils::MM_VOS' => '6.57_05',
4984             'ExtUtils::MM_Win32' => '6.57_05',
4985             'ExtUtils::MM_Win95' => '6.57_05',
4986             'ExtUtils::MY' => '6.5705',
4987             'ExtUtils::MakeMaker' => '6.57_05',
4988             'ExtUtils::MakeMaker::Config'=> '6.57_05',
4989             'ExtUtils::MakeMaker::YAML'=> '1.44',
4990             'ExtUtils::Mkbootstrap' => '6.57_05',
4991             'ExtUtils::Mksymlists' => '6.57_05',
4992             'ExtUtils::testlib' => '6.5705',
4993             'Filter::Simple' => '0.85',
4994             'Hash::Util' => '0.09',
4995             'Math::BigFloat' => '1.62',
4996             'Math::BigInt' => '1.95',
4997             'Math::BigInt::Calc' => '0.54',
4998             'Math::BigInt::CalcEmu' => '0.06',
4999             'Math::BigInt::FastCalc'=> '0.22',
5000             'Math::BigRat' => '0.26',
5001             'Module::CoreList' => '2.39',
5002             'POSIX' => '1.20',
5003             'PerlIO::scalar' => '0.09',
5004             'Safe' => '2.28',
5005             'Test::Builder' => '0.97_01',
5006             'Test::Builder::Module' => '0.97_01',
5007             'Test::Builder::Tester' => '1.21_01',
5008             'Test::Builder::Tester::Color'=> '1.21_01',
5009             'Test::More' => '0.97_01',
5010             'Test::Simple' => '0.97_01',
5011             'Tie::Hash' => '1.04',
5012             'Unicode::Collate' => '0.59',
5013             'Unicode::Collate::Locale'=> '0.59',
5014             'XS::APItest' => '0.21',
5015             'XS::APItest::KeywordRPN'=> '0.005',
5016             'XSLoader' => '0.11',
5017             'bigint' => '0.25',
5018             'bignum' => '0.25',
5019             'bigrat' => '0.25',
5020             'blib' => '1.06',
5021             'open' => '1.08',
5022             'threads::shared' => '1.33_03',
5023             'warnings' => '1.11',
5024             'warnings::register' => '1.02',
5025             },
5026             removed => {
5027             }
5028             },
5029             5.013006 => {
5030             delta_from => 5.013005,
5031             changed => {
5032             'Archive::Extract' => '0.44',
5033             'B' => '1.24',
5034             'B::Deparse' => '0.99',
5035             'CPAN' => '1.94_61',
5036             'CPAN::FTP' => '5.5005',
5037             'CPAN::Queue' => '5.5001',
5038             'CPAN::Version' => '5.5001',
5039             'Carp' => '1.19',
5040             'Carp::Heavy' => '1.19',
5041             'Compress::Raw::Bzip2' => '2.031',
5042             'Cwd' => '3.34',
5043             'Data::Dumper' => '2.129',
5044             'Devel::Peek' => '1.05',
5045             'Digest::MD5' => '2.51',
5046             'ExtUtils::Constant::Base'=> '0.05',
5047             'ExtUtils::Constant::ProxySubs'=> '0.07',
5048             'ExtUtils::Embed' => '1.29',
5049             'ExtUtils::XSSymSet' => '1.2',
5050             'Fcntl' => '1.09',
5051             'File::DosGlob' => '1.03',
5052             'File::Find' => '1.18',
5053             'File::Glob' => '1.09',
5054             'File::Spec' => '3.33',
5055             'File::Spec::Cygwin' => '3.33',
5056             'File::Spec::Epoc' => '3.33',
5057             'File::Spec::Functions' => '3.33',
5058             'File::Spec::Mac' => '3.33',
5059             'File::Spec::OS2' => '3.33',
5060             'File::Spec::Unix' => '3.33',
5061             'File::Spec::VMS' => '3.33',
5062             'File::Spec::Win32' => '3.33',
5063             'GDBM_File' => '1.11',
5064             'Hash::Util::FieldHash' => '1.05',
5065             'I18N::Langinfo' => '0.06',
5066             'IPC::Cmd' => '0.64',
5067             'IPC::Open3' => '1.07',
5068             'Locale::Codes' => '3.14',
5069             'Locale::Codes::Country'=> '3.14',
5070             'Locale::Codes::Currency'=> '3.14',
5071             'Locale::Codes::Language'=> '3.14',
5072             'Locale::Codes::Script' => '3.14',
5073             'Locale::Constants' => '3.14',
5074             'Locale::Country' => '3.14',
5075             'Locale::Currency' => '3.14',
5076             'Locale::Language' => '3.14',
5077             'Locale::Maketext' => '1.16',
5078             'Locale::Script' => '3.14',
5079             'Math::BigFloat' => '1.63',
5080             'Math::BigInt' => '1.97',
5081             'Math::BigInt::Calc' => '0.55',
5082             'Math::BigInt::CalcEmu' => '0.07',
5083             'Module::CoreList' => '2.40',
5084             'NDBM_File' => '1.09',
5085             'NEXT' => '0.65',
5086             'ODBM_File' => '1.08',
5087             'Opcode' => '1.16',
5088             'POSIX' => '1.21',
5089             'PerlIO::encoding' => '0.13',
5090             'PerlIO::scalar' => '0.10',
5091             'PerlIO::via' => '0.10',
5092             'Pod::Man' => '2.25',
5093             'Pod::Text' => '3.15',
5094             'SDBM_File' => '1.07',
5095             'Socket' => '1.90',
5096             'Sys::Hostname' => '1.13',
5097             'Tie::Hash::NamedCapture'=> '0.07',
5098             'Unicode::Collate' => '0.63',
5099             'Unicode::Collate::Locale'=> '0.63',
5100             'Unicode::Normalize' => '1.07',
5101             'XS::APItest' => '0.23',
5102             'XSLoader' => '0.13',
5103             'attributes' => '0.13',
5104             'charnames' => '1.16',
5105             'if' => '0.06',
5106             'mro' => '1.04',
5107             'overload' => '1.11',
5108             're' => '0.13',
5109             'sigtrap' => '1.05',
5110             'threads' => '1.81_01',
5111             'threads::shared' => '1.34',
5112             },
5113             removed => {
5114             'XS::APItest::KeywordRPN'=> 1,
5115             }
5116             },
5117             5.013007 => {
5118             delta_from => 5.013006,
5119             changed => {
5120             'Archive::Extract' => '0.46',
5121             'Archive::Tar' => '1.72',
5122             'Archive::Tar::Constant'=> '1.72',
5123             'Archive::Tar::File' => '1.72',
5124             'AutoLoader' => '5.71',
5125             'B' => '1.26',
5126             'B::Concise' => '0.81',
5127             'B::Deparse' => '1.01',
5128             'CGI' => '3.50',
5129             'CPAN' => '1.94_62',
5130             'CPANPLUS' => '0.9010',
5131             'CPANPLUS::Dist::Build' => '0.50',
5132             'CPANPLUS::Dist::Build::Constants'=> '0.50',
5133             'CPANPLUS::Internals' => '0.9010',
5134             'CPANPLUS::Shell::Default'=> '0.9010',
5135             'Data::Dumper' => '2.130_01',
5136             'DynaLoader' => '1.11',
5137             'ExtUtils::Constant' => '0.23',
5138             'ExtUtils::Constant::ProxySubs'=> '0.08',
5139             'Fcntl' => '1.10',
5140             'File::Fetch' => '0.28',
5141             'File::Glob' => '1.10',
5142             'File::stat' => '1.04',
5143             'GDBM_File' => '1.12',
5144             'Hash::Util' => '0.10',
5145             'Hash::Util::FieldHash' => '1.06',
5146             'I18N::Langinfo' => '0.07',
5147             'Locale::Maketext' => '1.17',
5148             'Locale::Maketext::Guts'=> '1.17',
5149             'Locale::Maketext::GutsLoader'=> '1.17',
5150             'MIME::Base64' => '3.10',
5151             'MIME::QuotedPrint' => '3.10',
5152             'Math::BigFloat' => '1.99_01',
5153             'Math::BigInt' => '1.99_01',
5154             'Math::BigInt::Calc' => '1.99_01',
5155             'Math::BigInt::CalcEmu' => '1.99_01',
5156             'Math::BigInt::FastCalc'=> '0.24_01',
5157             'Math::BigRat' => '0.26_01',
5158             'Module::CoreList' => '2.41',
5159             'NDBM_File' => '1.10',
5160             'ODBM_File' => '1.09',
5161             'Opcode' => '1.17',
5162             'POSIX' => '1.22',
5163             'Pod::Simple' => '3.15',
5164             'Pod::Simple::BlackBox' => '3.15',
5165             'Pod::Simple::Checker' => '3.15',
5166             'Pod::Simple::Debug' => '3.15',
5167             'Pod::Simple::DumpAsText'=> '3.15',
5168             'Pod::Simple::DumpAsXML'=> '3.15',
5169             'Pod::Simple::HTML' => '3.15',
5170             'Pod::Simple::HTMLBatch'=> '3.15',
5171             'Pod::Simple::LinkSection'=> '3.15',
5172             'Pod::Simple::Methody' => '3.15',
5173             'Pod::Simple::Progress' => '3.15',
5174             'Pod::Simple::PullParser'=> '3.15',
5175             'Pod::Simple::PullParserEndToken'=> '3.15',
5176             'Pod::Simple::PullParserStartToken'=> '3.15',
5177             'Pod::Simple::PullParserTextToken'=> '3.15',
5178             'Pod::Simple::PullParserToken'=> '3.15',
5179             'Pod::Simple::RTF' => '3.15',
5180             'Pod::Simple::Search' => '3.15',
5181             'Pod::Simple::SimpleTree'=> '3.15',
5182             'Pod::Simple::Text' => '3.15',
5183             'Pod::Simple::TextContent'=> '3.15',
5184             'Pod::Simple::TiedOutFH'=> '3.15',
5185             'Pod::Simple::Transcode'=> '3.15',
5186             'Pod::Simple::TranscodeDumb'=> '3.15',
5187             'Pod::Simple::TranscodeSmart'=> '3.15',
5188             'Pod::Simple::XHTML' => '3.15',
5189             'Pod::Simple::XMLOutStream'=> '3.15',
5190             'SDBM_File' => '1.08',
5191             'Safe' => '2.29',
5192             'SelfLoader' => '1.18',
5193             'Socket' => '1.91',
5194             'Storable' => '2.24',
5195             'Sys::Hostname' => '1.14',
5196             'Unicode' => '6.0.0',
5197             'Unicode::Collate' => '0.67',
5198             'Unicode::Collate::CJK::Big5'=> '0.65',
5199             'Unicode::Collate::CJK::GB2312'=> '0.65',
5200             'Unicode::Collate::CJK::JISX0208'=> '0.64',
5201             'Unicode::Collate::CJK::Korean'=> '0.66',
5202             'Unicode::Collate::CJK::Pinyin'=> '0.65',
5203             'Unicode::Collate::CJK::Stroke'=> '0.65',
5204             'Unicode::Collate::Locale'=> '0.67',
5205             'XS::APItest' => '0.26',
5206             'XS::Typemap' => '0.04',
5207             'charnames' => '1.17',
5208             'mro' => '1.05',
5209             'parent' => '0.224',
5210             're' => '0.14',
5211             'threads' => '1.81_02',
5212             },
5213             removed => {
5214             }
5215             },
5216             5.013008 => {
5217             delta_from => 5.013007,
5218             changed => {
5219             'Archive::Tar' => '1.74',
5220             'Archive::Tar::Constant'=> '1.74',
5221             'Archive::Tar::File' => '1.74',
5222             'B' => '1.27',
5223             'B::Concise' => '0.82',
5224             'B::Deparse' => '1.02',
5225             'Carp::Heavy' => '1.17',
5226             'Cwd' => '3.35',
5227             'Data::Dumper' => '2.130_02',
5228             'Devel::Peek' => '1.06',
5229             'Devel::SelfStubber' => '1.05',
5230             'Digest::SHA' => '5.50',
5231             'Dumpvalue' => '1.15',
5232             'DynaLoader' => '1.12',
5233             'Env' => '1.02',
5234             'Exporter::Heavy' => '5.64_01',
5235             'ExtUtils::CBuilder' => '0.280201',
5236             'ExtUtils::CBuilder::Base'=> '0.280201',
5237             'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5238             'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5239             'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5240             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5241             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5242             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5243             'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5244             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5245             'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5246             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5247             'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5248             'ExtUtils::Constant::Utils'=> '0.03',
5249             'ExtUtils::Embed' => '1.30',
5250             'ExtUtils::ParseXS' => '2.2208',
5251             'Fatal' => '2.1001',
5252             'Fcntl' => '1.11',
5253             'File::CheckTree' => '4.41',
5254             'File::Glob' => '1.11',
5255             'GDBM_File' => '1.13',
5256             'Hash::Util::FieldHash' => '1.07',
5257             'I18N::Collate' => '1.02',
5258             'IO' => '1.25_03',
5259             'IPC::Cmd' => '0.66',
5260             'IPC::Open3' => '1.08',
5261             'Locale::Codes' => '3.15',
5262             'Locale::Codes::Country'=> '3.15',
5263             'Locale::Codes::Currency'=> '3.15',
5264             'Locale::Codes::Language'=> '3.15',
5265             'Locale::Codes::Script' => '3.15',
5266             'Locale::Constants' => '3.15',
5267             'Locale::Country' => '3.15',
5268             'Locale::Currency' => '3.15',
5269             'Locale::Language' => '3.15',
5270             'Locale::Script' => '3.15',
5271             'MIME::Base64' => '3.13',
5272             'MIME::QuotedPrint' => '3.13',
5273             'Math::BigFloat' => '1.99_02',
5274             'Math::BigInt' => '1.99_02',
5275             'Math::BigInt::Calc' => '1.99_02',
5276             'Math::BigInt::CalcEmu' => '1.99_02',
5277             'Memoize' => '1.02',
5278             'Memoize::AnyDBM_File' => '1.02',
5279             'Memoize::Expire' => '1.02',
5280             'Memoize::ExpireFile' => '1.02',
5281             'Memoize::ExpireTest' => '1.02',
5282             'Memoize::NDBM_File' => '1.02',
5283             'Memoize::SDBM_File' => '1.02',
5284             'Memoize::Storable' => '1.02',
5285             'Module::CoreList' => '2.43',
5286             'NDBM_File' => '1.11',
5287             'Net::Ping' => '2.37',
5288             'ODBM_File' => '1.10',
5289             'Opcode' => '1.18',
5290             'POSIX' => '1.23',
5291             'PerlIO::encoding' => '0.14',
5292             'PerlIO::scalar' => '0.11',
5293             'PerlIO::via' => '0.11',
5294             'SDBM_File' => '1.09',
5295             'Socket' => '1.92',
5296             'Storable' => '2.25',
5297             'Time::HiRes' => '1.9721_01',
5298             'Unicode::Collate' => '0.6801',
5299             'Unicode::Collate::Locale'=> '0.68',
5300             'Unicode::Normalize' => '1.08',
5301             'Unicode::UCD' => '0.30',
5302             'Win32' => '0.41',
5303             'XS::APItest' => '0.27',
5304             'autodie' => '2.1001',
5305             'autodie::exception' => '2.1001',
5306             'autodie::exception::system'=> '2.1001',
5307             'autodie::hints' => '2.1001',
5308             'feature' => '1.19',
5309             'if' => '0.0601',
5310             'mro' => '1.06',
5311             'overload' => '1.12',
5312             're' => '0.15',
5313             'threads' => '1.81_03',
5314             'threads::shared' => '1.35',
5315             'version' => '0.86',
5316             },
5317             removed => {
5318             }
5319             },
5320             5.013009 => {
5321             delta_from => 5.013008,
5322             changed => {
5323             'Archive::Extract' => '0.48',
5324             'Archive::Tar' => '1.76',
5325             'Archive::Tar::Constant'=> '1.76',
5326             'Archive::Tar::File' => '1.76',
5327             'B::Concise' => '0.83',
5328             'B::Deparse' => '1.03',
5329             'B::Lint' => '1.13',
5330             'Benchmark' => '1.12',
5331             'CGI' => '3.51',
5332             'CGI::Carp' => '3.51',
5333             'CGI::Cookie' => '1.30',
5334             'CGI::Push' => '1.05',
5335             'CGI::Util' => '3.51',
5336             'CPAN' => '1.94_63',
5337             'CPAN::HTTP::Client' => '1.94',
5338             'CPAN::HTTP::Credentials'=> '1.94',
5339             'CPAN::Meta::YAML' => '0.003',
5340             'CPANPLUS' => '0.9011',
5341             'CPANPLUS::Dist::Build' => '0.52',
5342             'CPANPLUS::Dist::Build::Constants'=> '0.52',
5343             'CPANPLUS::Internals' => '0.9011',
5344             'CPANPLUS::Shell::Default'=> '0.9011',
5345             'Carp::Heavy' => '1.19',
5346             'Compress::Raw::Bzip2' => '2.033',
5347             'Compress::Raw::Zlib' => '2.033',
5348             'Compress::Zlib' => '2.033',
5349             'Cwd' => '3.36',
5350             'DBM_Filter' => '0.04',
5351             'DB_File' => '1.821',
5352             'Devel::Peek' => '1.07',
5353             'DirHandle' => '1.04',
5354             'Dumpvalue' => '1.16',
5355             'Encode' => '2.42',
5356             'Encode::Alias' => '2.13',
5357             'Encode::MIME::Header' => '2.13',
5358             'Exporter::Heavy' => '5.64_03',
5359             'ExtUtils::Install' => '1.56',
5360             'ExtUtils::ParseXS' => '2.2209',
5361             'File::Basename' => '2.80',
5362             'File::Copy' => '2.21',
5363             'File::DosGlob' => '1.04',
5364             'File::Fetch' => '0.32',
5365             'File::Find' => '1.19',
5366             'File::Spec::Mac' => '3.34',
5367             'File::Spec::VMS' => '3.34',
5368             'File::stat' => '1.05',
5369             'HTTP::Tiny' => '0.009',
5370             'Hash::Util::FieldHash' => '1.08',
5371             'IO::Compress::Adapter::Bzip2'=> '2.033',
5372             'IO::Compress::Adapter::Deflate'=> '2.033',
5373             'IO::Compress::Adapter::Identity'=> '2.033',
5374             'IO::Compress::Base' => '2.033',
5375             'IO::Compress::Base::Common'=> '2.033',
5376             'IO::Compress::Bzip2' => '2.033',
5377             'IO::Compress::Deflate' => '2.033',
5378             'IO::Compress::Gzip' => '2.033',
5379             'IO::Compress::Gzip::Constants'=> '2.033',
5380             'IO::Compress::RawDeflate'=> '2.033',
5381             'IO::Compress::Zip' => '2.033',
5382             'IO::Compress::Zip::Constants'=> '2.033',
5383             'IO::Compress::Zlib::Constants'=> '2.033',
5384             'IO::Compress::Zlib::Extra'=> '2.033',
5385             'IO::Handle' => '1.29',
5386             'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5387             'IO::Uncompress::Adapter::Identity'=> '2.033',
5388             'IO::Uncompress::Adapter::Inflate'=> '2.033',
5389             'IO::Uncompress::AnyInflate'=> '2.033',
5390             'IO::Uncompress::AnyUncompress'=> '2.033',
5391             'IO::Uncompress::Base' => '2.033',
5392             'IO::Uncompress::Bunzip2'=> '2.033',
5393             'IO::Uncompress::Gunzip'=> '2.033',
5394             'IO::Uncompress::Inflate'=> '2.033',
5395             'IO::Uncompress::RawInflate'=> '2.033',
5396             'IO::Uncompress::Unzip' => '2.033',
5397             'IPC::Cmd' => '0.68',
5398             'IPC::Open3' => '1.09',
5399             'JSON::PP' => '2.27103',
5400             'JSON::PP::Boolean' => undef,
5401             'Locale::Maketext' => '1.18',
5402             'Log::Message' => '0.04',
5403             'Log::Message::Config' => '0.04',
5404             'Log::Message::Handlers'=> '0.04',
5405             'Log::Message::Item' => '0.04',
5406             'Log::Message::Simple' => '0.08',
5407             'Math::BigFloat' => '1.99_03',
5408             'Math::BigInt' => '1.99_03',
5409             'Math::BigInt::Calc' => '1.99_03',
5410             'Math::BigInt::FastCalc'=> '0.24_02',
5411             'Math::BigRat' => '0.26_02',
5412             'Module::CoreList' => '2.42_01',
5413             'Module::Load::Conditional'=> '0.40',
5414             'Module::Metadata' => '1.000003',
5415             'Net::Ping' => '2.38',
5416             'OS2::Process' => '1.05',
5417             'Object::Accessor' => '0.38',
5418             'POSIX' => '1.24',
5419             'Params::Check' => '0.28',
5420             'Perl::OSType' => '1.002',
5421             'Pod::LaTeX' => '0.59',
5422             'Pod::Perldoc' => '3.15_03',
5423             'Socket' => '1.93',
5424             'Storable' => '2.26',
5425             'Sys::Hostname' => '1.15',
5426             'Term::UI' => '0.24',
5427             'Thread::Queue' => '2.12',
5428             'Thread::Semaphore' => '2.12',
5429             'Time::Local' => '1.2000',
5430             'UNIVERSAL' => '1.08',
5431             'Unicode::Normalize' => '1.10',
5432             'Win32' => '0.44',
5433             'bigint' => '0.26',
5434             'bignum' => '0.26',
5435             'bigrat' => '0.26',
5436             'charnames' => '1.18',
5437             'diagnostics' => '1.21',
5438             're' => '0.16',
5439             'threads' => '1.83',
5440             'threads::shared' => '1.36',
5441             'version' => '0.88',
5442             },
5443             removed => {
5444             }
5445             },
5446             5.01301 => {
5447             delta_from => 5.013009,
5448             changed => {
5449             'Attribute::Handlers' => '0.89',
5450             'B' => '1.28',
5451             'B::Showlex' => '1.03',
5452             'CGI' => '3.52',
5453             'CPAN' => '1.94_65',
5454             'CPAN::Distribution' => '1.9601',
5455             'CPAN::FTP::netrc' => '1.01',
5456             'CPAN::FirstTime' => '5.5303',
5457             'CPAN::HandleConfig' => '5.5003',
5458             'CPAN::Meta' => '2.110440',
5459             'CPAN::Meta::Converter' => '2.110440',
5460             'CPAN::Meta::Feature' => '2.110440',
5461             'CPAN::Meta::History' => '2.110440',
5462             'CPAN::Meta::Prereqs' => '2.110440',
5463             'CPAN::Meta::Spec' => '2.110440',
5464             'CPAN::Meta::Validator' => '2.110440',
5465             'CPAN::Shell' => '5.5002',
5466             'CPANPLUS' => '0.9101',
5467             'CPANPLUS::Internals' => '0.9101',
5468             'CPANPLUS::Shell::Default'=> '0.9101',
5469             'Carp' => '1.20',
5470             'Carp::Heavy' => '1.20',
5471             'Cwd' => '3.37',
5472             'Devel::DProf' => '20110217.00',
5473             'DynaLoader' => '1.13',
5474             'ExtUtils::CBuilder' => '0.280202',
5475             'ExtUtils::CBuilder::Base'=> '0.280202',
5476             'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5477             'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5478             'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5479             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5480             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5481             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5482             'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5483             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5484             'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5485             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5486             'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5487             'File::Copy' => '2.22',
5488             'Filter::Simple' => '0.86',
5489             'HTTP::Tiny' => '0.010',
5490             'I18N::LangTags::Detect'=> '1.05',
5491             'IO::Select' => '1.18',
5492             'IPC::Cmd' => '0.70',
5493             'Locale::Maketext' => '1.19',
5494             'Math::BigFloat' => '1.992',
5495             'Math::BigInt' => '1.992',
5496             'Math::BigInt::Calc' => '1.992',
5497             'Math::BigInt::CalcEmu' => '1.992',
5498             'Module::Build' => '0.37_05',
5499             'Module::Build::Base' => '0.37_05',
5500             'Module::Build::Compat' => '0.37_05',
5501             'Module::Build::Config' => '0.37_05',
5502             'Module::Build::Cookbook'=> '0.37_05',
5503             'Module::Build::Dumper' => '0.37_05',
5504             'Module::Build::ModuleInfo'=> '0.37_05',
5505             'Module::Build::Notes' => '0.37_05',
5506             'Module::Build::PPMMaker'=> '0.37_05',
5507             'Module::Build::Platform::Amiga'=> '0.37_05',
5508             'Module::Build::Platform::Default'=> '0.37_05',
5509             'Module::Build::Platform::EBCDIC'=> '0.37_05',
5510             'Module::Build::Platform::MPEiX'=> '0.37_05',
5511             'Module::Build::Platform::MacOS'=> '0.37_05',
5512             'Module::Build::Platform::RiscOS'=> '0.37_05',
5513             'Module::Build::Platform::Unix'=> '0.37_05',
5514             'Module::Build::Platform::VMS'=> '0.37_05',
5515             'Module::Build::Platform::VOS'=> '0.37_05',
5516             'Module::Build::Platform::Windows'=> '0.37_05',
5517             'Module::Build::Platform::aix'=> '0.37_05',
5518             'Module::Build::Platform::cygwin'=> '0.37_05',
5519             'Module::Build::Platform::darwin'=> '0.37_05',
5520             'Module::Build::Platform::os2'=> '0.37_05',
5521             'Module::Build::PodParser'=> '0.37_05',
5522             'Module::Build::Version'=> '0.87',
5523             'Module::Build::YAML' => '1.41',
5524             'Module::CoreList' => '2.45',
5525             'Module::Load::Conditional'=> '0.44',
5526             'Module::Metadata' => '1.000004',
5527             'OS2::Process' => '1.06',
5528             'Parse::CPAN::Meta' => '1.4401',
5529             'Pod::Html' => '1.1',
5530             'Socket' => '1.94',
5531             'Term::UI' => '0.26',
5532             'Unicode::Collate' => '0.72',
5533             'Unicode::Collate::Locale'=> '0.71',
5534             'Unicode::UCD' => '0.31',
5535             'VMS::DCLsym' => '1.05',
5536             'Version::Requirements' => '0.101020',
5537             'bigrat' => '0.27',
5538             'deprecate' => '0.02',
5539             'diagnostics' => '1.22',
5540             'inc::latest' => '0.37_05',
5541             'overload' => '1.13',
5542             're' => '0.17',
5543             'utf8' => '1.09',
5544             'warnings' => '1.12',
5545             },
5546             removed => {
5547             }
5548             },
5549             5.013011 => {
5550             delta_from => 5.01301,
5551             changed => {
5552             'App::Prove' => '3.23',
5553             'App::Prove::State' => '3.23',
5554             'App::Prove::State::Result'=> '3.23',
5555             'App::Prove::State::Result::Test'=> '3.23',
5556             'B' => '1.29',
5557             'CPAN' => '1.9600',
5558             'CPAN::Author' => '5.5001',
5559             'CPAN::CacheMgr' => '5.5001',
5560             'CPAN::Distribution' => '1.9602',
5561             'CPAN::Exception::blocked_urllist'=> '1.001',
5562             'CPAN::HTTP::Client' => '1.9600',
5563             'CPAN::HTTP::Credentials'=> '1.9600',
5564             'CPAN::Index' => '1.9600',
5565             'CPAN::LWP::UserAgent' => '1.9600',
5566             'CPAN::Mirrors' => '1.9600',
5567             'CPAN::Module' => '5.5001',
5568             'CPANPLUS' => '0.9103',
5569             'CPANPLUS::Dist::Build' => '0.54',
5570             'CPANPLUS::Dist::Build::Constants'=> '0.54',
5571             'CPANPLUS::Internals' => '0.9103',
5572             'CPANPLUS::Shell::Default'=> '0.9103',
5573             'Cwd' => '3.36',
5574             'Devel::DProf' => '20110228.00',
5575             'Digest::SHA' => '5.61',
5576             'ExtUtils::Command' => '1.17',
5577             'File::Basename' => '2.81',
5578             'File::Copy' => '2.21',
5579             'File::Glob' => '1.12',
5580             'GDBM_File' => '1.14',
5581             'HTTP::Tiny' => '0.011',
5582             'Hash::Util' => '0.11',
5583             'Hash::Util::FieldHash' => '1.09',
5584             'I18N::Langinfo' => '0.08',
5585             'IO' => '1.25_04',
5586             'IO::Dir' => '1.08',
5587             'IO::File' => '1.15',
5588             'IO::Handle' => '1.30',
5589             'IO::Pipe' => '1.14',
5590             'IO::Poll' => '0.08',
5591             'IO::Select' => '1.20',
5592             'JSON::PP' => '2.27105',
5593             'Locale::Codes' => '3.16',
5594             'Locale::Codes::Country'=> '3.16',
5595             'Locale::Codes::Currency'=> '3.16',
5596             'Locale::Codes::Language'=> '3.16',
5597             'Locale::Codes::Script' => '3.16',
5598             'Locale::Constants' => '3.16',
5599             'Locale::Country' => '3.16',
5600             'Locale::Currency' => '3.16',
5601             'Locale::Language' => '3.16',
5602             'Locale::Script' => '3.16',
5603             'Math::BigFloat' => '1.993',
5604             'Math::BigInt' => '1.994',
5605             'Math::BigInt::Calc' => '1.993',
5606             'Math::BigInt::CalcEmu' => '1.993',
5607             'Math::BigInt::FastCalc'=> '0.28',
5608             'Module::Build' => '0.3800',
5609             'Module::Build::Base' => '0.3800',
5610             'Module::Build::Compat' => '0.3800',
5611             'Module::Build::Config' => '0.3800',
5612             'Module::Build::Cookbook'=> '0.3800',
5613             'Module::Build::Dumper' => '0.3800',
5614             'Module::Build::ModuleInfo'=> '0.3800',
5615             'Module::Build::Notes' => '0.3800',
5616             'Module::Build::PPMMaker'=> '0.3800',
5617             'Module::Build::Platform::Amiga'=> '0.3800',
5618             'Module::Build::Platform::Default'=> '0.3800',
5619             'Module::Build::Platform::EBCDIC'=> '0.3800',
5620             'Module::Build::Platform::MPEiX'=> '0.3800',
5621             'Module::Build::Platform::MacOS'=> '0.3800',
5622             'Module::Build::Platform::RiscOS'=> '0.3800',
5623             'Module::Build::Platform::Unix'=> '0.3800',
5624             'Module::Build::Platform::VMS'=> '0.3800',
5625             'Module::Build::Platform::VOS'=> '0.3800',
5626             'Module::Build::Platform::Windows'=> '0.3800',
5627             'Module::Build::Platform::aix'=> '0.3800',
5628             'Module::Build::Platform::cygwin'=> '0.3800',
5629             'Module::Build::Platform::darwin'=> '0.3800',
5630             'Module::Build::Platform::os2'=> '0.3800',
5631             'Module::Build::PodParser'=> '0.3800',
5632             'Module::CoreList' => '2.46',
5633             'NDBM_File' => '1.12',
5634             'Pod::Simple' => '3.16',
5635             'Pod::Simple::BlackBox' => '3.16',
5636             'Pod::Simple::Checker' => '3.16',
5637             'Pod::Simple::Debug' => '3.16',
5638             'Pod::Simple::DumpAsText'=> '3.16',
5639             'Pod::Simple::DumpAsXML'=> '3.16',
5640             'Pod::Simple::HTML' => '3.16',
5641             'Pod::Simple::HTMLBatch'=> '3.16',
5642             'Pod::Simple::LinkSection'=> '3.16',
5643             'Pod::Simple::Methody' => '3.16',
5644             'Pod::Simple::Progress' => '3.16',
5645             'Pod::Simple::PullParser'=> '3.16',
5646             'Pod::Simple::PullParserEndToken'=> '3.16',
5647             'Pod::Simple::PullParserStartToken'=> '3.16',
5648             'Pod::Simple::PullParserTextToken'=> '3.16',
5649             'Pod::Simple::PullParserToken'=> '3.16',
5650             'Pod::Simple::RTF' => '3.16',
5651             'Pod::Simple::Search' => '3.16',
5652             'Pod::Simple::SimpleTree'=> '3.16',
5653             'Pod::Simple::Text' => '3.16',
5654             'Pod::Simple::TextContent'=> '3.16',
5655             'Pod::Simple::TiedOutFH'=> '3.16',
5656             'Pod::Simple::Transcode'=> '3.16',
5657             'Pod::Simple::TranscodeDumb'=> '3.16',
5658             'Pod::Simple::TranscodeSmart'=> '3.16',
5659             'Pod::Simple::XHTML' => '3.16',
5660             'Pod::Simple::XMLOutStream'=> '3.16',
5661             'Storable' => '2.27',
5662             'Sys::Hostname' => '1.16',
5663             'TAP::Base' => '3.23',
5664             'TAP::Formatter::Base' => '3.23',
5665             'TAP::Formatter::Color' => '3.23',
5666             'TAP::Formatter::Console'=> '3.23',
5667             'TAP::Formatter::Console::ParallelSession'=> '3.23',
5668             'TAP::Formatter::Console::Session'=> '3.23',
5669             'TAP::Formatter::File' => '3.23',
5670             'TAP::Formatter::File::Session'=> '3.23',
5671             'TAP::Formatter::Session'=> '3.23',
5672             'TAP::Harness' => '3.23',
5673             'TAP::Object' => '3.23',
5674             'TAP::Parser' => '3.23',
5675             'TAP::Parser::Aggregator'=> '3.23',
5676             'TAP::Parser::Grammar' => '3.23',
5677             'TAP::Parser::Iterator' => '3.23',
5678             'TAP::Parser::Iterator::Array'=> '3.23',
5679             'TAP::Parser::Iterator::Process'=> '3.23',
5680             'TAP::Parser::Iterator::Stream'=> '3.23',
5681             'TAP::Parser::IteratorFactory'=> '3.23',
5682             'TAP::Parser::Multiplexer'=> '3.23',
5683             'TAP::Parser::Result' => '3.23',
5684             'TAP::Parser::Result::Bailout'=> '3.23',
5685             'TAP::Parser::Result::Comment'=> '3.23',
5686             'TAP::Parser::Result::Plan'=> '3.23',
5687             'TAP::Parser::Result::Pragma'=> '3.23',
5688             'TAP::Parser::Result::Test'=> '3.23',
5689             'TAP::Parser::Result::Unknown'=> '3.23',
5690             'TAP::Parser::Result::Version'=> '3.23',
5691             'TAP::Parser::Result::YAML'=> '3.23',
5692             'TAP::Parser::ResultFactory'=> '3.23',
5693             'TAP::Parser::Scheduler'=> '3.23',
5694             'TAP::Parser::Scheduler::Job'=> '3.23',
5695             'TAP::Parser::Scheduler::Spinner'=> '3.23',
5696             'TAP::Parser::Source' => '3.23',
5697             'TAP::Parser::SourceHandler'=> '3.23',
5698             'TAP::Parser::SourceHandler::Executable'=> '3.23',
5699             'TAP::Parser::SourceHandler::File'=> '3.23',
5700             'TAP::Parser::SourceHandler::Handle'=> '3.23',
5701             'TAP::Parser::SourceHandler::Perl'=> '3.23',
5702             'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5703             'TAP::Parser::Utils' => '3.23',
5704             'TAP::Parser::YAMLish::Reader'=> '3.23',
5705             'TAP::Parser::YAMLish::Writer'=> '3.23',
5706             'Test::Builder' => '0.98',
5707             'Test::Builder::Module' => '0.98',
5708             'Test::Builder::Tester' => '1.22',
5709             'Test::Builder::Tester::Color'=> '1.22',
5710             'Test::Harness' => '3.23',
5711             'Test::More' => '0.98',
5712             'Test::Simple' => '0.98',
5713             'Tie::Hash::NamedCapture'=> '0.08',
5714             'Tie::RefHash' => '1.39',
5715             'Unicode::Collate' => '0.73',
5716             'Unicode::Collate::Locale'=> '0.73',
5717             'Unicode::UCD' => '0.32',
5718             'XS::Typemap' => '0.05',
5719             'attributes' => '0.14',
5720             'base' => '2.16',
5721             'inc::latest' => '0.3800',
5722             'mro' => '1.07',
5723             'parent' => '0.225',
5724             },
5725             removed => {
5726             }
5727             },
5728             5.014 => {
5729             delta_from => 5.013011,
5730             changed => {
5731             'ExtUtils::CBuilder' => '0.280203',
5732             'ExtUtils::CBuilder::Base'=> '0.280203',
5733             'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5734             'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5735             'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5736             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5737             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5738             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5739             'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5740             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5741             'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5742             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5743             'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5744             'ExtUtils::ParseXS' => '2.2210',
5745             'File::Basename' => '2.82',
5746             'HTTP::Tiny' => '0.012',
5747             'IO::Handle' => '1.31',
5748             'Module::CoreList' => '2.49',
5749             'PerlIO' => '1.07',
5750             'Pod::Html' => '1.11',
5751             'XS::APItest' => '0.28',
5752             'bigint' => '0.27',
5753             'bignum' => '0.27',
5754             'bigrat' => '0.28',
5755             'constant' => '1.21',
5756             'feature' => '1.20',
5757             're' => '0.18',
5758             'threads::shared' => '1.37',
5759             },
5760             removed => {
5761             }
5762             },
5763             5.014001 => {
5764             delta_from => 5.014,
5765             changed => {
5766             'B::Deparse' => '1.04',
5767             'Module::CoreList' => '2.49_01',
5768             'Pod::Perldoc' => '3.15_04',
5769             },
5770             removed => {
5771             }
5772             },
5773             5.014002 => {
5774             delta_from => 5.014001,
5775             changed => {
5776             'CPAN' => '1.9600_01',
5777             'CPAN::Distribution' => '1.9602_01',
5778             'Devel::DProf::dprof::V'=> undef,
5779             'Encode' => '2.42_01',
5780             'File::Glob' => '1.13',
5781             'Module::CoreList' => '2.49_02',
5782             'PerlIO::scalar' => '0.11_01',
5783             'Time::Piece::Seconds' => undef,
5784             },
5785             removed => {
5786             }
5787             },
5788             5.014003 => {
5789             delta_from => 5.014002,
5790             changed => {
5791             'Digest' => '1.16_01',
5792             'IPC::Open3' => '1.09_01',
5793             'Module::CoreList' => '2.49_04',
5794             },
5795             removed => {
5796             }
5797             },
5798             5.014004 => {
5799             delta_from => 5.014003,
5800             changed => {
5801             'Encode' => '2.42_02',
5802             'IPC::Open3' => '1.0901',
5803             'Module::CoreList' => '2.49_06',
5804             },
5805             removed => {
5806             }
5807             },
5808             5.015 => {
5809             delta_from => 5.014001,
5810             changed => {
5811             'Archive::Extract' => '0.52',
5812             'Attribute::Handlers' => '0.91',
5813             'B' => '1.30',
5814             'B::Concise' => '0.84',
5815             'B::Deparse' => '1.05',
5816             'Benchmark' => '1.13',
5817             'CGI' => '3.54',
5818             'CGI::Util' => '3.53',
5819             'CPAN::Meta' => '2.110930',
5820             'CPAN::Meta::Converter' => '2.110930',
5821             'CPAN::Meta::Feature' => '2.110930',
5822             'CPAN::Meta::History' => '2.110930',
5823             'CPAN::Meta::Prereqs' => '2.110930',
5824             'CPAN::Meta::Spec' => '2.110930',
5825             'CPAN::Meta::Validator' => '2.110930',
5826             'CPANPLUS' => '0.9105',
5827             'CPANPLUS::Dist::Build' => '0.56',
5828             'CPANPLUS::Dist::Build::Constants'=> '0.56',
5829             'CPANPLUS::Internals' => '0.9105',
5830             'CPANPLUS::Shell::Default'=> '0.9105',
5831             'Compress::Raw::Bzip2' => '2.035',
5832             'Compress::Raw::Zlib' => '2.035',
5833             'Compress::Zlib' => '2.035',
5834             'DB_File' => '1.822',
5835             'Data::Dumper' => '2.131',
5836             'Devel::Peek' => '1.08',
5837             'Digest::SHA' => '5.62',
5838             'Encode' => '2.43',
5839             'Encode::Alias' => '2.14',
5840             'ExtUtils::CBuilder' => '0.280204',
5841             'ExtUtils::CBuilder::Base'=> '0.280204',
5842             'Fatal' => '2.10',
5843             'File::Spec::Win32' => '3.34',
5844             'Filter::Simple' => '0.87',
5845             'Filter::Util::Call' => '1.39',
5846             'FindBin' => '1.51',
5847             'Hash::Util::FieldHash' => '1.10',
5848             'I18N::LangTags' => '0.36',
5849             'IO::Compress::Adapter::Bzip2'=> '2.035',
5850             'IO::Compress::Adapter::Deflate'=> '2.035',
5851             'IO::Compress::Adapter::Identity'=> '2.035',
5852             'IO::Compress::Base' => '2.035',
5853             'IO::Compress::Base::Common'=> '2.035',
5854             'IO::Compress::Bzip2' => '2.035',
5855             'IO::Compress::Deflate' => '2.035',
5856             'IO::Compress::Gzip' => '2.035',
5857             'IO::Compress::Gzip::Constants'=> '2.035',
5858             'IO::Compress::RawDeflate'=> '2.035',
5859             'IO::Compress::Zip' => '2.035',
5860             'IO::Compress::Zip::Constants'=> '2.035',
5861             'IO::Compress::Zlib::Constants'=> '2.035',
5862             'IO::Compress::Zlib::Extra'=> '2.035',
5863             'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5864             'IO::Uncompress::Adapter::Identity'=> '2.035',
5865             'IO::Uncompress::Adapter::Inflate'=> '2.035',
5866             'IO::Uncompress::AnyInflate'=> '2.035',
5867             'IO::Uncompress::AnyUncompress'=> '2.035',
5868             'IO::Uncompress::Base' => '2.035',
5869             'IO::Uncompress::Bunzip2'=> '2.035',
5870             'IO::Uncompress::Gunzip'=> '2.035',
5871             'IO::Uncompress::Inflate'=> '2.035',
5872             'IO::Uncompress::RawInflate'=> '2.035',
5873             'IO::Uncompress::Unzip' => '2.035',
5874             'IPC::Open2' => '1.04',
5875             'IPC::Open3' => '1.11',
5876             'JSON::PP' => '2.27200',
5877             'Math::BigFloat' => '1.994',
5878             'Math::BigInt' => '1.995',
5879             'Math::Complex' => '1.57',
5880             'Math::Trig' => '1.21',
5881             'Module::CoreList' => '2.51',
5882             'ODBM_File' => '1.11',
5883             'Object::Accessor' => '0.42',
5884             'Opcode' => '1.19',
5885             'PerlIO::encoding' => '0.15',
5886             'PerlIO::scalar' => '0.12',
5887             'Pod::Perldoc' => '3.15_05',
5888             'Storable' => '2.28',
5889             'Sys::Syslog' => '0.29',
5890             'Time::HiRes' => '1.9722',
5891             'Unicode::Collate' => '0.76',
5892             'Unicode::Collate::CJK::Pinyin'=> '0.76',
5893             'Unicode::Collate::CJK::Stroke'=> '0.76',
5894             'Unicode::Collate::Locale'=> '0.76',
5895             'Unicode::Normalize' => '1.12',
5896             'XS::APItest' => '0.29',
5897             'XSLoader' => '0.15',
5898             'autodie' => '2.10',
5899             'autodie::exception' => '2.10',
5900             'autodie::exception::system'=> '2.10',
5901             'autodie::hints' => '2.10',
5902             'base' => '2.17',
5903             'charnames' => '1.22',
5904             'constant' => '1.22',
5905             'feature' => '1.21',
5906             'mro' => '1.08',
5907             'overload' => '1.14',
5908             'threads::shared' => '1.38',
5909             'vmsish' => '1.03',
5910             },
5911             removed => {
5912             'Devel::DProf' => 1,
5913             'Shell' => 1,
5914             }
5915             },
5916             5.015001 => {
5917             delta_from => 5.015,
5918             changed => {
5919             'B::Deparse' => '1.06',
5920             'CGI' => '3.55',
5921             'CPAN::Meta' => '2.110930001',
5922             'CPAN::Meta::Converter' => '2.110930001',
5923             'CPANPLUS' => '0.9108',
5924             'CPANPLUS::Internals' => '0.9108',
5925             'CPANPLUS::Shell::Default'=> '0.9108',
5926             'Carp' => '1.21',
5927             'Carp::Heavy' => '1.21',
5928             'Compress::Raw::Bzip2' => '2.037',
5929             'Compress::Raw::Zlib' => '2.037',
5930             'Compress::Zlib' => '2.037',
5931             'Cwd' => '3.37',
5932             'Env' => '1.03',
5933             'ExtUtils::Command::MM' => '6.58',
5934             'ExtUtils::Liblist' => '6.58',
5935             'ExtUtils::Liblist::Kid'=> '6.58',
5936             'ExtUtils::MM' => '6.58',
5937             'ExtUtils::MM_AIX' => '6.58',
5938             'ExtUtils::MM_Any' => '6.58',
5939             'ExtUtils::MM_BeOS' => '6.58',
5940             'ExtUtils::MM_Cygwin' => '6.58',
5941             'ExtUtils::MM_DOS' => '6.58',
5942             'ExtUtils::MM_Darwin' => '6.58',
5943             'ExtUtils::MM_MacOS' => '6.58',
5944             'ExtUtils::MM_NW5' => '6.58',
5945             'ExtUtils::MM_OS2' => '6.58',
5946             'ExtUtils::MM_QNX' => '6.58',
5947             'ExtUtils::MM_UWIN' => '6.58',
5948             'ExtUtils::MM_Unix' => '6.58',
5949             'ExtUtils::MM_VMS' => '6.58',
5950             'ExtUtils::MM_VOS' => '6.58',
5951             'ExtUtils::MM_Win32' => '6.58',
5952             'ExtUtils::MM_Win95' => '6.58',
5953             'ExtUtils::MY' => '6.58',
5954             'ExtUtils::MakeMaker' => '6.58',
5955             'ExtUtils::MakeMaker::Config'=> '6.58',
5956             'ExtUtils::Mkbootstrap' => '6.58',
5957             'ExtUtils::Mksymlists' => '6.58',
5958             'ExtUtils::ParseXS' => '3.00_01',
5959             'ExtUtils::ParseXS::Constants'=> undef,
5960             'ExtUtils::ParseXS::CountLines'=> undef,
5961             'ExtUtils::ParseXS::Utilities'=> undef,
5962             'ExtUtils::Typemaps' => '1.00',
5963             'ExtUtils::Typemaps::InputMap'=> undef,
5964             'ExtUtils::Typemaps::OutputMap'=> undef,
5965             'ExtUtils::Typemaps::Type'=> '0.05',
5966             'ExtUtils::testlib' => '6.58',
5967             'File::Basename' => '2.83',
5968             'File::Find' => '1.20',
5969             'HTTP::Tiny' => '0.013',
5970             'I18N::Langinfo' => '0.08_02',
5971             'IO::Compress::Adapter::Bzip2'=> '2.037',
5972             'IO::Compress::Adapter::Deflate'=> '2.037',
5973             'IO::Compress::Adapter::Identity'=> '2.037',
5974             'IO::Compress::Base' => '2.037',
5975             'IO::Compress::Base::Common'=> '2.037',
5976             'IO::Compress::Bzip2' => '2.037',
5977             'IO::Compress::Deflate' => '2.037',
5978             'IO::Compress::Gzip' => '2.037',
5979             'IO::Compress::Gzip::Constants'=> '2.037',
5980             'IO::Compress::RawDeflate'=> '2.037',
5981             'IO::Compress::Zip' => '2.037',
5982             'IO::Compress::Zip::Constants'=> '2.037',
5983             'IO::Compress::Zlib::Constants'=> '2.037',
5984             'IO::Compress::Zlib::Extra'=> '2.037',
5985             'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
5986             'IO::Uncompress::Adapter::Identity'=> '2.037',
5987             'IO::Uncompress::Adapter::Inflate'=> '2.037',
5988             'IO::Uncompress::AnyInflate'=> '2.037',
5989             'IO::Uncompress::AnyUncompress'=> '2.037',
5990             'IO::Uncompress::Base' => '2.037',
5991             'IO::Uncompress::Bunzip2'=> '2.037',
5992             'IO::Uncompress::Gunzip'=> '2.037',
5993             'IO::Uncompress::Inflate'=> '2.037',
5994             'IO::Uncompress::RawInflate'=> '2.037',
5995             'IO::Uncompress::Unzip' => '2.037',
5996             'IPC::Cmd' => '0.72',
5997             'Locale::Codes' => '3.17',
5998             'Locale::Codes::Constants'=> '3.17',
5999             'Locale::Codes::Country'=> '3.17',
6000             'Locale::Codes::Country_Codes'=> '3.17',
6001             'Locale::Codes::Currency'=> '3.17',
6002             'Locale::Codes::Currency_Codes'=> '3.17',
6003             'Locale::Codes::LangExt'=> '3.17',
6004             'Locale::Codes::LangExt_Codes'=> '3.17',
6005             'Locale::Codes::LangVar'=> '3.17',
6006             'Locale::Codes::LangVar_Codes'=> '3.17',
6007             'Locale::Codes::Language'=> '3.17',
6008             'Locale::Codes::Language_Codes'=> '3.17',
6009             'Locale::Codes::Script' => '3.17',
6010             'Locale::Codes::Script_Codes'=> '3.17',
6011             'Locale::Country' => '3.17',
6012             'Locale::Currency' => '3.17',
6013             'Locale::Language' => '3.17',
6014             'Locale::Script' => '3.17',
6015             'Math::BigFloat::Trace' => '0.28',
6016             'Math::BigInt::FastCalc'=> '0.29',
6017             'Math::BigInt::Trace' => '0.28',
6018             'Math::BigRat' => '0.2602',
6019             'Math::Complex' => '1.58',
6020             'Math::Trig' => '1.22',
6021             'Module::CoreList' => '2.54',
6022             'OS2::Process' => '1.07',
6023             'Pod::Perldoc' => '3.15_06',
6024             'Pod::Simple' => '3.18',
6025             'Pod::Simple::BlackBox' => '3.18',
6026             'Pod::Simple::Checker' => '3.18',
6027             'Pod::Simple::Debug' => '3.18',
6028             'Pod::Simple::DumpAsText'=> '3.18',
6029             'Pod::Simple::DumpAsXML'=> '3.18',
6030             'Pod::Simple::HTML' => '3.18',
6031             'Pod::Simple::HTMLBatch'=> '3.18',
6032             'Pod::Simple::LinkSection'=> '3.18',
6033             'Pod::Simple::Methody' => '3.18',
6034             'Pod::Simple::Progress' => '3.18',
6035             'Pod::Simple::PullParser'=> '3.18',
6036             'Pod::Simple::PullParserEndToken'=> '3.18',
6037             'Pod::Simple::PullParserStartToken'=> '3.18',
6038             'Pod::Simple::PullParserTextToken'=> '3.18',
6039             'Pod::Simple::PullParserToken'=> '3.18',
6040             'Pod::Simple::RTF' => '3.18',
6041             'Pod::Simple::Search' => '3.18',
6042             'Pod::Simple::SimpleTree'=> '3.18',
6043             'Pod::Simple::Text' => '3.18',
6044             'Pod::Simple::TextContent'=> '3.18',
6045             'Pod::Simple::TiedOutFH'=> '3.18',
6046             'Pod::Simple::Transcode'=> '3.18',
6047             'Pod::Simple::TranscodeDumb'=> '3.18',
6048             'Pod::Simple::TranscodeSmart'=> '3.18',
6049             'Pod::Simple::XHTML' => '3.18',
6050             'Pod::Simple::XMLOutStream'=> '3.18',
6051             'Storable' => '2.31',
6052             'Sys::Syslog::Win32' => undef,
6053             'Time::HiRes' => '1.9724',
6054             'Unicode::Collate' => '0.77',
6055             'Unicode::UCD' => '0.33',
6056             'Win32API::File' => '0.1200',
6057             'XS::APItest' => '0.30',
6058             'attributes' => '0.15',
6059             'bigint' => '0.28',
6060             'bignum' => '0.28',
6061             'charnames' => '1.23',
6062             'diagnostics' => '1.23',
6063             'feature' => '1.22',
6064             'overload' => '1.15',
6065             'perlfaq' => '5.015000',
6066             'threads' => '1.84',
6067             'version' => '0.93',
6068             },
6069             removed => {
6070             'ExtUtils::MakeMaker::YAML'=> 1,
6071             'Locale::Constants' => 1,
6072             'Sys::Syslog::win32::Win32'=> 1,
6073             }
6074             },
6075             5.015002 => {
6076             delta_from => 5.015001,
6077             changed => {
6078             'Attribute::Handlers' => '0.92',
6079             'B' => '1.31',
6080             'B::Concise' => '0.85',
6081             'B::Deparse' => '1.07',
6082             'B::Terse' => '1.06',
6083             'B::Xref' => '1.03',
6084             'CPAN' => '1.9800',
6085             'CPAN::Exception::yaml_process_error'=> '5.5',
6086             'CPAN::Meta' => '2.112150',
6087             'CPAN::Meta::Converter' => '2.112150',
6088             'CPAN::Meta::Feature' => '2.112150',
6089             'CPAN::Meta::History' => '2.112150',
6090             'CPAN::Meta::Prereqs' => '2.112150',
6091             'CPAN::Meta::Spec' => '2.112150',
6092             'CPAN::Meta::Validator' => '2.112150',
6093             'CPANPLUS' => '0.9109',
6094             'CPANPLUS::Internals' => '0.9109',
6095             'CPANPLUS::Shell::Default'=> '0.9109',
6096             'DB_File' => '1.824',
6097             'Data::Dumper' => '2.132',
6098             'Encode' => '2.44',
6099             'Encode::Alias' => '2.15',
6100             'Encode::Encoder' => '2.02',
6101             'Encode::Guess' => '2.05',
6102             'ExtUtils::Command::MM' => '6.59',
6103             'ExtUtils::Install' => '1.57',
6104             'ExtUtils::Installed' => '1.999002',
6105             'ExtUtils::Liblist' => '6.59',
6106             'ExtUtils::Liblist::Kid'=> '6.59',
6107             'ExtUtils::MM' => '6.59',
6108             'ExtUtils::MM_AIX' => '6.59',
6109             'ExtUtils::MM_Any' => '6.59',
6110             'ExtUtils::MM_BeOS' => '6.59',
6111             'ExtUtils::MM_Cygwin' => '6.59',
6112             'ExtUtils::MM_DOS' => '6.59',
6113             'ExtUtils::MM_Darwin' => '6.59',
6114             'ExtUtils::MM_MacOS' => '6.59',
6115             'ExtUtils::MM_NW5' => '6.59',
6116             'ExtUtils::MM_OS2' => '6.59',
6117             'ExtUtils::MM_QNX' => '6.59',
6118             'ExtUtils::MM_UWIN' => '6.59',
6119             'ExtUtils::MM_Unix' => '6.59',
6120             'ExtUtils::MM_VMS' => '6.59',
6121             'ExtUtils::MM_VOS' => '6.59',
6122             'ExtUtils::MM_Win32' => '6.59',
6123             'ExtUtils::MM_Win95' => '6.59',
6124             'ExtUtils::MY' => '6.59',
6125             'ExtUtils::MakeMaker' => '6.59',
6126             'ExtUtils::MakeMaker::Config'=> '6.59',
6127             'ExtUtils::Manifest' => '1.60',
6128             'ExtUtils::Mkbootstrap' => '6.59',
6129             'ExtUtils::Mksymlists' => '6.59',
6130             'ExtUtils::ParseXS' => '3.03_01',
6131             'ExtUtils::Typemaps' => '1.01',
6132             'ExtUtils::testlib' => '6.59',
6133             'File::Spec' => '3.34',
6134             'File::Spec::Mac' => '3.35',
6135             'File::Spec::Unix' => '3.34',
6136             'File::Spec::VMS' => '3.35',
6137             'File::Spec::Win32' => '3.35',
6138             'I18N::LangTags' => '0.37',
6139             'IO' => '1.25_05',
6140             'IO::Handle' => '1.32',
6141             'IO::Socket' => '1.33',
6142             'IO::Socket::INET' => '1.32',
6143             'IPC::Open3' => '1.12',
6144             'Math::BigFloat' => '1.995',
6145             'Math::BigFloat::Trace' => '0.29',
6146             'Math::BigInt' => '1.996',
6147             'Math::BigInt::Trace' => '0.29',
6148             'Module::Build' => '0.39_01',
6149             'Module::Build::Base' => '0.39_01',
6150             'Module::Build::Compat' => '0.39_01',
6151             'Module::Build::Config' => '0.39_01',
6152             'Module::Build::Cookbook'=> '0.39_01',
6153             'Module::Build::Dumper' => '0.39_01',
6154             'Module::Build::ModuleInfo'=> '0.39_01',
6155             'Module::Build::Notes' => '0.39_01',
6156             'Module::Build::PPMMaker'=> '0.39_01',
6157             'Module::Build::Platform::Amiga'=> '0.39_01',
6158             'Module::Build::Platform::Default'=> '0.39_01',
6159             'Module::Build::Platform::EBCDIC'=> '0.39_01',
6160             'Module::Build::Platform::MPEiX'=> '0.39_01',
6161             'Module::Build::Platform::MacOS'=> '0.39_01',
6162             'Module::Build::Platform::RiscOS'=> '0.39_01',
6163             'Module::Build::Platform::Unix'=> '0.39_01',
6164             'Module::Build::Platform::VMS'=> '0.39_01',
6165             'Module::Build::Platform::VOS'=> '0.39_01',
6166             'Module::Build::Platform::Windows'=> '0.39_01',
6167             'Module::Build::Platform::aix'=> '0.39_01',
6168             'Module::Build::Platform::cygwin'=> '0.39_01',
6169             'Module::Build::Platform::darwin'=> '0.39_01',
6170             'Module::Build::Platform::os2'=> '0.39_01',
6171             'Module::Build::PodParser'=> '0.39_01',
6172             'Module::CoreList' => '2.55',
6173             'Module::Load' => '0.20',
6174             'Module::Metadata' => '1.000005_01',
6175             'Opcode' => '1.20',
6176             'Params::Check' => '0.32',
6177             'PerlIO::via' => '0.12',
6178             'Term::ANSIColor' => '3.01',
6179             'Unicode::Collate' => '0.78',
6180             'Unicode::Normalize' => '1.13',
6181             'Unicode::UCD' => '0.34',
6182             'bigint' => '0.29',
6183             'bignum' => '0.29',
6184             'bigrat' => '0.29',
6185             'diagnostics' => '1.24',
6186             'fields' => '2.16',
6187             'inc::latest' => '0.39_01',
6188             },
6189             removed => {
6190             }
6191             },
6192             5.015003 => {
6193             delta_from => 5.015002,
6194             changed => {
6195             'AnyDBM_File' => '1.01',
6196             'Archive::Extract' => '0.56',
6197             'Archive::Tar' => '1.78',
6198             'Archive::Tar::Constant'=> '1.78',
6199             'Archive::Tar::File' => '1.78',
6200             'Attribute::Handlers' => '0.93',
6201             'B' => '1.32',
6202             'B::Concise' => '0.86',
6203             'B::Deparse' => '1.08',
6204             'CPAN::Meta' => '2.112621',
6205             'CPAN::Meta::Converter' => '2.112621',
6206             'CPAN::Meta::Feature' => '2.112621',
6207             'CPAN::Meta::History' => '2.112621',
6208             'CPAN::Meta::Prereqs' => '2.112621',
6209             'CPAN::Meta::Spec' => '2.112621',
6210             'CPAN::Meta::Validator' => '2.112621',
6211             'CPAN::Meta::YAML' => '0.004',
6212             'CPANPLUS' => '0.9111',
6213             'CPANPLUS::Dist::Build' => '0.58',
6214             'CPANPLUS::Dist::Build::Constants'=> '0.58',
6215             'CPANPLUS::Internals' => '0.9111',
6216             'CPANPLUS::Shell::Default'=> '0.9111',
6217             'Carp' => '1.23',
6218             'Carp::Heavy' => '1.23',
6219             'Data::Dumper' => '2.134',
6220             'Devel::PPPort' => '3.20',
6221             'Errno' => '1.14',
6222             'Exporter' => '5.65',
6223             'Exporter::Heavy' => '5.65',
6224             'ExtUtils::ParseXS' => '3.04_04',
6225             'ExtUtils::ParseXS::Constants'=> '3.04_04',
6226             'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6227             'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6228             'ExtUtils::Typemaps' => '1.02',
6229             'File::Glob' => '1.13',
6230             'Filter::Simple' => '0.88',
6231             'IO' => '1.25_06',
6232             'IO::Handle' => '1.33',
6233             'Locale::Codes' => '3.18',
6234             'Locale::Codes::Constants'=> '3.18',
6235             'Locale::Codes::Country'=> '3.18',
6236             'Locale::Codes::Country_Codes'=> '3.18',
6237             'Locale::Codes::Currency'=> '3.18',
6238             'Locale::Codes::Currency_Codes'=> '3.18',
6239             'Locale::Codes::LangExt'=> '3.18',
6240             'Locale::Codes::LangExt_Codes'=> '3.18',
6241             'Locale::Codes::LangVar'=> '3.18',
6242             'Locale::Codes::LangVar_Codes'=> '3.18',
6243             'Locale::Codes::Language'=> '3.18',
6244             'Locale::Codes::Language_Codes'=> '3.18',
6245             'Locale::Codes::Script' => '3.18',
6246             'Locale::Codes::Script_Codes'=> '3.18',
6247             'Locale::Country' => '3.18',
6248             'Locale::Currency' => '3.18',
6249             'Locale::Language' => '3.18',
6250             'Locale::Script' => '3.18',
6251             'Math::BigFloat' => '1.997',
6252             'Math::BigInt' => '1.997',
6253             'Math::BigInt::Calc' => '1.997',
6254             'Math::BigInt::CalcEmu' => '1.997',
6255             'Math::BigInt::FastCalc'=> '0.30',
6256             'Math::BigRat' => '0.2603',
6257             'Module::CoreList' => '2.56',
6258             'Module::Load::Conditional'=> '0.46',
6259             'Module::Metadata' => '1.000007',
6260             'ODBM_File' => '1.12',
6261             'POSIX' => '1.26',
6262             'Pod::Perldoc' => '3.15_07',
6263             'Pod::Simple' => '3.19',
6264             'Pod::Simple::BlackBox' => '3.19',
6265             'Pod::Simple::Checker' => '3.19',
6266             'Pod::Simple::Debug' => '3.19',
6267             'Pod::Simple::DumpAsText'=> '3.19',
6268             'Pod::Simple::DumpAsXML'=> '3.19',
6269             'Pod::Simple::HTML' => '3.19',
6270             'Pod::Simple::HTMLBatch'=> '3.19',
6271             'Pod::Simple::LinkSection'=> '3.19',
6272             'Pod::Simple::Methody' => '3.19',
6273             'Pod::Simple::Progress' => '3.19',
6274             'Pod::Simple::PullParser'=> '3.19',
6275             'Pod::Simple::PullParserEndToken'=> '3.19',
6276             'Pod::Simple::PullParserStartToken'=> '3.19',
6277             'Pod::Simple::PullParserTextToken'=> '3.19',
6278             'Pod::Simple::PullParserToken'=> '3.19',
6279             'Pod::Simple::RTF' => '3.19',
6280             'Pod::Simple::Search' => '3.19',
6281             'Pod::Simple::SimpleTree'=> '3.19',
6282             'Pod::Simple::Text' => '3.19',
6283             'Pod::Simple::TextContent'=> '3.19',
6284             'Pod::Simple::TiedOutFH'=> '3.19',
6285             'Pod::Simple::Transcode'=> '3.19',
6286             'Pod::Simple::TranscodeDumb'=> '3.19',
6287             'Pod::Simple::TranscodeSmart'=> '3.19',
6288             'Pod::Simple::XHTML' => '3.19',
6289             'Pod::Simple::XMLOutStream'=> '3.19',
6290             'Search::Dict' => '1.04',
6291             'Socket' => '1.94_01',
6292             'Storable' => '2.32',
6293             'Text::Abbrev' => '1.02',
6294             'Tie::Array' => '1.05',
6295             'UNIVERSAL' => '1.09',
6296             'Unicode::UCD' => '0.35',
6297             'XS::APItest' => '0.31',
6298             'XSLoader' => '0.16',
6299             'attributes' => '0.16',
6300             'diagnostics' => '1.25',
6301             'open' => '1.09',
6302             'perlfaq' => '5.0150034',
6303             'threads' => '1.85',
6304             'threads::shared' => '1.40',
6305             },
6306             removed => {
6307             }
6308             },
6309             5.015004 => {
6310             delta_from => 5.015003,
6311             changed => {
6312             'Archive::Tar' => '1.80',
6313             'Archive::Tar::Constant'=> '1.80',
6314             'Archive::Tar::File' => '1.80',
6315             'Digest' => '1.17',
6316             'DynaLoader' => '1.14',
6317             'ExtUtils::Command::MM' => '6.61_01',
6318             'ExtUtils::Liblist' => '6.61_01',
6319             'ExtUtils::Liblist::Kid'=> '6.61_01',
6320             'ExtUtils::MM' => '6.61_01',
6321             'ExtUtils::MM_AIX' => '6.61_01',
6322             'ExtUtils::MM_Any' => '6.61_01',
6323             'ExtUtils::MM_BeOS' => '6.61_01',
6324             'ExtUtils::MM_Cygwin' => '6.61_01',
6325             'ExtUtils::MM_DOS' => '6.61_01',
6326             'ExtUtils::MM_Darwin' => '6.61_01',
6327             'ExtUtils::MM_MacOS' => '6.61_01',
6328             'ExtUtils::MM_NW5' => '6.61_01',
6329             'ExtUtils::MM_OS2' => '6.61_01',
6330             'ExtUtils::MM_QNX' => '6.61_01',
6331             'ExtUtils::MM_UWIN' => '6.61_01',
6332             'ExtUtils::MM_Unix' => '6.61_01',
6333             'ExtUtils::MM_VMS' => '6.61_01',
6334             'ExtUtils::MM_VOS' => '6.61_01',
6335             'ExtUtils::MM_Win32' => '6.61_01',
6336             'ExtUtils::MM_Win95' => '6.61_01',
6337             'ExtUtils::MY' => '6.61_01',
6338             'ExtUtils::MakeMaker' => '6.61_01',
6339             'ExtUtils::MakeMaker::Config'=> '6.61_01',
6340             'ExtUtils::Mkbootstrap' => '6.61_01',
6341             'ExtUtils::Mksymlists' => '6.61_01',
6342             'ExtUtils::ParseXS' => '3.05',
6343             'ExtUtils::ParseXS::Constants'=> '3.05',
6344             'ExtUtils::ParseXS::CountLines'=> '3.05',
6345             'ExtUtils::ParseXS::Utilities'=> '3.05',
6346             'ExtUtils::testlib' => '6.61_01',
6347             'File::DosGlob' => '1.05',
6348             'Module::CoreList' => '2.57',
6349             'Module::Load' => '0.22',
6350             'Unicode::Collate' => '0.80',
6351             'Unicode::Collate::Locale'=> '0.80',
6352             'Unicode::UCD' => '0.36',
6353             'XS::APItest' => '0.32',
6354             'XS::Typemap' => '0.07',
6355             'attributes' => '0.17',
6356             'base' => '2.18',
6357             'constant' => '1.23',
6358             'mro' => '1.09',
6359             'open' => '1.10',
6360             'perlfaq' => '5.0150035',
6361             },
6362             removed => {
6363             }
6364             },
6365             5.015005 => {
6366             delta_from => 5.015004,
6367             changed => {
6368             'Archive::Extract' => '0.58',
6369             'B::Concise' => '0.87',
6370             'B::Deparse' => '1.09',
6371             'CGI' => '3.58',
6372             'CGI::Fast' => '1.09',
6373             'CPANPLUS' => '0.9112',
6374             'CPANPLUS::Dist::Build' => '0.60',
6375             'CPANPLUS::Dist::Build::Constants'=> '0.60',
6376             'CPANPLUS::Internals' => '0.9112',
6377             'CPANPLUS::Shell::Default'=> '0.9112',
6378             'Compress::Raw::Bzip2' => '2.042',
6379             'Compress::Raw::Zlib' => '2.042',
6380             'Compress::Zlib' => '2.042',
6381             'Digest::SHA' => '5.63',
6382             'Errno' => '1.15',
6383             'ExtUtils::Command::MM' => '6.63_02',
6384             'ExtUtils::Liblist' => '6.63_02',
6385             'ExtUtils::Liblist::Kid'=> '6.63_02',
6386             'ExtUtils::MM' => '6.63_02',
6387             'ExtUtils::MM_AIX' => '6.63_02',
6388             'ExtUtils::MM_Any' => '6.63_02',
6389             'ExtUtils::MM_BeOS' => '6.63_02',
6390             'ExtUtils::MM_Cygwin' => '6.63_02',
6391             'ExtUtils::MM_DOS' => '6.63_02',
6392             'ExtUtils::MM_Darwin' => '6.63_02',
6393             'ExtUtils::MM_MacOS' => '6.63_02',
6394             'ExtUtils::MM_NW5' => '6.63_02',
6395             'ExtUtils::MM_OS2' => '6.63_02',
6396             'ExtUtils::MM_QNX' => '6.63_02',
6397             'ExtUtils::MM_UWIN' => '6.63_02',
6398             'ExtUtils::MM_Unix' => '6.63_02',
6399             'ExtUtils::MM_VMS' => '6.63_02',
6400             'ExtUtils::MM_VOS' => '6.63_02',
6401             'ExtUtils::MM_Win32' => '6.63_02',
6402             'ExtUtils::MM_Win95' => '6.63_02',
6403             'ExtUtils::MY' => '6.63_02',
6404             'ExtUtils::MakeMaker' => '6.63_02',
6405             'ExtUtils::MakeMaker::Config'=> '6.63_02',
6406             'ExtUtils::Mkbootstrap' => '6.63_02',
6407             'ExtUtils::Mksymlists' => '6.63_02',
6408             'ExtUtils::testlib' => '6.63_02',
6409             'File::DosGlob' => '1.06',
6410             'File::Glob' => '1.14',
6411             'HTTP::Tiny' => '0.016',
6412             'IO::Compress::Adapter::Bzip2'=> '2.042',
6413             'IO::Compress::Adapter::Deflate'=> '2.042',
6414             'IO::Compress::Adapter::Identity'=> '2.042',
6415             'IO::Compress::Base' => '2.042',
6416             'IO::Compress::Base::Common'=> '2.042',
6417             'IO::Compress::Bzip2' => '2.042',
6418             'IO::Compress::Deflate' => '2.042',
6419             'IO::Compress::Gzip' => '2.042',
6420             'IO::Compress::Gzip::Constants'=> '2.042',
6421             'IO::Compress::RawDeflate'=> '2.042',
6422             'IO::Compress::Zip' => '2.042',
6423             'IO::Compress::Zip::Constants'=> '2.042',
6424             'IO::Compress::Zlib::Constants'=> '2.042',
6425             'IO::Compress::Zlib::Extra'=> '2.042',
6426             'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6427             'IO::Uncompress::Adapter::Identity'=> '2.042',
6428             'IO::Uncompress::Adapter::Inflate'=> '2.042',
6429             'IO::Uncompress::AnyInflate'=> '2.042',
6430             'IO::Uncompress::AnyUncompress'=> '2.042',
6431             'IO::Uncompress::Base' => '2.042',
6432             'IO::Uncompress::Bunzip2'=> '2.042',
6433             'IO::Uncompress::Gunzip'=> '2.042',
6434             'IO::Uncompress::Inflate'=> '2.042',
6435             'IO::Uncompress::RawInflate'=> '2.042',
6436             'IO::Uncompress::Unzip' => '2.042',
6437             'Locale::Maketext' => '1.20',
6438             'Locale::Maketext::Guts'=> '1.20',
6439             'Locale::Maketext::GutsLoader'=> '1.20',
6440             'Module::CoreList' => '2.58',
6441             'Opcode' => '1.21',
6442             'Socket' => '1.94_02',
6443             'Storable' => '2.33',
6444             'UNIVERSAL' => '1.10',
6445             'Unicode::Collate' => '0.85',
6446             'Unicode::Collate::CJK::Pinyin'=> '0.85',
6447             'Unicode::Collate::CJK::Stroke'=> '0.85',
6448             'Unicode::Collate::Locale'=> '0.85',
6449             'Unicode::UCD' => '0.37',
6450             'XS::APItest' => '0.33',
6451             'arybase' => '0.01',
6452             'charnames' => '1.24',
6453             'feature' => '1.23',
6454             'perlfaq' => '5.0150036',
6455             'strict' => '1.05',
6456             'unicore::Name' => undef,
6457             },
6458             removed => {
6459             }
6460             },
6461             5.015006 => {
6462             delta_from => 5.015005,
6463             changed => {
6464             'Archive::Tar' => '1.82',
6465             'Archive::Tar::Constant'=> '1.82',
6466             'Archive::Tar::File' => '1.82',
6467             'AutoLoader' => '5.72',
6468             'B::Concise' => '0.88',
6469             'B::Debug' => '1.17',
6470             'B::Deparse' => '1.10',
6471             'CPAN::Meta::YAML' => '0.005',
6472             'CPANPLUS' => '0.9113',
6473             'CPANPLUS::Internals' => '0.9113',
6474             'CPANPLUS::Shell::Default'=> '0.9113',
6475             'Carp' => '1.24',
6476             'Compress::Raw::Bzip2' => '2.045',
6477             'Compress::Raw::Zlib' => '2.045',
6478             'Compress::Zlib' => '2.045',
6479             'Cwd' => '3.38',
6480             'DB' => '1.04',
6481             'Data::Dumper' => '2.135_01',
6482             'Digest::SHA' => '5.70',
6483             'Dumpvalue' => '1.17',
6484             'Exporter' => '5.66',
6485             'Exporter::Heavy' => '5.66',
6486             'ExtUtils::CBuilder' => '0.280205',
6487             'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6488             'ExtUtils::Packlist' => '1.45',
6489             'ExtUtils::ParseXS' => '3.08',
6490             'ExtUtils::ParseXS::Constants'=> '3.08',
6491             'ExtUtils::ParseXS::CountLines'=> '3.08',
6492             'ExtUtils::ParseXS::Utilities'=> '3.08',
6493             'File::Basename' => '2.84',
6494             'File::Glob' => '1.15',
6495             'File::Spec::Unix' => '3.35',
6496             'Getopt::Std' => '1.07',
6497             'I18N::LangTags' => '0.38',
6498             'IO::Compress::Adapter::Bzip2'=> '2.045',
6499             'IO::Compress::Adapter::Deflate'=> '2.045',
6500             'IO::Compress::Adapter::Identity'=> '2.045',
6501             'IO::Compress::Base' => '2.046',
6502             'IO::Compress::Base::Common'=> '2.045',
6503             'IO::Compress::Bzip2' => '2.045',
6504             'IO::Compress::Deflate' => '2.045',
6505             'IO::Compress::Gzip' => '2.045',
6506             'IO::Compress::Gzip::Constants'=> '2.045',
6507             'IO::Compress::RawDeflate'=> '2.045',
6508             'IO::Compress::Zip' => '2.046',
6509             'IO::Compress::Zip::Constants'=> '2.045',
6510             'IO::Compress::Zlib::Constants'=> '2.045',
6511             'IO::Compress::Zlib::Extra'=> '2.045',
6512             'IO::Dir' => '1.09',
6513             'IO::File' => '1.16',
6514             'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6515             'IO::Uncompress::Adapter::Identity'=> '2.045',
6516             'IO::Uncompress::Adapter::Inflate'=> '2.045',
6517             'IO::Uncompress::AnyInflate'=> '2.045',
6518             'IO::Uncompress::AnyUncompress'=> '2.045',
6519             'IO::Uncompress::Base' => '2.046',
6520             'IO::Uncompress::Bunzip2'=> '2.045',
6521             'IO::Uncompress::Gunzip'=> '2.045',
6522             'IO::Uncompress::Inflate'=> '2.045',
6523             'IO::Uncompress::RawInflate'=> '2.045',
6524             'IO::Uncompress::Unzip' => '2.046',
6525             'Locale::Codes' => '3.20',
6526             'Locale::Codes::Constants'=> '3.20',
6527             'Locale::Codes::Country'=> '3.20',
6528             'Locale::Codes::Country_Codes'=> '3.20',
6529             'Locale::Codes::Country_Retired'=> '3.20',
6530             'Locale::Codes::Currency'=> '3.20',
6531             'Locale::Codes::Currency_Codes'=> '3.20',
6532             'Locale::Codes::Currency_Retired'=> '3.20',
6533             'Locale::Codes::LangExt'=> '3.20',
6534             'Locale::Codes::LangExt_Codes'=> '3.20',
6535             'Locale::Codes::LangExt_Retired'=> '3.20',
6536             'Locale::Codes::LangFam'=> '3.20',
6537             'Locale::Codes::LangFam_Codes'=> '3.20',
6538             'Locale::Codes::LangFam_Retired'=> '3.20',
6539             'Locale::Codes::LangVar'=> '3.20',
6540             'Locale::Codes::LangVar_Codes'=> '3.20',
6541             'Locale::Codes::LangVar_Retired'=> '3.20',
6542             'Locale::Codes::Language'=> '3.20',
6543             'Locale::Codes::Language_Codes'=> '3.20',
6544             'Locale::Codes::Language_Retired'=> '3.20',
6545             'Locale::Codes::Script' => '3.20',
6546             'Locale::Codes::Script_Codes'=> '3.20',
6547             'Locale::Codes::Script_Retired'=> '3.20',
6548             'Locale::Country' => '3.20',
6549             'Locale::Currency' => '3.20',
6550             'Locale::Language' => '3.20',
6551             'Locale::Maketext' => '1.21',
6552             'Locale::Script' => '3.20',
6553             'Module::CoreList' => '2.59',
6554             'Module::Loaded' => '0.08',
6555             'Opcode' => '1.22',
6556             'POSIX' => '1.27',
6557             'Pod::Html' => '1.12',
6558             'Pod::LaTeX' => '0.60',
6559             'Pod::Perldoc' => '3.15_08',
6560             'Safe' => '2.30',
6561             'SelfLoader' => '1.20',
6562             'Socket' => '1.97',
6563             'Storable' => '2.34',
6564             'UNIVERSAL' => '1.11',
6565             'Unicode::Collate' => '0.87',
6566             'Unicode::Collate::Locale'=> '0.87',
6567             'XS::APItest' => '0.34',
6568             'arybase' => '0.02',
6569             'charnames' => '1.27',
6570             'diagnostics' => '1.26',
6571             'feature' => '1.24',
6572             'if' => '0.0602',
6573             'overload' => '1.16',
6574             'sigtrap' => '1.06',
6575             'strict' => '1.06',
6576             'threads' => '1.86',
6577             'version' => '0.96',
6578             },
6579             removed => {
6580             }
6581             },
6582             5.015007 => {
6583             delta_from => 5.015006,
6584             changed => {
6585             'B' => '1.33',
6586             'B::Deparse' => '1.11',
6587             'CGI' => '3.59',
6588             'CPAN::Meta' => '2.113640',
6589             'CPAN::Meta::Converter' => '2.113640',
6590             'CPAN::Meta::Feature' => '2.113640',
6591             'CPAN::Meta::History' => '2.113640',
6592             'CPAN::Meta::Prereqs' => '2.113640',
6593             'CPAN::Meta::Requirements'=> '2.113640',
6594             'CPAN::Meta::Spec' => '2.113640',
6595             'CPAN::Meta::Validator' => '2.113640',
6596             'CPANPLUS' => '0.9116',
6597             'CPANPLUS::Internals' => '0.9116',
6598             'CPANPLUS::Shell::Default'=> '0.9116',
6599             'Cwd' => '3.39_01',
6600             'Data::Dumper' => '2.135_03',
6601             'Devel::InnerPackage' => '0.4',
6602             'ExtUtils::CBuilder::Base'=> '0.280205',
6603             'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6604             'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6605             'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6606             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6607             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6608             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6609             'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6610             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6611             'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6612             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6613             'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6614             'ExtUtils::Manifest' => '1.61',
6615             'ExtUtils::Packlist' => '1.46',
6616             'ExtUtils::ParseXS' => '3.12',
6617             'ExtUtils::ParseXS::Constants'=> '3.12',
6618             'ExtUtils::ParseXS::CountLines'=> '3.12',
6619             'ExtUtils::ParseXS::Utilities'=> '3.12',
6620             'ExtUtils::Typemaps' => '1.03',
6621             'ExtUtils::Typemaps::Cmd'=> undef,
6622             'ExtUtils::Typemaps::Type'=> '0.06',
6623             'File::Glob' => '1.16',
6624             'File::Spec' => '3.39_01',
6625             'File::Spec::Cygwin' => '3.39_01',
6626             'File::Spec::Epoc' => '3.39_01',
6627             'File::Spec::Functions' => '3.39_01',
6628             'File::Spec::Mac' => '3.39_01',
6629             'File::Spec::OS2' => '3.39_01',
6630             'File::Spec::Unix' => '3.39_01',
6631             'File::Spec::VMS' => '3.39_01',
6632             'File::Spec::Win32' => '3.39_01',
6633             'IO::Dir' => '1.10',
6634             'IO::Pipe' => '1.15',
6635             'IO::Poll' => '0.09',
6636             'IO::Select' => '1.21',
6637             'IO::Socket' => '1.34',
6638             'IO::Socket::INET' => '1.33',
6639             'IO::Socket::UNIX' => '1.24',
6640             'Locale::Maketext' => '1.22',
6641             'Math::BigInt' => '1.998',
6642             'Module::CoreList' => '2.60',
6643             'Module::Pluggable' => '4.0',
6644             'POSIX' => '1.28',
6645             'PerlIO::scalar' => '0.13',
6646             'Pod::Html' => '1.13',
6647             'Pod::Perldoc' => '3.15_15',
6648             'Pod::Perldoc::BaseTo' => '3.15_15',
6649             'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6650             'Pod::Perldoc::ToANSI' => '3.15_15',
6651             'Pod::Perldoc::ToChecker'=> '3.15_15',
6652             'Pod::Perldoc::ToMan' => '3.15_15',
6653             'Pod::Perldoc::ToNroff' => '3.15_15',
6654             'Pod::Perldoc::ToPod' => '3.15_15',
6655             'Pod::Perldoc::ToRtf' => '3.15_15',
6656             'Pod::Perldoc::ToTerm' => '3.15_15',
6657             'Pod::Perldoc::ToText' => '3.15_15',
6658             'Pod::Perldoc::ToTk' => '3.15_15',
6659             'Pod::Perldoc::ToXml' => '3.15_15',
6660             'Term::UI' => '0.30',
6661             'Tie::File' => '0.98',
6662             'Unicode::UCD' => '0.39',
6663             'Version::Requirements' => '0.101021',
6664             'XS::APItest' => '0.35',
6665             '_charnames' => '1.28',
6666             'arybase' => '0.03',
6667             'autouse' => '1.07',
6668             'charnames' => '1.28',
6669             'diagnostics' => '1.27',
6670             'feature' => '1.25',
6671             'overload' => '1.17',
6672             'overloading' => '0.02',
6673             'perlfaq' => '5.0150038',
6674             },
6675             removed => {
6676             }
6677             },
6678             5.015008 => {
6679             delta_from => 5.015007,
6680             changed => {
6681             'B' => '1.34',
6682             'B::Deparse' => '1.12',
6683             'CPAN::Meta' => '2.120351',
6684             'CPAN::Meta::Converter' => '2.120351',
6685             'CPAN::Meta::Feature' => '2.120351',
6686             'CPAN::Meta::History' => '2.120351',
6687             'CPAN::Meta::Prereqs' => '2.120351',
6688             'CPAN::Meta::Requirements'=> '2.120351',
6689             'CPAN::Meta::Spec' => '2.120351',
6690             'CPAN::Meta::Validator' => '2.120351',
6691             'CPAN::Meta::YAML' => '0.007',
6692             'CPANPLUS' => '0.9118',
6693             'CPANPLUS::Dist::Build' => '0.62',
6694             'CPANPLUS::Dist::Build::Constants'=> '0.62',
6695             'CPANPLUS::Internals' => '0.9118',
6696             'CPANPLUS::Shell::Default'=> '0.9118',
6697             'Carp' => '1.25',
6698             'Carp::Heavy' => '1.25',
6699             'Compress::Raw::Bzip2' => '2.048',
6700             'Compress::Raw::Zlib' => '2.048',
6701             'Compress::Zlib' => '2.048',
6702             'Cwd' => '3.39_02',
6703             'DB_File' => '1.826',
6704             'Data::Dumper' => '2.135_05',
6705             'English' => '1.05',
6706             'ExtUtils::Install' => '1.58',
6707             'ExtUtils::ParseXS' => '3.16',
6708             'ExtUtils::ParseXS::Constants'=> '3.16',
6709             'ExtUtils::ParseXS::CountLines'=> '3.16',
6710             'ExtUtils::ParseXS::Utilities'=> '3.16',
6711             'ExtUtils::Typemaps' => '3.16',
6712             'ExtUtils::Typemaps::Cmd'=> '3.16',
6713             'ExtUtils::Typemaps::InputMap'=> '3.16',
6714             'ExtUtils::Typemaps::OutputMap'=> '3.16',
6715             'ExtUtils::Typemaps::Type'=> '3.16',
6716             'File::Copy' => '2.23',
6717             'File::Glob' => '1.17',
6718             'File::Spec' => '3.39_02',
6719             'File::Spec::Cygwin' => '3.39_02',
6720             'File::Spec::Epoc' => '3.39_02',
6721             'File::Spec::Functions' => '3.39_02',
6722             'File::Spec::Mac' => '3.39_02',
6723             'File::Spec::OS2' => '3.39_02',
6724             'File::Spec::Unix' => '3.39_02',
6725             'File::Spec::VMS' => '3.39_02',
6726             'File::Spec::Win32' => '3.39_02',
6727             'Filter::Util::Call' => '1.40',
6728             'IO::Compress::Adapter::Bzip2'=> '2.048',
6729             'IO::Compress::Adapter::Deflate'=> '2.048',
6730             'IO::Compress::Adapter::Identity'=> '2.048',
6731             'IO::Compress::Base' => '2.048',
6732             'IO::Compress::Base::Common'=> '2.048',
6733             'IO::Compress::Bzip2' => '2.048',
6734             'IO::Compress::Deflate' => '2.048',
6735             'IO::Compress::Gzip' => '2.048',
6736             'IO::Compress::Gzip::Constants'=> '2.048',
6737             'IO::Compress::RawDeflate'=> '2.048',
6738             'IO::Compress::Zip' => '2.048',
6739             'IO::Compress::Zip::Constants'=> '2.048',
6740             'IO::Compress::Zlib::Constants'=> '2.048',
6741             'IO::Compress::Zlib::Extra'=> '2.048',
6742             'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6743             'IO::Uncompress::Adapter::Identity'=> '2.048',
6744             'IO::Uncompress::Adapter::Inflate'=> '2.048',
6745             'IO::Uncompress::AnyInflate'=> '2.048',
6746             'IO::Uncompress::AnyUncompress'=> '2.048',
6747             'IO::Uncompress::Base' => '2.048',
6748             'IO::Uncompress::Bunzip2'=> '2.048',
6749             'IO::Uncompress::Gunzip'=> '2.048',
6750             'IO::Uncompress::Inflate'=> '2.048',
6751             'IO::Uncompress::RawInflate'=> '2.048',
6752             'IO::Uncompress::Unzip' => '2.048',
6753             'IPC::Cmd' => '0.76',
6754             'Math::Complex' => '1.59',
6755             'Math::Trig' => '1.23',
6756             'Module::Metadata' => '1.000009',
6757             'Opcode' => '1.23',
6758             'POSIX' => '1.30',
6759             'Parse::CPAN::Meta' => '1.4402',
6760             'PerlIO::mmap' => '0.010',
6761             'Pod::Checker' => '1.51',
6762             'Pod::Find' => '1.51',
6763             'Pod::Functions' => '1.05',
6764             'Pod::Html' => '1.14',
6765             'Pod::InputObjects' => '1.51',
6766             'Pod::ParseUtils' => '1.51',
6767             'Pod::Parser' => '1.51',
6768             'Pod::PlainText' => '2.05',
6769             'Pod::Select' => '1.51',
6770             'Pod::Usage' => '1.51',
6771             'Safe' => '2.31',
6772             'Socket' => '1.98',
6773             'Term::Cap' => '1.13',
6774             'Term::ReadLine' => '1.08',
6775             'Time::HiRes' => '1.9725',
6776             'Unicode' => '6.1.0',
6777             'Unicode::UCD' => '0.41',
6778             'Version::Requirements' => '0.101022',
6779             'XS::APItest' => '0.36',
6780             'XS::Typemap' => '0.08',
6781             '_charnames' => '1.29',
6782             'arybase' => '0.04',
6783             'charnames' => '1.29',
6784             'diagnostics' => '1.28',
6785             'feature' => '1.26',
6786             'locale' => '1.01',
6787             'overload' => '1.18',
6788             'perlfaq' => '5.0150039',
6789             're' => '0.19',
6790             'subs' => '1.01',
6791             'warnings' => '1.13',
6792             },
6793             removed => {
6794             }
6795             },
6796             5.015009 => {
6797             delta_from => 5.015008,
6798             changed => {
6799             'B::Deparse' => '1.13',
6800             'B::Lint' => '1.14',
6801             'B::Lint::Debug' => '1.14',
6802             'CPAN::Meta' => '2.120630',
6803             'CPAN::Meta::Converter' => '2.120630',
6804             'CPAN::Meta::Feature' => '2.120630',
6805             'CPAN::Meta::History' => '2.120630',
6806             'CPAN::Meta::Prereqs' => '2.120630',
6807             'CPAN::Meta::Requirements'=> '2.120630',
6808             'CPAN::Meta::Spec' => '2.120630',
6809             'CPAN::Meta::Validator' => '2.120630',
6810             'CPANPLUS' => '0.9121',
6811             'CPANPLUS::Internals' => '0.9121',
6812             'CPANPLUS::Shell::Default'=> '0.9121',
6813             'Data::Dumper' => '2.135_06',
6814             'Digest::SHA' => '5.71',
6815             'ExtUtils::CBuilder' => '0.280206',
6816             'ExtUtils::CBuilder::Base'=> '0.280206',
6817             'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6818             'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6819             'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6820             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6821             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6822             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6823             'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6824             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6825             'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6826             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6827             'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6828             'HTTP::Tiny' => '0.017',
6829             'Locale::Codes' => '3.21',
6830             'Locale::Codes::Constants'=> '3.21',
6831             'Locale::Codes::Country'=> '3.21',
6832             'Locale::Codes::Country_Codes'=> '3.21',
6833             'Locale::Codes::Country_Retired'=> '3.21',
6834             'Locale::Codes::Currency'=> '3.21',
6835             'Locale::Codes::Currency_Codes'=> '3.21',
6836             'Locale::Codes::Currency_Retired'=> '3.21',
6837             'Locale::Codes::LangExt'=> '3.21',
6838             'Locale::Codes::LangExt_Codes'=> '3.21',
6839             'Locale::Codes::LangExt_Retired'=> '3.21',
6840             'Locale::Codes::LangFam'=> '3.21',
6841             'Locale::Codes::LangFam_Codes'=> '3.21',
6842             'Locale::Codes::LangFam_Retired'=> '3.21',
6843             'Locale::Codes::LangVar'=> '3.21',
6844             'Locale::Codes::LangVar_Codes'=> '3.21',
6845             'Locale::Codes::LangVar_Retired'=> '3.21',
6846             'Locale::Codes::Language'=> '3.21',
6847             'Locale::Codes::Language_Codes'=> '3.21',
6848             'Locale::Codes::Language_Retired'=> '3.21',
6849             'Locale::Codes::Script' => '3.21',
6850             'Locale::Codes::Script_Codes'=> '3.21',
6851             'Locale::Codes::Script_Retired'=> '3.21',
6852             'Locale::Country' => '3.21',
6853             'Locale::Currency' => '3.21',
6854             'Locale::Language' => '3.21',
6855             'Locale::Script' => '3.21',
6856             'Module::CoreList' => '2.65',
6857             'Pod::Html' => '1.1501',
6858             'Pod::Perldoc' => '3.17',
6859             'Pod::Perldoc::BaseTo' => '3.17',
6860             'Pod::Perldoc::GetOptsOO'=> '3.17',
6861             'Pod::Perldoc::ToANSI' => '3.17',
6862             'Pod::Perldoc::ToChecker'=> '3.17',
6863             'Pod::Perldoc::ToMan' => '3.17',
6864             'Pod::Perldoc::ToNroff' => '3.17',
6865             'Pod::Perldoc::ToPod' => '3.17',
6866             'Pod::Perldoc::ToRtf' => '3.17',
6867             'Pod::Perldoc::ToTerm' => '3.17',
6868             'Pod::Perldoc::ToText' => '3.17',
6869             'Pod::Perldoc::ToTk' => '3.17',
6870             'Pod::Perldoc::ToXml' => '3.17',
6871             'Pod::Simple' => '3.20',
6872             'Pod::Simple::BlackBox' => '3.20',
6873             'Pod::Simple::Checker' => '3.20',
6874             'Pod::Simple::Debug' => '3.20',
6875             'Pod::Simple::DumpAsText'=> '3.20',
6876             'Pod::Simple::DumpAsXML'=> '3.20',
6877             'Pod::Simple::HTML' => '3.20',
6878             'Pod::Simple::HTMLBatch'=> '3.20',
6879             'Pod::Simple::LinkSection'=> '3.20',
6880             'Pod::Simple::Methody' => '3.20',
6881             'Pod::Simple::Progress' => '3.20',
6882             'Pod::Simple::PullParser'=> '3.20',
6883             'Pod::Simple::PullParserEndToken'=> '3.20',
6884             'Pod::Simple::PullParserStartToken'=> '3.20',
6885             'Pod::Simple::PullParserTextToken'=> '3.20',
6886             'Pod::Simple::PullParserToken'=> '3.20',
6887             'Pod::Simple::RTF' => '3.20',
6888             'Pod::Simple::Search' => '3.20',
6889             'Pod::Simple::SimpleTree'=> '3.20',
6890             'Pod::Simple::Text' => '3.20',
6891             'Pod::Simple::TextContent'=> '3.20',
6892             'Pod::Simple::TiedOutFH'=> '3.20',
6893             'Pod::Simple::Transcode'=> '3.20',
6894             'Pod::Simple::TranscodeDumb'=> '3.20',
6895             'Pod::Simple::TranscodeSmart'=> '3.20',
6896             'Pod::Simple::XHTML' => '3.20',
6897             'Pod::Simple::XMLOutStream'=> '3.20',
6898             'Socket' => '2.000',
6899             'Term::ReadLine' => '1.09',
6900             'Unicode::Collate' => '0.89',
6901             'Unicode::Collate::CJK::Korean'=> '0.88',
6902             'Unicode::Collate::Locale'=> '0.89',
6903             'Unicode::Normalize' => '1.14',
6904             'Unicode::UCD' => '0.42',
6905             'XS::APItest' => '0.37',
6906             'arybase' => '0.05',
6907             'attributes' => '0.18',
6908             'charnames' => '1.30',
6909             'feature' => '1.27',
6910             },
6911             removed => {
6912             }
6913             },
6914             5.016 => {
6915             delta_from => 5.015009,
6916             changed => {
6917             'B::Concise' => '0.89',
6918             'B::Deparse' => '1.14',
6919             'Carp' => '1.26',
6920             'Carp::Heavy' => '1.26',
6921             'IO::Socket' => '1.35',
6922             'Module::CoreList' => '2.66',
6923             'PerlIO::scalar' => '0.14',
6924             'Pod::Html' => '1.1502',
6925             'Safe' => '2.31_01',
6926             'Socket' => '2.001',
6927             'Unicode::UCD' => '0.43',
6928             'XS::APItest' => '0.38',
6929             '_charnames' => '1.31',
6930             'attributes' => '0.19',
6931             'strict' => '1.07',
6932             'version' => '0.99',
6933             },
6934             removed => {
6935             }
6936             },
6937             5.016001 => {
6938             delta_from => 5.016,
6939             changed => {
6940             'B' => '1.35',
6941             'B::Deparse' => '1.14_01',
6942             'List::Util' => '1.25',
6943             'List::Util::PP' => '1.25',
6944             'List::Util::XS' => '1.25',
6945             'Module::CoreList' => '2.70',
6946             'PerlIO::scalar' => '0.14_01',
6947             'Scalar::Util' => '1.25',
6948             'Scalar::Util::PP' => '1.25',
6949             're' => '0.19_01',
6950             },
6951             removed => {
6952             }
6953             },
6954             5.016002 => {
6955             delta_from => 5.016001,
6956             changed => {
6957             'Module::CoreList' => '2.76',
6958             },
6959             removed => {
6960             }
6961             },
6962             5.016003 => {
6963             delta_from => 5.016002,
6964             changed => {
6965             'Encode' => '2.44_01',
6966             'Module::CoreList' => '2.76_02',
6967             'XS::APItest' => '0.39',
6968             },
6969             removed => {
6970             }
6971             },
6972             5.017 => {
6973             delta_from => 5.016,
6974             changed => {
6975             'B' => '1.35',
6976             'B::Concise' => '0.90',
6977             'ExtUtils::ParseXS' => '3.17',
6978             'ExtUtils::ParseXS::Utilities'=> '3.17',
6979             'File::DosGlob' => '1.07',
6980             'File::Find' => '1.21',
6981             'File::stat' => '1.06',
6982             'Hash::Util' => '0.12',
6983             'IO::Socket' => '1.34',
6984             'Module::CoreList' => '2.67',
6985             'Pod::Functions' => '1.06',
6986             'Storable' => '2.35',
6987             'XS::APItest' => '0.39',
6988             'diagnostics' => '1.29',
6989             'feature' => '1.28',
6990             'overload' => '1.19',
6991             'utf8' => '1.10',
6992             },
6993             removed => {
6994             'Version::Requirements' => 1,
6995             }
6996             },
6997             5.017001 => {
6998             delta_from => 5.017,
6999             changed => {
7000             'App::Prove' => '3.25',
7001             'App::Prove::State' => '3.25',
7002             'App::Prove::State::Result'=> '3.25',
7003             'App::Prove::State::Result::Test'=> '3.25',
7004             'Archive::Extract' => '0.60',
7005             'Archive::Tar' => '1.88',
7006             'Archive::Tar::Constant'=> '1.88',
7007             'Archive::Tar::File' => '1.88',
7008             'B' => '1.36',
7009             'B::Deparse' => '1.15',
7010             'CPAN::Meta' => '2.120921',
7011             'CPAN::Meta::Converter' => '2.120921',
7012             'CPAN::Meta::Feature' => '2.120921',
7013             'CPAN::Meta::History' => '2.120921',
7014             'CPAN::Meta::Prereqs' => '2.120921',
7015             'CPAN::Meta::Requirements'=> '2.122',
7016             'CPAN::Meta::Spec' => '2.120921',
7017             'CPAN::Meta::Validator' => '2.120921',
7018             'CPAN::Meta::YAML' => '0.008',
7019             'CPANPLUS' => '0.9130',
7020             'CPANPLUS::Config::HomeEnv'=> '0.04',
7021             'CPANPLUS::Internals' => '0.9130',
7022             'CPANPLUS::Shell::Default'=> '0.9130',
7023             'Class::Struct' => '0.64',
7024             'Compress::Raw::Bzip2' => '2.052',
7025             'Compress::Raw::Zlib' => '2.054',
7026             'Compress::Zlib' => '2.052',
7027             'Digest::MD5' => '2.52',
7028             'DynaLoader' => '1.15',
7029             'ExtUtils::CBuilder' => '0.280208',
7030             'ExtUtils::CBuilder::Base'=> '0.280208',
7031             'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
7032             'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
7033             'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
7034             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
7035             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
7036             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
7037             'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
7038             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
7039             'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
7040             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
7041             'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
7042             'Fatal' => '2.11',
7043             'File::DosGlob' => '1.08',
7044             'File::Fetch' => '0.34',
7045             'File::Spec::Unix' => '3.39_03',
7046             'Filter::Util::Call' => '1.45',
7047             'HTTP::Tiny' => '0.022',
7048             'IO' => '1.25_07',
7049             'IO::Compress::Adapter::Bzip2'=> '2.052',
7050             'IO::Compress::Adapter::Deflate'=> '2.052',
7051             'IO::Compress::Adapter::Identity'=> '2.052',
7052             'IO::Compress::Base' => '2.052',
7053             'IO::Compress::Base::Common'=> '2.052',
7054             'IO::Compress::Bzip2' => '2.052',
7055             'IO::Compress::Deflate' => '2.052',
7056             'IO::Compress::Gzip' => '2.052',
7057             'IO::Compress::Gzip::Constants'=> '2.052',
7058             'IO::Compress::RawDeflate'=> '2.052',
7059             'IO::Compress::Zip' => '2.052',
7060             'IO::Compress::Zip::Constants'=> '2.052',
7061             'IO::Compress::Zlib::Constants'=> '2.052',
7062             'IO::Compress::Zlib::Extra'=> '2.052',
7063             'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
7064             'IO::Uncompress::Adapter::Identity'=> '2.052',
7065             'IO::Uncompress::Adapter::Inflate'=> '2.052',
7066             'IO::Uncompress::AnyInflate'=> '2.052',
7067             'IO::Uncompress::AnyUncompress'=> '2.052',
7068             'IO::Uncompress::Base' => '2.052',
7069             'IO::Uncompress::Bunzip2'=> '2.052',
7070             'IO::Uncompress::Gunzip'=> '2.052',
7071             'IO::Uncompress::Inflate'=> '2.052',
7072             'IO::Uncompress::RawInflate'=> '2.052',
7073             'IO::Uncompress::Unzip' => '2.052',
7074             'IPC::Cmd' => '0.78',
7075             'List::Util' => '1.25',
7076             'List::Util::XS' => '1.25',
7077             'Locale::Codes' => '3.22',
7078             'Locale::Codes::Constants'=> '3.22',
7079             'Locale::Codes::Country'=> '3.22',
7080             'Locale::Codes::Country_Codes'=> '3.22',
7081             'Locale::Codes::Country_Retired'=> '3.22',
7082             'Locale::Codes::Currency'=> '3.22',
7083             'Locale::Codes::Currency_Codes'=> '3.22',
7084             'Locale::Codes::Currency_Retired'=> '3.22',
7085             'Locale::Codes::LangExt'=> '3.22',
7086             'Locale::Codes::LangExt_Codes'=> '3.22',
7087             'Locale::Codes::LangExt_Retired'=> '3.22',
7088             'Locale::Codes::LangFam'=> '3.22',
7089             'Locale::Codes::LangFam_Codes'=> '3.22',
7090             'Locale::Codes::LangFam_Retired'=> '3.22',
7091             'Locale::Codes::LangVar'=> '3.22',
7092             'Locale::Codes::LangVar_Codes'=> '3.22',
7093             'Locale::Codes::LangVar_Retired'=> '3.22',
7094             'Locale::Codes::Language'=> '3.22',
7095             'Locale::Codes::Language_Codes'=> '3.22',
7096             'Locale::Codes::Language_Retired'=> '3.22',
7097             'Locale::Codes::Script' => '3.22',
7098             'Locale::Codes::Script_Codes'=> '3.22',
7099             'Locale::Codes::Script_Retired'=> '3.22',
7100             'Locale::Country' => '3.22',
7101             'Locale::Currency' => '3.22',
7102             'Locale::Language' => '3.22',
7103             'Locale::Script' => '3.22',
7104             'Memoize' => '1.03',
7105             'Memoize::AnyDBM_File' => '1.03',
7106             'Memoize::Expire' => '1.03',
7107             'Memoize::ExpireFile' => '1.03',
7108             'Memoize::ExpireTest' => '1.03',
7109             'Memoize::NDBM_File' => '1.03',
7110             'Memoize::SDBM_File' => '1.03',
7111             'Memoize::Storable' => '1.03',
7112             'Module::Build' => '0.40',
7113             'Module::Build::Base' => '0.40',
7114             'Module::Build::Compat' => '0.40',
7115             'Module::Build::Config' => '0.40',
7116             'Module::Build::Cookbook'=> '0.40',
7117             'Module::Build::Dumper' => '0.40',
7118             'Module::Build::ModuleInfo'=> '0.40',
7119             'Module::Build::Notes' => '0.40',
7120             'Module::Build::PPMMaker'=> '0.40',
7121             'Module::Build::Platform::Amiga'=> '0.40',
7122             'Module::Build::Platform::Default'=> '0.40',
7123             'Module::Build::Platform::EBCDIC'=> '0.40',
7124             'Module::Build::Platform::MPEiX'=> '0.40',
7125             'Module::Build::Platform::MacOS'=> '0.40',
7126             'Module::Build::Platform::RiscOS'=> '0.40',
7127             'Module::Build::Platform::Unix'=> '0.40',
7128             'Module::Build::Platform::VMS'=> '0.40',
7129             'Module::Build::Platform::VOS'=> '0.40',
7130             'Module::Build::Platform::Windows'=> '0.40',
7131             'Module::Build::Platform::aix'=> '0.40',
7132             'Module::Build::Platform::cygwin'=> '0.40',
7133             'Module::Build::Platform::darwin'=> '0.40',
7134             'Module::Build::Platform::os2'=> '0.40',
7135             'Module::Build::PodParser'=> '0.40',
7136             'Module::CoreList' => '2.68',
7137             'Module::Load::Conditional'=> '0.50',
7138             'Object::Accessor' => '0.44',
7139             'POSIX' => '1.31',
7140             'Params::Check' => '0.36',
7141             'Parse::CPAN::Meta' => '1.4404',
7142             'PerlIO::mmap' => '0.011',
7143             'PerlIO::via::QuotedPrint'=> '0.07',
7144             'Pod::Html' => '1.16',
7145             'Pod::Man' => '2.26',
7146             'Pod::Text' => '3.16',
7147             'Safe' => '2.33_01',
7148             'Scalar::Util' => '1.25',
7149             'Search::Dict' => '1.07',
7150             'Storable' => '2.36',
7151             'TAP::Base' => '3.25',
7152             'TAP::Formatter::Base' => '3.25',
7153             'TAP::Formatter::Color' => '3.25',
7154             'TAP::Formatter::Console'=> '3.25',
7155             'TAP::Formatter::Console::ParallelSession'=> '3.25',
7156             'TAP::Formatter::Console::Session'=> '3.25',
7157             'TAP::Formatter::File' => '3.25',
7158             'TAP::Formatter::File::Session'=> '3.25',
7159             'TAP::Formatter::Session'=> '3.25',
7160             'TAP::Harness' => '3.25',
7161             'TAP::Object' => '3.25',
7162             'TAP::Parser' => '3.25',
7163             'TAP::Parser::Aggregator'=> '3.25',
7164             'TAP::Parser::Grammar' => '3.25',
7165             'TAP::Parser::Iterator' => '3.25',
7166             'TAP::Parser::Iterator::Array'=> '3.25',
7167             'TAP::Parser::Iterator::Process'=> '3.25',
7168             'TAP::Parser::Iterator::Stream'=> '3.25',
7169             'TAP::Parser::IteratorFactory'=> '3.25',
7170             'TAP::Parser::Multiplexer'=> '3.25',
7171             'TAP::Parser::Result' => '3.25',
7172             'TAP::Parser::Result::Bailout'=> '3.25',
7173             'TAP::Parser::Result::Comment'=> '3.25',
7174             'TAP::Parser::Result::Plan'=> '3.25',
7175             'TAP::Parser::Result::Pragma'=> '3.25',
7176             'TAP::Parser::Result::Test'=> '3.25',
7177             'TAP::Parser::Result::Unknown'=> '3.25',
7178             'TAP::Parser::Result::Version'=> '3.25',
7179             'TAP::Parser::Result::YAML'=> '3.25',
7180             'TAP::Parser::ResultFactory'=> '3.25',
7181             'TAP::Parser::Scheduler'=> '3.25',
7182             'TAP::Parser::Scheduler::Job'=> '3.25',
7183             'TAP::Parser::Scheduler::Spinner'=> '3.25',
7184             'TAP::Parser::Source' => '3.25',
7185             'TAP::Parser::SourceHandler'=> '3.25',
7186             'TAP::Parser::SourceHandler::Executable'=> '3.25',
7187             'TAP::Parser::SourceHandler::File'=> '3.25',
7188             'TAP::Parser::SourceHandler::Handle'=> '3.25',
7189             'TAP::Parser::SourceHandler::Perl'=> '3.25',
7190             'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7191             'TAP::Parser::Utils' => '3.25',
7192             'TAP::Parser::YAMLish::Reader'=> '3.25',
7193             'TAP::Parser::YAMLish::Writer'=> '3.25',
7194             'Term::ANSIColor' => '3.02',
7195             'Test::Harness' => '3.25',
7196             'Unicode' => '6.2.0',
7197             'Unicode::UCD' => '0.44',
7198             'XS::APItest' => '0.40',
7199             '_charnames' => '1.32',
7200             'attributes' => '0.2',
7201             'autodie' => '2.11',
7202             'autodie::exception' => '2.11',
7203             'autodie::exception::system'=> '2.11',
7204             'autodie::hints' => '2.11',
7205             'bigint' => '0.30',
7206             'charnames' => '1.32',
7207             'feature' => '1.29',
7208             'inc::latest' => '0.40',
7209             'perlfaq' => '5.0150040',
7210             're' => '0.20',
7211             },
7212             removed => {
7213             'List::Util::PP' => 1,
7214             'Scalar::Util::PP' => 1,
7215             }
7216             },
7217             5.017002 => {
7218             delta_from => 5.017001,
7219             changed => {
7220             'App::Prove' => '3.25_01',
7221             'App::Prove::State' => '3.25_01',
7222             'App::Prove::State::Result'=> '3.25_01',
7223             'App::Prove::State::Result::Test'=> '3.25_01',
7224             'B::Concise' => '0.91',
7225             'Compress::Raw::Bzip2' => '2.05201',
7226             'Compress::Raw::Zlib' => '2.05401',
7227             'Exporter' => '5.67',
7228             'Exporter::Heavy' => '5.67',
7229             'Fatal' => '2.12',
7230             'File::Fetch' => '0.36',
7231             'File::stat' => '1.07',
7232             'IO' => '1.25_08',
7233             'IO::Socket' => '1.35',
7234             'Module::CoreList' => '2.69',
7235             'PerlIO::scalar' => '0.15',
7236             'Socket' => '2.002',
7237             'Storable' => '2.37',
7238             'TAP::Base' => '3.25_01',
7239             'TAP::Formatter::Base' => '3.25_01',
7240             'TAP::Formatter::Color' => '3.25_01',
7241             'TAP::Formatter::Console'=> '3.25_01',
7242             'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7243             'TAP::Formatter::Console::Session'=> '3.25_01',
7244             'TAP::Formatter::File' => '3.25_01',
7245             'TAP::Formatter::File::Session'=> '3.25_01',
7246             'TAP::Formatter::Session'=> '3.25_01',
7247             'TAP::Harness' => '3.25_01',
7248             'TAP::Object' => '3.25_01',
7249             'TAP::Parser' => '3.25_01',
7250             'TAP::Parser::Aggregator'=> '3.25_01',
7251             'TAP::Parser::Grammar' => '3.25_01',
7252             'TAP::Parser::Iterator' => '3.25_01',
7253             'TAP::Parser::Iterator::Array'=> '3.25_01',
7254             'TAP::Parser::Iterator::Process'=> '3.25_01',
7255             'TAP::Parser::Iterator::Stream'=> '3.25_01',
7256             'TAP::Parser::IteratorFactory'=> '3.25_01',
7257             'TAP::Parser::Multiplexer'=> '3.25_01',
7258             'TAP::Parser::Result' => '3.25_01',
7259             'TAP::Parser::Result::Bailout'=> '3.25_01',
7260             'TAP::Parser::Result::Comment'=> '3.25_01',
7261             'TAP::Parser::Result::Plan'=> '3.25_01',
7262             'TAP::Parser::Result::Pragma'=> '3.25_01',
7263             'TAP::Parser::Result::Test'=> '3.25_01',
7264             'TAP::Parser::Result::Unknown'=> '3.25_01',
7265             'TAP::Parser::Result::Version'=> '3.25_01',
7266             'TAP::Parser::Result::YAML'=> '3.25_01',
7267             'TAP::Parser::ResultFactory'=> '3.25_01',
7268             'TAP::Parser::Scheduler'=> '3.25_01',
7269             'TAP::Parser::Scheduler::Job'=> '3.25_01',
7270             'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7271             'TAP::Parser::Source' => '3.25_01',
7272             'TAP::Parser::SourceHandler'=> '3.25_01',
7273             'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7274             'TAP::Parser::SourceHandler::File'=> '3.25_01',
7275             'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7276             'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7277             'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7278             'TAP::Parser::Utils' => '3.25_01',
7279             'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7280             'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7281             'Test::Harness' => '3.25_01',
7282             'Tie::StdHandle' => '4.3',
7283             'XS::APItest' => '0.41',
7284             'autodie' => '2.12',
7285             'autodie::exception' => '2.12',
7286             'autodie::exception::system'=> '2.12',
7287             'autodie::hints' => '2.12',
7288             'diagnostics' => '1.30',
7289             'overload' => '1.20',
7290             're' => '0.21',
7291             'vars' => '1.03',
7292             },
7293             removed => {
7294             }
7295             },
7296             5.017003 => {
7297             delta_from => 5.017002,
7298             changed => {
7299             'B' => '1.37',
7300             'B::Concise' => '0.92',
7301             'B::Debug' => '1.18',
7302             'B::Deparse' => '1.16',
7303             'CGI' => '3.60',
7304             'Compress::Raw::Bzip2' => '2.055',
7305             'Compress::Raw::Zlib' => '2.056',
7306             'Compress::Zlib' => '2.055',
7307             'Data::Dumper' => '2.135_07',
7308             'Devel::Peek' => '1.09',
7309             'Encode' => '2.47',
7310             'Encode::Alias' => '2.16',
7311             'Encode::GSM0338' => '2.02',
7312             'Encode::Unicode::UTF7' => '2.06',
7313             'IO::Compress::Adapter::Bzip2'=> '2.055',
7314             'IO::Compress::Adapter::Deflate'=> '2.055',
7315             'IO::Compress::Adapter::Identity'=> '2.055',
7316             'IO::Compress::Base' => '2.055',
7317             'IO::Compress::Base::Common'=> '2.055',
7318             'IO::Compress::Bzip2' => '2.055',
7319             'IO::Compress::Deflate' => '2.055',
7320             'IO::Compress::Gzip' => '2.055',
7321             'IO::Compress::Gzip::Constants'=> '2.055',
7322             'IO::Compress::RawDeflate'=> '2.055',
7323             'IO::Compress::Zip' => '2.055',
7324             'IO::Compress::Zip::Constants'=> '2.055',
7325             'IO::Compress::Zlib::Constants'=> '2.055',
7326             'IO::Compress::Zlib::Extra'=> '2.055',
7327             'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7328             'IO::Uncompress::Adapter::Identity'=> '2.055',
7329             'IO::Uncompress::Adapter::Inflate'=> '2.055',
7330             'IO::Uncompress::AnyInflate'=> '2.055',
7331             'IO::Uncompress::AnyUncompress'=> '2.055',
7332             'IO::Uncompress::Base' => '2.055',
7333             'IO::Uncompress::Bunzip2'=> '2.055',
7334             'IO::Uncompress::Gunzip'=> '2.055',
7335             'IO::Uncompress::Inflate'=> '2.055',
7336             'IO::Uncompress::RawInflate'=> '2.055',
7337             'IO::Uncompress::Unzip' => '2.055',
7338             'Module::Build' => '0.4003',
7339             'Module::Build::Base' => '0.4003',
7340             'Module::Build::Compat' => '0.4003',
7341             'Module::Build::Config' => '0.4003',
7342             'Module::Build::Cookbook'=> '0.4003',
7343             'Module::Build::Dumper' => '0.4003',
7344             'Module::Build::ModuleInfo'=> '0.4003',
7345             'Module::Build::Notes' => '0.4003',
7346             'Module::Build::PPMMaker'=> '0.4003',
7347             'Module::Build::Platform::Amiga'=> '0.4003',
7348             'Module::Build::Platform::Default'=> '0.4003',
7349             'Module::Build::Platform::EBCDIC'=> '0.4003',
7350             'Module::Build::Platform::MPEiX'=> '0.4003',
7351             'Module::Build::Platform::MacOS'=> '0.4003',
7352             'Module::Build::Platform::RiscOS'=> '0.4003',
7353             'Module::Build::Platform::Unix'=> '0.4003',
7354             'Module::Build::Platform::VMS'=> '0.4003',
7355             'Module::Build::Platform::VOS'=> '0.4003',
7356             'Module::Build::Platform::Windows'=> '0.4003',
7357             'Module::Build::Platform::aix'=> '0.4003',
7358             'Module::Build::Platform::cygwin'=> '0.4003',
7359             'Module::Build::Platform::darwin'=> '0.4003',
7360             'Module::Build::Platform::os2'=> '0.4003',
7361             'Module::Build::PodParser'=> '0.4003',
7362             'Module::CoreList' => '2.71',
7363             'Module::CoreList::TieHashDelta'=> '2.71',
7364             'Module::Load::Conditional'=> '0.54',
7365             'Module::Metadata' => '1.000011',
7366             'Module::Pluggable' => '4.3',
7367             'Module::Pluggable::Object'=> '4.3',
7368             'Pod::Simple' => '3.23',
7369             'Pod::Simple::BlackBox' => '3.23',
7370             'Pod::Simple::Checker' => '3.23',
7371             'Pod::Simple::Debug' => '3.23',
7372             'Pod::Simple::DumpAsText'=> '3.23',
7373             'Pod::Simple::DumpAsXML'=> '3.23',
7374             'Pod::Simple::HTML' => '3.23',
7375             'Pod::Simple::HTMLBatch'=> '3.23',
7376             'Pod::Simple::LinkSection'=> '3.23',
7377             'Pod::Simple::Methody' => '3.23',
7378             'Pod::Simple::Progress' => '3.23',
7379             'Pod::Simple::PullParser'=> '3.23',
7380             'Pod::Simple::PullParserEndToken'=> '3.23',
7381             'Pod::Simple::PullParserStartToken'=> '3.23',
7382             'Pod::Simple::PullParserTextToken'=> '3.23',
7383             'Pod::Simple::PullParserToken'=> '3.23',
7384             'Pod::Simple::RTF' => '3.23',
7385             'Pod::Simple::Search' => '3.23',
7386             'Pod::Simple::SimpleTree'=> '3.23',
7387             'Pod::Simple::Text' => '3.23',
7388             'Pod::Simple::TextContent'=> '3.23',
7389             'Pod::Simple::TiedOutFH'=> '3.23',
7390             'Pod::Simple::Transcode'=> '3.23',
7391             'Pod::Simple::TranscodeDumb'=> '3.23',
7392             'Pod::Simple::TranscodeSmart'=> '3.23',
7393             'Pod::Simple::XHTML' => '3.23',
7394             'Pod::Simple::XMLOutStream'=> '3.23',
7395             'Socket' => '2.004',
7396             'Storable' => '2.38',
7397             'Sys::Syslog' => '0.31',
7398             'Term::ReadLine' => '1.10',
7399             'Text::Tabs' => '2012.0818',
7400             'Text::Wrap' => '2012.0818',
7401             'Time::Local' => '1.2300',
7402             'Unicode::UCD' => '0.45',
7403             'Win32' => '0.45',
7404             'Win32CORE' => '0.03',
7405             'XS::APItest' => '0.42',
7406             'inc::latest' => '0.4003',
7407             'perlfaq' => '5.0150041',
7408             're' => '0.22',
7409             },
7410             removed => {
7411             }
7412             },
7413             5.017004 => {
7414             delta_from => 5.017003,
7415             changed => {
7416             'Archive::Tar' => '1.90',
7417             'Archive::Tar::Constant'=> '1.90',
7418             'Archive::Tar::File' => '1.90',
7419             'B' => '1.38',
7420             'B::Concise' => '0.93',
7421             'B::Deparse' => '1.17',
7422             'B::Xref' => '1.04',
7423             'CPANPLUS' => '0.9131',
7424             'CPANPLUS::Internals' => '0.9131',
7425             'CPANPLUS::Shell::Default'=> '0.9131',
7426             'DB_File' => '1.827',
7427             'Devel::Peek' => '1.10',
7428             'DynaLoader' => '1.16',
7429             'Errno' => '1.16',
7430             'ExtUtils::ParseXS' => '3.18',
7431             'ExtUtils::ParseXS::Constants'=> '3.18',
7432             'ExtUtils::ParseXS::CountLines'=> '3.18',
7433             'ExtUtils::ParseXS::Utilities'=> '3.18',
7434             'File::Copy' => '2.24',
7435             'File::Find' => '1.22',
7436             'IPC::Open3' => '1.13',
7437             'Locale::Codes' => '3.23',
7438             'Locale::Codes::Constants'=> '3.23',
7439             'Locale::Codes::Country'=> '3.23',
7440             'Locale::Codes::Country_Codes'=> '3.23',
7441             'Locale::Codes::Country_Retired'=> '3.23',
7442             'Locale::Codes::Currency'=> '3.23',
7443             'Locale::Codes::Currency_Codes'=> '3.23',
7444             'Locale::Codes::Currency_Retired'=> '3.23',
7445             'Locale::Codes::LangExt'=> '3.23',
7446             'Locale::Codes::LangExt_Codes'=> '3.23',
7447             'Locale::Codes::LangExt_Retired'=> '3.23',
7448             'Locale::Codes::LangFam'=> '3.23',
7449             'Locale::Codes::LangFam_Codes'=> '3.23',
7450             'Locale::Codes::LangFam_Retired'=> '3.23',
7451             'Locale::Codes::LangVar'=> '3.23',
7452             'Locale::Codes::LangVar_Codes'=> '3.23',
7453             'Locale::Codes::LangVar_Retired'=> '3.23',
7454             'Locale::Codes::Language'=> '3.23',
7455             'Locale::Codes::Language_Codes'=> '3.23',
7456             'Locale::Codes::Language_Retired'=> '3.23',
7457             'Locale::Codes::Script' => '3.23',
7458             'Locale::Codes::Script_Codes'=> '3.23',
7459             'Locale::Codes::Script_Retired'=> '3.23',
7460             'Locale::Country' => '3.23',
7461             'Locale::Currency' => '3.23',
7462             'Locale::Language' => '3.23',
7463             'Locale::Script' => '3.23',
7464             'Math::BigFloat::Trace' => '0.30',
7465             'Math::BigInt::Trace' => '0.30',
7466             'Module::CoreList' => '2.73',
7467             'Module::CoreList::TieHashDelta'=> '2.73',
7468             'Opcode' => '1.24',
7469             'Socket' => '2.006',
7470             'Storable' => '2.39',
7471             'Sys::Syslog' => '0.32',
7472             'Unicode::UCD' => '0.46',
7473             'XS::APItest' => '0.43',
7474             'bignum' => '0.30',
7475             'bigrat' => '0.30',
7476             'constant' => '1.24',
7477             'feature' => '1.30',
7478             'threads::shared' => '1.41',
7479             'version' => '0.9901',
7480             'warnings' => '1.14',
7481             },
7482             removed => {
7483             }
7484             },
7485             5.017005 => {
7486             delta_from => 5.017004,
7487             changed => {
7488             'AutoLoader' => '5.73',
7489             'B' => '1.39',
7490             'B::Deparse' => '1.18',
7491             'CPANPLUS' => '0.9133',
7492             'CPANPLUS::Internals' => '0.9133',
7493             'CPANPLUS::Shell::Default'=> '0.9133',
7494             'Carp' => '1.27',
7495             'Carp::Heavy' => '1.27',
7496             'Data::Dumper' => '2.136',
7497             'Digest::SHA' => '5.72',
7498             'ExtUtils::CBuilder' => '0.280209',
7499             'ExtUtils::CBuilder::Base'=> '0.280209',
7500             'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7501             'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7502             'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7503             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7504             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7505             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7506             'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7507             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7508             'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7509             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7510             'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7511             'File::Copy' => '2.25',
7512             'File::Glob' => '1.18',
7513             'HTTP::Tiny' => '0.024',
7514             'Module::CoreList' => '2.75',
7515             'Module::CoreList::TieHashDelta'=> '2.75',
7516             'PerlIO::encoding' => '0.16',
7517             'Unicode::Collate' => '0.90',
7518             'Unicode::Collate::Locale'=> '0.90',
7519             'Unicode::Normalize' => '1.15',
7520             'Win32CORE' => '0.04',
7521             'XS::APItest' => '0.44',
7522             'attributes' => '0.21',
7523             'bigint' => '0.31',
7524             'bignum' => '0.31',
7525             'bigrat' => '0.31',
7526             'feature' => '1.31',
7527             'threads::shared' => '1.42',
7528             'warnings' => '1.15',
7529             },
7530             removed => {
7531             }
7532             },
7533             5.017006 => {
7534             delta_from => 5.017005,
7535             changed => {
7536             'B' => '1.40',
7537             'B::Concise' => '0.94',
7538             'B::Deparse' => '1.19',
7539             'B::Xref' => '1.05',
7540             'CGI' => '3.63',
7541             'CGI::Util' => '3.62',
7542             'CPAN' => '1.99_51',
7543             'CPANPLUS::Dist::Build' => '0.64',
7544             'CPANPLUS::Dist::Build::Constants'=> '0.64',
7545             'Carp' => '1.28',
7546             'Carp::Heavy' => '1.28',
7547             'Compress::Raw::Bzip2' => '2.058',
7548             'Compress::Raw::Zlib' => '2.058',
7549             'Compress::Zlib' => '2.058',
7550             'Data::Dumper' => '2.137',
7551             'Digest::SHA' => '5.73',
7552             'DynaLoader' => '1.17',
7553             'Env' => '1.04',
7554             'Errno' => '1.17',
7555             'ExtUtils::Manifest' => '1.62',
7556             'ExtUtils::Typemaps' => '3.18',
7557             'ExtUtils::Typemaps::Cmd'=> '3.18',
7558             'ExtUtils::Typemaps::InputMap'=> '3.18',
7559             'ExtUtils::Typemaps::OutputMap'=> '3.18',
7560             'ExtUtils::Typemaps::Type'=> '3.18',
7561             'Fatal' => '2.13',
7562             'File::Find' => '1.23',
7563             'Hash::Util' => '0.13',
7564             'IO::Compress::Adapter::Bzip2'=> '2.058',
7565             'IO::Compress::Adapter::Deflate'=> '2.058',
7566             'IO::Compress::Adapter::Identity'=> '2.058',
7567             'IO::Compress::Base' => '2.058',
7568             'IO::Compress::Base::Common'=> '2.058',
7569             'IO::Compress::Bzip2' => '2.058',
7570             'IO::Compress::Deflate' => '2.058',
7571             'IO::Compress::Gzip' => '2.058',
7572             'IO::Compress::Gzip::Constants'=> '2.058',
7573             'IO::Compress::RawDeflate'=> '2.058',
7574             'IO::Compress::Zip' => '2.058',
7575             'IO::Compress::Zip::Constants'=> '2.058',
7576             'IO::Compress::Zlib::Constants'=> '2.058',
7577             'IO::Compress::Zlib::Extra'=> '2.058',
7578             'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7579             'IO::Uncompress::Adapter::Identity'=> '2.058',
7580             'IO::Uncompress::Adapter::Inflate'=> '2.058',
7581             'IO::Uncompress::AnyInflate'=> '2.058',
7582             'IO::Uncompress::AnyUncompress'=> '2.058',
7583             'IO::Uncompress::Base' => '2.058',
7584             'IO::Uncompress::Bunzip2'=> '2.058',
7585             'IO::Uncompress::Gunzip'=> '2.058',
7586             'IO::Uncompress::Inflate'=> '2.058',
7587             'IO::Uncompress::RawInflate'=> '2.058',
7588             'IO::Uncompress::Unzip' => '2.058',
7589             'Module::CoreList' => '2.78',
7590             'Module::CoreList::TieHashDelta'=> '2.77',
7591             'Module::Pluggable' => '4.5',
7592             'Module::Pluggable::Object'=> '4.5',
7593             'Opcode' => '1.25',
7594             'Sys::Hostname' => '1.17',
7595             'Term::UI' => '0.32',
7596             'Thread::Queue' => '3.01',
7597             'Tie::Hash::NamedCapture'=> '0.09',
7598             'Unicode::Collate' => '0.93',
7599             'Unicode::Collate::CJK::Korean'=> '0.93',
7600             'Unicode::Collate::Locale'=> '0.93',
7601             'Unicode::Normalize' => '1.16',
7602             'Unicode::UCD' => '0.47',
7603             'XS::APItest' => '0.46',
7604             '_charnames' => '1.33',
7605             'autodie' => '2.13',
7606             'autodie::exception' => '2.13',
7607             'autodie::exception::system'=> '2.13',
7608             'autodie::hints' => '2.13',
7609             'charnames' => '1.33',
7610             're' => '0.23',
7611             },
7612             removed => {
7613             }
7614             },
7615             5.017007 => {
7616             delta_from => 5.017006,
7617             changed => {
7618             'B' => '1.41',
7619             'CPANPLUS::Dist::Build' => '0.68',
7620             'CPANPLUS::Dist::Build::Constants'=> '0.68',
7621             'Compress::Raw::Bzip2' => '2.059',
7622             'Compress::Raw::Zlib' => '2.059',
7623             'Compress::Zlib' => '2.059',
7624             'Cwd' => '3.39_03',
7625             'Data::Dumper' => '2.139',
7626             'Devel::Peek' => '1.11',
7627             'Digest::SHA' => '5.80',
7628             'DynaLoader' => '1.18',
7629             'English' => '1.06',
7630             'Errno' => '1.18',
7631             'ExtUtils::Command::MM' => '6.64',
7632             'ExtUtils::Liblist' => '6.64',
7633             'ExtUtils::Liblist::Kid'=> '6.64',
7634             'ExtUtils::MM' => '6.64',
7635             'ExtUtils::MM_AIX' => '6.64',
7636             'ExtUtils::MM_Any' => '6.64',
7637             'ExtUtils::MM_BeOS' => '6.64',
7638             'ExtUtils::MM_Cygwin' => '6.64',
7639             'ExtUtils::MM_DOS' => '6.64',
7640             'ExtUtils::MM_Darwin' => '6.64',
7641             'ExtUtils::MM_MacOS' => '6.64',
7642             'ExtUtils::MM_NW5' => '6.64',
7643             'ExtUtils::MM_OS2' => '6.64',
7644             'ExtUtils::MM_QNX' => '6.64',
7645             'ExtUtils::MM_UWIN' => '6.64',
7646             'ExtUtils::MM_Unix' => '6.64',
7647             'ExtUtils::MM_VMS' => '6.64',
7648             'ExtUtils::MM_VOS' => '6.64',
7649             'ExtUtils::MM_Win32' => '6.64',
7650             'ExtUtils::MM_Win95' => '6.64',
7651             'ExtUtils::MY' => '6.64',
7652             'ExtUtils::MakeMaker' => '6.64',
7653             'ExtUtils::MakeMaker::Config'=> '6.64',
7654             'ExtUtils::Mkbootstrap' => '6.64',
7655             'ExtUtils::Mksymlists' => '6.64',
7656             'ExtUtils::testlib' => '6.64',
7657             'File::DosGlob' => '1.09',
7658             'File::Glob' => '1.19',
7659             'GDBM_File' => '1.15',
7660             'IO::Compress::Adapter::Bzip2'=> '2.059',
7661             'IO::Compress::Adapter::Deflate'=> '2.059',
7662             'IO::Compress::Adapter::Identity'=> '2.059',
7663             'IO::Compress::Base' => '2.059',
7664             'IO::Compress::Base::Common'=> '2.059',
7665             'IO::Compress::Bzip2' => '2.059',
7666             'IO::Compress::Deflate' => '2.059',
7667             'IO::Compress::Gzip' => '2.059',
7668             'IO::Compress::Gzip::Constants'=> '2.059',
7669             'IO::Compress::RawDeflate'=> '2.059',
7670             'IO::Compress::Zip' => '2.059',
7671             'IO::Compress::Zip::Constants'=> '2.059',
7672             'IO::Compress::Zlib::Constants'=> '2.059',
7673             'IO::Compress::Zlib::Extra'=> '2.059',
7674             'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7675             'IO::Uncompress::Adapter::Identity'=> '2.059',
7676             'IO::Uncompress::Adapter::Inflate'=> '2.059',
7677             'IO::Uncompress::AnyInflate'=> '2.059',
7678             'IO::Uncompress::AnyUncompress'=> '2.059',
7679             'IO::Uncompress::Base' => '2.059',
7680             'IO::Uncompress::Bunzip2'=> '2.059',
7681             'IO::Uncompress::Gunzip'=> '2.059',
7682             'IO::Uncompress::Inflate'=> '2.059',
7683             'IO::Uncompress::RawInflate'=> '2.059',
7684             'IO::Uncompress::Unzip' => '2.059',
7685             'List::Util' => '1.26',
7686             'List::Util::XS' => '1.26',
7687             'Locale::Codes' => '3.24',
7688             'Locale::Codes::Constants'=> '3.24',
7689             'Locale::Codes::Country'=> '3.24',
7690             'Locale::Codes::Country_Codes'=> '3.24',
7691             'Locale::Codes::Country_Retired'=> '3.24',
7692             'Locale::Codes::Currency'=> '3.24',
7693             'Locale::Codes::Currency_Codes'=> '3.24',
7694             'Locale::Codes::Currency_Retired'=> '3.24',
7695             'Locale::Codes::LangExt'=> '3.24',
7696             'Locale::Codes::LangExt_Codes'=> '3.24',
7697             'Locale::Codes::LangExt_Retired'=> '3.24',
7698             'Locale::Codes::LangFam'=> '3.24',
7699             'Locale::Codes::LangFam_Codes'=> '3.24',
7700             'Locale::Codes::LangFam_Retired'=> '3.24',
7701             'Locale::Codes::LangVar'=> '3.24',
7702             'Locale::Codes::LangVar_Codes'=> '3.24',
7703             'Locale::Codes::LangVar_Retired'=> '3.24',
7704             'Locale::Codes::Language'=> '3.24',
7705             'Locale::Codes::Language_Codes'=> '3.24',
7706             'Locale::Codes::Language_Retired'=> '3.24',
7707             'Locale::Codes::Script' => '3.24',
7708             'Locale::Codes::Script_Codes'=> '3.24',
7709             'Locale::Codes::Script_Retired'=> '3.24',
7710             'Locale::Country' => '3.24',
7711             'Locale::Currency' => '3.24',
7712             'Locale::Language' => '3.24',
7713             'Locale::Maketext' => '1.23',
7714             'Locale::Script' => '3.24',
7715             'Module::CoreList' => '2.79',
7716             'Module::CoreList::TieHashDelta'=> '2.79',
7717             'POSIX' => '1.32',
7718             'Scalar::Util' => '1.26',
7719             'Socket' => '2.006_001',
7720             'Storable' => '2.40',
7721             'Term::ReadLine' => '1.11',
7722             'Unicode::Collate' => '0.96',
7723             'Unicode::Collate::CJK::Stroke'=> '0.94',
7724             'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7725             'Unicode::Collate::Locale'=> '0.96',
7726             'XS::APItest' => '0.48',
7727             'XS::Typemap' => '0.09',
7728             '_charnames' => '1.34',
7729             'charnames' => '1.34',
7730             'feature' => '1.32',
7731             'mro' => '1.10',
7732             'sigtrap' => '1.07',
7733             'sort' => '2.02',
7734             },
7735             removed => {
7736             }
7737             },
7738             5.017008 => {
7739             delta_from => 5.017007,
7740             changed => {
7741             'Archive::Extract' => '0.62',
7742             'B' => '1.42',
7743             'B::Concise' => '0.95',
7744             'Compress::Raw::Bzip2' => '2.060',
7745             'Compress::Raw::Zlib' => '2.060',
7746             'Compress::Zlib' => '2.060',
7747             'Cwd' => '3.40',
7748             'Data::Dumper' => '2.141',
7749             'Digest::SHA' => '5.81',
7750             'ExtUtils::Install' => '1.59',
7751             'File::Fetch' => '0.38',
7752             'File::Path' => '2.09',
7753             'File::Spec' => '3.40',
7754             'File::Spec::Cygwin' => '3.40',
7755             'File::Spec::Epoc' => '3.40',
7756             'File::Spec::Functions' => '3.40',
7757             'File::Spec::Mac' => '3.40',
7758             'File::Spec::OS2' => '3.40',
7759             'File::Spec::Unix' => '3.40',
7760             'File::Spec::VMS' => '3.40',
7761             'File::Spec::Win32' => '3.40',
7762             'HTTP::Tiny' => '0.025',
7763             'Hash::Util' => '0.14',
7764             'I18N::LangTags' => '0.39',
7765             'I18N::LangTags::List' => '0.39',
7766             'I18N::Langinfo' => '0.09',
7767             'IO' => '1.26',
7768             'IO::Compress::Adapter::Bzip2'=> '2.060',
7769             'IO::Compress::Adapter::Deflate'=> '2.060',
7770             'IO::Compress::Adapter::Identity'=> '2.060',
7771             'IO::Compress::Base' => '2.060',
7772             'IO::Compress::Base::Common'=> '2.060',
7773             'IO::Compress::Bzip2' => '2.060',
7774             'IO::Compress::Deflate' => '2.060',
7775             'IO::Compress::Gzip' => '2.060',
7776             'IO::Compress::Gzip::Constants'=> '2.060',
7777             'IO::Compress::RawDeflate'=> '2.060',
7778             'IO::Compress::Zip' => '2.060',
7779             'IO::Compress::Zip::Constants'=> '2.060',
7780             'IO::Compress::Zlib::Constants'=> '2.060',
7781             'IO::Compress::Zlib::Extra'=> '2.060',
7782             'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7783             'IO::Uncompress::Adapter::Identity'=> '2.060',
7784             'IO::Uncompress::Adapter::Inflate'=> '2.060',
7785             'IO::Uncompress::AnyInflate'=> '2.060',
7786             'IO::Uncompress::AnyUncompress'=> '2.060',
7787             'IO::Uncompress::Base' => '2.060',
7788             'IO::Uncompress::Bunzip2'=> '2.060',
7789             'IO::Uncompress::Gunzip'=> '2.060',
7790             'IO::Uncompress::Inflate'=> '2.060',
7791             'IO::Uncompress::RawInflate'=> '2.060',
7792             'IO::Uncompress::Unzip' => '2.060',
7793             'List::Util' => '1.27',
7794             'List::Util::XS' => '1.27',
7795             'Module::CoreList' => '2.80',
7796             'Module::CoreList::TieHashDelta'=> '2.80',
7797             'Pod::Html' => '1.17',
7798             'Pod::LaTeX' => '0.61',
7799             'Pod::Man' => '2.27',
7800             'Pod::Text' => '3.17',
7801             'Pod::Text::Color' => '2.07',
7802             'Pod::Text::Overstrike' => '2.05',
7803             'Pod::Text::Termcap' => '2.07',
7804             'Safe' => '2.34',
7805             'Scalar::Util' => '1.27',
7806             'Socket' => '2.009',
7807             'Term::ANSIColor' => '4.02',
7808             'Test' => '1.26',
7809             'Unicode::Collate' => '0.97',
7810             'XS::APItest' => '0.51',
7811             'XS::Typemap' => '0.10',
7812             '_charnames' => '1.35',
7813             'charnames' => '1.35',
7814             'constant' => '1.25',
7815             'diagnostics' => '1.31',
7816             'threads::shared' => '1.43',
7817             'warnings' => '1.16',
7818             },
7819             removed => {
7820             }
7821             },
7822             5.017009 => {
7823             delta_from => 5.017008,
7824             changed => {
7825             'App::Cpan' => '1.60_02',
7826             'App::Prove' => '3.26',
7827             'App::Prove::State' => '3.26',
7828             'App::Prove::State::Result'=> '3.26',
7829             'App::Prove::State::Result::Test'=> '3.26',
7830             'Archive::Extract' => '0.68',
7831             'Attribute::Handlers' => '0.94',
7832             'B::Lint' => '1.17',
7833             'B::Lint::Debug' => '1.17',
7834             'Benchmark' => '1.14',
7835             'CPAN' => '2.00',
7836             'CPAN::Distribution' => '2.00',
7837             'CPAN::FirstTime' => '5.5304',
7838             'CPAN::Nox' => '5.5001',
7839             'CPANPLUS' => '0.9135',
7840             'CPANPLUS::Backend' => '0.9135',
7841             'CPANPLUS::Backend::RV' => '0.9135',
7842             'CPANPLUS::Config' => '0.9135',
7843             'CPANPLUS::Config::HomeEnv'=> '0.9135',
7844             'CPANPLUS::Configure' => '0.9135',
7845             'CPANPLUS::Configure::Setup'=> '0.9135',
7846             'CPANPLUS::Dist' => '0.9135',
7847             'CPANPLUS::Dist::Autobundle'=> '0.9135',
7848             'CPANPLUS::Dist::Base' => '0.9135',
7849             'CPANPLUS::Dist::Build' => '0.70',
7850             'CPANPLUS::Dist::Build::Constants'=> '0.70',
7851             'CPANPLUS::Dist::MM' => '0.9135',
7852             'CPANPLUS::Dist::Sample'=> '0.9135',
7853             'CPANPLUS::Error' => '0.9135',
7854             'CPANPLUS::Internals' => '0.9135',
7855             'CPANPLUS::Internals::Constants'=> '0.9135',
7856             'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7857             'CPANPLUS::Internals::Extract'=> '0.9135',
7858             'CPANPLUS::Internals::Fetch'=> '0.9135',
7859             'CPANPLUS::Internals::Report'=> '0.9135',
7860             'CPANPLUS::Internals::Search'=> '0.9135',
7861             'CPANPLUS::Internals::Source'=> '0.9135',
7862             'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7863             'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7864             'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7865             'CPANPLUS::Internals::Utils'=> '0.9135',
7866             'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7867             'CPANPLUS::Module' => '0.9135',
7868             'CPANPLUS::Module::Author'=> '0.9135',
7869             'CPANPLUS::Module::Author::Fake'=> '0.9135',
7870             'CPANPLUS::Module::Checksums'=> '0.9135',
7871             'CPANPLUS::Module::Fake'=> '0.9135',
7872             'CPANPLUS::Module::Signature'=> '0.9135',
7873             'CPANPLUS::Selfupdate' => '0.9135',
7874             'CPANPLUS::Shell' => '0.9135',
7875             'CPANPLUS::Shell::Classic'=> '0.9135',
7876             'CPANPLUS::Shell::Default'=> '0.9135',
7877             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7878             'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7879             'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
7880             'Config' => '5.017009',
7881             'Config::Perl::V' => '0.17',
7882             'DBM_Filter' => '0.05',
7883             'Data::Dumper' => '2.142',
7884             'Digest::SHA' => '5.82',
7885             'Encode' => '2.48',
7886             'ExtUtils::Installed' => '1.999003',
7887             'ExtUtils::Manifest' => '1.63',
7888             'ExtUtils::ParseXS::Utilities'=> '3.19',
7889             'ExtUtils::Typemaps' => '3.19',
7890             'File::CheckTree' => '4.42',
7891             'File::DosGlob' => '1.10',
7892             'File::Temp' => '0.22_90',
7893             'Filter::Simple' => '0.89',
7894             'IO' => '1.27',
7895             'Log::Message' => '0.06',
7896             'Log::Message::Config' => '0.06',
7897             'Log::Message::Handlers'=> '0.06',
7898             'Log::Message::Item' => '0.06',
7899             'Log::Message::Simple' => '0.10',
7900             'Math::BigInt' => '1.999',
7901             'Module::CoreList' => '2.82',
7902             'Module::CoreList::TieHashDelta'=> '2.82',
7903             'Module::Load' => '0.24',
7904             'Module::Pluggable' => '4.6',
7905             'Module::Pluggable::Object'=> '4.6',
7906             'OS2::DLL' => '1.05',
7907             'OS2::ExtAttr' => '0.03',
7908             'OS2::Process' => '1.08',
7909             'Object::Accessor' => '0.46',
7910             'PerlIO::scalar' => '0.16',
7911             'Pod::Checker' => '1.60',
7912             'Pod::Find' => '1.60',
7913             'Pod::Html' => '1.18',
7914             'Pod::InputObjects' => '1.60',
7915             'Pod::ParseUtils' => '1.60',
7916             'Pod::Parser' => '1.60',
7917             'Pod::Perldoc' => '3.19',
7918             'Pod::Perldoc::BaseTo' => '3.19',
7919             'Pod::Perldoc::GetOptsOO'=> '3.19',
7920             'Pod::Perldoc::ToANSI' => '3.19',
7921             'Pod::Perldoc::ToChecker'=> '3.19',
7922             'Pod::Perldoc::ToMan' => '3.19',
7923             'Pod::Perldoc::ToNroff' => '3.19',
7924             'Pod::Perldoc::ToPod' => '3.19',
7925             'Pod::Perldoc::ToRtf' => '3.19',
7926             'Pod::Perldoc::ToTerm' => '3.19',
7927             'Pod::Perldoc::ToText' => '3.19',
7928             'Pod::Perldoc::ToTk' => '3.19',
7929             'Pod::Perldoc::ToXml' => '3.19',
7930             'Pod::PlainText' => '2.06',
7931             'Pod::Select' => '1.60',
7932             'Pod::Usage' => '1.61',
7933             'SelfLoader' => '1.21',
7934             'TAP::Base' => '3.26',
7935             'TAP::Formatter::Base' => '3.26',
7936             'TAP::Formatter::Color' => '3.26',
7937             'TAP::Formatter::Console'=> '3.26',
7938             'TAP::Formatter::Console::ParallelSession'=> '3.26',
7939             'TAP::Formatter::Console::Session'=> '3.26',
7940             'TAP::Formatter::File' => '3.26',
7941             'TAP::Formatter::File::Session'=> '3.26',
7942             'TAP::Formatter::Session'=> '3.26',
7943             'TAP::Harness' => '3.26',
7944             'TAP::Object' => '3.26',
7945             'TAP::Parser' => '3.26',
7946             'TAP::Parser::Aggregator'=> '3.26',
7947             'TAP::Parser::Grammar' => '3.26',
7948             'TAP::Parser::Iterator' => '3.26',
7949             'TAP::Parser::Iterator::Array'=> '3.26',
7950             'TAP::Parser::Iterator::Process'=> '3.26',
7951             'TAP::Parser::Iterator::Stream'=> '3.26',
7952             'TAP::Parser::IteratorFactory'=> '3.26',
7953             'TAP::Parser::Multiplexer'=> '3.26',
7954             'TAP::Parser::Result' => '3.26',
7955             'TAP::Parser::Result::Bailout'=> '3.26',
7956             'TAP::Parser::Result::Comment'=> '3.26',
7957             'TAP::Parser::Result::Plan'=> '3.26',
7958             'TAP::Parser::Result::Pragma'=> '3.26',
7959             'TAP::Parser::Result::Test'=> '3.26',
7960             'TAP::Parser::Result::Unknown'=> '3.26',
7961             'TAP::Parser::Result::Version'=> '3.26',
7962             'TAP::Parser::Result::YAML'=> '3.26',
7963             'TAP::Parser::ResultFactory'=> '3.26',
7964             'TAP::Parser::Scheduler'=> '3.26',
7965             'TAP::Parser::Scheduler::Job'=> '3.26',
7966             'TAP::Parser::Scheduler::Spinner'=> '3.26',
7967             'TAP::Parser::Source' => '3.26',
7968             'TAP::Parser::SourceHandler'=> '3.26',
7969             'TAP::Parser::SourceHandler::Executable'=> '3.26',
7970             'TAP::Parser::SourceHandler::File'=> '3.26',
7971             'TAP::Parser::SourceHandler::Handle'=> '3.26',
7972             'TAP::Parser::SourceHandler::Perl'=> '3.26',
7973             'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
7974             'TAP::Parser::Utils' => '3.26',
7975             'TAP::Parser::YAMLish::Reader'=> '3.26',
7976             'TAP::Parser::YAMLish::Writer'=> '3.26',
7977             'Term::UI' => '0.34',
7978             'Test::Harness' => '3.26',
7979             'Text::Soundex' => '3.04',
7980             'Thread::Queue' => '3.02',
7981             'Unicode::UCD' => '0.50',
7982             'Win32' => '0.46',
7983             'Win32API::File' => '0.1201',
7984             '_charnames' => '1.36',
7985             'arybase' => '0.06',
7986             'bigint' => '0.32',
7987             'bignum' => '0.32',
7988             'charnames' => '1.36',
7989             'filetest' => '1.03',
7990             'locale' => '1.02',
7991             'overload' => '1.21',
7992             'warnings' => '1.17',
7993             },
7994             removed => {
7995             }
7996             },
7997             5.017010 => {
7998             delta_from => 5.017009,
7999             changed => {
8000             'Benchmark' => '1.15',
8001             'Config' => '5.017009',
8002             'Data::Dumper' => '2.145',
8003             'Digest::SHA' => '5.84',
8004             'Encode' => '2.49',
8005             'ExtUtils::Command::MM' => '6.65_01',
8006             'ExtUtils::Liblist' => '6.65_01',
8007             'ExtUtils::Liblist::Kid'=> '6.65_01',
8008             'ExtUtils::MM' => '6.65_01',
8009             'ExtUtils::MM_AIX' => '6.65_01',
8010             'ExtUtils::MM_Any' => '6.65_01',
8011             'ExtUtils::MM_BeOS' => '6.65_01',
8012             'ExtUtils::MM_Cygwin' => '6.65_01',
8013             'ExtUtils::MM_DOS' => '6.65_01',
8014             'ExtUtils::MM_Darwin' => '6.65_01',
8015             'ExtUtils::MM_MacOS' => '6.65_01',
8016             'ExtUtils::MM_NW5' => '6.65_01',
8017             'ExtUtils::MM_OS2' => '6.65_01',
8018             'ExtUtils::MM_QNX' => '6.65_01',
8019             'ExtUtils::MM_UWIN' => '6.65_01',
8020             'ExtUtils::MM_Unix' => '6.65_01',
8021             'ExtUtils::MM_VMS' => '6.65_01',
8022             'ExtUtils::MM_VOS' => '6.65_01',
8023             'ExtUtils::MM_Win32' => '6.65_01',
8024             'ExtUtils::MM_Win95' => '6.65_01',
8025             'ExtUtils::MY' => '6.65_01',
8026             'ExtUtils::MakeMaker' => '6.65_01',
8027             'ExtUtils::MakeMaker::Config'=> '6.65_01',
8028             'ExtUtils::Mkbootstrap' => '6.65_01',
8029             'ExtUtils::Mksymlists' => '6.65_01',
8030             'ExtUtils::testlib' => '6.65_01',
8031             'File::Copy' => '2.26',
8032             'File::Temp' => '0.23',
8033             'Getopt::Long' => '2.39',
8034             'Hash::Util' => '0.15',
8035             'I18N::Langinfo' => '0.10',
8036             'IPC::Cmd' => '0.80',
8037             'JSON::PP' => '2.27202',
8038             'Locale::Codes' => '3.25',
8039             'Locale::Codes::Constants'=> '3.25',
8040             'Locale::Codes::Country'=> '3.25',
8041             'Locale::Codes::Country_Codes'=> '3.25',
8042             'Locale::Codes::Country_Retired'=> '3.25',
8043             'Locale::Codes::Currency'=> '3.25',
8044             'Locale::Codes::Currency_Codes'=> '3.25',
8045             'Locale::Codes::Currency_Retired'=> '3.25',
8046             'Locale::Codes::LangExt'=> '3.25',
8047             'Locale::Codes::LangExt_Codes'=> '3.25',
8048             'Locale::Codes::LangExt_Retired'=> '3.25',
8049             'Locale::Codes::LangFam'=> '3.25',
8050             'Locale::Codes::LangFam_Codes'=> '3.25',
8051             'Locale::Codes::LangFam_Retired'=> '3.25',
8052             'Locale::Codes::LangVar'=> '3.25',
8053             'Locale::Codes::LangVar_Codes'=> '3.25',
8054             'Locale::Codes::LangVar_Retired'=> '3.25',
8055             'Locale::Codes::Language'=> '3.25',
8056             'Locale::Codes::Language_Codes'=> '3.25',
8057             'Locale::Codes::Language_Retired'=> '3.25',
8058             'Locale::Codes::Script' => '3.25',
8059             'Locale::Codes::Script_Codes'=> '3.25',
8060             'Locale::Codes::Script_Retired'=> '3.25',
8061             'Locale::Country' => '3.25',
8062             'Locale::Currency' => '3.25',
8063             'Locale::Language' => '3.25',
8064             'Locale::Script' => '3.25',
8065             'Math::BigFloat' => '1.998',
8066             'Math::BigFloat::Trace' => '0.32',
8067             'Math::BigInt' => '1.9991',
8068             'Math::BigInt::CalcEmu' => '1.998',
8069             'Math::BigInt::Trace' => '0.32',
8070             'Math::BigRat' => '0.2604',
8071             'Module::CoreList' => '2.84',
8072             'Module::CoreList::TieHashDelta'=> '2.84',
8073             'Module::Pluggable' => '4.7',
8074             'Net::Ping' => '2.41',
8075             'Perl::OSType' => '1.003',
8076             'Pod::Simple' => '3.26',
8077             'Pod::Simple::BlackBox' => '3.26',
8078             'Pod::Simple::Checker' => '3.26',
8079             'Pod::Simple::Debug' => '3.26',
8080             'Pod::Simple::DumpAsText'=> '3.26',
8081             'Pod::Simple::DumpAsXML'=> '3.26',
8082             'Pod::Simple::HTML' => '3.26',
8083             'Pod::Simple::HTMLBatch'=> '3.26',
8084             'Pod::Simple::LinkSection'=> '3.26',
8085             'Pod::Simple::Methody' => '3.26',
8086             'Pod::Simple::Progress' => '3.26',
8087             'Pod::Simple::PullParser'=> '3.26',
8088             'Pod::Simple::PullParserEndToken'=> '3.26',
8089             'Pod::Simple::PullParserStartToken'=> '3.26',
8090             'Pod::Simple::PullParserTextToken'=> '3.26',
8091             'Pod::Simple::PullParserToken'=> '3.26',
8092             'Pod::Simple::RTF' => '3.26',
8093             'Pod::Simple::Search' => '3.26',
8094             'Pod::Simple::SimpleTree'=> '3.26',
8095             'Pod::Simple::Text' => '3.26',
8096             'Pod::Simple::TextContent'=> '3.26',
8097             'Pod::Simple::TiedOutFH'=> '3.26',
8098             'Pod::Simple::Transcode'=> '3.26',
8099             'Pod::Simple::TranscodeDumb'=> '3.26',
8100             'Pod::Simple::TranscodeSmart'=> '3.26',
8101             'Pod::Simple::XHTML' => '3.26',
8102             'Pod::Simple::XMLOutStream'=> '3.26',
8103             'Safe' => '2.35',
8104             'Term::ReadLine' => '1.12',
8105             'Text::ParseWords' => '3.28',
8106             'Tie::File' => '0.99',
8107             'Unicode::UCD' => '0.51',
8108             'Win32' => '0.47',
8109             'bigint' => '0.33',
8110             'bignum' => '0.33',
8111             'bigrat' => '0.33',
8112             'constant' => '1.27',
8113             'perlfaq' => '5.0150042',
8114             'version' => '0.9902',
8115             },
8116             removed => {
8117             }
8118             },
8119             5.017011 => {
8120             delta_from => 5.017010,
8121             changed => {
8122             'App::Cpan' => '1.61',
8123             'B::Deparse' => '1.20',
8124             'Config' => '5.017009',
8125             'Exporter' => '5.68',
8126             'Exporter::Heavy' => '5.68',
8127             'ExtUtils::CBuilder' => '0.280210',
8128             'ExtUtils::Command::MM' => '6.66',
8129             'ExtUtils::Liblist' => '6.66',
8130             'ExtUtils::Liblist::Kid'=> '6.66',
8131             'ExtUtils::MM' => '6.66',
8132             'ExtUtils::MM_AIX' => '6.66',
8133             'ExtUtils::MM_Any' => '6.66',
8134             'ExtUtils::MM_BeOS' => '6.66',
8135             'ExtUtils::MM_Cygwin' => '6.66',
8136             'ExtUtils::MM_DOS' => '6.66',
8137             'ExtUtils::MM_Darwin' => '6.66',
8138             'ExtUtils::MM_MacOS' => '6.66',
8139             'ExtUtils::MM_NW5' => '6.66',
8140             'ExtUtils::MM_OS2' => '6.66',
8141             'ExtUtils::MM_QNX' => '6.66',
8142             'ExtUtils::MM_UWIN' => '6.66',
8143             'ExtUtils::MM_Unix' => '6.66',
8144             'ExtUtils::MM_VMS' => '6.66',
8145             'ExtUtils::MM_VOS' => '6.66',
8146             'ExtUtils::MM_Win32' => '6.66',
8147             'ExtUtils::MM_Win95' => '6.66',
8148             'ExtUtils::MY' => '6.66',
8149             'ExtUtils::MakeMaker' => '6.66',
8150             'ExtUtils::MakeMaker::Config'=> '6.66',
8151             'ExtUtils::Mkbootstrap' => '6.66',
8152             'ExtUtils::Mksymlists' => '6.66',
8153             'ExtUtils::testlib' => '6.66',
8154             'File::Glob' => '1.20',
8155             'IO' => '1.28',
8156             'Module::CoreList' => '2.87',
8157             'Module::CoreList::TieHashDelta'=> '2.87',
8158             'Storable' => '2.41',
8159             'bigint' => '0.34',
8160             'mro' => '1.11',
8161             'overload' => '1.22',
8162             'warnings' => '1.18',
8163             },
8164             removed => {
8165             }
8166             },
8167             5.018000 => {
8168             delta_from => 5.017011,
8169             changed => {
8170             'Carp' => '1.29',
8171             'Carp::Heavy' => '1.29',
8172             'Config' => '5.018000',
8173             'Hash::Util' => '0.16',
8174             'IO::Handle' => '1.34',
8175             'IO::Socket' => '1.36',
8176             'Module::CoreList' => '2.89',
8177             'Module::CoreList::TieHashDelta'=> '2.89',
8178             'Pod::Simple' => '3.28',
8179             'Pod::Simple::BlackBox' => '3.28',
8180             'Pod::Simple::Checker' => '3.28',
8181             'Pod::Simple::Debug' => '3.28',
8182             'Pod::Simple::DumpAsText'=> '3.28',
8183             'Pod::Simple::DumpAsXML'=> '3.28',
8184             'Pod::Simple::HTML' => '3.28',
8185             'Pod::Simple::HTMLBatch'=> '3.28',
8186             'Pod::Simple::LinkSection'=> '3.28',
8187             'Pod::Simple::Methody' => '3.28',
8188             'Pod::Simple::Progress' => '3.28',
8189             'Pod::Simple::PullParser'=> '3.28',
8190             'Pod::Simple::PullParserEndToken'=> '3.28',
8191             'Pod::Simple::PullParserStartToken'=> '3.28',
8192             'Pod::Simple::PullParserTextToken'=> '3.28',
8193             'Pod::Simple::PullParserToken'=> '3.28',
8194             'Pod::Simple::RTF' => '3.28',
8195             'Pod::Simple::Search' => '3.28',
8196             'Pod::Simple::SimpleTree'=> '3.28',
8197             'Pod::Simple::Text' => '3.28',
8198             'Pod::Simple::TextContent'=> '3.28',
8199             'Pod::Simple::TiedOutFH'=> '3.28',
8200             'Pod::Simple::Transcode'=> '3.28',
8201             'Pod::Simple::TranscodeDumb'=> '3.28',
8202             'Pod::Simple::TranscodeSmart'=> '3.28',
8203             'Pod::Simple::XHTML' => '3.28',
8204             'Pod::Simple::XMLOutStream'=> '3.28',
8205             },
8206             removed => {
8207             }
8208             },
8209             5.018001 => {
8210             delta_from => 5.018000,
8211             changed => {
8212             'B' => '1.42_01',
8213             'Config' => '5.018001',
8214             'Digest::SHA' => '5.84_01',
8215             'Module::CoreList' => '2.96',
8216             'Module::CoreList::TieHashDelta'=> '2.96',
8217             'Module::CoreList::Utils'=> '2.96',
8218             },
8219             removed => {
8220             'VMS::Filespec' => 1,
8221             }
8222             },
8223             5.018002 => {
8224             delta_from => 5.018001,
8225             changed => {
8226             'B' => '1.42_02',
8227             'B::Concise' => '0.95_01',
8228             'Config' => '5.018002',
8229             'File::Glob' => '1.20_01',
8230             'Module::CoreList' => '3.03',
8231             'Module::CoreList::TieHashDelta'=> '3.03',
8232             'Module::CoreList::Utils'=> '3.03',
8233             },
8234             },
8235             5.018003 => {
8236             delta_from => 5.018002,
8237             changed => {
8238             'Config' => '5.018003',
8239             'Digest::SHA' => '5.84_02',
8240             'Module::CoreList' => '3.12',
8241             'Module::CoreList::TieHashDelta'=> '3.12',
8242             'Module::CoreList::Utils'=> '3.12',
8243             },
8244             },
8245             5.018004 => {
8246             delta_from => 5.018003,
8247             changed => {
8248             'Config' => '5.018004',
8249             'Module::CoreList' => '3.13',
8250             'Module::CoreList::TieHashDelta'=> '3.13',
8251             'Module::CoreList::Utils'=> '3.13',
8252             },
8253             },
8254             5.019000 => {
8255             delta_from => 5.018000,
8256             changed => {
8257             'Config' => '5.019000',
8258             'Getopt::Std' => '1.08',
8259             'Module::CoreList' => '2.91',
8260             'Module::CoreList::TieHashDelta'=> '2.91',
8261             'Storable' => '2.42',
8262             'feature' => '1.33',
8263             'utf8' => '1.11',
8264             },
8265             removed => {
8266             'Archive::Extract' => 1,
8267             'B::Lint' => 1,
8268             'B::Lint::Debug' => 1,
8269             'CPANPLUS' => 1,
8270             'CPANPLUS::Backend' => 1,
8271             'CPANPLUS::Backend::RV' => 1,
8272             'CPANPLUS::Config' => 1,
8273             'CPANPLUS::Config::HomeEnv'=> 1,
8274             'CPANPLUS::Configure' => 1,
8275             'CPANPLUS::Configure::Setup'=> 1,
8276             'CPANPLUS::Dist' => 1,
8277             'CPANPLUS::Dist::Autobundle'=> 1,
8278             'CPANPLUS::Dist::Base' => 1,
8279             'CPANPLUS::Dist::Build' => 1,
8280             'CPANPLUS::Dist::Build::Constants'=> 1,
8281             'CPANPLUS::Dist::MM' => 1,
8282             'CPANPLUS::Dist::Sample'=> 1,
8283             'CPANPLUS::Error' => 1,
8284             'CPANPLUS::Internals' => 1,
8285             'CPANPLUS::Internals::Constants'=> 1,
8286             'CPANPLUS::Internals::Constants::Report'=> 1,
8287             'CPANPLUS::Internals::Extract'=> 1,
8288             'CPANPLUS::Internals::Fetch'=> 1,
8289             'CPANPLUS::Internals::Report'=> 1,
8290             'CPANPLUS::Internals::Search'=> 1,
8291             'CPANPLUS::Internals::Source'=> 1,
8292             'CPANPLUS::Internals::Source::Memory'=> 1,
8293             'CPANPLUS::Internals::Source::SQLite'=> 1,
8294             'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8295             'CPANPLUS::Internals::Utils'=> 1,
8296             'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8297             'CPANPLUS::Module' => 1,
8298             'CPANPLUS::Module::Author'=> 1,
8299             'CPANPLUS::Module::Author::Fake'=> 1,
8300             'CPANPLUS::Module::Checksums'=> 1,
8301             'CPANPLUS::Module::Fake'=> 1,
8302             'CPANPLUS::Module::Signature'=> 1,
8303             'CPANPLUS::Selfupdate' => 1,
8304             'CPANPLUS::Shell' => 1,
8305             'CPANPLUS::Shell::Classic'=> 1,
8306             'CPANPLUS::Shell::Default'=> 1,
8307             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8308             'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8309             'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8310             'Devel::InnerPackage' => 1,
8311             'File::CheckTree' => 1,
8312             'Log::Message' => 1,
8313             'Log::Message::Config' => 1,
8314             'Log::Message::Handlers'=> 1,
8315             'Log::Message::Item' => 1,
8316             'Log::Message::Simple' => 1,
8317             'Module::Pluggable' => 1,
8318             'Module::Pluggable::Object'=> 1,
8319             'Object::Accessor' => 1,
8320             'Pod::LaTeX' => 1,
8321             'Term::UI' => 1,
8322             'Term::UI::History' => 1,
8323             'Text::Soundex' => 1,
8324             }
8325             },
8326             5.019001 => {
8327             delta_from => 5.019000,
8328             changed => {
8329             'App::Prove' => '3.28',
8330             'App::Prove::State' => '3.28',
8331             'App::Prove::State::Result'=> '3.28',
8332             'App::Prove::State::Result::Test'=> '3.28',
8333             'Archive::Tar' => '1.92',
8334             'Archive::Tar::Constant'=> '1.92',
8335             'Archive::Tar::File' => '1.92',
8336             'Attribute::Handlers' => '0.95',
8337             'B' => '1.43',
8338             'B::Concise' => '0.96',
8339             'B::Deparse' => '1.21',
8340             'B::Showlex' => '1.04',
8341             'Benchmark' => '1.16',
8342             'CPAN::Meta' => '2.131560',
8343             'CPAN::Meta::Converter' => '2.131560',
8344             'CPAN::Meta::Feature' => '2.131560',
8345             'CPAN::Meta::History' => '2.131560',
8346             'CPAN::Meta::Prereqs' => '2.131560',
8347             'CPAN::Meta::Spec' => '2.131560',
8348             'CPAN::Meta::Validator' => '2.131560',
8349             'Carp' => '1.30',
8350             'Carp::Heavy' => '1.30',
8351             'Compress::Raw::Bzip2' => '2.061',
8352             'Compress::Raw::Zlib' => '2.061',
8353             'Compress::Zlib' => '2.061',
8354             'Config' => '5.019001',
8355             'Config::Perl::V' => '0.18',
8356             'Cwd' => '3.41',
8357             'DB' => '1.06',
8358             'DB_File' => '1.828',
8359             'Data::Dumper' => '2.146',
8360             'Encode' => '2.51',
8361             'Encode::CN::HZ' => '2.06',
8362             'Encode::GSM0338' => '2.03',
8363             'Encode::Unicode::UTF7' => '2.07',
8364             'ExtUtils::CBuilder::Base'=> '0.280210',
8365             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8366             'ExtUtils::Command::MM' => '6.68',
8367             'ExtUtils::Install' => '1.60',
8368             'ExtUtils::Liblist' => '6.68',
8369             'ExtUtils::Liblist::Kid'=> '6.68',
8370             'ExtUtils::MM' => '6.68',
8371             'ExtUtils::MM_AIX' => '6.68',
8372             'ExtUtils::MM_Any' => '6.68',
8373             'ExtUtils::MM_BeOS' => '6.68',
8374             'ExtUtils::MM_Cygwin' => '6.68',
8375             'ExtUtils::MM_DOS' => '6.68',
8376             'ExtUtils::MM_Darwin' => '6.68',
8377             'ExtUtils::MM_MacOS' => '6.68',
8378             'ExtUtils::MM_NW5' => '6.68',
8379             'ExtUtils::MM_OS2' => '6.68',
8380             'ExtUtils::MM_QNX' => '6.68',
8381             'ExtUtils::MM_UWIN' => '6.68',
8382             'ExtUtils::MM_Unix' => '6.68',
8383             'ExtUtils::MM_VMS' => '6.68',
8384             'ExtUtils::MM_VOS' => '6.68',
8385             'ExtUtils::MM_Win32' => '6.68',
8386             'ExtUtils::MM_Win95' => '6.68',
8387             'ExtUtils::MY' => '6.68',
8388             'ExtUtils::MakeMaker' => '6.68',
8389             'ExtUtils::MakeMaker::Config'=> '6.68',
8390             'ExtUtils::Mkbootstrap' => '6.68',
8391             'ExtUtils::Mksymlists' => '6.68',
8392             'ExtUtils::ParseXS' => '3.19',
8393             'ExtUtils::testlib' => '6.68',
8394             'Fatal' => '2.19',
8395             'File::Copy' => '2.27',
8396             'File::DosGlob' => '1.11',
8397             'File::Fetch' => '0.42',
8398             'File::Find' => '1.24',
8399             'File::Spec' => '3.41',
8400             'File::Spec::Cygwin' => '3.41',
8401             'File::Spec::Epoc' => '3.41',
8402             'File::Spec::Mac' => '3.41',
8403             'File::Spec::OS2' => '3.41',
8404             'File::Spec::Unix' => '3.41',
8405             'File::Spec::VMS' => '3.41',
8406             'File::Spec::Win32' => '3.41',
8407             'File::Temp' => '0.2301',
8408             'Filter::Simple' => '0.90',
8409             'Filter::Util::Call' => '1.49',
8410             'Getopt::Long' => '2.4',
8411             'HTTP::Tiny' => '0.031',
8412             'Hash::Util::FieldHash' => '1.11',
8413             'IO::Compress::Adapter::Bzip2'=> '2.061',
8414             'IO::Compress::Adapter::Deflate'=> '2.061',
8415             'IO::Compress::Adapter::Identity'=> '2.061',
8416             'IO::Compress::Base' => '2.061',
8417             'IO::Compress::Base::Common'=> '2.061',
8418             'IO::Compress::Bzip2' => '2.061',
8419             'IO::Compress::Deflate' => '2.061',
8420             'IO::Compress::Gzip' => '2.061',
8421             'IO::Compress::Gzip::Constants'=> '2.061',
8422             'IO::Compress::RawDeflate'=> '2.061',
8423             'IO::Compress::Zip' => '2.061',
8424             'IO::Compress::Zip::Constants'=> '2.061',
8425             'IO::Compress::Zlib::Constants'=> '2.061',
8426             'IO::Compress::Zlib::Extra'=> '2.061',
8427             'IO::Handle' => '1.35',
8428             'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8429             'IO::Uncompress::Adapter::Identity'=> '2.061',
8430             'IO::Uncompress::Adapter::Inflate'=> '2.061',
8431             'IO::Uncompress::AnyInflate'=> '2.061',
8432             'IO::Uncompress::AnyUncompress'=> '2.061',
8433             'IO::Uncompress::Base' => '2.061',
8434             'IO::Uncompress::Bunzip2'=> '2.061',
8435             'IO::Uncompress::Gunzip'=> '2.061',
8436             'IO::Uncompress::Inflate'=> '2.061',
8437             'IO::Uncompress::RawInflate'=> '2.061',
8438             'IO::Uncompress::Unzip' => '2.061',
8439             'IPC::Open3' => '1.14',
8440             'Locale::Codes' => '3.26',
8441             'Locale::Codes::Constants'=> '3.26',
8442             'Locale::Codes::Country'=> '3.26',
8443             'Locale::Codes::Country_Codes'=> '3.26',
8444             'Locale::Codes::Country_Retired'=> '3.26',
8445             'Locale::Codes::Currency'=> '3.26',
8446             'Locale::Codes::Currency_Codes'=> '3.26',
8447             'Locale::Codes::Currency_Retired'=> '3.26',
8448             'Locale::Codes::LangExt'=> '3.26',
8449             'Locale::Codes::LangExt_Codes'=> '3.26',
8450             'Locale::Codes::LangExt_Retired'=> '3.26',
8451             'Locale::Codes::LangFam'=> '3.26',
8452             'Locale::Codes::LangFam_Codes'=> '3.26',
8453             'Locale::Codes::LangFam_Retired'=> '3.26',
8454             'Locale::Codes::LangVar'=> '3.26',
8455             'Locale::Codes::LangVar_Codes'=> '3.26',
8456             'Locale::Codes::LangVar_Retired'=> '3.26',
8457             'Locale::Codes::Language'=> '3.26',
8458             'Locale::Codes::Language_Codes'=> '3.26',
8459             'Locale::Codes::Language_Retired'=> '3.26',
8460             'Locale::Codes::Script' => '3.26',
8461             'Locale::Codes::Script_Codes'=> '3.26',
8462             'Locale::Codes::Script_Retired'=> '3.26',
8463             'Locale::Country' => '3.26',
8464             'Locale::Currency' => '3.26',
8465             'Locale::Language' => '3.26',
8466             'Locale::Maketext' => '1.24',
8467             'Locale::Script' => '3.26',
8468             'Math::BigFloat' => '1.999',
8469             'Math::BigInt' => '1.9992',
8470             'Math::BigInt::Calc' => '1.998',
8471             'Math::BigInt::CalcEmu' => '1.9991',
8472             'Math::BigRat' => '0.2606',
8473             'Module::Build' => '0.4005',
8474             'Module::Build::Base' => '0.4005',
8475             'Module::Build::Compat' => '0.4005',
8476             'Module::Build::Config' => '0.4005',
8477             'Module::Build::Cookbook'=> '0.4005',
8478             'Module::Build::Dumper' => '0.4005',
8479             'Module::Build::ModuleInfo'=> '0.4005',
8480             'Module::Build::Notes' => '0.4005',
8481             'Module::Build::PPMMaker'=> '0.4005',
8482             'Module::Build::Platform::Amiga'=> '0.4005',
8483             'Module::Build::Platform::Default'=> '0.4005',
8484             'Module::Build::Platform::EBCDIC'=> '0.4005',
8485             'Module::Build::Platform::MPEiX'=> '0.4005',
8486             'Module::Build::Platform::MacOS'=> '0.4005',
8487             'Module::Build::Platform::RiscOS'=> '0.4005',
8488             'Module::Build::Platform::Unix'=> '0.4005',
8489             'Module::Build::Platform::VMS'=> '0.4005',
8490             'Module::Build::Platform::VOS'=> '0.4005',
8491             'Module::Build::Platform::Windows'=> '0.4005',
8492             'Module::Build::Platform::aix'=> '0.4005',
8493             'Module::Build::Platform::cygwin'=> '0.4005',
8494             'Module::Build::Platform::darwin'=> '0.4005',
8495             'Module::Build::Platform::os2'=> '0.4005',
8496             'Module::Build::PodParser'=> '0.4005',
8497             'Module::CoreList' => '2.92',
8498             'Module::CoreList::TieHashDelta'=> '2.92',
8499             'Module::CoreList::Utils'=> '2.92',
8500             'Module::Metadata' => '1.000014',
8501             'Net::Ping' => '2.42',
8502             'OS2::Process' => '1.09',
8503             'POSIX' => '1.33',
8504             'Pod::Find' => '1.61',
8505             'Pod::Html' => '1.19',
8506             'Pod::InputObjects' => '1.61',
8507             'Pod::ParseUtils' => '1.61',
8508             'Pod::Parser' => '1.61',
8509             'Pod::Perldoc' => '3.20',
8510             'Pod::Perldoc::BaseTo' => '3.20',
8511             'Pod::Perldoc::GetOptsOO'=> '3.20',
8512             'Pod::Perldoc::ToANSI' => '3.20',
8513             'Pod::Perldoc::ToChecker'=> '3.20',
8514             'Pod::Perldoc::ToMan' => '3.20',
8515             'Pod::Perldoc::ToNroff' => '3.20',
8516             'Pod::Perldoc::ToPod' => '3.20',
8517             'Pod::Perldoc::ToRtf' => '3.20',
8518             'Pod::Perldoc::ToTerm' => '3.20',
8519             'Pod::Perldoc::ToText' => '3.20',
8520             'Pod::Perldoc::ToTk' => '3.20',
8521             'Pod::Perldoc::ToXml' => '3.20',
8522             'Pod::Select' => '1.61',
8523             'Pod::Usage' => '1.63',
8524             'Safe' => '2.36',
8525             'Storable' => '2.43',
8526             'Sys::Hostname' => '1.18',
8527             'Sys::Syslog' => '0.33',
8528             'TAP::Base' => '3.28',
8529             'TAP::Formatter::Base' => '3.28',
8530             'TAP::Formatter::Color' => '3.28',
8531             'TAP::Formatter::Console'=> '3.28',
8532             'TAP::Formatter::Console::ParallelSession'=> '3.28',
8533             'TAP::Formatter::Console::Session'=> '3.28',
8534             'TAP::Formatter::File' => '3.28',
8535             'TAP::Formatter::File::Session'=> '3.28',
8536             'TAP::Formatter::Session'=> '3.28',
8537             'TAP::Harness' => '3.28',
8538             'TAP::Object' => '3.28',
8539             'TAP::Parser' => '3.28',
8540             'TAP::Parser::Aggregator'=> '3.28',
8541             'TAP::Parser::Grammar' => '3.28',
8542             'TAP::Parser::Iterator' => '3.28',
8543             'TAP::Parser::Iterator::Array'=> '3.28',
8544             'TAP::Parser::Iterator::Process'=> '3.28',
8545             'TAP::Parser::Iterator::Stream'=> '3.28',
8546             'TAP::Parser::IteratorFactory'=> '3.28',
8547             'TAP::Parser::Multiplexer'=> '3.28',
8548             'TAP::Parser::Result' => '3.28',
8549             'TAP::Parser::Result::Bailout'=> '3.28',
8550             'TAP::Parser::Result::Comment'=> '3.28',
8551             'TAP::Parser::Result::Plan'=> '3.28',
8552             'TAP::Parser::Result::Pragma'=> '3.28',
8553             'TAP::Parser::Result::Test'=> '3.28',
8554             'TAP::Parser::Result::Unknown'=> '3.28',
8555             'TAP::Parser::Result::Version'=> '3.28',
8556             'TAP::Parser::Result::YAML'=> '3.28',
8557             'TAP::Parser::ResultFactory'=> '3.28',
8558             'TAP::Parser::Scheduler'=> '3.28',
8559             'TAP::Parser::Scheduler::Job'=> '3.28',
8560             'TAP::Parser::Scheduler::Spinner'=> '3.28',
8561             'TAP::Parser::Source' => '3.28',
8562             'TAP::Parser::SourceHandler'=> '3.28',
8563             'TAP::Parser::SourceHandler::Executable'=> '3.28',
8564             'TAP::Parser::SourceHandler::File'=> '3.28',
8565             'TAP::Parser::SourceHandler::Handle'=> '3.28',
8566             'TAP::Parser::SourceHandler::Perl'=> '3.28',
8567             'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8568             'TAP::Parser::Utils' => '3.28',
8569             'TAP::Parser::YAMLish::Reader'=> '3.28',
8570             'TAP::Parser::YAMLish::Writer'=> '3.28',
8571             'Term::ReadLine' => '1.13',
8572             'Test::Harness' => '3.28',
8573             'Text::Tabs' => '2013.0523',
8574             'Text::Wrap' => '2013.0523',
8575             'Thread' => '3.04',
8576             'Tie::File' => '1.00',
8577             'Time::Piece' => '1.2002',
8578             'Unicode::Collate' => '0.98',
8579             'Unicode::UCD' => '0.53',
8580             'XS::APItest' => '0.53',
8581             '_charnames' => '1.37',
8582             'autodie' => '2.19',
8583             'autodie::exception' => '2.19',
8584             'autodie::exception::system'=> '2.19',
8585             'autodie::hints' => '2.19',
8586             'autodie::skip' => '2.19',
8587             'bigint' => '0.35',
8588             'charnames' => '1.38',
8589             'encoding' => '2.12',
8590             'inc::latest' => '0.4005',
8591             'mro' => '1.12',
8592             'perlfaq' => '5.0150043',
8593             're' => '0.25',
8594             'threads' => '1.87',
8595             'threads::shared' => '1.44',
8596             'utf8' => '1.12',
8597             },
8598             removed => {
8599             }
8600             },
8601             5.019002 => {
8602             delta_from => 5.019001,
8603             changed => {
8604             'B' => '1.44',
8605             'B::Concise' => '0.98',
8606             'B::Deparse' => '1.22',
8607             'Benchmark' => '1.17',
8608             'Class::Struct' => '0.65',
8609             'Config' => '5.019002',
8610             'DB' => '1.07',
8611             'DBM_Filter' => '0.06',
8612             'DBM_Filter::compress' => '0.03',
8613             'DBM_Filter::encode' => '0.03',
8614             'DBM_Filter::int32' => '0.03',
8615             'DBM_Filter::null' => '0.03',
8616             'DBM_Filter::utf8' => '0.03',
8617             'DB_File' => '1.829',
8618             'Data::Dumper' => '2.147',
8619             'Devel::Peek' => '1.12',
8620             'Digest::MD5' => '2.53',
8621             'Digest::SHA' => '5.85',
8622             'English' => '1.07',
8623             'Errno' => '1.19',
8624             'ExtUtils::Embed' => '1.31',
8625             'ExtUtils::Miniperl' => '1',
8626             'ExtUtils::ParseXS' => '3.21',
8627             'ExtUtils::ParseXS::Constants'=> '3.21',
8628             'ExtUtils::ParseXS::CountLines'=> '3.21',
8629             'ExtUtils::ParseXS::Eval'=> '3.19',
8630             'ExtUtils::ParseXS::Utilities'=> '3.21',
8631             'ExtUtils::Typemaps' => '3.21',
8632             'ExtUtils::Typemaps::Cmd'=> '3.21',
8633             'ExtUtils::Typemaps::InputMap'=> '3.21',
8634             'ExtUtils::Typemaps::OutputMap'=> '3.21',
8635             'ExtUtils::Typemaps::Type'=> '3.21',
8636             'ExtUtils::XSSymSet' => '1.3',
8637             'Fatal' => '2.20',
8638             'File::Basename' => '2.85',
8639             'File::Spec::VMS' => '3.43',
8640             'File::Spec::Win32' => '3.42',
8641             'Getopt::Long' => '2.41',
8642             'Getopt::Std' => '1.09',
8643             'HTTP::Tiny' => '0.034',
8644             'Hash::Util::FieldHash' => '1.12',
8645             'I18N::Langinfo' => '0.11',
8646             'IO::Socket::INET' => '1.34',
8647             'IO::Socket::UNIX' => '1.25',
8648             'IPC::Cmd' => '0.82',
8649             'MIME::Base64' => '3.14',
8650             'Module::CoreList' => '2.94',
8651             'Module::CoreList::TieHashDelta'=> '2.94',
8652             'Module::CoreList::Utils'=> '2.94',
8653             'POSIX' => '1.34',
8654             'Params::Check' => '0.38',
8655             'Parse::CPAN::Meta' => '1.4405',
8656             'Pod::Functions' => '1.07',
8657             'Pod::Html' => '1.2',
8658             'Safe' => '2.37',
8659             'Socket' => '2.010',
8660             'Storable' => '2.45',
8661             'Text::ParseWords' => '3.29',
8662             'Tie::Array' => '1.06',
8663             'Tie::Hash' => '1.05',
8664             'Tie::Scalar' => '1.03',
8665             'Time::Piece' => '1.21',
8666             'Time::Seconds' => '1.21',
8667             'XS::APItest' => '0.54',
8668             'autodie' => '2.20',
8669             'autodie::exception' => '2.20',
8670             'autodie::exception::system'=> '2.20',
8671             'autodie::hints' => '2.20',
8672             'autodie::skip' => '2.20',
8673             'base' => '2.19',
8674             'deprecate' => '0.03',
8675             'if' => '0.0603',
8676             'integer' => '1.01',
8677             'strict' => '1.08',
8678             'subs' => '1.02',
8679             'vmsish' => '1.04',
8680             },
8681             removed => {
8682             }
8683             },
8684             5.019003 => {
8685             delta_from => 5.019002,
8686             changed => {
8687             'B' => '1.45',
8688             'CPAN::Meta' => '2.132140',
8689             'CPAN::Meta::Converter' => '2.132140',
8690             'CPAN::Meta::Feature' => '2.132140',
8691             'CPAN::Meta::History' => '2.132140',
8692             'CPAN::Meta::Prereqs' => '2.132140',
8693             'CPAN::Meta::Spec' => '2.132140',
8694             'CPAN::Meta::Validator' => '2.132140',
8695             'Carp' => '1.31',
8696             'Carp::Heavy' => '1.31',
8697             'Compress::Raw::Bzip2' => '2.062',
8698             'Compress::Raw::Zlib' => '2.062',
8699             'Compress::Zlib' => '2.062',
8700             'Config' => '5.019003',
8701             'Config::Perl::V' => '0.19',
8702             'Cwd' => '3.44',
8703             'Data::Dumper' => '2.148',
8704             'Devel::PPPort' => '3.21',
8705             'Devel::Peek' => '1.13',
8706             'DynaLoader' => '1.19',
8707             'Encode' => '2.52',
8708             'Encode::Alias' => '2.17',
8709             'Encode::Encoding' => '2.06',
8710             'Encode::GSM0338' => '2.04',
8711             'Encode::MIME::Header' => '2.14',
8712             'Encode::Unicode' => '2.08',
8713             'English' => '1.08',
8714             'Exporter' => '5.69',
8715             'Exporter::Heavy' => '5.69',
8716             'ExtUtils::Command::MM' => '6.72',
8717             'ExtUtils::Liblist' => '6.72',
8718             'ExtUtils::Liblist::Kid'=> '6.72',
8719             'ExtUtils::MM' => '6.72',
8720             'ExtUtils::MM_AIX' => '6.72',
8721             'ExtUtils::MM_Any' => '6.72',
8722             'ExtUtils::MM_BeOS' => '6.72',
8723             'ExtUtils::MM_Cygwin' => '6.72',
8724             'ExtUtils::MM_DOS' => '6.72',
8725             'ExtUtils::MM_Darwin' => '6.72',
8726             'ExtUtils::MM_MacOS' => '6.72',
8727             'ExtUtils::MM_NW5' => '6.72',
8728             'ExtUtils::MM_OS2' => '6.72',
8729             'ExtUtils::MM_QNX' => '6.72',
8730             'ExtUtils::MM_UWIN' => '6.72',
8731             'ExtUtils::MM_Unix' => '6.72',
8732             'ExtUtils::MM_VMS' => '6.72',
8733             'ExtUtils::MM_VOS' => '6.72',
8734             'ExtUtils::MM_Win32' => '6.72',
8735             'ExtUtils::MM_Win95' => '6.72',
8736             'ExtUtils::MY' => '6.72',
8737             'ExtUtils::MakeMaker' => '6.72',
8738             'ExtUtils::MakeMaker::Config'=> '6.72',
8739             'ExtUtils::Mkbootstrap' => '6.72',
8740             'ExtUtils::Mksymlists' => '6.72',
8741             'ExtUtils::ParseXS::Eval'=> '3.21',
8742             'ExtUtils::testlib' => '6.72',
8743             'File::Spec' => '3.44',
8744             'File::Spec::Cygwin' => '3.44',
8745             'File::Spec::Epoc' => '3.44',
8746             'File::Spec::Functions' => '3.44',
8747             'File::Spec::Mac' => '3.44',
8748             'File::Spec::OS2' => '3.44',
8749             'File::Spec::Unix' => '3.44',
8750             'File::Spec::VMS' => '3.44',
8751             'File::Spec::Win32' => '3.44',
8752             'Getopt::Std' => '1.10',
8753             'IO::Compress::Adapter::Bzip2'=> '2.062',
8754             'IO::Compress::Adapter::Deflate'=> '2.062',
8755             'IO::Compress::Adapter::Identity'=> '2.062',
8756             'IO::Compress::Base' => '2.062',
8757             'IO::Compress::Base::Common'=> '2.062',
8758             'IO::Compress::Bzip2' => '2.062',
8759             'IO::Compress::Deflate' => '2.062',
8760             'IO::Compress::Gzip' => '2.062',
8761             'IO::Compress::Gzip::Constants'=> '2.062',
8762             'IO::Compress::RawDeflate'=> '2.062',
8763             'IO::Compress::Zip' => '2.062',
8764             'IO::Compress::Zip::Constants'=> '2.062',
8765             'IO::Compress::Zlib::Constants'=> '2.062',
8766             'IO::Compress::Zlib::Extra'=> '2.062',
8767             'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8768             'IO::Uncompress::Adapter::Identity'=> '2.062',
8769             'IO::Uncompress::Adapter::Inflate'=> '2.062',
8770             'IO::Uncompress::AnyInflate'=> '2.062',
8771             'IO::Uncompress::AnyUncompress'=> '2.062',
8772             'IO::Uncompress::Base' => '2.062',
8773             'IO::Uncompress::Bunzip2'=> '2.062',
8774             'IO::Uncompress::Gunzip'=> '2.062',
8775             'IO::Uncompress::Inflate'=> '2.062',
8776             'IO::Uncompress::RawInflate'=> '2.062',
8777             'IO::Uncompress::Unzip' => '2.062',
8778             'IPC::Cmd' => '0.84',
8779             'IPC::Msg' => '2.04',
8780             'IPC::Open3' => '1.15',
8781             'IPC::Semaphore' => '2.04',
8782             'IPC::SharedMem' => '2.04',
8783             'IPC::SysV' => '2.04',
8784             'List::Util' => '1.31',
8785             'List::Util::XS' => '1.31',
8786             'Math::BigFloat::Trace' => '0.36',
8787             'Math::BigInt::Trace' => '0.36',
8788             'Module::Build' => '0.4007',
8789             'Module::Build::Base' => '0.4007',
8790             'Module::Build::Compat' => '0.4007',
8791             'Module::Build::Config' => '0.4007',
8792             'Module::Build::Cookbook'=> '0.4007',
8793             'Module::Build::Dumper' => '0.4007',
8794             'Module::Build::ModuleInfo'=> '0.4007',
8795             'Module::Build::Notes' => '0.4007',
8796             'Module::Build::PPMMaker'=> '0.4007',
8797             'Module::Build::Platform::Default'=> '0.4007',
8798             'Module::Build::Platform::MacOS'=> '0.4007',
8799             'Module::Build::Platform::Unix'=> '0.4007',
8800             'Module::Build::Platform::VMS'=> '0.4007',
8801             'Module::Build::Platform::VOS'=> '0.4007',
8802             'Module::Build::Platform::Windows'=> '0.4007',
8803             'Module::Build::Platform::aix'=> '0.4007',
8804             'Module::Build::Platform::cygwin'=> '0.4007',
8805             'Module::Build::Platform::darwin'=> '0.4007',
8806             'Module::Build::Platform::os2'=> '0.4007',
8807             'Module::Build::PodParser'=> '0.4007',
8808             'Module::CoreList' => '2.97',
8809             'Module::CoreList::TieHashDelta'=> '2.97',
8810             'Module::CoreList::Utils'=> '2.97',
8811             'Net::Cmd' => '2.30',
8812             'Net::Config' => '1.12',
8813             'Net::Domain' => '2.22',
8814             'Net::FTP' => '2.78',
8815             'Net::FTP::dataconn' => '0.12',
8816             'Net::NNTP' => '2.25',
8817             'Net::Netrc' => '2.14',
8818             'Net::POP3' => '2.30',
8819             'Net::SMTP' => '2.32',
8820             'PerlIO' => '1.08',
8821             'Pod::Functions' => '1.08',
8822             'Scalar::Util' => '1.31',
8823             'Socket' => '2.011',
8824             'Storable' => '2.46',
8825             'Time::HiRes' => '1.9726',
8826             'Time::Piece' => '1.22',
8827             'Time::Seconds' => '1.22',
8828             'XS::APItest' => '0.55',
8829             'bigint' => '0.36',
8830             'bignum' => '0.36',
8831             'bigrat' => '0.36',
8832             'constant' => '1.28',
8833             'diagnostics' => '1.32',
8834             'inc::latest' => '0.4007',
8835             'mro' => '1.13',
8836             'parent' => '0.226',
8837             'utf8' => '1.13',
8838             'version' => '0.9903',
8839             },
8840             removed => {
8841             'Module::Build::Platform::Amiga'=> 1,
8842             'Module::Build::Platform::EBCDIC'=> 1,
8843             'Module::Build::Platform::MPEiX'=> 1,
8844             'Module::Build::Platform::RiscOS'=> 1,
8845             }
8846             },
8847             5.019004 => {
8848             delta_from => 5.019003,
8849             changed => {
8850             'B' => '1.46',
8851             'B::Concise' => '0.99',
8852             'B::Deparse' => '1.23',
8853             'CPAN' => '2.03',
8854             'CPAN::Meta' => '2.132620',
8855             'CPAN::Meta::Converter' => '2.132620',
8856             'CPAN::Meta::Feature' => '2.132620',
8857             'CPAN::Meta::History' => '2.132620',
8858             'CPAN::Meta::Prereqs' => '2.132620',
8859             'CPAN::Meta::Requirements'=> '2.123',
8860             'CPAN::Meta::Spec' => '2.132620',
8861             'CPAN::Meta::Validator' => '2.132620',
8862             'Carp' => '1.32',
8863             'Carp::Heavy' => '1.32',
8864             'Config' => '5.019004',
8865             'Data::Dumper' => '2.149',
8866             'Devel::Peek' => '1.14',
8867             'DynaLoader' => '1.20',
8868             'Encode' => '2.55',
8869             'Encode::Alias' => '2.18',
8870             'Encode::CN::HZ' => '2.07',
8871             'Encode::Encoder' => '2.03',
8872             'Encode::Encoding' => '2.07',
8873             'Encode::GSM0338' => '2.05',
8874             'Encode::Guess' => '2.06',
8875             'Encode::JP::JIS7' => '2.05',
8876             'Encode::KR::2022_KR' => '2.03',
8877             'Encode::MIME::Header' => '2.15',
8878             'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8879             'Encode::Unicode' => '2.09',
8880             'Encode::Unicode::UTF7' => '2.08',
8881             'Errno' => '1.20',
8882             'Exporter' => '5.70',
8883             'Exporter::Heavy' => '5.70',
8884             'ExtUtils::CBuilder' => '0.280212',
8885             'ExtUtils::CBuilder::Base'=> '0.280212',
8886             'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8887             'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8888             'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8889             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8890             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8891             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8892             'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8893             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8894             'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8895             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8896             'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8897             'ExtUtils::Command' => '1.18',
8898             'ExtUtils::Command::MM' => '6.76',
8899             'ExtUtils::Liblist' => '6.76',
8900             'ExtUtils::Liblist::Kid'=> '6.76',
8901             'ExtUtils::MM' => '6.76',
8902             'ExtUtils::MM_AIX' => '6.76',
8903             'ExtUtils::MM_Any' => '6.76',
8904             'ExtUtils::MM_BeOS' => '6.76',
8905             'ExtUtils::MM_Cygwin' => '6.76',
8906             'ExtUtils::MM_DOS' => '6.76',
8907             'ExtUtils::MM_Darwin' => '6.76',
8908             'ExtUtils::MM_MacOS' => '6.76',
8909             'ExtUtils::MM_NW5' => '6.76',
8910             'ExtUtils::MM_OS2' => '6.76',
8911             'ExtUtils::MM_QNX' => '6.76',
8912             'ExtUtils::MM_UWIN' => '6.76',
8913             'ExtUtils::MM_Unix' => '6.76',
8914             'ExtUtils::MM_VMS' => '6.76',
8915             'ExtUtils::MM_VOS' => '6.76',
8916             'ExtUtils::MM_Win32' => '6.76',
8917             'ExtUtils::MM_Win95' => '6.76',
8918             'ExtUtils::MY' => '6.76',
8919             'ExtUtils::MakeMaker' => '6.76',
8920             'ExtUtils::MakeMaker::Config'=> '6.76',
8921             'ExtUtils::Mkbootstrap' => '6.76',
8922             'ExtUtils::Mksymlists' => '6.76',
8923             'ExtUtils::ParseXS' => '3.23',
8924             'ExtUtils::ParseXS::Constants'=> '3.23',
8925             'ExtUtils::ParseXS::CountLines'=> '3.23',
8926             'ExtUtils::ParseXS::Eval'=> '3.23',
8927             'ExtUtils::ParseXS::Utilities'=> '3.23',
8928             'ExtUtils::Typemaps' => '3.23',
8929             'ExtUtils::Typemaps::Cmd'=> '3.23',
8930             'ExtUtils::Typemaps::InputMap'=> '3.23',
8931             'ExtUtils::Typemaps::OutputMap'=> '3.23',
8932             'ExtUtils::Typemaps::Type'=> '3.23',
8933             'ExtUtils::testlib' => '6.76',
8934             'Fatal' => '2.21',
8935             'File::Copy' => '2.28',
8936             'File::Find' => '1.25',
8937             'File::Glob' => '1.21',
8938             'FileCache' => '1.09',
8939             'HTTP::Tiny' => '0.035',
8940             'Hash::Util::FieldHash' => '1.13',
8941             'I18N::LangTags' => '0.40',
8942             'IO' => '1.29',
8943             'IO::Socket' => '1.37',
8944             'IPC::Open3' => '1.16',
8945             'JSON::PP' => '2.27202_01',
8946             'List::Util' => '1.32',
8947             'List::Util::XS' => '1.32',
8948             'Locale::Codes' => '3.27',
8949             'Locale::Codes::Constants'=> '3.27',
8950             'Locale::Codes::Country'=> '3.27',
8951             'Locale::Codes::Country_Codes'=> '3.27',
8952             'Locale::Codes::Country_Retired'=> '3.27',
8953             'Locale::Codes::Currency'=> '3.27',
8954             'Locale::Codes::Currency_Codes'=> '3.27',
8955             'Locale::Codes::Currency_Retired'=> '3.27',
8956             'Locale::Codes::LangExt'=> '3.27',
8957             'Locale::Codes::LangExt_Codes'=> '3.27',
8958             'Locale::Codes::LangExt_Retired'=> '3.27',
8959             'Locale::Codes::LangFam'=> '3.27',
8960             'Locale::Codes::LangFam_Codes'=> '3.27',
8961             'Locale::Codes::LangFam_Retired'=> '3.27',
8962             'Locale::Codes::LangVar'=> '3.27',
8963             'Locale::Codes::LangVar_Codes'=> '3.27',
8964             'Locale::Codes::LangVar_Retired'=> '3.27',
8965             'Locale::Codes::Language'=> '3.27',
8966             'Locale::Codes::Language_Codes'=> '3.27',
8967             'Locale::Codes::Language_Retired'=> '3.27',
8968             'Locale::Codes::Script' => '3.27',
8969             'Locale::Codes::Script_Codes'=> '3.27',
8970             'Locale::Codes::Script_Retired'=> '3.27',
8971             'Locale::Country' => '3.27',
8972             'Locale::Currency' => '3.27',
8973             'Locale::Language' => '3.27',
8974             'Locale::Script' => '3.27',
8975             'Math::BigFloat' => '1.9991',
8976             'Math::BigInt' => '1.9993',
8977             'Math::BigInt::FastCalc'=> '0.31',
8978             'Module::CoreList' => '2.99',
8979             'Module::CoreList::TieHashDelta'=> '2.99',
8980             'Module::CoreList::Utils'=> '2.99',
8981             'Module::Load::Conditional'=> '0.58',
8982             'Module::Metadata' => '1.000018',
8983             'Opcode' => '1.26',
8984             'POSIX' => '1.35',
8985             'Parse::CPAN::Meta' => '1.4407',
8986             'Perl::OSType' => '1.005',
8987             'Pod::Html' => '1.21',
8988             'Scalar::Util' => '1.32',
8989             'Socket' => '2.012',
8990             'Storable' => '2.47',
8991             'Term::ReadLine' => '1.14',
8992             'Test::Builder' => '0.98_06',
8993             'Test::Builder::Module' => '0.98_06',
8994             'Test::More' => '0.98_06',
8995             'Test::Simple' => '0.98_06',
8996             'Time::Piece' => '1.23',
8997             'Time::Seconds' => '1.23',
8998             'Unicode::Collate' => '0.99',
8999             'Unicode::UCD' => '0.54',
9000             'XS::APItest' => '0.56',
9001             'XS::Typemap' => '0.11',
9002             '_charnames' => '1.39',
9003             'autodie' => '2.21',
9004             'autodie::exception' => '2.21',
9005             'autodie::exception::system'=> '2.21',
9006             'autodie::hints' => '2.21',
9007             'autodie::skip' => '2.21',
9008             'charnames' => '1.39',
9009             'diagnostics' => '1.33',
9010             'mro' => '1.14',
9011             'parent' => '0.228',
9012             'perlfaq' => '5.0150044',
9013             're' => '0.26',
9014             'version' => '0.9904',
9015             'warnings' => '1.19',
9016             },
9017             removed => {
9018             }
9019             },
9020             5.019005 => {
9021             delta_from => 5.019004,
9022             changed => {
9023             'App::Prove' => '3.29',
9024             'App::Prove::State' => '3.29',
9025             'App::Prove::State::Result'=> '3.29',
9026             'App::Prove::State::Result::Test'=> '3.29',
9027             'CPAN::Meta' => '2.132830',
9028             'CPAN::Meta::Converter' => '2.132830',
9029             'CPAN::Meta::Feature' => '2.132830',
9030             'CPAN::Meta::History' => '2.132830',
9031             'CPAN::Meta::Prereqs' => '2.132830',
9032             'CPAN::Meta::Requirements'=> '2.125',
9033             'CPAN::Meta::Spec' => '2.132830',
9034             'CPAN::Meta::Validator' => '2.132830',
9035             'CPAN::Meta::YAML' => '0.010',
9036             'Config' => '5.019005',
9037             'Cwd' => '3.45',
9038             'ExtUtils::Command::MM' => '6.80',
9039             'ExtUtils::Install' => '1.61',
9040             'ExtUtils::Liblist' => '6.80',
9041             'ExtUtils::Liblist::Kid'=> '6.80',
9042             'ExtUtils::MM' => '6.80',
9043             'ExtUtils::MM_AIX' => '6.80',
9044             'ExtUtils::MM_Any' => '6.80',
9045             'ExtUtils::MM_BeOS' => '6.80',
9046             'ExtUtils::MM_Cygwin' => '6.80',
9047             'ExtUtils::MM_DOS' => '6.80',
9048             'ExtUtils::MM_Darwin' => '6.80',
9049             'ExtUtils::MM_MacOS' => '6.80',
9050             'ExtUtils::MM_NW5' => '6.80',
9051             'ExtUtils::MM_OS2' => '6.80',
9052             'ExtUtils::MM_QNX' => '6.80',
9053             'ExtUtils::MM_UWIN' => '6.80',
9054             'ExtUtils::MM_Unix' => '6.80',
9055             'ExtUtils::MM_VMS' => '6.80',
9056             'ExtUtils::MM_VOS' => '6.80',
9057             'ExtUtils::MM_Win32' => '6.80',
9058             'ExtUtils::MM_Win95' => '6.80',
9059             'ExtUtils::MY' => '6.80',
9060             'ExtUtils::MakeMaker' => '6.80',
9061             'ExtUtils::MakeMaker::Config'=> '6.80',
9062             'ExtUtils::Mkbootstrap' => '6.80',
9063             'ExtUtils::Mksymlists' => '6.80',
9064             'ExtUtils::testlib' => '6.80',
9065             'Fatal' => '2.22',
9066             'File::Fetch' => '0.44',
9067             'File::Glob' => '1.22',
9068             'File::Spec' => '3.45',
9069             'File::Spec::Cygwin' => '3.45',
9070             'File::Spec::Epoc' => '3.45',
9071             'File::Spec::Functions' => '3.45',
9072             'File::Spec::Mac' => '3.45',
9073             'File::Spec::OS2' => '3.45',
9074             'File::Spec::Unix' => '3.45',
9075             'File::Spec::VMS' => '3.45',
9076             'File::Spec::Win32' => '3.45',
9077             'File::Temp' => '0.2304',
9078             'Getopt::Long' => '2.42',
9079             'HTTP::Tiny' => '0.036',
9080             'IPC::Cmd' => '0.84_01',
9081             'JSON::PP' => '2.27203',
9082             'List::Util' => '1.35',
9083             'List::Util::XS' => '1.35',
9084             'Module::CoreList' => '3.00',
9085             'Module::CoreList::TieHashDelta'=> '3.00',
9086             'Module::CoreList::Utils'=> '3.00',
9087             'Module::Metadata' => '1.000019',
9088             'Parse::CPAN::Meta' => '1.4409',
9089             'Perl::OSType' => '1.006',
9090             'PerlIO::scalar' => '0.17',
9091             'Pod::Man' => '2.28',
9092             'Pod::Text' => '3.18',
9093             'Pod::Text::Termcap' => '2.08',
9094             'Scalar::Util' => '1.35',
9095             'TAP::Base' => '3.29',
9096             'TAP::Formatter::Base' => '3.29',
9097             'TAP::Formatter::Color' => '3.29',
9098             'TAP::Formatter::Console'=> '3.29',
9099             'TAP::Formatter::Console::ParallelSession'=> '3.29',
9100             'TAP::Formatter::Console::Session'=> '3.29',
9101             'TAP::Formatter::File' => '3.29',
9102             'TAP::Formatter::File::Session'=> '3.29',
9103             'TAP::Formatter::Session'=> '3.29',
9104             'TAP::Harness' => '3.29',
9105             'TAP::Harness::Env' => '3.29',
9106             'TAP::Object' => '3.29',
9107             'TAP::Parser' => '3.29',
9108             'TAP::Parser::Aggregator'=> '3.29',
9109             'TAP::Parser::Grammar' => '3.29',
9110             'TAP::Parser::Iterator' => '3.29',
9111             'TAP::Parser::Iterator::Array'=> '3.29',
9112             'TAP::Parser::Iterator::Process'=> '3.29',
9113             'TAP::Parser::Iterator::Stream'=> '3.29',
9114             'TAP::Parser::IteratorFactory'=> '3.29',
9115             'TAP::Parser::Multiplexer'=> '3.29',
9116             'TAP::Parser::Result' => '3.29',
9117             'TAP::Parser::Result::Bailout'=> '3.29',
9118             'TAP::Parser::Result::Comment'=> '3.29',
9119             'TAP::Parser::Result::Plan'=> '3.29',
9120             'TAP::Parser::Result::Pragma'=> '3.29',
9121             'TAP::Parser::Result::Test'=> '3.29',
9122             'TAP::Parser::Result::Unknown'=> '3.29',
9123             'TAP::Parser::Result::Version'=> '3.29',
9124             'TAP::Parser::Result::YAML'=> '3.29',
9125             'TAP::Parser::ResultFactory'=> '3.29',
9126             'TAP::Parser::Scheduler'=> '3.29',
9127             'TAP::Parser::Scheduler::Job'=> '3.29',
9128             'TAP::Parser::Scheduler::Spinner'=> '3.29',
9129             'TAP::Parser::Source' => '3.29',
9130             'TAP::Parser::SourceHandler'=> '3.29',
9131             'TAP::Parser::SourceHandler::Executable'=> '3.29',
9132             'TAP::Parser::SourceHandler::File'=> '3.29',
9133             'TAP::Parser::SourceHandler::Handle'=> '3.29',
9134             'TAP::Parser::SourceHandler::Perl'=> '3.29',
9135             'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
9136             'TAP::Parser::YAMLish::Reader'=> '3.29',
9137             'TAP::Parser::YAMLish::Writer'=> '3.29',
9138             'Test::Builder' => '0.99',
9139             'Test::Builder::Module' => '0.99',
9140             'Test::Builder::Tester' => '1.23_002',
9141             'Test::Builder::Tester::Color'=> '1.23_002',
9142             'Test::Harness' => '3.29',
9143             'Test::More' => '0.99',
9144             'Test::Simple' => '0.99',
9145             'Unicode' => '6.3.0',
9146             'Unicode::Normalize' => '1.17',
9147             'Unicode::UCD' => '0.55',
9148             'attributes' => '0.22',
9149             'autodie' => '2.22',
9150             'autodie::exception' => '2.22',
9151             'autodie::exception::system'=> '2.22',
9152             'autodie::hints' => '2.22',
9153             'autodie::skip' => '2.22',
9154             'feature' => '1.34',
9155             'threads' => '1.89',
9156             'warnings' => '1.20',
9157             },
9158             removed => {
9159             'TAP::Parser::Utils' => 1,
9160             }
9161             },
9162             5.019006 => {
9163             delta_from => 5.019005,
9164             changed => {
9165             'App::Prove' => '3.30',
9166             'App::Prove::State' => '3.30',
9167             'App::Prove::State::Result'=> '3.30',
9168             'App::Prove::State::Result::Test'=> '3.30',
9169             'Archive::Tar' => '1.96',
9170             'Archive::Tar::Constant'=> '1.96',
9171             'Archive::Tar::File' => '1.96',
9172             'AutoLoader' => '5.74',
9173             'B' => '1.47',
9174             'B::Concise' => '0.991',
9175             'B::Debug' => '1.19',
9176             'B::Deparse' => '1.24',
9177             'Benchmark' => '1.18',
9178             'Compress::Raw::Bzip2' => '2.063',
9179             'Compress::Raw::Zlib' => '2.063',
9180             'Compress::Zlib' => '2.063',
9181             'Config' => '5.019006',
9182             'DB_File' => '1.831',
9183             'Devel::Peek' => '1.15',
9184             'DynaLoader' => '1.21',
9185             'Errno' => '1.20_01',
9186             'ExtUtils::Command::MM' => '6.82',
9187             'ExtUtils::Liblist' => '6.82',
9188             'ExtUtils::Liblist::Kid'=> '6.82',
9189             'ExtUtils::MM' => '6.82',
9190             'ExtUtils::MM_AIX' => '6.82',
9191             'ExtUtils::MM_Any' => '6.82',
9192             'ExtUtils::MM_BeOS' => '6.82',
9193             'ExtUtils::MM_Cygwin' => '6.82',
9194             'ExtUtils::MM_DOS' => '6.82',
9195             'ExtUtils::MM_Darwin' => '6.82',
9196             'ExtUtils::MM_MacOS' => '6.82',
9197             'ExtUtils::MM_NW5' => '6.82',
9198             'ExtUtils::MM_OS2' => '6.82',
9199             'ExtUtils::MM_QNX' => '6.82',
9200             'ExtUtils::MM_UWIN' => '6.82',
9201             'ExtUtils::MM_Unix' => '6.82',
9202             'ExtUtils::MM_VMS' => '6.82',
9203             'ExtUtils::MM_VOS' => '6.82',
9204             'ExtUtils::MM_Win32' => '6.82',
9205             'ExtUtils::MM_Win95' => '6.82',
9206             'ExtUtils::MY' => '6.82',
9207             'ExtUtils::MakeMaker' => '6.82',
9208             'ExtUtils::MakeMaker::Config'=> '6.82',
9209             'ExtUtils::Mkbootstrap' => '6.82',
9210             'ExtUtils::Mksymlists' => '6.82',
9211             'ExtUtils::testlib' => '6.82',
9212             'File::DosGlob' => '1.12',
9213             'File::Find' => '1.26',
9214             'File::Glob' => '1.23',
9215             'HTTP::Tiny' => '0.038',
9216             'IO' => '1.30',
9217             'IO::Compress::Adapter::Bzip2'=> '2.063',
9218             'IO::Compress::Adapter::Deflate'=> '2.063',
9219             'IO::Compress::Adapter::Identity'=> '2.063',
9220             'IO::Compress::Base' => '2.063',
9221             'IO::Compress::Base::Common'=> '2.063',
9222             'IO::Compress::Bzip2' => '2.063',
9223             'IO::Compress::Deflate' => '2.063',
9224             'IO::Compress::Gzip' => '2.063',
9225             'IO::Compress::Gzip::Constants'=> '2.063',
9226             'IO::Compress::RawDeflate'=> '2.063',
9227             'IO::Compress::Zip' => '2.063',
9228             'IO::Compress::Zip::Constants'=> '2.063',
9229             'IO::Compress::Zlib::Constants'=> '2.063',
9230             'IO::Compress::Zlib::Extra'=> '2.063',
9231             'IO::Select' => '1.22',
9232             'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9233             'IO::Uncompress::Adapter::Identity'=> '2.063',
9234             'IO::Uncompress::Adapter::Inflate'=> '2.063',
9235             'IO::Uncompress::AnyInflate'=> '2.063',
9236             'IO::Uncompress::AnyUncompress'=> '2.063',
9237             'IO::Uncompress::Base' => '2.063',
9238             'IO::Uncompress::Bunzip2'=> '2.063',
9239             'IO::Uncompress::Gunzip'=> '2.063',
9240             'IO::Uncompress::Inflate'=> '2.063',
9241             'IO::Uncompress::RawInflate'=> '2.063',
9242             'IO::Uncompress::Unzip' => '2.063',
9243             'IPC::Cmd' => '0.90',
9244             'Locale::Maketext' => '1.25',
9245             'Module::Build' => '0.4202',
9246             'Module::Build::Base' => '0.4202',
9247             'Module::Build::Compat' => '0.4202',
9248             'Module::Build::Config' => '0.4202',
9249             'Module::Build::Cookbook'=> '0.4202',
9250             'Module::Build::Dumper' => '0.4202',
9251             'Module::Build::ModuleInfo'=> '0.4202',
9252             'Module::Build::Notes' => '0.4202',
9253             'Module::Build::PPMMaker'=> '0.4202',
9254             'Module::Build::Platform::Default'=> '0.4202',
9255             'Module::Build::Platform::MacOS'=> '0.4202',
9256             'Module::Build::Platform::Unix'=> '0.4202',
9257             'Module::Build::Platform::VMS'=> '0.4202',
9258             'Module::Build::Platform::VOS'=> '0.4202',
9259             'Module::Build::Platform::Windows'=> '0.4202',
9260             'Module::Build::Platform::aix'=> '0.4202',
9261             'Module::Build::Platform::cygwin'=> '0.4202',
9262             'Module::Build::Platform::darwin'=> '0.4202',
9263             'Module::Build::Platform::os2'=> '0.4202',
9264             'Module::Build::PodParser'=> '0.4202',
9265             'Module::CoreList' => '3.01',
9266             'Module::CoreList::TieHashDelta'=> '3.01',
9267             'Module::CoreList::Utils'=> '3.01',
9268             'Opcode' => '1.27',
9269             'POSIX' => '1.36',
9270             'Package::Constants' => '0.04',
9271             'PerlIO::scalar' => '0.18',
9272             'PerlIO::via' => '0.13',
9273             'SDBM_File' => '1.10',
9274             'Socket' => '2.013',
9275             'TAP::Base' => '3.30',
9276             'TAP::Formatter::Base' => '3.30',
9277             'TAP::Formatter::Color' => '3.30',
9278             'TAP::Formatter::Console'=> '3.30',
9279             'TAP::Formatter::Console::ParallelSession'=> '3.30',
9280             'TAP::Formatter::Console::Session'=> '3.30',
9281             'TAP::Formatter::File' => '3.30',
9282             'TAP::Formatter::File::Session'=> '3.30',
9283             'TAP::Formatter::Session'=> '3.30',
9284             'TAP::Harness' => '3.30',
9285             'TAP::Harness::Env' => '3.30',
9286             'TAP::Object' => '3.30',
9287             'TAP::Parser' => '3.30',
9288             'TAP::Parser::Aggregator'=> '3.30',
9289             'TAP::Parser::Grammar' => '3.30',
9290             'TAP::Parser::Iterator' => '3.30',
9291             'TAP::Parser::Iterator::Array'=> '3.30',
9292             'TAP::Parser::Iterator::Process'=> '3.30',
9293             'TAP::Parser::Iterator::Stream'=> '3.30',
9294             'TAP::Parser::IteratorFactory'=> '3.30',
9295             'TAP::Parser::Multiplexer'=> '3.30',
9296             'TAP::Parser::Result' => '3.30',
9297             'TAP::Parser::Result::Bailout'=> '3.30',
9298             'TAP::Parser::Result::Comment'=> '3.30',
9299             'TAP::Parser::Result::Plan'=> '3.30',
9300             'TAP::Parser::Result::Pragma'=> '3.30',
9301             'TAP::Parser::Result::Test'=> '3.30',
9302             'TAP::Parser::Result::Unknown'=> '3.30',
9303             'TAP::Parser::Result::Version'=> '3.30',
9304             'TAP::Parser::Result::YAML'=> '3.30',
9305             'TAP::Parser::ResultFactory'=> '3.30',
9306             'TAP::Parser::Scheduler'=> '3.30',
9307             'TAP::Parser::Scheduler::Job'=> '3.30',
9308             'TAP::Parser::Scheduler::Spinner'=> '3.30',
9309             'TAP::Parser::Source' => '3.30',
9310             'TAP::Parser::SourceHandler'=> '3.30',
9311             'TAP::Parser::SourceHandler::Executable'=> '3.30',
9312             'TAP::Parser::SourceHandler::File'=> '3.30',
9313             'TAP::Parser::SourceHandler::Handle'=> '3.30',
9314             'TAP::Parser::SourceHandler::Perl'=> '3.30',
9315             'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9316             'TAP::Parser::YAMLish::Reader'=> '3.30',
9317             'TAP::Parser::YAMLish::Writer'=> '3.30',
9318             'Term::Cap' => '1.15',
9319             'Test::Builder' => '1.001002',
9320             'Test::Builder::Module' => '1.001002',
9321             'Test::Harness' => '3.30',
9322             'Test::More' => '1.001002',
9323             'Test::Simple' => '1.001002',
9324             'Tie::StdHandle' => '4.4',
9325             'Unicode::Collate' => '1.02',
9326             'Unicode::Collate::CJK::Korean'=> '1.02',
9327             'Unicode::Collate::Locale'=> '1.02',
9328             'XS::APItest' => '0.57',
9329             'XS::Typemap' => '0.12',
9330             'arybase' => '0.07',
9331             'bignum' => '0.37',
9332             'constant' => '1.29',
9333             'fields' => '2.17',
9334             'inc::latest' => '0.4202',
9335             'threads' => '1.90',
9336             'threads::shared' => '1.45',
9337             },
9338             removed => {
9339             }
9340             },
9341             5.019007 => {
9342             delta_from => 5.019006,
9343             changed => {
9344             'CGI' => '3.64',
9345             'CGI::Apache' => '1.02',
9346             'CGI::Carp' => '3.64',
9347             'CGI::Cookie' => '1.31',
9348             'CGI::Fast' => '1.10',
9349             'CGI::Pretty' => '3.64',
9350             'CGI::Push' => '1.06',
9351             'CGI::Switch' => '1.02',
9352             'CGI::Util' => '3.64',
9353             'CPAN::Meta' => '2.133380',
9354             'CPAN::Meta::Converter' => '2.133380',
9355             'CPAN::Meta::Feature' => '2.133380',
9356             'CPAN::Meta::History' => '2.133380',
9357             'CPAN::Meta::Prereqs' => '2.133380',
9358             'CPAN::Meta::Spec' => '2.133380',
9359             'CPAN::Meta::Validator' => '2.133380',
9360             'Config' => '5.019007',
9361             'Data::Dumper' => '2.150',
9362             'DynaLoader' => '1.22',
9363             'ExtUtils::Command::MM' => '6.84',
9364             'ExtUtils::Liblist' => '6.84',
9365             'ExtUtils::Liblist::Kid'=> '6.84',
9366             'ExtUtils::MM' => '6.84',
9367             'ExtUtils::MM_AIX' => '6.84',
9368             'ExtUtils::MM_Any' => '6.84',
9369             'ExtUtils::MM_BeOS' => '6.84',
9370             'ExtUtils::MM_Cygwin' => '6.84',
9371             'ExtUtils::MM_DOS' => '6.84',
9372             'ExtUtils::MM_Darwin' => '6.84',
9373             'ExtUtils::MM_MacOS' => '6.84',
9374             'ExtUtils::MM_NW5' => '6.84',
9375             'ExtUtils::MM_OS2' => '6.84',
9376             'ExtUtils::MM_QNX' => '6.84',
9377             'ExtUtils::MM_UWIN' => '6.84',
9378             'ExtUtils::MM_Unix' => '6.84',
9379             'ExtUtils::MM_VMS' => '6.84',
9380             'ExtUtils::MM_VOS' => '6.84',
9381             'ExtUtils::MM_Win32' => '6.84',
9382             'ExtUtils::MM_Win95' => '6.84',
9383             'ExtUtils::MY' => '6.84',
9384             'ExtUtils::MakeMaker' => '6.84',
9385             'ExtUtils::MakeMaker::Config'=> '6.84',
9386             'ExtUtils::Mkbootstrap' => '6.84',
9387             'ExtUtils::Mksymlists' => '6.84',
9388             'ExtUtils::testlib' => '6.84',
9389             'File::Fetch' => '0.46',
9390             'HTTP::Tiny' => '0.039',
9391             'Locale::Codes' => '3.28',
9392             'Locale::Codes::Constants'=> '3.28',
9393             'Locale::Codes::Country'=> '3.28',
9394             'Locale::Codes::Country_Codes'=> '3.28',
9395             'Locale::Codes::Country_Retired'=> '3.28',
9396             'Locale::Codes::Currency'=> '3.28',
9397             'Locale::Codes::Currency_Codes'=> '3.28',
9398             'Locale::Codes::Currency_Retired'=> '3.28',
9399             'Locale::Codes::LangExt'=> '3.28',
9400             'Locale::Codes::LangExt_Codes'=> '3.28',
9401             'Locale::Codes::LangExt_Retired'=> '3.28',
9402             'Locale::Codes::LangFam'=> '3.28',
9403             'Locale::Codes::LangFam_Codes'=> '3.28',
9404             'Locale::Codes::LangFam_Retired'=> '3.28',
9405             'Locale::Codes::LangVar'=> '3.28',
9406             'Locale::Codes::LangVar_Codes'=> '3.28',
9407             'Locale::Codes::LangVar_Retired'=> '3.28',
9408             'Locale::Codes::Language'=> '3.28',
9409             'Locale::Codes::Language_Codes'=> '3.28',
9410             'Locale::Codes::Language_Retired'=> '3.28',
9411             'Locale::Codes::Script' => '3.28',
9412             'Locale::Codes::Script_Codes'=> '3.28',
9413             'Locale::Codes::Script_Retired'=> '3.28',
9414             'Locale::Country' => '3.28',
9415             'Locale::Currency' => '3.28',
9416             'Locale::Language' => '3.28',
9417             'Locale::Script' => '3.28',
9418             'Module::Build' => '0.4203',
9419             'Module::Build::Base' => '0.4203',
9420             'Module::Build::Compat' => '0.4203',
9421             'Module::Build::Config' => '0.4203',
9422             'Module::Build::Cookbook'=> '0.4203',
9423             'Module::Build::Dumper' => '0.4203',
9424             'Module::Build::ModuleInfo'=> '0.4203',
9425             'Module::Build::Notes' => '0.4203',
9426             'Module::Build::PPMMaker'=> '0.4203',
9427             'Module::Build::Platform::Default'=> '0.4203',
9428             'Module::Build::Platform::MacOS'=> '0.4203',
9429             'Module::Build::Platform::Unix'=> '0.4203',
9430             'Module::Build::Platform::VMS'=> '0.4203',
9431             'Module::Build::Platform::VOS'=> '0.4203',
9432             'Module::Build::Platform::Windows'=> '0.4203',
9433             'Module::Build::Platform::aix'=> '0.4203',
9434             'Module::Build::Platform::cygwin'=> '0.4203',
9435             'Module::Build::Platform::darwin'=> '0.4203',
9436             'Module::Build::Platform::os2'=> '0.4203',
9437             'Module::Build::PodParser'=> '0.4203',
9438             'Module::CoreList' => '3.02',
9439             'Module::CoreList::TieHashDelta'=> '3.02',
9440             'Module::CoreList::Utils'=> '3.02',
9441             'POSIX' => '1.37',
9442             'PerlIO::encoding' => '0.17',
9443             'PerlIO::via' => '0.14',
9444             'SDBM_File' => '1.11',
9445             'Storable' => '2.48',
9446             'Time::Piece' => '1.24',
9447             'Time::Seconds' => '1.24',
9448             'Unicode::Collate' => '1.04',
9449             'Win32' => '0.48',
9450             'XS::APItest' => '0.58',
9451             'base' => '2.20',
9452             'constant' => '1.30',
9453             'inc::latest' => '0.4203',
9454             'threads' => '1.91',
9455             },
9456             removed => {
9457             }
9458             },
9459             5.019008 => {
9460             delta_from => 5.019007,
9461             changed => {
9462             'Config' => '5.019008',
9463             'DynaLoader' => '1.24',
9464             'Encode' => '2.57',
9465             'Errno' => '1.20_02',
9466             'ExtUtils::CBuilder' => '0.280213',
9467             'ExtUtils::CBuilder::Base'=> '0.280213',
9468             'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9469             'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9470             'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9471             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9472             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9473             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9474             'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9475             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9476             'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9477             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9478             'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9479             'ExtUtils::Command::MM' => '6.86',
9480             'ExtUtils::Liblist' => '6.86',
9481             'ExtUtils::Liblist::Kid'=> '6.86',
9482             'ExtUtils::MM' => '6.86',
9483             'ExtUtils::MM_AIX' => '6.86',
9484             'ExtUtils::MM_Any' => '6.86',
9485             'ExtUtils::MM_BeOS' => '6.86',
9486             'ExtUtils::MM_Cygwin' => '6.86',
9487             'ExtUtils::MM_DOS' => '6.86',
9488             'ExtUtils::MM_Darwin' => '6.86',
9489             'ExtUtils::MM_MacOS' => '6.86',
9490             'ExtUtils::MM_NW5' => '6.86',
9491             'ExtUtils::MM_OS2' => '6.86',
9492             'ExtUtils::MM_QNX' => '6.86',
9493             'ExtUtils::MM_UWIN' => '6.86',
9494             'ExtUtils::MM_Unix' => '6.86',
9495             'ExtUtils::MM_VMS' => '6.86',
9496             'ExtUtils::MM_VOS' => '6.86',
9497             'ExtUtils::MM_Win32' => '6.86',
9498             'ExtUtils::MM_Win95' => '6.86',
9499             'ExtUtils::MY' => '6.86',
9500             'ExtUtils::MakeMaker' => '6.86',
9501             'ExtUtils::MakeMaker::Config'=> '6.86',
9502             'ExtUtils::Mkbootstrap' => '6.86',
9503             'ExtUtils::Mksymlists' => '6.86',
9504             'ExtUtils::testlib' => '6.86',
9505             'File::Copy' => '2.29',
9506             'Hash::Util::FieldHash' => '1.14',
9507             'IO::Socket::IP' => '0.26',
9508             'IO::Socket::UNIX' => '1.26',
9509             'List::Util' => '1.36',
9510             'List::Util::XS' => '1.36',
9511             'Module::Build' => '0.4204',
9512             'Module::Build::Base' => '0.4204',
9513             'Module::Build::Compat' => '0.4204',
9514             'Module::Build::Config' => '0.4204',
9515             'Module::Build::Cookbook'=> '0.4204',
9516             'Module::Build::Dumper' => '0.4204',
9517             'Module::Build::ModuleInfo'=> '0.4204',
9518             'Module::Build::Notes' => '0.4204',
9519             'Module::Build::PPMMaker'=> '0.4204',
9520             'Module::Build::Platform::Default'=> '0.4204',
9521             'Module::Build::Platform::MacOS'=> '0.4204',
9522             'Module::Build::Platform::Unix'=> '0.4204',
9523             'Module::Build::Platform::VMS'=> '0.4204',
9524             'Module::Build::Platform::VOS'=> '0.4204',
9525             'Module::Build::Platform::Windows'=> '0.4204',
9526             'Module::Build::Platform::aix'=> '0.4204',
9527             'Module::Build::Platform::cygwin'=> '0.4204',
9528             'Module::Build::Platform::darwin'=> '0.4204',
9529             'Module::Build::Platform::os2'=> '0.4204',
9530             'Module::Build::PodParser'=> '0.4204',
9531             'Module::CoreList' => '3.04',
9532             'Module::CoreList::TieHashDelta'=> '3.04',
9533             'Module::CoreList::Utils'=> '3.04',
9534             'Module::Load' => '0.28',
9535             'Module::Load::Conditional'=> '0.60',
9536             'Net::Config' => '1.13',
9537             'Net::FTP::A' => '1.19',
9538             'POSIX' => '1.38_01',
9539             'Perl::OSType' => '1.007',
9540             'PerlIO::encoding' => '0.18',
9541             'Pod::Perldoc' => '3.21',
9542             'Pod::Perldoc::BaseTo' => '3.21',
9543             'Pod::Perldoc::GetOptsOO'=> '3.21',
9544             'Pod::Perldoc::ToANSI' => '3.21',
9545             'Pod::Perldoc::ToChecker'=> '3.21',
9546             'Pod::Perldoc::ToMan' => '3.21',
9547             'Pod::Perldoc::ToNroff' => '3.21',
9548             'Pod::Perldoc::ToPod' => '3.21',
9549             'Pod::Perldoc::ToRtf' => '3.21',
9550             'Pod::Perldoc::ToTerm' => '3.21',
9551             'Pod::Perldoc::ToText' => '3.21',
9552             'Pod::Perldoc::ToTk' => '3.21',
9553             'Pod::Perldoc::ToXml' => '3.21',
9554             'Scalar::Util' => '1.36',
9555             'Time::Piece' => '1.27',
9556             'Time::Seconds' => '1.27',
9557             'Unicode::UCD' => '0.57',
9558             'XS::APItest' => '0.59',
9559             'XSLoader' => '0.17',
9560             'base' => '2.21',
9561             'constant' => '1.31',
9562             'inc::latest' => '0.4204',
9563             'threads::shared' => '1.46',
9564             'version' => '0.9907',
9565             'version::regex' => '0.9907',
9566             'version::vpp' => '0.9907',
9567             'warnings' => '1.21',
9568             },
9569             removed => {
9570             }
9571             },
9572             5.019009 => {
9573             delta_from => 5.019008,
9574             changed => {
9575             'B' => '1.48',
9576             'B::Concise' => '0.992',
9577             'B::Deparse' => '1.25',
9578             'CGI' => '3.65',
9579             'CPAN::Meta::YAML' => '0.011',
9580             'Compress::Raw::Bzip2' => '2.064',
9581             'Compress::Raw::Zlib' => '2.065',
9582             'Compress::Zlib' => '2.064',
9583             'Config' => '5.019009',
9584             'Config::Perl::V' => '0.20',
9585             'Cwd' => '3.47',
9586             'Devel::Peek' => '1.16',
9587             'Digest::SHA' => '5.87',
9588             'DynaLoader' => '1.25',
9589             'English' => '1.09',
9590             'ExtUtils::CBuilder' => '0.280216',
9591             'ExtUtils::CBuilder::Base'=> '0.280216',
9592             'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9593             'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9594             'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9595             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9596             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9597             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9598             'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9599             'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9600             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9601             'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9602             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9603             'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9604             'ExtUtils::Command::MM' => '6.88',
9605             'ExtUtils::Embed' => '1.32',
9606             'ExtUtils::Install' => '1.62',
9607             'ExtUtils::Installed' => '1.999004',
9608             'ExtUtils::Liblist' => '6.88',
9609             'ExtUtils::Liblist::Kid'=> '6.88',
9610             'ExtUtils::MM' => '6.88',
9611             'ExtUtils::MM_AIX' => '6.88',
9612             'ExtUtils::MM_Any' => '6.88',
9613             'ExtUtils::MM_BeOS' => '6.88',
9614             'ExtUtils::MM_Cygwin' => '6.88',
9615             'ExtUtils::MM_DOS' => '6.88',
9616             'ExtUtils::MM_Darwin' => '6.88',
9617             'ExtUtils::MM_MacOS' => '6.88',
9618             'ExtUtils::MM_NW5' => '6.88',
9619             'ExtUtils::MM_OS2' => '6.88',
9620             'ExtUtils::MM_QNX' => '6.88',
9621             'ExtUtils::MM_UWIN' => '6.88',
9622             'ExtUtils::MM_Unix' => '6.88',
9623             'ExtUtils::MM_VMS' => '6.88',
9624             'ExtUtils::MM_VOS' => '6.88',
9625             'ExtUtils::MM_Win32' => '6.88',
9626             'ExtUtils::MM_Win95' => '6.88',
9627             'ExtUtils::MY' => '6.88',
9628             'ExtUtils::MakeMaker' => '6.88',
9629             'ExtUtils::MakeMaker::Config'=> '6.88',
9630             'ExtUtils::Mkbootstrap' => '6.88',
9631             'ExtUtils::Mksymlists' => '6.88',
9632             'ExtUtils::Packlist' => '1.47',
9633             'ExtUtils::testlib' => '6.88',
9634             'Fatal' => '2.23',
9635             'File::Fetch' => '0.48',
9636             'File::Spec' => '3.47',
9637             'File::Spec::Cygwin' => '3.47',
9638             'File::Spec::Epoc' => '3.47',
9639             'File::Spec::Functions' => '3.47',
9640             'File::Spec::Mac' => '3.47',
9641             'File::Spec::OS2' => '3.47',
9642             'File::Spec::Unix' => '3.47',
9643             'File::Spec::VMS' => '3.47',
9644             'File::Spec::Win32' => '3.47',
9645             'HTTP::Tiny' => '0.042',
9646             'IO::Compress::Adapter::Bzip2'=> '2.064',
9647             'IO::Compress::Adapter::Deflate'=> '2.064',
9648             'IO::Compress::Adapter::Identity'=> '2.064',
9649             'IO::Compress::Base' => '2.064',
9650             'IO::Compress::Base::Common'=> '2.064',
9651             'IO::Compress::Bzip2' => '2.064',
9652             'IO::Compress::Deflate' => '2.064',
9653             'IO::Compress::Gzip' => '2.064',
9654             'IO::Compress::Gzip::Constants'=> '2.064',
9655             'IO::Compress::RawDeflate'=> '2.064',
9656             'IO::Compress::Zip' => '2.064',
9657             'IO::Compress::Zip::Constants'=> '2.064',
9658             'IO::Compress::Zlib::Constants'=> '2.064',
9659             'IO::Compress::Zlib::Extra'=> '2.064',
9660             'IO::Socket::INET' => '1.35',
9661             'IO::Socket::IP' => '0.28',
9662             'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9663             'IO::Uncompress::Adapter::Identity'=> '2.064',
9664             'IO::Uncompress::Adapter::Inflate'=> '2.064',
9665             'IO::Uncompress::AnyInflate'=> '2.064',
9666             'IO::Uncompress::AnyUncompress'=> '2.064',
9667             'IO::Uncompress::Base' => '2.064',
9668             'IO::Uncompress::Bunzip2'=> '2.064',
9669             'IO::Uncompress::Gunzip'=> '2.064',
9670             'IO::Uncompress::Inflate'=> '2.064',
9671             'IO::Uncompress::RawInflate'=> '2.064',
9672             'IO::Uncompress::Unzip' => '2.064',
9673             'IPC::Cmd' => '0.92',
9674             'List::Util' => '1.38',
9675             'List::Util::XS' => '1.38',
9676             'Locale::Codes' => '3.29',
9677             'Locale::Codes::Constants'=> '3.29',
9678             'Locale::Codes::Country'=> '3.29',
9679             'Locale::Codes::Country_Codes'=> '3.29',
9680             'Locale::Codes::Country_Retired'=> '3.29',
9681             'Locale::Codes::Currency'=> '3.29',
9682             'Locale::Codes::Currency_Codes'=> '3.29',
9683             'Locale::Codes::Currency_Retired'=> '3.29',
9684             'Locale::Codes::LangExt'=> '3.29',
9685             'Locale::Codes::LangExt_Codes'=> '3.29',
9686             'Locale::Codes::LangExt_Retired'=> '3.29',
9687             'Locale::Codes::LangFam'=> '3.29',
9688             'Locale::Codes::LangFam_Codes'=> '3.29',
9689             'Locale::Codes::LangFam_Retired'=> '3.29',
9690             'Locale::Codes::LangVar'=> '3.29',
9691             'Locale::Codes::LangVar_Codes'=> '3.29',
9692             'Locale::Codes::LangVar_Retired'=> '3.29',
9693             'Locale::Codes::Language'=> '3.29',
9694             'Locale::Codes::Language_Codes'=> '3.29',
9695             'Locale::Codes::Language_Retired'=> '3.29',
9696             'Locale::Codes::Script' => '3.29',
9697             'Locale::Codes::Script_Codes'=> '3.29',
9698             'Locale::Codes::Script_Retired'=> '3.29',
9699             'Locale::Country' => '3.29',
9700             'Locale::Currency' => '3.29',
9701             'Locale::Language' => '3.29',
9702             'Locale::Script' => '3.29',
9703             'Module::Build' => '0.4205',
9704             'Module::Build::Base' => '0.4205',
9705             'Module::Build::Compat' => '0.4205',
9706             'Module::Build::Config' => '0.4205',
9707             'Module::Build::Cookbook'=> '0.4205',
9708             'Module::Build::Dumper' => '0.4205',
9709             'Module::Build::ModuleInfo'=> '0.4205',
9710             'Module::Build::Notes' => '0.4205',
9711             'Module::Build::PPMMaker'=> '0.4205',
9712             'Module::Build::Platform::Default'=> '0.4205',
9713             'Module::Build::Platform::MacOS'=> '0.4205',
9714             'Module::Build::Platform::Unix'=> '0.4205',
9715             'Module::Build::Platform::VMS'=> '0.4205',
9716             'Module::Build::Platform::VOS'=> '0.4205',
9717             'Module::Build::Platform::Windows'=> '0.4205',
9718             'Module::Build::Platform::aix'=> '0.4205',
9719             'Module::Build::Platform::cygwin'=> '0.4205',
9720             'Module::Build::Platform::darwin'=> '0.4205',
9721             'Module::Build::Platform::os2'=> '0.4205',
9722             'Module::Build::PodParser'=> '0.4205',
9723             'Module::CoreList' => '3.06',
9724             'Module::CoreList::TieHashDelta'=> '3.06',
9725             'Module::CoreList::Utils'=> '3.06',
9726             'Module::Load' => '0.30',
9727             'Module::Load::Conditional'=> '0.62',
9728             'Net::Domain' => '2.23',
9729             'Net::FTP' => '2.79',
9730             'Net::NNTP' => '2.26',
9731             'Net::POP3' => '2.31',
9732             'Net::Ping' => '2.43',
9733             'Net::SMTP' => '2.33',
9734             'POSIX' => '1.38_02',
9735             'Parse::CPAN::Meta' => '1.4413',
9736             'Pod::Escapes' => '1.06',
9737             'Pod::Find' => '1.62',
9738             'Pod::InputObjects' => '1.62',
9739             'Pod::ParseUtils' => '1.62',
9740             'Pod::Parser' => '1.62',
9741             'Pod::Select' => '1.62',
9742             'Scalar::Util' => '1.38',
9743             'autodie' => '2.23',
9744             'autodie::exception' => '2.23',
9745             'autodie::exception::system'=> '2.23',
9746             'autodie::hints' => '2.23',
9747             'autodie::skip' => '2.23',
9748             'diagnostics' => '1.34',
9749             'feature' => '1.35',
9750             'inc::latest' => '0.4205',
9751             'locale' => '1.03',
9752             'mro' => '1.15',
9753             'threads' => '1.92',
9754             'version' => '0.9908',
9755             'version::regex' => '0.9908',
9756             'version::vpp' => '0.9908',
9757             'warnings' => '1.22',
9758             },
9759             removed => {
9760             }
9761             },
9762             5.01901 => {
9763             delta_from => 5.019009,
9764             changed => {
9765             'App::Cpan' => '1.62',
9766             'Attribute::Handlers' => '0.96',
9767             'B::Deparse' => '1.26',
9768             'CPAN' => '2.04',
9769             'CPAN::Bundle' => '5.5001',
9770             'CPAN::Complete' => '5.5001',
9771             'CPAN::Distribution' => '2.01',
9772             'CPAN::Distroprefs' => '6.0001',
9773             'CPAN::FirstTime' => '5.5305',
9774             'CPAN::Meta' => '2.140640',
9775             'CPAN::Meta::Converter' => '2.140640',
9776             'CPAN::Meta::Feature' => '2.140640',
9777             'CPAN::Meta::History' => '2.140640',
9778             'CPAN::Meta::Prereqs' => '2.140640',
9779             'CPAN::Meta::Spec' => '2.140640',
9780             'CPAN::Meta::Validator' => '2.140640',
9781             'CPAN::Meta::YAML' => '0.012',
9782             'CPAN::Queue' => '5.5002',
9783             'CPAN::Shell' => '5.5003',
9784             'CPAN::Tarzip' => '5.5012',
9785             'CPAN::Version' => '5.5003',
9786             'Carp' => '1.33',
9787             'Carp::Heavy' => '1.33',
9788             'Config' => '5.019010',
9789             'Data::Dumper' => '2.151',
9790             'Devel::PPPort' => '3.22',
9791             'Digest::SHA' => '5.88',
9792             'ExtUtils::Command::MM' => '6.92',
9793             'ExtUtils::Install' => '1.63',
9794             'ExtUtils::Installed' => '1.999005',
9795             'ExtUtils::Liblist' => '6.92',
9796             'ExtUtils::Liblist::Kid'=> '6.92',
9797             'ExtUtils::MM' => '6.92',
9798             'ExtUtils::MM_AIX' => '6.92',
9799             'ExtUtils::MM_Any' => '6.92',
9800             'ExtUtils::MM_BeOS' => '6.92',
9801             'ExtUtils::MM_Cygwin' => '6.92',
9802             'ExtUtils::MM_DOS' => '6.92',
9803             'ExtUtils::MM_Darwin' => '6.92',
9804             'ExtUtils::MM_MacOS' => '6.92',
9805             'ExtUtils::MM_NW5' => '6.92',
9806             'ExtUtils::MM_OS2' => '6.92',
9807             'ExtUtils::MM_QNX' => '6.92',
9808             'ExtUtils::MM_UWIN' => '6.92',
9809             'ExtUtils::MM_Unix' => '6.92',
9810             'ExtUtils::MM_VMS' => '6.92',
9811             'ExtUtils::MM_VOS' => '6.92',
9812             'ExtUtils::MM_Win32' => '6.92',
9813             'ExtUtils::MM_Win95' => '6.92',
9814             'ExtUtils::MY' => '6.92',
9815             'ExtUtils::MakeMaker' => '6.92',
9816             'ExtUtils::MakeMaker::Config'=> '6.92',
9817             'ExtUtils::Mkbootstrap' => '6.92',
9818             'ExtUtils::Mksymlists' => '6.92',
9819             'ExtUtils::Packlist' => '1.48',
9820             'ExtUtils::ParseXS' => '3.24',
9821             'ExtUtils::ParseXS::Constants'=> '3.24',
9822             'ExtUtils::ParseXS::CountLines'=> '3.24',
9823             'ExtUtils::ParseXS::Eval'=> '3.24',
9824             'ExtUtils::ParseXS::Utilities'=> '3.24',
9825             'ExtUtils::Typemaps' => '3.24',
9826             'ExtUtils::Typemaps::Cmd'=> '3.24',
9827             'ExtUtils::Typemaps::InputMap'=> '3.24',
9828             'ExtUtils::Typemaps::OutputMap'=> '3.24',
9829             'ExtUtils::Typemaps::Type'=> '3.24',
9830             'ExtUtils::testlib' => '6.92',
9831             'File::Find' => '1.27',
9832             'Filter::Simple' => '0.91',
9833             'HTTP::Tiny' => '0.043',
9834             'Hash::Util::FieldHash' => '1.15',
9835             'IO' => '1.31',
9836             'IO::Socket::IP' => '0.29',
9837             'Locale::Codes' => '3.30',
9838             'Locale::Codes::Constants'=> '3.30',
9839             'Locale::Codes::Country'=> '3.30',
9840             'Locale::Codes::Country_Codes'=> '3.30',
9841             'Locale::Codes::Country_Retired'=> '3.30',
9842             'Locale::Codes::Currency'=> '3.30',
9843             'Locale::Codes::Currency_Codes'=> '3.30',
9844             'Locale::Codes::Currency_Retired'=> '3.30',
9845             'Locale::Codes::LangExt'=> '3.30',
9846             'Locale::Codes::LangExt_Codes'=> '3.30',
9847             'Locale::Codes::LangExt_Retired'=> '3.30',
9848             'Locale::Codes::LangFam'=> '3.30',
9849             'Locale::Codes::LangFam_Codes'=> '3.30',
9850             'Locale::Codes::LangFam_Retired'=> '3.30',
9851             'Locale::Codes::LangVar'=> '3.30',
9852             'Locale::Codes::LangVar_Codes'=> '3.30',
9853             'Locale::Codes::LangVar_Retired'=> '3.30',
9854             'Locale::Codes::Language'=> '3.30',
9855             'Locale::Codes::Language_Codes'=> '3.30',
9856             'Locale::Codes::Language_Retired'=> '3.30',
9857             'Locale::Codes::Script' => '3.30',
9858             'Locale::Codes::Script_Codes'=> '3.30',
9859             'Locale::Codes::Script_Retired'=> '3.30',
9860             'Locale::Country' => '3.30',
9861             'Locale::Currency' => '3.30',
9862             'Locale::Language' => '3.30',
9863             'Locale::Script' => '3.30',
9864             'Module::CoreList' => '3.09',
9865             'Module::CoreList::TieHashDelta'=> '3.09',
9866             'Module::CoreList::Utils'=> '3.09',
9867             'Module::Load' => '0.32',
9868             'POSIX' => '1.38_03',
9869             'Parse::CPAN::Meta' => '1.4414',
9870             'Pod::Perldoc' => '3.23',
9871             'Pod::Perldoc::BaseTo' => '3.23',
9872             'Pod::Perldoc::GetOptsOO'=> '3.23',
9873             'Pod::Perldoc::ToANSI' => '3.23',
9874             'Pod::Perldoc::ToChecker'=> '3.23',
9875             'Pod::Perldoc::ToMan' => '3.23',
9876             'Pod::Perldoc::ToNroff' => '3.23',
9877             'Pod::Perldoc::ToPod' => '3.23',
9878             'Pod::Perldoc::ToRtf' => '3.23',
9879             'Pod::Perldoc::ToTerm' => '3.23',
9880             'Pod::Perldoc::ToText' => '3.23',
9881             'Pod::Perldoc::ToTk' => '3.23',
9882             'Pod::Perldoc::ToXml' => '3.23',
9883             'Thread::Queue' => '3.05',
9884             'XS::APItest' => '0.60',
9885             'XS::Typemap' => '0.13',
9886             'autouse' => '1.08',
9887             'base' => '2.22',
9888             'charnames' => '1.40',
9889             'feature' => '1.36',
9890             'mro' => '1.16',
9891             'threads' => '1.93',
9892             'warnings' => '1.23',
9893             'warnings::register' => '1.03',
9894             },
9895             removed => {
9896             }
9897             },
9898             5.019011 => {
9899             delta_from => 5.01901,
9900             changed => {
9901             'CPAN' => '2.05',
9902             'CPAN::Distribution' => '2.02',
9903             'CPAN::FirstTime' => '5.5306',
9904             'CPAN::Shell' => '5.5004',
9905             'Carp' => '1.3301',
9906             'Carp::Heavy' => '1.3301',
9907             'Config' => '5.019011',
9908             'ExtUtils::Command::MM' => '6.94',
9909             'ExtUtils::Install' => '1.67',
9910             'ExtUtils::Liblist' => '6.94',
9911             'ExtUtils::Liblist::Kid'=> '6.94',
9912             'ExtUtils::MM' => '6.94',
9913             'ExtUtils::MM_AIX' => '6.94',
9914             'ExtUtils::MM_Any' => '6.94',
9915             'ExtUtils::MM_BeOS' => '6.94',
9916             'ExtUtils::MM_Cygwin' => '6.94',
9917             'ExtUtils::MM_DOS' => '6.94',
9918             'ExtUtils::MM_Darwin' => '6.94',
9919             'ExtUtils::MM_MacOS' => '6.94',
9920             'ExtUtils::MM_NW5' => '6.94',
9921             'ExtUtils::MM_OS2' => '6.94',
9922             'ExtUtils::MM_QNX' => '6.94',
9923             'ExtUtils::MM_UWIN' => '6.94',
9924             'ExtUtils::MM_Unix' => '6.94',
9925             'ExtUtils::MM_VMS' => '6.94',
9926             'ExtUtils::MM_VOS' => '6.94',
9927             'ExtUtils::MM_Win32' => '6.94',
9928             'ExtUtils::MM_Win95' => '6.94',
9929             'ExtUtils::MY' => '6.94',
9930             'ExtUtils::MakeMaker' => '6.94',
9931             'ExtUtils::MakeMaker::Config'=> '6.94',
9932             'ExtUtils::Mkbootstrap' => '6.94',
9933             'ExtUtils::Mksymlists' => '6.94',
9934             'ExtUtils::testlib' => '6.94',
9935             'Module::CoreList' => '3.10',
9936             'Module::CoreList::TieHashDelta'=> '3.10',
9937             'Module::CoreList::Utils'=> '3.10',
9938             'PerlIO' => '1.09',
9939             'Storable' => '2.49',
9940             'Win32' => '0.49',
9941             'experimental' => '0.007',
9942             },
9943             removed => {
9944             }
9945             },
9946             5.020000 => {
9947             delta_from => 5.019011,
9948             changed => {
9949             'Config' => '5.02',
9950             'Devel::PPPort' => '3.21',
9951             'Encode' => '2.60',
9952             'Errno' => '1.20_03',
9953             'ExtUtils::Command::MM' => '6.98',
9954             'ExtUtils::Liblist' => '6.98',
9955             'ExtUtils::Liblist::Kid'=> '6.98',
9956             'ExtUtils::MM' => '6.98',
9957             'ExtUtils::MM_AIX' => '6.98',
9958             'ExtUtils::MM_Any' => '6.98',
9959             'ExtUtils::MM_BeOS' => '6.98',
9960             'ExtUtils::MM_Cygwin' => '6.98',
9961             'ExtUtils::MM_DOS' => '6.98',
9962             'ExtUtils::MM_Darwin' => '6.98',
9963             'ExtUtils::MM_MacOS' => '6.98',
9964             'ExtUtils::MM_NW5' => '6.98',
9965             'ExtUtils::MM_OS2' => '6.98',
9966             'ExtUtils::MM_QNX' => '6.98',
9967             'ExtUtils::MM_UWIN' => '6.98',
9968             'ExtUtils::MM_Unix' => '6.98',
9969             'ExtUtils::MM_VMS' => '6.98',
9970             'ExtUtils::MM_VOS' => '6.98',
9971             'ExtUtils::MM_Win32' => '6.98',
9972             'ExtUtils::MM_Win95' => '6.98',
9973             'ExtUtils::MY' => '6.98',
9974             'ExtUtils::MakeMaker' => '6.98',
9975             'ExtUtils::MakeMaker::Config'=> '6.98',
9976             'ExtUtils::Miniperl' => '1.01',
9977             'ExtUtils::Mkbootstrap' => '6.98',
9978             'ExtUtils::Mksymlists' => '6.98',
9979             'ExtUtils::testlib' => '6.98',
9980             'Pod::Functions::Functions'=> '1.08',
9981             },
9982             removed => {
9983             }
9984             },
9985             5.021000 => {
9986             delta_from => 5.020000,
9987             changed => {
9988             'Module::CoreList' => '5.021001',
9989             'Module::CoreList::TieHashDelta'=> '5.021001',
9990             'Module::CoreList::Utils'=> '5.021001',
9991             'feature' => '1.37',
9992             },
9993             removed => {
9994             'CGI' => 1,
9995             'CGI::Apache' => 1,
9996             'CGI::Carp' => 1,
9997             'CGI::Cookie' => 1,
9998             'CGI::Fast' => 1,
9999             'CGI::Pretty' => 1,
10000             'CGI::Push' => 1,
10001             'CGI::Switch' => 1,
10002             'CGI::Util' => 1,
10003             'Module::Build' => 1,
10004             'Module::Build::Base' => 1,
10005             'Module::Build::Compat' => 1,
10006             'Module::Build::Config' => 1,
10007             'Module::Build::ConfigData'=> 1,
10008             'Module::Build::Cookbook'=> 1,
10009             'Module::Build::Dumper' => 1,
10010             'Module::Build::ModuleInfo'=> 1,
10011             'Module::Build::Notes' => 1,
10012             'Module::Build::PPMMaker'=> 1,
10013             'Module::Build::Platform::Default'=> 1,
10014             'Module::Build::Platform::MacOS'=> 1,
10015             'Module::Build::Platform::Unix'=> 1,
10016             'Module::Build::Platform::VMS'=> 1,
10017             'Module::Build::Platform::VOS'=> 1,
10018             'Module::Build::Platform::Windows'=> 1,
10019             'Module::Build::Platform::aix'=> 1,
10020             'Module::Build::Platform::cygwin'=> 1,
10021             'Module::Build::Platform::darwin'=> 1,
10022             'Module::Build::Platform::os2'=> 1,
10023             'Module::Build::PodParser'=> 1,
10024             'Module::Build::Version'=> 1,
10025             'Module::Build::YAML' => 1,
10026             'Package::Constants' => 1,
10027             'inc::latest' => 1,
10028             }
10029             },
10030             5.021001 => {
10031             delta_from => 5.021000,
10032             changed => {
10033             'App::Prove' => '3.32',
10034             'App::Prove::State' => '3.32',
10035             'App::Prove::State::Result'=> '3.32',
10036             'App::Prove::State::Result::Test'=> '3.32',
10037             'Archive::Tar' => '2.00',
10038             'Archive::Tar::Constant'=> '2.00',
10039             'Archive::Tar::File' => '2.00',
10040             'B' => '1.49',
10041             'B::Deparse' => '1.27',
10042             'Benchmark' => '1.19',
10043             'CPAN::Meta' => '2.141520',
10044             'CPAN::Meta::Converter' => '2.141520',
10045             'CPAN::Meta::Feature' => '2.141520',
10046             'CPAN::Meta::History' => '2.141520',
10047             'CPAN::Meta::Prereqs' => '2.141520',
10048             'CPAN::Meta::Spec' => '2.141520',
10049             'CPAN::Meta::Validator' => '2.141520',
10050             'Carp' => '1.34',
10051             'Carp::Heavy' => '1.34',
10052             'Config' => '5.021001',
10053             'Cwd' => '3.48',
10054             'Data::Dumper' => '2.152',
10055             'Devel::PPPort' => '3.24',
10056             'Devel::Peek' => '1.17',
10057             'Digest::SHA' => '5.92',
10058             'DynaLoader' => '1.26',
10059             'Encode' => '2.62',
10060             'Errno' => '1.20_04',
10061             'Exporter' => '5.71',
10062             'Exporter::Heavy' => '5.71',
10063             'ExtUtils::Install' => '1.68',
10064             'ExtUtils::Miniperl' => '1.02',
10065             'ExtUtils::ParseXS' => '3.25',
10066             'ExtUtils::ParseXS::Constants'=> '3.25',
10067             'ExtUtils::ParseXS::CountLines'=> '3.25',
10068             'ExtUtils::ParseXS::Eval'=> '3.25',
10069             'ExtUtils::ParseXS::Utilities'=> '3.25',
10070             'ExtUtils::Typemaps' => '3.25',
10071             'ExtUtils::Typemaps::Cmd'=> '3.25',
10072             'ExtUtils::Typemaps::InputMap'=> '3.25',
10073             'ExtUtils::Typemaps::OutputMap'=> '3.25',
10074             'ExtUtils::Typemaps::Type'=> '3.25',
10075             'Fatal' => '2.25',
10076             'File::Spec' => '3.48',
10077             'File::Spec::Cygwin' => '3.48',
10078             'File::Spec::Epoc' => '3.48',
10079             'File::Spec::Functions' => '3.48',
10080             'File::Spec::Mac' => '3.48',
10081             'File::Spec::OS2' => '3.48',
10082             'File::Spec::Unix' => '3.48',
10083             'File::Spec::VMS' => '3.48',
10084             'File::Spec::Win32' => '3.48',
10085             'Hash::Util' => '0.17',
10086             'IO' => '1.32',
10087             'List::Util' => '1.39',
10088             'List::Util::XS' => '1.39',
10089             'Locale::Codes' => '3.31',
10090             'Locale::Codes::Constants'=> '3.31',
10091             'Locale::Codes::Country'=> '3.31',
10092             'Locale::Codes::Country_Codes'=> '3.31',
10093             'Locale::Codes::Country_Retired'=> '3.31',
10094             'Locale::Codes::Currency'=> '3.31',
10095             'Locale::Codes::Currency_Codes'=> '3.31',
10096             'Locale::Codes::Currency_Retired'=> '3.31',
10097             'Locale::Codes::LangExt'=> '3.31',
10098             'Locale::Codes::LangExt_Codes'=> '3.31',
10099             'Locale::Codes::LangExt_Retired'=> '3.31',
10100             'Locale::Codes::LangFam'=> '3.31',
10101             'Locale::Codes::LangFam_Codes'=> '3.31',
10102             'Locale::Codes::LangFam_Retired'=> '3.31',
10103             'Locale::Codes::LangVar'=> '3.31',
10104             'Locale::Codes::LangVar_Codes'=> '3.31',
10105             'Locale::Codes::LangVar_Retired'=> '3.31',
10106             'Locale::Codes::Language'=> '3.31',
10107             'Locale::Codes::Language_Codes'=> '3.31',
10108             'Locale::Codes::Language_Retired'=> '3.31',
10109             'Locale::Codes::Script' => '3.31',
10110             'Locale::Codes::Script_Codes'=> '3.31',
10111             'Locale::Codes::Script_Retired'=> '3.31',
10112             'Locale::Country' => '3.31',
10113             'Locale::Currency' => '3.31',
10114             'Locale::Language' => '3.31',
10115             'Locale::Script' => '3.31',
10116             'Math::BigFloat' => '1.9994',
10117             'Math::BigInt' => '1.9995',
10118             'Math::BigInt::Calc' => '1.9994',
10119             'Math::BigInt::CalcEmu' => '1.9994',
10120             'Math::BigRat' => '0.2608',
10121             'Module::CoreList' => '5.021001_01',
10122             'Module::CoreList::TieHashDelta'=> '5.021001_01',
10123             'Module::CoreList::Utils'=> '5.021001_01',
10124             'Module::Metadata' => '1.000024',
10125             'NDBM_File' => '1.13',
10126             'Net::Config' => '1.14',
10127             'Net::SMTP' => '2.34',
10128             'Net::Time' => '2.11',
10129             'OS2::Process' => '1.10',
10130             'POSIX' => '1.40',
10131             'PerlIO::encoding' => '0.19',
10132             'PerlIO::mmap' => '0.013',
10133             'PerlIO::scalar' => '0.19',
10134             'PerlIO::via' => '0.15',
10135             'Pod::Html' => '1.22',
10136             'Scalar::Util' => '1.39',
10137             'SelfLoader' => '1.22',
10138             'Socket' => '2.014',
10139             'Storable' => '2.51',
10140             'TAP::Base' => '3.32',
10141             'TAP::Formatter::Base' => '3.32',
10142             'TAP::Formatter::Color' => '3.32',
10143             'TAP::Formatter::Console'=> '3.32',
10144             'TAP::Formatter::Console::ParallelSession'=> '3.32',
10145             'TAP::Formatter::Console::Session'=> '3.32',
10146             'TAP::Formatter::File' => '3.32',
10147             'TAP::Formatter::File::Session'=> '3.32',
10148             'TAP::Formatter::Session'=> '3.32',
10149             'TAP::Harness' => '3.32',
10150             'TAP::Harness::Env' => '3.32',
10151             'TAP::Object' => '3.32',
10152             'TAP::Parser' => '3.32',
10153             'TAP::Parser::Aggregator'=> '3.32',
10154             'TAP::Parser::Grammar' => '3.32',
10155             'TAP::Parser::Iterator' => '3.32',
10156             'TAP::Parser::Iterator::Array'=> '3.32',
10157             'TAP::Parser::Iterator::Process'=> '3.32',
10158             'TAP::Parser::Iterator::Stream'=> '3.32',
10159             'TAP::Parser::IteratorFactory'=> '3.32',
10160             'TAP::Parser::Multiplexer'=> '3.32',
10161             'TAP::Parser::Result' => '3.32',
10162             'TAP::Parser::Result::Bailout'=> '3.32',
10163             'TAP::Parser::Result::Comment'=> '3.32',
10164             'TAP::Parser::Result::Plan'=> '3.32',
10165             'TAP::Parser::Result::Pragma'=> '3.32',
10166             'TAP::Parser::Result::Test'=> '3.32',
10167             'TAP::Parser::Result::Unknown'=> '3.32',
10168             'TAP::Parser::Result::Version'=> '3.32',
10169             'TAP::Parser::Result::YAML'=> '3.32',
10170             'TAP::Parser::ResultFactory'=> '3.32',
10171             'TAP::Parser::Scheduler'=> '3.32',
10172             'TAP::Parser::Scheduler::Job'=> '3.32',
10173             'TAP::Parser::Scheduler::Spinner'=> '3.32',
10174             'TAP::Parser::Source' => '3.32',
10175             'TAP::Parser::SourceHandler'=> '3.32',
10176             'TAP::Parser::SourceHandler::Executable'=> '3.32',
10177             'TAP::Parser::SourceHandler::File'=> '3.32',
10178             'TAP::Parser::SourceHandler::Handle'=> '3.32',
10179             'TAP::Parser::SourceHandler::Perl'=> '3.32',
10180             'TAP::Parser::SourceHandler::RawTAP'=> '3.32',
10181             'TAP::Parser::YAMLish::Reader'=> '3.32',
10182             'TAP::Parser::YAMLish::Writer'=> '3.32',
10183             'Term::ANSIColor' => '4.03',
10184             'Test::Builder' => '1.001003',
10185             'Test::Builder::Module' => '1.001003',
10186             'Test::Builder::Tester' => '1.23_003',
10187             'Test::Harness' => '3.32',
10188             'Test::More' => '1.001003',
10189             'Test::Simple' => '1.001003',
10190             'Tie::File' => '1.01',
10191             'Unicode' => '7.0.0',
10192             'Unicode::Collate' => '1.07',
10193             'Unicode::Normalize' => '1.18',
10194             'Unicode::UCD' => '0.58',
10195             'XS::APItest' => '0.61',
10196             '_charnames' => '1.41',
10197             'autodie' => '2.25',
10198             'autodie::Scope::Guard' => '2.25',
10199             'autodie::Scope::GuardStack'=> '2.25',
10200             'autodie::ScopeUtil' => '2.25',
10201             'autodie::exception' => '2.25',
10202             'autodie::exception::system'=> '2.25',
10203             'autodie::hints' => '2.25',
10204             'autodie::skip' => '2.25',
10205             'charnames' => '1.41',
10206             'locale' => '1.04',
10207             'threads' => '1.94',
10208             'utf8' => '1.14',
10209             'warnings' => '1.24',
10210             },
10211             removed => {
10212             }
10213             },
10214             5.021002 => {
10215             delta_from => 5.021001,
10216             changed => {
10217             'B' => '1.50',
10218             'Config' => '5.021002',
10219             'Cwd' => '3.49',
10220             'Devel::Peek' => '1.18',
10221             'ExtUtils::Manifest' => '1.64',
10222             'File::Copy' => '2.30',
10223             'File::Spec' => '3.49',
10224             'File::Spec::Cygwin' => '3.49',
10225             'File::Spec::Epoc' => '3.49',
10226             'File::Spec::Functions' => '3.49',
10227             'File::Spec::Mac' => '3.49',
10228             'File::Spec::OS2' => '3.49',
10229             'File::Spec::Unix' => '3.49',
10230             'File::Spec::VMS' => '3.49',
10231             'File::Spec::Win32' => '3.49',
10232             'Filter::Simple' => '0.92',
10233             'Hash::Util' => '0.18',
10234             'IO' => '1.33',
10235             'IO::Socket::IP' => '0.31',
10236             'IPC::Open3' => '1.17',
10237             'Math::BigFloat' => '1.9996',
10238             'Math::BigInt' => '1.9996',
10239             'Math::BigInt::Calc' => '1.9996',
10240             'Math::BigInt::CalcEmu' => '1.9996',
10241             'Module::CoreList' => '5.021002',
10242             'Module::CoreList::TieHashDelta'=> '5.021002',
10243             'Module::CoreList::Utils'=> '5.021002',
10244             'POSIX' => '1.41',
10245             'Pod::Usage' => '1.64',
10246             'XS::APItest' => '0.62',
10247             'arybase' => '0.08',
10248             'experimental' => '0.008',
10249             'threads' => '1.95',
10250             'warnings' => '1.26',
10251             },
10252             removed => {
10253             }
10254             },
10255             5.021003 => {
10256             delta_from => 5.021002,
10257             changed => {
10258             'B::Debug' => '1.21',
10259             'CPAN::Meta' => '2.142060',
10260             'CPAN::Meta::Converter' => '2.142060',
10261             'CPAN::Meta::Feature' => '2.142060',
10262             'CPAN::Meta::History' => '2.142060',
10263             'CPAN::Meta::Merge' => '2.142060',
10264             'CPAN::Meta::Prereqs' => '2.142060',
10265             'CPAN::Meta::Requirements'=> '2.126',
10266             'CPAN::Meta::Spec' => '2.142060',
10267             'CPAN::Meta::Validator' => '2.142060',
10268             'Config' => '5.021003',
10269             'Config::Perl::V' => '0.22',
10270             'ExtUtils::CBuilder' => '0.280217',
10271             'ExtUtils::CBuilder::Base'=> '0.280217',
10272             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10273             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10274             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10275             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10276             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10277             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10278             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10279             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10280             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10281             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10282             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10283             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10284             'ExtUtils::Manifest' => '1.65',
10285             'HTTP::Tiny' => '0.047',
10286             'IPC::Open3' => '1.18',
10287             'Module::CoreList' => '5.021003',
10288             'Module::CoreList::TieHashDelta'=> '5.021003',
10289             'Module::CoreList::Utils'=> '5.021003',
10290             'Opcode' => '1.28',
10291             'POSIX' => '1.42',
10292             'Safe' => '2.38',
10293             'Socket' => '2.015',
10294             'Sys::Hostname' => '1.19',
10295             'UNIVERSAL' => '1.12',
10296             'XS::APItest' => '0.63',
10297             'perlfaq' => '5.0150045',
10298             },
10299             removed => {
10300             }
10301             },
10302             5.020001 => {
10303             delta_from => 5.020000,
10304             changed => {
10305             'Config' => '5.020001',
10306             'Config::Perl::V' => '0.22',
10307             'Cwd' => '3.48',
10308             'Exporter' => '5.71',
10309             'Exporter::Heavy' => '5.71',
10310             'ExtUtils::CBuilder' => '0.280217',
10311             'ExtUtils::CBuilder::Base'=> '0.280217',
10312             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10313             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10314             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10315             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10316             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10317             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10318             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10319             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10320             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10321             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10322             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10323             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10324             'File::Copy' => '2.30',
10325             'File::Spec' => '3.48',
10326             'File::Spec::Cygwin' => '3.48',
10327             'File::Spec::Epoc' => '3.48',
10328             'File::Spec::Functions' => '3.48',
10329             'File::Spec::Mac' => '3.48',
10330             'File::Spec::OS2' => '3.48',
10331             'File::Spec::Unix' => '3.48',
10332             'File::Spec::VMS' => '3.48',
10333             'File::Spec::Win32' => '3.48',
10334             'Module::CoreList' => '5.020001',
10335             'Module::CoreList::TieHashDelta'=> '5.020001',
10336             'Module::CoreList::Utils'=> '5.020001',
10337             'PerlIO::via' => '0.15',
10338             'Unicode::UCD' => '0.58',
10339             'XS::APItest' => '0.60_01',
10340             'utf8' => '1.13_01',
10341             'version' => '0.9909',
10342             'version::regex' => '0.9909',
10343             'version::vpp' => '0.9909',
10344             },
10345             removed => {
10346             }
10347             },
10348             5.021004 => {
10349             delta_from => 5.021003,
10350             changed => {
10351             'App::Prove' => '3.33',
10352             'App::Prove::State' => '3.33',
10353             'App::Prove::State::Result'=> '3.33',
10354             'App::Prove::State::Result::Test'=> '3.33',
10355             'Archive::Tar' => '2.02',
10356             'Archive::Tar::Constant'=> '2.02',
10357             'Archive::Tar::File' => '2.02',
10358             'Attribute::Handlers' => '0.97',
10359             'B' => '1.51',
10360             'B::Concise' => '0.993',
10361             'B::Deparse' => '1.28',
10362             'B::Op_private' => '5.021004',
10363             'CPAN::Meta::Requirements'=> '2.128',
10364             'Config' => '5.021004',
10365             'Cwd' => '3.50',
10366             'Data::Dumper' => '2.154',
10367             'ExtUtils::CBuilder' => '0.280219',
10368             'ExtUtils::CBuilder::Base'=> '0.280219',
10369             'ExtUtils::CBuilder::Platform::Unix'=> '0.280219',
10370             'ExtUtils::CBuilder::Platform::VMS'=> '0.280219',
10371             'ExtUtils::CBuilder::Platform::Windows'=> '0.280219',
10372             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219',
10373             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219',
10374             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219',
10375             'ExtUtils::CBuilder::Platform::aix'=> '0.280219',
10376             'ExtUtils::CBuilder::Platform::android'=> '0.280219',
10377             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219',
10378             'ExtUtils::CBuilder::Platform::darwin'=> '0.280219',
10379             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219',
10380             'ExtUtils::CBuilder::Platform::os2'=> '0.280219',
10381             'ExtUtils::Install' => '2.04',
10382             'ExtUtils::Installed' => '2.04',
10383             'ExtUtils::Liblist::Kid'=> '6.98_01',
10384             'ExtUtils::Manifest' => '1.68',
10385             'ExtUtils::Packlist' => '2.04',
10386             'File::Find' => '1.28',
10387             'File::Spec' => '3.50',
10388             'File::Spec::Cygwin' => '3.50',
10389             'File::Spec::Epoc' => '3.50',
10390             'File::Spec::Functions' => '3.50',
10391             'File::Spec::Mac' => '3.50',
10392             'File::Spec::OS2' => '3.50',
10393             'File::Spec::Unix' => '3.50',
10394             'File::Spec::VMS' => '3.50',
10395             'File::Spec::Win32' => '3.50',
10396             'Getopt::Std' => '1.11',
10397             'HTTP::Tiny' => '0.049',
10398             'IO' => '1.34',
10399             'IO::Socket::IP' => '0.32',
10400             'List::Util' => '1.41',
10401             'List::Util::XS' => '1.41',
10402             'Locale::Codes' => '3.32',
10403             'Locale::Codes::Constants'=> '3.32',
10404             'Locale::Codes::Country'=> '3.32',
10405             'Locale::Codes::Country_Codes'=> '3.32',
10406             'Locale::Codes::Country_Retired'=> '3.32',
10407             'Locale::Codes::Currency'=> '3.32',
10408             'Locale::Codes::Currency_Codes'=> '3.32',
10409             'Locale::Codes::Currency_Retired'=> '3.32',
10410             'Locale::Codes::LangExt'=> '3.32',
10411             'Locale::Codes::LangExt_Codes'=> '3.32',
10412             'Locale::Codes::LangExt_Retired'=> '3.32',
10413             'Locale::Codes::LangFam'=> '3.32',
10414             'Locale::Codes::LangFam_Codes'=> '3.32',
10415             'Locale::Codes::LangFam_Retired'=> '3.32',
10416             'Locale::Codes::LangVar'=> '3.32',
10417             'Locale::Codes::LangVar_Codes'=> '3.32',
10418             'Locale::Codes::LangVar_Retired'=> '3.32',
10419             'Locale::Codes::Language'=> '3.32',
10420             'Locale::Codes::Language_Codes'=> '3.32',
10421             'Locale::Codes::Language_Retired'=> '3.32',
10422             'Locale::Codes::Script' => '3.32',
10423             'Locale::Codes::Script_Codes'=> '3.32',
10424             'Locale::Codes::Script_Retired'=> '3.32',
10425             'Locale::Country' => '3.32',
10426             'Locale::Currency' => '3.32',
10427             'Locale::Language' => '3.32',
10428             'Locale::Script' => '3.32',
10429             'Math::BigFloat' => '1.9997',
10430             'Math::BigInt' => '1.9997',
10431             'Math::BigInt::Calc' => '1.9997',
10432             'Math::BigInt::CalcEmu' => '1.9997',
10433             'Module::CoreList' => '5.20140920',
10434             'Module::CoreList::TieHashDelta'=> '5.20140920',
10435             'Module::CoreList::Utils'=> '5.20140920',
10436             'POSIX' => '1.43',
10437             'Pod::Perldoc' => '3.24',
10438             'Pod::Perldoc::BaseTo' => '3.24',
10439             'Pod::Perldoc::GetOptsOO'=> '3.24',
10440             'Pod::Perldoc::ToANSI' => '3.24',
10441             'Pod::Perldoc::ToChecker'=> '3.24',
10442             'Pod::Perldoc::ToMan' => '3.24',
10443             'Pod::Perldoc::ToNroff' => '3.24',
10444             'Pod::Perldoc::ToPod' => '3.24',
10445             'Pod::Perldoc::ToRtf' => '3.24',
10446             'Pod::Perldoc::ToTerm' => '3.24',
10447             'Pod::Perldoc::ToText' => '3.24',
10448             'Pod::Perldoc::ToTk' => '3.24',
10449             'Pod::Perldoc::ToXml' => '3.24',
10450             'Scalar::Util' => '1.41',
10451             'Sub::Util' => '1.41',
10452             'TAP::Base' => '3.33',
10453             'TAP::Formatter::Base' => '3.33',
10454             'TAP::Formatter::Color' => '3.33',
10455             'TAP::Formatter::Console'=> '3.33',
10456             'TAP::Formatter::Console::ParallelSession'=> '3.33',
10457             'TAP::Formatter::Console::Session'=> '3.33',
10458             'TAP::Formatter::File' => '3.33',
10459             'TAP::Formatter::File::Session'=> '3.33',
10460             'TAP::Formatter::Session'=> '3.33',
10461             'TAP::Harness' => '3.33',
10462             'TAP::Harness::Env' => '3.33',
10463             'TAP::Object' => '3.33',
10464             'TAP::Parser' => '3.33',
10465             'TAP::Parser::Aggregator'=> '3.33',
10466             'TAP::Parser::Grammar' => '3.33',
10467             'TAP::Parser::Iterator' => '3.33',
10468             'TAP::Parser::Iterator::Array'=> '3.33',
10469             'TAP::Parser::Iterator::Process'=> '3.33',
10470             'TAP::Parser::Iterator::Stream'=> '3.33',
10471             'TAP::Parser::IteratorFactory'=> '3.33',
10472             'TAP::Parser::Multiplexer'=> '3.33',
10473             'TAP::Parser::Result' => '3.33',
10474             'TAP::Parser::Result::Bailout'=> '3.33',
10475             'TAP::Parser::Result::Comment'=> '3.33',
10476             'TAP::Parser::Result::Plan'=> '3.33',
10477             'TAP::Parser::Result::Pragma'=> '3.33',
10478             'TAP::Parser::Result::Test'=> '3.33',
10479             'TAP::Parser::Result::Unknown'=> '3.33',
10480             'TAP::Parser::Result::Version'=> '3.33',
10481             'TAP::Parser::Result::YAML'=> '3.33',
10482             'TAP::Parser::ResultFactory'=> '3.33',
10483             'TAP::Parser::Scheduler'=> '3.33',
10484             'TAP::Parser::Scheduler::Job'=> '3.33',
10485             'TAP::Parser::Scheduler::Spinner'=> '3.33',
10486             'TAP::Parser::Source' => '3.33',
10487             'TAP::Parser::SourceHandler'=> '3.33',
10488             'TAP::Parser::SourceHandler::Executable'=> '3.33',
10489             'TAP::Parser::SourceHandler::File'=> '3.33',
10490             'TAP::Parser::SourceHandler::Handle'=> '3.33',
10491             'TAP::Parser::SourceHandler::Perl'=> '3.33',
10492             'TAP::Parser::SourceHandler::RawTAP'=> '3.33',
10493             'TAP::Parser::YAMLish::Reader'=> '3.33',
10494             'TAP::Parser::YAMLish::Writer'=> '3.33',
10495             'Term::ReadLine' => '1.15',
10496             'Test::Builder' => '1.001006',
10497             'Test::Builder::Module' => '1.001006',
10498             'Test::Builder::Tester' => '1.24',
10499             'Test::Builder::Tester::Color'=> '1.24',
10500             'Test::Harness' => '3.33',
10501             'Test::More' => '1.001006',
10502             'Test::Simple' => '1.001006',
10503             'Time::Piece' => '1.29',
10504             'Time::Seconds' => '1.29',
10505             'XS::APItest' => '0.64',
10506             '_charnames' => '1.42',
10507             'attributes' => '0.23',
10508             'bigint' => '0.37',
10509             'bignum' => '0.38',
10510             'bigrat' => '0.37',
10511             'constant' => '1.32',
10512             'experimental' => '0.010',
10513             'overload' => '1.23',
10514             'threads' => '1.96',
10515             'version' => '0.9909',
10516             'version::regex' => '0.9909',
10517             'version::vpp' => '0.9909',
10518             },
10519             removed => {
10520             }
10521             },
10522             5.021005 => {
10523             delta_from => 5.021004,
10524             changed => {
10525             'B' => '1.52',
10526             'B::Concise' => '0.994',
10527             'B::Debug' => '1.22',
10528             'B::Deparse' => '1.29',
10529             'B::Op_private' => '5.021005',
10530             'CPAN::Meta' => '2.142690',
10531             'CPAN::Meta::Converter' => '2.142690',
10532             'CPAN::Meta::Feature' => '2.142690',
10533             'CPAN::Meta::History' => '2.142690',
10534             'CPAN::Meta::Merge' => '2.142690',
10535             'CPAN::Meta::Prereqs' => '2.142690',
10536             'CPAN::Meta::Spec' => '2.142690',
10537             'CPAN::Meta::Validator' => '2.142690',
10538             'Compress::Raw::Bzip2' => '2.066',
10539             'Compress::Raw::Zlib' => '2.066',
10540             'Compress::Zlib' => '2.066',
10541             'Config' => '5.021005',
10542             'Cwd' => '3.51',
10543             'DynaLoader' => '1.27',
10544             'Errno' => '1.21',
10545             'ExtUtils::CBuilder' => '0.280220',
10546             'ExtUtils::CBuilder::Base'=> '0.280220',
10547             'ExtUtils::CBuilder::Platform::Unix'=> '0.280220',
10548             'ExtUtils::CBuilder::Platform::VMS'=> '0.280220',
10549             'ExtUtils::CBuilder::Platform::Windows'=> '0.280220',
10550             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220',
10551             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220',
10552             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220',
10553             'ExtUtils::CBuilder::Platform::aix'=> '0.280220',
10554             'ExtUtils::CBuilder::Platform::android'=> '0.280220',
10555             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220',
10556             'ExtUtils::CBuilder::Platform::darwin'=> '0.280220',
10557             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220',
10558             'ExtUtils::CBuilder::Platform::os2'=> '0.280220',
10559             'ExtUtils::Miniperl' => '1.03',
10560             'Fcntl' => '1.13',
10561             'File::Find' => '1.29',
10562             'File::Spec' => '3.51',
10563             'File::Spec::Cygwin' => '3.51',
10564             'File::Spec::Epoc' => '3.51',
10565             'File::Spec::Functions' => '3.51',
10566             'File::Spec::Mac' => '3.51',
10567             'File::Spec::OS2' => '3.51',
10568             'File::Spec::Unix' => '3.51',
10569             'File::Spec::VMS' => '3.51',
10570             'File::Spec::Win32' => '3.51',
10571             'HTTP::Tiny' => '0.050',
10572             'IO::Compress::Adapter::Bzip2'=> '2.066',
10573             'IO::Compress::Adapter::Deflate'=> '2.066',
10574             'IO::Compress::Adapter::Identity'=> '2.066',
10575             'IO::Compress::Base' => '2.066',
10576             'IO::Compress::Base::Common'=> '2.066',
10577             'IO::Compress::Bzip2' => '2.066',
10578             'IO::Compress::Deflate' => '2.066',
10579             'IO::Compress::Gzip' => '2.066',
10580             'IO::Compress::Gzip::Constants'=> '2.066',
10581             'IO::Compress::RawDeflate'=> '2.066',
10582             'IO::Compress::Zip' => '2.066',
10583             'IO::Compress::Zip::Constants'=> '2.066',
10584             'IO::Compress::Zlib::Constants'=> '2.066',
10585             'IO::Compress::Zlib::Extra'=> '2.066',
10586             'IO::Uncompress::Adapter::Bunzip2'=> '2.066',
10587             'IO::Uncompress::Adapter::Identity'=> '2.066',
10588             'IO::Uncompress::Adapter::Inflate'=> '2.066',
10589             'IO::Uncompress::AnyInflate'=> '2.066',
10590             'IO::Uncompress::AnyUncompress'=> '2.066',
10591             'IO::Uncompress::Base' => '2.066',
10592             'IO::Uncompress::Bunzip2'=> '2.066',
10593             'IO::Uncompress::Gunzip'=> '2.066',
10594             'IO::Uncompress::Inflate'=> '2.066',
10595             'IO::Uncompress::RawInflate'=> '2.066',
10596             'IO::Uncompress::Unzip' => '2.066',
10597             'JSON::PP' => '2.27300',
10598             'Module::CoreList' => '5.20141020',
10599             'Module::CoreList::TieHashDelta'=> '5.20141020',
10600             'Module::CoreList::Utils'=> '5.20141020',
10601             'Net::Cmd' => '3.02',
10602             'Net::Config' => '3.02',
10603             'Net::Domain' => '3.02',
10604             'Net::FTP' => '3.02',
10605             'Net::FTP::A' => '3.02',
10606             'Net::FTP::E' => '3.02',
10607             'Net::FTP::I' => '3.02',
10608             'Net::FTP::L' => '3.02',
10609             'Net::FTP::dataconn' => '3.02',
10610             'Net::NNTP' => '3.02',
10611             'Net::Netrc' => '3.02',
10612             'Net::POP3' => '3.02',
10613             'Net::SMTP' => '3.02',
10614             'Net::Time' => '3.02',
10615             'Opcode' => '1.29',
10616             'POSIX' => '1.45',
10617             'Socket' => '2.016',
10618             'Test::Builder' => '1.001008',
10619             'Test::Builder::Module' => '1.001008',
10620             'Test::More' => '1.001008',
10621             'Test::Simple' => '1.001008',
10622             'XS::APItest' => '0.65',
10623             'XSLoader' => '0.18',
10624             'attributes' => '0.24',
10625             'experimental' => '0.012',
10626             'feature' => '1.38',
10627             'perlfaq' => '5.0150046',
10628             're' => '0.27',
10629             'threads::shared' => '1.47',
10630             'warnings' => '1.28',
10631             'warnings::register' => '1.04',
10632             },
10633             removed => {
10634             }
10635             },
10636             5.021006 => {
10637             delta_from => 5.021005,
10638             changed => {
10639             'App::Prove' => '3.34',
10640             'App::Prove::State' => '3.34',
10641             'App::Prove::State::Result'=> '3.34',
10642             'App::Prove::State::Result::Test'=> '3.34',
10643             'B' => '1.53',
10644             'B::Concise' => '0.995',
10645             'B::Deparse' => '1.30',
10646             'B::Op_private' => '5.021006',
10647             'CPAN::Meta' => '2.143240',
10648             'CPAN::Meta::Converter' => '2.143240',
10649             'CPAN::Meta::Feature' => '2.143240',
10650             'CPAN::Meta::History' => '2.143240',
10651             'CPAN::Meta::Merge' => '2.143240',
10652             'CPAN::Meta::Prereqs' => '2.143240',
10653             'CPAN::Meta::Requirements'=> '2.130',
10654             'CPAN::Meta::Spec' => '2.143240',
10655             'CPAN::Meta::Validator' => '2.143240',
10656             'Config' => '5.021006',
10657             'Devel::Peek' => '1.19',
10658             'Digest::SHA' => '5.93',
10659             'DynaLoader' => '1.28',
10660             'Encode' => '2.64',
10661             'Exporter' => '5.72',
10662             'Exporter::Heavy' => '5.72',
10663             'ExtUtils::Command::MM' => '7.02',
10664             'ExtUtils::Liblist' => '7.02',
10665             'ExtUtils::Liblist::Kid'=> '7.02',
10666             'ExtUtils::MM' => '7.02',
10667             'ExtUtils::MM_AIX' => '7.02',
10668             'ExtUtils::MM_Any' => '7.02',
10669             'ExtUtils::MM_BeOS' => '7.02',
10670             'ExtUtils::MM_Cygwin' => '7.02',
10671             'ExtUtils::MM_DOS' => '7.02',
10672             'ExtUtils::MM_Darwin' => '7.02',
10673             'ExtUtils::MM_MacOS' => '7.02',
10674             'ExtUtils::MM_NW5' => '7.02',
10675             'ExtUtils::MM_OS2' => '7.02',
10676             'ExtUtils::MM_QNX' => '7.02',
10677             'ExtUtils::MM_UWIN' => '7.02',
10678             'ExtUtils::MM_Unix' => '7.02',
10679             'ExtUtils::MM_VMS' => '7.02',
10680             'ExtUtils::MM_VOS' => '7.02',
10681             'ExtUtils::MM_Win32' => '7.02',
10682             'ExtUtils::MM_Win95' => '7.02',
10683             'ExtUtils::MY' => '7.02',
10684             'ExtUtils::MakeMaker' => '7.02',
10685             'ExtUtils::MakeMaker::Config'=> '7.02',
10686             'ExtUtils::MakeMaker::Locale'=> '7.02',
10687             'ExtUtils::MakeMaker::version'=> '7.02',
10688             'ExtUtils::MakeMaker::version::regex'=> '7.02',
10689             'ExtUtils::MakeMaker::version::vpp'=> '7.02',
10690             'ExtUtils::Manifest' => '1.69',
10691             'ExtUtils::Mkbootstrap' => '7.02',
10692             'ExtUtils::Mksymlists' => '7.02',
10693             'ExtUtils::ParseXS' => '3.26',
10694             'ExtUtils::ParseXS::Constants'=> '3.26',
10695             'ExtUtils::ParseXS::CountLines'=> '3.26',
10696             'ExtUtils::ParseXS::Eval'=> '3.26',
10697             'ExtUtils::ParseXS::Utilities'=> '3.26',
10698             'ExtUtils::testlib' => '7.02',
10699             'File::Spec::VMS' => '3.52',
10700             'HTTP::Tiny' => '0.051',
10701             'I18N::Langinfo' => '0.12',
10702             'IO::Socket' => '1.38',
10703             'Module::CoreList' => '5.20141120',
10704             'Module::CoreList::TieHashDelta'=> '5.20141120',
10705             'Module::CoreList::Utils'=> '5.20141120',
10706             'POSIX' => '1.46',
10707             'PerlIO::encoding' => '0.20',
10708             'PerlIO::scalar' => '0.20',
10709             'TAP::Base' => '3.34',
10710             'TAP::Formatter::Base' => '3.34',
10711             'TAP::Formatter::Color' => '3.34',
10712             'TAP::Formatter::Console'=> '3.34',
10713             'TAP::Formatter::Console::ParallelSession'=> '3.34',
10714             'TAP::Formatter::Console::Session'=> '3.34',
10715             'TAP::Formatter::File' => '3.34',
10716             'TAP::Formatter::File::Session'=> '3.34',
10717             'TAP::Formatter::Session'=> '3.34',
10718             'TAP::Harness' => '3.34',
10719             'TAP::Harness::Env' => '3.34',
10720             'TAP::Object' => '3.34',
10721             'TAP::Parser' => '3.34',
10722             'TAP::Parser::Aggregator'=> '3.34',
10723             'TAP::Parser::Grammar' => '3.34',
10724             'TAP::Parser::Iterator' => '3.34',
10725             'TAP::Parser::Iterator::Array'=> '3.34',
10726             'TAP::Parser::Iterator::Process'=> '3.34',
10727             'TAP::Parser::Iterator::Stream'=> '3.34',
10728             'TAP::Parser::IteratorFactory'=> '3.34',
10729             'TAP::Parser::Multiplexer'=> '3.34',
10730             'TAP::Parser::Result' => '3.34',
10731             'TAP::Parser::Result::Bailout'=> '3.34',
10732             'TAP::Parser::Result::Comment'=> '3.34',
10733             'TAP::Parser::Result::Plan'=> '3.34',
10734             'TAP::Parser::Result::Pragma'=> '3.34',
10735             'TAP::Parser::Result::Test'=> '3.34',
10736             'TAP::Parser::Result::Unknown'=> '3.34',
10737             'TAP::Parser::Result::Version'=> '3.34',
10738             'TAP::Parser::Result::YAML'=> '3.34',
10739             'TAP::Parser::ResultFactory'=> '3.34',
10740             'TAP::Parser::Scheduler'=> '3.34',
10741             'TAP::Parser::Scheduler::Job'=> '3.34',
10742             'TAP::Parser::Scheduler::Spinner'=> '3.34',
10743             'TAP::Parser::Source' => '3.34',
10744             'TAP::Parser::SourceHandler'=> '3.34',
10745             'TAP::Parser::SourceHandler::Executable'=> '3.34',
10746             'TAP::Parser::SourceHandler::File'=> '3.34',
10747             'TAP::Parser::SourceHandler::Handle'=> '3.34',
10748             'TAP::Parser::SourceHandler::Perl'=> '3.34',
10749             'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
10750             'TAP::Parser::YAMLish::Reader'=> '3.34',
10751             'TAP::Parser::YAMLish::Writer'=> '3.34',
10752             'Test::Builder' => '1.301001_075',
10753             'Test::Builder::Module' => '1.301001_075',
10754             'Test::Builder::Tester' => '1.301001_075',
10755             'Test::Builder::Tester::Color'=> '1.301001_075',
10756             'Test::Harness' => '3.34',
10757             'Test::More' => '1.301001_075',
10758             'Test::More::DeepCheck' => undef,
10759             'Test::More::DeepCheck::Strict'=> undef,
10760             'Test::More::DeepCheck::Tolerant'=> undef,
10761             'Test::More::Tools' => undef,
10762             'Test::MostlyLike' => undef,
10763             'Test::Simple' => '1.301001_075',
10764             'Test::Stream' => '1.301001_075',
10765             'Test::Stream::ArrayBase'=> undef,
10766             'Test::Stream::ArrayBase::Meta'=> undef,
10767             'Test::Stream::Carp' => undef,
10768             'Test::Stream::Context' => undef,
10769             'Test::Stream::Event' => undef,
10770             'Test::Stream::Event::Bail'=> undef,
10771             'Test::Stream::Event::Child'=> undef,
10772             'Test::Stream::Event::Diag'=> undef,
10773             'Test::Stream::Event::Finish'=> undef,
10774             'Test::Stream::Event::Note'=> undef,
10775             'Test::Stream::Event::Ok'=> undef,
10776             'Test::Stream::Event::Plan'=> undef,
10777             'Test::Stream::Event::Subtest'=> undef,
10778             'Test::Stream::ExitMagic'=> undef,
10779             'Test::Stream::ExitMagic::Context'=> undef,
10780             'Test::Stream::Exporter'=> undef,
10781             'Test::Stream::Exporter::Meta'=> undef,
10782             'Test::Stream::IOSets' => undef,
10783             'Test::Stream::Meta' => undef,
10784             'Test::Stream::PackageUtil'=> undef,
10785             'Test::Stream::Tester' => undef,
10786             'Test::Stream::Tester::Checks'=> undef,
10787             'Test::Stream::Tester::Checks::Event'=> undef,
10788             'Test::Stream::Tester::Events'=> undef,
10789             'Test::Stream::Tester::Events::Event'=> undef,
10790             'Test::Stream::Tester::Grab'=> undef,
10791             'Test::Stream::Threads' => undef,
10792             'Test::Stream::Toolset' => undef,
10793             'Test::Stream::Util' => undef,
10794             'Test::Tester' => '1.301001_075',
10795             'Test::Tester::Capture' => undef,
10796             'Test::use::ok' => '1.301001_075',
10797             'Unicode::UCD' => '0.59',
10798             'XS::APItest' => '0.68',
10799             'XSLoader' => '0.19',
10800             'experimental' => '0.013',
10801             'locale' => '1.05',
10802             'ok' => '1.301001_075',
10803             'overload' => '1.24',
10804             're' => '0.28',
10805             'warnings' => '1.29',
10806             },
10807             removed => {
10808             }
10809             },
10810             5.021007 => {
10811             delta_from => 5.021006,
10812             changed => {
10813             'Archive::Tar' => '2.04',
10814             'Archive::Tar::Constant'=> '2.04',
10815             'Archive::Tar::File' => '2.04',
10816             'B' => '1.54',
10817             'B::Concise' => '0.996',
10818             'B::Deparse' => '1.31',
10819             'B::Op_private' => '5.021007',
10820             'B::Showlex' => '1.05',
10821             'Compress::Raw::Bzip2' => '2.067',
10822             'Compress::Raw::Zlib' => '2.067',
10823             'Compress::Zlib' => '2.067',
10824             'Config' => '5.021007',
10825             'Cwd' => '3.54',
10826             'DB_File' => '1.834',
10827             'Data::Dumper' => '2.155',
10828             'Devel::PPPort' => '3.25',
10829             'Devel::Peek' => '1.20',
10830             'DynaLoader' => '1.29',
10831             'Encode' => '2.67',
10832             'Errno' => '1.22',
10833             'ExtUtils::CBuilder' => '0.280221',
10834             'ExtUtils::CBuilder::Base'=> '0.280221',
10835             'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
10836             'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
10837             'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
10838             'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
10839             'ExtUtils::CBuilder::Platform::android'=> '0.280221',
10840             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
10841             'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
10842             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
10843             'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
10844             'ExtUtils::Command::MM' => '7.04',
10845             'ExtUtils::Liblist' => '7.04',
10846             'ExtUtils::Liblist::Kid'=> '7.04',
10847             'ExtUtils::MM' => '7.04',
10848             'ExtUtils::MM_AIX' => '7.04',
10849             'ExtUtils::MM_Any' => '7.04',
10850             'ExtUtils::MM_BeOS' => '7.04',
10851             'ExtUtils::MM_Cygwin' => '7.04',
10852             'ExtUtils::MM_DOS' => '7.04',
10853             'ExtUtils::MM_Darwin' => '7.04',
10854             'ExtUtils::MM_MacOS' => '7.04',
10855             'ExtUtils::MM_NW5' => '7.04',
10856             'ExtUtils::MM_OS2' => '7.04',
10857             'ExtUtils::MM_QNX' => '7.04',
10858             'ExtUtils::MM_UWIN' => '7.04',
10859             'ExtUtils::MM_Unix' => '7.04',
10860             'ExtUtils::MM_VMS' => '7.04',
10861             'ExtUtils::MM_VOS' => '7.04',
10862             'ExtUtils::MM_Win32' => '7.04',
10863             'ExtUtils::MM_Win95' => '7.04',
10864             'ExtUtils::MY' => '7.04',
10865             'ExtUtils::MakeMaker' => '7.04',
10866             'ExtUtils::MakeMaker::Config'=> '7.04',
10867             'ExtUtils::MakeMaker::Locale'=> '7.04',
10868             'ExtUtils::MakeMaker::version'=> '7.04',
10869             'ExtUtils::MakeMaker::version::regex'=> '7.04',
10870             'ExtUtils::MakeMaker::version::vpp'=> '7.04',
10871             'ExtUtils::Mkbootstrap' => '7.04',
10872             'ExtUtils::Mksymlists' => '7.04',
10873             'ExtUtils::ParseXS' => '3.27',
10874             'ExtUtils::ParseXS::Constants'=> '3.27',
10875             'ExtUtils::ParseXS::CountLines'=> '3.27',
10876             'ExtUtils::ParseXS::Eval'=> '3.27',
10877             'ExtUtils::ParseXS::Utilities'=> '3.27',
10878             'ExtUtils::testlib' => '7.04',
10879             'File::Spec' => '3.53',
10880             'File::Spec::Cygwin' => '3.54',
10881             'File::Spec::Epoc' => '3.54',
10882             'File::Spec::Functions' => '3.54',
10883             'File::Spec::Mac' => '3.54',
10884             'File::Spec::OS2' => '3.54',
10885             'File::Spec::Unix' => '3.54',
10886             'File::Spec::VMS' => '3.54',
10887             'File::Spec::Win32' => '3.54',
10888             'Filter::Util::Call' => '1.51',
10889             'HTTP::Tiny' => '0.053',
10890             'IO' => '1.35',
10891             'IO::Compress::Adapter::Bzip2'=> '2.067',
10892             'IO::Compress::Adapter::Deflate'=> '2.067',
10893             'IO::Compress::Adapter::Identity'=> '2.067',
10894             'IO::Compress::Base' => '2.067',
10895             'IO::Compress::Base::Common'=> '2.067',
10896             'IO::Compress::Bzip2' => '2.067',
10897             'IO::Compress::Deflate' => '2.067',
10898             'IO::Compress::Gzip' => '2.067',
10899             'IO::Compress::Gzip::Constants'=> '2.067',
10900             'IO::Compress::RawDeflate'=> '2.067',
10901             'IO::Compress::Zip' => '2.067',
10902             'IO::Compress::Zip::Constants'=> '2.067',
10903             'IO::Compress::Zlib::Constants'=> '2.067',
10904             'IO::Compress::Zlib::Extra'=> '2.067',
10905             'IO::Socket::IP' => '0.34',
10906             'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
10907             'IO::Uncompress::Adapter::Identity'=> '2.067',
10908             'IO::Uncompress::Adapter::Inflate'=> '2.067',
10909             'IO::Uncompress::AnyInflate'=> '2.067',
10910             'IO::Uncompress::AnyUncompress'=> '2.067',
10911             'IO::Uncompress::Base' => '2.067',
10912             'IO::Uncompress::Bunzip2'=> '2.067',
10913             'IO::Uncompress::Gunzip'=> '2.067',
10914             'IO::Uncompress::Inflate'=> '2.067',
10915             'IO::Uncompress::RawInflate'=> '2.067',
10916             'IO::Uncompress::Unzip' => '2.067',
10917             'Locale::Codes' => '3.33',
10918             'Locale::Codes::Constants'=> '3.33',
10919             'Locale::Codes::Country'=> '3.33',
10920             'Locale::Codes::Country_Codes'=> '3.33',
10921             'Locale::Codes::Country_Retired'=> '3.33',
10922             'Locale::Codes::Currency'=> '3.33',
10923             'Locale::Codes::Currency_Codes'=> '3.33',
10924             'Locale::Codes::Currency_Retired'=> '3.33',
10925             'Locale::Codes::LangExt'=> '3.33',
10926             'Locale::Codes::LangExt_Codes'=> '3.33',
10927             'Locale::Codes::LangExt_Retired'=> '3.33',
10928             'Locale::Codes::LangFam'=> '3.33',
10929             'Locale::Codes::LangFam_Codes'=> '3.33',
10930             'Locale::Codes::LangFam_Retired'=> '3.33',
10931             'Locale::Codes::LangVar'=> '3.33',
10932             'Locale::Codes::LangVar_Codes'=> '3.33',
10933             'Locale::Codes::LangVar_Retired'=> '3.33',
10934             'Locale::Codes::Language'=> '3.33',
10935             'Locale::Codes::Language_Codes'=> '3.33',
10936             'Locale::Codes::Language_Retired'=> '3.33',
10937             'Locale::Codes::Script' => '3.33',
10938             'Locale::Codes::Script_Codes'=> '3.33',
10939             'Locale::Codes::Script_Retired'=> '3.33',
10940             'Locale::Country' => '3.33',
10941             'Locale::Currency' => '3.33',
10942             'Locale::Language' => '3.33',
10943             'Locale::Maketext' => '1.26',
10944             'Locale::Script' => '3.33',
10945             'Module::CoreList' => '5.20141220',
10946             'Module::CoreList::TieHashDelta'=> '5.20141220',
10947             'Module::CoreList::Utils'=> '5.20141220',
10948             'NDBM_File' => '1.14',
10949             'Net::Cmd' => '3.04',
10950             'Net::Config' => '3.04',
10951             'Net::Domain' => '3.04',
10952             'Net::FTP' => '3.04',
10953             'Net::FTP::A' => '3.04',
10954             'Net::FTP::E' => '3.04',
10955             'Net::FTP::I' => '3.04',
10956             'Net::FTP::L' => '3.04',
10957             'Net::FTP::dataconn' => '3.04',
10958             'Net::NNTP' => '3.04',
10959             'Net::Netrc' => '3.04',
10960             'Net::POP3' => '3.04',
10961             'Net::SMTP' => '3.04',
10962             'Net::Time' => '3.04',
10963             'Opcode' => '1.30',
10964             'POSIX' => '1.48',
10965             'PerlIO::scalar' => '0.21',
10966             'Pod::Escapes' => '1.07',
10967             'SDBM_File' => '1.12',
10968             'Storable' => '2.52',
10969             'Sys::Hostname' => '1.20',
10970             'Test::Builder' => '1.301001_090',
10971             'Test::Builder::Module' => '1.301001_090',
10972             'Test::Builder::Tester' => '1.301001_090',
10973             'Test::Builder::Tester::Color'=> '1.301001_090',
10974             'Test::CanFork' => undef,
10975             'Test::CanThread' => undef,
10976             'Test::More' => '1.301001_090',
10977             'Test::Simple' => '1.301001_090',
10978             'Test::Stream' => '1.301001_090',
10979             'Test::Stream::API' => undef,
10980             'Test::Stream::ForceExit'=> undef,
10981             'Test::Stream::Subtest' => undef,
10982             'Test::Tester' => '1.301001_090',
10983             'Test::use::ok' => '1.301001_090',
10984             'Unicode::Collate' => '1.09',
10985             'Unicode::Collate::CJK::Big5'=> '1.09',
10986             'Unicode::Collate::CJK::GB2312'=> '1.09',
10987             'Unicode::Collate::CJK::JISX0208'=> '1.09',
10988             'Unicode::Collate::CJK::Korean'=> '1.09',
10989             'Unicode::Collate::CJK::Pinyin'=> '1.09',
10990             'Unicode::Collate::CJK::Stroke'=> '1.09',
10991             'Unicode::Collate::CJK::Zhuyin'=> '1.09',
10992             'Unicode::Collate::Locale'=> '1.09',
10993             'XS::APItest' => '0.69',
10994             'XSLoader' => '0.20',
10995             '_charnames' => '1.43',
10996             'arybase' => '0.09',
10997             'charnames' => '1.43',
10998             'feature' => '1.39',
10999             'mro' => '1.17',
11000             'ok' => '1.301001_090',
11001             'strict' => '1.09',
11002             'threads' => '1.96_001',
11003             },
11004             removed => {
11005             }
11006             },
11007             5.021008 => {
11008             delta_from => 5.021007,
11009             changed => {
11010             'App::Prove' => '3.35',
11011             'App::Prove::State' => '3.35',
11012             'App::Prove::State::Result'=> '3.35',
11013             'App::Prove::State::Result::Test'=> '3.35',
11014             'B' => '1.55',
11015             'B::Deparse' => '1.32',
11016             'B::Op_private' => '5.021008',
11017             'CPAN::Meta::Requirements'=> '2.131',
11018             'Compress::Raw::Bzip2' => '2.068',
11019             'Compress::Raw::Zlib' => '2.068',
11020             'Compress::Zlib' => '2.068',
11021             'Config' => '5.021008',
11022             'DB_File' => '1.835',
11023             'Data::Dumper' => '2.156',
11024             'Devel::PPPort' => '3.28',
11025             'Devel::Peek' => '1.21',
11026             'Digest::MD5' => '2.54',
11027             'Digest::SHA' => '5.95',
11028             'DynaLoader' => '1.30',
11029             'ExtUtils::Command' => '1.20',
11030             'ExtUtils::Manifest' => '1.70',
11031             'Fatal' => '2.26',
11032             'File::Glob' => '1.24',
11033             'Filter::Util::Call' => '1.54',
11034             'Getopt::Long' => '2.43',
11035             'IO::Compress::Adapter::Bzip2'=> '2.068',
11036             'IO::Compress::Adapter::Deflate'=> '2.068',
11037             'IO::Compress::Adapter::Identity'=> '2.068',
11038             'IO::Compress::Base' => '2.068',
11039             'IO::Compress::Base::Common'=> '2.068',
11040             'IO::Compress::Bzip2' => '2.068',
11041             'IO::Compress::Deflate' => '2.068',
11042             'IO::Compress::Gzip' => '2.068',
11043             'IO::Compress::Gzip::Constants'=> '2.068',
11044             'IO::Compress::RawDeflate'=> '2.068',
11045             'IO::Compress::Zip' => '2.068',
11046             'IO::Compress::Zip::Constants'=> '2.068',
11047             'IO::Compress::Zlib::Constants'=> '2.068',
11048             'IO::Compress::Zlib::Extra'=> '2.068',
11049             'IO::Socket::IP' => '0.36',
11050             'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
11051             'IO::Uncompress::Adapter::Identity'=> '2.068',
11052             'IO::Uncompress::Adapter::Inflate'=> '2.068',
11053             'IO::Uncompress::AnyInflate'=> '2.068',
11054             'IO::Uncompress::AnyUncompress'=> '2.068',
11055             'IO::Uncompress::Base' => '2.068',
11056             'IO::Uncompress::Bunzip2'=> '2.068',
11057             'IO::Uncompress::Gunzip'=> '2.068',
11058             'IO::Uncompress::Inflate'=> '2.068',
11059             'IO::Uncompress::RawInflate'=> '2.068',
11060             'IO::Uncompress::Unzip' => '2.068',
11061             'MIME::Base64' => '3.15',
11062             'Module::CoreList' => '5.20150220',
11063             'Module::CoreList::TieHashDelta'=> '5.20150220',
11064             'Module::CoreList::Utils'=> '5.20150220',
11065             'Module::Load::Conditional'=> '0.64',
11066             'Module::Metadata' => '1.000026',
11067             'Net::Cmd' => '3.05',
11068             'Net::Config' => '3.05',
11069             'Net::Domain' => '3.05',
11070             'Net::FTP' => '3.05',
11071             'Net::FTP::A' => '3.05',
11072             'Net::FTP::E' => '3.05',
11073             'Net::FTP::I' => '3.05',
11074             'Net::FTP::L' => '3.05',
11075             'Net::FTP::dataconn' => '3.05',
11076             'Net::NNTP' => '3.05',
11077             'Net::Netrc' => '3.05',
11078             'Net::POP3' => '3.05',
11079             'Net::SMTP' => '3.05',
11080             'Net::Time' => '3.05',
11081             'Opcode' => '1.31',
11082             'POSIX' => '1.49',
11083             'PerlIO::encoding' => '0.21',
11084             'Pod::Simple' => '3.29',
11085             'Pod::Simple::BlackBox' => '3.29',
11086             'Pod::Simple::Checker' => '3.29',
11087             'Pod::Simple::Debug' => '3.29',
11088             'Pod::Simple::DumpAsText'=> '3.29',
11089             'Pod::Simple::DumpAsXML'=> '3.29',
11090             'Pod::Simple::HTML' => '3.29',
11091             'Pod::Simple::HTMLBatch'=> '3.29',
11092             'Pod::Simple::LinkSection'=> '3.29',
11093             'Pod::Simple::Methody' => '3.29',
11094             'Pod::Simple::Progress' => '3.29',
11095             'Pod::Simple::PullParser'=> '3.29',
11096             'Pod::Simple::PullParserEndToken'=> '3.29',
11097             'Pod::Simple::PullParserStartToken'=> '3.29',
11098             'Pod::Simple::PullParserTextToken'=> '3.29',
11099             'Pod::Simple::PullParserToken'=> '3.29',
11100             'Pod::Simple::RTF' => '3.29',
11101             'Pod::Simple::Search' => '3.29',
11102             'Pod::Simple::SimpleTree'=> '3.29',
11103             'Pod::Simple::Text' => '3.29',
11104             'Pod::Simple::TextContent'=> '3.29',
11105             'Pod::Simple::TiedOutFH'=> '3.29',
11106             'Pod::Simple::Transcode'=> '3.29',
11107             'Pod::Simple::TranscodeDumb'=> '3.29',
11108             'Pod::Simple::TranscodeSmart'=> '3.29',
11109             'Pod::Simple::XHTML' => '3.29',
11110             'Pod::Simple::XMLOutStream'=> '3.29',
11111             'SDBM_File' => '1.13',
11112             'Safe' => '2.39',
11113             'TAP::Base' => '3.35',
11114             'TAP::Formatter::Base' => '3.35',
11115             'TAP::Formatter::Color' => '3.35',
11116             'TAP::Formatter::Console'=> '3.35',
11117             'TAP::Formatter::Console::ParallelSession'=> '3.35',
11118             'TAP::Formatter::Console::Session'=> '3.35',
11119             'TAP::Formatter::File' => '3.35',
11120             'TAP::Formatter::File::Session'=> '3.35',
11121             'TAP::Formatter::Session'=> '3.35',
11122             'TAP::Harness' => '3.35',
11123             'TAP::Harness::Env' => '3.35',
11124             'TAP::Object' => '3.35',
11125             'TAP::Parser' => '3.35',
11126             'TAP::Parser::Aggregator'=> '3.35',
11127             'TAP::Parser::Grammar' => '3.35',
11128             'TAP::Parser::Iterator' => '3.35',
11129             'TAP::Parser::Iterator::Array'=> '3.35',
11130             'TAP::Parser::Iterator::Process'=> '3.35',
11131             'TAP::Parser::Iterator::Stream'=> '3.35',
11132             'TAP::Parser::IteratorFactory'=> '3.35',
11133             'TAP::Parser::Multiplexer'=> '3.35',
11134             'TAP::Parser::Result' => '3.35',
11135             'TAP::Parser::Result::Bailout'=> '3.35',
11136             'TAP::Parser::Result::Comment'=> '3.35',
11137             'TAP::Parser::Result::Plan'=> '3.35',
11138             'TAP::Parser::Result::Pragma'=> '3.35',
11139             'TAP::Parser::Result::Test'=> '3.35',
11140             'TAP::Parser::Result::Unknown'=> '3.35',
11141             'TAP::Parser::Result::Version'=> '3.35',
11142             'TAP::Parser::Result::YAML'=> '3.35',
11143             'TAP::Parser::ResultFactory'=> '3.35',
11144             'TAP::Parser::Scheduler'=> '3.35',
11145             'TAP::Parser::Scheduler::Job'=> '3.35',
11146             'TAP::Parser::Scheduler::Spinner'=> '3.35',
11147             'TAP::Parser::Source' => '3.35',
11148             'TAP::Parser::SourceHandler'=> '3.35',
11149             'TAP::Parser::SourceHandler::Executable'=> '3.35',
11150             'TAP::Parser::SourceHandler::File'=> '3.35',
11151             'TAP::Parser::SourceHandler::Handle'=> '3.35',
11152             'TAP::Parser::SourceHandler::Perl'=> '3.35',
11153             'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
11154             'TAP::Parser::YAMLish::Reader'=> '3.35',
11155             'TAP::Parser::YAMLish::Writer'=> '3.35',
11156             'Test::Builder' => '1.301001_097',
11157             'Test::Builder::Module' => '1.301001_097',
11158             'Test::Builder::Tester' => '1.301001_097',
11159             'Test::Builder::Tester::Color'=> '1.301001_097',
11160             'Test::Harness' => '3.35',
11161             'Test::More' => '1.301001_097',
11162             'Test::Simple' => '1.301001_097',
11163             'Test::Stream' => '1.301001_097',
11164             'Test::Stream::Block' => undef,
11165             'Test::Tester' => '1.301001_097',
11166             'Test::Tester::CaptureRunner'=> undef,
11167             'Test::Tester::Delegate'=> undef,
11168             'Test::use::ok' => '1.301001_097',
11169             'Unicode::Collate' => '1.10',
11170             'Unicode::Collate::CJK::Big5'=> '1.10',
11171             'Unicode::Collate::CJK::GB2312'=> '1.10',
11172             'Unicode::Collate::CJK::JISX0208'=> '1.10',
11173             'Unicode::Collate::CJK::Korean'=> '1.10',
11174             'Unicode::Collate::CJK::Pinyin'=> '1.10',
11175             'Unicode::Collate::CJK::Stroke'=> '1.10',
11176             'Unicode::Collate::CJK::Zhuyin'=> '1.10',
11177             'Unicode::Collate::Locale'=> '1.10',
11178             'VMS::DCLsym' => '1.06',
11179             'XS::APItest' => '0.70',
11180             'arybase' => '0.10',
11181             'attributes' => '0.25',
11182             'autodie' => '2.26',
11183             'autodie::Scope::Guard' => '2.26',
11184             'autodie::Scope::GuardStack'=> '2.26',
11185             'autodie::ScopeUtil' => '2.26',
11186             'autodie::exception' => '2.26',
11187             'autodie::exception::system'=> '2.26',
11188             'autodie::hints' => '2.26',
11189             'autodie::skip' => '2.26',
11190             'ok' => '1.301001_097',
11191             're' => '0.30',
11192             'warnings' => '1.30',
11193             },
11194             removed => {
11195             }
11196             },
11197             5.020002 => {
11198             delta_from => 5.020001,
11199             changed => {
11200             'CPAN::Author' => '5.5002',
11201             'CPAN::CacheMgr' => '5.5002',
11202             'CPAN::FTP' => '5.5006',
11203             'CPAN::HTTP::Client' => '1.9601',
11204             'CPAN::HandleConfig' => '5.5005',
11205             'CPAN::Index' => '1.9601',
11206             'CPAN::LWP::UserAgent' => '1.9601',
11207             'CPAN::Mirrors' => '1.9601',
11208             'Config' => '5.020002',
11209             'Cwd' => '3.48_01',
11210             'Data::Dumper' => '2.151_01',
11211             'Errno' => '1.20_05',
11212             'File::Spec' => '3.48_01',
11213             'File::Spec::Cygwin' => '3.48_01',
11214             'File::Spec::Epoc' => '3.48_01',
11215             'File::Spec::Functions' => '3.48_01',
11216             'File::Spec::Mac' => '3.48_01',
11217             'File::Spec::OS2' => '3.48_01',
11218             'File::Spec::Unix' => '3.48_01',
11219             'File::Spec::VMS' => '3.48_01',
11220             'File::Spec::Win32' => '3.48_01',
11221             'IO::Socket' => '1.38',
11222             'Module::CoreList' => '5.20150214',
11223             'Module::CoreList::TieHashDelta'=> '5.20150214',
11224             'Module::CoreList::Utils'=> '5.20150214',
11225             'PerlIO::scalar' => '0.18_01',
11226             'Pod::PlainText' => '2.07',
11227             'Storable' => '2.49_01',
11228             'VMS::DCLsym' => '1.05_01',
11229             'VMS::Stdio' => '2.41',
11230             'attributes' => '0.23',
11231             'feature' => '1.36_01',
11232             },
11233             removed => {
11234             }
11235             },
11236             5.021009 => {
11237             delta_from => 5.021008,
11238             changed => {
11239             'B' => '1.56',
11240             'B::Debug' => '1.23',
11241             'B::Deparse' => '1.33',
11242             'B::Op_private' => '5.021009',
11243             'Benchmark' => '1.20',
11244             'CPAN::Author' => '5.5002',
11245             'CPAN::CacheMgr' => '5.5002',
11246             'CPAN::FTP' => '5.5006',
11247             'CPAN::HTTP::Client' => '1.9601',
11248             'CPAN::HandleConfig' => '5.5005',
11249             'CPAN::Index' => '1.9601',
11250             'CPAN::LWP::UserAgent' => '1.9601',
11251             'CPAN::Meta::Requirements'=> '2.132',
11252             'CPAN::Mirrors' => '1.9601',
11253             'Carp' => '1.35',
11254             'Carp::Heavy' => '1.35',
11255             'Config' => '5.021009',
11256             'Config::Perl::V' => '0.23',
11257             'Data::Dumper' => '2.157',
11258             'Devel::Peek' => '1.22',
11259             'DynaLoader' => '1.31',
11260             'Encode' => '2.70',
11261             'Encode::MIME::Header' => '2.16',
11262             'Errno' => '1.23',
11263             'ExtUtils::Miniperl' => '1.04',
11264             'HTTP::Tiny' => '0.054',
11265             'Module::CoreList' => '5.20150220',
11266             'Module::CoreList::TieHashDelta'=> '5.20150220',
11267             'Module::CoreList::Utils'=> '5.20150220',
11268             'Opcode' => '1.32',
11269             'POSIX' => '1.51',
11270             'Perl::OSType' => '1.008',
11271             'PerlIO::scalar' => '0.22',
11272             'Pod::Find' => '1.63',
11273             'Pod::InputObjects' => '1.63',
11274             'Pod::ParseUtils' => '1.63',
11275             'Pod::Parser' => '1.63',
11276             'Pod::Perldoc' => '3.25',
11277             'Pod::Perldoc::BaseTo' => '3.25',
11278             'Pod::Perldoc::GetOptsOO'=> '3.25',
11279             'Pod::Perldoc::ToANSI' => '3.25',
11280             'Pod::Perldoc::ToChecker'=> '3.25',
11281             'Pod::Perldoc::ToMan' => '3.25',
11282             'Pod::Perldoc::ToNroff' => '3.25',
11283             'Pod::Perldoc::ToPod' => '3.25',
11284             'Pod::Perldoc::ToRtf' => '3.25',
11285             'Pod::Perldoc::ToTerm' => '3.25',
11286             'Pod::Perldoc::ToText' => '3.25',
11287             'Pod::Perldoc::ToTk' => '3.25',
11288             'Pod::Perldoc::ToXml' => '3.25',
11289             'Pod::PlainText' => '2.07',
11290             'Pod::Select' => '1.63',
11291             'Socket' => '2.018',
11292             'Storable' => '2.53',
11293             'Test::Builder' => '1.301001_098',
11294             'Test::Builder::Module' => '1.301001_098',
11295             'Test::Builder::Tester' => '1.301001_098',
11296             'Test::Builder::Tester::Color'=> '1.301001_098',
11297             'Test::More' => '1.301001_098',
11298             'Test::Simple' => '1.301001_098',
11299             'Test::Stream' => '1.301001_098',
11300             'Test::Tester' => '1.301001_098',
11301             'Test::use::ok' => '1.301001_098',
11302             'Unicode::Collate' => '1.11',
11303             'Unicode::Collate::CJK::Big5'=> '1.11',
11304             'Unicode::Collate::CJK::GB2312'=> '1.11',
11305             'Unicode::Collate::CJK::JISX0208'=> '1.11',
11306             'Unicode::Collate::CJK::Korean'=> '1.11',
11307             'Unicode::Collate::CJK::Pinyin'=> '1.11',
11308             'Unicode::Collate::CJK::Stroke'=> '1.11',
11309             'Unicode::Collate::CJK::Zhuyin'=> '1.11',
11310             'Unicode::Collate::Locale'=> '1.11',
11311             'Unicode::UCD' => '0.61',
11312             'VMS::Stdio' => '2.41',
11313             'Win32' => '0.51',
11314             'Win32API::File' => '0.1202',
11315             'attributes' => '0.26',
11316             'bigint' => '0.39',
11317             'bignum' => '0.39',
11318             'bigrat' => '0.39',
11319             'constant' => '1.33',
11320             'encoding' => '2.13',
11321             'feature' => '1.40',
11322             'ok' => '1.301001_098',
11323             'overload' => '1.25',
11324             'perlfaq' => '5.021009',
11325             're' => '0.31',
11326             'threads::shared' => '1.48',
11327             'warnings' => '1.31',
11328             },
11329             removed => {
11330             }
11331             },
11332             5.021010 => {
11333             delta_from => 5.021009,
11334             changed => {
11335             'App::Cpan' => '1.63',
11336             'B' => '1.57',
11337             'B::Deparse' => '1.34',
11338             'B::Op_private' => '5.021010',
11339             'Benchmark' => '1.2',
11340             'CPAN' => '2.10',
11341             'CPAN::Distribution' => '2.04',
11342             'CPAN::FirstTime' => '5.5307',
11343             'CPAN::HTTP::Credentials'=> '1.9601',
11344             'CPAN::HandleConfig' => '5.5006',
11345             'CPAN::Meta' => '2.150001',
11346             'CPAN::Meta::Converter' => '2.150001',
11347             'CPAN::Meta::Feature' => '2.150001',
11348             'CPAN::Meta::History' => '2.150001',
11349             'CPAN::Meta::Merge' => '2.150001',
11350             'CPAN::Meta::Prereqs' => '2.150001',
11351             'CPAN::Meta::Spec' => '2.150001',
11352             'CPAN::Meta::Validator' => '2.150001',
11353             'CPAN::Module' => '5.5002',
11354             'CPAN::Plugin' => '0.95',
11355             'CPAN::Plugin::Specfile'=> '0.01',
11356             'CPAN::Shell' => '5.5005',
11357             'Carp' => '1.36',
11358             'Carp::Heavy' => '1.36',
11359             'Config' => '5.02101',
11360             'Cwd' => '3.55',
11361             'DB' => '1.08',
11362             'Data::Dumper' => '2.158',
11363             'Devel::PPPort' => '3.31',
11364             'DynaLoader' => '1.32',
11365             'Encode' => '2.72',
11366             'Encode::Alias' => '2.19',
11367             'File::Spec' => '3.55',
11368             'File::Spec::Cygwin' => '3.55',
11369             'File::Spec::Epoc' => '3.55',
11370             'File::Spec::Functions' => '3.55',
11371             'File::Spec::Mac' => '3.55',
11372             'File::Spec::OS2' => '3.55',
11373             'File::Spec::Unix' => '3.55',
11374             'File::Spec::VMS' => '3.55',
11375             'File::Spec::Win32' => '3.55',
11376             'Getopt::Long' => '2.45',
11377             'Locale::Codes' => '3.34',
11378             'Locale::Codes::Constants'=> '3.34',
11379             'Locale::Codes::Country'=> '3.34',
11380             'Locale::Codes::Country_Codes'=> '3.34',
11381             'Locale::Codes::Country_Retired'=> '3.34',
11382             'Locale::Codes::Currency'=> '3.34',
11383             'Locale::Codes::Currency_Codes'=> '3.34',
11384             'Locale::Codes::Currency_Retired'=> '3.34',
11385             'Locale::Codes::LangExt'=> '3.34',
11386             'Locale::Codes::LangExt_Codes'=> '3.34',
11387             'Locale::Codes::LangExt_Retired'=> '3.34',
11388             'Locale::Codes::LangFam'=> '3.34',
11389             'Locale::Codes::LangFam_Codes'=> '3.34',
11390             'Locale::Codes::LangFam_Retired'=> '3.34',
11391             'Locale::Codes::LangVar'=> '3.34',
11392             'Locale::Codes::LangVar_Codes'=> '3.34',
11393             'Locale::Codes::LangVar_Retired'=> '3.34',
11394             'Locale::Codes::Language'=> '3.34',
11395             'Locale::Codes::Language_Codes'=> '3.34',
11396             'Locale::Codes::Language_Retired'=> '3.34',
11397             'Locale::Codes::Script' => '3.34',
11398             'Locale::Codes::Script_Codes'=> '3.34',
11399             'Locale::Codes::Script_Retired'=> '3.34',
11400             'Locale::Country' => '3.34',
11401             'Locale::Currency' => '3.34',
11402             'Locale::Language' => '3.34',
11403             'Locale::Script' => '3.34',
11404             'Module::CoreList' => '5.20150320',
11405             'Module::CoreList::TieHashDelta'=> '5.20150320',
11406             'Module::CoreList::Utils'=> '5.20150320',
11407             'POSIX' => '1.52',
11408             'Pod::Functions' => '1.09',
11409             'Pod::Functions::Functions'=> '1.09',
11410             'Term::Complete' => '1.403',
11411             'Test::Builder' => '1.001014',
11412             'Test::Builder::IO::Scalar'=> '2.113',
11413             'Test::Builder::Module' => '1.001014',
11414             'Test::Builder::Tester' => '1.28',
11415             'Test::Builder::Tester::Color'=> '1.290001',
11416             'Test::More' => '1.001014',
11417             'Test::Simple' => '1.001014',
11418             'Test::Tester' => '0.114',
11419             'Test::use::ok' => '0.16',
11420             'Text::Balanced' => '2.03',
11421             'Text::ParseWords' => '3.30',
11422             'Unicode::Collate' => '1.12',
11423             'Unicode::Collate::CJK::Big5'=> '1.12',
11424             'Unicode::Collate::CJK::GB2312'=> '1.12',
11425             'Unicode::Collate::CJK::JISX0208'=> '1.12',
11426             'Unicode::Collate::CJK::Korean'=> '1.12',
11427             'Unicode::Collate::CJK::Pinyin'=> '1.12',
11428             'Unicode::Collate::CJK::Stroke'=> '1.12',
11429             'Unicode::Collate::CJK::Zhuyin'=> '1.12',
11430             'Unicode::Collate::Locale'=> '1.12',
11431             'XS::APItest' => '0.71',
11432             'encoding' => '2.14',
11433             'locale' => '1.06',
11434             'meta_notation' => undef,
11435             'ok' => '0.16',
11436             'parent' => '0.232',
11437             're' => '0.32',
11438             'sigtrap' => '1.08',
11439             'threads' => '2.01',
11440             'utf8' => '1.15',
11441             },
11442             removed => {
11443             'Test::CanFork' => 1,
11444             'Test::CanThread' => 1,
11445             'Test::More::DeepCheck' => 1,
11446             'Test::More::DeepCheck::Strict'=> 1,
11447             'Test::More::DeepCheck::Tolerant'=> 1,
11448             'Test::More::Tools' => 1,
11449             'Test::MostlyLike' => 1,
11450             'Test::Stream' => 1,
11451             'Test::Stream::API' => 1,
11452             'Test::Stream::ArrayBase'=> 1,
11453             'Test::Stream::ArrayBase::Meta'=> 1,
11454             'Test::Stream::Block' => 1,
11455             'Test::Stream::Carp' => 1,
11456             'Test::Stream::Context' => 1,
11457             'Test::Stream::Event' => 1,
11458             'Test::Stream::Event::Bail'=> 1,
11459             'Test::Stream::Event::Child'=> 1,
11460             'Test::Stream::Event::Diag'=> 1,
11461             'Test::Stream::Event::Finish'=> 1,
11462             'Test::Stream::Event::Note'=> 1,
11463             'Test::Stream::Event::Ok'=> 1,
11464             'Test::Stream::Event::Plan'=> 1,
11465             'Test::Stream::Event::Subtest'=> 1,
11466             'Test::Stream::ExitMagic'=> 1,
11467             'Test::Stream::ExitMagic::Context'=> 1,
11468             'Test::Stream::Exporter'=> 1,
11469             'Test::Stream::Exporter::Meta'=> 1,
11470             'Test::Stream::ForceExit'=> 1,
11471             'Test::Stream::IOSets' => 1,
11472             'Test::Stream::Meta' => 1,
11473             'Test::Stream::PackageUtil'=> 1,
11474             'Test::Stream::Subtest' => 1,
11475             'Test::Stream::Tester' => 1,
11476             'Test::Stream::Tester::Checks'=> 1,
11477             'Test::Stream::Tester::Checks::Event'=> 1,
11478             'Test::Stream::Tester::Events'=> 1,
11479             'Test::Stream::Tester::Events::Event'=> 1,
11480             'Test::Stream::Tester::Grab'=> 1,
11481             'Test::Stream::Threads' => 1,
11482             'Test::Stream::Toolset' => 1,
11483             'Test::Stream::Util' => 1,
11484             }
11485             },
11486             5.021011 => {
11487             delta_from => 5.021010,
11488             changed => {
11489             'B' => '1.58',
11490             'B::Deparse' => '1.35',
11491             'B::Op_private' => '5.021011',
11492             'CPAN' => '2.11',
11493             'Config' => '5.021011',
11494             'Config::Perl::V' => '0.24',
11495             'Cwd' => '3.56',
11496             'ExtUtils::Miniperl' => '1.05',
11497             'ExtUtils::ParseXS' => '3.28',
11498             'ExtUtils::ParseXS::Constants'=> '3.28',
11499             'ExtUtils::ParseXS::CountLines'=> '3.28',
11500             'ExtUtils::ParseXS::Eval'=> '3.28',
11501             'ExtUtils::ParseXS::Utilities'=> '3.28',
11502             'ExtUtils::Typemaps' => '3.28',
11503             'ExtUtils::Typemaps::Cmd'=> '3.28',
11504             'ExtUtils::Typemaps::InputMap'=> '3.28',
11505             'ExtUtils::Typemaps::OutputMap'=> '3.28',
11506             'ExtUtils::Typemaps::Type'=> '3.28',
11507             'File::Spec' => '3.56',
11508             'File::Spec::Cygwin' => '3.56',
11509             'File::Spec::Epoc' => '3.56',
11510             'File::Spec::Functions' => '3.56',
11511             'File::Spec::Mac' => '3.56',
11512             'File::Spec::OS2' => '3.56',
11513             'File::Spec::Unix' => '3.56',
11514             'File::Spec::VMS' => '3.56',
11515             'File::Spec::Win32' => '3.56',
11516             'IO::Socket::IP' => '0.37',
11517             'Module::CoreList' => '5.20150420',
11518             'Module::CoreList::TieHashDelta'=> '5.20150420',
11519             'Module::CoreList::Utils'=> '5.20150420',
11520             'PerlIO::mmap' => '0.014',
11521             'XS::APItest' => '0.72',
11522             'attributes' => '0.27',
11523             'if' => '0.0604',
11524             'utf8' => '1.16',
11525             'warnings' => '1.32',
11526             },
11527             removed => {
11528             }
11529             },
11530             5.022000 => {
11531             delta_from => 5.021011,
11532             changed => {
11533             'B::Op_private' => '5.022000',
11534             'Config' => '5.022',
11535             'ExtUtils::Command::MM' => '7.04_01',
11536             'ExtUtils::Liblist' => '7.04_01',
11537             'ExtUtils::Liblist::Kid'=> '7.04_01',
11538             'ExtUtils::MM' => '7.04_01',
11539             'ExtUtils::MM_AIX' => '7.04_01',
11540             'ExtUtils::MM_Any' => '7.04_01',
11541             'ExtUtils::MM_BeOS' => '7.04_01',
11542             'ExtUtils::MM_Cygwin' => '7.04_01',
11543             'ExtUtils::MM_DOS' => '7.04_01',
11544             'ExtUtils::MM_Darwin' => '7.04_01',
11545             'ExtUtils::MM_MacOS' => '7.04_01',
11546             'ExtUtils::MM_NW5' => '7.04_01',
11547             'ExtUtils::MM_OS2' => '7.04_01',
11548             'ExtUtils::MM_QNX' => '7.04_01',
11549             'ExtUtils::MM_UWIN' => '7.04_01',
11550             'ExtUtils::MM_Unix' => '7.04_01',
11551             'ExtUtils::MM_VMS' => '7.04_01',
11552             'ExtUtils::MM_VOS' => '7.04_01',
11553             'ExtUtils::MM_Win32' => '7.04_01',
11554             'ExtUtils::MM_Win95' => '7.04_01',
11555             'ExtUtils::MY' => '7.04_01',
11556             'ExtUtils::MakeMaker' => '7.04_01',
11557             'ExtUtils::MakeMaker::Config'=> '7.04_01',
11558             'ExtUtils::MakeMaker::Locale'=> '7.04_01',
11559             'ExtUtils::MakeMaker::version'=> '7.04_01',
11560             'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
11561             'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
11562             'ExtUtils::Mkbootstrap' => '7.04_01',
11563             'ExtUtils::Mksymlists' => '7.04_01',
11564             'ExtUtils::testlib' => '7.04_01',
11565             'Module::CoreList' => '5.20150520',
11566             'Module::CoreList::TieHashDelta'=> '5.20150520',
11567             'Module::CoreList::Utils'=> '5.20150520',
11568             'POSIX' => '1.53',
11569             'PerlIO::via::QuotedPrint'=> '0.08',
11570             'overload' => '1.26',
11571             'utf8' => '1.17',
11572             },
11573             removed => {
11574             }
11575             },
11576             5.023000 => {
11577             delta_from => 5.022000,
11578             changed => {
11579             'B::Op_private' => '5.023000',
11580             'CPAN::Meta' => '2.150005',
11581             'CPAN::Meta::Converter' => '2.150005',
11582             'CPAN::Meta::Feature' => '2.150005',
11583             'CPAN::Meta::History' => '2.150005',
11584             'CPAN::Meta::Merge' => '2.150005',
11585             'CPAN::Meta::Prereqs' => '2.150005',
11586             'CPAN::Meta::Requirements'=> '2.133',
11587             'CPAN::Meta::Spec' => '2.150005',
11588             'CPAN::Meta::Validator' => '2.150005',
11589             'CPAN::Meta::YAML' => '0.016',
11590             'Config' => '5.023',
11591             'Encode' => '2.73',
11592             'ExtUtils::CBuilder' => '0.280223',
11593             'ExtUtils::CBuilder::Base'=> '0.280223',
11594             'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
11595             'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
11596             'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
11597             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
11598             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
11599             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
11600             'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
11601             'ExtUtils::CBuilder::Platform::android'=> '0.280223',
11602             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
11603             'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
11604             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
11605             'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
11606             'Fatal' => '2.27',
11607             'Getopt::Long' => '2.46',
11608             'HTTP::Tiny' => '0.056',
11609             'List::Util' => '1.42_01',
11610             'List::Util::XS' => '1.42_01',
11611             'Locale::Codes' => '3.35',
11612             'Locale::Codes::Constants'=> '3.35',
11613             'Locale::Codes::Country'=> '3.35',
11614             'Locale::Codes::Country_Codes'=> '3.35',
11615             'Locale::Codes::Country_Retired'=> '3.35',
11616             'Locale::Codes::Currency'=> '3.35',
11617             'Locale::Codes::Currency_Codes'=> '3.35',
11618             'Locale::Codes::Currency_Retired'=> '3.35',
11619             'Locale::Codes::LangExt'=> '3.35',
11620             'Locale::Codes::LangExt_Codes'=> '3.35',
11621             'Locale::Codes::LangExt_Retired'=> '3.35',
11622             'Locale::Codes::LangFam'=> '3.35',
11623             'Locale::Codes::LangFam_Codes'=> '3.35',
11624             'Locale::Codes::LangFam_Retired'=> '3.35',
11625             'Locale::Codes::LangVar'=> '3.35',
11626             'Locale::Codes::LangVar_Codes'=> '3.35',
11627             'Locale::Codes::LangVar_Retired'=> '3.35',
11628             'Locale::Codes::Language'=> '3.35',
11629             'Locale::Codes::Language_Codes'=> '3.35',
11630             'Locale::Codes::Language_Retired'=> '3.35',
11631             'Locale::Codes::Script' => '3.35',
11632             'Locale::Codes::Script_Codes'=> '3.35',
11633             'Locale::Codes::Script_Retired'=> '3.35',
11634             'Locale::Country' => '3.35',
11635             'Locale::Currency' => '3.35',
11636             'Locale::Language' => '3.35',
11637             'Locale::Script' => '3.35',
11638             'Math::BigFloat' => '1.999701',
11639             'Math::BigInt' => '1.999701',
11640             'Math::BigInt::Calc' => '1.999701',
11641             'Math::BigInt::CalcEmu' => '1.999701',
11642             'Math::BigRat' => '0.260801',
11643             'Module::CoreList' => '5.20150620',
11644             'Module::CoreList::TieHashDelta'=> '5.20150620',
11645             'Module::CoreList::Utils'=> '5.20150620',
11646             'Module::Metadata' => '1.000027',
11647             'Net::Cmd' => '3.06',
11648             'Net::Config' => '3.06',
11649             'Net::Domain' => '3.06',
11650             'Net::FTP' => '3.06',
11651             'Net::FTP::A' => '3.06',
11652             'Net::FTP::E' => '3.06',
11653             'Net::FTP::I' => '3.06',
11654             'Net::FTP::L' => '3.06',
11655             'Net::FTP::dataconn' => '3.06',
11656             'Net::NNTP' => '3.06',
11657             'Net::Netrc' => '3.06',
11658             'Net::POP3' => '3.06',
11659             'Net::SMTP' => '3.06',
11660             'Net::Time' => '3.06',
11661             'POSIX' => '1.54',
11662             'Parse::CPAN::Meta' => '1.4417',
11663             'Pod::Simple' => '3.30',
11664             'Pod::Simple::BlackBox' => '3.30',
11665             'Pod::Simple::Checker' => '3.30',
11666             'Pod::Simple::Debug' => '3.30',
11667             'Pod::Simple::DumpAsText'=> '3.30',
11668             'Pod::Simple::DumpAsXML'=> '3.30',
11669             'Pod::Simple::HTML' => '3.30',
11670             'Pod::Simple::HTMLBatch'=> '3.30',
11671             'Pod::Simple::LinkSection'=> '3.30',
11672             'Pod::Simple::Methody' => '3.30',
11673             'Pod::Simple::Progress' => '3.30',
11674             'Pod::Simple::PullParser'=> '3.30',
11675             'Pod::Simple::PullParserEndToken'=> '3.30',
11676             'Pod::Simple::PullParserStartToken'=> '3.30',
11677             'Pod::Simple::PullParserTextToken'=> '3.30',
11678             'Pod::Simple::PullParserToken'=> '3.30',
11679             'Pod::Simple::RTF' => '3.30',
11680             'Pod::Simple::Search' => '3.30',
11681             'Pod::Simple::SimpleTree'=> '3.30',
11682             'Pod::Simple::Text' => '3.30',
11683             'Pod::Simple::TextContent'=> '3.30',
11684             'Pod::Simple::TiedOutFH'=> '3.30',
11685             'Pod::Simple::Transcode'=> '3.30',
11686             'Pod::Simple::TranscodeDumb'=> '3.30',
11687             'Pod::Simple::TranscodeSmart'=> '3.30',
11688             'Pod::Simple::XHTML' => '3.30',
11689             'Pod::Simple::XMLOutStream'=> '3.30',
11690             'Pod::Usage' => '1.67',
11691             'Scalar::Util' => '1.42_01',
11692             'Socket' => '2.019',
11693             'Sub::Util' => '1.42_01',
11694             'Time::Piece' => '1.30',
11695             'Time::Seconds' => '1.30',
11696             'UNIVERSAL' => '1.13',
11697             'Unicode' => '8.0.0',
11698             'XS::APItest' => '0.73',
11699             'autodie' => '2.27',
11700             'autodie::Scope::Guard' => '2.27',
11701             'autodie::Scope::GuardStack'=> '2.27',
11702             'autodie::Util' => '2.27',
11703             'autodie::exception' => '2.27',
11704             'autodie::exception::system'=> '2.27',
11705             'autodie::hints' => '2.27',
11706             'autodie::skip' => '2.27',
11707             'encoding' => '2.15',
11708             'feature' => '1.41',
11709             'parent' => '0.234',
11710             'threads' => '2.02',
11711             },
11712             removed => {
11713             }
11714             },
11715             5.023001 => {
11716             delta_from => 5.023000,
11717             changed => {
11718             'B::Op_private' => '5.023001',
11719             'Config' => '5.023001',
11720             'DynaLoader' => '1.33',
11721             'Encode' => '2.75',
11722             'Encode::MIME::Header' => '2.17',
11723             'Encode::Unicode' => '2.13',
11724             'Fatal' => '2.29',
11725             'File::Path' => '2.11',
11726             'Getopt::Long' => '2.47',
11727             'I18N::Langinfo' => '0.13',
11728             'IPC::Open3' => '1.19',
11729             'Module::CoreList' => '5.20150720',
11730             'Module::CoreList::TieHashDelta'=> '5.20150720',
11731             'Module::CoreList::Utils'=> '5.20150720',
11732             'Net::Cmd' => '3.07',
11733             'Net::Config' => '3.07',
11734             'Net::Domain' => '3.07',
11735             'Net::FTP' => '3.07',
11736             'Net::FTP::A' => '3.07',
11737             'Net::FTP::E' => '3.07',
11738             'Net::FTP::I' => '3.07',
11739             'Net::FTP::L' => '3.07',
11740             'Net::FTP::dataconn' => '3.07',
11741             'Net::NNTP' => '3.07',
11742             'Net::Netrc' => '3.07',
11743             'Net::POP3' => '3.07',
11744             'Net::SMTP' => '3.07',
11745             'Net::Time' => '3.07',
11746             'Opcode' => '1.33',
11747             'POSIX' => '1.55',
11748             'PerlIO::scalar' => '0.23',
11749             'Socket' => '2.020',
11750             'Storable' => '2.54',
11751             'Unicode::Collate' => '1.14',
11752             'Unicode::Collate::CJK::Big5'=> '1.14',
11753             'Unicode::Collate::CJK::GB2312'=> '1.14',
11754             'Unicode::Collate::CJK::JISX0208'=> '1.14',
11755             'Unicode::Collate::CJK::Korean'=> '1.14',
11756             'Unicode::Collate::CJK::Pinyin'=> '1.14',
11757             'Unicode::Collate::CJK::Stroke'=> '1.14',
11758             'Unicode::Collate::CJK::Zhuyin'=> '1.14',
11759             'Unicode::Collate::Locale'=> '1.14',
11760             'Unicode::Normalize' => '1.19',
11761             'XS::APItest' => '0.74',
11762             'XS::Typemap' => '0.14',
11763             'autodie' => '2.29',
11764             'autodie::Scope::Guard' => '2.29',
11765             'autodie::Scope::GuardStack'=> '2.29',
11766             'autodie::Util' => '2.29',
11767             'autodie::exception' => '2.29',
11768             'autodie::exception::system'=> '2.29',
11769             'autodie::hints' => '2.29',
11770             'autodie::skip' => '2.29',
11771             'encoding' => '2.16',
11772             'feature' => '1.42',
11773             'warnings' => '1.33',
11774             },
11775             removed => {
11776             'autodie::ScopeUtil' => 1,
11777             }
11778             },
11779             5.023002 => {
11780             delta_from => 5.023001,
11781             changed => {
11782             'Attribute::Handlers' => '0.99',
11783             'B::Op_private' => '5.023002',
11784             'CPAN::Meta::YAML' => '0.017',
11785             'Config' => '5.023002',
11786             'Cwd' => '3.57',
11787             'Encode' => '2.76',
11788             'ExtUtils::ParseXS' => '3.29',
11789             'ExtUtils::ParseXS::Constants'=> '3.29',
11790             'ExtUtils::ParseXS::CountLines'=> '3.29',
11791             'ExtUtils::ParseXS::Eval'=> '3.29',
11792             'ExtUtils::ParseXS::Utilities'=> '3.29',
11793             'ExtUtils::Typemaps' => '3.29',
11794             'File::Find' => '1.30',
11795             'File::Spec' => '3.57',
11796             'File::Spec::Cygwin' => '3.57',
11797             'File::Spec::Epoc' => '3.57',
11798             'File::Spec::Functions' => '3.57',
11799             'File::Spec::Mac' => '3.57',
11800             'File::Spec::OS2' => '3.57',
11801             'File::Spec::Unix' => '3.57',
11802             'File::Spec::VMS' => '3.57',
11803             'File::Spec::Win32' => '3.57',
11804             'Filter::Util::Call' => '1.55',
11805             'Hash::Util' => '0.19',
11806             'Module::CoreList' => '5.20150820',
11807             'Module::CoreList::TieHashDelta'=> '5.20150820',
11808             'Module::CoreList::Utils'=> '5.20150820',
11809             'POSIX' => '1.56',
11810             'Term::Cap' => '1.17',
11811             'Unicode::UCD' => '0.62',
11812             'perlfaq' => '5.021010',
11813             },
11814             removed => {
11815             }
11816             },
11817             5.020003 => {
11818             delta_from => 5.020002,
11819             changed => {
11820             'Config' => '5.020003',
11821             'Errno' => '1.20_06',
11822             'Module::CoreList' => '5.20150912',
11823             'Module::CoreList::TieHashDelta'=> '5.20150912',
11824             'Module::CoreList::Utils'=> '5.20150912',
11825             },
11826             removed => {
11827             }
11828             },
11829             5.023003 => {
11830             delta_from => 5.023002,
11831             changed => {
11832             'Amiga::ARexx' => '0.02',
11833             'Amiga::Exec' => '0.01',
11834             'B' => '1.59',
11835             'B::Op_private' => '5.023003',
11836             'Carp' => '1.37',
11837             'Carp::Heavy' => '1.37',
11838             'Compress::Raw::Zlib' => '2.068_01',
11839             'Config' => '5.023003',
11840             'Cwd' => '3.58',
11841             'DynaLoader' => '1.34',
11842             'Encode' => '2.77',
11843             'Encode::Unicode' => '2.14',
11844             'English' => '1.10',
11845             'Errno' => '1.24',
11846             'ExtUtils::Command' => '7.10',
11847             'ExtUtils::Command::MM' => '7.10',
11848             'ExtUtils::Liblist' => '7.10',
11849             'ExtUtils::Liblist::Kid'=> '7.10',
11850             'ExtUtils::MM' => '7.10',
11851             'ExtUtils::MM_AIX' => '7.10',
11852             'ExtUtils::MM_Any' => '7.10',
11853             'ExtUtils::MM_BeOS' => '7.10',
11854             'ExtUtils::MM_Cygwin' => '7.10',
11855             'ExtUtils::MM_DOS' => '7.10',
11856             'ExtUtils::MM_Darwin' => '7.10',
11857             'ExtUtils::MM_MacOS' => '7.10',
11858             'ExtUtils::MM_NW5' => '7.10',
11859             'ExtUtils::MM_OS2' => '7.10',
11860             'ExtUtils::MM_QNX' => '7.10',
11861             'ExtUtils::MM_UWIN' => '7.10',
11862             'ExtUtils::MM_Unix' => '7.10',
11863             'ExtUtils::MM_VMS' => '7.10',
11864             'ExtUtils::MM_VOS' => '7.10',
11865             'ExtUtils::MM_Win32' => '7.10',
11866             'ExtUtils::MM_Win95' => '7.10',
11867             'ExtUtils::MY' => '7.10',
11868             'ExtUtils::MakeMaker' => '7.10',
11869             'ExtUtils::MakeMaker::Config'=> '7.10',
11870             'ExtUtils::MakeMaker::Locale'=> '7.10',
11871             'ExtUtils::MakeMaker::version'=> '7.10',
11872             'ExtUtils::MakeMaker::version::regex'=> '7.10',
11873             'ExtUtils::MakeMaker::version::vpp'=> '7.10',
11874             'ExtUtils::Mkbootstrap' => '7.10',
11875             'ExtUtils::Mksymlists' => '7.10',
11876             'ExtUtils::ParseXS' => '3.30',
11877             'ExtUtils::ParseXS::Constants'=> '3.30',
11878             'ExtUtils::ParseXS::CountLines'=> '3.30',
11879             'ExtUtils::ParseXS::Eval'=> '3.30',
11880             'ExtUtils::ParseXS::Utilities'=> '3.30',
11881             'ExtUtils::Typemaps' => '3.30',
11882             'ExtUtils::Typemaps::Cmd'=> '3.30',
11883             'ExtUtils::Typemaps::InputMap'=> '3.30',
11884             'ExtUtils::Typemaps::OutputMap'=> '3.30',
11885             'ExtUtils::Typemaps::Type'=> '3.30',
11886             'ExtUtils::testlib' => '7.10',
11887             'File::Find' => '1.31',
11888             'File::Glob' => '1.25',
11889             'File::Spec' => '3.58',
11890             'File::Spec::AmigaOS' => '3.58',
11891             'File::Spec::Cygwin' => '3.58',
11892             'File::Spec::Epoc' => '3.58',
11893             'File::Spec::Functions' => '3.58',
11894             'File::Spec::Mac' => '3.58',
11895             'File::Spec::OS2' => '3.58',
11896             'File::Spec::Unix' => '3.58',
11897             'File::Spec::VMS' => '3.58',
11898             'File::Spec::Win32' => '3.58',
11899             'Hash::Util::FieldHash' => '1.17',
11900             'Locale::Codes' => '3.36',
11901             'Locale::Codes::Constants'=> '3.36',
11902             'Locale::Codes::Country'=> '3.36',
11903             'Locale::Codes::Country_Codes'=> '3.36',
11904             'Locale::Codes::Country_Retired'=> '3.36',
11905             'Locale::Codes::Currency'=> '3.36',
11906             'Locale::Codes::Currency_Codes'=> '3.36',
11907             'Locale::Codes::Currency_Retired'=> '3.36',
11908             'Locale::Codes::LangExt'=> '3.36',
11909             'Locale::Codes::LangExt_Codes'=> '3.36',
11910             'Locale::Codes::LangExt_Retired'=> '3.36',
11911             'Locale::Codes::LangFam'=> '3.36',
11912             'Locale::Codes::LangFam_Codes'=> '3.36',
11913             'Locale::Codes::LangFam_Retired'=> '3.36',
11914             'Locale::Codes::LangVar'=> '3.36',
11915             'Locale::Codes::LangVar_Codes'=> '3.36',
11916             'Locale::Codes::LangVar_Retired'=> '3.36',
11917             'Locale::Codes::Language'=> '3.36',
11918             'Locale::Codes::Language_Codes'=> '3.36',
11919             'Locale::Codes::Language_Retired'=> '3.36',
11920             'Locale::Codes::Script' => '3.36',
11921             'Locale::Codes::Script_Codes'=> '3.36',
11922             'Locale::Codes::Script_Retired'=> '3.36',
11923             'Locale::Country' => '3.36',
11924             'Locale::Currency' => '3.36',
11925             'Locale::Language' => '3.36',
11926             'Locale::Script' => '3.36',
11927             'Math::BigFloat::Trace' => '0.40',
11928             'Math::BigInt::Trace' => '0.40',
11929             'Module::CoreList' => '5.20150920',
11930             'Module::CoreList::TieHashDelta'=> '5.20150920',
11931             'Module::CoreList::Utils'=> '5.20150920',
11932             'OS2::DLL' => '1.06',
11933             'OS2::ExtAttr' => '0.04',
11934             'OS2::Process' => '1.11',
11935             'OS2::REXX' => '1.05',
11936             'POSIX' => '1.57',
11937             'Pod::Perldoc' => '3.25_01',
11938             'Socket' => '2.020_01',
11939             'Test' => '1.27',
11940             'Thread::Queue' => '3.06',
11941             'Time::HiRes' => '1.9727_02',
11942             'Unicode::UCD' => '0.63',
11943             'Win32' => '0.52',
11944             'XS::APItest' => '0.75',
11945             'bigint' => '0.40',
11946             'bignum' => '0.40',
11947             'bigrat' => '0.40',
11948             'encoding' => '2.17',
11949             'experimental' => '0.014',
11950             'if' => '0.0605',
11951             'locale' => '1.07',
11952             'mro' => '1.18',
11953             'threads' => '2.03',
11954             },
11955             removed => {
11956             }
11957             },
11958             5.023004 => {
11959             delta_from => 5.023003,
11960             changed => {
11961             'B' => '1.60',
11962             'B::Op_private' => '5.023004',
11963             'Compress::Raw::Bzip2' => '2.069',
11964             'Compress::Raw::Zlib' => '2.069',
11965             'Compress::Zlib' => '2.069',
11966             'Config' => '5.023004',
11967             'Devel::PPPort' => '3.32',
11968             'DynaLoader' => '1.35',
11969             'Encode' => '2.78',
11970             'ExtUtils::CBuilder' => '0.280224',
11971             'ExtUtils::CBuilder::Base'=> '0.280224',
11972             'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
11973             'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
11974             'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
11975             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
11976             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
11977             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
11978             'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
11979             'ExtUtils::CBuilder::Platform::android'=> '0.280224',
11980             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
11981             'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
11982             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
11983             'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
11984             'File::Path' => '2.12',
11985             'IO' => '1.36',
11986             'IO::Compress::Adapter::Bzip2'=> '2.069',
11987             'IO::Compress::Adapter::Deflate'=> '2.069',
11988             'IO::Compress::Adapter::Identity'=> '2.069',
11989             'IO::Compress::Base' => '2.069',
11990             'IO::Compress::Base::Common'=> '2.069',
11991             'IO::Compress::Bzip2' => '2.069',
11992             'IO::Compress::Deflate' => '2.069',
11993             'IO::Compress::Gzip' => '2.069',
11994             'IO::Compress::Gzip::Constants'=> '2.069',
11995             'IO::Compress::RawDeflate'=> '2.069',
11996             'IO::Compress::Zip' => '2.069',
11997             'IO::Compress::Zip::Constants'=> '2.069',
11998             'IO::Compress::Zlib::Constants'=> '2.069',
11999             'IO::Compress::Zlib::Extra'=> '2.069',
12000             'IO::Poll' => '0.10',
12001             'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
12002             'IO::Uncompress::Adapter::Identity'=> '2.069',
12003             'IO::Uncompress::Adapter::Inflate'=> '2.069',
12004             'IO::Uncompress::AnyInflate'=> '2.069',
12005             'IO::Uncompress::AnyUncompress'=> '2.069',
12006             'IO::Uncompress::Base' => '2.069',
12007             'IO::Uncompress::Bunzip2'=> '2.069',
12008             'IO::Uncompress::Gunzip'=> '2.069',
12009             'IO::Uncompress::Inflate'=> '2.069',
12010             'IO::Uncompress::RawInflate'=> '2.069',
12011             'IO::Uncompress::Unzip' => '2.069',
12012             'Math::BigFloat' => '1.999704',
12013             'Math::BigFloat::Trace' => '0.41',
12014             'Math::BigInt' => '1.999704',
12015             'Math::BigInt::Calc' => '1.999704',
12016             'Math::BigInt::CalcEmu' => '1.999704',
12017             'Math::BigInt::FastCalc'=> '0.34',
12018             'Math::BigInt::Trace' => '0.41',
12019             'Module::CoreList' => '5.20151020',
12020             'Module::CoreList::TieHashDelta'=> '5.20151020',
12021             'Module::CoreList::Utils'=> '5.20151020',
12022             'Module::Metadata' => '1.000029',
12023             'POSIX' => '1.58',
12024             'Perl::OSType' => '1.009',
12025             'PerlIO::encoding' => '0.22',
12026             'Socket' => '2.020_02',
12027             'Unicode::Normalize' => '1.21',
12028             'XS::APItest' => '0.76',
12029             'bigint' => '0.41',
12030             'bignum' => '0.41',
12031             'bigrat' => '0.41',
12032             'experimental' => '0.016',
12033             'if' => '0.0606',
12034             'warnings' => '1.35',
12035             },
12036             removed => {
12037             }
12038             },
12039             5.023005 => {
12040             delta_from => 5.023004,
12041             changed => {
12042             'B' => '1.61',
12043             'B::Op_private' => '5.023005',
12044             'Carp' => '1.38',
12045             'Carp::Heavy' => '1.38',
12046             'Config' => '5.023005',
12047             'Config::Perl::V' => '0.25',
12048             'Cwd' => '3.59',
12049             'Devel::Peek' => '1.23',
12050             'Dumpvalue' => '1.18',
12051             'DynaLoader' => '1.36',
12052             'File::Find' => '1.32',
12053             'File::Spec' => '3.59',
12054             'File::Spec::AmigaOS' => '3.59',
12055             'File::Spec::Cygwin' => '3.59',
12056             'File::Spec::Epoc' => '3.59',
12057             'File::Spec::Functions' => '3.59',
12058             'File::Spec::Mac' => '3.59',
12059             'File::Spec::OS2' => '3.59',
12060             'File::Spec::Unix' => '3.59',
12061             'File::Spec::VMS' => '3.59',
12062             'File::Spec::Win32' => '3.59',
12063             'Getopt::Long' => '2.48',
12064             'Hash::Util::FieldHash' => '1.18',
12065             'IPC::Open3' => '1.20',
12066             'Math::BigFloat' => '1.999710',
12067             'Math::BigInt' => '1.999710',
12068             'Math::BigInt::Calc' => '1.999710',
12069             'Math::BigInt::CalcEmu' => '1.999710',
12070             'Math::BigInt::FastCalc'=> '0.37',
12071             'Module::CoreList' => '5.20151120',
12072             'Module::CoreList::TieHashDelta'=> '5.20151120',
12073             'Module::CoreList::Utils'=> '5.20151120',
12074             'Module::Metadata' => '1.000030',
12075             'POSIX' => '1.59',
12076             'PerlIO::encoding' => '0.23',
12077             'PerlIO::mmap' => '0.015',
12078             'PerlIO::scalar' => '0.24',
12079             'PerlIO::via' => '0.16',
12080             'Pod::Simple' => '3.32',
12081             'Pod::Simple::BlackBox' => '3.32',
12082             'Pod::Simple::Checker' => '3.32',
12083             'Pod::Simple::Debug' => '3.32',
12084             'Pod::Simple::DumpAsText'=> '3.32',
12085             'Pod::Simple::DumpAsXML'=> '3.32',
12086             'Pod::Simple::HTML' => '3.32',
12087             'Pod::Simple::HTMLBatch'=> '3.32',
12088             'Pod::Simple::LinkSection'=> '3.32',
12089             'Pod::Simple::Methody' => '3.32',
12090             'Pod::Simple::Progress' => '3.32',
12091             'Pod::Simple::PullParser'=> '3.32',
12092             'Pod::Simple::PullParserEndToken'=> '3.32',
12093             'Pod::Simple::PullParserStartToken'=> '3.32',
12094             'Pod::Simple::PullParserTextToken'=> '3.32',
12095             'Pod::Simple::PullParserToken'=> '3.32',
12096             'Pod::Simple::RTF' => '3.32',
12097             'Pod::Simple::Search' => '3.32',
12098             'Pod::Simple::SimpleTree'=> '3.32',
12099             'Pod::Simple::Text' => '3.32',
12100             'Pod::Simple::TextContent'=> '3.32',
12101             'Pod::Simple::TiedOutFH'=> '3.32',
12102             'Pod::Simple::Transcode'=> '3.32',
12103             'Pod::Simple::TranscodeDumb'=> '3.32',
12104             'Pod::Simple::TranscodeSmart'=> '3.32',
12105             'Pod::Simple::XHTML' => '3.32',
12106             'Pod::Simple::XMLOutStream'=> '3.32',
12107             'Thread::Queue' => '3.07',
12108             'Tie::Scalar' => '1.04',
12109             'Time::HiRes' => '1.9728',
12110             'Time::Piece' => '1.31',
12111             'Time::Seconds' => '1.31',
12112             'Unicode::Normalize' => '1.23',
12113             'XSLoader' => '0.21',
12114             'arybase' => '0.11',
12115             'base' => '2.22_01',
12116             'fields' => '2.22_01',
12117             'threads' => '2.04',
12118             'threads::shared' => '1.49',
12119             },
12120             removed => {
12121             'ExtUtils::MakeMaker::version::vpp'=> 1,
12122             'version::vpp' => 1,
12123             }
12124             },
12125             5.022001 => {
12126             delta_from => 5.022,
12127             changed => {
12128             'B::Op_private' => '5.022001',
12129             'Config' => '5.022001',
12130             'Module::CoreList' => '5.20151213',
12131             'Module::CoreList::TieHashDelta'=> '5.20151213',
12132             'Module::CoreList::Utils'=> '5.20151213',
12133             'POSIX' => '1.53_01',
12134             'PerlIO::scalar' => '0.23',
12135             'Storable' => '2.53_01',
12136             'Win32' => '0.52',
12137             'warnings' => '1.34',
12138             },
12139             removed => {
12140             }
12141             },
12142             5.023006 => {
12143             delta_from => 5.023005,
12144             changed => {
12145             'B::Deparse' => '1.36',
12146             'B::Op_private' => '5.023006',
12147             'Benchmark' => '1.21',
12148             'CPAN::Meta::Requirements'=> '2.140',
12149             'CPAN::Meta::YAML' => '0.018',
12150             'Config' => '5.023006',
12151             'Cwd' => '3.60',
12152             'Data::Dumper' => '2.159',
12153             'DynaLoader' => '1.37',
12154             'File::Spec' => '3.60',
12155             'File::Spec::AmigaOS' => '3.60',
12156             'File::Spec::Cygwin' => '3.60',
12157             'File::Spec::Epoc' => '3.60',
12158             'File::Spec::Functions' => '3.60',
12159             'File::Spec::Mac' => '3.60',
12160             'File::Spec::OS2' => '3.60',
12161             'File::Spec::Unix' => '3.60',
12162             'File::Spec::VMS' => '3.60',
12163             'File::Spec::Win32' => '3.60',
12164             'Hash::Util::FieldHash' => '1.19',
12165             'Locale::Codes' => '3.37',
12166             'Locale::Codes::Constants'=> '3.37',
12167             'Locale::Codes::Country'=> '3.37',
12168             'Locale::Codes::Country_Codes'=> '3.37',
12169             'Locale::Codes::Country_Retired'=> '3.37',
12170             'Locale::Codes::Currency'=> '3.37',
12171             'Locale::Codes::Currency_Codes'=> '3.37',
12172             'Locale::Codes::Currency_Retired'=> '3.37',
12173             'Locale::Codes::LangExt'=> '3.37',
12174             'Locale::Codes::LangExt_Codes'=> '3.37',
12175             'Locale::Codes::LangExt_Retired'=> '3.37',
12176             'Locale::Codes::LangFam'=> '3.37',
12177             'Locale::Codes::LangFam_Codes'=> '3.37',
12178             'Locale::Codes::LangFam_Retired'=> '3.37',
12179             'Locale::Codes::LangVar'=> '3.37',
12180             'Locale::Codes::LangVar_Codes'=> '3.37',
12181             'Locale::Codes::LangVar_Retired'=> '3.37',
12182             'Locale::Codes::Language'=> '3.37',
12183             'Locale::Codes::Language_Codes'=> '3.37',
12184             'Locale::Codes::Language_Retired'=> '3.37',
12185             'Locale::Codes::Script' => '3.37',
12186             'Locale::Codes::Script_Codes'=> '3.37',
12187             'Locale::Codes::Script_Retired'=> '3.37',
12188             'Locale::Country' => '3.37',
12189             'Locale::Currency' => '3.37',
12190             'Locale::Language' => '3.37',
12191             'Locale::Script' => '3.37',
12192             'Math::BigInt::FastCalc'=> '0.38',
12193             'Module::CoreList' => '5.20151220',
12194             'Module::CoreList::TieHashDelta'=> '5.20151220',
12195             'Module::CoreList::Utils'=> '5.20151220',
12196             'Module::Metadata' => '1.000031',
12197             'Opcode' => '1.34',
12198             'PerlIO::mmap' => '0.016',
12199             'Pod::Perldoc' => '3.25_02',
12200             'SDBM_File' => '1.14',
12201             'Term::ANSIColor' => '4.04',
12202             'Test' => '1.28',
12203             'Unicode::Normalize' => '1.24',
12204             'XS::APItest' => '0.77',
12205             'base' => '2.23',
12206             'encoding::warnings' => '0.12',
12207             'fields' => '2.23',
12208             'locale' => '1.08',
12209             'strict' => '1.10',
12210             'threads' => '2.05',
12211             'threads::shared' => '1.50',
12212             'utf8' => '1.18',
12213             },
12214             removed => {
12215             }
12216             },
12217             5.023007 => {
12218             delta_from => 5.023006,
12219             changed => {
12220             'App::Prove' => '3.36',
12221             'App::Prove::State' => '3.36',
12222             'App::Prove::State::Result'=> '3.36',
12223             'App::Prove::State::Result::Test'=> '3.36',
12224             'B' => '1.62',
12225             'B::Deparse' => '1.37',
12226             'B::Op_private' => '5.023007',
12227             'Benchmark' => '1.22',
12228             'Config' => '5.023007',
12229             'Cwd' => '3.62',
12230             'Data::Dumper' => '2.160',
12231             'ExtUtils::ParseXS' => '3.31',
12232             'ExtUtils::ParseXS::Constants'=> '3.31',
12233             'ExtUtils::ParseXS::CountLines'=> '3.31',
12234             'ExtUtils::ParseXS::Eval'=> '3.31',
12235             'ExtUtils::ParseXS::Utilities'=> '3.31',
12236             'ExtUtils::Typemaps' => '3.31',
12237             'ExtUtils::Typemaps::Cmd'=> '3.31',
12238             'ExtUtils::Typemaps::InputMap'=> '3.31',
12239             'ExtUtils::Typemaps::OutputMap'=> '3.31',
12240             'ExtUtils::Typemaps::Type'=> '3.31',
12241             'File::Find' => '1.33',
12242             'File::Spec' => '3.62',
12243             'File::Spec::AmigaOS' => '3.62',
12244             'File::Spec::Cygwin' => '3.62',
12245             'File::Spec::Epoc' => '3.62',
12246             'File::Spec::Functions' => '3.62',
12247             'File::Spec::Mac' => '3.62',
12248             'File::Spec::OS2' => '3.62',
12249             'File::Spec::Unix' => '3.62',
12250             'File::Spec::VMS' => '3.62',
12251             'File::Spec::Win32' => '3.62',
12252             'Math::BigFloat' => '1.999715',
12253             'Math::BigFloat::Trace' => '0.42',
12254             'Math::BigInt' => '1.999715',
12255             'Math::BigInt::Calc' => '1.999715',
12256             'Math::BigInt::CalcEmu' => '1.999715',
12257             'Math::BigInt::FastCalc'=> '0.40',
12258             'Math::BigInt::Trace' => '0.42',
12259             'Math::BigRat' => '0.260802',
12260             'Module::CoreList' => '5.20160120',
12261             'Module::CoreList::TieHashDelta'=> '5.20160120',
12262             'Module::CoreList::Utils'=> '5.20160120',
12263             'Net::Cmd' => '3.08',
12264             'Net::Config' => '3.08',
12265             'Net::Domain' => '3.08',
12266             'Net::FTP' => '3.08',
12267             'Net::FTP::A' => '3.08',
12268             'Net::FTP::E' => '3.08',
12269             'Net::FTP::I' => '3.08',
12270             'Net::FTP::L' => '3.08',
12271             'Net::FTP::dataconn' => '3.08',
12272             'Net::NNTP' => '3.08',
12273             'Net::Netrc' => '3.08',
12274             'Net::POP3' => '3.08',
12275             'Net::SMTP' => '3.08',
12276             'Net::Time' => '3.08',
12277             'Pod::Man' => '4.04',
12278             'Pod::ParseLink' => '4.04',
12279             'Pod::Text' => '4.04',
12280             'Pod::Text::Color' => '4.04',
12281             'Pod::Text::Overstrike' => '4.04',
12282             'Pod::Text::Termcap' => '4.04',
12283             'Pod::Usage' => '1.68',
12284             'TAP::Base' => '3.36',
12285             'TAP::Formatter::Base' => '3.36',
12286             'TAP::Formatter::Color' => '3.36',
12287             'TAP::Formatter::Console'=> '3.36',
12288             'TAP::Formatter::Console::ParallelSession'=> '3.36',
12289             'TAP::Formatter::Console::Session'=> '3.36',
12290             'TAP::Formatter::File' => '3.36',
12291             'TAP::Formatter::File::Session'=> '3.36',
12292             'TAP::Formatter::Session'=> '3.36',
12293             'TAP::Harness' => '3.36',
12294             'TAP::Harness::Env' => '3.36',
12295             'TAP::Object' => '3.36',
12296             'TAP::Parser' => '3.36',
12297             'TAP::Parser::Aggregator'=> '3.36',
12298             'TAP::Parser::Grammar' => '3.36',
12299             'TAP::Parser::Iterator' => '3.36',
12300             'TAP::Parser::Iterator::Array'=> '3.36',
12301             'TAP::Parser::Iterator::Process'=> '3.36',
12302             'TAP::Parser::Iterator::Stream'=> '3.36',
12303             'TAP::Parser::IteratorFactory'=> '3.36',
12304             'TAP::Parser::Multiplexer'=> '3.36',
12305             'TAP::Parser::Result' => '3.36',
12306             'TAP::Parser::Result::Bailout'=> '3.36',
12307             'TAP::Parser::Result::Comment'=> '3.36',
12308             'TAP::Parser::Result::Plan'=> '3.36',
12309             'TAP::Parser::Result::Pragma'=> '3.36',
12310             'TAP::Parser::Result::Test'=> '3.36',
12311             'TAP::Parser::Result::Unknown'=> '3.36',
12312             'TAP::Parser::Result::Version'=> '3.36',
12313             'TAP::Parser::Result::YAML'=> '3.36',
12314             'TAP::Parser::ResultFactory'=> '3.36',
12315             'TAP::Parser::Scheduler'=> '3.36',
12316             'TAP::Parser::Scheduler::Job'=> '3.36',
12317             'TAP::Parser::Scheduler::Spinner'=> '3.36',
12318             'TAP::Parser::Source' => '3.36',
12319             'TAP::Parser::SourceHandler'=> '3.36',
12320             'TAP::Parser::SourceHandler::Executable'=> '3.36',
12321             'TAP::Parser::SourceHandler::File'=> '3.36',
12322             'TAP::Parser::SourceHandler::Handle'=> '3.36',
12323             'TAP::Parser::SourceHandler::Perl'=> '3.36',
12324             'TAP::Parser::SourceHandler::RawTAP'=> '3.36',
12325             'TAP::Parser::YAMLish::Reader'=> '3.36',
12326             'TAP::Parser::YAMLish::Writer'=> '3.36',
12327             'Test::Harness' => '3.36',
12328             'Unicode::Normalize' => '1.25',
12329             'Unicode::UCD' => '0.64',
12330             'XS::APItest' => '0.78',
12331             'bigint' => '0.42',
12332             'bignum' => '0.42',
12333             'bigrat' => '0.42',
12334             'utf8' => '1.19',
12335             },
12336             removed => {
12337             }
12338             },
12339             5.023008 => {
12340             delta_from => 5.023007,
12341             changed => {
12342             'B::Op_private' => '5.023008',
12343             'Config' => '5.023008',
12344             'Cwd' => '3.63',
12345             'DynaLoader' => '1.38',
12346             'Encode' => '2.80',
12347             'Encode::Alias' => '2.20',
12348             'Encode::MIME::Header' => '2.19',
12349             'Encode::Unicode' => '2.15',
12350             'ExtUtils::CBuilder' => '0.280225',
12351             'ExtUtils::CBuilder::Base'=> '0.280225',
12352             'ExtUtils::CBuilder::Platform::Unix'=> '0.280225',
12353             'ExtUtils::CBuilder::Platform::VMS'=> '0.280225',
12354             'ExtUtils::CBuilder::Platform::Windows'=> '0.280225',
12355             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225',
12356             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225',
12357             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225',
12358             'ExtUtils::CBuilder::Platform::aix'=> '0.280225',
12359             'ExtUtils::CBuilder::Platform::android'=> '0.280225',
12360             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225',
12361             'ExtUtils::CBuilder::Platform::darwin'=> '0.280225',
12362             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225',
12363             'ExtUtils::CBuilder::Platform::os2'=> '0.280225',
12364             'ExtUtils::Command::MM' => '7.10_01',
12365             'ExtUtils::Liblist' => '7.10_01',
12366             'ExtUtils::Liblist::Kid'=> '7.10_01',
12367             'ExtUtils::MM' => '7.10_01',
12368             'ExtUtils::MM_AIX' => '7.10_01',
12369             'ExtUtils::MM_Any' => '7.10_01',
12370             'ExtUtils::MM_BeOS' => '7.10_01',
12371             'ExtUtils::MM_Cygwin' => '7.10_01',
12372             'ExtUtils::MM_DOS' => '7.10_01',
12373             'ExtUtils::MM_Darwin' => '7.10_01',
12374             'ExtUtils::MM_MacOS' => '7.10_01',
12375             'ExtUtils::MM_NW5' => '7.10_01',
12376             'ExtUtils::MM_OS2' => '7.10_01',
12377             'ExtUtils::MM_QNX' => '7.10_01',
12378             'ExtUtils::MM_UWIN' => '7.10_01',
12379             'ExtUtils::MM_Unix' => '7.10_01',
12380             'ExtUtils::MM_VMS' => '7.10_01',
12381             'ExtUtils::MM_VOS' => '7.10_01',
12382             'ExtUtils::MM_Win32' => '7.10_01',
12383             'ExtUtils::MM_Win95' => '7.10_01',
12384             'ExtUtils::MY' => '7.10_01',
12385             'ExtUtils::MakeMaker' => '7.10_01',
12386             'ExtUtils::MakeMaker::Config'=> '7.10_01',
12387             'ExtUtils::MakeMaker::version'=> '7.10_01',
12388             'ExtUtils::MakeMaker::version::regex'=> '7.10_01',
12389             'ExtUtils::Mkbootstrap' => '7.10_01',
12390             'ExtUtils::Mksymlists' => '7.10_01',
12391             'ExtUtils::testlib' => '7.10_01',
12392             'File::Spec' => '3.63',
12393             'File::Spec::AmigaOS' => '3.63',
12394             'File::Spec::Cygwin' => '3.63',
12395             'File::Spec::Epoc' => '3.63',
12396             'File::Spec::Functions' => '3.63',
12397             'File::Spec::Mac' => '3.63',
12398             'File::Spec::OS2' => '3.63',
12399             'File::Spec::Unix' => '3.63',
12400             'File::Spec::VMS' => '3.63',
12401             'File::Spec::Win32' => '3.63',
12402             'IPC::Msg' => '2.05',
12403             'IPC::Semaphore' => '2.05',
12404             'IPC::SharedMem' => '2.05',
12405             'IPC::SysV' => '2.05',
12406             'Module::CoreList' => '5.20160121',
12407             'Module::CoreList::TieHashDelta'=> '5.20160121',
12408             'Module::CoreList::Utils'=> '5.20160121',
12409             'ODBM_File' => '1.13',
12410             'POSIX' => '1.63',
12411             'PerlIO::encoding' => '0.24',
12412             'Pod::Man' => '4.06',
12413             'Pod::ParseLink' => '4.06',
12414             'Pod::Text' => '4.06',
12415             'Pod::Text::Color' => '4.06',
12416             'Pod::Text::Overstrike' => '4.06',
12417             'Pod::Text::Termcap' => '4.06',
12418             'Storable' => '2.55',
12419             'Time::HiRes' => '1.9730',
12420             'XS::APItest' => '0.79',
12421             },
12422             removed => {
12423             }
12424             },
12425             5.023009 => {
12426             delta_from => 5.023008,
12427             changed => {
12428             'Amiga::ARexx' => '0.04',
12429             'Amiga::Exec' => '0.02',
12430             'B::Op_private' => '5.023009',
12431             'Carp' => '1.40',
12432             'Carp::Heavy' => '1.40',
12433             'Config' => '5.023009',
12434             'Errno' => '1.25',
12435             'ExtUtils::Embed' => '1.33',
12436             'File::Find' => '1.34',
12437             'File::Glob' => '1.26',
12438             'File::Spec::AmigaOS' => ';.64',
12439             'IPC::Msg' => '2.06_01',
12440             'IPC::Semaphore' => '2.06_01',
12441             'IPC::SharedMem' => '2.06_01',
12442             'IPC::SysV' => '2.06_01',
12443             'List::Util' => '1.42_02',
12444             'List::Util::XS' => '1.42_02',
12445             'Module::CoreList' => '5.20160320',
12446             'Module::CoreList::TieHashDelta'=> '5.20160320',
12447             'Module::CoreList::Utils'=> '5.20160320',
12448             'POSIX' => '1.64',
12449             'Pod::Functions' => '1.10',
12450             'Pod::Functions::Functions'=> '1.10',
12451             'Scalar::Util' => '1.42_02',
12452             'SelfLoader' => '1.23',
12453             'Socket' => '2.020_03',
12454             'Storable' => '2.56',
12455             'Sub::Util' => '1.42_02',
12456             'Thread::Queue' => '3.08',
12457             'Tie::File' => '1.02',
12458             'Time::HiRes' => '1.9732',
12459             'Win32API::File' => '0.1203',
12460             'XS::APItest' => '0.80',
12461             'autouse' => '1.11',
12462             'bytes' => '1.05',
12463             'strict' => '1.11',
12464             'threads' => '2.06',
12465             'version' => '0.9916',
12466             'version::regex' => '0.9916',
12467             'warnings' => '1.36',
12468             },
12469             removed => {
12470             'Win32API::File::ExtUtils::Myconst2perl'=> 1,
12471             }
12472             },
12473             5.022002 => {
12474             delta_from => 5.022001,
12475             changed => {
12476             'B::Op_private' => '5.022002',
12477             'Config' => '5.022002',
12478             'Cwd' => '3.56_01',
12479             'File::Spec' => '3.56_01',
12480             'File::Spec::Cygwin' => '3.56_01',
12481             'File::Spec::Epoc' => '3.56_01',
12482             'File::Spec::Functions' => '3.56_01',
12483             'File::Spec::Mac' => '3.56_01',
12484             'File::Spec::OS2' => '3.56_01',
12485             'File::Spec::Unix' => '3.56_01',
12486             'File::Spec::VMS' => '3.56_01',
12487             'File::Spec::Win32' => '3.56_01',
12488             'Module::CoreList' => '5.20160429',
12489             'Module::CoreList::TieHashDelta'=> '5.20160429',
12490             'Module::CoreList::Utils'=> '5.20160429',
12491             'XS::APItest' => '0.72_01',
12492             },
12493             removed => {
12494             }
12495             },
12496             5.024000 => {
12497             delta_from => 5.023009,
12498             changed => {
12499             'B::Op_private' => '5.024000',
12500             'Config' => '5.024',
12501             'File::Copy' => '2.31',
12502             'File::Path' => '2.12_01',
12503             'File::Spec::AmigaOS' => '3.64',
12504             'IO::Handle' => '1.36',
12505             'Module::CoreList' => '5.20160506',
12506             'Module::CoreList::TieHashDelta'=> '5.20160506',
12507             'Module::CoreList::Utils'=> '5.20160506',
12508             'ODBM_File' => '1.14',
12509             'POSIX' => '1.65',
12510             'Pod::Man' => '4.07',
12511             'Pod::ParseLink' => '4.07',
12512             'Pod::Text' => '4.07',
12513             'Pod::Text::Color' => '4.07',
12514             'Pod::Text::Overstrike' => '4.07',
12515             'Pod::Text::Termcap' => '4.07',
12516             'Thread::Queue' => '3.09',
12517             'Time::HiRes' => '1.9733',
12518             'threads' => '2.07',
12519             'threads::shared' => '1.51',
12520             'locale' => '1.09',
12521             },
12522             removed => {
12523             }
12524             },
12525             5.025000 => {
12526             delta_from => 5.024,
12527             changed => {
12528             'B::Op_private' => '5.025000',
12529             'Config' => '5.025',
12530             'Module::CoreList' => '5.20160507',
12531             'Module::CoreList::TieHashDelta'=> '5.20160507',
12532             'Module::CoreList::Utils'=> '5.20160507',
12533             'feature' => '1.43',
12534             },
12535             removed => {
12536             }
12537             },
12538             5.025001 => {
12539             delta_from => 5.025,
12540             changed => {
12541             'Archive::Tar' => '2.08',
12542             'Archive::Tar::Constant'=> '2.08',
12543             'Archive::Tar::File' => '2.08',
12544             'B::Op_private' => '5.025001',
12545             'Carp' => '1.41',
12546             'Carp::Heavy' => '1.41',
12547             'Config' => '5.025001',
12548             'Config::Perl::V' => '0.26',
12549             'DB_File' => '1.838',
12550             'Digest::MD5' => '2.55',
12551             'IPC::Cmd' => '0.94',
12552             'IPC::Msg' => '2.07',
12553             'IPC::Semaphore' => '2.07',
12554             'IPC::SharedMem' => '2.07',
12555             'IPC::SysV' => '2.07',
12556             'List::Util' => '1.45_01',
12557             'List::Util::XS' => '1.45_01',
12558             'Locale::Codes' => '3.38',
12559             'Locale::Codes::Constants'=> '3.38',
12560             'Locale::Codes::Country'=> '3.38',
12561             'Locale::Codes::Country_Codes'=> '3.38',
12562             'Locale::Codes::Country_Retired'=> '3.38',
12563             'Locale::Codes::Currency'=> '3.38',
12564             'Locale::Codes::Currency_Codes'=> '3.38',
12565             'Locale::Codes::Currency_Retired'=> '3.38',
12566             'Locale::Codes::LangExt'=> '3.38',
12567             'Locale::Codes::LangExt_Codes'=> '3.38',
12568             'Locale::Codes::LangExt_Retired'=> '3.38',
12569             'Locale::Codes::LangFam'=> '3.38',
12570             'Locale::Codes::LangFam_Codes'=> '3.38',
12571             'Locale::Codes::LangFam_Retired'=> '3.38',
12572             'Locale::Codes::LangVar'=> '3.38',
12573             'Locale::Codes::LangVar_Codes'=> '3.38',
12574             'Locale::Codes::LangVar_Retired'=> '3.38',
12575             'Locale::Codes::Language'=> '3.38',
12576             'Locale::Codes::Language_Codes'=> '3.38',
12577             'Locale::Codes::Language_Retired'=> '3.38',
12578             'Locale::Codes::Script' => '3.38',
12579             'Locale::Codes::Script_Codes'=> '3.38',
12580             'Locale::Codes::Script_Retired'=> '3.38',
12581             'Locale::Country' => '3.38',
12582             'Locale::Currency' => '3.38',
12583             'Locale::Language' => '3.38',
12584             'Locale::Maketext' => '1.27',
12585             'Locale::Script' => '3.38',
12586             'Module::CoreList' => '5.20160520',
12587             'Module::CoreList::TieHashDelta'=> '5.20160520',
12588             'Module::CoreList::Utils'=> '5.20160520',
12589             'Module::Metadata' => '1.000032',
12590             'POSIX' => '1.69',
12591             'Scalar::Util' => '1.45_01',
12592             'Sub::Util' => '1.45_01',
12593             'Sys::Syslog' => '0.34',
12594             'Term::ANSIColor' => '4.05',
12595             'Test2' => '1.302015',
12596             'Test2::API' => '1.302015',
12597             'Test2::API::Breakage' => '1.302015',
12598             'Test2::API::Context' => '1.302015',
12599             'Test2::API::Instance' => '1.302015',
12600             'Test2::API::Stack' => '1.302015',
12601             'Test2::Event' => '1.302015',
12602             'Test2::Event::Bail' => '1.302015',
12603             'Test2::Event::Diag' => '1.302015',
12604             'Test2::Event::Exception'=> '1.302015',
12605             'Test2::Event::Note' => '1.302015',
12606             'Test2::Event::Ok' => '1.302015',
12607             'Test2::Event::Plan' => '1.302015',
12608             'Test2::Event::Skip' => '1.302015',
12609             'Test2::Event::Subtest' => '1.302015',
12610             'Test2::Event::Waiting' => '1.302015',
12611             'Test2::Formatter' => '1.302015',
12612             'Test2::Formatter::TAP' => '1.302015',
12613             'Test2::Hub' => '1.302015',
12614             'Test2::Hub::Interceptor'=> '1.302015',
12615             'Test2::Hub::Interceptor::Terminator'=> '1.302015',
12616             'Test2::Hub::Subtest' => '1.302015',
12617             'Test2::IPC' => '1.302015',
12618             'Test2::IPC::Driver' => '1.302015',
12619             'Test2::IPC::Driver::Files'=> '1.302015',
12620             'Test2::Util' => '1.302015',
12621             'Test2::Util::ExternalMeta'=> '1.302015',
12622             'Test2::Util::HashBase' => '1.302015',
12623             'Test2::Util::Trace' => '1.302015',
12624             'Test::Builder' => '1.302015',
12625             'Test::Builder::Formatter'=> '1.302015',
12626             'Test::Builder::Module' => '1.302015',
12627             'Test::Builder::Tester' => '1.302015',
12628             'Test::Builder::Tester::Color'=> '1.302015',
12629             'Test::Builder::TodoDiag'=> '1.302015',
12630             'Test::More' => '1.302015',
12631             'Test::Simple' => '1.302015',
12632             'Test::Tester' => '1.302015',
12633             'Test::Tester::Capture' => '1.302015',
12634             'Test::Tester::CaptureRunner'=> '1.302015',
12635             'Test::Tester::Delegate'=> '1.302015',
12636             'Test::use::ok' => '1.302015',
12637             'XS::APItest' => '0.81',
12638             '_charnames' => '1.44',
12639             'charnames' => '1.44',
12640             'ok' => '1.302015',
12641             'perlfaq' => '5.021011',
12642             're' => '0.33',
12643             'threads' => '2.08',
12644             'threads::shared' => '1.52',
12645             },
12646             removed => {
12647             }
12648             },
12649             5.025002 => {
12650             delta_from => 5.025001,
12651             changed => {
12652             'App::Cpan' => '1.64',
12653             'B::Op_private' => '5.025002',
12654             'CPAN' => '2.14',
12655             'CPAN::Distribution' => '2.12',
12656             'CPAN::FTP' => '5.5007',
12657             'CPAN::FirstTime' => '5.5309',
12658             'CPAN::HandleConfig' => '5.5007',
12659             'CPAN::Index' => '2.12',
12660             'CPAN::Mirrors' => '2.12',
12661             'CPAN::Plugin' => '0.96',
12662             'CPAN::Shell' => '5.5006',
12663             'Config' => '5.025002',
12664             'Cwd' => '3.64',
12665             'Devel::Peek' => '1.24',
12666             'DynaLoader' => '1.39',
12667             'ExtUtils::Command' => '7.18',
12668             'ExtUtils::Command::MM' => '7.18',
12669             'ExtUtils::Liblist' => '7.18',
12670             'ExtUtils::Liblist::Kid'=> '7.18',
12671             'ExtUtils::MM' => '7.18',
12672             'ExtUtils::MM_AIX' => '7.18',
12673             'ExtUtils::MM_Any' => '7.18',
12674             'ExtUtils::MM_BeOS' => '7.18',
12675             'ExtUtils::MM_Cygwin' => '7.18',
12676             'ExtUtils::MM_DOS' => '7.18',
12677             'ExtUtils::MM_Darwin' => '7.18',
12678             'ExtUtils::MM_MacOS' => '7.18',
12679             'ExtUtils::MM_NW5' => '7.18',
12680             'ExtUtils::MM_OS2' => '7.18',
12681             'ExtUtils::MM_QNX' => '7.18',
12682             'ExtUtils::MM_UWIN' => '7.18',
12683             'ExtUtils::MM_Unix' => '7.18',
12684             'ExtUtils::MM_VMS' => '7.18',
12685             'ExtUtils::MM_VOS' => '7.18',
12686             'ExtUtils::MM_Win32' => '7.18',
12687             'ExtUtils::MM_Win95' => '7.18',
12688             'ExtUtils::MY' => '7.18',
12689             'ExtUtils::MakeMaker' => '7.18',
12690             'ExtUtils::MakeMaker::Config'=> '7.18',
12691             'ExtUtils::MakeMaker::Locale'=> '7.18',
12692             'ExtUtils::MakeMaker::version'=> '7.18',
12693             'ExtUtils::MakeMaker::version::regex'=> '7.18',
12694             'ExtUtils::Miniperl' => '1.06',
12695             'ExtUtils::Mkbootstrap' => '7.18',
12696             'ExtUtils::Mksymlists' => '7.18',
12697             'ExtUtils::ParseXS' => '3.32',
12698             'ExtUtils::ParseXS::Constants'=> '3.32',
12699             'ExtUtils::ParseXS::CountLines'=> '3.32',
12700             'ExtUtils::ParseXS::Eval'=> '3.32',
12701             'ExtUtils::ParseXS::Utilities'=> '3.32',
12702             'ExtUtils::Typemaps' => '3.32',
12703             'ExtUtils::Typemaps::Cmd'=> '3.32',
12704             'ExtUtils::Typemaps::InputMap'=> '3.32',
12705             'ExtUtils::Typemaps::OutputMap'=> '3.32',
12706             'ExtUtils::Typemaps::Type'=> '3.32',
12707             'ExtUtils::testlib' => '7.18',
12708             'File::Copy' => '2.32',
12709             'File::Glob' => '1.27',
12710             'File::Spec' => '3.64',
12711             'File::Spec::Cygwin' => '3.64',
12712             'File::Spec::Epoc' => '3.64',
12713             'File::Spec::Functions' => '3.64',
12714             'File::Spec::Mac' => '3.64',
12715             'File::Spec::OS2' => '3.64',
12716             'File::Spec::Unix' => '3.64',
12717             'File::Spec::VMS' => '3.64',
12718             'File::Spec::Win32' => '3.64',
12719             'FileHandle' => '2.03',
12720             'Getopt::Long' => '2.49',
12721             'HTTP::Tiny' => '0.058',
12722             'JSON::PP' => '2.27400',
12723             'Locale::Codes' => '3.39',
12724             'Locale::Codes::Constants'=> '3.39',
12725             'Locale::Codes::Country'=> '3.39',
12726             'Locale::Codes::Country_Codes'=> '3.39',
12727             'Locale::Codes::Country_Retired'=> '3.39',
12728             'Locale::Codes::Currency'=> '3.39',
12729             'Locale::Codes::Currency_Codes'=> '3.39',
12730             'Locale::Codes::Currency_Retired'=> '3.39',
12731             'Locale::Codes::LangExt'=> '3.39',
12732             'Locale::Codes::LangExt_Codes'=> '3.39',
12733             'Locale::Codes::LangExt_Retired'=> '3.39',
12734             'Locale::Codes::LangFam'=> '3.39',
12735             'Locale::Codes::LangFam_Codes'=> '3.39',
12736             'Locale::Codes::LangFam_Retired'=> '3.39',
12737             'Locale::Codes::LangVar'=> '3.39',
12738             'Locale::Codes::LangVar_Codes'=> '3.39',
12739             'Locale::Codes::LangVar_Retired'=> '3.39',
12740             'Locale::Codes::Language'=> '3.39',
12741             'Locale::Codes::Language_Codes'=> '3.39',
12742             'Locale::Codes::Language_Retired'=> '3.39',
12743             'Locale::Codes::Script' => '3.39',
12744             'Locale::Codes::Script_Codes'=> '3.39',
12745             'Locale::Codes::Script_Retired'=> '3.39',
12746             'Locale::Country' => '3.39',
12747             'Locale::Currency' => '3.39',
12748             'Locale::Language' => '3.39',
12749             'Locale::Script' => '3.39',
12750             'Module::CoreList' => '5.20160620',
12751             'Module::CoreList::TieHashDelta'=> '5.20160620',
12752             'Module::CoreList::Utils'=> '5.20160620',
12753             'Opcode' => '1.35',
12754             'POSIX' => '1.70',
12755             'Pod::Checker' => '1.73',
12756             'Pod::Functions' => '1.11',
12757             'Pod::Functions::Functions'=> '1.11',
12758             'Pod::Usage' => '1.69',
12759             'Test2' => '1.302026',
12760             'Test2::API' => '1.302026',
12761             'Test2::API::Breakage' => '1.302026',
12762             'Test2::API::Context' => '1.302026',
12763             'Test2::API::Instance' => '1.302026',
12764             'Test2::API::Stack' => '1.302026',
12765             'Test2::Event' => '1.302026',
12766             'Test2::Event::Bail' => '1.302026',
12767             'Test2::Event::Diag' => '1.302026',
12768             'Test2::Event::Exception'=> '1.302026',
12769             'Test2::Event::Generic' => '1.302026',
12770             'Test2::Event::Note' => '1.302026',
12771             'Test2::Event::Ok' => '1.302026',
12772             'Test2::Event::Plan' => '1.302026',
12773             'Test2::Event::Skip' => '1.302026',
12774             'Test2::Event::Subtest' => '1.302026',
12775             'Test2::Event::Waiting' => '1.302026',
12776             'Test2::Formatter' => '1.302026',
12777             'Test2::Formatter::TAP' => '1.302026',
12778             'Test2::Hub' => '1.302026',
12779             'Test2::Hub::Interceptor'=> '1.302026',
12780             'Test2::Hub::Interceptor::Terminator'=> '1.302026',
12781             'Test2::Hub::Subtest' => '1.302026',
12782             'Test2::IPC' => '1.302026',
12783             'Test2::IPC::Driver' => '1.302026',
12784             'Test2::IPC::Driver::Files'=> '1.302026',
12785             'Test2::Util' => '1.302026',
12786             'Test2::Util::ExternalMeta'=> '1.302026',
12787             'Test2::Util::HashBase' => '1.302026',
12788             'Test2::Util::Trace' => '1.302026',
12789             'Test::Builder' => '1.302026',
12790             'Test::Builder::Formatter'=> '1.302026',
12791             'Test::Builder::Module' => '1.302026',
12792             'Test::Builder::Tester' => '1.302026',
12793             'Test::Builder::Tester::Color'=> '1.302026',
12794             'Test::Builder::TodoDiag'=> '1.302026',
12795             'Test::More' => '1.302026',
12796             'Test::Simple' => '1.302026',
12797             'Test::Tester' => '1.302026',
12798             'Test::Tester::Capture' => '1.302026',
12799             'Test::Tester::CaptureRunner'=> '1.302026',
12800             'Test::Tester::Delegate'=> '1.302026',
12801             'Test::use::ok' => '1.302026',
12802             'Thread::Queue' => '3.11',
12803             'Time::HiRes' => '1.9734',
12804             'Unicode::UCD' => '0.65',
12805             'VMS::DCLsym' => '1.07',
12806             'XS::APItest' => '0.82',
12807             'diagnostics' => '1.35',
12808             'feature' => '1.44',
12809             'ok' => '1.302026',
12810             'threads' => '2.09',
12811             },
12812             removed => {
12813             }
12814             },
12815             5.025003 => {
12816             delta_from => 5.025002,
12817             changed => {
12818             'B::Op_private' => '5.025003',
12819             'Config' => '5.025003',
12820             'Data::Dumper' => '2.161',
12821             'Devel::PPPort' => '3.35',
12822             'Encode' => '2.84',
12823             'Encode::MIME::Header' => '2.23',
12824             'Encode::MIME::Header::ISO_2022_JP'=> '1.07',
12825             'ExtUtils::ParseXS' => '3.33',
12826             'ExtUtils::ParseXS::Constants'=> '3.33',
12827             'ExtUtils::ParseXS::CountLines'=> '3.33',
12828             'ExtUtils::ParseXS::Eval'=> '3.33',
12829             'ExtUtils::ParseXS::Utilities'=> '3.33',
12830             'ExtUtils::Typemaps' => '3.33',
12831             'ExtUtils::Typemaps::Cmd'=> '3.33',
12832             'ExtUtils::Typemaps::InputMap'=> '3.33',
12833             'ExtUtils::Typemaps::OutputMap'=> '3.33',
12834             'ExtUtils::Typemaps::Type'=> '3.33',
12835             'Hash::Util' => '0.20',
12836             'Math::BigFloat' => '1.999726',
12837             'Math::BigFloat::Trace' => '0.43',
12838             'Math::BigInt' => '1.999726',
12839             'Math::BigInt::Calc' => '1.999726',
12840             'Math::BigInt::CalcEmu' => '1.999726',
12841             'Math::BigInt::FastCalc'=> '0.42',
12842             'Math::BigInt::Trace' => '0.43',
12843             'Math::BigRat' => '0.260804',
12844             'Module::CoreList' => '5.20160720',
12845             'Module::CoreList::TieHashDelta'=> '5.20160720',
12846             'Module::CoreList::Utils'=> '5.20160720',
12847             'Net::Cmd' => '3.09',
12848             'Net::Config' => '3.09',
12849             'Net::Domain' => '3.09',
12850             'Net::FTP' => '3.09',
12851             'Net::FTP::A' => '3.09',
12852             'Net::FTP::E' => '3.09',
12853             'Net::FTP::I' => '3.09',
12854             'Net::FTP::L' => '3.09',
12855             'Net::FTP::dataconn' => '3.09',
12856             'Net::NNTP' => '3.09',
12857             'Net::Netrc' => '3.09',
12858             'Net::POP3' => '3.09',
12859             'Net::SMTP' => '3.09',
12860             'Net::Time' => '3.09',
12861             'Parse::CPAN::Meta' => '1.4422',
12862             'Perl::OSType' => '1.010',
12863             'Test2' => '1.302045',
12864             'Test2::API' => '1.302045',
12865             'Test2::API::Breakage' => '1.302045',
12866             'Test2::API::Context' => '1.302045',
12867             'Test2::API::Instance' => '1.302045',
12868             'Test2::API::Stack' => '1.302045',
12869             'Test2::Event' => '1.302045',
12870             'Test2::Event::Bail' => '1.302045',
12871             'Test2::Event::Diag' => '1.302045',
12872             'Test2::Event::Exception'=> '1.302045',
12873             'Test2::Event::Generic' => '1.302045',
12874             'Test2::Event::Info' => '1.302045',
12875             'Test2::Event::Note' => '1.302045',
12876             'Test2::Event::Ok' => '1.302045',
12877             'Test2::Event::Plan' => '1.302045',
12878             'Test2::Event::Skip' => '1.302045',
12879             'Test2::Event::Subtest' => '1.302045',
12880             'Test2::Event::Waiting' => '1.302045',
12881             'Test2::Formatter' => '1.302045',
12882             'Test2::Formatter::TAP' => '1.302045',
12883             'Test2::Hub' => '1.302045',
12884             'Test2::Hub::Interceptor'=> '1.302045',
12885             'Test2::Hub::Interceptor::Terminator'=> '1.302045',
12886             'Test2::Hub::Subtest' => '1.302045',
12887             'Test2::IPC' => '1.302045',
12888             'Test2::IPC::Driver' => '1.302045',
12889             'Test2::IPC::Driver::Files'=> '1.302045',
12890             'Test2::Util' => '1.302045',
12891             'Test2::Util::ExternalMeta'=> '1.302045',
12892             'Test2::Util::HashBase' => '1.302045',
12893             'Test2::Util::Trace' => '1.302045',
12894             'Test::Builder' => '1.302045',
12895             'Test::Builder::Formatter'=> '1.302045',
12896             'Test::Builder::Module' => '1.302045',
12897             'Test::Builder::Tester' => '1.302045',
12898             'Test::Builder::Tester::Color'=> '1.302045',
12899             'Test::Builder::TodoDiag'=> '1.302045',
12900             'Test::More' => '1.302045',
12901             'Test::Simple' => '1.302045',
12902             'Test::Tester' => '1.302045',
12903             'Test::Tester::Capture' => '1.302045',
12904             'Test::Tester::CaptureRunner'=> '1.302045',
12905             'Test::Tester::Delegate'=> '1.302045',
12906             'Test::use::ok' => '1.302045',
12907             'Time::HiRes' => '1.9739',
12908             'Unicode' => '9.0.0',
12909             'Unicode::UCD' => '0.66',
12910             'XSLoader' => '0.22',
12911             'bigint' => '0.43',
12912             'bignum' => '0.43',
12913             'bigrat' => '0.43',
12914             'encoding' => '2.17_01',
12915             'encoding::warnings' => '0.13',
12916             'feature' => '1.45',
12917             'ok' => '1.302045',
12918             'version' => '0.9917',
12919             'version::regex' => '0.9917',
12920             'warnings' => '1.37',
12921             },
12922             removed => {
12923             }
12924             },
12925             5.025004 => {
12926             delta_from => 5.025003,
12927             changed => {
12928             'App::Cpan' => '1.64_01',
12929             'App::Prove' => '3.36_01',
12930             'App::Prove::State' => '3.36_01',
12931             'App::Prove::State::Result'=> '3.36_01',
12932             'App::Prove::State::Result::Test'=> '3.36_01',
12933             'Archive::Tar' => '2.10',
12934             'Archive::Tar::Constant'=> '2.10',
12935             'Archive::Tar::File' => '2.10',
12936             'B' => '1.63',
12937             'B::Concise' => '0.998',
12938             'B::Deparse' => '1.38',
12939             'B::Op_private' => '5.025004',
12940             'CPAN' => '2.14_01',
12941             'CPAN::Meta' => '2.150010',
12942             'CPAN::Meta::Converter' => '2.150010',
12943             'CPAN::Meta::Feature' => '2.150010',
12944             'CPAN::Meta::History' => '2.150010',
12945             'CPAN::Meta::Merge' => '2.150010',
12946             'CPAN::Meta::Prereqs' => '2.150010',
12947             'CPAN::Meta::Spec' => '2.150010',
12948             'CPAN::Meta::Validator' => '2.150010',
12949             'Carp' => '1.42',
12950             'Carp::Heavy' => '1.42',
12951             'Compress::Zlib' => '2.069_01',
12952             'Config' => '5.025004',
12953             'Config::Perl::V' => '0.27',
12954             'Cwd' => '3.65',
12955             'Digest' => '1.17_01',
12956             'Digest::SHA' => '5.96',
12957             'Encode' => '2.86',
12958             'Errno' => '1.26',
12959             'ExtUtils::Command' => '7.24',
12960             'ExtUtils::Command::MM' => '7.24',
12961             'ExtUtils::Liblist' => '7.24',
12962             'ExtUtils::Liblist::Kid'=> '7.24',
12963             'ExtUtils::MM' => '7.24',
12964             'ExtUtils::MM_AIX' => '7.24',
12965             'ExtUtils::MM_Any' => '7.24',
12966             'ExtUtils::MM_BeOS' => '7.24',
12967             'ExtUtils::MM_Cygwin' => '7.24',
12968             'ExtUtils::MM_DOS' => '7.24',
12969             'ExtUtils::MM_Darwin' => '7.24',
12970             'ExtUtils::MM_MacOS' => '7.24',
12971             'ExtUtils::MM_NW5' => '7.24',
12972             'ExtUtils::MM_OS2' => '7.24',
12973             'ExtUtils::MM_QNX' => '7.24',
12974             'ExtUtils::MM_UWIN' => '7.24',
12975             'ExtUtils::MM_Unix' => '7.24',
12976             'ExtUtils::MM_VMS' => '7.24',
12977             'ExtUtils::MM_VOS' => '7.24',
12978             'ExtUtils::MM_Win32' => '7.24',
12979             'ExtUtils::MM_Win95' => '7.24',
12980             'ExtUtils::MY' => '7.24',
12981             'ExtUtils::MakeMaker' => '7.24',
12982             'ExtUtils::MakeMaker::Config'=> '7.24',
12983             'ExtUtils::MakeMaker::Locale'=> '7.24',
12984             'ExtUtils::MakeMaker::version'=> '7.24',
12985             'ExtUtils::MakeMaker::version::regex'=> '7.24',
12986             'ExtUtils::Mkbootstrap' => '7.24',
12987             'ExtUtils::Mksymlists' => '7.24',
12988             'ExtUtils::testlib' => '7.24',
12989             'File::Fetch' => '0.52',
12990             'File::Spec' => '3.65',
12991             'File::Spec::AmigaOS' => '3.65',
12992             'File::Spec::Cygwin' => '3.65',
12993             'File::Spec::Epoc' => '3.65',
12994             'File::Spec::Functions' => '3.65',
12995             'File::Spec::Mac' => '3.65',
12996             'File::Spec::OS2' => '3.65',
12997             'File::Spec::Unix' => '3.65',
12998             'File::Spec::VMS' => '3.65',
12999             'File::Spec::Win32' => '3.65',
13000             'HTTP::Tiny' => '0.064',
13001             'Hash::Util' => '0.21',
13002             'I18N::LangTags' => '0.41',
13003             'I18N::LangTags::Detect'=> '1.06',
13004             'IO' => '1.37',
13005             'IO::Compress::Adapter::Bzip2'=> '2.069_01',
13006             'IO::Compress::Adapter::Deflate'=> '2.069_01',
13007             'IO::Compress::Adapter::Identity'=> '2.069_01',
13008             'IO::Compress::Base' => '2.069_01',
13009             'IO::Compress::Base::Common'=> '2.069_01',
13010             'IO::Compress::Bzip2' => '2.069_01',
13011             'IO::Compress::Deflate' => '2.069_01',
13012             'IO::Compress::Gzip' => '2.069_01',
13013             'IO::Compress::Gzip::Constants'=> '2.069_01',
13014             'IO::Compress::RawDeflate'=> '2.069_01',
13015             'IO::Compress::Zip' => '2.069_01',
13016             'IO::Compress::Zip::Constants'=> '2.069_01',
13017             'IO::Compress::Zlib::Constants'=> '2.069_01',
13018             'IO::Compress::Zlib::Extra'=> '2.069_01',
13019             'IO::Socket::IP' => '0.38',
13020             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_01',
13021             'IO::Uncompress::Adapter::Identity'=> '2.069_01',
13022             'IO::Uncompress::Adapter::Inflate'=> '2.069_01',
13023             'IO::Uncompress::AnyInflate'=> '2.069_01',
13024             'IO::Uncompress::AnyUncompress'=> '2.069_01',
13025             'IO::Uncompress::Base' => '2.069_01',
13026             'IO::Uncompress::Bunzip2'=> '2.069_01',
13027             'IO::Uncompress::Gunzip'=> '2.069_01',
13028             'IO::Uncompress::Inflate'=> '2.069_01',
13029             'IO::Uncompress::RawInflate'=> '2.069_01',
13030             'IO::Uncompress::Unzip' => '2.069_01',
13031             'IPC::Cmd' => '0.96',
13032             'JSON::PP' => '2.27400_01',
13033             'Locale::Maketext' => '1.28',
13034             'Locale::Maketext::Simple'=> '0.21_01',
13035             'Math::BigFloat::Trace' => '0.43_01',
13036             'Math::BigInt::Trace' => '0.43_01',
13037             'Memoize' => '1.03_01',
13038             'Module::CoreList' => '5.20160820',
13039             'Module::CoreList::TieHashDelta'=> '5.20160820',
13040             'Module::CoreList::Utils'=> '5.20160820',
13041             'Module::Load::Conditional'=> '0.68',
13042             'Module::Metadata' => '1.000033',
13043             'NEXT' => '0.67',
13044             'Net::Cmd' => '3.10',
13045             'Net::Config' => '3.10',
13046             'Net::Domain' => '3.10',
13047             'Net::FTP' => '3.10',
13048             'Net::FTP::A' => '3.10',
13049             'Net::FTP::E' => '3.10',
13050             'Net::FTP::I' => '3.10',
13051             'Net::FTP::L' => '3.10',
13052             'Net::FTP::dataconn' => '3.10',
13053             'Net::NNTP' => '3.10',
13054             'Net::Netrc' => '3.10',
13055             'Net::POP3' => '3.10',
13056             'Net::Ping' => '2.44',
13057             'Net::SMTP' => '3.10',
13058             'Net::Time' => '3.10',
13059             'Opcode' => '1.37',
13060             'POSIX' => '1.71',
13061             'Parse::CPAN::Meta' => '2.150010',
13062             'Pod::Html' => '1.2201',
13063             'Pod::Perldoc' => '3.27',
13064             'Pod::Perldoc::BaseTo' => '3.27',
13065             'Pod::Perldoc::GetOptsOO'=> '3.27',
13066             'Pod::Perldoc::ToANSI' => '3.27',
13067             'Pod::Perldoc::ToChecker'=> '3.27',
13068             'Pod::Perldoc::ToMan' => '3.27',
13069             'Pod::Perldoc::ToNroff' => '3.27',
13070             'Pod::Perldoc::ToPod' => '3.27',
13071             'Pod::Perldoc::ToRtf' => '3.27',
13072             'Pod::Perldoc::ToTerm' => '3.27',
13073             'Pod::Perldoc::ToText' => '3.27',
13074             'Pod::Perldoc::ToTk' => '3.27',
13075             'Pod::Perldoc::ToXml' => '3.27',
13076             'Storable' => '2.57',
13077             'Sys::Syslog' => '0.34_01',
13078             'TAP::Base' => '3.36_01',
13079             'TAP::Formatter::Base' => '3.36_01',
13080             'TAP::Formatter::Color' => '3.36_01',
13081             'TAP::Formatter::Console'=> '3.36_01',
13082             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13083             'TAP::Formatter::Console::Session'=> '3.36_01',
13084             'TAP::Formatter::File' => '3.36_01',
13085             'TAP::Formatter::File::Session'=> '3.36_01',
13086             'TAP::Formatter::Session'=> '3.36_01',
13087             'TAP::Harness' => '3.36_01',
13088             'TAP::Harness::Env' => '3.36_01',
13089             'TAP::Object' => '3.36_01',
13090             'TAP::Parser' => '3.36_01',
13091             'TAP::Parser::Aggregator'=> '3.36_01',
13092             'TAP::Parser::Grammar' => '3.36_01',
13093             'TAP::Parser::Iterator' => '3.36_01',
13094             'TAP::Parser::Iterator::Array'=> '3.36_01',
13095             'TAP::Parser::Iterator::Process'=> '3.36_01',
13096             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13097             'TAP::Parser::IteratorFactory'=> '3.36_01',
13098             'TAP::Parser::Multiplexer'=> '3.36_01',
13099             'TAP::Parser::Result' => '3.36_01',
13100             'TAP::Parser::Result::Bailout'=> '3.36_01',
13101             'TAP::Parser::Result::Comment'=> '3.36_01',
13102             'TAP::Parser::Result::Plan'=> '3.36_01',
13103             'TAP::Parser::Result::Pragma'=> '3.36_01',
13104             'TAP::Parser::Result::Test'=> '3.36_01',
13105             'TAP::Parser::Result::Unknown'=> '3.36_01',
13106             'TAP::Parser::Result::Version'=> '3.36_01',
13107             'TAP::Parser::Result::YAML'=> '3.36_01',
13108             'TAP::Parser::ResultFactory'=> '3.36_01',
13109             'TAP::Parser::Scheduler'=> '3.36_01',
13110             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13111             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13112             'TAP::Parser::Source' => '3.36_01',
13113             'TAP::Parser::SourceHandler'=> '3.36_01',
13114             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13115             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13116             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13117             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13118             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13119             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13120             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13121             'Test' => '1.29',
13122             'Test2' => '1.302052',
13123             'Test2::API' => '1.302052',
13124             'Test2::API::Breakage' => '1.302052',
13125             'Test2::API::Context' => '1.302052',
13126             'Test2::API::Instance' => '1.302052',
13127             'Test2::API::Stack' => '1.302052',
13128             'Test2::Event' => '1.302052',
13129             'Test2::Event::Bail' => '1.302052',
13130             'Test2::Event::Diag' => '1.302052',
13131             'Test2::Event::Exception'=> '1.302052',
13132             'Test2::Event::Generic' => '1.302052',
13133             'Test2::Event::Info' => '1.302052',
13134             'Test2::Event::Note' => '1.302052',
13135             'Test2::Event::Ok' => '1.302052',
13136             'Test2::Event::Plan' => '1.302052',
13137             'Test2::Event::Skip' => '1.302052',
13138             'Test2::Event::Subtest' => '1.302052',
13139             'Test2::Event::Waiting' => '1.302052',
13140             'Test2::Formatter' => '1.302052',
13141             'Test2::Formatter::TAP' => '1.302052',
13142             'Test2::Hub' => '1.302052',
13143             'Test2::Hub::Interceptor'=> '1.302052',
13144             'Test2::Hub::Interceptor::Terminator'=> '1.302052',
13145             'Test2::Hub::Subtest' => '1.302052',
13146             'Test2::IPC' => '1.302052',
13147             'Test2::IPC::Driver' => '1.302052',
13148             'Test2::IPC::Driver::Files'=> '1.302052',
13149             'Test2::Util' => '1.302052',
13150             'Test2::Util::ExternalMeta'=> '1.302052',
13151             'Test2::Util::HashBase' => '1.302052',
13152             'Test2::Util::Trace' => '1.302052',
13153             'Test::Builder' => '1.302052',
13154             'Test::Builder::Formatter'=> '1.302052',
13155             'Test::Builder::Module' => '1.302052',
13156             'Test::Builder::Tester' => '1.302052',
13157             'Test::Builder::Tester::Color'=> '1.302052',
13158             'Test::Builder::TodoDiag'=> '1.302052',
13159             'Test::Harness' => '3.36_01',
13160             'Test::More' => '1.302052',
13161             'Test::Simple' => '1.302052',
13162             'Test::Tester' => '1.302052',
13163             'Test::Tester::Capture' => '1.302052',
13164             'Test::Tester::CaptureRunner'=> '1.302052',
13165             'Test::Tester::Delegate'=> '1.302052',
13166             'Test::use::ok' => '1.302052',
13167             'Tie::Hash::NamedCapture'=> '0.10',
13168             'Time::Local' => '1.24',
13169             'XS::APItest' => '0.83',
13170             'arybase' => '0.12',
13171             'base' => '2.24',
13172             'bigint' => '0.43_01',
13173             'bignum' => '0.43_01',
13174             'bigrat' => '0.43_01',
13175             'encoding' => '2.18',
13176             'ok' => '1.302052',
13177             },
13178             removed => {
13179             }
13180             },
13181             5.025005 => {
13182             delta_from => 5.025004,
13183             changed => {
13184             'B::Op_private' => '5.025005',
13185             'Config' => '5.025005',
13186             'Filter::Simple' => '0.93',
13187             'Locale::Codes' => '3.40',
13188             'Locale::Codes::Constants'=> '3.40',
13189             'Locale::Codes::Country'=> '3.40',
13190             'Locale::Codes::Country_Codes'=> '3.40',
13191             'Locale::Codes::Country_Retired'=> '3.40',
13192             'Locale::Codes::Currency'=> '3.40',
13193             'Locale::Codes::Currency_Codes'=> '3.40',
13194             'Locale::Codes::Currency_Retired'=> '3.40',
13195             'Locale::Codes::LangExt'=> '3.40',
13196             'Locale::Codes::LangExt_Codes'=> '3.40',
13197             'Locale::Codes::LangExt_Retired'=> '3.40',
13198             'Locale::Codes::LangFam'=> '3.40',
13199             'Locale::Codes::LangFam_Codes'=> '3.40',
13200             'Locale::Codes::LangFam_Retired'=> '3.40',
13201             'Locale::Codes::LangVar'=> '3.40',
13202             'Locale::Codes::LangVar_Codes'=> '3.40',
13203             'Locale::Codes::LangVar_Retired'=> '3.40',
13204             'Locale::Codes::Language'=> '3.40',
13205             'Locale::Codes::Language_Codes'=> '3.40',
13206             'Locale::Codes::Language_Retired'=> '3.40',
13207             'Locale::Codes::Script' => '3.40',
13208             'Locale::Codes::Script_Codes'=> '3.40',
13209             'Locale::Codes::Script_Retired'=> '3.40',
13210             'Locale::Country' => '3.40',
13211             'Locale::Currency' => '3.40',
13212             'Locale::Language' => '3.40',
13213             'Locale::Script' => '3.40',
13214             'Module::CoreList' => '5.20160920',
13215             'Module::CoreList::TieHashDelta'=> '5.20160920',
13216             'Module::CoreList::Utils'=> '5.20160920',
13217             'POSIX' => '1.72',
13218             'Sys::Syslog' => '0.35',
13219             'Test2' => '1.302056',
13220             'Test2::API' => '1.302056',
13221             'Test2::API::Breakage' => '1.302056',
13222             'Test2::API::Context' => '1.302056',
13223             'Test2::API::Instance' => '1.302056',
13224             'Test2::API::Stack' => '1.302056',
13225             'Test2::Event' => '1.302056',
13226             'Test2::Event::Bail' => '1.302056',
13227             'Test2::Event::Diag' => '1.302056',
13228             'Test2::Event::Exception'=> '1.302056',
13229             'Test2::Event::Generic' => '1.302056',
13230             'Test2::Event::Info' => '1.302056',
13231             'Test2::Event::Note' => '1.302056',
13232             'Test2::Event::Ok' => '1.302056',
13233             'Test2::Event::Plan' => '1.302056',
13234             'Test2::Event::Skip' => '1.302056',
13235             'Test2::Event::Subtest' => '1.302056',
13236             'Test2::Event::Waiting' => '1.302056',
13237             'Test2::Formatter' => '1.302056',
13238             'Test2::Formatter::TAP' => '1.302056',
13239             'Test2::Hub' => '1.302056',
13240             'Test2::Hub::Interceptor'=> '1.302056',
13241             'Test2::Hub::Interceptor::Terminator'=> '1.302056',
13242             'Test2::Hub::Subtest' => '1.302056',
13243             'Test2::IPC' => '1.302056',
13244             'Test2::IPC::Driver' => '1.302056',
13245             'Test2::IPC::Driver::Files'=> '1.302056',
13246             'Test2::Util' => '1.302056',
13247             'Test2::Util::ExternalMeta'=> '1.302056',
13248             'Test2::Util::HashBase' => '1.302056',
13249             'Test2::Util::Trace' => '1.302056',
13250             'Test::Builder' => '1.302056',
13251             'Test::Builder::Formatter'=> '1.302056',
13252             'Test::Builder::Module' => '1.302056',
13253             'Test::Builder::Tester' => '1.302056',
13254             'Test::Builder::Tester::Color'=> '1.302056',
13255             'Test::Builder::TodoDiag'=> '1.302056',
13256             'Test::More' => '1.302056',
13257             'Test::Simple' => '1.302056',
13258             'Test::Tester' => '1.302056',
13259             'Test::Tester::Capture' => '1.302056',
13260             'Test::Tester::CaptureRunner'=> '1.302056',
13261             'Test::Tester::Delegate'=> '1.302056',
13262             'Test::use::ok' => '1.302056',
13263             'Thread::Semaphore' => '2.13',
13264             'XS::APItest' => '0.84',
13265             'XSLoader' => '0.24',
13266             'ok' => '1.302056',
13267             },
13268             removed => {
13269             }
13270             },
13271             5.025006 => {
13272             delta_from => 5.025005,
13273             changed => {
13274             'Archive::Tar' => '2.14',
13275             'Archive::Tar::Constant'=> '2.14',
13276             'Archive::Tar::File' => '2.14',
13277             'B' => '1.64',
13278             'B::Concise' => '0.999',
13279             'B::Deparse' => '1.39',
13280             'B::Op_private' => '5.025006',
13281             'Config' => '5.025006',
13282             'Data::Dumper' => '2.162',
13283             'Devel::Peek' => '1.25',
13284             'HTTP::Tiny' => '0.070',
13285             'List::Util' => '1.46',
13286             'List::Util::XS' => '1.46',
13287             'Module::CoreList' => '5.20161020',
13288             'Module::CoreList::TieHashDelta'=> '5.20161020',
13289             'Module::CoreList::Utils'=> '5.20161020',
13290             'Net::Ping' => '2.51',
13291             'OS2::DLL' => '1.07',
13292             'Opcode' => '1.38',
13293             'POSIX' => '1.73',
13294             'PerlIO::encoding' => '0.25',
13295             'Pod::Man' => '4.08',
13296             'Pod::ParseLink' => '4.08',
13297             'Pod::Text' => '4.08',
13298             'Pod::Text::Color' => '4.08',
13299             'Pod::Text::Overstrike' => '4.08',
13300             'Pod::Text::Termcap' => '4.08',
13301             'Scalar::Util' => '1.46',
13302             'Storable' => '2.58',
13303             'Sub::Util' => '1.46',
13304             'Test2' => '1.302059',
13305             'Test2::API' => '1.302059',
13306             'Test2::API::Breakage' => '1.302059',
13307             'Test2::API::Context' => '1.302059',
13308             'Test2::API::Instance' => '1.302059',
13309             'Test2::API::Stack' => '1.302059',
13310             'Test2::Event' => '1.302059',
13311             'Test2::Event::Bail' => '1.302059',
13312             'Test2::Event::Diag' => '1.302059',
13313             'Test2::Event::Exception'=> '1.302059',
13314             'Test2::Event::Generic' => '1.302059',
13315             'Test2::Event::Info' => '1.302059',
13316             'Test2::Event::Note' => '1.302059',
13317             'Test2::Event::Ok' => '1.302059',
13318             'Test2::Event::Plan' => '1.302059',
13319             'Test2::Event::Skip' => '1.302059',
13320             'Test2::Event::Subtest' => '1.302059',
13321             'Test2::Event::Waiting' => '1.302059',
13322             'Test2::Formatter' => '1.302059',
13323             'Test2::Formatter::TAP' => '1.302059',
13324             'Test2::Hub' => '1.302059',
13325             'Test2::Hub::Interceptor'=> '1.302059',
13326             'Test2::Hub::Interceptor::Terminator'=> '1.302059',
13327             'Test2::Hub::Subtest' => '1.302059',
13328             'Test2::IPC' => '1.302059',
13329             'Test2::IPC::Driver' => '1.302059',
13330             'Test2::IPC::Driver::Files'=> '1.302059',
13331             'Test2::Util' => '1.302059',
13332             'Test2::Util::ExternalMeta'=> '1.302059',
13333             'Test2::Util::HashBase' => '1.302059',
13334             'Test2::Util::Trace' => '1.302059',
13335             'Test::Builder' => '1.302059',
13336             'Test::Builder::Formatter'=> '1.302059',
13337             'Test::Builder::Module' => '1.302059',
13338             'Test::Builder::Tester' => '1.302059',
13339             'Test::Builder::Tester::Color'=> '1.302059',
13340             'Test::Builder::TodoDiag'=> '1.302059',
13341             'Test::More' => '1.302059',
13342             'Test::Simple' => '1.302059',
13343             'Test::Tester' => '1.302059',
13344             'Test::Tester::Capture' => '1.302059',
13345             'Test::Tester::CaptureRunner'=> '1.302059',
13346             'Test::Tester::Delegate'=> '1.302059',
13347             'Test::use::ok' => '1.302059',
13348             'Time::HiRes' => '1.9740_01',
13349             'VMS::Stdio' => '2.42',
13350             'XS::APItest' => '0.86',
13351             'attributes' => '0.28',
13352             'mro' => '1.19',
13353             'ok' => '1.302059',
13354             'overload' => '1.27',
13355             'parent' => '0.236',
13356             },
13357             removed => {
13358             }
13359             },
13360             5.025007 => {
13361             delta_from => 5.025006,
13362             changed => {
13363             'Archive::Tar' => '2.18',
13364             'Archive::Tar::Constant'=> '2.18',
13365             'Archive::Tar::File' => '2.18',
13366             'B' => '1.65',
13367             'B::Op_private' => '5.025007',
13368             'Config' => '5.025007',
13369             'Cwd' => '3.66',
13370             'Data::Dumper' => '2.165',
13371             'Devel::Peek' => '1.26',
13372             'DynaLoader' => '1.40',
13373             'Errno' => '1.27',
13374             'ExtUtils::ParseXS::Utilities'=> '3.34',
13375             'File::Spec' => '3.66',
13376             'File::Spec::AmigaOS' => '3.66',
13377             'File::Spec::Cygwin' => '3.66',
13378             'File::Spec::Epoc' => '3.66',
13379             'File::Spec::Functions' => '3.66',
13380             'File::Spec::Mac' => '3.66',
13381             'File::Spec::OS2' => '3.66',
13382             'File::Spec::Unix' => '3.66',
13383             'File::Spec::VMS' => '3.66',
13384             'File::Spec::Win32' => '3.66',
13385             'Hash::Util' => '0.22',
13386             'JSON::PP' => '2.27400_02',
13387             'List::Util' => '1.46_02',
13388             'List::Util::XS' => '1.46_02',
13389             'Math::BigFloat' => '1.999727',
13390             'Math::BigInt' => '1.999727',
13391             'Math::BigInt::Calc' => '1.999727',
13392             'Math::BigInt::CalcEmu' => '1.999727',
13393             'Math::Complex' => '1.5901',
13394             'Module::CoreList' => '5.20161120',
13395             'Module::CoreList::TieHashDelta'=> '5.20161120',
13396             'Module::CoreList::Utils'=> '5.20161120',
13397             'Net::Ping' => '2.55',
13398             'Opcode' => '1.39',
13399             'POSIX' => '1.75',
13400             'Pod::Man' => '4.09',
13401             'Pod::ParseLink' => '4.09',
13402             'Pod::Text' => '4.09',
13403             'Pod::Text::Color' => '4.09',
13404             'Pod::Text::Overstrike' => '4.09',
13405             'Pod::Text::Termcap' => '4.09',
13406             'Scalar::Util' => '1.46_02',
13407             'Storable' => '2.59',
13408             'Sub::Util' => '1.46_02',
13409             'Term::ANSIColor' => '4.06',
13410             'Test2' => '1.302062',
13411             'Test2::API' => '1.302062',
13412             'Test2::API::Breakage' => '1.302062',
13413             'Test2::API::Context' => '1.302062',
13414             'Test2::API::Instance' => '1.302062',
13415             'Test2::API::Stack' => '1.302062',
13416             'Test2::Event' => '1.302062',
13417             'Test2::Event::Bail' => '1.302062',
13418             'Test2::Event::Diag' => '1.302062',
13419             'Test2::Event::Exception'=> '1.302062',
13420             'Test2::Event::Generic' => '1.302062',
13421             'Test2::Event::Info' => '1.302062',
13422             'Test2::Event::Note' => '1.302062',
13423             'Test2::Event::Ok' => '1.302062',
13424             'Test2::Event::Plan' => '1.302062',
13425             'Test2::Event::Skip' => '1.302062',
13426             'Test2::Event::Subtest' => '1.302062',
13427             'Test2::Event::Waiting' => '1.302062',
13428             'Test2::Formatter' => '1.302062',
13429             'Test2::Formatter::TAP' => '1.302062',
13430             'Test2::Hub' => '1.302062',
13431             'Test2::Hub::Interceptor'=> '1.302062',
13432             'Test2::Hub::Interceptor::Terminator'=> '1.302062',
13433             'Test2::Hub::Subtest' => '1.302062',
13434             'Test2::IPC' => '1.302062',
13435             'Test2::IPC::Driver' => '1.302062',
13436             'Test2::IPC::Driver::Files'=> '1.302062',
13437             'Test2::Util' => '1.302062',
13438             'Test2::Util::ExternalMeta'=> '1.302062',
13439             'Test2::Util::HashBase' => '1.302062',
13440             'Test2::Util::Trace' => '1.302062',
13441             'Test::Builder' => '1.302062',
13442             'Test::Builder::Formatter'=> '1.302062',
13443             'Test::Builder::Module' => '1.302062',
13444             'Test::Builder::Tester' => '1.302062',
13445             'Test::Builder::Tester::Color'=> '1.302062',
13446             'Test::Builder::TodoDiag'=> '1.302062',
13447             'Test::More' => '1.302062',
13448             'Test::Simple' => '1.302062',
13449             'Test::Tester' => '1.302062',
13450             'Test::Tester::Capture' => '1.302062',
13451             'Test::Tester::CaptureRunner'=> '1.302062',
13452             'Test::Tester::Delegate'=> '1.302062',
13453             'Test::use::ok' => '1.302062',
13454             'Time::HiRes' => '1.9740_03',
13455             'Unicode::Collate' => '1.18',
13456             'Unicode::Collate::CJK::Big5'=> '1.18',
13457             'Unicode::Collate::CJK::GB2312'=> '1.18',
13458             'Unicode::Collate::CJK::JISX0208'=> '1.18',
13459             'Unicode::Collate::CJK::Korean'=> '1.18',
13460             'Unicode::Collate::CJK::Pinyin'=> '1.18',
13461             'Unicode::Collate::CJK::Stroke'=> '1.18',
13462             'Unicode::Collate::CJK::Zhuyin'=> '1.18',
13463             'Unicode::Collate::Locale'=> '1.18',
13464             'Unicode::UCD' => '0.67',
13465             'XS::APItest' => '0.87',
13466             'XS::Typemap' => '0.15',
13467             'mro' => '1.20',
13468             'ok' => '1.302062',
13469             'threads' => '2.10',
13470             },
13471             removed => {
13472             }
13473             },
13474             5.025008 => {
13475             delta_from => 5.025007,
13476             changed => {
13477             'Archive::Tar' => '2.24',
13478             'Archive::Tar::Constant'=> '2.24',
13479             'Archive::Tar::File' => '2.24',
13480             'B::Debug' => '1.24',
13481             'B::Op_private' => '5.025008',
13482             'Config' => '5.025008',
13483             'Data::Dumper' => '2.166',
13484             'Encode' => '2.88',
13485             'Encode::Alias' => '2.21',
13486             'Encode::CN::HZ' => '2.08',
13487             'Encode::MIME::Header' => '2.24',
13488             'Encode::MIME::Name' => '1.02',
13489             'Encode::Unicode' => '2.1501',
13490             'IO' => '1.38',
13491             'Locale::Codes' => '3.42',
13492             'Locale::Codes::Constants'=> '3.42',
13493             'Locale::Codes::Country'=> '3.42',
13494             'Locale::Codes::Country_Codes'=> '3.42',
13495             'Locale::Codes::Country_Retired'=> '3.42',
13496             'Locale::Codes::Currency'=> '3.42',
13497             'Locale::Codes::Currency_Codes'=> '3.42',
13498             'Locale::Codes::Currency_Retired'=> '3.42',
13499             'Locale::Codes::LangExt'=> '3.42',
13500             'Locale::Codes::LangExt_Codes'=> '3.42',
13501             'Locale::Codes::LangExt_Retired'=> '3.42',
13502             'Locale::Codes::LangFam'=> '3.42',
13503             'Locale::Codes::LangFam_Codes'=> '3.42',
13504             'Locale::Codes::LangFam_Retired'=> '3.42',
13505             'Locale::Codes::LangVar'=> '3.42',
13506             'Locale::Codes::LangVar_Codes'=> '3.42',
13507             'Locale::Codes::LangVar_Retired'=> '3.42',
13508             'Locale::Codes::Language'=> '3.42',
13509             'Locale::Codes::Language_Codes'=> '3.42',
13510             'Locale::Codes::Language_Retired'=> '3.42',
13511             'Locale::Codes::Script' => '3.42',
13512             'Locale::Codes::Script_Codes'=> '3.42',
13513             'Locale::Codes::Script_Retired'=> '3.42',
13514             'Locale::Country' => '3.42',
13515             'Locale::Currency' => '3.42',
13516             'Locale::Language' => '3.42',
13517             'Locale::Script' => '3.42',
13518             'Math::BigFloat' => '1.999806',
13519             'Math::BigFloat::Trace' => '0.47',
13520             'Math::BigInt' => '1.999806',
13521             'Math::BigInt::Calc' => '1.999806',
13522             'Math::BigInt::CalcEmu' => '1.999806',
13523             'Math::BigInt::FastCalc'=> '0.5005',
13524             'Math::BigInt::Lib' => '1.999806',
13525             'Math::BigInt::Trace' => '0.47',
13526             'Math::BigRat' => '0.2611',
13527             'Module::CoreList' => '5.20161220',
13528             'Module::CoreList::TieHashDelta'=> '5.20161220',
13529             'Module::CoreList::Utils'=> '5.20161220',
13530             'POSIX' => '1.76',
13531             'PerlIO::scalar' => '0.25',
13532             'Pod::Simple' => '3.35',
13533             'Pod::Simple::BlackBox' => '3.35',
13534             'Pod::Simple::Checker' => '3.35',
13535             'Pod::Simple::Debug' => '3.35',
13536             'Pod::Simple::DumpAsText'=> '3.35',
13537             'Pod::Simple::DumpAsXML'=> '3.35',
13538             'Pod::Simple::HTML' => '3.35',
13539             'Pod::Simple::HTMLBatch'=> '3.35',
13540             'Pod::Simple::LinkSection'=> '3.35',
13541             'Pod::Simple::Methody' => '3.35',
13542             'Pod::Simple::Progress' => '3.35',
13543             'Pod::Simple::PullParser'=> '3.35',
13544             'Pod::Simple::PullParserEndToken'=> '3.35',
13545             'Pod::Simple::PullParserStartToken'=> '3.35',
13546             'Pod::Simple::PullParserTextToken'=> '3.35',
13547             'Pod::Simple::PullParserToken'=> '3.35',
13548             'Pod::Simple::RTF' => '3.35',
13549             'Pod::Simple::Search' => '3.35',
13550             'Pod::Simple::SimpleTree'=> '3.35',
13551             'Pod::Simple::Text' => '3.35',
13552             'Pod::Simple::TextContent'=> '3.35',
13553             'Pod::Simple::TiedOutFH'=> '3.35',
13554             'Pod::Simple::Transcode'=> '3.35',
13555             'Pod::Simple::TranscodeDumb'=> '3.35',
13556             'Pod::Simple::TranscodeSmart'=> '3.35',
13557             'Pod::Simple::XHTML' => '3.35',
13558             'Pod::Simple::XMLOutStream'=> '3.35',
13559             'Test2' => '1.302073',
13560             'Test2::API' => '1.302073',
13561             'Test2::API::Breakage' => '1.302073',
13562             'Test2::API::Context' => '1.302073',
13563             'Test2::API::Instance' => '1.302073',
13564             'Test2::API::Stack' => '1.302073',
13565             'Test2::Event' => '1.302073',
13566             'Test2::Event::Bail' => '1.302073',
13567             'Test2::Event::Diag' => '1.302073',
13568             'Test2::Event::Encoding'=> '1.302073',
13569             'Test2::Event::Exception'=> '1.302073',
13570             'Test2::Event::Generic' => '1.302073',
13571             'Test2::Event::Info' => '1.302073',
13572             'Test2::Event::Note' => '1.302073',
13573             'Test2::Event::Ok' => '1.302073',
13574             'Test2::Event::Plan' => '1.302073',
13575             'Test2::Event::Skip' => '1.302073',
13576             'Test2::Event::Subtest' => '1.302073',
13577             'Test2::Event::TAP::Version'=> '1.302073',
13578             'Test2::Event::Waiting' => '1.302073',
13579             'Test2::Formatter' => '1.302073',
13580             'Test2::Formatter::TAP' => '1.302073',
13581             'Test2::Hub' => '1.302073',
13582             'Test2::Hub::Interceptor'=> '1.302073',
13583             'Test2::Hub::Interceptor::Terminator'=> '1.302073',
13584             'Test2::Hub::Subtest' => '1.302073',
13585             'Test2::IPC' => '1.302073',
13586             'Test2::IPC::Driver' => '1.302073',
13587             'Test2::IPC::Driver::Files'=> '1.302073',
13588             'Test2::Tools::Tiny' => '1.302073',
13589             'Test2::Util' => '1.302073',
13590             'Test2::Util::ExternalMeta'=> '1.302073',
13591             'Test2::Util::HashBase' => '0.002',
13592             'Test2::Util::Trace' => '1.302073',
13593             'Test::Builder' => '1.302073',
13594             'Test::Builder::Formatter'=> '1.302073',
13595             'Test::Builder::Module' => '1.302073',
13596             'Test::Builder::Tester' => '1.302073',
13597             'Test::Builder::Tester::Color'=> '1.302073',
13598             'Test::Builder::TodoDiag'=> '1.302073',
13599             'Test::More' => '1.302073',
13600             'Test::Simple' => '1.302073',
13601             'Test::Tester' => '1.302073',
13602             'Test::Tester::Capture' => '1.302073',
13603             'Test::Tester::CaptureRunner'=> '1.302073',
13604             'Test::Tester::Delegate'=> '1.302073',
13605             'Test::use::ok' => '1.302073',
13606             'Time::HiRes' => '1.9741',
13607             'Time::Local' => '1.25',
13608             'Unicode::Collate' => '1.19',
13609             'Unicode::Collate::CJK::Big5'=> '1.19',
13610             'Unicode::Collate::CJK::GB2312'=> '1.19',
13611             'Unicode::Collate::CJK::JISX0208'=> '1.19',
13612             'Unicode::Collate::CJK::Korean'=> '1.19',
13613             'Unicode::Collate::CJK::Pinyin'=> '1.19',
13614             'Unicode::Collate::CJK::Stroke'=> '1.19',
13615             'Unicode::Collate::CJK::Zhuyin'=> '1.19',
13616             'Unicode::Collate::Locale'=> '1.19',
13617             'bigint' => '0.47',
13618             'bignum' => '0.47',
13619             'bigrat' => '0.47',
13620             'encoding' => '2.19',
13621             'ok' => '1.302073',
13622             },
13623             removed => {
13624             }
13625             },
13626             5.022003 => {
13627             delta_from => 5.022002,
13628             changed => {
13629             'App::Cpan' => '1.63_01',
13630             'App::Prove' => '3.35_01',
13631             'App::Prove::State' => '3.35_01',
13632             'App::Prove::State::Result'=> '3.35_01',
13633             'App::Prove::State::Result::Test'=> '3.35_01',
13634             'Archive::Tar' => '2.04_01',
13635             'Archive::Tar::Constant'=> '2.04_01',
13636             'Archive::Tar::File' => '2.04_01',
13637             'B::Op_private' => '5.022003',
13638             'CPAN' => '2.11_01',
13639             'Compress::Zlib' => '2.068_001',
13640             'Config' => '5.022003',
13641             'Cwd' => '3.56_02',
13642             'Digest' => '1.17_01',
13643             'Digest::SHA' => '5.95_01',
13644             'Encode' => '2.72_01',
13645             'ExtUtils::Command' => '1.20_01',
13646             'ExtUtils::Command::MM' => '7.04_02',
13647             'ExtUtils::Liblist' => '7.04_02',
13648             'ExtUtils::Liblist::Kid'=> '7.04_02',
13649             'ExtUtils::MM' => '7.04_02',
13650             'ExtUtils::MM_AIX' => '7.04_02',
13651             'ExtUtils::MM_Any' => '7.04_02',
13652             'ExtUtils::MM_BeOS' => '7.04_02',
13653             'ExtUtils::MM_Cygwin' => '7.04_02',
13654             'ExtUtils::MM_DOS' => '7.04_02',
13655             'ExtUtils::MM_Darwin' => '7.04_02',
13656             'ExtUtils::MM_MacOS' => '7.04_02',
13657             'ExtUtils::MM_NW5' => '7.04_02',
13658             'ExtUtils::MM_OS2' => '7.04_02',
13659             'ExtUtils::MM_QNX' => '7.04_02',
13660             'ExtUtils::MM_UWIN' => '7.04_02',
13661             'ExtUtils::MM_Unix' => '7.04_02',
13662             'ExtUtils::MM_VMS' => '7.04_02',
13663             'ExtUtils::MM_VOS' => '7.04_02',
13664             'ExtUtils::MM_Win32' => '7.04_02',
13665             'ExtUtils::MM_Win95' => '7.04_02',
13666             'ExtUtils::MY' => '7.04_02',
13667             'ExtUtils::MakeMaker' => '7.04_02',
13668             'ExtUtils::MakeMaker::Config'=> '7.04_02',
13669             'ExtUtils::Mkbootstrap' => '7.04_02',
13670             'ExtUtils::Mksymlists' => '7.04_02',
13671             'ExtUtils::testlib' => '7.04_02',
13672             'File::Fetch' => '0.48_01',
13673             'File::Spec' => '3.56_02',
13674             'File::Spec::Cygwin' => '3.56_02',
13675             'File::Spec::Epoc' => '3.56_02',
13676             'File::Spec::Functions' => '3.56_02',
13677             'File::Spec::Mac' => '3.56_02',
13678             'File::Spec::OS2' => '3.56_02',
13679             'File::Spec::Unix' => '3.56_02',
13680             'File::Spec::VMS' => '3.56_02',
13681             'File::Spec::Win32' => '3.56_02',
13682             'HTTP::Tiny' => '0.054_01',
13683             'I18N::LangTags::Detect'=> '1.05_01',
13684             'IO' => '1.35_01',
13685             'IO::Compress::Adapter::Bzip2'=> '2.068_001',
13686             'IO::Compress::Adapter::Deflate'=> '2.068_001',
13687             'IO::Compress::Adapter::Identity'=> '2.068_001',
13688             'IO::Compress::Base' => '2.068_001',
13689             'IO::Compress::Base::Common'=> '2.068_001',
13690             'IO::Compress::Bzip2' => '2.068_001',
13691             'IO::Compress::Deflate' => '2.068_001',
13692             'IO::Compress::Gzip' => '2.068_001',
13693             'IO::Compress::Gzip::Constants'=> '2.068_001',
13694             'IO::Compress::RawDeflate'=> '2.068_001',
13695             'IO::Compress::Zip' => '2.068_001',
13696             'IO::Compress::Zip::Constants'=> '2.068_001',
13697             'IO::Compress::Zlib::Constants'=> '2.068_001',
13698             'IO::Compress::Zlib::Extra'=> '2.068_001',
13699             'IO::Uncompress::Adapter::Bunzip2'=> '2.068_001',
13700             'IO::Uncompress::Adapter::Identity'=> '2.068_001',
13701             'IO::Uncompress::Adapter::Inflate'=> '2.068_001',
13702             'IO::Uncompress::AnyInflate'=> '2.068_001',
13703             'IO::Uncompress::AnyUncompress'=> '2.068_001',
13704             'IO::Uncompress::Base' => '2.068_001',
13705             'IO::Uncompress::Bunzip2'=> '2.068_001',
13706             'IO::Uncompress::Gunzip'=> '2.068_001',
13707             'IO::Uncompress::Inflate'=> '2.068_001',
13708             'IO::Uncompress::RawInflate'=> '2.068_001',
13709             'IO::Uncompress::Unzip' => '2.068_001',
13710             'IPC::Cmd' => '0.92_01',
13711             'JSON::PP' => '2.27300_01',
13712             'Locale::Maketext' => '1.26_01',
13713             'Locale::Maketext::Simple'=> '0.21_01',
13714             'Memoize' => '1.03_01',
13715             'Module::CoreList' => '5.20170114_22',
13716             'Module::CoreList::TieHashDelta'=> '5.20170114_22',
13717             'Module::CoreList::Utils'=> '5.20170114_22',
13718             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13719             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13720             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13721             'Net::Cmd' => '3.05_01',
13722             'Net::Config' => '3.05_01',
13723             'Net::Domain' => '3.05_01',
13724             'Net::FTP' => '3.05_01',
13725             'Net::FTP::A' => '3.05_01',
13726             'Net::FTP::E' => '3.05_01',
13727             'Net::FTP::I' => '3.05_01',
13728             'Net::FTP::L' => '3.05_01',
13729             'Net::FTP::dataconn' => '3.05_01',
13730             'Net::NNTP' => '3.05_01',
13731             'Net::Netrc' => '3.05_01',
13732             'Net::POP3' => '3.05_01',
13733             'Net::Ping' => '2.43_01',
13734             'Net::SMTP' => '3.05_01',
13735             'Net::Time' => '3.05_01',
13736             'Parse::CPAN::Meta' => '1.4414_001',
13737             'Pod::Html' => '1.2201',
13738             'Pod::Perldoc' => '3.25_01',
13739             'Storable' => '2.53_02',
13740             'Sys::Syslog' => '0.33_01',
13741             'TAP::Base' => '3.35_01',
13742             'TAP::Formatter::Base' => '3.35_01',
13743             'TAP::Formatter::Color' => '3.35_01',
13744             'TAP::Formatter::Console'=> '3.35_01',
13745             'TAP::Formatter::Console::ParallelSession'=> '3.35_01',
13746             'TAP::Formatter::Console::Session'=> '3.35_01',
13747             'TAP::Formatter::File' => '3.35_01',
13748             'TAP::Formatter::File::Session'=> '3.35_01',
13749             'TAP::Formatter::Session'=> '3.35_01',
13750             'TAP::Harness' => '3.35_01',
13751             'TAP::Harness::Env' => '3.35_01',
13752             'TAP::Object' => '3.35_01',
13753             'TAP::Parser' => '3.35_01',
13754             'TAP::Parser::Aggregator'=> '3.35_01',
13755             'TAP::Parser::Grammar' => '3.35_01',
13756             'TAP::Parser::Iterator' => '3.35_01',
13757             'TAP::Parser::Iterator::Array'=> '3.35_01',
13758             'TAP::Parser::Iterator::Process'=> '3.35_01',
13759             'TAP::Parser::Iterator::Stream'=> '3.35_01',
13760             'TAP::Parser::IteratorFactory'=> '3.35_01',
13761             'TAP::Parser::Multiplexer'=> '3.35_01',
13762             'TAP::Parser::Result' => '3.35_01',
13763             'TAP::Parser::Result::Bailout'=> '3.35_01',
13764             'TAP::Parser::Result::Comment'=> '3.35_01',
13765             'TAP::Parser::Result::Plan'=> '3.35_01',
13766             'TAP::Parser::Result::Pragma'=> '3.35_01',
13767             'TAP::Parser::Result::Test'=> '3.35_01',
13768             'TAP::Parser::Result::Unknown'=> '3.35_01',
13769             'TAP::Parser::Result::Version'=> '3.35_01',
13770             'TAP::Parser::Result::YAML'=> '3.35_01',
13771             'TAP::Parser::ResultFactory'=> '3.35_01',
13772             'TAP::Parser::Scheduler'=> '3.35_01',
13773             'TAP::Parser::Scheduler::Job'=> '3.35_01',
13774             'TAP::Parser::Scheduler::Spinner'=> '3.35_01',
13775             'TAP::Parser::Source' => '3.35_01',
13776             'TAP::Parser::SourceHandler'=> '3.35_01',
13777             'TAP::Parser::SourceHandler::Executable'=> '3.35_01',
13778             'TAP::Parser::SourceHandler::File'=> '3.35_01',
13779             'TAP::Parser::SourceHandler::Handle'=> '3.35_01',
13780             'TAP::Parser::SourceHandler::Perl'=> '3.35_01',
13781             'TAP::Parser::SourceHandler::RawTAP'=> '3.35_01',
13782             'TAP::Parser::YAMLish::Reader'=> '3.35_01',
13783             'TAP::Parser::YAMLish::Writer'=> '3.35_01',
13784             'Test' => '1.26_01',
13785             'Test::Harness' => '3.35_01',
13786             'XSLoader' => '0.20_01',
13787             'bigint' => '0.39_01',
13788             'bignum' => '0.39_01',
13789             'bigrat' => '0.39_01',
13790             },
13791             removed => {
13792             }
13793             },
13794             5.024001 => {
13795             delta_from => 5.024000,
13796             changed => {
13797             'App::Cpan' => '1.63_01',
13798             'App::Prove' => '3.36_01',
13799             'App::Prove::State' => '3.36_01',
13800             'App::Prove::State::Result'=> '3.36_01',
13801             'App::Prove::State::Result::Test'=> '3.36_01',
13802             'Archive::Tar' => '2.04_01',
13803             'Archive::Tar::Constant'=> '2.04_01',
13804             'Archive::Tar::File' => '2.04_01',
13805             'B::Op_private' => '5.024001',
13806             'CPAN' => '2.11_01',
13807             'Compress::Zlib' => '2.069_001',
13808             'Config' => '5.024001',
13809             'Cwd' => '3.63_01',
13810             'Digest' => '1.17_01',
13811             'Digest::SHA' => '5.95_01',
13812             'Encode' => '2.80_01',
13813             'ExtUtils::Command' => '7.10_02',
13814             'ExtUtils::Command::MM' => '7.10_02',
13815             'ExtUtils::Liblist' => '7.10_02',
13816             'ExtUtils::Liblist::Kid'=> '7.10_02',
13817             'ExtUtils::MM' => '7.10_02',
13818             'ExtUtils::MM_AIX' => '7.10_02',
13819             'ExtUtils::MM_Any' => '7.10_02',
13820             'ExtUtils::MM_BeOS' => '7.10_02',
13821             'ExtUtils::MM_Cygwin' => '7.10_02',
13822             'ExtUtils::MM_DOS' => '7.10_02',
13823             'ExtUtils::MM_Darwin' => '7.10_02',
13824             'ExtUtils::MM_MacOS' => '7.10_02',
13825             'ExtUtils::MM_NW5' => '7.10_02',
13826             'ExtUtils::MM_OS2' => '7.10_02',
13827             'ExtUtils::MM_QNX' => '7.10_02',
13828             'ExtUtils::MM_UWIN' => '7.10_02',
13829             'ExtUtils::MM_Unix' => '7.10_02',
13830             'ExtUtils::MM_VMS' => '7.10_02',
13831             'ExtUtils::MM_VOS' => '7.10_02',
13832             'ExtUtils::MM_Win32' => '7.10_02',
13833             'ExtUtils::MM_Win95' => '7.10_02',
13834             'ExtUtils::MY' => '7.10_02',
13835             'ExtUtils::MakeMaker' => '7.10_02',
13836             'ExtUtils::MakeMaker::Config'=> '7.10_02',
13837             'ExtUtils::Mkbootstrap' => '7.10_02',
13838             'ExtUtils::Mksymlists' => '7.10_02',
13839             'ExtUtils::testlib' => '7.10_02',
13840             'File::Fetch' => '0.48_01',
13841             'File::Spec' => '3.63_01',
13842             'File::Spec::Cygwin' => '3.63_01',
13843             'File::Spec::Epoc' => '3.63_01',
13844             'File::Spec::Functions' => '3.63_01',
13845             'File::Spec::Mac' => '3.63_01',
13846             'File::Spec::OS2' => '3.63_01',
13847             'File::Spec::Unix' => '3.63_01',
13848             'File::Spec::VMS' => '3.63_01',
13849             'File::Spec::Win32' => '3.63_01',
13850             'HTTP::Tiny' => '0.056_001',
13851             'I18N::LangTags::Detect'=> '1.05_01',
13852             'IO' => '1.36_01',
13853             'IO::Compress::Adapter::Bzip2'=> '2.069_001',
13854             'IO::Compress::Adapter::Deflate'=> '2.069_001',
13855             'IO::Compress::Adapter::Identity'=> '2.069_001',
13856             'IO::Compress::Base' => '2.069_001',
13857             'IO::Compress::Base::Common'=> '2.069_001',
13858             'IO::Compress::Bzip2' => '2.069_001',
13859             'IO::Compress::Deflate' => '2.069_001',
13860             'IO::Compress::Gzip' => '2.069_001',
13861             'IO::Compress::Gzip::Constants'=> '2.069_001',
13862             'IO::Compress::RawDeflate'=> '2.069_001',
13863             'IO::Compress::Zip' => '2.069_001',
13864             'IO::Compress::Zip::Constants'=> '2.069_001',
13865             'IO::Compress::Zlib::Constants'=> '2.069_001',
13866             'IO::Compress::Zlib::Extra'=> '2.069_001',
13867             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_001',
13868             'IO::Uncompress::Adapter::Identity'=> '2.069_001',
13869             'IO::Uncompress::Adapter::Inflate'=> '2.069_001',
13870             'IO::Uncompress::AnyInflate'=> '2.069_001',
13871             'IO::Uncompress::AnyUncompress'=> '2.069_001',
13872             'IO::Uncompress::Base' => '2.069_001',
13873             'IO::Uncompress::Bunzip2'=> '2.069_001',
13874             'IO::Uncompress::Gunzip'=> '2.069_001',
13875             'IO::Uncompress::Inflate'=> '2.069_001',
13876             'IO::Uncompress::RawInflate'=> '2.069_001',
13877             'IO::Uncompress::Unzip' => '2.069_001',
13878             'IPC::Cmd' => '0.92_01',
13879             'JSON::PP' => '2.27300_01',
13880             'Locale::Maketext' => '1.26_01',
13881             'Locale::Maketext::Simple'=> '0.21_01',
13882             'Math::BigFloat::Trace' => '0.42_01',
13883             'Math::BigInt::Trace' => '0.42_01',
13884             'Memoize' => '1.03_01',
13885             'Module::CoreList' => '5.20170114_24',
13886             'Module::CoreList::TieHashDelta'=> '5.20170114_24',
13887             'Module::CoreList::Utils'=> '5.20170114_24',
13888             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13889             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13890             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13891             'Net::Cmd' => '3.08_01',
13892             'Net::Config' => '3.08_01',
13893             'Net::Domain' => '3.08_01',
13894             'Net::FTP' => '3.08_01',
13895             'Net::FTP::A' => '3.08_01',
13896             'Net::FTP::E' => '3.08_01',
13897             'Net::FTP::I' => '3.08_01',
13898             'Net::FTP::L' => '3.08_01',
13899             'Net::FTP::dataconn' => '3.08_01',
13900             'Net::NNTP' => '3.08_01',
13901             'Net::Netrc' => '3.08_01',
13902             'Net::POP3' => '3.08_01',
13903             'Net::Ping' => '2.43_01',
13904             'Net::SMTP' => '3.08_01',
13905             'Net::Time' => '3.08_01',
13906             'Parse::CPAN::Meta' => '1.4417_001',
13907             'Pod::Html' => '1.2201',
13908             'Pod::Perldoc' => '3.25_03',
13909             'Storable' => '2.56_01',
13910             'Sys::Syslog' => '0.33_01',
13911             'TAP::Base' => '3.36_01',
13912             'TAP::Formatter::Base' => '3.36_01',
13913             'TAP::Formatter::Color' => '3.36_01',
13914             'TAP::Formatter::Console'=> '3.36_01',
13915             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13916             'TAP::Formatter::Console::Session'=> '3.36_01',
13917             'TAP::Formatter::File' => '3.36_01',
13918             'TAP::Formatter::File::Session'=> '3.36_01',
13919             'TAP::Formatter::Session'=> '3.36_01',
13920             'TAP::Harness' => '3.36_01',
13921             'TAP::Harness::Env' => '3.36_01',
13922             'TAP::Object' => '3.36_01',
13923             'TAP::Parser' => '3.36_01',
13924             'TAP::Parser::Aggregator'=> '3.36_01',
13925             'TAP::Parser::Grammar' => '3.36_01',
13926             'TAP::Parser::Iterator' => '3.36_01',
13927             'TAP::Parser::Iterator::Array'=> '3.36_01',
13928             'TAP::Parser::Iterator::Process'=> '3.36_01',
13929             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13930             'TAP::Parser::IteratorFactory'=> '3.36_01',
13931             'TAP::Parser::Multiplexer'=> '3.36_01',
13932             'TAP::Parser::Result' => '3.36_01',
13933             'TAP::Parser::Result::Bailout'=> '3.36_01',
13934             'TAP::Parser::Result::Comment'=> '3.36_01',
13935             'TAP::Parser::Result::Plan'=> '3.36_01',
13936             'TAP::Parser::Result::Pragma'=> '3.36_01',
13937             'TAP::Parser::Result::Test'=> '3.36_01',
13938             'TAP::Parser::Result::Unknown'=> '3.36_01',
13939             'TAP::Parser::Result::Version'=> '3.36_01',
13940             'TAP::Parser::Result::YAML'=> '3.36_01',
13941             'TAP::Parser::ResultFactory'=> '3.36_01',
13942             'TAP::Parser::Scheduler'=> '3.36_01',
13943             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13944             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13945             'TAP::Parser::Source' => '3.36_01',
13946             'TAP::Parser::SourceHandler'=> '3.36_01',
13947             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13948             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13949             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13950             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13951             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13952             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13953             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13954             'Test' => '1.28_01',
13955             'Test::Harness' => '3.36_01',
13956             'XSLoader' => '0.22',
13957             'bigint' => '0.42_01',
13958             'bignum' => '0.42_01',
13959             'bigrat' => '0.42_01',
13960             },
13961             removed => {
13962             }
13963             },
13964             5.025009 => {
13965             delta_from => 5.025008,
13966             changed => {
13967             'App::Cpan' => '1.66',
13968             'B::Deparse' => '1.40',
13969             'B::Op_private' => '5.025009',
13970             'B::Terse' => '1.07',
13971             'B::Xref' => '1.06',
13972             'CPAN' => '2.16',
13973             'CPAN::Bundle' => '5.5002',
13974             'CPAN::Distribution' => '2.16',
13975             'CPAN::Exception::RecursiveDependency'=> '5.5001',
13976             'CPAN::FTP' => '5.5008',
13977             'CPAN::FirstTime' => '5.5310',
13978             'CPAN::HandleConfig' => '5.5008',
13979             'CPAN::Module' => '5.5003',
13980             'Compress::Raw::Bzip2' => '2.070',
13981             'Compress::Raw::Zlib' => '2.070',
13982             'Config' => '5.025009',
13983             'DB_File' => '1.840',
13984             'Data::Dumper' => '2.167',
13985             'Devel::SelfStubber' => '1.06',
13986             'DynaLoader' => '1.41',
13987             'Errno' => '1.28',
13988             'ExtUtils::Embed' => '1.34',
13989             'File::Glob' => '1.28',
13990             'I18N::LangTags' => '0.42',
13991             'Module::CoreList' => '5.20170120',
13992             'Module::CoreList::TieHashDelta'=> '5.20170120',
13993             'Module::CoreList::Utils'=> '5.20170120',
13994             'OS2::Process' => '1.12',
13995             'PerlIO::scalar' => '0.26',
13996             'Pod::Html' => '1.2202',
13997             'Storable' => '2.61',
13998             'Symbol' => '1.08',
13999             'Term::ReadLine' => '1.16',
14000             'Test' => '1.30',
14001             'Unicode::UCD' => '0.68',
14002             'VMS::DCLsym' => '1.08',
14003             'XS::APItest' => '0.88',
14004             'XSLoader' => '0.26',
14005             'attributes' => '0.29',
14006             'diagnostics' => '1.36',
14007             'feature' => '1.46',
14008             'lib' => '0.64',
14009             'overload' => '1.28',
14010             're' => '0.34',
14011             'threads' => '2.12',
14012             'threads::shared' => '1.54',
14013             },
14014             removed => {
14015             }
14016             },
14017             5.025010 => {
14018             delta_from => 5.025009,
14019             changed => {
14020             'B' => '1.68',
14021             'B::Op_private' => '5.025010',
14022             'CPAN' => '2.17',
14023             'CPAN::Distribution' => '2.17',
14024             'Config' => '5.02501',
14025             'Getopt::Std' => '1.12',
14026             'Module::CoreList' => '5.20170220',
14027             'Module::CoreList::TieHashDelta'=> '5.20170220',
14028             'Module::CoreList::Utils'=> '5.20170220',
14029             'PerlIO' => '1.10',
14030             'Storable' => '2.62',
14031             'Thread::Queue' => '3.12',
14032             'feature' => '1.47',
14033             'open' => '1.11',
14034             'threads' => '2.13',
14035             },
14036             removed => {
14037             }
14038             },
14039             5.025011 => {
14040             delta_from => 5.025010,
14041             changed => {
14042             'App::Prove' => '3.38',
14043             'App::Prove::State' => '3.38',
14044             'App::Prove::State::Result'=> '3.38',
14045             'App::Prove::State::Result::Test'=> '3.38',
14046             'B::Op_private' => '5.025011',
14047             'Compress::Raw::Bzip2' => '2.074',
14048             'Compress::Raw::Zlib' => '2.074',
14049             'Compress::Zlib' => '2.074',
14050             'Config' => '5.025011',
14051             'Config::Perl::V' => '0.28',
14052             'Cwd' => '3.67',
14053             'ExtUtils::ParseXS' => '3.34',
14054             'ExtUtils::ParseXS::Constants'=> '3.34',
14055             'ExtUtils::ParseXS::CountLines'=> '3.34',
14056             'ExtUtils::ParseXS::Eval'=> '3.34',
14057             'ExtUtils::Typemaps' => '3.34',
14058             'ExtUtils::Typemaps::Cmd'=> '3.34',
14059             'ExtUtils::Typemaps::InputMap'=> '3.34',
14060             'ExtUtils::Typemaps::OutputMap'=> '3.34',
14061             'ExtUtils::Typemaps::Type'=> '3.34',
14062             'File::Spec' => '3.67',
14063             'File::Spec::AmigaOS' => '3.67',
14064             'File::Spec::Cygwin' => '3.67',
14065             'File::Spec::Epoc' => '3.67',
14066             'File::Spec::Functions' => '3.67',
14067             'File::Spec::Mac' => '3.67',
14068             'File::Spec::OS2' => '3.67',
14069             'File::Spec::Unix' => '3.67',
14070             'File::Spec::VMS' => '3.67',
14071             'File::Spec::Win32' => '3.67',
14072             'IO::Compress::Adapter::Bzip2'=> '2.074',
14073             'IO::Compress::Adapter::Deflate'=> '2.074',
14074             'IO::Compress::Adapter::Identity'=> '2.074',
14075             'IO::Compress::Base' => '2.074',
14076             'IO::Compress::Base::Common'=> '2.074',
14077             'IO::Compress::Bzip2' => '2.074',
14078             'IO::Compress::Deflate' => '2.074',
14079             'IO::Compress::Gzip' => '2.074',
14080             'IO::Compress::Gzip::Constants'=> '2.074',
14081             'IO::Compress::RawDeflate'=> '2.074',
14082             'IO::Compress::Zip' => '2.074',
14083             'IO::Compress::Zip::Constants'=> '2.074',
14084             'IO::Compress::Zlib::Constants'=> '2.074',
14085             'IO::Compress::Zlib::Extra'=> '2.074',
14086             'IO::Uncompress::Adapter::Bunzip2'=> '2.074',
14087             'IO::Uncompress::Adapter::Identity'=> '2.074',
14088             'IO::Uncompress::Adapter::Inflate'=> '2.074',
14089             'IO::Uncompress::AnyInflate'=> '2.074',
14090             'IO::Uncompress::AnyUncompress'=> '2.074',
14091             'IO::Uncompress::Base' => '2.074',
14092             'IO::Uncompress::Bunzip2'=> '2.074',
14093             'IO::Uncompress::Gunzip'=> '2.074',
14094             'IO::Uncompress::Inflate'=> '2.074',
14095             'IO::Uncompress::RawInflate'=> '2.074',
14096             'IO::Uncompress::Unzip' => '2.074',
14097             'Module::CoreList' => '5.20170320',
14098             'Module::CoreList::TieHashDelta'=> '5.20170230',
14099             'Module::CoreList::Utils'=> '5.20170320',
14100             'Pod::Perldoc' => '3.28',
14101             'Pod::Perldoc::BaseTo' => '3.28',
14102             'Pod::Perldoc::GetOptsOO'=> '3.28',
14103             'Pod::Perldoc::ToANSI' => '3.28',
14104             'Pod::Perldoc::ToChecker'=> '3.28',
14105             'Pod::Perldoc::ToMan' => '3.28',
14106             'Pod::Perldoc::ToNroff' => '3.28',
14107             'Pod::Perldoc::ToPod' => '3.28',
14108             'Pod::Perldoc::ToRtf' => '3.28',
14109             'Pod::Perldoc::ToTerm' => '3.28',
14110             'Pod::Perldoc::ToText' => '3.28',
14111             'Pod::Perldoc::ToTk' => '3.28',
14112             'Pod::Perldoc::ToXml' => '3.28',
14113             'TAP::Base' => '3.38',
14114             'TAP::Formatter::Base' => '3.38',
14115             'TAP::Formatter::Color' => '3.38',
14116             'TAP::Formatter::Console'=> '3.38',
14117             'TAP::Formatter::Console::ParallelSession'=> '3.38',
14118             'TAP::Formatter::Console::Session'=> '3.38',
14119             'TAP::Formatter::File' => '3.38',
14120             'TAP::Formatter::File::Session'=> '3.38',
14121             'TAP::Formatter::Session'=> '3.38',
14122             'TAP::Harness' => '3.38',
14123             'TAP::Harness::Env' => '3.38',
14124             'TAP::Object' => '3.38',
14125             'TAP::Parser' => '3.38',
14126             'TAP::Parser::Aggregator'=> '3.38',
14127             'TAP::Parser::Grammar' => '3.38',
14128             'TAP::Parser::Iterator' => '3.38',
14129             'TAP::Parser::Iterator::Array'=> '3.38',
14130             'TAP::Parser::Iterator::Process'=> '3.38',
14131             'TAP::Parser::Iterator::Stream'=> '3.38',
14132             'TAP::Parser::IteratorFactory'=> '3.38',
14133             'TAP::Parser::Multiplexer'=> '3.38',
14134             'TAP::Parser::Result' => '3.38',
14135             'TAP::Parser::Result::Bailout'=> '3.38',
14136             'TAP::Parser::Result::Comment'=> '3.38',
14137             'TAP::Parser::Result::Plan'=> '3.38',
14138             'TAP::Parser::Result::Pragma'=> '3.38',
14139             'TAP::Parser::Result::Test'=> '3.38',
14140             'TAP::Parser::Result::Unknown'=> '3.38',
14141             'TAP::Parser::Result::Version'=> '3.38',
14142             'TAP::Parser::Result::YAML'=> '3.38',
14143             'TAP::Parser::ResultFactory'=> '3.38',
14144             'TAP::Parser::Scheduler'=> '3.38',
14145             'TAP::Parser::Scheduler::Job'=> '3.38',
14146             'TAP::Parser::Scheduler::Spinner'=> '3.38',
14147             'TAP::Parser::Source' => '3.38',
14148             'TAP::Parser::SourceHandler'=> '3.38',
14149             'TAP::Parser::SourceHandler::Executable'=> '3.38',
14150             'TAP::Parser::SourceHandler::File'=> '3.38',
14151             'TAP::Parser::SourceHandler::Handle'=> '3.38',
14152             'TAP::Parser::SourceHandler::Perl'=> '3.38',
14153             'TAP::Parser::SourceHandler::RawTAP'=> '3.38',
14154             'TAP::Parser::YAMLish::Reader'=> '3.38',
14155             'TAP::Parser::YAMLish::Writer'=> '3.38',
14156             'Test::Harness' => '3.38',
14157             'VMS::Stdio' => '2.41',
14158             'threads' => '2.15',
14159             'threads::shared' => '1.55',
14160             },
14161             removed => {
14162             }
14163             },
14164             5.025012 => {
14165             delta_from => 5.025011,
14166             changed => {
14167             'B::Op_private' => '5.025012',
14168             'CPAN' => '2.18',
14169             'CPAN::Bundle' => '5.5003',
14170             'CPAN::Distribution' => '2.18',
14171             'Config' => '5.025012',
14172             'DynaLoader' => '1.42',
14173             'Module::CoreList' => '5.20170420',
14174             'Module::CoreList::TieHashDelta'=> '5.20170420',
14175             'Module::CoreList::Utils'=> '5.20170420',
14176             'Safe' => '2.40',
14177             'XSLoader' => '0.27',
14178             'base' => '2.25',
14179             'threads::shared' => '1.56',
14180             },
14181             removed => {
14182             }
14183             },
14184             5.026000 => {
14185             delta_from => 5.025012,
14186             changed => {
14187             'B::Op_private' => '5.026000',
14188             'Config' => '5.026',
14189             'Module::CoreList' => '5.20170530',
14190             'Module::CoreList::TieHashDelta'=> '5.20170530',
14191             'Module::CoreList::Utils'=> '5.20170530',
14192             },
14193             removed => {
14194             }
14195             },
14196             5.027000 => {
14197             delta_from => 5.026000,
14198             changed => {
14199             'Attribute::Handlers' => '1.00',
14200             'B::Concise' => '1.000',
14201             'B::Deparse' => '1.41',
14202             'B::Op_private' => '5.027000',
14203             'Config' => '5.027',
14204             'Module::CoreList' => '5.20170531',
14205             'Module::CoreList::TieHashDelta'=> '5.20170531',
14206             'Module::CoreList::Utils'=> '5.20170531',
14207             'O' => '1.02',
14208             'attributes' => '0.3',
14209             'feature' => '1.48',
14210             },
14211             removed => {
14212             }
14213             },
14214             5.027001 => {
14215             delta_from => 5.027,
14216             changed => {
14217             'App::Prove' => '3.39',
14218             'App::Prove::State' => '3.39',
14219             'App::Prove::State::Result'=> '3.39',
14220             'App::Prove::State::Result::Test'=> '3.39',
14221             'Archive::Tar' => '2.26',
14222             'Archive::Tar::Constant'=> '2.26',
14223             'Archive::Tar::File' => '2.26',
14224             'B::Op_private' => '5.027001',
14225             'B::Terse' => '1.08',
14226             'Config' => '5.027001',
14227             'Devel::PPPort' => '3.36',
14228             'DirHandle' => '1.05',
14229             'ExtUtils::Command' => '7.30',
14230             'ExtUtils::Command::MM' => '7.30',
14231             'ExtUtils::Install' => '2.14',
14232             'ExtUtils::Installed' => '2.14',
14233             'ExtUtils::Liblist' => '7.30',
14234             'ExtUtils::Liblist::Kid'=> '7.30',
14235             'ExtUtils::MM' => '7.30',
14236             'ExtUtils::MM_AIX' => '7.30',
14237             'ExtUtils::MM_Any' => '7.30',
14238             'ExtUtils::MM_BeOS' => '7.30',
14239             'ExtUtils::MM_Cygwin' => '7.30',
14240             'ExtUtils::MM_DOS' => '7.30',
14241             'ExtUtils::MM_Darwin' => '7.30',
14242             'ExtUtils::MM_MacOS' => '7.30',
14243             'ExtUtils::MM_NW5' => '7.30',
14244             'ExtUtils::MM_OS2' => '7.30',
14245             'ExtUtils::MM_QNX' => '7.30',
14246             'ExtUtils::MM_UWIN' => '7.30',
14247             'ExtUtils::MM_Unix' => '7.30',
14248             'ExtUtils::MM_VMS' => '7.30',
14249             'ExtUtils::MM_VOS' => '7.30',
14250             'ExtUtils::MM_Win32' => '7.30',
14251             'ExtUtils::MM_Win95' => '7.30',
14252             'ExtUtils::MY' => '7.30',
14253             'ExtUtils::MakeMaker' => '7.30',
14254             'ExtUtils::MakeMaker::Config'=> '7.30',
14255             'ExtUtils::MakeMaker::Locale'=> '7.30',
14256             'ExtUtils::MakeMaker::version'=> '7.30',
14257             'ExtUtils::MakeMaker::version::regex'=> '7.30',
14258             'ExtUtils::Mkbootstrap' => '7.30',
14259             'ExtUtils::Mksymlists' => '7.30',
14260             'ExtUtils::Packlist' => '2.14',
14261             'ExtUtils::testlib' => '7.30',
14262             'File::Path' => '2.14',
14263             'Filter::Util::Call' => '1.57',
14264             'GDBM_File' => '1.16',
14265             'Getopt::Long' => '2.5',
14266             'IO::Socket::IP' => '0.39',
14267             'IPC::Cmd' => '0.98',
14268             'JSON::PP' => '2.94',
14269             'JSON::PP::Boolean' => '2.94',
14270             'Locale::Codes' => '3.52',
14271             'Locale::Codes::Constants'=> '3.52',
14272             'Locale::Codes::Country'=> '3.52',
14273             'Locale::Codes::Country_Codes'=> '3.52',
14274             'Locale::Codes::Country_Retired'=> '3.52',
14275             'Locale::Codes::Currency'=> '3.52',
14276             'Locale::Codes::Currency_Codes'=> '3.52',
14277             'Locale::Codes::Currency_Retired'=> '3.52',
14278             'Locale::Codes::LangExt'=> '3.52',
14279             'Locale::Codes::LangExt_Codes'=> '3.52',
14280             'Locale::Codes::LangExt_Retired'=> '3.52',
14281             'Locale::Codes::LangFam'=> '3.52',
14282             'Locale::Codes::LangFam_Codes'=> '3.52',
14283             'Locale::Codes::LangFam_Retired'=> '3.52',
14284             'Locale::Codes::LangVar'=> '3.52',
14285             'Locale::Codes::LangVar_Codes'=> '3.52',
14286             'Locale::Codes::LangVar_Retired'=> '3.52',
14287             'Locale::Codes::Language'=> '3.52',
14288             'Locale::Codes::Language_Codes'=> '3.52',
14289             'Locale::Codes::Language_Retired'=> '3.52',
14290             'Locale::Codes::Script' => '3.52',
14291             'Locale::Codes::Script_Codes'=> '3.52',
14292             'Locale::Codes::Script_Retired'=> '3.52',
14293             'Locale::Country' => '3.52',
14294             'Locale::Currency' => '3.52',
14295             'Locale::Language' => '3.52',
14296             'Locale::Script' => '3.52',
14297             'Module::CoreList' => '5.20170621',
14298             'Module::CoreList::TieHashDelta'=> '5.20170621',
14299             'Module::CoreList::Utils'=> '5.20170621',
14300             'PerlIO::scalar' => '0.27',
14301             'PerlIO::via' => '0.17',
14302             'Storable' => '2.63',
14303             'TAP::Base' => '3.39',
14304             'TAP::Formatter::Base' => '3.39',
14305             'TAP::Formatter::Color' => '3.39',
14306             'TAP::Formatter::Console'=> '3.39',
14307             'TAP::Formatter::Console::ParallelSession'=> '3.39',
14308             'TAP::Formatter::Console::Session'=> '3.39',
14309             'TAP::Formatter::File' => '3.39',
14310             'TAP::Formatter::File::Session'=> '3.39',
14311             'TAP::Formatter::Session'=> '3.39',
14312             'TAP::Harness' => '3.39',
14313             'TAP::Harness::Env' => '3.39',
14314             'TAP::Object' => '3.39',
14315             'TAP::Parser' => '3.39',
14316             'TAP::Parser::Aggregator'=> '3.39',
14317             'TAP::Parser::Grammar' => '3.39',
14318             'TAP::Parser::Iterator' => '3.39',
14319             'TAP::Parser::Iterator::Array'=> '3.39',
14320             'TAP::Parser::Iterator::Process'=> '3.39',
14321             'TAP::Parser::Iterator::Stream'=> '3.39',
14322             'TAP::Parser::IteratorFactory'=> '3.39',
14323             'TAP::Parser::Multiplexer'=> '3.39',
14324             'TAP::Parser::Result' => '3.39',
14325             'TAP::Parser::Result::Bailout'=> '3.39',
14326             'TAP::Parser::Result::Comment'=> '3.39',
14327             'TAP::Parser::Result::Plan'=> '3.39',
14328             'TAP::Parser::Result::Pragma'=> '3.39',
14329             'TAP::Parser::Result::Test'=> '3.39',
14330             'TAP::Parser::Result::Unknown'=> '3.39',
14331             'TAP::Parser::Result::Version'=> '3.39',
14332             'TAP::Parser::Result::YAML'=> '3.39',
14333             'TAP::Parser::ResultFactory'=> '3.39',
14334             'TAP::Parser::Scheduler'=> '3.39',
14335             'TAP::Parser::Scheduler::Job'=> '3.39',
14336             'TAP::Parser::Scheduler::Spinner'=> '3.39',
14337             'TAP::Parser::Source' => '3.39',
14338             'TAP::Parser::SourceHandler'=> '3.39',
14339             'TAP::Parser::SourceHandler::Executable'=> '3.39',
14340             'TAP::Parser::SourceHandler::File'=> '3.39',
14341             'TAP::Parser::SourceHandler::Handle'=> '3.39',
14342             'TAP::Parser::SourceHandler::Perl'=> '3.39',
14343             'TAP::Parser::SourceHandler::RawTAP'=> '3.39',
14344             'TAP::Parser::YAMLish::Reader'=> '3.39',
14345             'TAP::Parser::YAMLish::Writer'=> '3.39',
14346             'Test::Harness' => '3.39',
14347             'XS::APItest' => '0.89',
14348             '_charnames' => '1.45',
14349             'charnames' => '1.45',
14350             'if' => '0.0607',
14351             'mro' => '1.21',
14352             'threads' => '2.16',
14353             'threads::shared' => '1.57',
14354             'version' => '0.9918',
14355             'version::regex' => '0.9918',
14356             },
14357             removed => {
14358             }
14359             },
14360             5.022004 => {
14361             delta_from => 5.022003,
14362             changed => {
14363             'B::Op_private' => '5.022004',
14364             'Config' => '5.022004',
14365             'Module::CoreList' => '5.20170715_22',
14366             'Module::CoreList::TieHashDelta'=> '5.20170715_22',
14367             'Module::CoreList::Utils'=> '5.20170715_22',
14368             'base' => '2.22_01',
14369             },
14370             removed => {
14371             }
14372             },
14373             5.024002 => {
14374             delta_from => 5.024001,
14375             changed => {
14376             'B::Op_private' => '5.024002',
14377             'Config' => '5.024002',
14378             'Module::CoreList' => '5.20170715_24',
14379             'Module::CoreList::TieHashDelta'=> '5.20170715_24',
14380             'Module::CoreList::Utils'=> '5.20170715_24',
14381             'base' => '2.23_01',
14382             },
14383             removed => {
14384             }
14385             },
14386             5.027002 => {
14387             delta_from => 5.027001,
14388             changed => {
14389             'B::Op_private' => '5.027002',
14390             'Carp' => '1.43',
14391             'Carp::Heavy' => '1.43',
14392             'Config' => '5.027002',
14393             'Cwd' => '3.68',
14394             'Encode' => '2.92',
14395             'Encode::Alias' => '2.23',
14396             'Encode::CN::HZ' => '2.09',
14397             'Encode::Encoding' => '2.08',
14398             'Encode::GSM0338' => '2.07',
14399             'Encode::Guess' => '2.07',
14400             'Encode::JP::JIS7' => '2.07',
14401             'Encode::KR::2022_KR' => '2.04',
14402             'Encode::MIME::Header' => '2.27',
14403             'Encode::MIME::Header::ISO_2022_JP'=> '1.09',
14404             'Encode::Unicode' => '2.16',
14405             'Encode::Unicode::UTF7' => '2.10',
14406             'ExtUtils::CBuilder' => '0.280228',
14407             'ExtUtils::CBuilder::Base'=> '0.280228',
14408             'ExtUtils::CBuilder::Platform::Unix'=> '0.280228',
14409             'ExtUtils::CBuilder::Platform::VMS'=> '0.280228',
14410             'ExtUtils::CBuilder::Platform::Windows'=> '0.280228',
14411             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228',
14412             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228',
14413             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228',
14414             'ExtUtils::CBuilder::Platform::aix'=> '0.280228',
14415             'ExtUtils::CBuilder::Platform::android'=> '0.280228',
14416             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228',
14417             'ExtUtils::CBuilder::Platform::darwin'=> '0.280228',
14418             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228',
14419             'ExtUtils::CBuilder::Platform::os2'=> '0.280228',
14420             'File::Glob' => '1.29',
14421             'File::Spec' => '3.68',
14422             'File::Spec::AmigaOS' => '3.68',
14423             'File::Spec::Cygwin' => '3.68',
14424             'File::Spec::Epoc' => '3.68',
14425             'File::Spec::Functions' => '3.68',
14426             'File::Spec::Mac' => '3.68',
14427             'File::Spec::OS2' => '3.68',
14428             'File::Spec::Unix' => '3.68',
14429             'File::Spec::VMS' => '3.68',
14430             'File::Spec::Win32' => '3.68',
14431             'List::Util' => '1.48',
14432             'List::Util::XS' => '1.48',
14433             'Math::BigRat' => '0.2613',
14434             'Module::CoreList' => '5.20170720',
14435             'Module::CoreList::TieHashDelta'=> '5.20170720',
14436             'Module::CoreList::Utils'=> '5.20170720',
14437             'Opcode' => '1.40',
14438             'POSIX' => '1.77',
14439             'PerlIO::scalar' => '0.29',
14440             'Scalar::Util' => '1.48',
14441             'Sub::Util' => '1.48',
14442             'Time::HiRes' => '1.9743',
14443             'Time::Piece' => '1.3201',
14444             'Time::Seconds' => '1.3201',
14445             'Unicode' => '10.0.0',
14446             'XS::APItest' => '0.90',
14447             'arybase' => '0.13',
14448             'encoding' => '2.20',
14449             'feature' => '1.49',
14450             're' => '0.35',
14451             },
14452             removed => {
14453             }
14454             },
14455             5.027003 => {
14456             delta_from => 5.027002,
14457             changed => {
14458             'B' => '1.69',
14459             'B::Concise' => '1.001',
14460             'B::Debug' => '1.25',
14461             'B::Deparse' => '1.42',
14462             'B::Op_private' => '5.027003',
14463             'Config' => '5.027003',
14464             'Data::Dumper' => '2.167_02',
14465             'Devel::Peek' => '1.27',
14466             'ExtUtils::Constant' => '0.24',
14467             'ExtUtils::Constant::Base'=> '0.06',
14468             'ExtUtils::Constant::ProxySubs'=> '0.09',
14469             'ExtUtils::Constant::Utils'=> '0.04',
14470             'ExtUtils::ParseXS' => '3.35',
14471             'ExtUtils::ParseXS::Constants'=> '3.35',
14472             'ExtUtils::ParseXS::CountLines'=> '3.35',
14473             'ExtUtils::ParseXS::Eval'=> '3.35',
14474             'ExtUtils::ParseXS::Utilities'=> '3.35',
14475             'ExtUtils::Typemaps' => '3.35',
14476             'ExtUtils::Typemaps::Cmd'=> '3.35',
14477             'ExtUtils::Typemaps::InputMap'=> '3.35',
14478             'ExtUtils::Typemaps::OutputMap'=> '3.35',
14479             'ExtUtils::Typemaps::Type'=> '3.35',
14480             'Filter::Simple' => '0.94',
14481             'Module::CoreList' => '5.20170821',
14482             'Module::CoreList::TieHashDelta'=> '5.20170821',
14483             'Module::CoreList::Utils'=> '5.20170821',
14484             'SelfLoader' => '1.24',
14485             'Storable' => '2.64',
14486             'XS::APItest' => '0.91',
14487             'base' => '2.26',
14488             'threads' => '2.17',
14489             'utf8' => '1.20',
14490             },
14491             removed => {
14492             }
14493             },
14494             5.027004 => {
14495             delta_from => 5.027003,
14496             changed => {
14497             'B::Op_private' => '5.027004',
14498             'Config' => '5.027004',
14499             'File::Glob' => '1.30',
14500             'I18N::Langinfo' => '0.14',
14501             'Module::CoreList' => '5.20170920',
14502             'Module::CoreList::TieHashDelta'=> '5.20170920',
14503             'Module::CoreList::Utils'=> '5.20170920',
14504             'Term::ReadLine' => '1.17',
14505             'VMS::Stdio' => '2.42',
14506             'XS::APItest' => '0.92',
14507             'attributes' => '0.31',
14508             'sort' => '2.03',
14509             'threads' => '2.18',
14510             },
14511             removed => {
14512             }
14513             },
14514             5.024003 => {
14515             delta_from => 5.024002,
14516             changed => {
14517             'B::Op_private' => '5.024003',
14518             'Config' => '5.024003',
14519             'Module::CoreList' => '5.20170922_24',
14520             'Module::CoreList::TieHashDelta'=> '5.20170922_24',
14521             'Module::CoreList::Utils'=> '5.20170922_24',
14522             'POSIX' => '1.65_01',
14523             'Time::HiRes' => '1.9741',
14524             },
14525             removed => {
14526             }
14527             },
14528             5.026001 => {
14529             delta_from => 5.026000,
14530             changed => {
14531             'B::Op_private' => '5.026001',
14532             'Config' => '5.026001',
14533             'Module::CoreList' => '5.20170922_26',
14534             'Module::CoreList::TieHashDelta'=> '5.20170922_26',
14535             'Module::CoreList::Utils'=> '5.20170922_26',
14536             '_charnames' => '1.45',
14537             'base' => '2.26',
14538             'charnames' => '1.45',
14539             },
14540             removed => {
14541             }
14542             },
14543             5.027005 => {
14544             delta_from => 5.027004,
14545             changed => {
14546             'B' => '1.70',
14547             'B::Concise' => '1.002',
14548             'B::Deparse' => '1.43',
14549             'B::Op_private' => '5.027005',
14550             'B::Xref' => '1.07',
14551             'Config' => '5.027005',
14552             'Config::Perl::V' => '0.29',
14553             'Digest::SHA' => '5.98',
14554             'Encode' => '2.93',
14555             'Encode::CN::HZ' => '2.10',
14556             'Encode::JP::JIS7' => '2.08',
14557             'Encode::MIME::Header' => '2.28',
14558             'Encode::MIME::Name' => '1.03',
14559             'File::Fetch' => '0.54',
14560             'File::Path' => '2.15',
14561             'List::Util' => '1.49',
14562             'List::Util::XS' => '1.49',
14563             'Locale::Codes' => '3.54',
14564             'Locale::Codes::Constants'=> '3.54',
14565             'Locale::Codes::Country'=> '3.54',
14566             'Locale::Codes::Country_Codes'=> '3.54',
14567             'Locale::Codes::Country_Retired'=> '3.54',
14568             'Locale::Codes::Currency'=> '3.54',
14569             'Locale::Codes::Currency_Codes'=> '3.54',
14570             'Locale::Codes::Currency_Retired'=> '3.54',
14571             'Locale::Codes::LangExt'=> '3.54',
14572             'Locale::Codes::LangExt_Codes'=> '3.54',
14573             'Locale::Codes::LangExt_Retired'=> '3.54',
14574             'Locale::Codes::LangFam'=> '3.54',
14575             'Locale::Codes::LangFam_Codes'=> '3.54',
14576             'Locale::Codes::LangFam_Retired'=> '3.54',
14577             'Locale::Codes::LangVar'=> '3.54',
14578             'Locale::Codes::LangVar_Codes'=> '3.54',
14579             'Locale::Codes::LangVar_Retired'=> '3.54',
14580             'Locale::Codes::Language'=> '3.54',
14581             'Locale::Codes::Language_Codes'=> '3.54',
14582             'Locale::Codes::Language_Retired'=> '3.54',
14583             'Locale::Codes::Script' => '3.54',
14584             'Locale::Codes::Script_Codes'=> '3.54',
14585             'Locale::Codes::Script_Retired'=> '3.54',
14586             'Locale::Country' => '3.54',
14587             'Locale::Currency' => '3.54',
14588             'Locale::Language' => '3.54',
14589             'Locale::Script' => '3.54',
14590             'Math::BigFloat' => '1.999811',
14591             'Math::BigInt' => '1.999811',
14592             'Math::BigInt::Calc' => '1.999811',
14593             'Math::BigInt::CalcEmu' => '1.999811',
14594             'Math::BigInt::FastCalc'=> '0.5006',
14595             'Math::BigInt::Lib' => '1.999811',
14596             'Module::CoreList' => '5.20171020',
14597             'Module::CoreList::TieHashDelta'=> '5.20171020',
14598             'Module::CoreList::Utils'=> '5.20171020',
14599             'NEXT' => '0.67_01',
14600             'POSIX' => '1.78',
14601             'Pod::Perldoc' => '3.2801',
14602             'Scalar::Util' => '1.49',
14603             'Sub::Util' => '1.49',
14604             'Sys::Hostname' => '1.21',
14605             'Test2' => '1.302103',
14606             'Test2::API' => '1.302103',
14607             'Test2::API::Breakage' => '1.302103',
14608             'Test2::API::Context' => '1.302103',
14609             'Test2::API::Instance' => '1.302103',
14610             'Test2::API::Stack' => '1.302103',
14611             'Test2::Event' => '1.302103',
14612             'Test2::Event::Bail' => '1.302103',
14613             'Test2::Event::Diag' => '1.302103',
14614             'Test2::Event::Encoding'=> '1.302103',
14615             'Test2::Event::Exception'=> '1.302103',
14616             'Test2::Event::Fail' => '1.302103',
14617             'Test2::Event::Generic' => '1.302103',
14618             'Test2::Event::Note' => '1.302103',
14619             'Test2::Event::Ok' => '1.302103',
14620             'Test2::Event::Pass' => '1.302103',
14621             'Test2::Event::Plan' => '1.302103',
14622             'Test2::Event::Skip' => '1.302103',
14623             'Test2::Event::Subtest' => '1.302103',
14624             'Test2::Event::TAP::Version'=> '1.302103',
14625             'Test2::Event::Waiting' => '1.302103',
14626             'Test2::EventFacet' => '1.302103',
14627             'Test2::EventFacet::About'=> '1.302103',
14628             'Test2::EventFacet::Amnesty'=> '1.302103',
14629             'Test2::EventFacet::Assert'=> '1.302103',
14630             'Test2::EventFacet::Control'=> '1.302103',
14631             'Test2::EventFacet::Error'=> '1.302103',
14632             'Test2::EventFacet::Info'=> '1.302103',
14633             'Test2::EventFacet::Meta'=> '1.302103',
14634             'Test2::EventFacet::Parent'=> '1.302103',
14635             'Test2::EventFacet::Plan'=> '1.302103',
14636             'Test2::EventFacet::Trace'=> '1.302103',
14637             'Test2::Formatter' => '1.302103',
14638             'Test2::Formatter::TAP' => '1.302103',
14639             'Test2::Hub' => '1.302103',
14640             'Test2::Hub::Interceptor'=> '1.302103',
14641             'Test2::Hub::Interceptor::Terminator'=> '1.302103',
14642             'Test2::Hub::Subtest' => '1.302103',
14643             'Test2::IPC' => '1.302103',
14644             'Test2::IPC::Driver' => '1.302103',
14645             'Test2::IPC::Driver::Files'=> '1.302103',
14646             'Test2::Tools::Tiny' => '1.302103',
14647             'Test2::Util' => '1.302103',
14648             'Test2::Util::ExternalMeta'=> '1.302103',
14649             'Test2::Util::Facets2Legacy'=> '1.302103',
14650             'Test2::Util::HashBase' => '0.005',
14651             'Test2::Util::Trace' => '1.302103',
14652             'Test::Builder' => '1.302103',
14653             'Test::Builder::Formatter'=> '1.302103',
14654             'Test::Builder::IO::Scalar'=> '2.114',
14655             'Test::Builder::Module' => '1.302103',
14656             'Test::Builder::Tester' => '1.302103',
14657             'Test::Builder::Tester::Color'=> '1.302103',
14658             'Test::Builder::TodoDiag'=> '1.302103',
14659             'Test::More' => '1.302103',
14660             'Test::Simple' => '1.302103',
14661             'Test::Tester' => '1.302103',
14662             'Test::Tester::Capture' => '1.302103',
14663             'Test::Tester::CaptureRunner'=> '1.302103',
14664             'Test::Tester::Delegate'=> '1.302103',
14665             'Test::use::ok' => '1.302103',
14666             'Time::HiRes' => '1.9746',
14667             'Time::Piece' => '1.3202',
14668             'Time::Seconds' => '1.3202',
14669             'arybase' => '0.14',
14670             'encoding' => '2.21',
14671             'ok' => '1.302103',
14672             },
14673             removed => {
14674             'Test2::Event::Info' => 1,
14675             }
14676             },
14677             5.027006 => {
14678             delta_from => 5.027005,
14679             changed => {
14680             'Attribute::Handlers' => '1.01',
14681             'B' => '1.72',
14682             'B::Concise' => '1.003',
14683             'B::Deparse' => '1.45',
14684             'B::Op_private' => '5.027006',
14685             'Carp' => '1.44',
14686             'Carp::Heavy' => '1.44',
14687             'Compress::Raw::Zlib' => '2.075',
14688             'Config' => '5.027006',
14689             'Config::Extensions' => '0.02',
14690             'Cwd' => '3.70',
14691             'DynaLoader' => '1.44',
14692             'ExtUtils::CBuilder' => '0.280229',
14693             'ExtUtils::CBuilder::Platform::Unix'=> '0.280229',
14694             'ExtUtils::CBuilder::Platform::VMS'=> '0.280229',
14695             'ExtUtils::CBuilder::Platform::Windows'=> '0.280229',
14696             'ExtUtils::CBuilder::Platform::aix'=> '0.280229',
14697             'ExtUtils::CBuilder::Platform::android'=> '0.280229',
14698             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280229',
14699             'ExtUtils::CBuilder::Platform::darwin'=> '0.280229',
14700             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280229',
14701             'ExtUtils::CBuilder::Platform::os2'=> '0.280229',
14702             'ExtUtils::Embed' => '1.35',
14703             'ExtUtils::Miniperl' => '1.07',
14704             'ExtUtils::ParseXS' => '3.36',
14705             'ExtUtils::ParseXS::Constants'=> '3.36',
14706             'ExtUtils::ParseXS::CountLines'=> '3.36',
14707             'ExtUtils::ParseXS::Eval'=> '3.36',
14708             'ExtUtils::ParseXS::Utilities'=> '3.36',
14709             'ExtUtils::Typemaps' => '3.36',
14710             'ExtUtils::Typemaps::Cmd'=> '3.36',
14711             'ExtUtils::Typemaps::InputMap'=> '3.36',
14712             'ExtUtils::Typemaps::OutputMap'=> '3.36',
14713             'ExtUtils::Typemaps::Type'=> '3.36',
14714             'ExtUtils::XSSymSet' => '1.4',
14715             'File::Copy' => '2.33',
14716             'File::Spec' => '3.69',
14717             'File::Spec::AmigaOS' => '3.69',
14718             'File::Spec::Cygwin' => '3.69',
14719             'File::Spec::Epoc' => '3.69',
14720             'File::Spec::Functions' => '3.69',
14721             'File::Spec::Mac' => '3.69',
14722             'File::Spec::OS2' => '3.69',
14723             'File::Spec::Unix' => '3.69',
14724             'File::Spec::VMS' => '3.69',
14725             'File::Spec::Win32' => '3.69',
14726             'File::stat' => '1.08',
14727             'FileCache' => '1.10',
14728             'Filter::Simple' => '0.95',
14729             'Hash::Util::FieldHash' => '1.20',
14730             'I18N::LangTags' => '0.43',
14731             'I18N::LangTags::Detect'=> '1.07',
14732             'I18N::LangTags::List' => '0.40',
14733             'I18N::Langinfo' => '0.15',
14734             'IO::Handle' => '1.37',
14735             'IO::Select' => '1.23',
14736             'Locale::Maketext' => '1.29',
14737             'Module::CoreList' => '5.20171120',
14738             'Module::CoreList::TieHashDelta'=> '5.20171120',
14739             'Module::CoreList::Utils'=> '5.20171120',
14740             'Net::Cmd' => '3.11',
14741             'Net::Config' => '3.11',
14742             'Net::Domain' => '3.11',
14743             'Net::FTP' => '3.11',
14744             'Net::FTP::A' => '3.11',
14745             'Net::FTP::E' => '3.11',
14746             'Net::FTP::I' => '3.11',
14747             'Net::FTP::L' => '3.11',
14748             'Net::FTP::dataconn' => '3.11',
14749             'Net::NNTP' => '3.11',
14750             'Net::Netrc' => '3.11',
14751             'Net::POP3' => '3.11',
14752             'Net::Ping' => '2.62',
14753             'Net::SMTP' => '3.11',
14754             'Net::Time' => '3.11',
14755             'Net::hostent' => '1.02',
14756             'Net::netent' => '1.01',
14757             'Net::protoent' => '1.01',
14758             'Net::servent' => '1.02',
14759             'O' => '1.03',
14760             'ODBM_File' => '1.15',
14761             'Opcode' => '1.41',
14762             'POSIX' => '1.80',
14763             'Pod::Html' => '1.2203',
14764             'SelfLoader' => '1.25',
14765             'Socket' => '2.020_04',
14766             'Storable' => '2.65',
14767             'Test' => '1.31',
14768             'Test2' => '1.302111',
14769             'Test2::API' => '1.302111',
14770             'Test2::API::Breakage' => '1.302111',
14771             'Test2::API::Context' => '1.302111',
14772             'Test2::API::Instance' => '1.302111',
14773             'Test2::API::Stack' => '1.302111',
14774             'Test2::Event' => '1.302111',
14775             'Test2::Event::Bail' => '1.302111',
14776             'Test2::Event::Diag' => '1.302111',
14777             'Test2::Event::Encoding'=> '1.302111',
14778             'Test2::Event::Exception'=> '1.302111',
14779             'Test2::Event::Fail' => '1.302111',
14780             'Test2::Event::Generic' => '1.302111',
14781             'Test2::Event::Note' => '1.302111',
14782             'Test2::Event::Ok' => '1.302111',
14783             'Test2::Event::Pass' => '1.302111',
14784             'Test2::Event::Plan' => '1.302111',
14785             'Test2::Event::Skip' => '1.302111',
14786             'Test2::Event::Subtest' => '1.302111',
14787             'Test2::Event::TAP::Version'=> '1.302111',
14788             'Test2::Event::Waiting' => '1.302111',
14789             'Test2::EventFacet' => '1.302111',
14790             'Test2::EventFacet::About'=> '1.302111',
14791             'Test2::EventFacet::Amnesty'=> '1.302111',
14792             'Test2::EventFacet::Assert'=> '1.302111',
14793             'Test2::EventFacet::Control'=> '1.302111',
14794             'Test2::EventFacet::Error'=> '1.302111',
14795             'Test2::EventFacet::Info'=> '1.302111',
14796             'Test2::EventFacet::Meta'=> '1.302111',
14797             'Test2::EventFacet::Parent'=> '1.302111',
14798             'Test2::EventFacet::Plan'=> '1.302111',
14799             'Test2::EventFacet::Trace'=> '1.302111',
14800             'Test2::Formatter' => '1.302111',
14801             'Test2::Formatter::TAP' => '1.302111',
14802             'Test2::Hub' => '1.302111',
14803             'Test2::Hub::Interceptor'=> '1.302111',
14804             'Test2::Hub::Interceptor::Terminator'=> '1.302111',
14805             'Test2::Hub::Subtest' => '1.302111',
14806             'Test2::IPC' => '1.302111',
14807             'Test2::IPC::Driver' => '1.302111',
14808             'Test2::IPC::Driver::Files'=> '1.302111',
14809             'Test2::Tools::Tiny' => '1.302111',
14810             'Test2::Util' => '1.302111',
14811             'Test2::Util::ExternalMeta'=> '1.302111',
14812             'Test2::Util::Facets2Legacy'=> '1.302111',
14813             'Test2::Util::HashBase' => '1.302111',
14814             'Test2::Util::Trace' => '1.302111',
14815             'Test::Builder' => '1.302111',
14816             'Test::Builder::Formatter'=> '1.302111',
14817             'Test::Builder::Module' => '1.302111',
14818             'Test::Builder::Tester' => '1.302111',
14819             'Test::Builder::Tester::Color'=> '1.302111',
14820             'Test::Builder::TodoDiag'=> '1.302111',
14821             'Test::More' => '1.302111',
14822             'Test::Simple' => '1.302111',
14823             'Test::Tester' => '1.302111',
14824             'Test::Tester::Capture' => '1.302111',
14825             'Test::Tester::CaptureRunner'=> '1.302111',
14826             'Test::Tester::Delegate'=> '1.302111',
14827             'Test::use::ok' => '1.302111',
14828             'Tie::Array' => '1.07',
14829             'Tie::StdHandle' => '4.5',
14830             'Time::HiRes' => '1.9747',
14831             'Time::gmtime' => '1.04',
14832             'Time::localtime' => '1.03',
14833             'Unicode::Collate' => '1.23',
14834             'Unicode::Collate::CJK::Big5'=> '1.23',
14835             'Unicode::Collate::CJK::GB2312'=> '1.23',
14836             'Unicode::Collate::CJK::JISX0208'=> '1.23',
14837             'Unicode::Collate::CJK::Korean'=> '1.23',
14838             'Unicode::Collate::CJK::Pinyin'=> '1.23',
14839             'Unicode::Collate::CJK::Stroke'=> '1.23',
14840             'Unicode::Collate::CJK::Zhuyin'=> '1.23',
14841             'Unicode::Collate::Locale'=> '1.23',
14842             'Unicode::Normalize' => '1.26',
14843             'User::grent' => '1.02',
14844             'User::pwent' => '1.01',
14845             'VMS::DCLsym' => '1.09',
14846             'VMS::Stdio' => '2.44',
14847             'XS::APItest' => '0.93',
14848             'XS::Typemap' => '0.16',
14849             'XSLoader' => '0.28',
14850             'attributes' => '0.32',
14851             'base' => '2.27',
14852             'blib' => '1.07',
14853             'experimental' => '0.017',
14854             'fields' => '2.24',
14855             'ok' => '1.302111',
14856             're' => '0.36',
14857             'sort' => '2.04',
14858             'threads' => '2.19',
14859             'warnings' => '1.38',
14860             },
14861             removed => {
14862             }
14863             },
14864             5.027007 => {
14865             delta_from => 5.027006,
14866             changed => {
14867             'App::Cpan' => '1.67',
14868             'B' => '1.73',
14869             'B::Debug' => '1.26',
14870             'B::Deparse' => '1.46',
14871             'B::Op_private' => '5.027007',
14872             'CPAN' => '2.20',
14873             'CPAN::Distribution' => '2.19',
14874             'CPAN::FTP' => '5.5011',
14875             'CPAN::FirstTime' => '5.5311',
14876             'CPAN::Shell' => '5.5007',
14877             'Carp' => '1.45',
14878             'Carp::Heavy' => '1.45',
14879             'Compress::Raw::Zlib' => '2.076',
14880             'Config' => '5.027007',
14881             'Cwd' => '3.71',
14882             'Data::Dumper' => '2.169',
14883             'Devel::PPPort' => '3.37',
14884             'Digest::SHA' => '6.00',
14885             'DynaLoader' => '1.45',
14886             'ExtUtils::CBuilder' => '0.280230',
14887             'ExtUtils::CBuilder::Base'=> '0.280230',
14888             'ExtUtils::CBuilder::Platform::Unix'=> '0.280230',
14889             'ExtUtils::CBuilder::Platform::VMS'=> '0.280230',
14890             'ExtUtils::CBuilder::Platform::Windows'=> '0.280230',
14891             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280230',
14892             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280230',
14893             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280230',
14894             'ExtUtils::CBuilder::Platform::aix'=> '0.280230',
14895             'ExtUtils::CBuilder::Platform::android'=> '0.280230',
14896             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280230',
14897             'ExtUtils::CBuilder::Platform::darwin'=> '0.280230',
14898             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280230',
14899             'ExtUtils::CBuilder::Platform::os2'=> '0.280230',
14900             'ExtUtils::Typemaps' => '3.37',
14901             'File::Fetch' => '0.56',
14902             'File::Spec' => '3.71',
14903             'File::Spec::AmigaOS' => '3.71',
14904             'File::Spec::Cygwin' => '3.71',
14905             'File::Spec::Epoc' => '3.71',
14906             'File::Spec::Functions' => '3.71',
14907             'File::Spec::Mac' => '3.71',
14908             'File::Spec::OS2' => '3.71',
14909             'File::Spec::Unix' => '3.71',
14910             'File::Spec::VMS' => '3.71',
14911             'File::Spec::Win32' => '3.71',
14912             'Filter::Util::Call' => '1.58',
14913             'GDBM_File' => '1.17',
14914             'JSON::PP' => '2.97000',
14915             'JSON::PP::Boolean' => '2.97000',
14916             'Locale::Codes' => '3.55',
14917             'Locale::Codes::Constants'=> '3.55',
14918             'Locale::Codes::Country'=> '3.55',
14919             'Locale::Codes::Country_Codes'=> '3.55',
14920             'Locale::Codes::Country_Retired'=> '3.55',
14921             'Locale::Codes::Currency'=> '3.55',
14922             'Locale::Codes::Currency_Codes'=> '3.55',
14923             'Locale::Codes::Currency_Retired'=> '3.55',
14924             'Locale::Codes::LangExt'=> '3.55',
14925             'Locale::Codes::LangExt_Codes'=> '3.55',
14926             'Locale::Codes::LangExt_Retired'=> '3.55',
14927             'Locale::Codes::LangFam'=> '3.55',
14928             'Locale::Codes::LangFam_Codes'=> '3.55',
14929             'Locale::Codes::LangFam_Retired'=> '3.55',
14930             'Locale::Codes::LangVar'=> '3.55',
14931             'Locale::Codes::LangVar_Codes'=> '3.55',
14932             'Locale::Codes::LangVar_Retired'=> '3.55',
14933             'Locale::Codes::Language'=> '3.55',
14934             'Locale::Codes::Language_Codes'=> '3.55',
14935             'Locale::Codes::Language_Retired'=> '3.55',
14936             'Locale::Codes::Script' => '3.55',
14937             'Locale::Codes::Script_Codes'=> '3.55',
14938             'Locale::Codes::Script_Retired'=> '3.55',
14939             'Locale::Country' => '3.55',
14940             'Locale::Currency' => '3.55',
14941             'Locale::Language' => '3.55',
14942             'Locale::Script' => '3.55',
14943             'Module::CoreList' => '5.20171220',
14944             'Module::CoreList::TieHashDelta'=> '5.20171220',
14945             'Module::CoreList::Utils'=> '5.20171220',
14946             'Opcode' => '1.42',
14947             'POSIX' => '1.81',
14948             'Pod::Functions' => '1.12',
14949             'Pod::Functions::Functions'=> '1.12',
14950             'Pod::Html' => '1.23',
14951             'Sys::Hostname' => '1.22',
14952             'Test2' => '1.302120',
14953             'Test2::API' => '1.302120',
14954             'Test2::API::Breakage' => '1.302120',
14955             'Test2::API::Context' => '1.302120',
14956             'Test2::API::Instance' => '1.302120',
14957             'Test2::API::Stack' => '1.302120',
14958             'Test2::Event' => '1.302120',
14959             'Test2::Event::Bail' => '1.302120',
14960             'Test2::Event::Diag' => '1.302120',
14961             'Test2::Event::Encoding'=> '1.302120',
14962             'Test2::Event::Exception'=> '1.302120',
14963             'Test2::Event::Fail' => '1.302120',
14964             'Test2::Event::Generic' => '1.302120',
14965             'Test2::Event::Note' => '1.302120',
14966             'Test2::Event::Ok' => '1.302120',
14967             'Test2::Event::Pass' => '1.302120',
14968             'Test2::Event::Plan' => '1.302120',
14969             'Test2::Event::Skip' => '1.302120',
14970             'Test2::Event::Subtest' => '1.302120',
14971             'Test2::Event::TAP::Version'=> '1.302120',
14972             'Test2::Event::Waiting' => '1.302120',
14973             'Test2::EventFacet' => '1.302120',
14974             'Test2::EventFacet::About'=> '1.302120',
14975             'Test2::EventFacet::Amnesty'=> '1.302120',
14976             'Test2::EventFacet::Assert'=> '1.302120',
14977             'Test2::EventFacet::Control'=> '1.302120',
14978             'Test2::EventFacet::Error'=> '1.302120',
14979             'Test2::EventFacet::Info'=> '1.302120',
14980             'Test2::EventFacet::Meta'=> '1.302120',
14981             'Test2::EventFacet::Parent'=> '1.302120',
14982             'Test2::EventFacet::Plan'=> '1.302120',
14983             'Test2::EventFacet::Trace'=> '1.302120',
14984             'Test2::Formatter' => '1.302120',
14985             'Test2::Formatter::TAP' => '1.302120',
14986             'Test2::Hub' => '1.302120',
14987             'Test2::Hub::Interceptor'=> '1.302120',
14988             'Test2::Hub::Interceptor::Terminator'=> '1.302120',
14989             'Test2::Hub::Subtest' => '1.302120',
14990             'Test2::IPC' => '1.302120',
14991             'Test2::IPC::Driver' => '1.302120',
14992             'Test2::IPC::Driver::Files'=> '1.302120',
14993             'Test2::Tools::Tiny' => '1.302120',
14994             'Test2::Util' => '1.302120',
14995             'Test2::Util::ExternalMeta'=> '1.302120',
14996             'Test2::Util::Facets2Legacy'=> '1.302120',
14997             'Test2::Util::HashBase' => '1.302120',
14998             'Test2::Util::Trace' => '1.302120',
14999             'Test::Builder' => '1.302120',
15000             'Test::Builder::Formatter'=> '1.302120',
15001             'Test::Builder::Module' => '1.302120',
15002             'Test::Builder::Tester' => '1.302120',
15003             'Test::Builder::Tester::Color'=> '1.302120',
15004             'Test::Builder::TodoDiag'=> '1.302120',
15005             'Test::More' => '1.302120',
15006             'Test::Simple' => '1.302120',
15007             'Test::Tester' => '1.302120',
15008             'Test::Tester::Capture' => '1.302120',
15009             'Test::Tester::CaptureRunner'=> '1.302120',
15010             'Test::Tester::Delegate'=> '1.302120',
15011             'Test::use::ok' => '1.302120',
15012             'Time::HiRes' => '1.9748',
15013             'Time::Piece' => '1.3203',
15014             'Time::Seconds' => '1.3203',
15015             'Unicode::Collate' => '1.25',
15016             'Unicode::Collate::CJK::Big5'=> '1.25',
15017             'Unicode::Collate::CJK::GB2312'=> '1.25',
15018             'Unicode::Collate::CJK::JISX0208'=> '1.25',
15019             'Unicode::Collate::CJK::Korean'=> '1.25',
15020             'Unicode::Collate::CJK::Pinyin'=> '1.25',
15021             'Unicode::Collate::CJK::Stroke'=> '1.25',
15022             'Unicode::Collate::CJK::Zhuyin'=> '1.25',
15023             'Unicode::Collate::Locale'=> '1.25',
15024             'Unicode::UCD' => '0.69',
15025             'XS::APItest' => '0.94',
15026             'XSLoader' => '0.29',
15027             'arybase' => '0.15',
15028             'autodie::exception' => '2.29001',
15029             'autodie::hints' => '2.29001',
15030             'experimental' => '0.019',
15031             'feature' => '1.50',
15032             'ok' => '1.302120',
15033             'overload' => '1.29',
15034             'threads' => '2.21',
15035             'threads::shared' => '1.58',
15036             'warnings' => '1.39',
15037             },
15038             removed => {
15039             }
15040             },
15041             5.027008 => {
15042             delta_from => 5.027007,
15043             changed => {
15044             'B' => '1.74',
15045             'B::Deparse' => '1.47',
15046             'B::Op_private' => '5.027008',
15047             'Config' => '5.027008',
15048             'Cwd' => '3.72',
15049             'Data::Dumper' => '2.170',
15050             'Devel::PPPort' => '3.38',
15051             'Digest::SHA' => '6.01',
15052             'Encode' => '2.94',
15053             'Encode::Alias' => '2.24',
15054             'ExtUtils::Miniperl' => '1.08',
15055             'File::Spec' => '3.72',
15056             'File::Spec::AmigaOS' => '3.72',
15057             'File::Spec::Cygwin' => '3.72',
15058             'File::Spec::Epoc' => '3.72',
15059             'File::Spec::Functions' => '3.72',
15060             'File::Spec::Mac' => '3.72',
15061             'File::Spec::OS2' => '3.72',
15062             'File::Spec::Unix' => '3.72',
15063             'File::Spec::VMS' => '3.72',
15064             'File::Spec::Win32' => '3.72',
15065             'JSON::PP' => '2.97001',
15066             'JSON::PP::Boolean' => '2.97001',
15067             'Module::CoreList' => '5.20180120',
15068             'Module::CoreList::TieHashDelta'=> '5.20180120',
15069             'Module::CoreList::Utils'=> '5.20180120',
15070             'Opcode' => '1.43',
15071             'Pod::Functions' => '1.13',
15072             'Pod::Functions::Functions'=> '1.13',
15073             'Pod::Html' => '1.24',
15074             'Pod::Man' => '4.10',
15075             'Pod::ParseLink' => '4.10',
15076             'Pod::Text' => '4.10',
15077             'Pod::Text::Color' => '4.10',
15078             'Pod::Text::Overstrike' => '4.10',
15079             'Pod::Text::Termcap' => '4.10',
15080             'Socket' => '2.027',
15081             'Time::HiRes' => '1.9752',
15082             'Unicode::UCD' => '0.70',
15083             'XS::APItest' => '0.95',
15084             'XSLoader' => '0.30',
15085             'autodie::exception' => '2.29002',
15086             'feature' => '1.51',
15087             'overload' => '1.30',
15088             'utf8' => '1.21',
15089             'warnings' => '1.40',
15090             },
15091             removed => {
15092             }
15093             },
15094             5.027009 => {
15095             delta_from => 5.027008,
15096             changed => {
15097             'B::Op_private' => '5.027009',
15098             'Carp' => '1.46',
15099             'Carp::Heavy' => '1.46',
15100             'Config' => '5.027009',
15101             'Cwd' => '3.74',
15102             'Devel::PPPort' => '3.39',
15103             'Encode' => '2.96',
15104             'Encode::Unicode' => '2.17',
15105             'Errno' => '1.29',
15106             'ExtUtils::Command' => '7.32',
15107             'ExtUtils::Command::MM' => '7.32',
15108             'ExtUtils::Liblist' => '7.32',
15109             'ExtUtils::Liblist::Kid'=> '7.32',
15110             'ExtUtils::MM' => '7.32',
15111             'ExtUtils::MM_AIX' => '7.32',
15112             'ExtUtils::MM_Any' => '7.32',
15113             'ExtUtils::MM_BeOS' => '7.32',
15114             'ExtUtils::MM_Cygwin' => '7.32',
15115             'ExtUtils::MM_DOS' => '7.32',
15116             'ExtUtils::MM_Darwin' => '7.32',
15117             'ExtUtils::MM_MacOS' => '7.32',
15118             'ExtUtils::MM_NW5' => '7.32',
15119             'ExtUtils::MM_OS2' => '7.32',
15120             'ExtUtils::MM_QNX' => '7.32',
15121             'ExtUtils::MM_UWIN' => '7.32',
15122             'ExtUtils::MM_Unix' => '7.32',
15123             'ExtUtils::MM_VMS' => '7.32',
15124             'ExtUtils::MM_VOS' => '7.32',
15125             'ExtUtils::MM_Win32' => '7.32',
15126             'ExtUtils::MM_Win95' => '7.32',
15127             'ExtUtils::MY' => '7.32',
15128             'ExtUtils::MakeMaker' => '7.32',
15129             'ExtUtils::MakeMaker::Config'=> '7.32',
15130             'ExtUtils::MakeMaker::Locale'=> '7.32',
15131             'ExtUtils::MakeMaker::version'=> '7.32',
15132             'ExtUtils::MakeMaker::version::regex'=> '7.32',
15133             'ExtUtils::Mkbootstrap' => '7.32',
15134             'ExtUtils::Mksymlists' => '7.32',
15135             'ExtUtils::ParseXS' => '3.38',
15136             'ExtUtils::ParseXS::Constants'=> '3.38',
15137             'ExtUtils::ParseXS::CountLines'=> '3.38',
15138             'ExtUtils::ParseXS::Eval'=> '3.38',
15139             'ExtUtils::ParseXS::Utilities'=> '3.38',
15140             'ExtUtils::Typemaps' => '3.38',
15141             'ExtUtils::Typemaps::Cmd'=> '3.38',
15142             'ExtUtils::Typemaps::InputMap'=> '3.38',
15143             'ExtUtils::Typemaps::OutputMap'=> '3.38',
15144             'ExtUtils::Typemaps::Type'=> '3.38',
15145             'ExtUtils::testlib' => '7.32',
15146             'File::Spec' => '3.74',
15147             'File::Spec::AmigaOS' => '3.74',
15148             'File::Spec::Cygwin' => '3.74',
15149             'File::Spec::Epoc' => '3.74',
15150             'File::Spec::Functions' => '3.74',
15151             'File::Spec::Mac' => '3.74',
15152             'File::Spec::OS2' => '3.74',
15153             'File::Spec::Unix' => '3.74',
15154             'File::Spec::VMS' => '3.74',
15155             'File::Spec::Win32' => '3.74',
15156             'IPC::Cmd' => '1.00',
15157             'Math::BigFloat::Trace' => '0.49',
15158             'Math::BigInt::Trace' => '0.49',
15159             'Module::CoreList' => '5.20180220',
15160             'Module::CoreList::Utils'=> '5.20180220',
15161             'POSIX' => '1.82',
15162             'PerlIO::encoding' => '0.26',
15163             'Storable' => '3.06',
15164             'Storable::Limit' => undef,
15165             'Test2' => '1.302122',
15166             'Test2::API' => '1.302122',
15167             'Test2::API::Breakage' => '1.302122',
15168             'Test2::API::Context' => '1.302122',
15169             'Test2::API::Instance' => '1.302122',
15170             'Test2::API::Stack' => '1.302122',
15171             'Test2::Event' => '1.302122',
15172             'Test2::Event::Bail' => '1.302122',
15173             'Test2::Event::Diag' => '1.302122',
15174             'Test2::Event::Encoding'=> '1.302122',
15175             'Test2::Event::Exception'=> '1.302122',
15176             'Test2::Event::Fail' => '1.302122',
15177             'Test2::Event::Generic' => '1.302122',
15178             'Test2::Event::Note' => '1.302122',
15179             'Test2::Event::Ok' => '1.302122',
15180             'Test2::Event::Pass' => '1.302122',
15181             'Test2::Event::Plan' => '1.302122',
15182             'Test2::Event::Skip' => '1.302122',
15183             'Test2::Event::Subtest' => '1.302122',
15184             'Test2::Event::TAP::Version'=> '1.302122',
15185             'Test2::Event::Waiting' => '1.302122',
15186             'Test2::EventFacet' => '1.302122',
15187             'Test2::EventFacet::About'=> '1.302122',
15188             'Test2::EventFacet::Amnesty'=> '1.302122',
15189             'Test2::EventFacet::Assert'=> '1.302122',
15190             'Test2::EventFacet::Control'=> '1.302122',
15191             'Test2::EventFacet::Error'=> '1.302122',
15192             'Test2::EventFacet::Info'=> '1.302122',
15193             'Test2::EventFacet::Meta'=> '1.302122',
15194             'Test2::EventFacet::Parent'=> '1.302122',
15195             'Test2::EventFacet::Plan'=> '1.302122',
15196             'Test2::EventFacet::Render'=> '1.302122',
15197             'Test2::EventFacet::Trace'=> '1.302122',
15198             'Test2::Formatter' => '1.302122',
15199             'Test2::Formatter::TAP' => '1.302122',
15200             'Test2::Hub' => '1.302122',
15201             'Test2::Hub::Interceptor'=> '1.302122',
15202             'Test2::Hub::Interceptor::Terminator'=> '1.302122',
15203             'Test2::Hub::Subtest' => '1.302122',
15204             'Test2::IPC' => '1.302122',
15205             'Test2::IPC::Driver' => '1.302122',
15206             'Test2::IPC::Driver::Files'=> '1.302122',
15207             'Test2::Tools::Tiny' => '1.302122',
15208             'Test2::Util' => '1.302122',
15209             'Test2::Util::ExternalMeta'=> '1.302122',
15210             'Test2::Util::Facets2Legacy'=> '1.302122',
15211             'Test2::Util::HashBase' => '1.302122',
15212             'Test2::Util::Trace' => '1.302122',
15213             'Test::Builder' => '1.302122',
15214             'Test::Builder::Formatter'=> '1.302122',
15215             'Test::Builder::Module' => '1.302122',
15216             'Test::Builder::Tester' => '1.302122',
15217             'Test::Builder::Tester::Color'=> '1.302122',
15218             'Test::Builder::TodoDiag'=> '1.302122',
15219             'Test::More' => '1.302122',
15220             'Test::Simple' => '1.302122',
15221             'Test::Tester' => '1.302122',
15222             'Test::Tester::Capture' => '1.302122',
15223             'Test::Tester::CaptureRunner'=> '1.302122',
15224             'Test::Tester::Delegate'=> '1.302122',
15225             'Test::use::ok' => '1.302122',
15226             'Time::HiRes' => '1.9753',
15227             'XS::APItest' => '0.96',
15228             'bigint' => '0.49',
15229             'bignum' => '0.49',
15230             'bigrat' => '0.49',
15231             'encoding' => '2.22',
15232             'if' => '0.0608',
15233             'mro' => '1.22',
15234             'ok' => '1.302122',
15235             'threads' => '2.22',
15236             'warnings' => '1.41',
15237             },
15238             removed => {
15239             'Module::CoreList::TieHashDelta'=> 1,
15240             }
15241             },
15242             5.027010 => {
15243             delta_from => 5.027009,
15244             changed => {
15245             'App::Prove' => '3.42',
15246             'App::Prove::State' => '3.42',
15247             'App::Prove::State::Result'=> '3.42',
15248             'App::Prove::State::Result::Test'=> '3.42',
15249             'B::Deparse' => '1.48',
15250             'B::Op_private' => '5.027010',
15251             'Carp' => '1.49',
15252             'Carp::Heavy' => '1.49',
15253             'Config' => '5.02701',
15254             'Encode' => '2.97',
15255             'ExtUtils::Command' => '7.34',
15256             'ExtUtils::Command::MM' => '7.34',
15257             'ExtUtils::Liblist' => '7.34',
15258             'ExtUtils::Liblist::Kid'=> '7.34',
15259             'ExtUtils::MM' => '7.34',
15260             'ExtUtils::MM_AIX' => '7.34',
15261             'ExtUtils::MM_Any' => '7.34',
15262             'ExtUtils::MM_BeOS' => '7.34',
15263             'ExtUtils::MM_Cygwin' => '7.34',
15264             'ExtUtils::MM_DOS' => '7.34',
15265             'ExtUtils::MM_Darwin' => '7.34',
15266             'ExtUtils::MM_MacOS' => '7.34',
15267             'ExtUtils::MM_NW5' => '7.34',
15268             'ExtUtils::MM_OS2' => '7.34',
15269             'ExtUtils::MM_QNX' => '7.34',
15270             'ExtUtils::MM_UWIN' => '7.34',
15271             'ExtUtils::MM_Unix' => '7.34',
15272             'ExtUtils::MM_VMS' => '7.34',
15273             'ExtUtils::MM_VOS' => '7.34',
15274             'ExtUtils::MM_Win32' => '7.34',
15275             'ExtUtils::MM_Win95' => '7.34',
15276             'ExtUtils::MY' => '7.34',
15277             'ExtUtils::MakeMaker' => '7.34',
15278             'ExtUtils::MakeMaker::Config'=> '7.34',
15279             'ExtUtils::MakeMaker::Locale'=> '7.34',
15280             'ExtUtils::MakeMaker::version'=> '7.34',
15281             'ExtUtils::MakeMaker::version::regex'=> '7.34',
15282             'ExtUtils::Mkbootstrap' => '7.34',
15283             'ExtUtils::Mksymlists' => '7.34',
15284             'ExtUtils::ParseXS' => '3.39',
15285             'ExtUtils::ParseXS::Constants'=> '3.39',
15286             'ExtUtils::ParseXS::CountLines'=> '3.39',
15287             'ExtUtils::ParseXS::Eval'=> '3.39',
15288             'ExtUtils::ParseXS::Utilities'=> '3.39',
15289             'ExtUtils::testlib' => '7.34',
15290             'File::Glob' => '1.31',
15291             'I18N::Langinfo' => '0.16',
15292             'List::Util' => '1.50',
15293             'List::Util::XS' => '1.50',
15294             'Locale::Codes' => '3.56',
15295             'Locale::Codes::Constants'=> '3.56',
15296             'Locale::Codes::Country'=> '3.56',
15297             'Locale::Codes::Country_Codes'=> '3.56',
15298             'Locale::Codes::Country_Retired'=> '3.56',
15299             'Locale::Codes::Currency'=> '3.56',
15300             'Locale::Codes::Currency_Codes'=> '3.56',
15301             'Locale::Codes::Currency_Retired'=> '3.56',
15302             'Locale::Codes::LangExt'=> '3.56',
15303             'Locale::Codes::LangExt_Codes'=> '3.56',
15304             'Locale::Codes::LangExt_Retired'=> '3.56',
15305             'Locale::Codes::LangFam'=> '3.56',
15306             'Locale::Codes::LangFam_Codes'=> '3.56',
15307             'Locale::Codes::LangFam_Retired'=> '3.56',
15308             'Locale::Codes::LangVar'=> '3.56',
15309             'Locale::Codes::LangVar_Codes'=> '3.56',
15310             'Locale::Codes::LangVar_Retired'=> '3.56',
15311             'Locale::Codes::Language'=> '3.56',
15312             'Locale::Codes::Language_Codes'=> '3.56',
15313             'Locale::Codes::Language_Retired'=> '3.56',
15314             'Locale::Codes::Script' => '3.56',
15315             'Locale::Codes::Script_Codes'=> '3.56',
15316             'Locale::Codes::Script_Retired'=> '3.56',
15317             'Locale::Country' => '3.56',
15318             'Locale::Currency' => '3.56',
15319             'Locale::Language' => '3.56',
15320             'Locale::Script' => '3.56',
15321             'Module::CoreList' => '5.20180221',
15322             'Module::CoreList::Utils'=> '5.20180221',
15323             'POSIX' => '1.83',
15324             'Scalar::Util' => '1.50',
15325             'Sub::Util' => '1.50',
15326             'TAP::Base' => '3.42',
15327             'TAP::Formatter::Base' => '3.42',
15328             'TAP::Formatter::Color' => '3.42',
15329             'TAP::Formatter::Console'=> '3.42',
15330             'TAP::Formatter::Console::ParallelSession'=> '3.42',
15331             'TAP::Formatter::Console::Session'=> '3.42',
15332             'TAP::Formatter::File' => '3.42',
15333             'TAP::Formatter::File::Session'=> '3.42',
15334             'TAP::Formatter::Session'=> '3.42',
15335             'TAP::Harness' => '3.42',
15336             'TAP::Harness::Env' => '3.42',
15337             'TAP::Object' => '3.42',
15338             'TAP::Parser' => '3.42',
15339             'TAP::Parser::Aggregator'=> '3.42',
15340             'TAP::Parser::Grammar' => '3.42',
15341             'TAP::Parser::Iterator' => '3.42',
15342             'TAP::Parser::Iterator::Array'=> '3.42',
15343             'TAP::Parser::Iterator::Process'=> '3.42',
15344             'TAP::Parser::Iterator::Stream'=> '3.42',
15345             'TAP::Parser::IteratorFactory'=> '3.42',
15346             'TAP::Parser::Multiplexer'=> '3.42',
15347             'TAP::Parser::Result' => '3.42',
15348             'TAP::Parser::Result::Bailout'=> '3.42',
15349             'TAP::Parser::Result::Comment'=> '3.42',
15350             'TAP::Parser::Result::Plan'=> '3.42',
15351             'TAP::Parser::Result::Pragma'=> '3.42',
15352             'TAP::Parser::Result::Test'=> '3.42',
15353             'TAP::Parser::Result::Unknown'=> '3.42',
15354             'TAP::Parser::Result::Version'=> '3.42',
15355             'TAP::Parser::Result::YAML'=> '3.42',
15356             'TAP::Parser::ResultFactory'=> '3.42',
15357             'TAP::Parser::Scheduler'=> '3.42',
15358             'TAP::Parser::Scheduler::Job'=> '3.42',
15359             'TAP::Parser::Scheduler::Spinner'=> '3.42',
15360             'TAP::Parser::Source' => '3.42',
15361             'TAP::Parser::SourceHandler'=> '3.42',
15362             'TAP::Parser::SourceHandler::Executable'=> '3.42',
15363             'TAP::Parser::SourceHandler::File'=> '3.42',
15364             'TAP::Parser::SourceHandler::Handle'=> '3.42',
15365             'TAP::Parser::SourceHandler::Perl'=> '3.42',
15366             'TAP::Parser::SourceHandler::RawTAP'=> '3.42',
15367             'TAP::Parser::YAMLish::Reader'=> '3.42',
15368             'TAP::Parser::YAMLish::Writer'=> '3.42',
15369             'Test2' => '1.302133',
15370             'Test2::API' => '1.302133',
15371             'Test2::API::Breakage' => '1.302133',
15372             'Test2::API::Context' => '1.302133',
15373             'Test2::API::Instance' => '1.302133',
15374             'Test2::API::Stack' => '1.302133',
15375             'Test2::Event' => '1.302133',
15376             'Test2::Event::Bail' => '1.302133',
15377             'Test2::Event::Diag' => '1.302133',
15378             'Test2::Event::Encoding'=> '1.302133',
15379             'Test2::Event::Exception'=> '1.302133',
15380             'Test2::Event::Fail' => '1.302133',
15381             'Test2::Event::Generic' => '1.302133',
15382             'Test2::Event::Note' => '1.302133',
15383             'Test2::Event::Ok' => '1.302133',
15384             'Test2::Event::Pass' => '1.302133',
15385             'Test2::Event::Plan' => '1.302133',
15386             'Test2::Event::Skip' => '1.302133',
15387             'Test2::Event::Subtest' => '1.302133',
15388             'Test2::Event::TAP::Version'=> '1.302133',
15389             'Test2::Event::V2' => '1.302133',
15390             'Test2::Event::Waiting' => '1.302133',
15391             'Test2::EventFacet' => '1.302133',
15392             'Test2::EventFacet::About'=> '1.302133',
15393             'Test2::EventFacet::Amnesty'=> '1.302133',
15394             'Test2::EventFacet::Assert'=> '1.302133',
15395             'Test2::EventFacet::Control'=> '1.302133',
15396             'Test2::EventFacet::Error'=> '1.302133',
15397             'Test2::EventFacet::Hub'=> '1.302133',
15398             'Test2::EventFacet::Info'=> '1.302133',
15399             'Test2::EventFacet::Meta'=> '1.302133',
15400             'Test2::EventFacet::Parent'=> '1.302133',
15401             'Test2::EventFacet::Plan'=> '1.302133',
15402             'Test2::EventFacet::Render'=> '1.302133',
15403             'Test2::EventFacet::Trace'=> '1.302133',
15404             'Test2::Formatter' => '1.302133',
15405             'Test2::Formatter::TAP' => '1.302133',
15406             'Test2::Hub' => '1.302133',
15407             'Test2::Hub::Interceptor'=> '1.302133',
15408             'Test2::Hub::Interceptor::Terminator'=> '1.302133',
15409             'Test2::Hub::Subtest' => '1.302133',
15410             'Test2::IPC' => '1.302133',
15411             'Test2::IPC::Driver' => '1.302133',
15412             'Test2::IPC::Driver::Files'=> '1.302133',
15413             'Test2::Tools::Tiny' => '1.302133',
15414             'Test2::Util' => '1.302133',
15415             'Test2::Util::ExternalMeta'=> '1.302133',
15416             'Test2::Util::Facets2Legacy'=> '1.302133',
15417             'Test2::Util::HashBase' => '1.302133',
15418             'Test2::Util::Trace' => '1.302133',
15419             'Test::Builder' => '1.302133',
15420             'Test::Builder::Formatter'=> '1.302133',
15421             'Test::Builder::Module' => '1.302133',
15422             'Test::Builder::Tester' => '1.302133',
15423             'Test::Builder::Tester::Color'=> '1.302133',
15424             'Test::Builder::TodoDiag'=> '1.302133',
15425             'Test::Harness' => '3.42',
15426             'Test::More' => '1.302133',
15427             'Test::Simple' => '1.302133',
15428             'Test::Tester' => '1.302133',
15429             'Test::Tester::Capture' => '1.302133',
15430             'Test::Tester::CaptureRunner'=> '1.302133',
15431             'Test::Tester::Delegate'=> '1.302133',
15432             'Test::use::ok' => '1.302133',
15433             'Time::HiRes' => '1.9757',
15434             'Time::Piece' => '1.3204',
15435             'Time::Seconds' => '1.3204',
15436             'attributes' => '0.33',
15437             'ok' => '1.302133',
15438             'warnings' => '1.42',
15439             },
15440             removed => {
15441             }
15442             },
15443             5.024004 => {
15444             delta_from => 5.024003,
15445             changed => {
15446             'B::Op_private' => '5.024004',
15447             'Config' => '5.024004',
15448             'Module::CoreList' => '5.20180414_24',
15449             'Module::CoreList::TieHashDelta'=> '5.20180414_24',
15450             'Module::CoreList::Utils'=> '5.20180414_24',
15451             },
15452             removed => {
15453             }
15454             },
15455             5.026002 => {
15456             delta_from => 5.026001,
15457             changed => {
15458             'B::Op_private' => '5.026002',
15459             'Config' => '5.026002',
15460             'Module::CoreList' => '5.20180414_26',
15461             'Module::CoreList::TieHashDelta'=> '5.20180414_26',
15462             'Module::CoreList::Utils'=> '5.20180414_26',
15463             'PerlIO::via' => '0.17',
15464             'Term::ReadLine' => '1.17',
15465             'Unicode::UCD' => '0.69',
15466             },
15467             removed => {
15468             }
15469             },
15470             5.027011 => {
15471             delta_from => 5.027010,
15472             changed => {
15473             'B::Op_private' => '5.027011',
15474             'Carp' => '1.50',
15475             'Carp::Heavy' => '1.50',
15476             'Config' => '5.027011',
15477             'Devel::PPPort' => '3.40',
15478             'Exporter' => '5.73',
15479             'Exporter::Heavy' => '5.73',
15480             'ExtUtils::Constant' => '0.25',
15481             'I18N::Langinfo' => '0.17',
15482             'IO' => '1.39',
15483             'IO::Dir' => '1.39',
15484             'IO::File' => '1.39',
15485             'IO::Handle' => '1.39',
15486             'IO::Pipe' => '1.39',
15487             'IO::Poll' => '1.39',
15488             'IO::Seekable' => '1.39',
15489             'IO::Select' => '1.39',
15490             'IO::Socket' => '1.39',
15491             'IO::Socket::INET' => '1.39',
15492             'IO::Socket::UNIX' => '1.39',
15493             'Module::CoreList' => '5.20180420',
15494             'Module::CoreList::Utils'=> '5.20180420',
15495             'POSIX' => '1.84',
15496             'Time::HiRes' => '1.9759',
15497             'XS::APItest' => '0.97',
15498             'bytes' => '1.06',
15499             'subs' => '1.03',
15500             'vars' => '1.04',
15501             'version' => '0.9923',
15502             'version::regex' => '0.9923',
15503             },
15504             removed => {
15505             }
15506             },
15507             5.028000 => {
15508             delta_from => 5.027011,
15509             changed => {
15510             'Archive::Tar' => '2.30',
15511             'Archive::Tar::Constant'=> '2.30',
15512             'Archive::Tar::File' => '2.30',
15513             'B::Op_private' => '5.028000',
15514             'Config' => '5.028',
15515             'Module::CoreList' => '5.20180622',
15516             'Module::CoreList::Utils'=> '5.20180622',
15517             'Storable' => '3.08',
15518             'XS::APItest' => '0.98',
15519             'feature' => '1.52',
15520             },
15521             removed => {
15522             }
15523             },
15524             5.029000 => {
15525             delta_from => 5.028,
15526             changed => {
15527             'B::Op_private' => '5.029000',
15528             'Config' => '5.029',
15529             'Module::CoreList' => '5.20180626',
15530             'Module::CoreList::Utils'=> '5.20180626',
15531             'Unicode::UCD' => '0.71',
15532             'XS::APItest' => '0.99',
15533             'feature' => '1.53',
15534             },
15535             removed => {
15536             }
15537             },
15538             5.029001 => {
15539             delta_from => 5.029000,
15540             changed => {
15541             'B::Op_private' => '5.029001',
15542             'Compress::Raw::Bzip2' => '2.081',
15543             'Compress::Raw::Zlib' => '2.081',
15544             'Compress::Zlib' => '2.081',
15545             'Config' => '5.029001',
15546             'Config::Perl::V' => '0.30',
15547             'DB_File' => '1.842',
15548             'Devel::PPPort' => '3.42',
15549             'Digest::SHA' => '6.02',
15550             'ExtUtils::Manifest' => '1.71',
15551             'File::GlobMapper' => '1.001',
15552             'File::Temp' => '0.2308',
15553             'IO::Compress::Adapter::Bzip2'=> '2.081',
15554             'IO::Compress::Adapter::Deflate'=> '2.081',
15555             'IO::Compress::Adapter::Identity'=> '2.081',
15556             'IO::Compress::Base' => '2.081',
15557             'IO::Compress::Base::Common'=> '2.081',
15558             'IO::Compress::Bzip2' => '2.081',
15559             'IO::Compress::Deflate' => '2.081',
15560             'IO::Compress::Gzip' => '2.081',
15561             'IO::Compress::Gzip::Constants'=> '2.081',
15562             'IO::Compress::RawDeflate'=> '2.081',
15563             'IO::Compress::Zip' => '2.081',
15564             'IO::Compress::Zip::Constants'=> '2.081',
15565             'IO::Compress::Zlib::Constants'=> '2.081',
15566             'IO::Compress::Zlib::Extra'=> '2.081',
15567             'IO::Uncompress::Adapter::Bunzip2'=> '2.081',
15568             'IO::Uncompress::Adapter::Identity'=> '2.081',
15569             'IO::Uncompress::Adapter::Inflate'=> '2.081',
15570             'IO::Uncompress::AnyInflate'=> '2.081',
15571             'IO::Uncompress::AnyUncompress'=> '2.081',
15572             'IO::Uncompress::Base' => '2.081',
15573             'IO::Uncompress::Bunzip2'=> '2.081',
15574             'IO::Uncompress::Gunzip'=> '2.081',
15575             'IO::Uncompress::Inflate'=> '2.081',
15576             'IO::Uncompress::RawInflate'=> '2.081',
15577             'IO::Uncompress::Unzip' => '2.081',
15578             'IPC::Cmd' => '1.02',
15579             'Locale::Codes' => '3.57',
15580             'Locale::Codes::Constants'=> '3.57',
15581             'Locale::Codes::Country'=> '3.57',
15582             'Locale::Codes::Country_Codes'=> '3.57',
15583             'Locale::Codes::Country_Retired'=> '3.57',
15584             'Locale::Codes::Currency'=> '3.57',
15585             'Locale::Codes::Currency_Codes'=> '3.57',
15586             'Locale::Codes::Currency_Retired'=> '3.57',
15587             'Locale::Codes::LangExt'=> '3.57',
15588             'Locale::Codes::LangExt_Codes'=> '3.57',
15589             'Locale::Codes::LangExt_Retired'=> '3.57',
15590             'Locale::Codes::LangFam'=> '3.57',
15591             'Locale::Codes::LangFam_Codes'=> '3.57',
15592             'Locale::Codes::LangFam_Retired'=> '3.57',
15593             'Locale::Codes::LangVar'=> '3.57',
15594             'Locale::Codes::LangVar_Codes'=> '3.57',
15595             'Locale::Codes::LangVar_Retired'=> '3.57',
15596             'Locale::Codes::Language'=> '3.57',
15597             'Locale::Codes::Language_Codes'=> '3.57',
15598             'Locale::Codes::Language_Retired'=> '3.57',
15599             'Locale::Codes::Script' => '3.57',
15600             'Locale::Codes::Script_Codes'=> '3.57',
15601             'Locale::Codes::Script_Retired'=> '3.57',
15602             'Locale::Country' => '3.57',
15603             'Locale::Currency' => '3.57',
15604             'Locale::Language' => '3.57',
15605             'Locale::Script' => '3.57',
15606             'Math::BigFloat' => '1.999813',
15607             'Math::BigFloat::Trace' => '0.50',
15608             'Math::BigInt' => '1.999813',
15609             'Math::BigInt::Calc' => '1.999813',
15610             'Math::BigInt::CalcEmu' => '1.999813',
15611             'Math::BigInt::FastCalc'=> '0.5007',
15612             'Math::BigInt::Lib' => '1.999813',
15613             'Math::BigInt::Trace' => '0.50',
15614             'Math::BigRat' => '0.2614',
15615             'Module::CoreList' => '5.20180720',
15616             'Module::CoreList::Utils'=> '5.20180720',
15617             'Pod::Man' => '4.11',
15618             'Pod::ParseLink' => '4.11',
15619             'Pod::Text' => '4.11',
15620             'Pod::Text::Color' => '4.11',
15621             'Pod::Text::Overstrike' => '4.11',
15622             'Pod::Text::Termcap' => '4.11',
15623             'Storable' => '3.11',
15624             'Test2' => '1.302138',
15625             'Test2::API' => '1.302138',
15626             'Test2::API::Breakage' => '1.302138',
15627             'Test2::API::Context' => '1.302138',
15628             'Test2::API::Instance' => '1.302138',
15629             'Test2::API::Stack' => '1.302138',
15630             'Test2::Event' => '1.302138',
15631             'Test2::Event::Bail' => '1.302138',
15632             'Test2::Event::Diag' => '1.302138',
15633             'Test2::Event::Encoding'=> '1.302138',
15634             'Test2::Event::Exception'=> '1.302138',
15635             'Test2::Event::Fail' => '1.302138',
15636             'Test2::Event::Generic' => '1.302138',
15637             'Test2::Event::Note' => '1.302138',
15638             'Test2::Event::Ok' => '1.302138',
15639             'Test2::Event::Pass' => '1.302138',
15640             'Test2::Event::Plan' => '1.302138',
15641             'Test2::Event::Skip' => '1.302138',
15642             'Test2::Event::Subtest' => '1.302138',
15643             'Test2::Event::TAP::Version'=> '1.302138',
15644             'Test2::Event::V2' => '1.302138',
15645             'Test2::Event::Waiting' => '1.302138',
15646             'Test2::EventFacet' => '1.302138',
15647             'Test2::EventFacet::About'=> '1.302138',
15648             'Test2::EventFacet::Amnesty'=> '1.302138',
15649             'Test2::EventFacet::Assert'=> '1.302138',
15650             'Test2::EventFacet::Control'=> '1.302138',
15651             'Test2::EventFacet::Error'=> '1.302138',
15652             'Test2::EventFacet::Hub'=> '1.302138',
15653             'Test2::EventFacet::Info'=> '1.302138',
15654             'Test2::EventFacet::Meta'=> '1.302138',
15655             'Test2::EventFacet::Parent'=> '1.302138',
15656             'Test2::EventFacet::Plan'=> '1.302138',
15657             'Test2::EventFacet::Render'=> '1.302138',
15658             'Test2::EventFacet::Trace'=> '1.302138',
15659             'Test2::Formatter' => '1.302138',
15660             'Test2::Formatter::TAP' => '1.302138',
15661             'Test2::Hub' => '1.302138',
15662             'Test2::Hub::Interceptor'=> '1.302138',
15663             'Test2::Hub::Interceptor::Terminator'=> '1.302138',
15664             'Test2::Hub::Subtest' => '1.302138',
15665             'Test2::IPC' => '1.302138',
15666             'Test2::IPC::Driver' => '1.302138',
15667             'Test2::IPC::Driver::Files'=> '1.302138',
15668             'Test2::Tools::Tiny' => '1.302138',
15669             'Test2::Util' => '1.302138',
15670             'Test2::Util::ExternalMeta'=> '1.302138',
15671             'Test2::Util::Facets2Legacy'=> '1.302138',
15672             'Test2::Util::HashBase' => '1.302138',
15673             'Test2::Util::Trace' => '1.302138',
15674             'Test::Builder' => '1.302138',
15675             'Test::Builder::Formatter'=> '1.302138',
15676             'Test::Builder::Module' => '1.302138',
15677             'Test::Builder::Tester' => '1.302138',
15678             'Test::Builder::Tester::Color'=> '1.302138',
15679             'Test::Builder::TodoDiag'=> '1.302138',
15680             'Test::More' => '1.302138',
15681             'Test::Simple' => '1.302138',
15682             'Test::Tester' => '1.302138',
15683             'Test::Tester::Capture' => '1.302138',
15684             'Test::Tester::CaptureRunner'=> '1.302138',
15685             'Test::Tester::Delegate'=> '1.302138',
15686             'Test::use::ok' => '1.302138',
15687             'Thread::Queue' => '3.13',
15688             'Time::Local' => '1.28',
15689             'bigint' => '0.50',
15690             'bignum' => '0.50',
15691             'bigrat' => '0.50',
15692             'experimental' => '0.020',
15693             'ok' => '1.302138',
15694             'parent' => '0.237',
15695             'perlfaq' => '5.20180605',
15696             'version' => '0.9924',
15697             'version::regex' => '0.9924',
15698             },
15699             removed => {
15700             }
15701             },
15702             5.029002 => {
15703             delta_from => 5.029001,
15704             changed => {
15705             'B::Op_private' => '5.029002',
15706             'Config' => '5.029002',
15707             'Config::Extensions' => '0.03',
15708             'Cwd' => '3.75',
15709             'Data::Dumper' => '2.171',
15710             'Filter::Util::Call' => '1.59',
15711             'HTTP::Tiny' => '0.076',
15712             'Module::CoreList' => '5.20180820',
15713             'Module::CoreList::Utils'=> '5.20180820',
15714             'PerlIO::scalar' => '0.30',
15715             'Storable' => '3.12',
15716             'Test2' => '1.302140',
15717             'Test2::API' => '1.302140',
15718             'Test2::API::Breakage' => '1.302140',
15719             'Test2::API::Context' => '1.302140',
15720             'Test2::API::Instance' => '1.302140',
15721             'Test2::API::Stack' => '1.302140',
15722             'Test2::Event' => '1.302140',
15723             'Test2::Event::Bail' => '1.302140',
15724             'Test2::Event::Diag' => '1.302140',
15725             'Test2::Event::Encoding'=> '1.302140',
15726             'Test2::Event::Exception'=> '1.302140',
15727             'Test2::Event::Fail' => '1.302140',
15728             'Test2::Event::Generic' => '1.302140',
15729             'Test2::Event::Note' => '1.302140',
15730             'Test2::Event::Ok' => '1.302140',
15731             'Test2::Event::Pass' => '1.302140',
15732             'Test2::Event::Plan' => '1.302140',
15733             'Test2::Event::Skip' => '1.302140',
15734             'Test2::Event::Subtest' => '1.302140',
15735             'Test2::Event::TAP::Version'=> '1.302140',
15736             'Test2::Event::V2' => '1.302140',
15737             'Test2::Event::Waiting' => '1.302140',
15738             'Test2::EventFacet' => '1.302140',
15739             'Test2::EventFacet::About'=> '1.302140',
15740             'Test2::EventFacet::Amnesty'=> '1.302140',
15741             'Test2::EventFacet::Assert'=> '1.302140',
15742             'Test2::EventFacet::Control'=> '1.302140',
15743             'Test2::EventFacet::Error'=> '1.302140',
15744             'Test2::EventFacet::Hub'=> '1.302140',
15745             'Test2::EventFacet::Info'=> '1.302140',
15746             'Test2::EventFacet::Meta'=> '1.302140',
15747             'Test2::EventFacet::Parent'=> '1.302140',
15748             'Test2::EventFacet::Plan'=> '1.302140',
15749             'Test2::EventFacet::Render'=> '1.302140',
15750             'Test2::EventFacet::Trace'=> '1.302140',
15751             'Test2::Formatter' => '1.302140',
15752             'Test2::Formatter::TAP' => '1.302140',
15753             'Test2::Hub' => '1.302140',
15754             'Test2::Hub::Interceptor'=> '1.302140',
15755             'Test2::Hub::Interceptor::Terminator'=> '1.302140',
15756             'Test2::Hub::Subtest' => '1.302140',
15757             'Test2::IPC' => '1.302140',
15758             'Test2::IPC::Driver' => '1.302140',
15759             'Test2::IPC::Driver::Files'=> '1.302140',
15760             'Test2::Tools::Tiny' => '1.302140',
15761             'Test2::Util' => '1.302140',
15762             'Test2::Util::ExternalMeta'=> '1.302140',
15763             'Test2::Util::Facets2Legacy'=> '1.302140',
15764             'Test2::Util::HashBase' => '1.302140',
15765             'Test2::Util::Trace' => '1.302140',
15766             'Test::Builder' => '1.302140',
15767             'Test::Builder::Formatter'=> '1.302140',
15768             'Test::Builder::Module' => '1.302140',
15769             'Test::Builder::Tester' => '1.302140',
15770             'Test::Builder::Tester::Color'=> '1.302140',
15771             'Test::Builder::TodoDiag'=> '1.302140',
15772             'Test::More' => '1.302140',
15773             'Test::Simple' => '1.302140',
15774             'Test::Tester' => '1.302140',
15775             'Test::Tester::Capture' => '1.302140',
15776             'Test::Tester::CaptureRunner'=> '1.302140',
15777             'Test::Tester::Delegate'=> '1.302140',
15778             'Test::use::ok' => '1.302140',
15779             'Time::HiRes' => '1.9760',
15780             'Time::Piece' => '1.33',
15781             'Time::Seconds' => '1.33',
15782             'Unicode' => '11.0.0',
15783             'ok' => '1.302140',
15784             'warnings' => '1.43',
15785             },
15786             removed => {
15787             }
15788             },
15789             5.029003 => {
15790             delta_from => 5.029002,
15791             changed => {
15792             'Archive::Tar' => '2.32',
15793             'Archive::Tar::Constant'=> '2.32',
15794             'Archive::Tar::File' => '2.32',
15795             'B::Op_private' => '5.029003',
15796             'Config' => '5.029003',
15797             'Data::Dumper' => '2.172',
15798             'Devel::PPPort' => '3.43',
15799             'File::Path' => '2.16',
15800             'File::Spec' => '3.75',
15801             'File::Spec::AmigaOS' => '3.75',
15802             'File::Spec::Cygwin' => '3.75',
15803             'File::Spec::Epoc' => '3.75',
15804             'File::Spec::Functions' => '3.75',
15805             'File::Spec::Mac' => '3.75',
15806             'File::Spec::OS2' => '3.75',
15807             'File::Spec::Unix' => '3.75',
15808             'File::Spec::VMS' => '3.75',
15809             'File::Spec::Win32' => '3.75',
15810             'Module::CoreList' => '5.20180920',
15811             'Module::CoreList::Utils'=> '5.20180920',
15812             'POSIX' => '1.85',
15813             'Storable' => '3.13',
15814             'User::grent' => '1.03',
15815             'perlfaq' => '5.20180915',
15816             },
15817             removed => {
15818             'Locale::Codes' => 1,
15819             'Locale::Codes::Constants'=> 1,
15820             'Locale::Codes::Country'=> 1,
15821             'Locale::Codes::Country_Codes'=> 1,
15822             'Locale::Codes::Country_Retired'=> 1,
15823             'Locale::Codes::Currency'=> 1,
15824             'Locale::Codes::Currency_Codes'=> 1,
15825             'Locale::Codes::Currency_Retired'=> 1,
15826             'Locale::Codes::LangExt'=> 1,
15827             'Locale::Codes::LangExt_Codes'=> 1,
15828             'Locale::Codes::LangExt_Retired'=> 1,
15829             'Locale::Codes::LangFam'=> 1,
15830             'Locale::Codes::LangFam_Codes'=> 1,
15831             'Locale::Codes::LangFam_Retired'=> 1,
15832             'Locale::Codes::LangVar'=> 1,
15833             'Locale::Codes::LangVar_Codes'=> 1,
15834             'Locale::Codes::LangVar_Retired'=> 1,
15835             'Locale::Codes::Language'=> 1,
15836             'Locale::Codes::Language_Codes'=> 1,
15837             'Locale::Codes::Language_Retired'=> 1,
15838             'Locale::Codes::Script' => 1,
15839             'Locale::Codes::Script_Codes'=> 1,
15840             'Locale::Codes::Script_Retired'=> 1,
15841             'Locale::Country' => 1,
15842             'Locale::Currency' => 1,
15843             'Locale::Language' => 1,
15844             'Locale::Script' => 1,
15845             }
15846             },
15847             5.029004 => {
15848             delta_from => 5.029003,
15849             changed => {
15850             'App::Cpan' => '1.671',
15851             'B' => '1.75',
15852             'B::Concise' => '1.004',
15853             'B::Deparse' => '1.49',
15854             'B::Op_private' => '5.029004',
15855             'B::Terse' => '1.09',
15856             'CPAN' => '2.21',
15857             'CPAN::Distribution' => '2.21',
15858             'CPAN::Mirrors' => '2.21',
15859             'CPAN::Plugin' => '0.97',
15860             'CPAN::Shell' => '5.5008',
15861             'Config' => '5.029004',
15862             'Devel::Peek' => '1.28',
15863             'File::Copy' => '2.34',
15864             'File::Glob' => '1.32',
15865             'Math::BigFloat::Trace' => '0.51',
15866             'Math::BigInt::Trace' => '0.51',
15867             'Module::CoreList' => '5.20181020',
15868             'Module::CoreList::Utils'=> '5.20181020',
15869             'Unicode::UCD' => '0.72',
15870             'bigint' => '0.51',
15871             'bignum' => '0.51',
15872             'bigrat' => '0.51',
15873             'bytes' => '1.07',
15874             'feature' => '1.54',
15875             'sigtrap' => '1.09',
15876             'vars' => '1.05',
15877             },
15878             removed => {
15879             'B::Debug' => 1,
15880             'arybase' => 1,
15881             }
15882             },
15883             5.029005 => {
15884             delta_from => 5.029004,
15885             changed => {
15886             'B::Op_private' => '5.029005',
15887             'Config' => '5.029005',
15888             'Cwd' => '3.76',
15889             'Data::Dumper' => '2.173',
15890             'Errno' => '1.30',
15891             'File::Spec' => '3.76',
15892             'File::Spec::AmigaOS' => '3.76',
15893             'File::Spec::Cygwin' => '3.76',
15894             'File::Spec::Epoc' => '3.76',
15895             'File::Spec::Functions' => '3.76',
15896             'File::Spec::Mac' => '3.76',
15897             'File::Spec::OS2' => '3.76',
15898             'File::Spec::Unix' => '3.76',
15899             'File::Spec::VMS' => '3.76',
15900             'File::Spec::Win32' => '3.76',
15901             'GDBM_File' => '1.18',
15902             'Module::CoreList' => '5.20181120',
15903             'Module::CoreList::Utils'=> '5.20181120',
15904             'NDBM_File' => '1.15',
15905             'ODBM_File' => '1.16',
15906             'SDBM_File' => '1.15',
15907             're' => '0.37',
15908             },
15909             removed => {
15910             }
15911             },
15912             5.026003 => {
15913             delta_from => 5.026002,
15914             changed => {
15915             'Archive::Tar' => '2.24_01',
15916             'B::Op_private' => '5.026003',
15917             'Config' => '5.026003',
15918             'Module::CoreList' => '5.20181129_26',
15919             'Module::CoreList::TieHashDelta'=> '5.20181129_26',
15920             'Module::CoreList::Utils'=> '5.20181129_26',
15921             },
15922             removed => {
15923             }
15924             },
15925             5.028001 => {
15926             delta_from => 5.028,
15927             changed => {
15928             'B::Op_private' => '5.028001',
15929             'Config' => '5.028001',
15930             'Module::CoreList' => '5.20181129_28',
15931             'Module::CoreList::Utils'=> '5.20181129_28',
15932             },
15933             removed => {
15934             }
15935             },
15936             5.029006 => {
15937             delta_from => 5.029005,
15938             changed => {
15939             'B::Op_private' => '5.029006',
15940             'Config' => '5.029006',
15941             'Config::Perl::V' => '0.32',
15942             'ExtUtils::ParseXS' => '3.40',
15943             'ExtUtils::ParseXS::Constants'=> '3.40',
15944             'ExtUtils::ParseXS::CountLines'=> '3.40',
15945             'ExtUtils::ParseXS::Eval'=> '3.40',
15946             'ExtUtils::ParseXS::Utilities'=> '3.40',
15947             'File::Find' => '1.35',
15948             'Module::CoreList' => '5.20181218',
15949             'Module::CoreList::Utils'=> '5.20181218',
15950             'POSIX' => '1.86',
15951             'Storable' => '3.14',
15952             'Test2' => '1.302141',
15953             'Test2::API' => '1.302141',
15954             'Test2::API::Breakage' => '1.302141',
15955             'Test2::API::Context' => '1.302141',
15956             'Test2::API::Instance' => '1.302141',
15957             'Test2::API::Stack' => '1.302141',
15958             'Test2::Event' => '1.302141',
15959             'Test2::Event::Bail' => '1.302141',
15960             'Test2::Event::Diag' => '1.302141',
15961             'Test2::Event::Encoding'=> '1.302141',
15962             'Test2::Event::Exception'=> '1.302141',
15963             'Test2::Event::Fail' => '1.302141',
15964             'Test2::Event::Generic' => '1.302141',
15965             'Test2::Event::Note' => '1.302141',
15966             'Test2::Event::Ok' => '1.302141',
15967             'Test2::Event::Pass' => '1.302141',
15968             'Test2::Event::Plan' => '1.302141',
15969             'Test2::Event::Skip' => '1.302141',
15970             'Test2::Event::Subtest' => '1.302141',
15971             'Test2::Event::TAP::Version'=> '1.302141',
15972             'Test2::Event::V2' => '1.302141',
15973             'Test2::Event::Waiting' => '1.302141',
15974             'Test2::EventFacet' => '1.302141',
15975             'Test2::EventFacet::About'=> '1.302141',
15976             'Test2::EventFacet::Amnesty'=> '1.302141',
15977             'Test2::EventFacet::Assert'=> '1.302141',
15978             'Test2::EventFacet::Control'=> '1.302141',
15979             'Test2::EventFacet::Error'=> '1.302141',
15980             'Test2::EventFacet::Hub'=> '1.302141',
15981             'Test2::EventFacet::Info'=> '1.302141',
15982             'Test2::EventFacet::Meta'=> '1.302141',
15983             'Test2::EventFacet::Parent'=> '1.302141',
15984             'Test2::EventFacet::Plan'=> '1.302141',
15985             'Test2::EventFacet::Render'=> '1.302141',
15986             'Test2::EventFacet::Trace'=> '1.302141',
15987             'Test2::Formatter' => '1.302141',
15988             'Test2::Formatter::TAP' => '1.302141',
15989             'Test2::Hub' => '1.302141',
15990             'Test2::Hub::Interceptor'=> '1.302141',
15991             'Test2::Hub::Interceptor::Terminator'=> '1.302141',
15992             'Test2::Hub::Subtest' => '1.302141',
15993             'Test2::IPC' => '1.302141',
15994             'Test2::IPC::Driver' => '1.302141',
15995             'Test2::IPC::Driver::Files'=> '1.302141',
15996             'Test2::Tools::Tiny' => '1.302141',
15997             'Test2::Util' => '1.302141',
15998             'Test2::Util::ExternalMeta'=> '1.302141',
15999             'Test2::Util::Facets2Legacy'=> '1.302141',
16000             'Test2::Util::HashBase' => '1.302141',
16001             'Test2::Util::Trace' => '1.302141',
16002             'Test::Builder' => '1.302141',
16003             'Test::Builder::Formatter'=> '1.302141',
16004             'Test::Builder::Module' => '1.302141',
16005             'Test::Builder::Tester' => '1.302141',
16006             'Test::Builder::Tester::Color'=> '1.302141',
16007             'Test::Builder::TodoDiag'=> '1.302141',
16008             'Test::More' => '1.302141',
16009             'Test::Simple' => '1.302141',
16010             'Test::Tester' => '1.302141',
16011             'Test::Tester::Capture' => '1.302141',
16012             'Test::Tester::CaptureRunner'=> '1.302141',
16013             'Test::Tester::Delegate'=> '1.302141',
16014             'Test::use::ok' => '1.302141',
16015             'ok' => '1.302141',
16016             'threads::shared' => '1.59',
16017             },
16018             removed => {
16019             'Storable::Limit' => 1,
16020             }
16021             },
16022             5.029007 => {
16023             delta_from => 5.029006,
16024             changed => {
16025             'App::Cpan' => '1.672',
16026             'B::Op_private' => '5.029007',
16027             'CPAN' => '2.22',
16028             'CPAN::Distribution' => '2.22',
16029             'CPAN::Plugin::Specfile'=> '0.02',
16030             'Compress::Raw::Bzip2' => '2.084',
16031             'Compress::Raw::Zlib' => '2.084',
16032             'Compress::Zlib' => '2.084',
16033             'Config' => '5.029007',
16034             'Cwd' => '3.77',
16035             'DB_File' => '1.843',
16036             'File::Find' => '1.36',
16037             'File::Spec' => '3.77',
16038             'File::Spec::AmigaOS' => '3.77',
16039             'File::Spec::Cygwin' => '3.77',
16040             'File::Spec::Epoc' => '3.77',
16041             'File::Spec::Functions' => '3.77',
16042             'File::Spec::Mac' => '3.77',
16043             'File::Spec::OS2' => '3.77',
16044             'File::Spec::Unix' => '3.77',
16045             'File::Spec::VMS' => '3.77',
16046             'File::Spec::Win32' => '3.77',
16047             'File::Temp' => '0.2309',
16048             'IO::Compress::Adapter::Bzip2'=> '2.084',
16049             'IO::Compress::Adapter::Deflate'=> '2.084',
16050             'IO::Compress::Adapter::Identity'=> '2.084',
16051             'IO::Compress::Base' => '2.084',
16052             'IO::Compress::Base::Common'=> '2.084',
16053             'IO::Compress::Bzip2' => '2.084',
16054             'IO::Compress::Deflate' => '2.084',
16055             'IO::Compress::Gzip' => '2.084',
16056             'IO::Compress::Gzip::Constants'=> '2.084',
16057             'IO::Compress::RawDeflate'=> '2.084',
16058             'IO::Compress::Zip' => '2.084',
16059             'IO::Compress::Zip::Constants'=> '2.084',
16060             'IO::Compress::Zlib::Constants'=> '2.084',
16061             'IO::Compress::Zlib::Extra'=> '2.084',
16062             'IO::Uncompress::Adapter::Bunzip2'=> '2.084',
16063             'IO::Uncompress::Adapter::Identity'=> '2.084',
16064             'IO::Uncompress::Adapter::Inflate'=> '2.084',
16065             'IO::Uncompress::AnyInflate'=> '2.084',
16066             'IO::Uncompress::AnyUncompress'=> '2.084',
16067             'IO::Uncompress::Base' => '2.084',
16068             'IO::Uncompress::Bunzip2'=> '2.084',
16069             'IO::Uncompress::Gunzip'=> '2.084',
16070             'IO::Uncompress::Inflate'=> '2.084',
16071             'IO::Uncompress::RawInflate'=> '2.084',
16072             'IO::Uncompress::Unzip' => '2.084',
16073             'Math::BigFloat' => '1.999816',
16074             'Math::BigInt' => '1.999816',
16075             'Math::BigInt::Calc' => '1.999816',
16076             'Math::BigInt::FastCalc'=> '0.5008',
16077             'Math::BigInt::Lib' => '1.999816',
16078             'Module::CoreList' => '5.20190120',
16079             'Module::CoreList::Utils'=> '5.20190120',
16080             'Test2' => '1.302160',
16081             'Test2::API' => '1.302160',
16082             'Test2::API::Breakage' => '1.302160',
16083             'Test2::API::Context' => '1.302160',
16084             'Test2::API::Instance' => '1.302160',
16085             'Test2::API::Stack' => '1.302160',
16086             'Test2::Event' => '1.302160',
16087             'Test2::Event::Bail' => '1.302160',
16088             'Test2::Event::Diag' => '1.302160',
16089             'Test2::Event::Encoding'=> '1.302160',
16090             'Test2::Event::Exception'=> '1.302160',
16091             'Test2::Event::Fail' => '1.302160',
16092             'Test2::Event::Generic' => '1.302160',
16093             'Test2::Event::Note' => '1.302160',
16094             'Test2::Event::Ok' => '1.302160',
16095             'Test2::Event::Pass' => '1.302160',
16096             'Test2::Event::Plan' => '1.302160',
16097             'Test2::Event::Skip' => '1.302160',
16098             'Test2::Event::Subtest' => '1.302160',
16099             'Test2::Event::TAP::Version'=> '1.302160',
16100             'Test2::Event::V2' => '1.302160',
16101             'Test2::Event::Waiting' => '1.302160',
16102             'Test2::EventFacet' => '1.302160',
16103             'Test2::EventFacet::About'=> '1.302160',
16104             'Test2::EventFacet::Amnesty'=> '1.302160',
16105             'Test2::EventFacet::Assert'=> '1.302160',
16106             'Test2::EventFacet::Control'=> '1.302160',
16107             'Test2::EventFacet::Error'=> '1.302160',
16108             'Test2::EventFacet::Hub'=> '1.302160',
16109             'Test2::EventFacet::Info'=> '1.302160',
16110             'Test2::EventFacet::Info::Table'=> undef,
16111             'Test2::EventFacet::Meta'=> '1.302160',
16112             'Test2::EventFacet::Parent'=> '1.302160',
16113             'Test2::EventFacet::Plan'=> '1.302160',
16114             'Test2::EventFacet::Render'=> '1.302160',
16115             'Test2::EventFacet::Trace'=> '1.302160',
16116             'Test2::Formatter' => '1.302160',
16117             'Test2::Formatter::TAP' => '1.302160',
16118             'Test2::Hub' => '1.302160',
16119             'Test2::Hub::Interceptor'=> '1.302160',
16120             'Test2::Hub::Interceptor::Terminator'=> '1.302160',
16121             'Test2::Hub::Subtest' => '1.302160',
16122             'Test2::IPC' => '1.302160',
16123             'Test2::IPC::Driver' => '1.302160',
16124             'Test2::IPC::Driver::Files'=> '1.302160',
16125             'Test2::Tools::Tiny' => '1.302160',
16126             'Test2::Util' => '1.302160',
16127             'Test2::Util::ExternalMeta'=> '1.302160',
16128             'Test2::Util::Facets2Legacy'=> '1.302160',
16129             'Test2::Util::HashBase' => '1.302160',
16130             'Test2::Util::Trace' => '1.302160',
16131             'Test::Builder' => '1.302160',
16132             'Test::Builder::Formatter'=> '1.302160',
16133             'Test::Builder::Module' => '1.302160',
16134             'Test::Builder::Tester' => '1.302160',
16135             'Test::Builder::Tester::Color'=> '1.302160',
16136             'Test::Builder::TodoDiag'=> '1.302160',
16137             'Test::More' => '1.302160',
16138             'Test::Simple' => '1.302160',
16139             'Test::Tester' => '1.302160',
16140             'Test::Tester::Capture' => '1.302160',
16141             'Test::Tester::CaptureRunner'=> '1.302160',
16142             'Test::Tester::Delegate'=> '1.302160',
16143             'Test::use::ok' => '1.302160',
16144             'Unicode::Collate' => '1.27',
16145             'Unicode::Collate::CJK::Big5'=> '1.27',
16146             'Unicode::Collate::CJK::GB2312'=> '1.27',
16147             'Unicode::Collate::CJK::JISX0208'=> '1.27',
16148             'Unicode::Collate::CJK::Korean'=> '1.27',
16149             'Unicode::Collate::CJK::Pinyin'=> '1.27',
16150             'Unicode::Collate::CJK::Stroke'=> '1.27',
16151             'Unicode::Collate::CJK::Zhuyin'=> '1.27',
16152             'Unicode::Collate::Locale'=> '1.27',
16153             'lib' => '0.65',
16154             'ok' => '1.302160',
16155             },
16156             removed => {
16157             'Math::BigInt::CalcEmu' => 1,
16158             }
16159             },
16160             5.029008 => {
16161             delta_from => 5.029007,
16162             changed => {
16163             'B' => '1.76',
16164             'B::Op_private' => '5.029008',
16165             'Config' => '5.029008',
16166             'Devel::PPPort' => '3.44',
16167             'Encode' => '3.00',
16168             'Encode::Unicode' => '2.18',
16169             'ExtUtils::Miniperl' => '1.09',
16170             'IO' => '1.40',
16171             'IO::Dir' => '1.40',
16172             'IO::File' => '1.40',
16173             'IO::Handle' => '1.40',
16174             'IO::Pipe' => '1.40',
16175             'IO::Poll' => '1.40',
16176             'IO::Seekable' => '1.40',
16177             'IO::Select' => '1.40',
16178             'IO::Socket' => '1.40',
16179             'IO::Socket::INET' => '1.40',
16180             'IO::Socket::UNIX' => '1.40',
16181             'JSON::PP' => '4.00',
16182             'JSON::PP::Boolean' => '4.00',
16183             'Module::CoreList' => '5.20190220',
16184             'Module::CoreList::Utils'=> '5.20190220',
16185             'Module::Load' => '0.34',
16186             'Net::Ping' => '2.71',
16187             'POSIX' => '1.87',
16188             'Test2' => '1.302162',
16189             'Test2::API' => '1.302162',
16190             'Test2::API::Breakage' => '1.302162',
16191             'Test2::API::Context' => '1.302162',
16192             'Test2::API::Instance' => '1.302162',
16193             'Test2::API::Stack' => '1.302162',
16194             'Test2::Event' => '1.302162',
16195             'Test2::Event::Bail' => '1.302162',
16196             'Test2::Event::Diag' => '1.302162',
16197             'Test2::Event::Encoding'=> '1.302162',
16198             'Test2::Event::Exception'=> '1.302162',
16199             'Test2::Event::Fail' => '1.302162',
16200             'Test2::Event::Generic' => '1.302162',
16201             'Test2::Event::Note' => '1.302162',
16202             'Test2::Event::Ok' => '1.302162',
16203             'Test2::Event::Pass' => '1.302162',
16204             'Test2::Event::Plan' => '1.302162',
16205             'Test2::Event::Skip' => '1.302162',
16206             'Test2::Event::Subtest' => '1.302162',
16207             'Test2::Event::TAP::Version'=> '1.302162',
16208             'Test2::Event::V2' => '1.302162',
16209             'Test2::Event::Waiting' => '1.302162',
16210             'Test2::EventFacet' => '1.302162',
16211             'Test2::EventFacet::About'=> '1.302162',
16212             'Test2::EventFacet::Amnesty'=> '1.302162',
16213             'Test2::EventFacet::Assert'=> '1.302162',
16214             'Test2::EventFacet::Control'=> '1.302162',
16215             'Test2::EventFacet::Error'=> '1.302162',
16216             'Test2::EventFacet::Hub'=> '1.302162',
16217             'Test2::EventFacet::Info'=> '1.302162',
16218             'Test2::EventFacet::Meta'=> '1.302162',
16219             'Test2::EventFacet::Parent'=> '1.302162',
16220             'Test2::EventFacet::Plan'=> '1.302162',
16221             'Test2::EventFacet::Render'=> '1.302162',
16222             'Test2::EventFacet::Trace'=> '1.302162',
16223             'Test2::Formatter' => '1.302162',
16224             'Test2::Formatter::TAP' => '1.302162',
16225             'Test2::Hub' => '1.302162',
16226             'Test2::Hub::Interceptor'=> '1.302162',
16227             'Test2::Hub::Interceptor::Terminator'=> '1.302162',
16228             'Test2::Hub::Subtest' => '1.302162',
16229             'Test2::IPC' => '1.302162',
16230             'Test2::IPC::Driver' => '1.302162',
16231             'Test2::IPC::Driver::Files'=> '1.302162',
16232             'Test2::Tools::Tiny' => '1.302162',
16233             'Test2::Util' => '1.302162',
16234             'Test2::Util::ExternalMeta'=> '1.302162',
16235             'Test2::Util::Facets2Legacy'=> '1.302162',
16236             'Test2::Util::HashBase' => '1.302162',
16237             'Test2::Util::Trace' => '1.302162',
16238             'Test::Builder' => '1.302162',
16239             'Test::Builder::Formatter'=> '1.302162',
16240             'Test::Builder::Module' => '1.302162',
16241             'Test::Builder::Tester' => '1.302162',
16242             'Test::Builder::Tester::Color'=> '1.302162',
16243             'Test::Builder::TodoDiag'=> '1.302162',
16244             'Test::More' => '1.302162',
16245             'Test::Simple' => '1.302162',
16246             'Test::Tester' => '1.302162',
16247             'Test::Tester::Capture' => '1.302162',
16248             'Test::Tester::CaptureRunner'=> '1.302162',
16249             'Test::Tester::Delegate'=> '1.302162',
16250             'Test::use::ok' => '1.302162',
16251             'XS::APItest' => '1.00',
16252             'deprecate' => '0.04',
16253             'ok' => '1.302162',
16254             'perlfaq' => '5.20190126',
16255             },
16256             removed => {
16257             }
16258             },
16259             5.029009 => {
16260             delta_from => 5.029008,
16261             changed => {
16262             'B::Op_private' => '5.029009',
16263             'Config' => '5.029009',
16264             'Devel::PPPort' => '3.45',
16265             'Encode' => '3.01',
16266             'ExtUtils::Manifest' => '1.72',
16267             'JSON::PP' => '4.02',
16268             'JSON::PP::Boolean' => '4.02',
16269             'Module::CoreList' => '5.20190320',
16270             'Module::CoreList::Utils'=> '5.20190320',
16271             'PerlIO::encoding' => '0.27',
16272             'Unicode' => '12.0.0',
16273             'threads::shared' => '1.60',
16274             'utf8' => '1.22',
16275             'warnings' => '1.44',
16276             },
16277             removed => {
16278             }
16279             },
16280             5.028002 => {
16281             delta_from => 5.028001,
16282             changed => {
16283             'B::Op_private' => '5.028002',
16284             'Config' => '5.028002',
16285             'Module::CoreList' => '5.20190419',
16286             'Module::CoreList::Utils'=> '5.20190419',
16287             'PerlIO::scalar' => '0.30',
16288             'Storable' => '3.08_01',
16289             },
16290             removed => {
16291             }
16292             },
16293             5.029010 => {
16294             delta_from => 5.029009,
16295             changed => {
16296             'B::Op_private' => '5.029010',
16297             'Config' => '5.02901',
16298             'Cwd' => '3.78',
16299             'Data::Dumper' => '2.174',
16300             'ExtUtils::CBuilder' => '0.280231',
16301             'ExtUtils::CBuilder::Base'=> '0.280231',
16302             'ExtUtils::CBuilder::Platform::Unix'=> '0.280231',
16303             'ExtUtils::CBuilder::Platform::VMS'=> '0.280231',
16304             'ExtUtils::CBuilder::Platform::Windows'=> '0.280231',
16305             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280231',
16306             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280231',
16307             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280231',
16308             'ExtUtils::CBuilder::Platform::aix'=> '0.280231',
16309             'ExtUtils::CBuilder::Platform::android'=> '0.280231',
16310             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280231',
16311             'ExtUtils::CBuilder::Platform::darwin'=> '0.280231',
16312             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280231',
16313             'ExtUtils::CBuilder::Platform::os2'=> '0.280231',
16314             'File::Spec' => '3.78',
16315             'File::Spec::AmigaOS' => '3.78',
16316             'File::Spec::Cygwin' => '3.78',
16317             'File::Spec::Epoc' => '3.78',
16318             'File::Spec::Functions' => '3.78',
16319             'File::Spec::Mac' => '3.78',
16320             'File::Spec::OS2' => '3.78',
16321             'File::Spec::Unix' => '3.78',
16322             'File::Spec::VMS' => '3.78',
16323             'File::Spec::Win32' => '3.78',
16324             'I18N::Langinfo' => '0.18',
16325             'Module::CoreList' => '5.20190420',
16326             'Module::CoreList::Utils'=> '5.20190420',
16327             'Module::Metadata' => '1.000036',
16328             'POSIX' => '1.88',
16329             'Storable' => '3.15',
16330             'Unicode' => '12.1.0',
16331             },
16332             removed => {
16333             }
16334             },
16335             5.030000 => {
16336             delta_from => 5.02901,
16337             changed => {
16338             'B::Op_private' => '5.030000',
16339             'Config' => '5.03',
16340             'Devel::PPPort' => '3.52',
16341             'Module::CoreList' => '5.20190522',
16342             'Module::CoreList::Utils'=> '5.20190522',
16343             'XS::Typemap' => '0.17',
16344             },
16345             removed => {
16346             }
16347             },
16348             5.031000 => {
16349             delta_from => 5.03,
16350             changed => {
16351             'B::Op_private' => '5.031000',
16352             'Config' => '5.031',
16353             'Module::CoreList' => '5.20190524',
16354             'Module::CoreList::Utils'=> '5.20190524',
16355             'Pod::Simple' => '3.36',
16356             'Pod::Simple::BlackBox' => '3.36',
16357             'Pod::Simple::Checker' => '3.36',
16358             'Pod::Simple::Debug' => '3.36',
16359             'Pod::Simple::DumpAsText'=> '3.36',
16360             'Pod::Simple::DumpAsXML'=> '3.36',
16361             'Pod::Simple::HTML' => '3.36',
16362             'Pod::Simple::HTMLBatch'=> '3.36',
16363             'Pod::Simple::JustPod' => undef,
16364             'Pod::Simple::LinkSection'=> '3.36',
16365             'Pod::Simple::Methody' => '3.36',
16366             'Pod::Simple::Progress' => '3.36',
16367             'Pod::Simple::PullParser'=> '3.36',
16368             'Pod::Simple::PullParserEndToken'=> '3.36',
16369             'Pod::Simple::PullParserStartToken'=> '3.36',
16370             'Pod::Simple::PullParserTextToken'=> '3.36',
16371             'Pod::Simple::PullParserToken'=> '3.36',
16372             'Pod::Simple::RTF' => '3.36',
16373             'Pod::Simple::Search' => '3.36',
16374             'Pod::Simple::SimpleTree'=> '3.36',
16375             'Pod::Simple::Text' => '3.36',
16376             'Pod::Simple::TextContent'=> '3.36',
16377             'Pod::Simple::TiedOutFH'=> '3.36',
16378             'Pod::Simple::Transcode'=> '3.36',
16379             'Pod::Simple::TranscodeDumb'=> '3.36',
16380             'Pod::Simple::TranscodeSmart'=> '3.36',
16381             'Pod::Simple::XHTML' => '3.36',
16382             'Pod::Simple::XMLOutStream'=> '3.36',
16383             'Socket' => '2.029',
16384             'feature' => '1.55',
16385             },
16386             removed => {
16387             }
16388             },
16389             5.031001 => {
16390             delta_from => 5.031000,
16391             changed => {
16392             'App::Cpan' => '1.675',
16393             'B::Op_private' => '5.031001',
16394             'CPAN' => '2.27',
16395             'CPAN::Bundle' => '5.5005',
16396             'CPAN::Distribution' => '2.27',
16397             'CPAN::FTP' => '5.5012',
16398             'CPAN::FirstTime' => '5.5314',
16399             'CPAN::HandleConfig' => '5.5011',
16400             'CPAN::Mirrors' => '2.27',
16401             'CPAN::Queue' => '5.5003',
16402             'CPAN::Shell' => '5.5009',
16403             'CPAN::Tarzip' => '5.5013',
16404             'Class::Struct' => '0.66',
16405             'Compress::Raw::Bzip2' => '2.086',
16406             'Compress::Raw::Zlib' => '2.086',
16407             'Compress::Zlib' => '2.086',
16408             'Config' => '5.031001',
16409             'DB_File' => '1.852',
16410             'Devel::PPPort' => '3.53',
16411             'ExtUtils::CBuilder' => '0.280232',
16412             'ExtUtils::Command' => '7.36',
16413             'ExtUtils::Command::MM' => '7.36',
16414             'ExtUtils::Liblist' => '7.36',
16415             'ExtUtils::Liblist::Kid'=> '7.36',
16416             'ExtUtils::MM' => '7.36',
16417             'ExtUtils::MM_AIX' => '7.36',
16418             'ExtUtils::MM_Any' => '7.36',
16419             'ExtUtils::MM_BeOS' => '7.36',
16420             'ExtUtils::MM_Cygwin' => '7.36',
16421             'ExtUtils::MM_DOS' => '7.36',
16422             'ExtUtils::MM_Darwin' => '7.36',
16423             'ExtUtils::MM_MacOS' => '7.36',
16424             'ExtUtils::MM_NW5' => '7.36',
16425             'ExtUtils::MM_OS2' => '7.36',
16426             'ExtUtils::MM_QNX' => '7.36',
16427             'ExtUtils::MM_UWIN' => '7.36',
16428             'ExtUtils::MM_Unix' => '7.36',
16429             'ExtUtils::MM_VMS' => '7.36',
16430             'ExtUtils::MM_VOS' => '7.36',
16431             'ExtUtils::MM_Win32' => '7.36',
16432             'ExtUtils::MM_Win95' => '7.36',
16433             'ExtUtils::MY' => '7.36',
16434             'ExtUtils::MakeMaker' => '7.36',
16435             'ExtUtils::MakeMaker::Config'=> '7.36',
16436             'ExtUtils::MakeMaker::Locale'=> '7.36',
16437             'ExtUtils::MakeMaker::version'=> '7.36',
16438             'ExtUtils::MakeMaker::version::regex'=> '7.36',
16439             'ExtUtils::Mkbootstrap' => '7.36',
16440             'ExtUtils::Mksymlists' => '7.36',
16441             'ExtUtils::testlib' => '7.36',
16442             'File::Spec::Win32' => '3.79',
16443             'I18N::LangTags' => '0.44',
16444             'IO' => '1.41',
16445             'IO::Compress::Adapter::Bzip2'=> '2.086',
16446             'IO::Compress::Adapter::Deflate'=> '2.086',
16447             'IO::Compress::Adapter::Identity'=> '2.086',
16448             'IO::Compress::Base' => '2.086',
16449             'IO::Compress::Base::Common'=> '2.086',
16450             'IO::Compress::Bzip2' => '2.086',
16451             'IO::Compress::Deflate' => '2.086',
16452             'IO::Compress::Gzip' => '2.086',
16453             'IO::Compress::Gzip::Constants'=> '2.086',
16454             'IO::Compress::RawDeflate'=> '2.086',
16455             'IO::Compress::Zip' => '2.086',
16456             'IO::Compress::Zip::Constants'=> '2.086',
16457             'IO::Compress::Zlib::Constants'=> '2.086',
16458             'IO::Compress::Zlib::Extra'=> '2.086',
16459             'IO::Dir' => '1.41',
16460             'IO::File' => '1.41',
16461             'IO::Handle' => '1.41',
16462             'IO::Pipe' => '1.41',
16463             'IO::Poll' => '1.41',
16464             'IO::Seekable' => '1.41',
16465             'IO::Select' => '1.41',
16466             'IO::Socket' => '1.41',
16467             'IO::Socket::INET' => '1.41',
16468             'IO::Socket::UNIX' => '1.41',
16469             'IO::Uncompress::Adapter::Bunzip2'=> '2.086',
16470             'IO::Uncompress::Adapter::Identity'=> '2.086',
16471             'IO::Uncompress::Adapter::Inflate'=> '2.086',
16472             'IO::Uncompress::AnyInflate'=> '2.086',
16473             'IO::Uncompress::AnyUncompress'=> '2.086',
16474             'IO::Uncompress::Base' => '2.086',
16475             'IO::Uncompress::Bunzip2'=> '2.086',
16476             'IO::Uncompress::Gunzip'=> '2.086',
16477             'IO::Uncompress::Inflate'=> '2.086',
16478             'IO::Uncompress::RawInflate'=> '2.086',
16479             'IO::Uncompress::Unzip' => '2.086',
16480             'Module::CoreList' => '5.20190620',
16481             'Module::CoreList::Utils'=> '5.20190620',
16482             'POSIX' => '1.89',
16483             'Pod::Man' => '4.12',
16484             'Pod::ParseLink' => '4.12',
16485             'Pod::Simple' => '3.38',
16486             'Pod::Simple::BlackBox' => '3.38',
16487             'Pod::Simple::Checker' => '3.38',
16488             'Pod::Simple::Debug' => '3.38',
16489             'Pod::Simple::DumpAsText'=> '3.38',
16490             'Pod::Simple::DumpAsXML'=> '3.38',
16491             'Pod::Simple::HTML' => '3.38',
16492             'Pod::Simple::HTMLBatch'=> '3.38',
16493             'Pod::Simple::LinkSection'=> '3.38',
16494             'Pod::Simple::Methody' => '3.38',
16495             'Pod::Simple::Progress' => '3.38',
16496             'Pod::Simple::PullParser'=> '3.38',
16497             'Pod::Simple::PullParserEndToken'=> '3.38',
16498             'Pod::Simple::PullParserStartToken'=> '3.38',
16499             'Pod::Simple::PullParserTextToken'=> '3.38',
16500             'Pod::Simple::PullParserToken'=> '3.38',
16501             'Pod::Simple::RTF' => '3.38',
16502             'Pod::Simple::Search' => '3.38',
16503             'Pod::Simple::SimpleTree'=> '3.38',
16504             'Pod::Simple::Text' => '3.38',
16505             'Pod::Simple::TextContent'=> '3.38',
16506             'Pod::Simple::TiedOutFH'=> '3.38',
16507             'Pod::Simple::Transcode'=> '3.38',
16508             'Pod::Simple::TranscodeDumb'=> '3.38',
16509             'Pod::Simple::TranscodeSmart'=> '3.38',
16510             'Pod::Simple::XHTML' => '3.38',
16511             'Pod::Simple::XMLOutStream'=> '3.38',
16512             'Pod::Text' => '4.12',
16513             'Pod::Text::Color' => '4.12',
16514             'Pod::Text::Overstrike' => '4.12',
16515             'Pod::Text::Termcap' => '4.12',
16516             'SelfLoader' => '1.26',
16517             'Storable' => '3.16',
16518             'Sys::Hostname' => '1.23',
16519             'Test2' => '1.302164',
16520             'Test2::API' => '1.302164',
16521             'Test2::API::Breakage' => '1.302164',
16522             'Test2::API::Context' => '1.302164',
16523             'Test2::API::Instance' => '1.302164',
16524             'Test2::API::Stack' => '1.302164',
16525             'Test2::Event' => '1.302164',
16526             'Test2::Event::Bail' => '1.302164',
16527             'Test2::Event::Diag' => '1.302164',
16528             'Test2::Event::Encoding'=> '1.302164',
16529             'Test2::Event::Exception'=> '1.302164',
16530             'Test2::Event::Fail' => '1.302164',
16531             'Test2::Event::Generic' => '1.302164',
16532             'Test2::Event::Note' => '1.302164',
16533             'Test2::Event::Ok' => '1.302164',
16534             'Test2::Event::Pass' => '1.302164',
16535             'Test2::Event::Plan' => '1.302164',
16536             'Test2::Event::Skip' => '1.302164',
16537             'Test2::Event::Subtest' => '1.302164',
16538             'Test2::Event::TAP::Version'=> '1.302164',
16539             'Test2::Event::V2' => '1.302164',
16540             'Test2::Event::Waiting' => '1.302164',
16541             'Test2::EventFacet' => '1.302164',
16542             'Test2::EventFacet::About'=> '1.302164',
16543             'Test2::EventFacet::Amnesty'=> '1.302164',
16544             'Test2::EventFacet::Assert'=> '1.302164',
16545             'Test2::EventFacet::Control'=> '1.302164',
16546             'Test2::EventFacet::Error'=> '1.302164',
16547             'Test2::EventFacet::Hub'=> '1.302164',
16548             'Test2::EventFacet::Info'=> '1.302164',
16549             'Test2::EventFacet::Info::Table'=> '1.302164',
16550             'Test2::EventFacet::Meta'=> '1.302164',
16551             'Test2::EventFacet::Parent'=> '1.302164',
16552             'Test2::EventFacet::Plan'=> '1.302164',
16553             'Test2::EventFacet::Render'=> '1.302164',
16554             'Test2::EventFacet::Trace'=> '1.302164',
16555             'Test2::Formatter' => '1.302164',
16556             'Test2::Formatter::TAP' => '1.302164',
16557             'Test2::Hub' => '1.302164',
16558             'Test2::Hub::Interceptor'=> '1.302164',
16559             'Test2::Hub::Interceptor::Terminator'=> '1.302164',
16560             'Test2::Hub::Subtest' => '1.302164',
16561             'Test2::IPC' => '1.302164',
16562             'Test2::IPC::Driver' => '1.302164',
16563             'Test2::IPC::Driver::Files'=> '1.302164',
16564             'Test2::Tools::Tiny' => '1.302164',
16565             'Test2::Util' => '1.302164',
16566             'Test2::Util::ExternalMeta'=> '1.302164',
16567             'Test2::Util::Facets2Legacy'=> '1.302164',
16568             'Test2::Util::HashBase' => '1.302164',
16569             'Test2::Util::Trace' => '1.302164',
16570             'Test::Builder' => '1.302164',
16571             'Test::Builder::Formatter'=> '1.302164',
16572             'Test::Builder::Module' => '1.302164',
16573             'Test::Builder::Tester' => '1.302164',
16574             'Test::Builder::Tester::Color'=> '1.302164',
16575             'Test::Builder::TodoDiag'=> '1.302164',
16576             'Test::More' => '1.302164',
16577             'Test::Simple' => '1.302164',
16578             'Test::Tester' => '1.302164',
16579             'Test::Tester::Capture' => '1.302164',
16580             'Test::Tester::CaptureRunner'=> '1.302164',
16581             'Test::Tester::Delegate'=> '1.302164',
16582             'Test::use::ok' => '1.302164',
16583             'Tie::File' => '1.03',
16584             'Tie::Hash::NamedCapture'=> '0.11',
16585             'Time::HiRes' => '1.9761',
16586             'Unicode::Normalize' => '1.27',
16587             'Unicode::UCD' => '0.73',
16588             'XS::APItest' => '1.01',
16589             'ok' => '1.302164',
16590             'overload' => '1.31',
16591             'warnings' => '1.45',
16592             },
16593             removed => {
16594             'Pod::Find' => 1,
16595             'Pod::InputObjects' => 1,
16596             'Pod::ParseUtils' => 1,
16597             'Pod::Parser' => 1,
16598             'Pod::PlainText' => 1,
16599             'Pod::Select' => 1,
16600             }
16601             },
16602             5.031002 => {
16603             delta_from => 5.031001,
16604             changed => {
16605             'B::Op_private' => '5.031002',
16606             'Config' => '5.031002',
16607             'Devel::PPPort' => '3.54',
16608             'Exporter' => '5.74',
16609             'Exporter::Heavy' => '5.74',
16610             'IPC::Cmd' => '1.04',
16611             'JSON::PP' => '4.04',
16612             'JSON::PP::Boolean' => '4.04',
16613             'Module::CoreList' => '5.20190720',
16614             'Module::CoreList::Utils'=> '5.20190720',
16615             'Opcode' => '1.44',
16616             'PerlIO::encoding' => '0.28',
16617             'Pod::Simple' => '3.39',
16618             'Pod::Simple::BlackBox' => '3.39',
16619             'Pod::Simple::Checker' => '3.39',
16620             'Pod::Simple::Debug' => '3.39',
16621             'Pod::Simple::DumpAsText'=> '3.39',
16622             'Pod::Simple::DumpAsXML'=> '3.39',
16623             'Pod::Simple::HTML' => '3.39',
16624             'Pod::Simple::HTMLBatch'=> '3.39',
16625             'Pod::Simple::LinkSection'=> '3.39',
16626             'Pod::Simple::Methody' => '3.39',
16627             'Pod::Simple::Progress' => '3.39',
16628             'Pod::Simple::PullParser'=> '3.39',
16629             'Pod::Simple::PullParserEndToken'=> '3.39',
16630             'Pod::Simple::PullParserStartToken'=> '3.39',
16631             'Pod::Simple::PullParserTextToken'=> '3.39',
16632             'Pod::Simple::PullParserToken'=> '3.39',
16633             'Pod::Simple::RTF' => '3.39',
16634             'Pod::Simple::Search' => '3.39',
16635             'Pod::Simple::SimpleTree'=> '3.39',
16636             'Pod::Simple::Text' => '3.39',
16637             'Pod::Simple::TextContent'=> '3.39',
16638             'Pod::Simple::TiedOutFH'=> '3.39',
16639             'Pod::Simple::Transcode'=> '3.39',
16640             'Pod::Simple::TranscodeDumb'=> '3.39',
16641             'Pod::Simple::TranscodeSmart'=> '3.39',
16642             'Pod::Simple::XHTML' => '3.39',
16643             'Pod::Simple::XMLOutStream'=> '3.39',
16644             'threads::shared' => '1.61',
16645             },
16646             removed => {
16647             }
16648             },
16649             5.031003 => {
16650             delta_from => 5.031002,
16651             changed => {
16652             'B::Op_private' => '5.031003',
16653             'Compress::Raw::Bzip2' => '2.087',
16654             'Compress::Raw::Zlib' => '2.087',
16655             'Compress::Zlib' => '2.087',
16656             'Config' => '5.031003',
16657             'Devel::PPPort' => '3.55',
16658             'File::Find' => '1.37',
16659             'Getopt::Long' => '2.51',
16660             'I18N::LangTags::Detect'=> '1.08',
16661             'IO::Compress::Adapter::Bzip2'=> '2.087',
16662             'IO::Compress::Adapter::Deflate'=> '2.087',
16663             'IO::Compress::Adapter::Identity'=> '2.087',
16664             'IO::Compress::Base' => '2.087',
16665             'IO::Compress::Base::Common'=> '2.087',
16666             'IO::Compress::Bzip2' => '2.087',
16667             'IO::Compress::Deflate' => '2.087',
16668             'IO::Compress::Gzip' => '2.087',
16669             'IO::Compress::Gzip::Constants'=> '2.087',
16670             'IO::Compress::RawDeflate'=> '2.087',
16671             'IO::Compress::Zip' => '2.087',
16672             'IO::Compress::Zip::Constants'=> '2.087',
16673             'IO::Compress::Zlib::Constants'=> '2.087',
16674             'IO::Compress::Zlib::Extra'=> '2.087',
16675             'IO::Uncompress::Adapter::Bunzip2'=> '2.087',
16676             'IO::Uncompress::Adapter::Identity'=> '2.087',
16677             'IO::Uncompress::Adapter::Inflate'=> '2.087',
16678             'IO::Uncompress::AnyInflate'=> '2.087',
16679             'IO::Uncompress::AnyUncompress'=> '2.087',
16680             'IO::Uncompress::Base' => '2.087',
16681             'IO::Uncompress::Bunzip2'=> '2.087',
16682             'IO::Uncompress::Gunzip'=> '2.087',
16683             'IO::Uncompress::Inflate'=> '2.087',
16684             'IO::Uncompress::RawInflate'=> '2.087',
16685             'IO::Uncompress::Unzip' => '2.087',
16686             'Module::CoreList' => '5.20190820',
16687             'Module::CoreList::Utils'=> '5.20190820',
16688             'PerlIO::via' => '0.18',
16689             'Storable' => '3.17',
16690             'Test2' => '1.302166',
16691             'Test2::API' => '1.302166',
16692             'Test2::API::Breakage' => '1.302166',
16693             'Test2::API::Context' => '1.302166',
16694             'Test2::API::Instance' => '1.302166',
16695             'Test2::API::Stack' => '1.302166',
16696             'Test2::Event' => '1.302166',
16697             'Test2::Event::Bail' => '1.302166',
16698             'Test2::Event::Diag' => '1.302166',
16699             'Test2::Event::Encoding'=> '1.302166',
16700             'Test2::Event::Exception'=> '1.302166',
16701             'Test2::Event::Fail' => '1.302166',
16702             'Test2::Event::Generic' => '1.302166',
16703             'Test2::Event::Note' => '1.302166',
16704             'Test2::Event::Ok' => '1.302166',
16705             'Test2::Event::Pass' => '1.302166',
16706             'Test2::Event::Plan' => '1.302166',
16707             'Test2::Event::Skip' => '1.302166',
16708             'Test2::Event::Subtest' => '1.302166',
16709             'Test2::Event::TAP::Version'=> '1.302166',
16710             'Test2::Event::V2' => '1.302166',
16711             'Test2::Event::Waiting' => '1.302166',
16712             'Test2::EventFacet' => '1.302166',
16713             'Test2::EventFacet::About'=> '1.302166',
16714             'Test2::EventFacet::Amnesty'=> '1.302166',
16715             'Test2::EventFacet::Assert'=> '1.302166',
16716             'Test2::EventFacet::Control'=> '1.302166',
16717             'Test2::EventFacet::Error'=> '1.302166',
16718             'Test2::EventFacet::Hub'=> '1.302166',
16719             'Test2::EventFacet::Info'=> '1.302166',
16720             'Test2::EventFacet::Info::Table'=> '1.302166',
16721             'Test2::EventFacet::Meta'=> '1.302166',
16722             'Test2::EventFacet::Parent'=> '1.302166',
16723             'Test2::EventFacet::Plan'=> '1.302166',
16724             'Test2::EventFacet::Render'=> '1.302166',
16725             'Test2::EventFacet::Trace'=> '1.302166',
16726             'Test2::Formatter' => '1.302166',
16727             'Test2::Formatter::TAP' => '1.302166',
16728             'Test2::Hub' => '1.302166',
16729             'Test2::Hub::Interceptor'=> '1.302166',
16730             'Test2::Hub::Interceptor::Terminator'=> '1.302166',
16731             'Test2::Hub::Subtest' => '1.302166',
16732             'Test2::IPC' => '1.302166',
16733             'Test2::IPC::Driver' => '1.302166',
16734             'Test2::IPC::Driver::Files'=> '1.302166',
16735             'Test2::Tools::Tiny' => '1.302166',
16736             'Test2::Util' => '1.302166',
16737             'Test2::Util::ExternalMeta'=> '1.302166',
16738             'Test2::Util::Facets2Legacy'=> '1.302166',
16739             'Test2::Util::HashBase' => '1.302166',
16740             'Test2::Util::Trace' => '1.302166',
16741             'Test::Builder' => '1.302166',
16742             'Test::Builder::Formatter'=> '1.302166',
16743             'Test::Builder::Module' => '1.302166',
16744             'Test::Builder::Tester' => '1.302166',
16745             'Test::Builder::Tester::Color'=> '1.302166',
16746             'Test::Builder::TodoDiag'=> '1.302166',
16747             'Test::More' => '1.302166',
16748             'Test::Simple' => '1.302166',
16749             'Test::Tester' => '1.302166',
16750             'Test::Tester::Capture' => '1.302166',
16751             'Test::Tester::CaptureRunner'=> '1.302166',
16752             'Test::Tester::Delegate'=> '1.302166',
16753             'Test::use::ok' => '1.302166',
16754             'Thread' => '3.05',
16755             'Time::HiRes' => '1.9762',
16756             'Win32' => '0.53',
16757             'XS::APItest' => '1.02',
16758             'ok' => '1.302166',
16759             },
16760             removed => {
16761             }
16762             },
16763             5.031004 => {
16764             delta_from => 5.031003,
16765             changed => {
16766             'B::Op_private' => '5.031004',
16767             'Config' => '5.031004',
16768             'ExtUtils::Command' => '7.38',
16769             'ExtUtils::Command::MM' => '7.38',
16770             'ExtUtils::Liblist' => '7.38',
16771             'ExtUtils::Liblist::Kid'=> '7.38',
16772             'ExtUtils::MM' => '7.38',
16773             'ExtUtils::MM_AIX' => '7.38',
16774             'ExtUtils::MM_Any' => '7.38',
16775             'ExtUtils::MM_BeOS' => '7.38',
16776             'ExtUtils::MM_Cygwin' => '7.38',
16777             'ExtUtils::MM_DOS' => '7.38',
16778             'ExtUtils::MM_Darwin' => '7.38',
16779             'ExtUtils::MM_MacOS' => '7.38',
16780             'ExtUtils::MM_NW5' => '7.38',
16781             'ExtUtils::MM_OS2' => '7.38',
16782             'ExtUtils::MM_QNX' => '7.38',
16783             'ExtUtils::MM_UWIN' => '7.38',
16784             'ExtUtils::MM_Unix' => '7.38',
16785             'ExtUtils::MM_VMS' => '7.38',
16786             'ExtUtils::MM_VOS' => '7.38',
16787             'ExtUtils::MM_Win32' => '7.38',
16788             'ExtUtils::MM_Win95' => '7.38',
16789             'ExtUtils::MY' => '7.38',
16790             'ExtUtils::MakeMaker' => '7.38',
16791             'ExtUtils::MakeMaker::Config'=> '7.38',
16792             'ExtUtils::MakeMaker::Locale'=> '7.38',
16793             'ExtUtils::MakeMaker::version'=> '7.38',
16794             'ExtUtils::MakeMaker::version::regex'=> '7.38',
16795             'ExtUtils::Mkbootstrap' => '7.38',
16796             'ExtUtils::Mksymlists' => '7.38',
16797             'ExtUtils::testlib' => '7.38',
16798             'I18N::Langinfo' => '0.19',
16799             'List::Util' => '1.52',
16800             'List::Util::XS' => '1.52',
16801             'Module::CoreList' => '5.20190920',
16802             'Module::CoreList::Utils'=> '5.20190920',
16803             'Module::Metadata' => '1.000037',
16804             'Scalar::Util' => '1.52',
16805             'Sub::Util' => '1.52',
16806             'Test2' => '1.302168',
16807             'Test2::API' => '1.302168',
16808             'Test2::API::Breakage' => '1.302168',
16809             'Test2::API::Context' => '1.302168',
16810             'Test2::API::Instance' => '1.302168',
16811             'Test2::API::Stack' => '1.302168',
16812             'Test2::Event' => '1.302168',
16813             'Test2::Event::Bail' => '1.302168',
16814             'Test2::Event::Diag' => '1.302168',
16815             'Test2::Event::Encoding'=> '1.302168',
16816             'Test2::Event::Exception'=> '1.302168',
16817             'Test2::Event::Fail' => '1.302168',
16818             'Test2::Event::Generic' => '1.302168',
16819             'Test2::Event::Note' => '1.302168',
16820             'Test2::Event::Ok' => '1.302168',
16821             'Test2::Event::Pass' => '1.302168',
16822             'Test2::Event::Plan' => '1.302168',
16823             'Test2::Event::Skip' => '1.302168',
16824             'Test2::Event::Subtest' => '1.302168',
16825             'Test2::Event::TAP::Version'=> '1.302168',
16826             'Test2::Event::V2' => '1.302168',
16827             'Test2::Event::Waiting' => '1.302168',
16828             'Test2::EventFacet' => '1.302168',
16829             'Test2::EventFacet::About'=> '1.302168',
16830             'Test2::EventFacet::Amnesty'=> '1.302168',
16831             'Test2::EventFacet::Assert'=> '1.302168',
16832             'Test2::EventFacet::Control'=> '1.302168',
16833             'Test2::EventFacet::Error'=> '1.302168',
16834             'Test2::EventFacet::Hub'=> '1.302168',
16835             'Test2::EventFacet::Info'=> '1.302168',
16836             'Test2::EventFacet::Info::Table'=> '1.302168',
16837             'Test2::EventFacet::Meta'=> '1.302168',
16838             'Test2::EventFacet::Parent'=> '1.302168',
16839             'Test2::EventFacet::Plan'=> '1.302168',
16840             'Test2::EventFacet::Render'=> '1.302168',
16841             'Test2::EventFacet::Trace'=> '1.302168',
16842             'Test2::Formatter' => '1.302168',
16843             'Test2::Formatter::TAP' => '1.302168',
16844             'Test2::Hub' => '1.302168',
16845             'Test2::Hub::Interceptor'=> '1.302168',
16846             'Test2::Hub::Interceptor::Terminator'=> '1.302168',
16847             'Test2::Hub::Subtest' => '1.302168',
16848             'Test2::IPC' => '1.302168',
16849             'Test2::IPC::Driver' => '1.302168',
16850             'Test2::IPC::Driver::Files'=> '1.302168',
16851             'Test2::Tools::Tiny' => '1.302168',
16852             'Test2::Util' => '1.302168',
16853             'Test2::Util::ExternalMeta'=> '1.302168',
16854             'Test2::Util::Facets2Legacy'=> '1.302168',
16855             'Test2::Util::HashBase' => '1.302168',
16856             'Test2::Util::Trace' => '1.302168',
16857             'Test::Builder' => '1.302168',
16858             'Test::Builder::Formatter'=> '1.302168',
16859             'Test::Builder::Module' => '1.302168',
16860             'Test::Builder::Tester' => '1.302168',
16861             'Test::Builder::Tester::Color'=> '1.302168',
16862             'Test::Builder::TodoDiag'=> '1.302168',
16863             'Test::More' => '1.302168',
16864             'Test::Simple' => '1.302168',
16865             'Test::Tester' => '1.302168',
16866             'Test::Tester::Capture' => '1.302168',
16867             'Test::Tester::CaptureRunner'=> '1.302168',
16868             'Test::Tester::Delegate'=> '1.302168',
16869             'Test::use::ok' => '1.302168',
16870             'Time::HiRes' => '1.9763',
16871             'XS::APItest' => '1.03',
16872             'ok' => '1.302168',
16873             're' => '0.38',
16874             },
16875             removed => {
16876             }
16877             },
16878             5.031005 => {
16879             delta_from => 5.031004,
16880             changed => {
16881             'B' => '1.77',
16882             'B::Deparse' => '1.50',
16883             'B::Op_private' => '5.031005',
16884             'Config' => '5.031005',
16885             'Devel::PPPort' => '3.54',
16886             'Digest::MD5' => '2.55_01',
16887             'Dumpvalue' => '1.21',
16888             'ExtUtils::CBuilder' => '0.280233',
16889             'Math::BigFloat' => '1.999817_01',
16890             'Math::BigInt' => '1.999817_01',
16891             'Math::BigInt::Calc' => '1.999817_01',
16892             'Math::BigInt::FastCalc'=> '0.5009',
16893             'Math::BigInt::Lib' => '1.999817_01',
16894             'Module::CoreList' => '5.20191020',
16895             'Module::CoreList::Utils'=> '5.20191020',
16896             'Safe' => '2.41',
16897             'Time::HiRes' => '1.9764',
16898             'XS::APItest' => '1.04',
16899             'threads' => '2.23',
16900             },
16901             removed => {
16902             }
16903             },
16904             5.030001 => {
16905             delta_from => 5.030000,
16906             changed => {
16907             'B::Op_private' => '5.030001',
16908             'Config' => '5.030001',
16909             'Module::CoreList' => '5.20191110',
16910             'Module::CoreList::Utils'=> '5.20191110',
16911             },
16912             removed => {
16913             }
16914             },
16915             5.031006 => {
16916             delta_from => 5.031005,
16917             changed => {
16918             'B::Deparse' => '1.51',
16919             'B::Op_private' => '5.031006',
16920             'Compress::Raw::Bzip2' => '2.090',
16921             'Compress::Raw::Zlib' => '2.090',
16922             'Compress::Zlib' => '2.090',
16923             'Config' => '5.031006',
16924             'Devel::PPPort' => '3.55',
16925             'DynaLoader' => '1.46',
16926             'IO::Compress::Adapter::Bzip2'=> '2.090',
16927             'IO::Compress::Adapter::Deflate'=> '2.090',
16928             'IO::Compress::Adapter::Identity'=> '2.090',
16929             'IO::Compress::Base' => '2.090',
16930             'IO::Compress::Base::Common'=> '2.090',
16931             'IO::Compress::Bzip2' => '2.090',
16932             'IO::Compress::Deflate' => '2.090',
16933             'IO::Compress::Gzip' => '2.090',
16934             'IO::Compress::Gzip::Constants'=> '2.090',
16935             'IO::Compress::RawDeflate'=> '2.090',
16936             'IO::Compress::Zip' => '2.090',
16937             'IO::Compress::Zip::Constants'=> '2.090',
16938             'IO::Compress::Zlib::Constants'=> '2.090',
16939             'IO::Compress::Zlib::Extra'=> '2.090',
16940             'IO::Uncompress::Adapter::Bunzip2'=> '2.090',
16941             'IO::Uncompress::Adapter::Identity'=> '2.090',
16942             'IO::Uncompress::Adapter::Inflate'=> '2.090',
16943             'IO::Uncompress::AnyInflate'=> '2.090',
16944             'IO::Uncompress::AnyUncompress'=> '2.090',
16945             'IO::Uncompress::Base' => '2.090',
16946             'IO::Uncompress::Bunzip2'=> '2.090',
16947             'IO::Uncompress::Gunzip'=> '2.090',
16948             'IO::Uncompress::Inflate'=> '2.090',
16949             'IO::Uncompress::RawInflate'=> '2.090',
16950             'IO::Uncompress::Unzip' => '2.090',
16951             'List::Util' => '1.53',
16952             'List::Util::XS' => '1.53',
16953             'Math::BigFloat' => '1.999818',
16954             'Math::BigInt' => '1.999818',
16955             'Math::BigInt::Calc' => '1.999818',
16956             'Math::BigInt::Lib' => '1.999818',
16957             'Module::CoreList' => '5.20191120',
16958             'Module::CoreList::Utils'=> '5.20191120',
16959             'Module::Load::Conditional'=> '0.70',
16960             'POSIX' => '1.90',
16961             'Pod::Simple' => '3.40',
16962             'Pod::Simple::BlackBox' => '3.40',
16963             'Pod::Simple::Checker' => '3.40',
16964             'Pod::Simple::Debug' => '3.40',
16965             'Pod::Simple::DumpAsText'=> '3.40',
16966             'Pod::Simple::DumpAsXML'=> '3.40',
16967             'Pod::Simple::HTML' => '3.40',
16968             'Pod::Simple::HTMLBatch'=> '3.40',
16969             'Pod::Simple::LinkSection'=> '3.40',
16970             'Pod::Simple::Methody' => '3.40',
16971             'Pod::Simple::Progress' => '3.40',
16972             'Pod::Simple::PullParser'=> '3.40',
16973             'Pod::Simple::PullParserEndToken'=> '3.40',
16974             'Pod::Simple::PullParserStartToken'=> '3.40',
16975             'Pod::Simple::PullParserTextToken'=> '3.40',
16976             'Pod::Simple::PullParserToken'=> '3.40',
16977             'Pod::Simple::RTF' => '3.40',
16978             'Pod::Simple::Search' => '3.40',
16979             'Pod::Simple::SimpleTree'=> '3.40',
16980             'Pod::Simple::Text' => '3.40',
16981             'Pod::Simple::TextContent'=> '3.40',
16982             'Pod::Simple::TiedOutFH'=> '3.40',
16983             'Pod::Simple::Transcode'=> '3.40',
16984             'Pod::Simple::TranscodeDumb'=> '3.40',
16985             'Pod::Simple::TranscodeSmart'=> '3.40',
16986             'Pod::Simple::XHTML' => '3.40',
16987             'Pod::Simple::XMLOutStream'=> '3.40',
16988             'Scalar::Util' => '1.53',
16989             'Sub::Util' => '1.53',
16990             'Sys::Syslog' => '0.36',
16991             'Test2' => '1.302169',
16992             'Test2::API' => '1.302169',
16993             'Test2::API::Breakage' => '1.302169',
16994             'Test2::API::Context' => '1.302169',
16995             'Test2::API::Instance' => '1.302169',
16996             'Test2::API::Stack' => '1.302169',
16997             'Test2::Event' => '1.302169',
16998             'Test2::Event::Bail' => '1.302169',
16999             'Test2::Event::Diag' => '1.302169',
17000             'Test2::Event::Encoding'=> '1.302169',
17001             'Test2::Event::Exception'=> '1.302169',
17002             'Test2::Event::Fail' => '1.302169',
17003             'Test2::Event::Generic' => '1.302169',
17004             'Test2::Event::Note' => '1.302169',
17005             'Test2::Event::Ok' => '1.302169',
17006             'Test2::Event::Pass' => '1.302169',
17007             'Test2::Event::Plan' => '1.302169',
17008             'Test2::Event::Skip' => '1.302169',
17009             'Test2::Event::Subtest' => '1.302169',
17010             'Test2::Event::TAP::Version'=> '1.302169',
17011             'Test2::Event::V2' => '1.302169',
17012             'Test2::Event::Waiting' => '1.302169',
17013             'Test2::EventFacet' => '1.302169',
17014             'Test2::EventFacet::About'=> '1.302169',
17015             'Test2::EventFacet::Amnesty'=> '1.302169',
17016             'Test2::EventFacet::Assert'=> '1.302169',
17017             'Test2::EventFacet::Control'=> '1.302169',
17018             'Test2::EventFacet::Error'=> '1.302169',
17019             'Test2::EventFacet::Hub'=> '1.302169',
17020             'Test2::EventFacet::Info'=> '1.302169',
17021             'Test2::EventFacet::Info::Table'=> '1.302169',
17022             'Test2::EventFacet::Meta'=> '1.302169',
17023             'Test2::EventFacet::Parent'=> '1.302169',
17024             'Test2::EventFacet::Plan'=> '1.302169',
17025             'Test2::EventFacet::Render'=> '1.302169',
17026             'Test2::EventFacet::Trace'=> '1.302169',
17027             'Test2::Formatter' => '1.302169',
17028             'Test2::Formatter::TAP' => '1.302169',
17029             'Test2::Hub' => '1.302169',
17030             'Test2::Hub::Interceptor'=> '1.302169',
17031             'Test2::Hub::Interceptor::Terminator'=> '1.302169',
17032             'Test2::Hub::Subtest' => '1.302169',
17033             'Test2::IPC' => '1.302169',
17034             'Test2::IPC::Driver' => '1.302169',
17035             'Test2::IPC::Driver::Files'=> '1.302169',
17036             'Test2::Tools::Tiny' => '1.302169',
17037             'Test2::Util' => '1.302169',
17038             'Test2::Util::ExternalMeta'=> '1.302169',
17039             'Test2::Util::Facets2Legacy'=> '1.302169',
17040             'Test2::Util::HashBase' => '1.302169',
17041             'Test2::Util::Trace' => '1.302169',
17042             'Test::Builder' => '1.302169',
17043             'Test::Builder::Formatter'=> '1.302169',
17044             'Test::Builder::Module' => '1.302169',
17045             'Test::Builder::Tester' => '1.302169',
17046             'Test::Builder::Tester::Color'=> '1.302169',
17047             'Test::Builder::TodoDiag'=> '1.302169',
17048             'Test::More' => '1.302169',
17049             'Test::Simple' => '1.302169',
17050             'Test::Tester' => '1.302169',
17051             'Test::Tester::Capture' => '1.302169',
17052             'Test::Tester::CaptureRunner'=> '1.302169',
17053             'Test::Tester::Delegate'=> '1.302169',
17054             'Test::use::ok' => '1.302169',
17055             'Tie::StdHandle' => '4.6',
17056             'Unicode::UCD' => '0.74',
17057             'Win32API::File' => '0.1203_01',
17058             'feature' => '1.56',
17059             'mro' => '1.23',
17060             'ok' => '1.302169',
17061             'perlfaq' => '5.20191102',
17062             },
17063             removed => {
17064             }
17065             },
17066             5.031007 => {
17067             delta_from => 5.031006,
17068             changed => {
17069             'B' => '1.78',
17070             'B::Deparse' => '1.52',
17071             'B::Op_private' => '5.031007',
17072             'Compress::Raw::Bzip2' => '2.093',
17073             'Compress::Raw::Zlib' => '2.093',
17074             'Compress::Zlib' => '2.093',
17075             'Config' => '5.031007',
17076             'Devel::PPPort' => '3.56',
17077             'English' => '1.11',
17078             'ExtUtils::Command' => '7.42',
17079             'ExtUtils::Command::MM' => '7.42',
17080             'ExtUtils::Liblist' => '7.42',
17081             'ExtUtils::Liblist::Kid'=> '7.42',
17082             'ExtUtils::MM' => '7.42',
17083             'ExtUtils::MM_AIX' => '7.42',
17084             'ExtUtils::MM_Any' => '7.42',
17085             'ExtUtils::MM_BeOS' => '7.42',
17086             'ExtUtils::MM_Cygwin' => '7.42',
17087             'ExtUtils::MM_DOS' => '7.42',
17088             'ExtUtils::MM_Darwin' => '7.42',
17089             'ExtUtils::MM_MacOS' => '7.42',
17090             'ExtUtils::MM_NW5' => '7.42',
17091             'ExtUtils::MM_OS2' => '7.42',
17092             'ExtUtils::MM_QNX' => '7.42',
17093             'ExtUtils::MM_UWIN' => '7.42',
17094             'ExtUtils::MM_Unix' => '7.42',
17095             'ExtUtils::MM_VMS' => '7.42',
17096             'ExtUtils::MM_VOS' => '7.42',
17097             'ExtUtils::MM_Win32' => '7.42',
17098             'ExtUtils::MM_Win95' => '7.42',
17099             'ExtUtils::MY' => '7.42',
17100             'ExtUtils::MakeMaker' => '7.42',
17101             'ExtUtils::MakeMaker::Config'=> '7.42',
17102             'ExtUtils::MakeMaker::Locale'=> '7.42',
17103             'ExtUtils::MakeMaker::version'=> '7.42',
17104             'ExtUtils::MakeMaker::version::regex'=> '7.42',
17105             'ExtUtils::Mkbootstrap' => '7.42',
17106             'ExtUtils::Mksymlists' => '7.42',
17107             'ExtUtils::testlib' => '7.42',
17108             'File::stat' => '1.09',
17109             'Filter::Simple' => '0.96',
17110             'IO::Compress::Adapter::Bzip2'=> '2.093',
17111             'IO::Compress::Adapter::Deflate'=> '2.093',
17112             'IO::Compress::Adapter::Identity'=> '2.093',
17113             'IO::Compress::Base' => '2.093',
17114             'IO::Compress::Base::Common'=> '2.093',
17115             'IO::Compress::Bzip2' => '2.093',
17116             'IO::Compress::Deflate' => '2.093',
17117             'IO::Compress::Gzip' => '2.093',
17118             'IO::Compress::Gzip::Constants'=> '2.093',
17119             'IO::Compress::RawDeflate'=> '2.093',
17120             'IO::Compress::Zip' => '2.093',
17121             'IO::Compress::Zip::Constants'=> '2.093',
17122             'IO::Compress::Zlib::Constants'=> '2.093',
17123             'IO::Compress::Zlib::Extra'=> '2.093',
17124             'IO::Uncompress::Adapter::Bunzip2'=> '2.093',
17125             'IO::Uncompress::Adapter::Identity'=> '2.093',
17126             'IO::Uncompress::Adapter::Inflate'=> '2.093',
17127             'IO::Uncompress::AnyInflate'=> '2.093',
17128             'IO::Uncompress::AnyUncompress'=> '2.093',
17129             'IO::Uncompress::Base' => '2.093',
17130             'IO::Uncompress::Bunzip2'=> '2.093',
17131             'IO::Uncompress::Gunzip'=> '2.093',
17132             'IO::Uncompress::Inflate'=> '2.093',
17133             'IO::Uncompress::RawInflate'=> '2.093',
17134             'IO::Uncompress::Unzip' => '2.093',
17135             'Module::CoreList' => '5.20191220',
17136             'Module::CoreList::Utils'=> '5.20191220',
17137             'Net::Ping' => '2.72',
17138             'Opcode' => '1.45',
17139             'Storable' => '3.18',
17140             'Test2' => '1.302170',
17141             'Test2::API' => '1.302170',
17142             'Test2::API::Breakage' => '1.302170',
17143             'Test2::API::Context' => '1.302170',
17144             'Test2::API::Instance' => '1.302170',
17145             'Test2::API::Stack' => '1.302170',
17146             'Test2::Event' => '1.302170',
17147             'Test2::Event::Bail' => '1.302170',
17148             'Test2::Event::Diag' => '1.302170',
17149             'Test2::Event::Encoding'=> '1.302170',
17150             'Test2::Event::Exception'=> '1.302170',
17151             'Test2::Event::Fail' => '1.302170',
17152             'Test2::Event::Generic' => '1.302170',
17153             'Test2::Event::Note' => '1.302170',
17154             'Test2::Event::Ok' => '1.302170',
17155             'Test2::Event::Pass' => '1.302170',
17156             'Test2::Event::Plan' => '1.302170',
17157             'Test2::Event::Skip' => '1.302170',
17158             'Test2::Event::Subtest' => '1.302170',
17159             'Test2::Event::TAP::Version'=> '1.302170',
17160             'Test2::Event::V2' => '1.302170',
17161             'Test2::Event::Waiting' => '1.302170',
17162             'Test2::EventFacet' => '1.302170',
17163             'Test2::EventFacet::About'=> '1.302170',
17164             'Test2::EventFacet::Amnesty'=> '1.302170',
17165             'Test2::EventFacet::Assert'=> '1.302170',
17166             'Test2::EventFacet::Control'=> '1.302170',
17167             'Test2::EventFacet::Error'=> '1.302170',
17168             'Test2::EventFacet::Hub'=> '1.302170',
17169             'Test2::EventFacet::Info'=> '1.302170',
17170             'Test2::EventFacet::Info::Table'=> '1.302170',
17171             'Test2::EventFacet::Meta'=> '1.302170',
17172             'Test2::EventFacet::Parent'=> '1.302170',
17173             'Test2::EventFacet::Plan'=> '1.302170',
17174             'Test2::EventFacet::Render'=> '1.302170',
17175             'Test2::EventFacet::Trace'=> '1.302170',
17176             'Test2::Formatter' => '1.302170',
17177             'Test2::Formatter::TAP' => '1.302170',
17178             'Test2::Hub' => '1.302170',
17179             'Test2::Hub::Interceptor'=> '1.302170',
17180             'Test2::Hub::Interceptor::Terminator'=> '1.302170',
17181             'Test2::Hub::Subtest' => '1.302170',
17182             'Test2::IPC' => '1.302170',
17183             'Test2::IPC::Driver' => '1.302170',
17184             'Test2::IPC::Driver::Files'=> '1.302170',
17185             'Test2::Tools::Tiny' => '1.302170',
17186             'Test2::Util' => '1.302170',
17187             'Test2::Util::ExternalMeta'=> '1.302170',
17188             'Test2::Util::Facets2Legacy'=> '1.302170',
17189             'Test2::Util::HashBase' => '1.302170',
17190             'Test2::Util::Trace' => '1.302170',
17191             'Test::Builder' => '1.302170',
17192             'Test::Builder::Formatter'=> '1.302170',
17193             'Test::Builder::Module' => '1.302170',
17194             'Test::Builder::Tester' => '1.302170',
17195             'Test::Builder::Tester::Color'=> '1.302170',
17196             'Test::Builder::TodoDiag'=> '1.302170',
17197             'Test::More' => '1.302170',
17198             'Test::Simple' => '1.302170',
17199             'Test::Tester' => '1.302170',
17200             'Test::Tester::Capture' => '1.302170',
17201             'Test::Tester::CaptureRunner'=> '1.302170',
17202             'Test::Tester::Delegate'=> '1.302170',
17203             'Test::use::ok' => '1.302170',
17204             'Tie::Hash::NamedCapture'=> '0.13',
17205             'VMS::Stdio' => '2.45',
17206             'XS::APItest' => '1.05',
17207             'feature' => '1.57',
17208             'ok' => '1.302170',
17209             'warnings' => '1.46',
17210             },
17211             removed => {
17212             }
17213             },
17214             5.031008 => {
17215             delta_from => 5.031007,
17216             changed => {
17217             'B::Op_private' => '5.031008',
17218             'Config' => '5.031008',
17219             'DB_File' => '1.853',
17220             'Encode' => '3.02',
17221             'ExtUtils::Command' => '7.44',
17222             'ExtUtils::Command::MM' => '7.44',
17223             'ExtUtils::Liblist' => '7.44',
17224             'ExtUtils::Liblist::Kid'=> '7.44',
17225             'ExtUtils::MM' => '7.44',
17226             'ExtUtils::MM_AIX' => '7.44',
17227             'ExtUtils::MM_Any' => '7.44',
17228             'ExtUtils::MM_BeOS' => '7.44',
17229             'ExtUtils::MM_Cygwin' => '7.44',
17230             'ExtUtils::MM_DOS' => '7.44',
17231             'ExtUtils::MM_Darwin' => '7.44',
17232             'ExtUtils::MM_MacOS' => '7.44',
17233             'ExtUtils::MM_NW5' => '7.44',
17234             'ExtUtils::MM_OS2' => '7.44',
17235             'ExtUtils::MM_QNX' => '7.44',
17236             'ExtUtils::MM_UWIN' => '7.44',
17237             'ExtUtils::MM_Unix' => '7.44',
17238             'ExtUtils::MM_VMS' => '7.44',
17239             'ExtUtils::MM_VOS' => '7.44',
17240             'ExtUtils::MM_Win32' => '7.44',
17241             'ExtUtils::MM_Win95' => '7.44',
17242             'ExtUtils::MY' => '7.44',
17243             'ExtUtils::MakeMaker' => '7.44',
17244             'ExtUtils::MakeMaker::Config'=> '7.44',
17245             'ExtUtils::MakeMaker::Locale'=> '7.44',
17246             'ExtUtils::MakeMaker::version'=> '7.44',
17247             'ExtUtils::MakeMaker::version::regex'=> '7.44',
17248             'ExtUtils::Mkbootstrap' => '7.44',
17249             'ExtUtils::Mksymlists' => '7.44',
17250             'ExtUtils::testlib' => '7.44',
17251             'Fatal' => '2.32',
17252             'Hash::Util' => '0.23',
17253             'IO' => '1.42',
17254             'IO::Handle' => '1.42',
17255             'IO::Socket' => '1.42',
17256             'Module::CoreList' => '5.20200120',
17257             'Module::CoreList::Utils'=> '5.20200120',
17258             'POSIX' => '1.91',
17259             'Pod::Man' => '4.14',
17260             'Pod::ParseLink' => '4.14',
17261             'Pod::Text' => '4.14',
17262             'Pod::Text::Color' => '4.14',
17263             'Pod::Text::Overstrike' => '4.14',
17264             'Pod::Text::Termcap' => '4.14',
17265             'Term::ANSIColor' => '5.01',
17266             'Test2' => '1.302171',
17267             'Test2::API' => '1.302171',
17268             'Test2::API::Breakage' => '1.302171',
17269             'Test2::API::Context' => '1.302171',
17270             'Test2::API::Instance' => '1.302171',
17271             'Test2::API::Stack' => '1.302171',
17272             'Test2::Event' => '1.302171',
17273             'Test2::Event::Bail' => '1.302171',
17274             'Test2::Event::Diag' => '1.302171',
17275             'Test2::Event::Encoding'=> '1.302171',
17276             'Test2::Event::Exception'=> '1.302171',
17277             'Test2::Event::Fail' => '1.302171',
17278             'Test2::Event::Generic' => '1.302171',
17279             'Test2::Event::Note' => '1.302171',
17280             'Test2::Event::Ok' => '1.302171',
17281             'Test2::Event::Pass' => '1.302171',
17282             'Test2::Event::Plan' => '1.302171',
17283             'Test2::Event::Skip' => '1.302171',
17284             'Test2::Event::Subtest' => '1.302171',
17285             'Test2::Event::TAP::Version'=> '1.302171',
17286             'Test2::Event::V2' => '1.302171',
17287             'Test2::Event::Waiting' => '1.302171',
17288             'Test2::EventFacet' => '1.302171',
17289             'Test2::EventFacet::About'=> '1.302171',
17290             'Test2::EventFacet::Amnesty'=> '1.302171',
17291             'Test2::EventFacet::Assert'=> '1.302171',
17292             'Test2::EventFacet::Control'=> '1.302171',
17293             'Test2::EventFacet::Error'=> '1.302171',
17294             'Test2::EventFacet::Hub'=> '1.302171',
17295             'Test2::EventFacet::Info'=> '1.302171',
17296             'Test2::EventFacet::Info::Table'=> '1.302171',
17297             'Test2::EventFacet::Meta'=> '1.302171',
17298             'Test2::EventFacet::Parent'=> '1.302171',
17299             'Test2::EventFacet::Plan'=> '1.302171',
17300             'Test2::EventFacet::Render'=> '1.302171',
17301             'Test2::EventFacet::Trace'=> '1.302171',
17302             'Test2::Formatter' => '1.302171',
17303             'Test2::Formatter::TAP' => '1.302171',
17304             'Test2::Hub' => '1.302171',
17305             'Test2::Hub::Interceptor'=> '1.302171',
17306             'Test2::Hub::Interceptor::Terminator'=> '1.302171',
17307             'Test2::Hub::Subtest' => '1.302171',
17308             'Test2::IPC' => '1.302171',
17309             'Test2::IPC::Driver' => '1.302171',
17310             'Test2::IPC::Driver::Files'=> '1.302171',
17311             'Test2::Tools::Tiny' => '1.302171',
17312             'Test2::Util' => '1.302171',
17313             'Test2::Util::ExternalMeta'=> '1.302171',
17314             'Test2::Util::Facets2Legacy'=> '1.302171',
17315             'Test2::Util::HashBase' => '1.302171',
17316             'Test2::Util::Trace' => '1.302171',
17317             'Test::Builder' => '1.302171',
17318             'Test::Builder::Formatter'=> '1.302171',
17319             'Test::Builder::Module' => '1.302171',
17320             'Test::Builder::Tester' => '1.302171',
17321             'Test::Builder::Tester::Color'=> '1.302171',
17322             'Test::Builder::TodoDiag'=> '1.302171',
17323             'Test::More' => '1.302171',
17324             'Test::Simple' => '1.302171',
17325             'Test::Tester' => '1.302171',
17326             'Test::Tester::Capture' => '1.302171',
17327             'Test::Tester::CaptureRunner'=> '1.302171',
17328             'Test::Tester::Delegate'=> '1.302171',
17329             'Test::use::ok' => '1.302171',
17330             'XS::APItest' => '1.06',
17331             'autodie' => '2.32',
17332             'autodie::Scope::Guard' => '2.32',
17333             'autodie::Scope::GuardStack'=> '2.32',
17334             'autodie::Util' => '2.32',
17335             'autodie::exception' => '2.32',
17336             'autodie::exception::system'=> '2.32',
17337             'autodie::hints' => '2.32',
17338             'autodie::skip' => '2.32',
17339             'ok' => '1.302171',
17340             },
17341             removed => {
17342             }
17343             },
17344             5.031009 => {
17345             delta_from => 5.031008,
17346             changed => {
17347             'Archive::Tar' => '2.36',
17348             'Archive::Tar::Constant'=> '2.36',
17349             'Archive::Tar::File' => '2.36',
17350             'B' => '1.80',
17351             'B::Op_private' => '5.031009',
17352             'Config' => '5.031009',
17353             'Devel::PPPort' => '3.57',
17354             'Encode' => '3.03',
17355             'ExtUtils::CBuilder' => '0.280234',
17356             'ExtUtils::CBuilder::Base'=> '0.280234',
17357             'ExtUtils::CBuilder::Platform::Unix'=> '0.280234',
17358             'ExtUtils::CBuilder::Platform::VMS'=> '0.280234',
17359             'ExtUtils::CBuilder::Platform::Windows'=> '0.280234',
17360             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280234',
17361             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280234',
17362             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280234',
17363             'ExtUtils::CBuilder::Platform::aix'=> '0.280234',
17364             'ExtUtils::CBuilder::Platform::android'=> '0.280234',
17365             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280234',
17366             'ExtUtils::CBuilder::Platform::darwin'=> '0.280234',
17367             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280234',
17368             'ExtUtils::CBuilder::Platform::os2'=> '0.280234',
17369             'IO' => '1.43',
17370             'IO::Select' => '1.42',
17371             'IO::Socket' => '1.43',
17372             'Module::CoreList' => '5.20200220',
17373             'Module::CoreList::Utils'=> '5.20200220',
17374             'POSIX' => '1.92',
17375             'Pod::Html' => '1.25',
17376             'Storable' => '3.19',
17377             'Tie::File' => '1.06',
17378             'Unicode' => '13.0.0',
17379             'XS::APItest' => '1.07',
17380             '_charnames' => '1.46',
17381             'charnames' => '1.46',
17382             'diagnostics' => '1.37',
17383             'feature' => '1.58',
17384             'parent' => '0.238',
17385             'perlfaq' => '5.20200125',
17386             'threads' => '2.24',
17387             },
17388             removed => {
17389             }
17390             },
17391             5.030002 => {
17392             delta_from => 5.030001,
17393             changed => {
17394             'B::Op_private' => '5.030002',
17395             'Compress::Raw::Bzip2' => '2.089',
17396             'Config' => '5.030002',
17397             'Module::CoreList' => '5.20200314',
17398             'Module::CoreList::Utils'=> '5.20200314',
17399             },
17400             removed => {
17401             }
17402             },
17403             5.031010 => {
17404             delta_from => 5.031009,
17405             changed => {
17406             'B::Op_private' => '5.031010',
17407             'Config' => '5.03101',
17408             },
17409             removed => {
17410             }
17411             },
17412             5.031011 => {
17413             delta_from => 5.031010,
17414             changed => {
17415             'B::Deparse' => '1.53',
17416             'B::Op_private' => '5.031011',
17417             'Config' => '5.031011',
17418             'DynaLoader' => '1.47',
17419             'Encode' => '3.04',
17420             'IPC::Open2' => '1.05',
17421             'IPC::Open3' => '1.21',
17422             'Module::CoreList' => '5.20200428',
17423             'Module::CoreList::Utils'=> '5.20200428',
17424             'Opcode' => '1.47',
17425             'POSIX' => '1.93',
17426             'PerlIO' => '1.11',
17427             'Storable' => '3.20',
17428             'Test2' => '1.302175',
17429             'Test2::API' => '1.302175',
17430             'Test2::API::Breakage' => '1.302175',
17431             'Test2::API::Context' => '1.302175',
17432             'Test2::API::Instance' => '1.302175',
17433             'Test2::API::Stack' => '1.302175',
17434             'Test2::Event' => '1.302175',
17435             'Test2::Event::Bail' => '1.302175',
17436             'Test2::Event::Diag' => '1.302175',
17437             'Test2::Event::Encoding'=> '1.302175',
17438             'Test2::Event::Exception'=> '1.302175',
17439             'Test2::Event::Fail' => '1.302175',
17440             'Test2::Event::Generic' => '1.302175',
17441             'Test2::Event::Note' => '1.302175',
17442             'Test2::Event::Ok' => '1.302175',
17443             'Test2::Event::Pass' => '1.302175',
17444             'Test2::Event::Plan' => '1.302175',
17445             'Test2::Event::Skip' => '1.302175',
17446             'Test2::Event::Subtest' => '1.302175',
17447             'Test2::Event::TAP::Version'=> '1.302175',
17448             'Test2::Event::V2' => '1.302175',
17449             'Test2::Event::Waiting' => '1.302175',
17450             'Test2::EventFacet' => '1.302175',
17451             'Test2::EventFacet::About'=> '1.302175',
17452             'Test2::EventFacet::Amnesty'=> '1.302175',
17453             'Test2::EventFacet::Assert'=> '1.302175',
17454             'Test2::EventFacet::Control'=> '1.302175',
17455             'Test2::EventFacet::Error'=> '1.302175',
17456             'Test2::EventFacet::Hub'=> '1.302175',
17457             'Test2::EventFacet::Info'=> '1.302175',
17458             'Test2::EventFacet::Info::Table'=> '1.302175',
17459             'Test2::EventFacet::Meta'=> '1.302175',
17460             'Test2::EventFacet::Parent'=> '1.302175',
17461             'Test2::EventFacet::Plan'=> '1.302175',
17462             'Test2::EventFacet::Render'=> '1.302175',
17463             'Test2::EventFacet::Trace'=> '1.302175',
17464             'Test2::Formatter' => '1.302175',
17465             'Test2::Formatter::TAP' => '1.302175',
17466             'Test2::Hub' => '1.302175',
17467             'Test2::Hub::Interceptor'=> '1.302175',
17468             'Test2::Hub::Interceptor::Terminator'=> '1.302175',
17469             'Test2::Hub::Subtest' => '1.302175',
17470             'Test2::IPC' => '1.302175',
17471             'Test2::IPC::Driver' => '1.302175',
17472             'Test2::IPC::Driver::Files'=> '1.302175',
17473             'Test2::Tools::Tiny' => '1.302175',
17474             'Test2::Util' => '1.302175',
17475             'Test2::Util::ExternalMeta'=> '1.302175',
17476             'Test2::Util::Facets2Legacy'=> '1.302175',
17477             'Test2::Util::HashBase' => '1.302175',
17478             'Test2::Util::Trace' => '1.302175',
17479             'Test::Builder' => '1.302175',
17480             'Test::Builder::Formatter'=> '1.302175',
17481             'Test::Builder::Module' => '1.302175',
17482             'Test::Builder::Tester' => '1.302175',
17483             'Test::Builder::Tester::Color'=> '1.302175',
17484             'Test::Builder::TodoDiag'=> '1.302175',
17485             'Test::More' => '1.302175',
17486             'Test::Simple' => '1.302175',
17487             'Test::Tester' => '1.302175',
17488             'Test::Tester::Capture' => '1.302175',
17489             'Test::Tester::CaptureRunner'=> '1.302175',
17490             'Test::Tester::Delegate'=> '1.302175',
17491             'Test::use::ok' => '1.302175',
17492             'Time::Piece' => '1.3401',
17493             'Time::Seconds' => '1.3401',
17494             'Unicode::UCD' => '0.75',
17495             'XS::APItest' => '1.09',
17496             '_charnames' => '1.47',
17497             'charnames' => '1.47',
17498             'ok' => '1.302175',
17499             'open' => '1.12',
17500             're' => '0.39',
17501             'warnings' => '1.47',
17502             },
17503             removed => {
17504             }
17505             },
17506             5.028003 => {
17507             delta_from => 5.028002,
17508             changed => {
17509             'B::Op_private' => '5.028003',
17510             'Config' => '5.028003',
17511             'Module::CoreList' => '5.20200601_28',
17512             'Module::CoreList::Utils'=> '5.20200601_28',
17513             },
17514             removed => {
17515             }
17516             },
17517             5.030003 => {
17518             delta_from => 5.030002,
17519             changed => {
17520             'B::Op_private' => '5.030003',
17521             'Config' => '5.030003',
17522             'Module::CoreList' => '5.20200601_30',
17523             'Module::CoreList::Utils'=> '5.20200601_30',
17524             },
17525             removed => {
17526             }
17527             },
17528             5.032000 => {
17529             delta_from => 5.031011,
17530             changed => {
17531             'B::Deparse' => '1.54',
17532             'B::Op_private' => '5.032000',
17533             'Benchmark' => '1.23',
17534             'Config' => '5.032',
17535             'Encode' => '3.06',
17536             'Encode::Guess' => '2.08',
17537             'File::Glob' => '1.33',
17538             'List::Util' => '1.55',
17539             'List::Util::XS' => '1.55',
17540             'Module::CoreList' => '5.20200620',
17541             'Module::CoreList::Utils'=> '5.20200620',
17542             'POSIX' => '1.94',
17543             'Scalar::Util' => '1.55',
17544             'Storable' => '3.21',
17545             'Sub::Util' => '1.55',
17546             'Thread::Queue' => '3.14',
17547             'Tie::Scalar' => '1.05',
17548             '_charnames' => '1.48',
17549             'charnames' => '1.48',
17550             'encoding' => '3.00',
17551             'perlfaq' => '5.20200523',
17552             're' => '0.40',
17553             'threads' => '2.25',
17554             },
17555             removed => {
17556             }
17557             },
17558             5.033000 => {
17559             delta_from => 5.032000,
17560             changed => {
17561             'B::Op_private' => '5.033000',
17562             'Config' => '5.033',
17563             'Module::CoreList' => '5.20200717',
17564             'Module::CoreList::Utils'=> '5.20200717',
17565             'feature' => '1.59',
17566             },
17567             removed => {
17568             }
17569             },
17570             5.033001 => {
17571             delta_from => 5.033,
17572             changed => {
17573             'B' => '1.81',
17574             'B::Deparse' => '1.55',
17575             'B::Op_private' => '5.033001',
17576             'Config' => '5.033001',
17577             'Data::Dumper' => '2.175',
17578             'Devel::PPPort' => '3.60',
17579             'Devel::Peek' => '1.29',
17580             'DynaLoader' => '1.48',
17581             'Errno' => '1.31',
17582             'Exporter' => '5.75',
17583             'Exporter::Heavy' => '5.75',
17584             'ExtUtils::Miniperl' => '1.10',
17585             'ExtUtils::PL2Bat' => '0.002',
17586             'ExtUtils::ParseXS' => '3.41',
17587             'ExtUtils::ParseXS::Constants'=> '3.41',
17588             'ExtUtils::ParseXS::CountLines'=> '3.41',
17589             'ExtUtils::ParseXS::Eval'=> '3.41',
17590             'ExtUtils::ParseXS::Utilities'=> '3.41',
17591             'Fcntl' => '1.14',
17592             'File::Path' => '2.17',
17593             'Hash::Util' => '0.24',
17594             'Hash::Util::FieldHash' => '1.21',
17595             'IO' => '1.44',
17596             'IO::Socket' => '1.44',
17597             'IO::Socket::UNIX' => '1.42',
17598             'IPC::Msg' => '2.08',
17599             'IPC::Semaphore' => '2.08',
17600             'IPC::SharedMem' => '2.08',
17601             'IPC::SysV' => '2.08',
17602             'JSON::PP' => '4.05',
17603             'JSON::PP::Boolean' => '4.05',
17604             'Math::Complex' => '1.5902',
17605             'Module::CoreList' => '5.20200820',
17606             'Module::CoreList::Utils'=> '5.20200820',
17607             'Net::Ping' => '2.73_01',
17608             'POSIX' => '1.95',
17609             'PerlIO::mmap' => '0.017',
17610             'Pod::Usage' => '1.70',
17611             'Safe' => '2.42',
17612             'Socket' => '2.030',
17613             'Storable' => '3.22',
17614             'Time::HiRes' => '1.9765',
17615             'Unicode::Normalize' => '1.28',
17616             'XS::APItest' => '1.11',
17617             'XS::Typemap' => '0.18',
17618             'feature' => '1.60',
17619             'mro' => '1.24',
17620             'strict' => '1.12',
17621             'threads' => '2.26',
17622             'threads::shared' => '1.62',
17623             'warnings' => '1.48',
17624             },
17625             removed => {
17626             'Moped::Msg' => 1,
17627             }
17628             },
17629             5.033002 => {
17630             delta_from => 5.033001,
17631             changed => {
17632             'Archive::Tar' => '2.38',
17633             'Archive::Tar::Constant'=> '2.38',
17634             'Archive::Tar::File' => '2.38',
17635             'B::Op_private' => '5.033002',
17636             'Compress::Raw::Bzip2' => '2.096',
17637             'Compress::Raw::Zlib' => '2.096',
17638             'Compress::Zlib' => '2.096',
17639             'Config' => '5.033002',
17640             'DB_File' => '1.854',
17641             'Env' => '1.05',
17642             'Errno' => '1.32',
17643             'ExtUtils::Install' => '2.18',
17644             'ExtUtils::Installed' => '2.18',
17645             'ExtUtils::Packlist' => '2.18',
17646             'Filter::Util::Call' => '1.60',
17647             'IO::Compress::Adapter::Bzip2'=> '2.096',
17648             'IO::Compress::Adapter::Deflate'=> '2.096',
17649             'IO::Compress::Adapter::Identity'=> '2.096',
17650             'IO::Compress::Base' => '2.096',
17651             'IO::Compress::Base::Common'=> '2.096',
17652             'IO::Compress::Bzip2' => '2.096',
17653             'IO::Compress::Deflate' => '2.096',
17654             'IO::Compress::Gzip' => '2.096',
17655             'IO::Compress::Gzip::Constants'=> '2.096',
17656             'IO::Compress::RawDeflate'=> '2.096',
17657             'IO::Compress::Zip' => '2.096',
17658             'IO::Compress::Zip::Constants'=> '2.096',
17659             'IO::Compress::Zlib::Constants'=> '2.096',
17660             'IO::Compress::Zlib::Extra'=> '2.096',
17661             'IO::Socket::IP' => '0.41',
17662             'IO::Uncompress::Adapter::Bunzip2'=> '2.096',
17663             'IO::Uncompress::Adapter::Identity'=> '2.096',
17664             'IO::Uncompress::Adapter::Inflate'=> '2.096',
17665             'IO::Uncompress::AnyInflate'=> '2.096',
17666             'IO::Uncompress::AnyUncompress'=> '2.096',
17667             'IO::Uncompress::Base' => '2.096',
17668             'IO::Uncompress::Bunzip2'=> '2.096',
17669             'IO::Uncompress::Gunzip'=> '2.096',
17670             'IO::Uncompress::Inflate'=> '2.096',
17671             'IO::Uncompress::RawInflate'=> '2.096',
17672             'IO::Uncompress::Unzip' => '2.096',
17673             'IO::Zlib' => '1.11',
17674             'Module::CoreList' => '5.20200920',
17675             'Module::CoreList::Utils'=> '5.20200920',
17676             'Module::Load::Conditional'=> '0.74',
17677             'Opcode' => '1.48',
17678             'PerlIO::scalar' => '0.31',
17679             'Safe' => '2.43',
17680             'Test2' => '1.302181',
17681             'Test2::API' => '1.302181',
17682             'Test2::API::Breakage' => '1.302181',
17683             'Test2::API::Context' => '1.302181',
17684             'Test2::API::Instance' => '1.302181',
17685             'Test2::API::InterceptResult'=> '1.302181',
17686             'Test2::API::InterceptResult::Event'=> '1.302181',
17687             'Test2::API::InterceptResult::Facet'=> '1.302181',
17688             'Test2::API::InterceptResult::Hub'=> '1.302181',
17689             'Test2::API::InterceptResult::Squasher'=> '1.302181',
17690             'Test2::API::Stack' => '1.302181',
17691             'Test2::Event' => '1.302181',
17692             'Test2::Event::Bail' => '1.302181',
17693             'Test2::Event::Diag' => '1.302181',
17694             'Test2::Event::Encoding'=> '1.302181',
17695             'Test2::Event::Exception'=> '1.302181',
17696             'Test2::Event::Fail' => '1.302181',
17697             'Test2::Event::Generic' => '1.302181',
17698             'Test2::Event::Note' => '1.302181',
17699             'Test2::Event::Ok' => '1.302181',
17700             'Test2::Event::Pass' => '1.302181',
17701             'Test2::Event::Plan' => '1.302181',
17702             'Test2::Event::Skip' => '1.302181',
17703             'Test2::Event::Subtest' => '1.302181',
17704             'Test2::Event::TAP::Version'=> '1.302181',
17705             'Test2::Event::V2' => '1.302181',
17706             'Test2::Event::Waiting' => '1.302181',
17707             'Test2::EventFacet' => '1.302181',
17708             'Test2::EventFacet::About'=> '1.302181',
17709             'Test2::EventFacet::Amnesty'=> '1.302181',
17710             'Test2::EventFacet::Assert'=> '1.302181',
17711             'Test2::EventFacet::Control'=> '1.302181',
17712             'Test2::EventFacet::Error'=> '1.302181',
17713             'Test2::EventFacet::Hub'=> '1.302181',
17714             'Test2::EventFacet::Info'=> '1.302181',
17715             'Test2::EventFacet::Info::Table'=> '1.302181',
17716             'Test2::EventFacet::Meta'=> '1.302181',
17717             'Test2::EventFacet::Parent'=> '1.302181',
17718             'Test2::EventFacet::Plan'=> '1.302181',
17719             'Test2::EventFacet::Render'=> '1.302181',
17720             'Test2::EventFacet::Trace'=> '1.302181',
17721             'Test2::Formatter' => '1.302181',
17722             'Test2::Formatter::TAP' => '1.302181',
17723             'Test2::Hub' => '1.302181',
17724             'Test2::Hub::Interceptor'=> '1.302181',
17725             'Test2::Hub::Interceptor::Terminator'=> '1.302181',
17726             'Test2::Hub::Subtest' => '1.302181',
17727             'Test2::IPC' => '1.302181',
17728             'Test2::IPC::Driver' => '1.302181',
17729             'Test2::IPC::Driver::Files'=> '1.302181',
17730             'Test2::Tools::Tiny' => '1.302181',
17731             'Test2::Util' => '1.302181',
17732             'Test2::Util::ExternalMeta'=> '1.302181',
17733             'Test2::Util::Facets2Legacy'=> '1.302181',
17734             'Test2::Util::HashBase' => '1.302181',
17735             'Test2::Util::Trace' => '1.302181',
17736             'Test::Builder' => '1.302181',
17737             'Test::Builder::Formatter'=> '1.302181',
17738             'Test::Builder::Module' => '1.302181',
17739             'Test::Builder::Tester' => '1.302181',
17740             'Test::Builder::Tester::Color'=> '1.302181',
17741             'Test::Builder::TodoDiag'=> '1.302181',
17742             'Test::More' => '1.302181',
17743             'Test::Simple' => '1.302181',
17744             'Test::Tester' => '1.302181',
17745             'Test::Tester::Capture' => '1.302181',
17746             'Test::Tester::CaptureRunner'=> '1.302181',
17747             'Test::Tester::Delegate'=> '1.302181',
17748             'Test::use::ok' => '1.302181',
17749             'ok' => '1.302181',
17750             'overload' => '1.32',
17751             },
17752             removed => {
17753             }
17754             },
17755             5.033003 => {
17756             delta_from => 5.033002,
17757             changed => {
17758             'Amiga::ARexx' => '0.05',
17759             'App::Cpan' => '1.676',
17760             'B::Op_private' => '5.033003',
17761             'CPAN' => '2.28',
17762             'CPAN::FTP' => '5.5013',
17763             'CPAN::FirstTime' => '5.5315',
17764             'Config' => '5.033003',
17765             'DB_File' => '1.855',
17766             'Data::Dumper' => '2.176',
17767             'Devel::PPPort' => '3.62',
17768             'Devel::Peek' => '1.30',
17769             'Digest' => '1.19',
17770             'Digest::MD5' => '2.58',
17771             'Digest::base' => '1.19',
17772             'Digest::file' => '1.19',
17773             'Encode' => '3.07',
17774             'Encode::GSM0338' => '2.08',
17775             'Errno' => '1.33',
17776             'Exporter' => '5.76',
17777             'Exporter::Heavy' => '5.76',
17778             'ExtUtils::Command' => '7.48',
17779             'ExtUtils::Command::MM' => '7.48',
17780             'ExtUtils::Liblist' => '7.48',
17781             'ExtUtils::Liblist::Kid'=> '7.48',
17782             'ExtUtils::MM' => '7.48',
17783             'ExtUtils::MM_AIX' => '7.48',
17784             'ExtUtils::MM_Any' => '7.48',
17785             'ExtUtils::MM_BeOS' => '7.48',
17786             'ExtUtils::MM_Cygwin' => '7.48',
17787             'ExtUtils::MM_DOS' => '7.48',
17788             'ExtUtils::MM_Darwin' => '7.48',
17789             'ExtUtils::MM_MacOS' => '7.48',
17790             'ExtUtils::MM_NW5' => '7.48',
17791             'ExtUtils::MM_OS2' => '7.48',
17792             'ExtUtils::MM_OS390' => '7.48',
17793             'ExtUtils::MM_QNX' => '7.48',
17794             'ExtUtils::MM_UWIN' => '7.48',
17795             'ExtUtils::MM_Unix' => '7.48',
17796             'ExtUtils::MM_VMS' => '7.48',
17797             'ExtUtils::MM_VOS' => '7.48',
17798             'ExtUtils::MM_Win32' => '7.48',
17799             'ExtUtils::MM_Win95' => '7.48',
17800             'ExtUtils::MY' => '7.48',
17801             'ExtUtils::MakeMaker' => '7.48',
17802             'ExtUtils::MakeMaker::Config'=> '7.48',
17803             'ExtUtils::MakeMaker::Locale'=> '7.48',
17804             'ExtUtils::MakeMaker::version'=> '7.48',
17805             'ExtUtils::MakeMaker::version::regex'=> '7.48',
17806             'ExtUtils::Mkbootstrap' => '7.48',
17807             'ExtUtils::Mksymlists' => '7.48',
17808             'ExtUtils::PL2Bat' => '0.003',
17809             'ExtUtils::testlib' => '7.48',
17810             'File::Temp' => '0.2311',
17811             'FindBin' => '1.52',
17812             'Getopt::Long' => '2.52',
17813             'Getopt::Std' => '1.13',
17814             'I18N::LangTags' => '0.45',
17815             'MIME::Base64' => '3.16',
17816             'MIME::QuotedPrint' => '3.16',
17817             'Module::CoreList' => '5.20201020',
17818             'Module::CoreList::Utils'=> '5.20201020',
17819             'Module::Load' => '0.36',
17820             'Pod::Checker' => '1.74',
17821             'Pod::Simple' => '3.41',
17822             'Pod::Simple::BlackBox' => '3.41',
17823             'Pod::Simple::Checker' => '3.41',
17824             'Pod::Simple::Debug' => '3.41',
17825             'Pod::Simple::DumpAsText'=> '3.41',
17826             'Pod::Simple::DumpAsXML'=> '3.41',
17827             'Pod::Simple::HTML' => '3.41',
17828             'Pod::Simple::HTMLBatch'=> '3.41',
17829             'Pod::Simple::LinkSection'=> '3.41',
17830             'Pod::Simple::Methody' => '3.41',
17831             'Pod::Simple::Progress' => '3.41',
17832             'Pod::Simple::PullParser'=> '3.41',
17833             'Pod::Simple::PullParserEndToken'=> '3.41',
17834             'Pod::Simple::PullParserStartToken'=> '3.41',
17835             'Pod::Simple::PullParserTextToken'=> '3.41',
17836             'Pod::Simple::PullParserToken'=> '3.41',
17837             'Pod::Simple::RTF' => '3.41',
17838             'Pod::Simple::Search' => '3.41',
17839             'Pod::Simple::SimpleTree'=> '3.41',
17840             'Pod::Simple::Text' => '3.41',
17841             'Pod::Simple::TextContent'=> '3.41',
17842             'Pod::Simple::TiedOutFH'=> '3.41',
17843             'Pod::Simple::Transcode'=> '3.41',
17844             'Pod::Simple::TranscodeDumb'=> '3.41',
17845             'Pod::Simple::TranscodeSmart'=> '3.41',
17846             'Pod::Simple::XHTML' => '3.41',
17847             'Pod::Simple::XMLOutStream'=> '3.41',
17848             'Pod::Usage' => '2.01',
17849             'Storable' => '3.23',
17850             'Symbol' => '1.09',
17851             'Test2' => '1.302182',
17852             'Test2::API' => '1.302182',
17853             'Test2::API::Breakage' => '1.302182',
17854             'Test2::API::Context' => '1.302182',
17855             'Test2::API::Instance' => '1.302182',
17856             'Test2::API::InterceptResult'=> '1.302182',
17857             'Test2::API::InterceptResult::Event'=> '1.302182',
17858             'Test2::API::InterceptResult::Facet'=> '1.302182',
17859             'Test2::API::InterceptResult::Hub'=> '1.302182',
17860             'Test2::API::InterceptResult::Squasher'=> '1.302182',
17861             'Test2::API::Stack' => '1.302182',
17862             'Test2::Event' => '1.302182',
17863             'Test2::Event::Bail' => '1.302182',
17864             'Test2::Event::Diag' => '1.302182',
17865             'Test2::Event::Encoding'=> '1.302182',
17866             'Test2::Event::Exception'=> '1.302182',
17867             'Test2::Event::Fail' => '1.302182',
17868             'Test2::Event::Generic' => '1.302182',
17869             'Test2::Event::Note' => '1.302182',
17870             'Test2::Event::Ok' => '1.302182',
17871             'Test2::Event::Pass' => '1.302182',
17872             'Test2::Event::Plan' => '1.302182',
17873             'Test2::Event::Skip' => '1.302182',
17874             'Test2::Event::Subtest' => '1.302182',
17875             'Test2::Event::TAP::Version'=> '1.302182',
17876             'Test2::Event::V2' => '1.302182',
17877             'Test2::Event::Waiting' => '1.302182',
17878             'Test2::EventFacet' => '1.302182',
17879             'Test2::EventFacet::About'=> '1.302182',
17880             'Test2::EventFacet::Amnesty'=> '1.302182',
17881             'Test2::EventFacet::Assert'=> '1.302182',
17882             'Test2::EventFacet::Control'=> '1.302182',
17883             'Test2::EventFacet::Error'=> '1.302182',
17884             'Test2::EventFacet::Hub'=> '1.302182',
17885             'Test2::EventFacet::Info'=> '1.302182',
17886             'Test2::EventFacet::Info::Table'=> '1.302182',
17887             'Test2::EventFacet::Meta'=> '1.302182',
17888             'Test2::EventFacet::Parent'=> '1.302182',
17889             'Test2::EventFacet::Plan'=> '1.302182',
17890             'Test2::EventFacet::Render'=> '1.302182',
17891             'Test2::EventFacet::Trace'=> '1.302182',
17892             'Test2::Formatter' => '1.302182',
17893             'Test2::Formatter::TAP' => '1.302182',
17894             'Test2::Hub' => '1.302182',
17895             'Test2::Hub::Interceptor'=> '1.302182',
17896             'Test2::Hub::Interceptor::Terminator'=> '1.302182',
17897             'Test2::Hub::Subtest' => '1.302182',
17898             'Test2::IPC' => '1.302182',
17899             'Test2::IPC::Driver' => '1.302182',
17900             'Test2::IPC::Driver::Files'=> '1.302182',
17901             'Test2::Tools::Tiny' => '1.302182',
17902             'Test2::Util' => '1.302182',
17903             'Test2::Util::ExternalMeta'=> '1.302182',
17904             'Test2::Util::Facets2Legacy'=> '1.302182',
17905             'Test2::Util::HashBase' => '1.302182',
17906             'Test2::Util::Trace' => '1.302182',
17907             'Test::Builder' => '1.302182',
17908             'Test::Builder::Formatter'=> '1.302182',
17909             'Test::Builder::Module' => '1.302182',
17910             'Test::Builder::Tester' => '1.302182',
17911             'Test::Builder::Tester::Color'=> '1.302182',
17912             'Test::Builder::TodoDiag'=> '1.302182',
17913             'Test::More' => '1.302182',
17914             'Test::Simple' => '1.302182',
17915             'Test::Tester' => '1.302182',
17916             'Test::Tester::Capture' => '1.302182',
17917             'Test::Tester::CaptureRunner'=> '1.302182',
17918             'Test::Tester::Delegate'=> '1.302182',
17919             'Test::use::ok' => '1.302182',
17920             'Tie::RefHash' => '1.40',
17921             'Time::Local' => '1.30',
17922             'Unicode::Collate' => '1.29',
17923             'Unicode::Collate::CJK::Big5'=> '1.29',
17924             'Unicode::Collate::CJK::GB2312'=> '1.29',
17925             'Unicode::Collate::CJK::JISX0208'=> '1.29',
17926             'Unicode::Collate::CJK::Korean'=> '1.29',
17927             'Unicode::Collate::CJK::Pinyin'=> '1.29',
17928             'Unicode::Collate::CJK::Stroke'=> '1.29',
17929             'Unicode::Collate::CJK::Zhuyin'=> '1.29',
17930             'Unicode::Collate::Locale'=> '1.29',
17931             'Win32' => '0.54',
17932             'XS::APItest' => '1.12',
17933             'bytes' => '1.08',
17934             'experimental' => '0.022',
17935             'feature' => '1.61',
17936             'if' => '0.0609',
17937             'locale' => '1.10',
17938             'mro' => '1.25',
17939             'ok' => '1.302182',
17940             'overload' => '1.33',
17941             're' => '0.41',
17942             'subs' => '1.04',
17943             'utf8' => '1.24',
17944             'version' => '0.9928',
17945             'version::regex' => '0.9928',
17946             },
17947             removed => {
17948             }
17949             },
17950             5.033004 => {
17951             delta_from => 5.033003,
17952             changed => {
17953             'B' => '1.82',
17954             'B::Op_private' => '5.033004',
17955             'Config' => '5.033004',
17956             'Cwd' => '3.79',
17957             'ExtUtils::CBuilder' => '0.280235',
17958             'ExtUtils::CBuilder::Base'=> '0.280235',
17959             'ExtUtils::CBuilder::Platform::Unix'=> '0.280235',
17960             'ExtUtils::CBuilder::Platform::VMS'=> '0.280235',
17961             'ExtUtils::CBuilder::Platform::Windows'=> '0.280235',
17962             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280235',
17963             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280235',
17964             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280235',
17965             'ExtUtils::CBuilder::Platform::aix'=> '0.280235',
17966             'ExtUtils::CBuilder::Platform::android'=> '0.280235',
17967             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280235',
17968             'ExtUtils::CBuilder::Platform::darwin'=> '0.280235',
17969             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280235',
17970             'ExtUtils::CBuilder::Platform::os2'=> '0.280235',
17971             'ExtUtils::Command' => '7.56',
17972             'ExtUtils::Command::MM' => '7.56',
17973             'ExtUtils::Liblist' => '7.56',
17974             'ExtUtils::Liblist::Kid'=> '7.56',
17975             'ExtUtils::MM' => '7.56',
17976             'ExtUtils::MM_AIX' => '7.56',
17977             'ExtUtils::MM_Any' => '7.56',
17978             'ExtUtils::MM_BeOS' => '7.56',
17979             'ExtUtils::MM_Cygwin' => '7.56',
17980             'ExtUtils::MM_DOS' => '7.56',
17981             'ExtUtils::MM_Darwin' => '7.56',
17982             'ExtUtils::MM_MacOS' => '7.56',
17983             'ExtUtils::MM_NW5' => '7.56',
17984             'ExtUtils::MM_OS2' => '7.56',
17985             'ExtUtils::MM_OS390' => '7.56',
17986             'ExtUtils::MM_QNX' => '7.56',
17987             'ExtUtils::MM_UWIN' => '7.56',
17988             'ExtUtils::MM_Unix' => '7.56',
17989             'ExtUtils::MM_VMS' => '7.56',
17990             'ExtUtils::MM_VOS' => '7.56',
17991             'ExtUtils::MM_Win32' => '7.56',
17992             'ExtUtils::MM_Win95' => '7.56',
17993             'ExtUtils::MY' => '7.56',
17994             'ExtUtils::MakeMaker' => '7.56',
17995             'ExtUtils::MakeMaker::Config'=> '7.56',
17996             'ExtUtils::MakeMaker::Locale'=> '7.56',
17997             'ExtUtils::MakeMaker::version'=> '7.56',
17998             'ExtUtils::MakeMaker::version::regex'=> '7.56',
17999             'ExtUtils::Mkbootstrap' => '7.56',
18000             'ExtUtils::Mksymlists' => '7.56',
18001             'ExtUtils::testlib' => '7.56',
18002             'File::Fetch' => '1.00',
18003             'File::Path' => '2.18',
18004             'File::Spec' => '3.79',
18005             'File::Spec::AmigaOS' => '3.79',
18006             'File::Spec::Cygwin' => '3.79',
18007             'File::Spec::Epoc' => '3.79',
18008             'File::Spec::Functions' => '3.79',
18009             'File::Spec::Mac' => '3.79',
18010             'File::Spec::OS2' => '3.79',
18011             'File::Spec::Unix' => '3.79',
18012             'File::Spec::VMS' => '3.79',
18013             'IPC::Msg' => '2.09',
18014             'IPC::Semaphore' => '2.09',
18015             'IPC::SharedMem' => '2.09',
18016             'IPC::SysV' => '2.09',
18017             'Module::CoreList' => '5.20201120',
18018             'Module::CoreList::Utils'=> '5.20201120',
18019             'Net::Ping' => '2.74',
18020             'Pod::Html' => '1.26',
18021             'Pod::Simple' => '3.42',
18022             'Pod::Simple::BlackBox' => '3.42',
18023             'Pod::Simple::Checker' => '3.42',
18024             'Pod::Simple::Debug' => '3.42',
18025             'Pod::Simple::DumpAsText'=> '3.42',
18026             'Pod::Simple::DumpAsXML'=> '3.42',
18027             'Pod::Simple::HTML' => '3.42',
18028             'Pod::Simple::HTMLBatch'=> '3.42',
18029             'Pod::Simple::LinkSection'=> '3.42',
18030             'Pod::Simple::Methody' => '3.42',
18031             'Pod::Simple::Progress' => '3.42',
18032             'Pod::Simple::PullParser'=> '3.42',
18033             'Pod::Simple::PullParserEndToken'=> '3.42',
18034             'Pod::Simple::PullParserStartToken'=> '3.42',
18035             'Pod::Simple::PullParserTextToken'=> '3.42',
18036             'Pod::Simple::PullParserToken'=> '3.42',
18037             'Pod::Simple::RTF' => '3.42',
18038             'Pod::Simple::Search' => '3.42',
18039             'Pod::Simple::SimpleTree'=> '3.42',
18040             'Pod::Simple::Text' => '3.42',
18041             'Pod::Simple::TextContent'=> '3.42',
18042             'Pod::Simple::TiedOutFH'=> '3.42',
18043             'Pod::Simple::Transcode'=> '3.42',
18044             'Pod::Simple::TranscodeDumb'=> '3.42',
18045             'Pod::Simple::TranscodeSmart'=> '3.42',
18046             'Pod::Simple::XHTML' => '3.42',
18047             'Pod::Simple::XMLOutStream'=> '3.42',
18048             'Test2' => '1.302183',
18049             'Test2::API' => '1.302183',
18050             'Test2::API::Breakage' => '1.302183',
18051             'Test2::API::Context' => '1.302183',
18052             'Test2::API::Instance' => '1.302183',
18053             'Test2::API::InterceptResult'=> '1.302183',
18054             'Test2::API::InterceptResult::Event'=> '1.302183',
18055             'Test2::API::InterceptResult::Facet'=> '1.302183',
18056             'Test2::API::InterceptResult::Hub'=> '1.302183',
18057             'Test2::API::InterceptResult::Squasher'=> '1.302183',
18058             'Test2::API::Stack' => '1.302183',
18059             'Test2::Event' => '1.302183',
18060             'Test2::Event::Bail' => '1.302183',
18061             'Test2::Event::Diag' => '1.302183',
18062             'Test2::Event::Encoding'=> '1.302183',
18063             'Test2::Event::Exception'=> '1.302183',
18064             'Test2::Event::Fail' => '1.302183',
18065             'Test2::Event::Generic' => '1.302183',
18066             'Test2::Event::Note' => '1.302183',
18067             'Test2::Event::Ok' => '1.302183',
18068             'Test2::Event::Pass' => '1.302183',
18069             'Test2::Event::Plan' => '1.302183',
18070             'Test2::Event::Skip' => '1.302183',
18071             'Test2::Event::Subtest' => '1.302183',
18072             'Test2::Event::TAP::Version'=> '1.302183',
18073             'Test2::Event::V2' => '1.302183',
18074             'Test2::Event::Waiting' => '1.302183',
18075             'Test2::EventFacet' => '1.302183',
18076             'Test2::EventFacet::About'=> '1.302183',
18077             'Test2::EventFacet::Amnesty'=> '1.302183',
18078             'Test2::EventFacet::Assert'=> '1.302183',
18079             'Test2::EventFacet::Control'=> '1.302183',
18080             'Test2::EventFacet::Error'=> '1.302183',
18081             'Test2::EventFacet::Hub'=> '1.302183',
18082             'Test2::EventFacet::Info'=> '1.302183',
18083             'Test2::EventFacet::Info::Table'=> '1.302183',
18084             'Test2::EventFacet::Meta'=> '1.302183',
18085             'Test2::EventFacet::Parent'=> '1.302183',
18086             'Test2::EventFacet::Plan'=> '1.302183',
18087             'Test2::EventFacet::Render'=> '1.302183',
18088             'Test2::EventFacet::Trace'=> '1.302183',
18089             'Test2::Formatter' => '1.302183',
18090             'Test2::Formatter::TAP' => '1.302183',
18091             'Test2::Hub' => '1.302183',
18092             'Test2::Hub::Interceptor'=> '1.302183',
18093             'Test2::Hub::Interceptor::Terminator'=> '1.302183',
18094             'Test2::Hub::Subtest' => '1.302183',
18095             'Test2::IPC' => '1.302183',
18096             'Test2::IPC::Driver' => '1.302183',
18097             'Test2::IPC::Driver::Files'=> '1.302183',
18098             'Test2::Tools::Tiny' => '1.302183',
18099             'Test2::Util' => '1.302183',
18100             'Test2::Util::ExternalMeta'=> '1.302183',
18101             'Test2::Util::Facets2Legacy'=> '1.302183',
18102             'Test2::Util::HashBase' => '1.302183',
18103             'Test2::Util::Trace' => '1.302183',
18104             'Test::Builder' => '1.302183',
18105             'Test::Builder::Formatter'=> '1.302183',
18106             'Test::Builder::Module' => '1.302183',
18107             'Test::Builder::Tester' => '1.302183',
18108             'Test::Builder::Tester::Color'=> '1.302183',
18109             'Test::Builder::TodoDiag'=> '1.302183',
18110             'Test::More' => '1.302183',
18111             'Test::Simple' => '1.302183',
18112             'Test::Tester' => '1.302183',
18113             'Test::Tester::Capture' => '1.302183',
18114             'Test::Tester::CaptureRunner'=> '1.302183',
18115             'Test::Tester::Delegate'=> '1.302183',
18116             'Test::use::ok' => '1.302183',
18117             'XS::APItest' => '1.13',
18118             'ok' => '1.302183',
18119             'perlfaq' => '5.20201107',
18120             },
18121             removed => {
18122             }
18123             },
18124             5.033005 => {
18125             delta_from => 5.033004,
18126             changed => {
18127             'App::Prove' => '3.43',
18128             'App::Prove::State' => '3.43',
18129             'App::Prove::State::Result'=> '3.43',
18130             'App::Prove::State::Result::Test'=> '3.43',
18131             'B::Op_private' => '5.033005',
18132             'Carp' => '1.51',
18133             'Carp::Heavy' => '1.51',
18134             'Config' => '5.033005',
18135             'Config::Perl::V' => '0.33',
18136             'Cwd' => '3.80',
18137             'DynaLoader' => '1.49',
18138             'Encode' => '3.08',
18139             'Encode::GSM0338' => '2.09',
18140             'ExtUtils::Install' => '2.20',
18141             'ExtUtils::Installed' => '2.20',
18142             'ExtUtils::Packlist' => '2.20',
18143             'ExtUtils::ParseXS' => '3.42',
18144             'ExtUtils::ParseXS::Constants'=> '3.42',
18145             'ExtUtils::ParseXS::CountLines'=> '3.42',
18146             'ExtUtils::ParseXS::Eval'=> '3.42',
18147             'ExtUtils::ParseXS::Utilities'=> '3.42',
18148             'File::Copy' => '2.35',
18149             'File::Find' => '1.38',
18150             'File::Spec' => '3.80',
18151             'File::Spec::AmigaOS' => '3.80',
18152             'File::Spec::Cygwin' => '3.80',
18153             'File::Spec::Epoc' => '3.80',
18154             'File::Spec::Functions' => '3.80',
18155             'File::Spec::Mac' => '3.80',
18156             'File::Spec::OS2' => '3.80',
18157             'File::Spec::Unix' => '3.80',
18158             'File::Spec::VMS' => '3.80',
18159             'File::Spec::Win32' => '3.80',
18160             'Module::CoreList' => '5.20201220',
18161             'Module::CoreList::Utils'=> '5.20201220',
18162             'Net::Cmd' => '3.12',
18163             'Net::Config' => '3.12',
18164             'Net::Domain' => '3.12',
18165             'Net::FTP' => '3.12',
18166             'Net::FTP::A' => '3.12',
18167             'Net::FTP::E' => '3.12',
18168             'Net::FTP::I' => '3.12',
18169             'Net::FTP::L' => '3.12',
18170             'Net::FTP::dataconn' => '3.12',
18171             'Net::NNTP' => '3.12',
18172             'Net::Netrc' => '3.12',
18173             'Net::POP3' => '3.12',
18174             'Net::SMTP' => '3.12',
18175             'Net::Time' => '3.12',
18176             'ODBM_File' => '1.17',
18177             'Opcode' => '1.49',
18178             'POSIX' => '1.96',
18179             'PerlIO::via::QuotedPrint'=> '0.09',
18180             'TAP::Base' => '3.43',
18181             'TAP::Formatter::Base' => '3.43',
18182             'TAP::Formatter::Color' => '3.43',
18183             'TAP::Formatter::Console'=> '3.43',
18184             'TAP::Formatter::Console::ParallelSession'=> '3.43',
18185             'TAP::Formatter::Console::Session'=> '3.43',
18186             'TAP::Formatter::File' => '3.43',
18187             'TAP::Formatter::File::Session'=> '3.43',
18188             'TAP::Formatter::Session'=> '3.43',
18189             'TAP::Harness' => '3.43',
18190             'TAP::Harness::Env' => '3.43',
18191             'TAP::Object' => '3.43',
18192             'TAP::Parser' => '3.43',
18193             'TAP::Parser::Aggregator'=> '3.43',
18194             'TAP::Parser::Grammar' => '3.43',
18195             'TAP::Parser::Iterator' => '3.43',
18196             'TAP::Parser::Iterator::Array'=> '3.43',
18197             'TAP::Parser::Iterator::Process'=> '3.43',
18198             'TAP::Parser::Iterator::Stream'=> '3.43',
18199             'TAP::Parser::IteratorFactory'=> '3.43',
18200             'TAP::Parser::Multiplexer'=> '3.43',
18201             'TAP::Parser::Result' => '3.43',
18202             'TAP::Parser::Result::Bailout'=> '3.43',
18203             'TAP::Parser::Result::Comment'=> '3.43',
18204             'TAP::Parser::Result::Plan'=> '3.43',
18205             'TAP::Parser::Result::Pragma'=> '3.43',
18206             'TAP::Parser::Result::Test'=> '3.43',
18207             'TAP::Parser::Result::Unknown'=> '3.43',
18208             'TAP::Parser::Result::Version'=> '3.43',
18209             'TAP::Parser::Result::YAML'=> '3.43',
18210             'TAP::Parser::ResultFactory'=> '3.43',
18211             'TAP::Parser::Scheduler'=> '3.43',
18212             'TAP::Parser::Scheduler::Job'=> '3.43',
18213             'TAP::Parser::Scheduler::Spinner'=> '3.43',
18214             'TAP::Parser::Source' => '3.43',
18215             'TAP::Parser::SourceHandler'=> '3.43',
18216             'TAP::Parser::SourceHandler::Executable'=> '3.43',
18217             'TAP::Parser::SourceHandler::File'=> '3.43',
18218             'TAP::Parser::SourceHandler::Handle'=> '3.43',
18219             'TAP::Parser::SourceHandler::Perl'=> '3.43',
18220             'TAP::Parser::SourceHandler::RawTAP'=> '3.43',
18221             'TAP::Parser::YAMLish::Reader'=> '3.43',
18222             'TAP::Parser::YAMLish::Writer'=> '3.43',
18223             'Test::Harness' => '3.43',
18224             'Text::Balanced' => '2.04',
18225             'Time::HiRes' => '1.9766',
18226             'XS::APItest' => '1.14',
18227             'warnings' => '1.49',
18228             },
18229             removed => {
18230             }
18231             },
18232             5.033006 => {
18233             delta_from => 5.033005,
18234             changed => {
18235             'B::Op_private' => '5.033006',
18236             'Carp' => '1.52',
18237             'Carp::Heavy' => '1.52',
18238             'Compress::Raw::Bzip2' => '2.100',
18239             'Compress::Raw::Zlib' => '2.100',
18240             'Compress::Zlib' => '2.100',
18241             'Config' => '5.033006',
18242             'DynaLoader' => '1.50',
18243             'ExtUtils::Command' => '7.58',
18244             'ExtUtils::Command::MM' => '7.58',
18245             'ExtUtils::Liblist' => '7.58',
18246             'ExtUtils::Liblist::Kid'=> '7.58',
18247             'ExtUtils::MM' => '7.58',
18248             'ExtUtils::MM_AIX' => '7.58',
18249             'ExtUtils::MM_Any' => '7.58',
18250             'ExtUtils::MM_BeOS' => '7.58',
18251             'ExtUtils::MM_Cygwin' => '7.58',
18252             'ExtUtils::MM_DOS' => '7.58',
18253             'ExtUtils::MM_Darwin' => '7.58',
18254             'ExtUtils::MM_MacOS' => '7.58',
18255             'ExtUtils::MM_NW5' => '7.58',
18256             'ExtUtils::MM_OS2' => '7.58',
18257             'ExtUtils::MM_OS390' => '7.58',
18258             'ExtUtils::MM_QNX' => '7.58',
18259             'ExtUtils::MM_UWIN' => '7.58',
18260             'ExtUtils::MM_Unix' => '7.58',
18261             'ExtUtils::MM_VMS' => '7.58',
18262             'ExtUtils::MM_VOS' => '7.58',
18263             'ExtUtils::MM_Win32' => '7.58',
18264             'ExtUtils::MM_Win95' => '7.58',
18265             'ExtUtils::MY' => '7.58',
18266             'ExtUtils::MakeMaker' => '7.58',
18267             'ExtUtils::MakeMaker::Config'=> '7.58',
18268             'ExtUtils::MakeMaker::Locale'=> '7.58',
18269             'ExtUtils::MakeMaker::version'=> '7.58',
18270             'ExtUtils::MakeMaker::version::regex'=> '7.58',
18271             'ExtUtils::Manifest' => '1.73',
18272             'ExtUtils::Mkbootstrap' => '7.58',
18273             'ExtUtils::Mksymlists' => '7.58',
18274             'ExtUtils::testlib' => '7.58',
18275             'GDBM_File' => '1.19',
18276             'IO' => '1.45',
18277             'IO::Compress::Adapter::Bzip2'=> '2.100',
18278             'IO::Compress::Adapter::Deflate'=> '2.100',
18279             'IO::Compress::Adapter::Identity'=> '2.100',
18280             'IO::Compress::Base' => '2.100',
18281             'IO::Compress::Base::Common'=> '2.100',
18282             'IO::Compress::Bzip2' => '2.100',
18283             'IO::Compress::Deflate' => '2.100',
18284             'IO::Compress::Gzip' => '2.100',
18285             'IO::Compress::Gzip::Constants'=> '2.100',
18286             'IO::Compress::RawDeflate'=> '2.100',
18287             'IO::Compress::Zip' => '2.100',
18288             'IO::Compress::Zip::Constants'=> '2.100',
18289             'IO::Compress::Zlib::Constants'=> '2.100',
18290             'IO::Compress::Zlib::Extra'=> '2.100',
18291             'IO::Dir' => '1.45',
18292             'IO::File' => '1.45',
18293             'IO::Handle' => '1.45',
18294             'IO::Pipe' => '1.45',
18295             'IO::Poll' => '1.45',
18296             'IO::Seekable' => '1.45',
18297             'IO::Select' => '1.45',
18298             'IO::Socket' => '1.45',
18299             'IO::Socket::INET' => '1.45',
18300             'IO::Socket::UNIX' => '1.45',
18301             'IO::Uncompress::Adapter::Bunzip2'=> '2.100',
18302             'IO::Uncompress::Adapter::Identity'=> '2.100',
18303             'IO::Uncompress::Adapter::Inflate'=> '2.100',
18304             'IO::Uncompress::AnyInflate'=> '2.100',
18305             'IO::Uncompress::AnyUncompress'=> '2.100',
18306             'IO::Uncompress::Base' => '2.100',
18307             'IO::Uncompress::Bunzip2'=> '2.100',
18308             'IO::Uncompress::Gunzip'=> '2.100',
18309             'IO::Uncompress::Inflate'=> '2.100',
18310             'IO::Uncompress::RawInflate'=> '2.100',
18311             'IO::Uncompress::Unzip' => '2.100',
18312             'Module::CoreList' => '5.20210120',
18313             'Module::CoreList::Utils'=> '5.20210120',
18314             'Net::Cmd' => '3.13',
18315             'Net::Config' => '3.13',
18316             'Net::Domain' => '3.13',
18317             'Net::FTP' => '3.13',
18318             'Net::FTP::A' => '3.13',
18319             'Net::FTP::E' => '3.13',
18320             'Net::FTP::I' => '3.13',
18321             'Net::FTP::L' => '3.13',
18322             'Net::FTP::dataconn' => '3.13',
18323             'Net::NNTP' => '3.13',
18324             'Net::Netrc' => '3.13',
18325             'Net::POP3' => '3.13',
18326             'Net::SMTP' => '3.13',
18327             'Net::Time' => '3.13',
18328             'POSIX' => '1.97',
18329             'Socket' => '2.031',
18330             'XS::APItest' => '1.15',
18331             'feature' => '1.62',
18332             'warnings' => '1.50',
18333             },
18334             removed => {
18335             }
18336             },
18337             5.032001 => {
18338             delta_from => 5.032000,
18339             changed => {
18340             'B::Op_private' => '5.032001',
18341             'Config' => '5.032001',
18342             'Data::Dumper' => '2.174_01',
18343             'DynaLoader' => '1.47_01',
18344             'ExtUtils::Liblist::Kid'=> '7.44_01',
18345             'Module::CoreList' => '5.20210123',
18346             'Module::CoreList::Utils'=> '5.20210123',
18347             'Opcode' => '1.48',
18348             'Safe' => '2.41_01',
18349             'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
18350             },
18351             removed => {
18352             }
18353             },
18354             5.033007 => {
18355             delta_from => 5.033006,
18356             changed => {
18357             'B::Deparse' => '1.56',
18358             'B::Op_private' => '5.033007',
18359             'Config' => '5.033007',
18360             'ExtUtils::CBuilder' => '0.280236',
18361             'ExtUtils::CBuilder::Base'=> '0.280236',
18362             'ExtUtils::CBuilder::Platform::Unix'=> '0.280236',
18363             'ExtUtils::CBuilder::Platform::VMS'=> '0.280236',
18364             'ExtUtils::CBuilder::Platform::Windows'=> '0.280236',
18365             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280236',
18366             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280236',
18367             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280236',
18368             'ExtUtils::CBuilder::Platform::aix'=> '0.280236',
18369             'ExtUtils::CBuilder::Platform::android'=> '0.280236',
18370             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280236',
18371             'ExtUtils::CBuilder::Platform::darwin'=> '0.280236',
18372             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280236',
18373             'ExtUtils::CBuilder::Platform::os2'=> '0.280236',
18374             'ExtUtils::Command' => '7.60',
18375             'ExtUtils::Command::MM' => '7.60',
18376             'ExtUtils::Liblist' => '7.60',
18377             'ExtUtils::Liblist::Kid'=> '7.60',
18378             'ExtUtils::MM' => '7.60',
18379             'ExtUtils::MM_AIX' => '7.60',
18380             'ExtUtils::MM_Any' => '7.60',
18381             'ExtUtils::MM_BeOS' => '7.60',
18382             'ExtUtils::MM_Cygwin' => '7.60',
18383             'ExtUtils::MM_DOS' => '7.60',
18384             'ExtUtils::MM_Darwin' => '7.60',
18385             'ExtUtils::MM_MacOS' => '7.60',
18386             'ExtUtils::MM_NW5' => '7.60',
18387             'ExtUtils::MM_OS2' => '7.60',
18388             'ExtUtils::MM_OS390' => '7.60',
18389             'ExtUtils::MM_QNX' => '7.60',
18390             'ExtUtils::MM_UWIN' => '7.60',
18391             'ExtUtils::MM_Unix' => '7.60',
18392             'ExtUtils::MM_VMS' => '7.60',
18393             'ExtUtils::MM_VOS' => '7.60',
18394             'ExtUtils::MM_Win32' => '7.60',
18395             'ExtUtils::MM_Win95' => '7.60',
18396             'ExtUtils::MY' => '7.60',
18397             'ExtUtils::MakeMaker' => '7.60',
18398             'ExtUtils::MakeMaker::Config'=> '7.60',
18399             'ExtUtils::MakeMaker::Locale'=> '7.60',
18400             'ExtUtils::MakeMaker::version'=> '7.60',
18401             'ExtUtils::MakeMaker::version::regex'=> '7.60',
18402             'ExtUtils::Mkbootstrap' => '7.60',
18403             'ExtUtils::Mksymlists' => '7.60',
18404             'ExtUtils::PL2Bat' => '0.004',
18405             'ExtUtils::testlib' => '7.60',
18406             'Fatal' => '2.34',
18407             'File::Find' => '1.39',
18408             'Hash::Util' => '0.25',
18409             'IO' => '1.46',
18410             'IO::Dir' => '1.46',
18411             'IO::File' => '1.46',
18412             'IO::Handle' => '1.46',
18413             'IO::Pipe' => '1.46',
18414             'IO::Poll' => '1.46',
18415             'IO::Seekable' => '1.46',
18416             'IO::Select' => '1.46',
18417             'IO::Socket' => '1.46',
18418             'IO::Socket::INET' => '1.46',
18419             'IO::Socket::UNIX' => '1.46',
18420             'JSON::PP' => '4.06',
18421             'JSON::PP::Boolean' => '4.06',
18422             'Module::CoreList' => '5.20210220',
18423             'Module::CoreList::Utils'=> '5.20210220',
18424             'Opcode' => '1.50',
18425             'PerlIO::encoding' => '0.30',
18426             'Time::HiRes' => '1.9767',
18427             'autodie' => '2.34',
18428             'autodie::Scope::Guard' => '2.34',
18429             'autodie::Scope::GuardStack'=> '2.34',
18430             'autodie::Util' => '2.34',
18431             'autodie::exception' => '2.34',
18432             'autodie::exception::system'=> '2.34',
18433             'autodie::hints' => '2.34',
18434             'autodie::skip' => '2.34',
18435             'feature' => '1.63',
18436             'mro' => '1.25_001',
18437             'warnings' => '1.51',
18438             },
18439             removed => {
18440             }
18441             },
18442             5.033008 => {
18443             delta_from => 5.033007,
18444             changed => {
18445             'B::Op_private' => '5.033008',
18446             'Compress::Raw::Bzip2' => '2.101',
18447             'Compress::Raw::Zlib' => '2.101',
18448             'Compress::Zlib' => '2.102',
18449             'Config' => '5.033008',
18450             'Data::Dumper' => '2.177',
18451             'IO::Compress::Adapter::Bzip2'=> '2.102',
18452             'IO::Compress::Adapter::Deflate'=> '2.102',
18453             'IO::Compress::Adapter::Identity'=> '2.102',
18454             'IO::Compress::Base' => '2.102',
18455             'IO::Compress::Base::Common'=> '2.102',
18456             'IO::Compress::Bzip2' => '2.102',
18457             'IO::Compress::Deflate' => '2.102',
18458             'IO::Compress::Gzip' => '2.102',
18459             'IO::Compress::Gzip::Constants'=> '2.102',
18460             'IO::Compress::RawDeflate'=> '2.102',
18461             'IO::Compress::Zip' => '2.102',
18462             'IO::Compress::Zip::Constants'=> '2.102',
18463             'IO::Compress::Zlib::Constants'=> '2.102',
18464             'IO::Compress::Zlib::Extra'=> '2.102',
18465             'IO::Uncompress::Adapter::Bunzip2'=> '2.102',
18466             'IO::Uncompress::Adapter::Identity'=> '2.102',
18467             'IO::Uncompress::Adapter::Inflate'=> '2.102',
18468             'IO::Uncompress::AnyInflate'=> '2.102',
18469             'IO::Uncompress::AnyUncompress'=> '2.102',
18470             'IO::Uncompress::Base' => '2.102',
18471             'IO::Uncompress::Bunzip2'=> '2.102',
18472             'IO::Uncompress::Gunzip'=> '2.102',
18473             'IO::Uncompress::Inflate'=> '2.102',
18474             'IO::Uncompress::RawInflate'=> '2.102',
18475             'IO::Uncompress::Unzip' => '2.102',
18476             'Module::CoreList' => '5.20210320',
18477             'Module::CoreList::Utils'=> '5.20210320',
18478             'Pod::Html' => '1.27',
18479             'Win32' => '0.57',
18480             },
18481             removed => {
18482             }
18483             },
18484             5.033009 => {
18485             delta_from => 5.033008,
18486             changed => {
18487             'B::Op_private' => '5.033009',
18488             'Config' => '5.033009',
18489             'Data::Dumper' => '2.178',
18490             'ExtUtils::Command' => '7.62',
18491             'ExtUtils::Command::MM' => '7.62',
18492             'ExtUtils::Liblist' => '7.62',
18493             'ExtUtils::Liblist::Kid'=> '7.62',
18494             'ExtUtils::MM' => '7.62',
18495             'ExtUtils::MM_AIX' => '7.62',
18496             'ExtUtils::MM_Any' => '7.62',
18497             'ExtUtils::MM_BeOS' => '7.62',
18498             'ExtUtils::MM_Cygwin' => '7.62',
18499             'ExtUtils::MM_DOS' => '7.62',
18500             'ExtUtils::MM_Darwin' => '7.62',
18501             'ExtUtils::MM_MacOS' => '7.62',
18502             'ExtUtils::MM_NW5' => '7.62',
18503             'ExtUtils::MM_OS2' => '7.62',
18504             'ExtUtils::MM_OS390' => '7.62',
18505             'ExtUtils::MM_QNX' => '7.62',
18506             'ExtUtils::MM_UWIN' => '7.62',
18507             'ExtUtils::MM_Unix' => '7.62',
18508             'ExtUtils::MM_VMS' => '7.62',
18509             'ExtUtils::MM_VOS' => '7.62',
18510             'ExtUtils::MM_Win32' => '7.62',
18511             'ExtUtils::MM_Win95' => '7.62',
18512             'ExtUtils::MY' => '7.62',
18513             'ExtUtils::MakeMaker' => '7.62',
18514             'ExtUtils::MakeMaker::Config'=> '7.62',
18515             'ExtUtils::MakeMaker::Locale'=> '7.62',
18516             'ExtUtils::MakeMaker::version'=> '7.62',
18517             'ExtUtils::MakeMaker::version::regex'=> '7.62',
18518             'ExtUtils::Mkbootstrap' => '7.62',
18519             'ExtUtils::Mksymlists' => '7.62',
18520             'ExtUtils::ParseXS' => '3.43',
18521             'ExtUtils::ParseXS::Constants'=> '3.43',
18522             'ExtUtils::ParseXS::CountLines'=> '3.43',
18523             'ExtUtils::ParseXS::Eval'=> '3.43',
18524             'ExtUtils::ParseXS::Utilities'=> '3.43',
18525             'ExtUtils::Typemaps' => '3.43',
18526             'ExtUtils::Typemaps::Cmd'=> '3.43',
18527             'ExtUtils::Typemaps::InputMap'=> '3.43',
18528             'ExtUtils::Typemaps::OutputMap'=> '3.43',
18529             'ExtUtils::Typemaps::Type'=> '3.43',
18530             'ExtUtils::testlib' => '7.62',
18531             'Module::CoreList' => '5.20210420',
18532             'Module::CoreList::Utils'=> '5.20210420',
18533             'NEXT' => '0.68',
18534             'XS::APItest' => '1.16',
18535             'feature' => '1.64',
18536             'perlfaq' => '5.20210411',
18537             },
18538             removed => {
18539             }
18540             },
18541             5.034000 => {
18542             delta_from => 5.033009,
18543             changed => {
18544             'B::Op_private' => '5.034000',
18545             'Config' => '5.034',
18546             'Data::Dumper' => '2.179',
18547             'Module::CoreList' => '5.20210520',
18548             'Module::CoreList::Utils'=> '5.20210520',
18549             'experimental' => '0.024',
18550             },
18551             removed => {
18552             }
18553             },
18554             5.035000 => {
18555             delta_from => 5.034,
18556             changed => {
18557             'B::Op_private' => '5.035000',
18558             'Config' => '5.035',
18559             'Module::CoreList' => '5.20210521',
18560             'Module::CoreList::Utils'=> '5.20210521',
18561             'feature' => '1.65',
18562             },
18563             removed => {
18564             }
18565             },
18566             5.035001 => {
18567             delta_from => 5.035000,
18568             changed => {
18569             'B::Deparse' => '1.57',
18570             'B::Op_private' => '5.035001',
18571             'Config' => '5.035001',
18572             'Cwd' => '3.81',
18573             'Data::Dumper' => '2.181',
18574             'File::Copy' => '2.36',
18575             'File::Glob' => '1.35',
18576             'File::Spec' => '3.81',
18577             'File::Spec::AmigaOS' => '3.81',
18578             'File::Spec::Cygwin' => '3.81',
18579             'File::Spec::Epoc' => '3.81',
18580             'File::Spec::Functions' => '3.81',
18581             'File::Spec::Mac' => '3.81',
18582             'File::Spec::OS2' => '3.81',
18583             'File::Spec::Unix' => '3.81',
18584             'File::Spec::VMS' => '3.81',
18585             'File::Spec::Win32' => '3.81',
18586             'File::stat' => '1.10',
18587             'IO' => '1.47',
18588             'IO::Dir' => '1.47',
18589             'IO::File' => '1.47',
18590             'IO::Handle' => '1.47',
18591             'IO::Pipe' => '1.47',
18592             'IO::Poll' => '1.47',
18593             'IO::Seekable' => '1.47',
18594             'IO::Select' => '1.47',
18595             'IO::Socket' => '1.47',
18596             'IO::Socket::INET' => '1.47',
18597             'IO::Socket::UNIX' => '1.47',
18598             'List::Util' => '1.56',
18599             'List::Util::XS' => '1.56',
18600             'Module::CoreList' => '5.20210620',
18601             'Module::CoreList::Utils'=> '5.20210620',
18602             'Opcode' => '1.51',
18603             'POSIX' => '1.98',
18604             'Scalar::Util' => '1.56',
18605             'Socket' => '2.032',
18606             'Sub::Util' => '1.56',
18607             'Test2' => '1.302185',
18608             'Test2::API' => '1.302185',
18609             'Test2::API::Breakage' => '1.302185',
18610             'Test2::API::Context' => '1.302185',
18611             'Test2::API::Instance' => '1.302185',
18612             'Test2::API::InterceptResult'=> '1.302185',
18613             'Test2::API::InterceptResult::Event'=> '1.302185',
18614             'Test2::API::InterceptResult::Facet'=> '1.302185',
18615             'Test2::API::InterceptResult::Hub'=> '1.302185',
18616             'Test2::API::InterceptResult::Squasher'=> '1.302185',
18617             'Test2::API::Stack' => '1.302185',
18618             'Test2::Event' => '1.302185',
18619             'Test2::Event::Bail' => '1.302185',
18620             'Test2::Event::Diag' => '1.302185',
18621             'Test2::Event::Encoding'=> '1.302185',
18622             'Test2::Event::Exception'=> '1.302185',
18623             'Test2::Event::Fail' => '1.302185',
18624             'Test2::Event::Generic' => '1.302185',
18625             'Test2::Event::Note' => '1.302185',
18626             'Test2::Event::Ok' => '1.302185',
18627             'Test2::Event::Pass' => '1.302185',
18628             'Test2::Event::Plan' => '1.302185',
18629             'Test2::Event::Skip' => '1.302185',
18630             'Test2::Event::Subtest' => '1.302185',
18631             'Test2::Event::TAP::Version'=> '1.302185',
18632             'Test2::Event::V2' => '1.302185',
18633             'Test2::Event::Waiting' => '1.302185',
18634             'Test2::EventFacet' => '1.302185',
18635             'Test2::EventFacet::About'=> '1.302185',
18636             'Test2::EventFacet::Amnesty'=> '1.302185',
18637             'Test2::EventFacet::Assert'=> '1.302185',
18638             'Test2::EventFacet::Control'=> '1.302185',
18639             'Test2::EventFacet::Error'=> '1.302185',
18640             'Test2::EventFacet::Hub'=> '1.302185',
18641             'Test2::EventFacet::Info'=> '1.302185',
18642             'Test2::EventFacet::Info::Table'=> '1.302185',
18643             'Test2::EventFacet::Meta'=> '1.302185',
18644             'Test2::EventFacet::Parent'=> '1.302185',
18645             'Test2::EventFacet::Plan'=> '1.302185',
18646             'Test2::EventFacet::Render'=> '1.302185',
18647             'Test2::EventFacet::Trace'=> '1.302185',
18648             'Test2::Formatter' => '1.302185',
18649             'Test2::Formatter::TAP' => '1.302185',
18650             'Test2::Hub' => '1.302185',
18651             'Test2::Hub::Interceptor'=> '1.302185',
18652             'Test2::Hub::Interceptor::Terminator'=> '1.302185',
18653             'Test2::Hub::Subtest' => '1.302185',
18654             'Test2::IPC' => '1.302185',
18655             'Test2::IPC::Driver' => '1.302185',
18656             'Test2::IPC::Driver::Files'=> '1.302185',
18657             'Test2::Tools::Tiny' => '1.302185',
18658             'Test2::Util' => '1.302185',
18659             'Test2::Util::ExternalMeta'=> '1.302185',
18660             'Test2::Util::Facets2Legacy'=> '1.302185',
18661             'Test2::Util::HashBase' => '1.302185',
18662             'Test2::Util::Trace' => '1.302185',
18663             'Test::Builder' => '1.302185',
18664             'Test::Builder::Formatter'=> '1.302185',
18665             'Test::Builder::Module' => '1.302185',
18666             'Test::Builder::Tester' => '1.302185',
18667             'Test::Builder::Tester::Color'=> '1.302185',
18668             'Test::Builder::TodoDiag'=> '1.302185',
18669             'Test::More' => '1.302185',
18670             'Test::Simple' => '1.302185',
18671             'Test::Tester' => '1.302185',
18672             'Test::Tester::Capture' => '1.302185',
18673             'Test::Tester::CaptureRunner'=> '1.302185',
18674             'Test::Tester::Delegate'=> '1.302185',
18675             'Test::use::ok' => '1.302185',
18676             'Unicode::Collate' => '1.30',
18677             'Unicode::Collate::CJK::Big5'=> '1.30',
18678             'Unicode::Collate::CJK::GB2312'=> '1.30',
18679             'Unicode::Collate::CJK::JISX0208'=> '1.30',
18680             'Unicode::Collate::CJK::Korean'=> '1.30',
18681             'Unicode::Collate::CJK::Pinyin'=> '1.30',
18682             'Unicode::Collate::CJK::Stroke'=> '1.30',
18683             'Unicode::Collate::CJK::Zhuyin'=> '1.30',
18684             'Unicode::Collate::Locale'=> '1.30',
18685             'Unicode::UCD' => '0.76',
18686             'XS::APItest' => '1.17',
18687             'feature' => '1.66',
18688             'ok' => '1.302185',
18689             'open' => '1.13',
18690             'perlfaq' => '5.20210520',
18691             'version' => '0.9929',
18692             'version::regex' => '0.9929',
18693             },
18694             removed => {
18695             }
18696             },
18697             5.035002 => {
18698             delta_from => 5.035001,
18699             changed => {
18700             'Amiga::ARexx' => '0.06',
18701             'Amiga::Exec' => '0.03',
18702             'B::Concise' => '1.005',
18703             'B::Op_private' => '5.035002',
18704             'Config' => '5.035002',
18705             'Cwd' => '3.82',
18706             'DB_File' => '1.856',
18707             'Data::Dumper' => '2.183',
18708             'Devel::PPPort' => '3.63',
18709             'Devel::Peek' => '1.31',
18710             'DynaLoader' => '1.51',
18711             'Encode' => '3.10',
18712             'Encode::JP' => '2.05',
18713             'Errno' => '1.34',
18714             'ExtUtils::Miniperl' => '1.11',
18715             'Fcntl' => '1.15',
18716             'File::Find' => '1.39_01',
18717             'File::Glob' => '1.36',
18718             'File::stat' => '1.11',
18719             'GDBM_File' => '1.20',
18720             'Hash::Util' => '0.26',
18721             'Hash::Util::FieldHash' => '1.22',
18722             'I18N::Langinfo' => '0.20',
18723             'IPC::Open2' => '1.06',
18724             'IPC::Open3' => '1.22',
18725             'Math::BigFloat' => '1.999823',
18726             'Math::BigFloat::Trace' => '0.53',
18727             'Math::BigInt' => '1.999823',
18728             'Math::BigInt::Calc' => '1.999823',
18729             'Math::BigInt::FastCalc'=> '0.5010',
18730             'Math::BigInt::Lib' => '1.999823',
18731             'Math::BigInt::Trace' => '0.53',
18732             'Math::BigRat' => '0.2617',
18733             'Module::CoreList' => '5.20210723',
18734             'Module::CoreList::Utils'=> '5.20210723',
18735             'Opcode' => '1.52',
18736             'PerlIO' => '1.12',
18737             'Pod::Functions' => '1.14',
18738             'Pod::Functions::Functions'=> '1.14',
18739             'Pod::Html' => '1.31',
18740             'Pod::Html::Util' => '1.31',
18741             'Pod::Simple' => '3.43',
18742             'Pod::Simple::BlackBox' => '3.43',
18743             'Pod::Simple::Checker' => '3.43',
18744             'Pod::Simple::Debug' => '3.43',
18745             'Pod::Simple::DumpAsText'=> '3.43',
18746             'Pod::Simple::DumpAsXML'=> '3.43',
18747             'Pod::Simple::HTML' => '3.43',
18748             'Pod::Simple::HTMLBatch'=> '3.43',
18749             'Pod::Simple::LinkSection'=> '3.43',
18750             'Pod::Simple::Methody' => '3.43',
18751             'Pod::Simple::Progress' => '3.43',
18752             'Pod::Simple::PullParser'=> '3.43',
18753             'Pod::Simple::PullParserEndToken'=> '3.43',
18754             'Pod::Simple::PullParserStartToken'=> '3.43',
18755             'Pod::Simple::PullParserTextToken'=> '3.43',
18756             'Pod::Simple::PullParserToken'=> '3.43',
18757             'Pod::Simple::RTF' => '3.43',
18758             'Pod::Simple::Search' => '3.43',
18759             'Pod::Simple::SimpleTree'=> '3.43',
18760             'Pod::Simple::Text' => '3.43',
18761             'Pod::Simple::TextContent'=> '3.43',
18762             'Pod::Simple::TiedOutFH'=> '3.43',
18763             'Pod::Simple::Transcode'=> '3.43',
18764             'Pod::Simple::TranscodeDumb'=> '3.43',
18765             'Pod::Simple::TranscodeSmart'=> '3.43',
18766             'Pod::Simple::XHTML' => '3.43',
18767             'Pod::Simple::XMLOutStream'=> '3.43',
18768             'Sys::Hostname' => '1.24',
18769             'Text::Tabs' => '2021.0717',
18770             'Text::Wrap' => '2021.0717',
18771             'Time::HiRes' => '1.9768',
18772             'Unicode::UCD' => '0.77',
18773             'VMS::Filespec' => '1.13',
18774             'VMS::Stdio' => '2.46',
18775             'XSLoader' => '0.31',
18776             'bigint' => '0.53',
18777             'bignum' => '0.53',
18778             'bigrat' => '0.53',
18779             'if' => '0.0610',
18780             'threads' => '2.27',
18781             'warnings' => '1.52',
18782             },
18783             removed => {
18784             }
18785             },
18786             5.035003 => {
18787             delta_from => 5.035002,
18788             changed => {
18789             'Archive::Tar' => '2.40',
18790             'Archive::Tar::Constant'=> '2.40',
18791             'Archive::Tar::File' => '2.40',
18792             'B::Op_private' => '5.035003',
18793             'Config' => '5.035003',
18794             'Encode' => '3.12',
18795             'Encode::GSM0338' => '2.10',
18796             'Encode::Unicode' => '2.19',
18797             'Module::CoreList' => '5.20210820',
18798             'Module::CoreList::Utils'=> '5.20210820',
18799             'Net::hostent' => '1.03',
18800             'Opcode' => '1.53',
18801             'POSIX' => '1.99',
18802             'Pod::Html' => '1.32',
18803             'Pod::Html::Util' => '1.32',
18804             'Storable' => '3.24',
18805             'Text::Tabs' => '2021.0804',
18806             'Text::Wrap' => '2021.0804',
18807             'Time::HiRes' => '1.9769',
18808             'Unicode::Normalize' => '1.30',
18809             'XS::APItest' => '1.18',
18810             'diagnostics' => '1.38',
18811             'feature' => '1.67',
18812             'sort' => '2.05',
18813             'threads::shared' => '1.63',
18814             'warnings' => '1.53',
18815             },
18816             removed => {
18817             }
18818             },
18819             5.035004 => {
18820             delta_from => 5.035003,
18821             changed => {
18822             'B' => '1.83',
18823             'B::Deparse' => '1.58',
18824             'B::Op_private' => '5.035004',
18825             'Config' => '5.035004',
18826             'Devel::Peek' => '1.32',
18827             'Exporter' => '5.77',
18828             'Exporter::Heavy' => '5.77',
18829             'ExtUtils::ParseXS' => '3.44',
18830             'ExtUtils::ParseXS::Constants'=> '3.44',
18831             'ExtUtils::ParseXS::CountLines'=> '3.44',
18832             'ExtUtils::ParseXS::Eval'=> '3.44',
18833             'ExtUtils::ParseXS::Utilities'=> '3.44',
18834             'ExtUtils::Typemaps' => '3.44',
18835             'ExtUtils::Typemaps::Cmd'=> '3.44',
18836             'ExtUtils::Typemaps::InputMap'=> '3.44',
18837             'ExtUtils::Typemaps::OutputMap'=> '3.44',
18838             'ExtUtils::Typemaps::Type'=> '3.44',
18839             'Hash::Util::FieldHash' => '1.23',
18840             'IO' => '1.48',
18841             'IO::Dir' => '1.48',
18842             'IO::File' => '1.48',
18843             'IO::Handle' => '1.48',
18844             'IO::Pipe' => '1.48',
18845             'IO::Poll' => '1.48',
18846             'IO::Seekable' => '1.48',
18847             'IO::Select' => '1.48',
18848             'IO::Socket' => '1.48',
18849             'IO::Socket::INET' => '1.48',
18850             'IO::Socket::UNIX' => '1.48',
18851             'List::Util' => '1.56_001',
18852             'List::Util::XS' => '1.56_001',
18853             'Module::CoreList' => '5.20210920',
18854             'Module::CoreList::Utils'=> '5.20210920',
18855             'Opcode' => '1.54',
18856             'Pod::Html' => '1.33',
18857             'Pod::Html::Util' => '1.33',
18858             'Scalar::Util' => '1.56_001',
18859             'Storable' => '3.25',
18860             'Sub::Util' => '1.56_001',
18861             'Text::Tabs' => '2021.0814',
18862             'Text::Wrap' => '2021.0814',
18863             'UNIVERSAL' => '1.14',
18864             'Unicode' => '14.0.0',
18865             'Unicode::Collate' => '1.31',
18866             'Unicode::Collate::CJK::Big5'=> '1.31',
18867             'Unicode::Collate::CJK::GB2312'=> '1.31',
18868             'Unicode::Collate::CJK::JISX0208'=> '1.31',
18869             'Unicode::Collate::CJK::Korean'=> '1.31',
18870             'Unicode::Collate::CJK::Pinyin'=> '1.31',
18871             'Unicode::Collate::CJK::Stroke'=> '1.31',
18872             'Unicode::Collate::CJK::Zhuyin'=> '1.31',
18873             'Unicode::Collate::Locale'=> '1.31',
18874             'Unicode::UCD' => '0.78',
18875             'XS::APItest' => '1.19',
18876             'XS::Typemap' => '0.19',
18877             'attributes' => '0.34',
18878             'feature' => '1.68',
18879             'mro' => '1.26',
18880             'threads::shared' => '1.64',
18881             'warnings' => '1.54',
18882             },
18883             removed => {
18884             }
18885             },
18886             5.035005 => {
18887             delta_from => 5.035004,
18888             changed => {
18889             'B::Concise' => '1.006',
18890             'B::Deparse' => '1.59',
18891             'B::Op_private' => '5.035005',
18892             'Config' => '5.035005',
18893             'Digest' => '1.20',
18894             'Digest::base' => '1.20',
18895             'Digest::file' => '1.20',
18896             'DynaLoader' => '1.52',
18897             'Encode' => '3.16',
18898             'Errno' => '1.35',
18899             'File::Copy' => '2.37',
18900             'File::Spec::Unix' => '3.82',
18901             'FindBin' => '1.53',
18902             'GDBM_File' => '1.21',
18903             'HTTP::Tiny' => '0.078',
18904             'I18N::Langinfo' => '0.21',
18905             'IO::Dir' => '1.49',
18906             'IO::Pipe' => '1.49',
18907             'IO::Poll' => '1.49',
18908             'IO::Select' => '1.49',
18909             'IO::Socket' => '1.49',
18910             'IO::Socket::INET' => '1.49',
18911             'IO::Socket::UNIX' => '1.49',
18912             'List::Util' => '1.60',
18913             'List::Util::XS' => '1.60',
18914             'Math::BigRat::Trace' => '0.63',
18915             'Module::CoreList' => '5.20211020',
18916             'Module::CoreList::Utils'=> '5.20211020',
18917             'POSIX' => '2.01',
18918             'Scalar::Util' => '1.60',
18919             'Sub::Util' => '1.60',
18920             'Test2' => '1.302188',
18921             'Test2::API' => '1.302188',
18922             'Test2::API::Breakage' => '1.302188',
18923             'Test2::API::Context' => '1.302188',
18924             'Test2::API::Instance' => '1.302188',
18925             'Test2::API::InterceptResult'=> '1.302188',
18926             'Test2::API::InterceptResult::Event'=> '1.302188',
18927             'Test2::API::InterceptResult::Facet'=> '1.302188',
18928             'Test2::API::InterceptResult::Hub'=> '1.302188',
18929             'Test2::API::InterceptResult::Squasher'=> '1.302188',
18930             'Test2::API::Stack' => '1.302188',
18931             'Test2::Event' => '1.302188',
18932             'Test2::Event::Bail' => '1.302188',
18933             'Test2::Event::Diag' => '1.302188',
18934             'Test2::Event::Encoding'=> '1.302188',
18935             'Test2::Event::Exception'=> '1.302188',
18936             'Test2::Event::Fail' => '1.302188',
18937             'Test2::Event::Generic' => '1.302188',
18938             'Test2::Event::Note' => '1.302188',
18939             'Test2::Event::Ok' => '1.302188',
18940             'Test2::Event::Pass' => '1.302188',
18941             'Test2::Event::Plan' => '1.302188',
18942             'Test2::Event::Skip' => '1.302188',
18943             'Test2::Event::Subtest' => '1.302188',
18944             'Test2::Event::TAP::Version'=> '1.302188',
18945             'Test2::Event::V2' => '1.302188',
18946             'Test2::Event::Waiting' => '1.302188',
18947             'Test2::EventFacet' => '1.302188',
18948             'Test2::EventFacet::About'=> '1.302188',
18949             'Test2::EventFacet::Amnesty'=> '1.302188',
18950             'Test2::EventFacet::Assert'=> '1.302188',
18951             'Test2::EventFacet::Control'=> '1.302188',
18952             'Test2::EventFacet::Error'=> '1.302188',
18953             'Test2::EventFacet::Hub'=> '1.302188',
18954             'Test2::EventFacet::Info'=> '1.302188',
18955             'Test2::EventFacet::Info::Table'=> '1.302188',
18956             'Test2::EventFacet::Meta'=> '1.302188',
18957             'Test2::EventFacet::Parent'=> '1.302188',
18958             'Test2::EventFacet::Plan'=> '1.302188',
18959             'Test2::EventFacet::Render'=> '1.302188',
18960             'Test2::EventFacet::Trace'=> '1.302188',
18961             'Test2::Formatter' => '1.302188',
18962             'Test2::Formatter::TAP' => '1.302188',
18963             'Test2::Hub' => '1.302188',
18964             'Test2::Hub::Interceptor'=> '1.302188',
18965             'Test2::Hub::Interceptor::Terminator'=> '1.302188',
18966             'Test2::Hub::Subtest' => '1.302188',
18967             'Test2::IPC' => '1.302188',
18968             'Test2::IPC::Driver' => '1.302188',
18969             'Test2::IPC::Driver::Files'=> '1.302188',
18970             'Test2::Tools::Tiny' => '1.302188',
18971             'Test2::Util' => '1.302188',
18972             'Test2::Util::ExternalMeta'=> '1.302188',
18973             'Test2::Util::Facets2Legacy'=> '1.302188',
18974             'Test2::Util::HashBase' => '1.302188',
18975             'Test2::Util::Trace' => '1.302188',
18976             'Test::Builder' => '1.302188',
18977             'Test::Builder::Formatter'=> '1.302188',
18978             'Test::Builder::Module' => '1.302188',
18979             'Test::Builder::Tester' => '1.302188',
18980             'Test::Builder::Tester::Color'=> '1.302188',
18981             'Test::Builder::TodoDiag'=> '1.302188',
18982             'Test::More' => '1.302188',
18983             'Test::Simple' => '1.302188',
18984             'Test::Tester' => '1.302188',
18985             'Test::Tester::Capture' => '1.302188',
18986             'Test::Tester::CaptureRunner'=> '1.302188',
18987             'Test::Tester::Delegate'=> '1.302188',
18988             'Test::use::ok' => '1.302188',
18989             'Tie::Handle' => '4.3',
18990             'Tie::Hash' => '1.06',
18991             'Tie::Scalar' => '1.06',
18992             'XS::APItest' => '1.20',
18993             'experimental' => '0.025',
18994             'ok' => '1.302188',
18995             'warnings' => '1.55',
18996             },
18997             removed => {
18998             }
18999             },
19000             5.035006 => {
19001             delta_from => 5.035005,
19002             changed => {
19003             'B::Op_private' => '5.035006',
19004             'Config' => '5.035006',
19005             'File::Glob' => '1.37',
19006             'File::stat' => '1.12',
19007             'GDBM_File' => '1.22',
19008             'HTTP::Tiny' => '0.080',
19009             'Math::BigFloat' => '1.999827',
19010             'Math::BigFloat::Trace' => '0.63',
19011             'Math::BigInt' => '1.999827',
19012             'Math::BigInt::Calc' => '1.999827',
19013             'Math::BigInt::FastCalc'=> '0.5012',
19014             'Math::BigInt::Lib' => '1.999827',
19015             'Math::BigInt::Trace' => '0.63',
19016             'Math::BigRat' => '0.2620',
19017             'Module::CoreList' => '5.20211120',
19018             'Module::CoreList::Utils'=> '5.20211120',
19019             'POSIX' => '2.02',
19020             'bigint' => '0.63',
19021             'bignum' => '0.63',
19022             'bigrat' => '0.63',
19023             'diagnostics' => '1.39',
19024             'feature' => '1.69',
19025             'warnings' => '1.56',
19026             },
19027             removed => {
19028             }
19029             },
19030             5.035007 => {
19031             delta_from => 5.035006,
19032             changed => {
19033             'B::Deparse' => '1.60',
19034             'B::Op_private' => '5.035007',
19035             'CPAN' => '2.29',
19036             'CPAN::Distribution' => '2.29',
19037             'CPAN::FTP' => '5.5014',
19038             'CPAN::FirstTime' => '5.5316',
19039             'CPAN::HandleConfig' => '5.5012',
19040             'CPAN::Index' => '2.29',
19041             'Config' => '5.035007',
19042             'Cwd' => '3.83',
19043             'ExtUtils::Command' => '7.64',
19044             'ExtUtils::Command::MM' => '7.64',
19045             'ExtUtils::Liblist' => '7.64',
19046             'ExtUtils::Liblist::Kid'=> '7.64',
19047             'ExtUtils::MM' => '7.64',
19048             'ExtUtils::MM_AIX' => '7.64',
19049             'ExtUtils::MM_Any' => '7.64',
19050             'ExtUtils::MM_BeOS' => '7.64',
19051             'ExtUtils::MM_Cygwin' => '7.64',
19052             'ExtUtils::MM_DOS' => '7.64',
19053             'ExtUtils::MM_Darwin' => '7.64',
19054             'ExtUtils::MM_MacOS' => '7.64',
19055             'ExtUtils::MM_NW5' => '7.64',
19056             'ExtUtils::MM_OS2' => '7.64',
19057             'ExtUtils::MM_OS390' => '7.64',
19058             'ExtUtils::MM_QNX' => '7.64',
19059             'ExtUtils::MM_UWIN' => '7.64',
19060             'ExtUtils::MM_Unix' => '7.64',
19061             'ExtUtils::MM_VMS' => '7.64',
19062             'ExtUtils::MM_VOS' => '7.64',
19063             'ExtUtils::MM_Win32' => '7.64',
19064             'ExtUtils::MM_Win95' => '7.64',
19065             'ExtUtils::MY' => '7.64',
19066             'ExtUtils::MakeMaker' => '7.64',
19067             'ExtUtils::MakeMaker::Config'=> '7.64',
19068             'ExtUtils::MakeMaker::Locale'=> '7.64',
19069             'ExtUtils::MakeMaker::version'=> '7.64',
19070             'ExtUtils::MakeMaker::version::regex'=> '7.64',
19071             'ExtUtils::Mkbootstrap' => '7.64',
19072             'ExtUtils::Mksymlists' => '7.64',
19073             'ExtUtils::testlib' => '7.64',
19074             'File::Compare' => '1.1007',
19075             'File::Copy' => '2.38',
19076             'File::Spec' => '3.83',
19077             'File::Spec::AmigaOS' => '3.83',
19078             'File::Spec::Cygwin' => '3.83',
19079             'File::Spec::Epoc' => '3.83',
19080             'File::Spec::Functions' => '3.83',
19081             'File::Spec::Mac' => '3.83',
19082             'File::Spec::OS2' => '3.83',
19083             'File::Spec::Unix' => '3.83',
19084             'File::Spec::VMS' => '3.83',
19085             'File::Spec::Win32' => '3.83',
19086             'Hash::Util' => '0.27',
19087             'Hash::Util::FieldHash' => '1.24',
19088             'IO' => '1.49',
19089             'JSON::PP' => '4.07',
19090             'JSON::PP::Boolean' => '4.07',
19091             'Math::BigFloat' => '1.999828',
19092             'Math::BigInt' => '1.999828',
19093             'Math::BigInt::Calc' => '1.999828',
19094             'Math::BigInt::Lib' => '1.999828',
19095             'Module::CoreList' => '5.20211220',
19096             'Module::CoreList::Utils'=> '5.20211220',
19097             'Opcode' => '1.55',
19098             'builtin' => '0.001',
19099             'overload' => '1.34',
19100             },
19101             removed => {
19102             }
19103             },
19104             5.035008 => {
19105             delta_from => 5.035007,
19106             changed => {
19107             'B::Deparse' => '1.61',
19108             'B::Op_private' => '5.035008',
19109             'Config' => '5.035008',
19110             'Data::Dumper' => '2.184',
19111             'Errno' => '1.36',
19112             'File::Fetch' => '1.04',
19113             'File::Find' => '1.40',
19114             'Hash::Util::FieldHash' => '1.25',
19115             'Locale::Maketext' => '1.30',
19116             'Math::BigFloat' => '1.999829',
19117             'Math::BigFloat::Trace' => '0.64',
19118             'Math::BigInt' => '1.999829',
19119             'Math::BigInt::Calc' => '1.999829',
19120             'Math::BigInt::Lib' => '1.999829',
19121             'Math::BigInt::Trace' => '0.64',
19122             'Math::BigRat::Trace' => '0.64',
19123             'Module::CoreList' => '5.20220120',
19124             'Module::CoreList::Utils'=> '5.20220120',
19125             'NEXT' => '0.69',
19126             'POSIX' => '2.03',
19127             'Win32' => '0.58',
19128             '_charnames' => '1.49',
19129             'bigint' => '0.64',
19130             'bignum' => '0.64',
19131             'bigrat' => '0.64',
19132             'charnames' => '1.49',
19133             },
19134             removed => {
19135             }
19136             },
19137             5.035009 => {
19138             delta_from => 5.035008,
19139             changed => {
19140             'App::Cpan' => '1.678',
19141             'B::Deparse' => '1.62',
19142             'B::Op_private' => '5.035009',
19143             'CPAN' => '2.33',
19144             'CPAN::Distribution' => '2.33',
19145             'CPAN::FTP' => '5.5016',
19146             'CPAN::FirstTime' => '5.5317',
19147             'Config' => '5.035009',
19148             'Devel::PPPort' => '3.64',
19149             'File::Copy' => '2.39',
19150             'Hash::Util' => '0.28',
19151             'Hash::Util::FieldHash' => '1.26',
19152             'List::Util' => '1.61',
19153             'List::Util::XS' => '1.61',
19154             'Module::CoreList' => '5.20220220',
19155             'Module::CoreList::Utils'=> '5.20220220',
19156             'Opcode' => '1.56',
19157             'Scalar::Util' => '1.61',
19158             'Sub::Util' => '1.61',
19159             'Tie::SubstrHash' => '1.01',
19160             'XS::APItest' => '1.21',
19161             '_charnames' => '1.50',
19162             'builtin' => '0.002',
19163             'charnames' => '1.50',
19164             'experimental' => '0.027',
19165             'feature' => '1.70',
19166             'overload' => '1.35',
19167             're' => '0.42',
19168             'sigtrap' => '1.10',
19169             'warnings' => '1.57',
19170             },
19171             removed => {
19172             }
19173             },
19174             5.034001 => {
19175             delta_from => 5.034000,
19176             changed => {
19177             'B::Deparse' => '1.57',
19178             'B::Op_private' => '5.034001',
19179             'Config' => '5.034001',
19180             'Encode' => '3.08_01',
19181             'GDBM_File' => '1.19_01',
19182             'Module::CoreList' => '5.20220313',
19183             'Module::CoreList::Utils'=> '5.20220313',
19184             },
19185             removed => {
19186             }
19187             },
19188             5.035010 => {
19189             delta_from => 5.035009,
19190             changed => {
19191             'Attribute::Handlers' => '1.02',
19192             'B::Deparse' => '1.63',
19193             'B::Op_private' => '5.035010',
19194             'Config' => '5.03501',
19195             'Cwd' => '3.84',
19196             'DB_File' => '1.857',
19197             'Devel::PPPort' => '3.68',
19198             'ExtUtils::ParseXS' => '3.45',
19199             'ExtUtils::ParseXS::Constants'=> '3.45',
19200             'ExtUtils::ParseXS::CountLines'=> '3.45',
19201             'ExtUtils::ParseXS::Eval'=> '3.45',
19202             'ExtUtils::ParseXS::Utilities'=> '3.45',
19203             'ExtUtils::Typemaps' => '3.45',
19204             'ExtUtils::Typemaps::Cmd'=> '3.45',
19205             'ExtUtils::Typemaps::InputMap'=> '3.45',
19206             'ExtUtils::Typemaps::OutputMap'=> '3.45',
19207             'ExtUtils::Typemaps::Type'=> '3.45',
19208             'File::Spec' => '3.84',
19209             'File::Spec::AmigaOS' => '3.84',
19210             'File::Spec::Cygwin' => '3.84',
19211             'File::Spec::Epoc' => '3.84',
19212             'File::Spec::Functions' => '3.84',
19213             'File::Spec::Mac' => '3.84',
19214             'File::Spec::OS2' => '3.84',
19215             'File::Spec::Unix' => '3.84',
19216             'File::Spec::VMS' => '3.84',
19217             'File::Spec::Win32' => '3.84',
19218             'GDBM_File' => '1.23',
19219             'List::Util' => '1.62',
19220             'List::Util::XS' => '1.62',
19221             'Module::CoreList' => '5.20220320',
19222             'Module::CoreList::Utils'=> '5.20220320',
19223             'Opcode' => '1.57',
19224             'Scalar::Util' => '1.62',
19225             'Sub::Util' => '1.62',
19226             'Test2' => '1.302190',
19227             'Test2::API' => '1.302190',
19228             'Test2::API::Breakage' => '1.302190',
19229             'Test2::API::Context' => '1.302190',
19230             'Test2::API::Instance' => '1.302190',
19231             'Test2::API::InterceptResult'=> '1.302190',
19232             'Test2::API::InterceptResult::Event'=> '1.302190',
19233             'Test2::API::InterceptResult::Facet'=> '1.302190',
19234             'Test2::API::InterceptResult::Hub'=> '1.302190',
19235             'Test2::API::InterceptResult::Squasher'=> '1.302190',
19236             'Test2::API::Stack' => '1.302190',
19237             'Test2::Event' => '1.302190',
19238             'Test2::Event::Bail' => '1.302190',
19239             'Test2::Event::Diag' => '1.302190',
19240             'Test2::Event::Encoding'=> '1.302190',
19241             'Test2::Event::Exception'=> '1.302190',
19242             'Test2::Event::Fail' => '1.302190',
19243             'Test2::Event::Generic' => '1.302190',
19244             'Test2::Event::Note' => '1.302190',
19245             'Test2::Event::Ok' => '1.302190',
19246             'Test2::Event::Pass' => '1.302190',
19247             'Test2::Event::Plan' => '1.302190',
19248             'Test2::Event::Skip' => '1.302190',
19249             'Test2::Event::Subtest' => '1.302190',
19250             'Test2::Event::TAP::Version'=> '1.302190',
19251             'Test2::Event::V2' => '1.302190',
19252             'Test2::Event::Waiting' => '1.302190',
19253             'Test2::EventFacet' => '1.302190',
19254             'Test2::EventFacet::About'=> '1.302190',
19255             'Test2::EventFacet::Amnesty'=> '1.302190',
19256             'Test2::EventFacet::Assert'=> '1.302190',
19257             'Test2::EventFacet::Control'=> '1.302190',
19258             'Test2::EventFacet::Error'=> '1.302190',
19259             'Test2::EventFacet::Hub'=> '1.302190',
19260             'Test2::EventFacet::Info'=> '1.302190',
19261             'Test2::EventFacet::Info::Table'=> '1.302190',
19262             'Test2::EventFacet::Meta'=> '1.302190',
19263             'Test2::EventFacet::Parent'=> '1.302190',
19264             'Test2::EventFacet::Plan'=> '1.302190',
19265             'Test2::EventFacet::Render'=> '1.302190',
19266             'Test2::EventFacet::Trace'=> '1.302190',
19267             'Test2::Formatter' => '1.302190',
19268             'Test2::Formatter::TAP' => '1.302190',
19269             'Test2::Hub' => '1.302190',
19270             'Test2::Hub::Interceptor'=> '1.302190',
19271             'Test2::Hub::Interceptor::Terminator'=> '1.302190',
19272             'Test2::Hub::Subtest' => '1.302190',
19273             'Test2::IPC' => '1.302190',
19274             'Test2::IPC::Driver' => '1.302190',
19275             'Test2::IPC::Driver::Files'=> '1.302190',
19276             'Test2::Tools::Tiny' => '1.302190',
19277             'Test2::Util' => '1.302190',
19278             'Test2::Util::ExternalMeta'=> '1.302190',
19279             'Test2::Util::Facets2Legacy'=> '1.302190',
19280             'Test2::Util::HashBase' => '1.302190',
19281             'Test2::Util::Trace' => '1.302190',
19282             'Test::Builder' => '1.302190',
19283             'Test::Builder::Formatter'=> '1.302190',
19284             'Test::Builder::Module' => '1.302190',
19285             'Test::Builder::Tester' => '1.302190',
19286             'Test::Builder::Tester::Color'=> '1.302190',
19287             'Test::Builder::TodoDiag'=> '1.302190',
19288             'Test::More' => '1.302190',
19289             'Test::Simple' => '1.302190',
19290             'Test::Tester' => '1.302190',
19291             'Test::Tester::Capture' => '1.302190',
19292             'Test::Tester::CaptureRunner'=> '1.302190',
19293             'Test::Tester::Delegate'=> '1.302190',
19294             'Test::use::ok' => '1.302190',
19295             'XS::APItest' => '1.22',
19296             'builtin' => '0.004',
19297             'experimental' => '0.028',
19298             'feature' => '1.71',
19299             'ok' => '1.302190',
19300             'warnings' => '1.58',
19301             },
19302             removed => {
19303             }
19304             },
19305             5.035011 => {
19306             delta_from => 5.03501,
19307             changed => {
19308             'App::Prove' => '3.44',
19309             'App::Prove::State' => '3.44',
19310             'App::Prove::State::Result'=> '3.44',
19311             'App::Prove::State::Result::Test'=> '3.44',
19312             'B::Deparse' => '1.64',
19313             'B::Op_private' => '5.035011',
19314             'Compress::Raw::Bzip2' => '2.103',
19315             'Compress::Raw::Zlib' => '2.103',
19316             'Compress::Zlib' => '2.106',
19317             'Config' => '5.035011',
19318             'Encode' => '3.17',
19319             'Encode::Unicode' => '2.20',
19320             'ExtUtils::Constant::Base'=> '0.07',
19321             'IO' => '1.49_01',
19322             'IO::Compress::Adapter::Bzip2'=> '2.106',
19323             'IO::Compress::Adapter::Deflate'=> '2.106',
19324             'IO::Compress::Adapter::Identity'=> '2.106',
19325             'IO::Compress::Base' => '2.106',
19326             'IO::Compress::Base::Common'=> '2.106',
19327             'IO::Compress::Bzip2' => '2.106',
19328             'IO::Compress::Deflate' => '2.106',
19329             'IO::Compress::Gzip' => '2.106',
19330             'IO::Compress::Gzip::Constants'=> '2.106',
19331             'IO::Compress::RawDeflate'=> '2.106',
19332             'IO::Compress::Zip' => '2.106',
19333             'IO::Compress::Zip::Constants'=> '2.106',
19334             'IO::Compress::Zlib::Constants'=> '2.106',
19335             'IO::Compress::Zlib::Extra'=> '2.106',
19336             'IO::Uncompress::Adapter::Bunzip2'=> '2.106',
19337             'IO::Uncompress::Adapter::Identity'=> '2.106',
19338             'IO::Uncompress::Adapter::Inflate'=> '2.106',
19339             'IO::Uncompress::AnyInflate'=> '2.106',
19340             'IO::Uncompress::AnyUncompress'=> '2.106',
19341             'IO::Uncompress::Base' => '2.106',
19342             'IO::Uncompress::Bunzip2'=> '2.106',
19343             'IO::Uncompress::Gunzip'=> '2.106',
19344             'IO::Uncompress::Inflate'=> '2.106',
19345             'IO::Uncompress::RawInflate'=> '2.106',
19346             'IO::Uncompress::Unzip' => '2.106',
19347             'Locale::Maketext' => '1.31',
19348             'Math::BigFloat' => '1.999830',
19349             'Math::BigFloat::Trace' => '0.65',
19350             'Math::BigInt' => '1.999830',
19351             'Math::BigInt::Calc' => '1.999830',
19352             'Math::BigInt::Lib' => '1.999830',
19353             'Math::BigInt::Trace' => '0.65',
19354             'Math::BigRat' => '0.2621',
19355             'Math::BigRat::Trace' => '0.65',
19356             'Module::CoreList' => '5.20220420',
19357             'Module::CoreList::Utils'=> '5.20220420',
19358             'Net::Cmd' => '3.14',
19359             'Net::Config' => '3.14',
19360             'Net::Domain' => '3.14',
19361             'Net::FTP' => '3.14',
19362             'Net::FTP::A' => '3.14',
19363             'Net::FTP::E' => '3.14',
19364             'Net::FTP::I' => '3.14',
19365             'Net::FTP::L' => '3.14',
19366             'Net::FTP::dataconn' => '3.14',
19367             'Net::NNTP' => '3.14',
19368             'Net::Netrc' => '3.14',
19369             'Net::POP3' => '3.14',
19370             'Net::SMTP' => '3.14',
19371             'Net::Time' => '3.14',
19372             'Socket' => '2.033',
19373             'Storable' => '3.26',
19374             'TAP::Base' => '3.44',
19375             'TAP::Formatter::Base' => '3.44',
19376             'TAP::Formatter::Color' => '3.44',
19377             'TAP::Formatter::Console'=> '3.44',
19378             'TAP::Formatter::Console::ParallelSession'=> '3.44',
19379             'TAP::Formatter::Console::Session'=> '3.44',
19380             'TAP::Formatter::File' => '3.44',
19381             'TAP::Formatter::File::Session'=> '3.44',
19382             'TAP::Formatter::Session'=> '3.44',
19383             'TAP::Harness' => '3.44',
19384             'TAP::Harness::Env' => '3.44',
19385             'TAP::Object' => '3.44',
19386             'TAP::Parser' => '3.44',
19387             'TAP::Parser::Aggregator'=> '3.44',
19388             'TAP::Parser::Grammar' => '3.44',
19389             'TAP::Parser::Iterator' => '3.44',
19390             'TAP::Parser::Iterator::Array'=> '3.44',
19391             'TAP::Parser::Iterator::Process'=> '3.44',
19392             'TAP::Parser::Iterator::Stream'=> '3.44',
19393             'TAP::Parser::IteratorFactory'=> '3.44',
19394             'TAP::Parser::Multiplexer'=> '3.44',
19395             'TAP::Parser::Result' => '3.44',
19396             'TAP::Parser::Result::Bailout'=> '3.44',
19397             'TAP::Parser::Result::Comment'=> '3.44',
19398             'TAP::Parser::Result::Plan'=> '3.44',
19399             'TAP::Parser::Result::Pragma'=> '3.44',
19400             'TAP::Parser::Result::Test'=> '3.44',
19401             'TAP::Parser::Result::Unknown'=> '3.44',
19402             'TAP::Parser::Result::Version'=> '3.44',
19403             'TAP::Parser::Result::YAML'=> '3.44',
19404             'TAP::Parser::ResultFactory'=> '3.44',
19405             'TAP::Parser::Scheduler'=> '3.44',
19406             'TAP::Parser::Scheduler::Job'=> '3.44',
19407             'TAP::Parser::Scheduler::Spinner'=> '3.44',
19408             'TAP::Parser::Source' => '3.44',
19409             'TAP::Parser::SourceHandler'=> '3.44',
19410             'TAP::Parser::SourceHandler::Executable'=> '3.44',
19411             'TAP::Parser::SourceHandler::File'=> '3.44',
19412             'TAP::Parser::SourceHandler::Handle'=> '3.44',
19413             'TAP::Parser::SourceHandler::Perl'=> '3.44',
19414             'TAP::Parser::SourceHandler::RawTAP'=> '3.44',
19415             'TAP::Parser::YAMLish::Reader'=> '3.44',
19416             'TAP::Parser::YAMLish::Writer'=> '3.44',
19417             'Test::Harness' => '3.44',
19418             'Text::ParseWords' => '3.31',
19419             'Time::HiRes' => '1.9770',
19420             'Unicode::Normalize' => '1.31',
19421             'bigfloat' => '0.65',
19422             'bigint' => '0.65',
19423             'bignum' => '0.65',
19424             'bigrat' => '0.65',
19425             'builtin' => '0.005',
19426             're' => '0.43',
19427             },
19428             removed => {
19429             }
19430             },
19431             5.036000 => {
19432             delta_from => 5.035011,
19433             changed => {
19434             'Amiga::Exec' => '0.04',
19435             'B::Op_private' => '5.036000',
19436             'Compress::Raw::Zlib' => '2.105',
19437             'Config' => '5.036',
19438             'IO' => '1.50',
19439             'Module::CoreList' => '5.20220520',
19440             'Module::CoreList::Utils'=> '5.20220520',
19441             'Win32' => '0.59',
19442             'builtin' => '0.006',
19443             'feature' => '1.72',
19444             },
19445             removed => {
19446             }
19447             },
19448             5.037000 => {
19449             delta_from => 5.036000,
19450             changed => {
19451             'feature' => '1.73',
19452             'Module::CoreList' => '5.20220527',
19453             'Module::CoreList::Utils'=> '5.20220527',
19454             },
19455             removed => {
19456             }
19457             },
19458             5.037001 => {
19459             delta_from => 5.037000,
19460             changed => {
19461             'B' => '1.84',
19462             'B::Op_private' => '5.037001',
19463             'Carp' => '1.53',
19464             'Carp::Heavy' => '1.53',
19465             'Config' => '5.037001',
19466             'Cwd' => '3.85',
19467             'Data::Dumper' => '2.185',
19468             'ExtUtils::CBuilder' => '0.280237',
19469             'ExtUtils::CBuilder::Base'=> '0.280237',
19470             'ExtUtils::CBuilder::Platform::Unix'=> '0.280237',
19471             'ExtUtils::CBuilder::Platform::VMS'=> '0.280237',
19472             'ExtUtils::CBuilder::Platform::Windows'=> '0.280237',
19473             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280237',
19474             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280237',
19475             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280237',
19476             'ExtUtils::CBuilder::Platform::aix'=> '0.280237',
19477             'ExtUtils::CBuilder::Platform::android'=> '0.280237',
19478             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280237',
19479             'ExtUtils::CBuilder::Platform::darwin'=> '0.280237',
19480             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280237',
19481             'ExtUtils::CBuilder::Platform::os2'=> '0.280237',
19482             'ExtUtils::Miniperl' => '1.12',
19483             'File::Spec' => '3.85',
19484             'File::Spec::AmigaOS' => '3.85',
19485             'File::Spec::Cygwin' => '3.85',
19486             'File::Spec::Epoc' => '3.85',
19487             'File::Spec::Functions' => '3.85',
19488             'File::Spec::Mac' => '3.85',
19489             'File::Spec::OS2' => '3.85',
19490             'File::Spec::Unix' => '3.85',
19491             'File::Spec::VMS' => '3.85',
19492             'File::Spec::Win32' => '3.85',
19493             'FileHandle' => '2.04',
19494             'GDBM_File' => '1.24',
19495             'IO::Handle' => '1.49',
19496             'IO::Pipe' => '1.50',
19497             'IO::Socket::INET' => '1.50',
19498             'IO::Socket::UNIX' => '1.50',
19499             'Module::CoreList' => '5.20220620',
19500             'Module::CoreList::Utils'=> '5.20220620',
19501             'ODBM_File' => '1.18',
19502             'OS2::REXX' => '1.06',
19503             'Opcode' => '1.58',
19504             'POSIX' => '2.04',
19505             'SDBM_File' => '1.16',
19506             'Unicode::Normalize' => '1.32',
19507             'XS::APItest' => '1.23',
19508             'builtin' => '0.007',
19509             'encoding::warnings' => '0.14',
19510             'feature' => '1.74',
19511             'threads' => '2.28',
19512             },
19513             removed => {
19514             }
19515             },
19516             5.037002 => {
19517             delta_from => 5.037001,
19518             changed => {
19519             'B' => '1.85',
19520             'B::Concise' => '1.007',
19521             'B::Deparse' => '1.65',
19522             'B::Op_private' => '5.037002',
19523             'CPAN' => '2.34',
19524             'CPAN::Distribution' => '2.34',
19525             'Compress::Raw::Bzip2' => '2.201',
19526             'Compress::Raw::Zlib' => '2.202',
19527             'Compress::Zlib' => '2.201',
19528             'Config' => '5.037002',
19529             'Cwd' => '3.86',
19530             'DB_File' => '1.858',
19531             'Data::Dumper' => '2.186',
19532             'Encode' => '3.18',
19533             'Encode::MIME::Header' => '2.29',
19534             'File::Glob' => '1.38',
19535             'File::Spec' => '3.86',
19536             'File::Spec::AmigaOS' => '3.86',
19537             'File::Spec::Cygwin' => '3.86',
19538             'File::Spec::Epoc' => '3.86',
19539             'File::Spec::Functions' => '3.86',
19540             'File::Spec::Mac' => '3.86',
19541             'File::Spec::OS2' => '3.86',
19542             'File::Spec::Unix' => '3.86',
19543             'File::Spec::VMS' => '3.86',
19544             'File::Spec::Win32' => '3.86',
19545             'Filter::Util::Call' => '1.61',
19546             'Hash::Util' => '0.29',
19547             'I18N::LangTags::List' => '0.41',
19548             'IO::Compress::Adapter::Bzip2'=> '2.201',
19549             'IO::Compress::Adapter::Deflate'=> '2.201',
19550             'IO::Compress::Adapter::Identity'=> '2.201',
19551             'IO::Compress::Base' => '2.201',
19552             'IO::Compress::Base::Common'=> '2.201',
19553             'IO::Compress::Bzip2' => '2.201',
19554             'IO::Compress::Deflate' => '2.201',
19555             'IO::Compress::Gzip' => '2.201',
19556             'IO::Compress::Gzip::Constants'=> '2.201',
19557             'IO::Compress::RawDeflate'=> '2.201',
19558             'IO::Compress::Zip' => '2.201',
19559             'IO::Compress::Zip::Constants'=> '2.201',
19560             'IO::Compress::Zlib::Constants'=> '2.201',
19561             'IO::Compress::Zlib::Extra'=> '2.201',
19562             'IO::Uncompress::Adapter::Bunzip2'=> '2.201',
19563             'IO::Uncompress::Adapter::Identity'=> '2.201',
19564             'IO::Uncompress::Adapter::Inflate'=> '2.201',
19565             'IO::Uncompress::AnyInflate'=> '2.201',
19566             'IO::Uncompress::AnyUncompress'=> '2.201',
19567             'IO::Uncompress::Base' => '2.201',
19568             'IO::Uncompress::Bunzip2'=> '2.201',
19569             'IO::Uncompress::Gunzip'=> '2.201',
19570             'IO::Uncompress::Inflate'=> '2.201',
19571             'IO::Uncompress::RawInflate'=> '2.201',
19572             'IO::Uncompress::Unzip' => '2.201',
19573             'JSON::PP' => '4.10',
19574             'JSON::PP::Boolean' => '4.10',
19575             'Math::BigFloat' => '1.999837',
19576             'Math::BigFloat::Trace' => '0.66',
19577             'Math::BigInt' => '1.999837',
19578             'Math::BigInt::Calc' => '1.999837',
19579             'Math::BigInt::FastCalc'=> '0.5013',
19580             'Math::BigInt::Lib' => '1.999837',
19581             'Math::BigInt::Trace' => '0.66',
19582             'Math::BigRat' => '0.2624',
19583             'Math::BigRat::Trace' => '0.66',
19584             'Module::CoreList' => '5.20220720',
19585             'Module::CoreList::Utils'=> '5.20220720',
19586             'Opcode' => '1.59',
19587             'PerlIO::via::QuotedPrint'=> '0.10',
19588             'Pod::Checker' => '1.75',
19589             'Pod::Usage' => '2.03',
19590             'Socket' => '2.035',
19591             'Storable' => '3.27',
19592             'Test2' => '1.302191',
19593             'Test2::API' => '1.302191',
19594             'Test2::API::Breakage' => '1.302191',
19595             'Test2::API::Context' => '1.302191',
19596             'Test2::API::Instance' => '1.302191',
19597             'Test2::API::InterceptResult'=> '1.302191',
19598             'Test2::API::InterceptResult::Event'=> '1.302191',
19599             'Test2::API::InterceptResult::Facet'=> '1.302191',
19600             'Test2::API::InterceptResult::Hub'=> '1.302191',
19601             'Test2::API::InterceptResult::Squasher'=> '1.302191',
19602             'Test2::API::Stack' => '1.302191',
19603             'Test2::Event' => '1.302191',
19604             'Test2::Event::Bail' => '1.302191',
19605             'Test2::Event::Diag' => '1.302191',
19606             'Test2::Event::Encoding'=> '1.302191',
19607             'Test2::Event::Exception'=> '1.302191',
19608             'Test2::Event::Fail' => '1.302191',
19609             'Test2::Event::Generic' => '1.302191',
19610             'Test2::Event::Note' => '1.302191',
19611             'Test2::Event::Ok' => '1.302191',
19612             'Test2::Event::Pass' => '1.302191',
19613             'Test2::Event::Plan' => '1.302191',
19614             'Test2::Event::Skip' => '1.302191',
19615             'Test2::Event::Subtest' => '1.302191',
19616             'Test2::Event::TAP::Version'=> '1.302191',
19617             'Test2::Event::V2' => '1.302191',
19618             'Test2::Event::Waiting' => '1.302191',
19619             'Test2::EventFacet' => '1.302191',
19620             'Test2::EventFacet::About'=> '1.302191',
19621             'Test2::EventFacet::Amnesty'=> '1.302191',
19622             'Test2::EventFacet::Assert'=> '1.302191',
19623             'Test2::EventFacet::Control'=> '1.302191',
19624             'Test2::EventFacet::Error'=> '1.302191',
19625             'Test2::EventFacet::Hub'=> '1.302191',
19626             'Test2::EventFacet::Info'=> '1.302191',
19627             'Test2::EventFacet::Info::Table'=> '1.302191',
19628             'Test2::EventFacet::Meta'=> '1.302191',
19629             'Test2::EventFacet::Parent'=> '1.302191',
19630             'Test2::EventFacet::Plan'=> '1.302191',
19631             'Test2::EventFacet::Render'=> '1.302191',
19632             'Test2::EventFacet::Trace'=> '1.302191',
19633             'Test2::Formatter' => '1.302191',
19634             'Test2::Formatter::TAP' => '1.302191',
19635             'Test2::Hub' => '1.302191',
19636             'Test2::Hub::Interceptor'=> '1.302191',
19637             'Test2::Hub::Interceptor::Terminator'=> '1.302191',
19638             'Test2::Hub::Subtest' => '1.302191',
19639             'Test2::IPC' => '1.302191',
19640             'Test2::IPC::Driver' => '1.302191',
19641             'Test2::IPC::Driver::Files'=> '1.302191',
19642             'Test2::Tools::Tiny' => '1.302191',
19643             'Test2::Util' => '1.302191',
19644             'Test2::Util::ExternalMeta'=> '1.302191',
19645             'Test2::Util::Facets2Legacy'=> '1.302191',
19646             'Test2::Util::HashBase' => '1.302191',
19647             'Test2::Util::Trace' => '1.302191',
19648             'Test::Builder' => '1.302191',
19649             'Test::Builder::Formatter'=> '1.302191',
19650             'Test::Builder::Module' => '1.302191',
19651             'Test::Builder::Tester' => '1.302191',
19652             'Test::Builder::Tester::Color'=> '1.302191',
19653             'Test::Builder::TodoDiag'=> '1.302191',
19654             'Test::More' => '1.302191',
19655             'Test::Simple' => '1.302191',
19656             'Test::Tester' => '1.302191',
19657             'Test::Tester::Capture' => '1.302191',
19658             'Test::Tester::CaptureRunner'=> '1.302191',
19659             'Test::Tester::Delegate'=> '1.302191',
19660             'Test::use::ok' => '1.302191',
19661             'Text::Balanced' => '2.06',
19662             'XS::APItest' => '1.24',
19663             'bigfloat' => '0.66',
19664             'bigint' => '0.66',
19665             'bignum' => '0.66',
19666             'bigrat' => '0.66',
19667             'builtin' => '0.008',
19668             'feature' => '1.75',
19669             'ok' => '1.302191',
19670             'threads::shared' => '1.65',
19671             },
19672             removed => {
19673             }
19674             },
19675             5.037003 => {
19676             delta_from => 5.037002,
19677             changed => {
19678             'B' => '1.86',
19679             'B::Deparse' => '1.68',
19680             'B::Op_private' => '5.037003',
19681             'Config' => '5.037003',
19682             'Digest::SHA' => '6.03',
19683             'DynaLoader' => '1.53',
19684             'Encode' => '3.19',
19685             'Encode::Alias' => '2.25',
19686             'ExtUtils::PL2Bat' => '0.005',
19687             'File::Find' => '1.41',
19688             'Filter::Util::Call' => '1.64',
19689             'HTTP::Tiny' => '0.082',
19690             'JSON::PP' => '4.11',
19691             'JSON::PP::Boolean' => '4.11',
19692             'List::Util' => '1.63',
19693             'List::Util::XS' => '1.63',
19694             'Memoize' => '1.10',
19695             'Memoize::AnyDBM_File' => '1.10',
19696             'Memoize::Expire' => '1.10',
19697             'Memoize::NDBM_File' => '1.10',
19698             'Memoize::SDBM_File' => '1.10',
19699             'Memoize::Storable' => '1.10',
19700             'Module::CoreList' => '5.20220820',
19701             'Module::CoreList::Utils'=> '5.20220820',
19702             'NDBM_File' => '1.16',
19703             'Opcode' => '1.60',
19704             'Scalar::Util' => '1.63',
19705             'Socket' => '2.036',
19706             'Sub::Util' => '1.63',
19707             'XS::APItest' => '1.25',
19708             'attributes' => '0.35',
19709             'threads' => '2.29',
19710             },
19711             removed => {
19712             'Memoize::ExpireFile' => 1,
19713             'Memoize::ExpireTest' => 1,
19714             }
19715             },
19716             5.037004 => {
19717             delta_from => 5.037003,
19718             changed => {
19719             'B::Deparse' => '1.69',
19720             'B::Op_private' => '5.037004',
19721             'Carp' => '1.54',
19722             'Carp::Heavy' => '1.54',
19723             'Class::Struct' => '0.67',
19724             'Config' => '5.037004',
19725             'Config::Perl::V' => '0.34',
19726             'Errno' => '1.37',
19727             'ExtUtils::ParseXS' => '3.46',
19728             'ExtUtils::ParseXS::Constants'=> '3.46',
19729             'ExtUtils::ParseXS::CountLines'=> '3.46',
19730             'ExtUtils::ParseXS::Eval'=> '3.46',
19731             'ExtUtils::ParseXS::Utilities'=> '3.46',
19732             'ExtUtils::Typemaps' => '3.46',
19733             'ExtUtils::Typemaps::Cmd'=> '3.46',
19734             'ExtUtils::Typemaps::InputMap'=> '3.46',
19735             'ExtUtils::Typemaps::OutputMap'=> '3.46',
19736             'ExtUtils::Typemaps::Type'=> '3.46',
19737             'File::Basename' => '2.86',
19738             'File::Copy' => '2.40',
19739             'File::Spec' => '3.87',
19740             'File::stat' => '1.13',
19741             'FileHandle' => '2.05',
19742             'Hash::Util' => '0.30',
19743             'I18N::Langinfo' => '0.22',
19744             'IO' => '1.51',
19745             'IO::Dir' => '1.51',
19746             'IO::File' => '1.51',
19747             'IO::Handle' => '1.51',
19748             'IO::Pipe' => '1.51',
19749             'IO::Poll' => '1.51',
19750             'IO::Seekable' => '1.51',
19751             'IO::Select' => '1.51',
19752             'IO::Socket' => '1.51',
19753             'IO::Socket::INET' => '1.51',
19754             'IO::Socket::UNIX' => '1.51',
19755             'Locale::Maketext' => '1.32',
19756             'Module::CoreList' => '5.20220920',
19757             'Module::CoreList::Utils'=> '5.20220920',
19758             'Net::protoent' => '1.02',
19759             'Net::servent' => '1.03',
19760             'Opcode' => '1.61',
19761             'POSIX' => '2.06',
19762             'Safe' => '2.44',
19763             'Sys::Hostname' => '1.25',
19764             'Time::HiRes' => '1.9771',
19765             'User::grent' => '1.04',
19766             'User::pwent' => '1.02',
19767             'XS::APItest' => '1.26',
19768             'XSLoader' => '0.32',
19769             'feature' => '1.76',
19770             },
19771             removed => {
19772             }
19773             },
19774             5.037005 => {
19775             delta_from => 5.037004,
19776             changed => {
19777             'B::Deparse' => '1.70',
19778             'B::Op_private' => '5.037005',
19779             'Config' => '5.037005',
19780             'JSON::PP' => '4.12',
19781             'JSON::PP::Boolean' => '4.12',
19782             'Math::Complex' => '1.5903',
19783             'Math::Trig' => '1.2301',
19784             'Memoize' => '1.14',
19785             'Memoize::AnyDBM_File' => '1.14',
19786             'Memoize::Expire' => '1.14',
19787             'Memoize::NDBM_File' => '1.14',
19788             'Memoize::SDBM_File' => '1.14',
19789             'Memoize::Storable' => '1.14',
19790             'Module::CoreList' => '5.20221020',
19791             'Module::CoreList::Utils'=> '5.20221020',
19792             'Net::Ping' => '2.75',
19793             'POSIX' => '2.07',
19794             'Unicode' => '15.0.0',
19795             'threads' => '2.31',
19796             'warnings' => '1.59',
19797             },
19798             removed => {
19799             }
19800             },
19801             5.037006 => {
19802             delta_from => 5.037005,
19803             changed => {
19804             'Attribute::Handlers' => '1.03',
19805             'B' => '1.87',
19806             'B::Deparse' => '1.71',
19807             'B::Op_private' => '5.037006',
19808             'Config' => '5.037006',
19809             'Data::Dumper' => '2.187',
19810             'Devel::PPPort' => '3.69',
19811             'ExtUtils::CBuilder' => '0.280238',
19812             'ExtUtils::CBuilder::Base'=> '0.280238',
19813             'ExtUtils::CBuilder::Platform::Unix'=> '0.280238',
19814             'ExtUtils::CBuilder::Platform::VMS'=> '0.280238',
19815             'ExtUtils::CBuilder::Platform::Windows'=> '0.280238',
19816             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280238',
19817             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280238',
19818             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280238',
19819             'ExtUtils::CBuilder::Platform::aix'=> '0.280238',
19820             'ExtUtils::CBuilder::Platform::android'=> '0.280238',
19821             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280238',
19822             'ExtUtils::CBuilder::Platform::darwin'=> '0.280238',
19823             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280238',
19824             'ExtUtils::CBuilder::Platform::os2'=> '0.280238',
19825             'ExtUtils::ParseXS' => '3.48',
19826             'ExtUtils::ParseXS::Constants'=> '3.48',
19827             'ExtUtils::ParseXS::CountLines'=> '3.48',
19828             'ExtUtils::ParseXS::Eval'=> '3.48',
19829             'ExtUtils::ParseXS::Utilities'=> '3.48',
19830             'ExtUtils::Typemaps' => '3.48',
19831             'ExtUtils::Typemaps::Cmd'=> '3.48',
19832             'ExtUtils::Typemaps::InputMap'=> '3.48',
19833             'ExtUtils::Typemaps::OutputMap'=> '3.48',
19834             'ExtUtils::Typemaps::Type'=> '3.48',
19835             'Getopt::Long' => '2.54',
19836             'Memoize' => '1.15',
19837             'Memoize::AnyDBM_File' => '1.15',
19838             'Memoize::Expire' => '1.15',
19839             'Memoize::NDBM_File' => '1.15',
19840             'Memoize::SDBM_File' => '1.15',
19841             'Memoize::Storable' => '1.15',
19842             'Module::CoreList' => '5.20221120',
19843             'Module::CoreList::Utils'=> '5.20221120',
19844             'Opcode' => '1.62',
19845             'POSIX' => '2.08',
19846             'Storable' => '3.28',
19847             'Time::HiRes' => '1.9772',
19848             'XS::APItest' => '1.27',
19849             'experimental' => '0.029',
19850             'feature' => '1.77',
19851             'overload' => '1.36',
19852             'threads' => '2.32',
19853             'utf8' => '1.25',
19854             'warnings' => '1.61',
19855             },
19856             removed => {
19857             }
19858             },
19859             5.037007 => {
19860             delta_from => 5.037006,
19861             changed => {
19862             'B::Deparse' => '1.72',
19863             'B::Op_private' => '5.037007',
19864             'Config' => '5.037007',
19865             'Cwd' => '3.88',
19866             'ExtUtils::Miniperl' => '1.13',
19867             'ExtUtils::ParseXS' => '3.49',
19868             'ExtUtils::ParseXS::Constants'=> '3.49',
19869             'ExtUtils::ParseXS::CountLines'=> '3.49',
19870             'ExtUtils::ParseXS::Eval'=> '3.49',
19871             'ExtUtils::ParseXS::Utilities'=> '3.49',
19872             'ExtUtils::Typemaps' => '3.49',
19873             'ExtUtils::Typemaps::Cmd'=> '3.49',
19874             'ExtUtils::Typemaps::InputMap'=> '3.49',
19875             'ExtUtils::Typemaps::OutputMap'=> '3.49',
19876             'ExtUtils::Typemaps::Type'=> '3.49',
19877             'File::Glob' => '1.39',
19878             'File::Spec' => '3.88',
19879             'File::Spec::AmigaOS' => '3.88',
19880             'File::Spec::Cygwin' => '3.88',
19881             'File::Spec::Epoc' => '3.88',
19882             'File::Spec::Functions' => '3.88',
19883             'File::Spec::Mac' => '3.88',
19884             'File::Spec::OS2' => '3.88',
19885             'File::Spec::Unix' => '3.88',
19886             'File::Spec::VMS' => '3.88',
19887             'File::Spec::Win32' => '3.88',
19888             'Module::CoreList' => '5.20221220',
19889             'Module::CoreList::Utils'=> '5.20221220',
19890             'Opcode' => '1.63',
19891             'POSIX' => '2.10',
19892             'Pod::Html' => '1.34',
19893             'Pod::Html::Util' => '1.34',
19894             'Pod::Man' => '5.00',
19895             'Pod::ParseLink' => '5.00',
19896             'Pod::Text' => '5.00',
19897             'Pod::Text::Color' => '5.00',
19898             'Pod::Text::Overstrike' => '5.00',
19899             'Pod::Text::Termcap' => '5.00',
19900             'XS::APItest' => '1.28',
19901             'experimental' => '0.030',
19902             'feature' => '1.78',
19903             'parent' => '0.239',
19904             'threads' => '2.33',
19905             },
19906             removed => {
19907             }
19908             },
19909             5.037008 => {
19910             delta_from => 5.037007,
19911             changed => {
19912             'B::Op_private' => '5.037008',
19913             'Config' => '5.037008',
19914             'Config::Perl::V' => '0.35',
19915             'ExtUtils::Command' => '7.66',
19916             'ExtUtils::Command::MM' => '7.66',
19917             'ExtUtils::Install' => '2.22',
19918             'ExtUtils::Installed' => '2.22',
19919             'ExtUtils::Liblist' => '7.66',
19920             'ExtUtils::Liblist::Kid'=> '7.66',
19921             'ExtUtils::MM' => '7.66',
19922             'ExtUtils::MM_AIX' => '7.66',
19923             'ExtUtils::MM_Any' => '7.66',
19924             'ExtUtils::MM_BeOS' => '7.66',
19925             'ExtUtils::MM_Cygwin' => '7.66',
19926             'ExtUtils::MM_DOS' => '7.66',
19927             'ExtUtils::MM_Darwin' => '7.66',
19928             'ExtUtils::MM_MacOS' => '7.66',
19929             'ExtUtils::MM_NW5' => '7.66',
19930             'ExtUtils::MM_OS2' => '7.66',
19931             'ExtUtils::MM_OS390' => '7.66',
19932             'ExtUtils::MM_QNX' => '7.66',
19933             'ExtUtils::MM_UWIN' => '7.66',
19934             'ExtUtils::MM_Unix' => '7.66',
19935             'ExtUtils::MM_VMS' => '7.66',
19936             'ExtUtils::MM_VOS' => '7.66',
19937             'ExtUtils::MM_Win32' => '7.66',
19938             'ExtUtils::MM_Win95' => '7.66',
19939             'ExtUtils::MY' => '7.66',
19940             'ExtUtils::MakeMaker' => '7.66',
19941             'ExtUtils::MakeMaker::Config'=> '7.66',
19942             'ExtUtils::MakeMaker::Locale'=> '7.66',
19943             'ExtUtils::MakeMaker::version'=> '7.66',
19944             'ExtUtils::MakeMaker::version::regex'=> '7.66',
19945             'ExtUtils::Mkbootstrap' => '7.66',
19946             'ExtUtils::Mksymlists' => '7.66',
19947             'ExtUtils::Packlist' => '2.22',
19948             'ExtUtils::testlib' => '7.66',
19949             'File::Find' => '1.42',
19950             'IO::Zlib' => '1.14',
19951             'JSON::PP' => '4.16',
19952             'JSON::PP::Boolean' => '4.16',
19953             'Math::Complex' => '1.6',
19954             'Math::Trig' => '1.6',
19955             'Module::CoreList' => '5.20230120',
19956             'Module::CoreList::Utils'=> '5.20230120',
19957             'POSIX' => '2.11',
19958             'Pod::Man' => '5.01',
19959             'Pod::ParseLink' => '5.01',
19960             'Pod::Text' => '5.01',
19961             'Pod::Text::Color' => '5.01',
19962             'Pod::Text::Overstrike' => '5.01',
19963             'Pod::Text::Termcap' => '5.01',
19964             'Storable' => '3.29',
19965             'XS::APItest' => '1.30',
19966             'feature' => '1.79',
19967             're' => '0.44',
19968             'threads' => '2.34',
19969             },
19970             removed => {
19971             }
19972             },
19973             5.037009 => {
19974             delta_from => 5.037008,
19975             changed => {
19976             'B' => '1.88',
19977             'B::Op_private' => '5.037009',
19978             'Compress::Raw::Bzip2' => '2.204',
19979             'Compress::Raw::Zlib' => '2.204',
19980             'Compress::Zlib' => '2.204',
19981             'Config' => '5.037009',
19982             'Devel::PPPort' => '3.70',
19983             'Devel::Peek' => '1.33',
19984             'Fatal' => '2.36',
19985             'File::Find' => '1.43',
19986             'IO::Compress::Adapter::Bzip2'=> '2.204',
19987             'IO::Compress::Adapter::Deflate'=> '2.204',
19988             'IO::Compress::Adapter::Identity'=> '2.204',
19989             'IO::Compress::Base' => '2.204',
19990             'IO::Compress::Base::Common'=> '2.204',
19991             'IO::Compress::Bzip2' => '2.204',
19992             'IO::Compress::Deflate' => '2.204',
19993             'IO::Compress::Gzip' => '2.204',
19994             'IO::Compress::Gzip::Constants'=> '2.204',
19995             'IO::Compress::RawDeflate'=> '2.204',
19996             'IO::Compress::Zip' => '2.204',
19997             'IO::Compress::Zip::Constants'=> '2.204',
19998             'IO::Compress::Zlib::Constants'=> '2.204',
19999             'IO::Compress::Zlib::Extra'=> '2.204',
20000             'IO::Uncompress::Adapter::Bunzip2'=> '2.204',
20001             'IO::Uncompress::Adapter::Identity'=> '2.204',
20002             'IO::Uncompress::Adapter::Inflate'=> '2.204',
20003             'IO::Uncompress::AnyInflate'=> '2.204',
20004             'IO::Uncompress::AnyUncompress'=> '2.204',
20005             'IO::Uncompress::Base' => '2.204',
20006             'IO::Uncompress::Bunzip2'=> '2.204',
20007             'IO::Uncompress::Gunzip'=> '2.204',
20008             'IO::Uncompress::Inflate'=> '2.204',
20009             'IO::Uncompress::RawInflate'=> '2.204',
20010             'IO::Uncompress::Unzip' => '2.204',
20011             'Math::Complex' => '1.61',
20012             'Math::Trig' => '1.61',
20013             'Memoize' => '1.16',
20014             'Memoize::AnyDBM_File' => '1.16',
20015             'Memoize::Expire' => '1.16',
20016             'Memoize::NDBM_File' => '1.16',
20017             'Memoize::SDBM_File' => '1.16',
20018             'Memoize::Storable' => '1.16',
20019             'Module::CoreList' => '5.20230220',
20020             'Module::CoreList::Utils'=> '5.20230220',
20021             'Opcode' => '1.64',
20022             'Term::Cap' => '1.18',
20023             'Test2' => '1.302192',
20024             'Test2::API' => '1.302192',
20025             'Test2::API::Breakage' => '1.302192',
20026             'Test2::API::Context' => '1.302192',
20027             'Test2::API::Instance' => '1.302192',
20028             'Test2::API::InterceptResult'=> '1.302192',
20029             'Test2::API::InterceptResult::Event'=> '1.302192',
20030             'Test2::API::InterceptResult::Facet'=> '1.302192',
20031             'Test2::API::InterceptResult::Hub'=> '1.302192',
20032             'Test2::API::InterceptResult::Squasher'=> '1.302192',
20033             'Test2::API::Stack' => '1.302192',
20034             'Test2::Event' => '1.302192',
20035             'Test2::Event::Bail' => '1.302192',
20036             'Test2::Event::Diag' => '1.302192',
20037             'Test2::Event::Encoding'=> '1.302192',
20038             'Test2::Event::Exception'=> '1.302192',
20039             'Test2::Event::Fail' => '1.302192',
20040             'Test2::Event::Generic' => '1.302192',
20041             'Test2::Event::Note' => '1.302192',
20042             'Test2::Event::Ok' => '1.302192',
20043             'Test2::Event::Pass' => '1.302192',
20044             'Test2::Event::Plan' => '1.302192',
20045             'Test2::Event::Skip' => '1.302192',
20046             'Test2::Event::Subtest' => '1.302192',
20047             'Test2::Event::TAP::Version'=> '1.302192',
20048             'Test2::Event::V2' => '1.302192',
20049             'Test2::Event::Waiting' => '1.302192',
20050             'Test2::EventFacet' => '1.302192',
20051             'Test2::EventFacet::About'=> '1.302192',
20052             'Test2::EventFacet::Amnesty'=> '1.302192',
20053             'Test2::EventFacet::Assert'=> '1.302192',
20054             'Test2::EventFacet::Control'=> '1.302192',
20055             'Test2::EventFacet::Error'=> '1.302192',
20056             'Test2::EventFacet::Hub'=> '1.302192',
20057             'Test2::EventFacet::Info'=> '1.302192',
20058             'Test2::EventFacet::Info::Table'=> '1.302192',
20059             'Test2::EventFacet::Meta'=> '1.302192',
20060             'Test2::EventFacet::Parent'=> '1.302192',
20061             'Test2::EventFacet::Plan'=> '1.302192',
20062             'Test2::EventFacet::Render'=> '1.302192',
20063             'Test2::EventFacet::Trace'=> '1.302192',
20064             'Test2::Formatter' => '1.302192',
20065             'Test2::Formatter::TAP' => '1.302192',
20066             'Test2::Hub' => '1.302192',
20067             'Test2::Hub::Interceptor'=> '1.302192',
20068             'Test2::Hub::Interceptor::Terminator'=> '1.302192',
20069             'Test2::Hub::Subtest' => '1.302192',
20070             'Test2::IPC' => '1.302192',
20071             'Test2::IPC::Driver' => '1.302192',
20072             'Test2::IPC::Driver::Files'=> '1.302192',
20073             'Test2::Tools::Tiny' => '1.302192',
20074             'Test2::Util' => '1.302192',
20075             'Test2::Util::ExternalMeta'=> '1.302192',
20076             'Test2::Util::Facets2Legacy'=> '1.302192',
20077             'Test2::Util::HashBase' => '1.302192',
20078             'Test2::Util::Trace' => '1.302192',
20079             'Test::Builder' => '1.302192',
20080             'Test::Builder::Formatter'=> '1.302192',
20081             'Test::Builder::Module' => '1.302192',
20082             'Test::Builder::Tester' => '1.302192',
20083             'Test::Builder::Tester::Color'=> '1.302192',
20084             'Test::Builder::TodoDiag'=> '1.302192',
20085             'Test::More' => '1.302192',
20086             'Test::Simple' => '1.302192',
20087             'Test::Tester' => '1.302192',
20088             'Test::Tester::Capture' => '1.302192',
20089             'Test::Tester::CaptureRunner'=> '1.302192',
20090             'Test::Tester::Delegate'=> '1.302192',
20091             'Test::use::ok' => '1.302192',
20092             'Tie::File' => '1.07',
20093             'UNIVERSAL' => '1.15',
20094             'autodie' => '2.36',
20095             'autodie::Scope::Guard' => '2.36',
20096             'autodie::Scope::GuardStack'=> '2.36',
20097             'autodie::Util' => '2.36',
20098             'autodie::exception' => '2.36',
20099             'autodie::exception::system'=> '2.36',
20100             'autodie::hints' => '2.36',
20101             'autodie::skip' => '2.36',
20102             'experimental' => '0.031',
20103             'feature' => '1.80',
20104             'mro' => '1.28',
20105             'ok' => '1.302192',
20106             'parent' => '0.241',
20107             'stable' => '0.031',
20108             'warnings' => '1.62',
20109             },
20110             removed => {
20111             }
20112             },
20113             5.037010 => {
20114             delta_from => 5.037009,
20115             changed => {
20116             'B::Op_private' => '5.037010',
20117             'Benchmark' => '1.24',
20118             'Class::Struct' => '0.68',
20119             'Config' => '5.03701',
20120             'Config::Perl::V' => '0.36',
20121             'Cwd' => '3.89',
20122             'Data::Dumper' => '2.188',
20123             'Digest::SHA' => '6.04',
20124             'Env' => '1.06',
20125             'Math::Complex' => '1.62',
20126             'Math::Trig' => '1.62',
20127             'Module::CoreList' => '5.20230320',
20128             'Module::CoreList::Utils'=> '5.20230320',
20129             'Net::Cmd' => '3.15',
20130             'Net::Config' => '3.15',
20131             'Net::Domain' => '3.15',
20132             'Net::FTP' => '3.15',
20133             'Net::FTP::A' => '3.15',
20134             'Net::FTP::E' => '3.15',
20135             'Net::FTP::I' => '3.15',
20136             'Net::FTP::L' => '3.15',
20137             'Net::FTP::dataconn' => '3.15',
20138             'Net::NNTP' => '3.15',
20139             'Net::Netrc' => '3.15',
20140             'Net::POP3' => '3.15',
20141             'Net::SMTP' => '3.15',
20142             'Net::Time' => '3.15',
20143             'POSIX' => '2.12',
20144             'Storable' => '3.31',
20145             'Test2' => '1.302194',
20146             'Test2::API' => '1.302194',
20147             'Test2::API::Breakage' => '1.302194',
20148             'Test2::API::Context' => '1.302194',
20149             'Test2::API::Instance' => '1.302194',
20150             'Test2::API::InterceptResult'=> '1.302194',
20151             'Test2::API::InterceptResult::Event'=> '1.302194',
20152             'Test2::API::InterceptResult::Facet'=> '1.302194',
20153             'Test2::API::InterceptResult::Hub'=> '1.302194',
20154             'Test2::API::InterceptResult::Squasher'=> '1.302194',
20155             'Test2::API::Stack' => '1.302194',
20156             'Test2::Event' => '1.302194',
20157             'Test2::Event::Bail' => '1.302194',
20158             'Test2::Event::Diag' => '1.302194',
20159             'Test2::Event::Encoding'=> '1.302194',
20160             'Test2::Event::Exception'=> '1.302194',
20161             'Test2::Event::Fail' => '1.302194',
20162             'Test2::Event::Generic' => '1.302194',
20163             'Test2::Event::Note' => '1.302194',
20164             'Test2::Event::Ok' => '1.302194',
20165             'Test2::Event::Pass' => '1.302194',
20166             'Test2::Event::Plan' => '1.302194',
20167             'Test2::Event::Skip' => '1.302194',
20168             'Test2::Event::Subtest' => '1.302194',
20169             'Test2::Event::TAP::Version'=> '1.302194',
20170             'Test2::Event::V2' => '1.302194',
20171             'Test2::Event::Waiting' => '1.302194',
20172             'Test2::EventFacet' => '1.302194',
20173             'Test2::EventFacet::About'=> '1.302194',
20174             'Test2::EventFacet::Amnesty'=> '1.302194',
20175             'Test2::EventFacet::Assert'=> '1.302194',
20176             'Test2::EventFacet::Control'=> '1.302194',
20177             'Test2::EventFacet::Error'=> '1.302194',
20178             'Test2::EventFacet::Hub'=> '1.302194',
20179             'Test2::EventFacet::Info'=> '1.302194',
20180             'Test2::EventFacet::Info::Table'=> '1.302194',
20181             'Test2::EventFacet::Meta'=> '1.302194',
20182             'Test2::EventFacet::Parent'=> '1.302194',
20183             'Test2::EventFacet::Plan'=> '1.302194',
20184             'Test2::EventFacet::Render'=> '1.302194',
20185             'Test2::EventFacet::Trace'=> '1.302194',
20186             'Test2::Formatter' => '1.302194',
20187             'Test2::Formatter::TAP' => '1.302194',
20188             'Test2::Hub' => '1.302194',
20189             'Test2::Hub::Interceptor'=> '1.302194',
20190             'Test2::Hub::Interceptor::Terminator'=> '1.302194',
20191             'Test2::Hub::Subtest' => '1.302194',
20192             'Test2::IPC' => '1.302194',
20193             'Test2::IPC::Driver' => '1.302194',
20194             'Test2::IPC::Driver::Files'=> '1.302194',
20195             'Test2::Tools::Tiny' => '1.302194',
20196             'Test2::Util' => '1.302194',
20197             'Test2::Util::ExternalMeta'=> '1.302194',
20198             'Test2::Util::Facets2Legacy'=> '1.302194',
20199             'Test2::Util::HashBase' => '1.302194',
20200             'Test2::Util::Trace' => '1.302194',
20201             'Test::Builder' => '1.302194',
20202             'Test::Builder::Formatter'=> '1.302194',
20203             'Test::Builder::Module' => '1.302194',
20204             'Test::Builder::Tester' => '1.302194',
20205             'Test::Builder::Tester::Color'=> '1.302194',
20206             'Test::Builder::TodoDiag'=> '1.302194',
20207             'Test::More' => '1.302194',
20208             'Test::Simple' => '1.302194',
20209             'Test::Tester' => '1.302194',
20210             'Test::Tester::Capture' => '1.302194',
20211             'Test::Tester::CaptureRunner'=> '1.302194',
20212             'Test::Tester::Delegate'=> '1.302194',
20213             'Test::use::ok' => '1.302194',
20214             'Time::HiRes' => '1.9774',
20215             'XS::APItest' => '1.32',
20216             'feature' => '1.81',
20217             'ok' => '1.302194',
20218             'overload' => '1.37',
20219             'threads' => '2.35',
20220             'threads::shared' => '1.67',
20221             'warnings' => '1.63',
20222             'warnings::register' => '1.05',
20223             },
20224             removed => {
20225             }
20226             },
20227             5.037011 => {
20228             delta_from => 5.037010,
20229             changed => {
20230             'B::Deparse' => '1.73',
20231             'B::Op_private' => '5.037011',
20232             'Config' => '5.037011',
20233             'Devel::PPPort' => '3.71',
20234             'ExtUtils::Command' => '7.70',
20235             'ExtUtils::Command::MM' => '7.70',
20236             'ExtUtils::Liblist' => '7.70',
20237             'ExtUtils::Liblist::Kid'=> '7.70',
20238             'ExtUtils::MM' => '7.70',
20239             'ExtUtils::MM_AIX' => '7.70',
20240             'ExtUtils::MM_Any' => '7.70',
20241             'ExtUtils::MM_BeOS' => '7.70',
20242             'ExtUtils::MM_Cygwin' => '7.70',
20243             'ExtUtils::MM_DOS' => '7.70',
20244             'ExtUtils::MM_Darwin' => '7.70',
20245             'ExtUtils::MM_MacOS' => '7.70',
20246             'ExtUtils::MM_NW5' => '7.70',
20247             'ExtUtils::MM_OS2' => '7.70',
20248             'ExtUtils::MM_OS390' => '7.70',
20249             'ExtUtils::MM_QNX' => '7.70',
20250             'ExtUtils::MM_UWIN' => '7.70',
20251             'ExtUtils::MM_Unix' => '7.70',
20252             'ExtUtils::MM_VMS' => '7.70',
20253             'ExtUtils::MM_VOS' => '7.70',
20254             'ExtUtils::MM_Win32' => '7.70',
20255             'ExtUtils::MM_Win95' => '7.70',
20256             'ExtUtils::MY' => '7.70',
20257             'ExtUtils::MakeMaker' => '7.70',
20258             'ExtUtils::MakeMaker::Config'=> '7.70',
20259             'ExtUtils::MakeMaker::Locale'=> '7.70',
20260             'ExtUtils::MakeMaker::version'=> '7.70',
20261             'ExtUtils::MakeMaker::version::regex'=> '7.70',
20262             'ExtUtils::Mkbootstrap' => '7.70',
20263             'ExtUtils::Mksymlists' => '7.70',
20264             'ExtUtils::ParseXS' => '3.50',
20265             'ExtUtils::ParseXS::Constants'=> '3.50',
20266             'ExtUtils::ParseXS::CountLines'=> '3.50',
20267             'ExtUtils::ParseXS::Eval'=> '3.50',
20268             'ExtUtils::ParseXS::Utilities'=> '3.50',
20269             'ExtUtils::testlib' => '7.70',
20270             'File::Copy' => '2.41',
20271             'Locale::Maketext' => '1.33',
20272             'Module::CoreList' => '5.20230420',
20273             'Module::CoreList::Utils'=> '5.20230420',
20274             'Net::Ping' => '2.76',
20275             'feature' => '1.82',
20276             'threads' => '2.36',
20277             'threads::shared' => '1.68',
20278             'warnings' => '1.64',
20279             },
20280             removed => {
20281             }
20282             },
20283             5.036001 => {
20284             delta_from => 5.036000,
20285             changed => {
20286             'B::Op_private' => '5.036001',
20287             'Config' => '5.036001',
20288             'Module::CoreList' => '5.20230423',
20289             'Module::CoreList::Utils'=> '5.20230423',
20290             },
20291             removed => {
20292             }
20293             },
20294             5.038000 => {
20295             delta_from => 5.037011,
20296             changed => {
20297             'B::Deparse' => '1.74',
20298             'B::Op_private' => '5.038000',
20299             'CPAN' => '2.36',
20300             'CPAN::HTTP::Client' => '1.9602',
20301             'Compress::Raw::Bzip2' => '2.204_001',
20302             'Compress::Raw::Zlib' => '2.204_001',
20303             'Config' => '5.038',
20304             'Digest::MD5' => '2.58_01',
20305             'DynaLoader' => '1.54',
20306             'ExtUtils::ParseXS' => '3.51',
20307             'ExtUtils::ParseXS::Constants'=> '3.51',
20308             'ExtUtils::ParseXS::CountLines'=> '3.51',
20309             'ExtUtils::ParseXS::Eval'=> '3.51',
20310             'ExtUtils::ParseXS::Utilities'=> '3.51',
20311             'ExtUtils::Typemaps' => '3.51',
20312             'ExtUtils::Typemaps::Cmd'=> '3.51',
20313             'ExtUtils::Typemaps::InputMap'=> '3.51',
20314             'ExtUtils::Typemaps::OutputMap'=> '3.51',
20315             'ExtUtils::Typemaps::Type'=> '3.51',
20316             'File::Glob' => '1.40',
20317             'HTTP::Tiny' => '0.086',
20318             'IO' => '1.52',
20319             'IO::Dir' => '1.52',
20320             'IO::File' => '1.52',
20321             'IO::Handle' => '1.52',
20322             'IO::Pipe' => '1.52',
20323             'IO::Poll' => '1.52',
20324             'IO::Seekable' => '1.52',
20325             'IO::Select' => '1.52',
20326             'IO::Socket' => '1.52',
20327             'IO::Socket::INET' => '1.52',
20328             'IO::Socket::IP' => '0.41_01',
20329             'IO::Socket::UNIX' => '1.52',
20330             'MIME::Base64' => '3.16_01',
20331             'MIME::QuotedPrint' => '3.16_01',
20332             'Module::CoreList' => '5.20230520',
20333             'Module::CoreList::Utils'=> '5.20230520',
20334             'POSIX' => '2.13',
20335             'SDBM_File' => '1.17',
20336             'Storable' => '3.32',
20337             'Time::HiRes' => '1.9775',
20338             'Time::Piece' => '1.3401_01',
20339             'warnings' => '1.65',
20340             },
20341             removed => {
20342             }
20343             },
20344             5.039001 => {
20345             delta_from => 5.038000,
20346             changed => {
20347             'B::Op_private' => '5.039001',
20348             'CPAN::Meta::Requirements'=> '2.143',
20349             'CPAN::Meta::Requirements::Range'=> '2.143',
20350             'Compress::Raw::Bzip2' => '2.205',
20351             'Compress::Raw::Zlib' => '2.205',
20352             'Compress::Zlib' => '2.205',
20353             'Config' => '5.039001',
20354             'Errno' => '1.38',
20355             'ExtUtils::CBuilder' => '0.280239',
20356             'ExtUtils::CBuilder::Base'=> '0.280239',
20357             'ExtUtils::CBuilder::Platform::Unix'=> '0.280239',
20358             'ExtUtils::CBuilder::Platform::VMS'=> '0.280239',
20359             'ExtUtils::CBuilder::Platform::Windows'=> '0.280239',
20360             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280239',
20361             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280239',
20362             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280239',
20363             'ExtUtils::CBuilder::Platform::aix'=> '0.280239',
20364             'ExtUtils::CBuilder::Platform::android'=> '0.280239',
20365             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280239',
20366             'ExtUtils::CBuilder::Platform::darwin'=> '0.280239',
20367             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280239',
20368             'ExtUtils::CBuilder::Platform::os2'=> '0.280239',
20369             'ExtUtils::Manifest' => '1.75',
20370             'IO::Compress::Adapter::Bzip2'=> '2.205',
20371             'IO::Compress::Adapter::Deflate'=> '2.205',
20372             'IO::Compress::Adapter::Identity'=> '2.205',
20373             'IO::Compress::Base' => '2.205',
20374             'IO::Compress::Base::Common'=> '2.205',
20375             'IO::Compress::Bzip2' => '2.205',
20376             'IO::Compress::Deflate' => '2.205',
20377             'IO::Compress::Gzip' => '2.205',
20378             'IO::Compress::Gzip::Constants'=> '2.205',
20379             'IO::Compress::RawDeflate'=> '2.205',
20380             'IO::Compress::Zip' => '2.205',
20381             'IO::Compress::Zip::Constants'=> '2.205',
20382             'IO::Compress::Zlib::Constants'=> '2.205',
20383             'IO::Compress::Zlib::Extra'=> '2.205',
20384             'IO::Uncompress::Adapter::Bunzip2'=> '2.205',
20385             'IO::Uncompress::Adapter::Identity'=> '2.205',
20386             'IO::Uncompress::Adapter::Inflate'=> '2.205',
20387             'IO::Uncompress::AnyInflate'=> '2.205',
20388             'IO::Uncompress::AnyUncompress'=> '2.205',
20389             'IO::Uncompress::Base' => '2.205',
20390             'IO::Uncompress::Bunzip2'=> '2.205',
20391             'IO::Uncompress::Gunzip'=> '2.205',
20392             'IO::Uncompress::Inflate'=> '2.205',
20393             'IO::Uncompress::RawInflate'=> '2.205',
20394             'IO::Uncompress::Unzip' => '2.205',
20395             'Math::BigFloat' => '1.999839',
20396             'Math::BigInt' => '1.999839',
20397             'Math::BigInt::Calc' => '1.999839',
20398             'Math::BigInt::FastCalc'=> '0.5014',
20399             'Math::BigInt::Lib' => '1.999839',
20400             'Module::CoreList' => '5.20230720',
20401             'Module::CoreList::Utils'=> '5.20230720',
20402             'Module::Metadata' => '1.000038',
20403             'POSIX' => '2.14',
20404             'Socket' => '2.037',
20405             'Test2' => '1.302195',
20406             'Test2::API' => '1.302195',
20407             'Test2::API::Breakage' => '1.302195',
20408             'Test2::API::Context' => '1.302195',
20409             'Test2::API::Instance' => '1.302195',
20410             'Test2::API::InterceptResult'=> '1.302195',
20411             'Test2::API::InterceptResult::Event'=> '1.302195',
20412             'Test2::API::InterceptResult::Facet'=> '1.302195',
20413             'Test2::API::InterceptResult::Hub'=> '1.302195',
20414             'Test2::API::InterceptResult::Squasher'=> '1.302195',
20415             'Test2::API::Stack' => '1.302195',
20416             'Test2::Event' => '1.302195',
20417             'Test2::Event::Bail' => '1.302195',
20418             'Test2::Event::Diag' => '1.302195',
20419             'Test2::Event::Encoding'=> '1.302195',
20420             'Test2::Event::Exception'=> '1.302195',
20421             'Test2::Event::Fail' => '1.302195',
20422             'Test2::Event::Generic' => '1.302195',
20423             'Test2::Event::Note' => '1.302195',
20424             'Test2::Event::Ok' => '1.302195',
20425             'Test2::Event::Pass' => '1.302195',
20426             'Test2::Event::Plan' => '1.302195',
20427             'Test2::Event::Skip' => '1.302195',
20428             'Test2::Event::Subtest' => '1.302195',
20429             'Test2::Event::TAP::Version'=> '1.302195',
20430             'Test2::Event::V2' => '1.302195',
20431             'Test2::Event::Waiting' => '1.302195',
20432             'Test2::EventFacet' => '1.302195',
20433             'Test2::EventFacet::About'=> '1.302195',
20434             'Test2::EventFacet::Amnesty'=> '1.302195',
20435             'Test2::EventFacet::Assert'=> '1.302195',
20436             'Test2::EventFacet::Control'=> '1.302195',
20437             'Test2::EventFacet::Error'=> '1.302195',
20438             'Test2::EventFacet::Hub'=> '1.302195',
20439             'Test2::EventFacet::Info'=> '1.302195',
20440             'Test2::EventFacet::Info::Table'=> '1.302195',
20441             'Test2::EventFacet::Meta'=> '1.302195',
20442             'Test2::EventFacet::Parent'=> '1.302195',
20443             'Test2::EventFacet::Plan'=> '1.302195',
20444             'Test2::EventFacet::Render'=> '1.302195',
20445             'Test2::EventFacet::Trace'=> '1.302195',
20446             'Test2::Formatter' => '1.302195',
20447             'Test2::Formatter::TAP' => '1.302195',
20448             'Test2::Hub' => '1.302195',
20449             'Test2::Hub::Interceptor'=> '1.302195',
20450             'Test2::Hub::Interceptor::Terminator'=> '1.302195',
20451             'Test2::Hub::Subtest' => '1.302195',
20452             'Test2::IPC' => '1.302195',
20453             'Test2::IPC::Driver' => '1.302195',
20454             'Test2::IPC::Driver::Files'=> '1.302195',
20455             'Test2::Tools::Tiny' => '1.302195',
20456             'Test2::Util' => '1.302195',
20457             'Test2::Util::ExternalMeta'=> '1.302195',
20458             'Test2::Util::Facets2Legacy'=> '1.302195',
20459             'Test2::Util::HashBase' => '1.302195',
20460             'Test2::Util::Trace' => '1.302195',
20461             'Test::Builder' => '1.302195',
20462             'Test::Builder::Formatter'=> '1.302195',
20463             'Test::Builder::Module' => '1.302195',
20464             'Test::Builder::Tester' => '1.302195',
20465             'Test::Builder::Tester::Color'=> '1.302195',
20466             'Test::Builder::TodoDiag'=> '1.302195',
20467             'Test::More' => '1.302195',
20468             'Test::Simple' => '1.302195',
20469             'Test::Tester' => '1.302195',
20470             'Test::Tester::Capture' => '1.302195',
20471             'Test::Tester::CaptureRunner'=> '1.302195',
20472             'Test::Tester::Delegate'=> '1.302195',
20473             'Test::use::ok' => '1.302195',
20474             'Text::Tabs' => '2023.0511',
20475             'Text::Wrap' => '2023.0511',
20476             'Time::HiRes' => '1.9776',
20477             'Time::Local' => '1.35',
20478             'UNIVERSAL' => '1.16',
20479             'feature' => '1.83',
20480             'ok' => '1.302195',
20481             'perlfaq' => '5.20230701',
20482             'threads' => '2.37',
20483             'warnings' => '1.66',
20484             'warnings::register' => '1.06',
20485             },
20486             removed => {
20487             }
20488             },
20489             );
20490              
20491             sub is_core
20492             {
20493 43 100 66 43 1 425 shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0];
      100        
20494 43         81 my $module = shift;
20495 43 100       122 my $module_version = @_ > 0 ? shift : undef;
20496 43 100       107 my $perl_version = @_ > 0 ? shift : $];
20497              
20498 43         95 my $first_release = first_release($module);
20499              
20500 43 100 100     388 return 0 if !defined($first_release) || $first_release > $perl_version;
20501              
20502 32         103 my $final_release = removed_from($module);
20503              
20504 32 100 100     166 return 0 if defined($final_release) && $perl_version >= $final_release;
20505              
20506             # If a minimum version of the module was specified:
20507             # Step through all perl releases ($prn)
20508             # so we can find what version of the module
20509             # was included in the specified version of perl.
20510             # On the way if we pass the required module version, we can
20511             # short-circuit and return true
20512 28 100       61 if (defined($module_version)) {
20513 21         38 my $module_version_object = eval { version->parse($module_version) };
  21         198  
20514 21 100       75 if (!defined($module_version_object)) {
20515 1         14 (my $err = $@) =~ s/^Invalid version format\b/Invalid version '$module_version' specified/;
20516 1         7 die $err;
20517             }
20518             # The Perl releases aren't a linear sequence, but a tree. We need to build the path
20519             # of releases from 5 to the specified release, and follow the module's version(s)
20520             # along that path.
20521 20         45 my @releases = ($perl_version);
20522 20         41 my $rel = $perl_version;
20523 20         44 while (defined($rel)) {
20524             # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
20525 498   66     1465 my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
20526 498         818 $rel = $this_delta->{delta_from};
20527 498 100       1153 unshift(@releases, $rel) if defined($rel);
20528             }
20529             RELEASE:
20530 20         42 foreach my $prn (@releases) {
20531 382 100       702 next RELEASE if $prn < $first_release;
20532 291 50       468 last RELEASE if $prn > $perl_version;
20533             next unless defined(my $next_module_version
20534 291 100       1063 = $delta{$prn}->{changed}->{$module});
20535 56 100       88 return 1 if eval { version->parse($next_module_version) >= $module_version_object };
  56         658  
20536             }
20537 4         32 return 0;
20538             }
20539              
20540 7 100       67 return 1 if !defined($final_release);
20541              
20542 2         17 return $perl_version <= $final_release;
20543             }
20544              
20545             %version = _undelta(\%delta);
20546              
20547             %deprecated = (
20548             5.011 => {
20549             changed => { map { $_ => 1 } qw/
20550             Class::ISA
20551             Pod::Plainer
20552             Shell
20553             Switch
20554             /},
20555             },
20556             5.011001 => { delta_from => 5.011 },
20557             5.011002 => { delta_from => 5.011001 },
20558             5.011003 => { delta_from => 5.011002 },
20559             5.011004 => { delta_from => 5.011003 },
20560             5.011005 => { delta_from => 5.011004 },
20561              
20562             5.012 => { delta_from => 5.011005 },
20563             5.012001 => { delta_from => 5.012 },
20564             5.012002 => { delta_from => 5.012001 },
20565             5.012003 => { delta_from => 5.012002 },
20566             5.012004 => { delta_from => 5.012003 },
20567             5.012005 => { delta_from => 5.012004 },
20568              
20569             5.013 => { delta_from => 5.012005 },
20570             5.013001 => {
20571             delta_from => 5.013,
20572             removed => { map { $_ => 1 } qw/
20573             Class::ISA
20574             Pod::Plainer
20575             Switch
20576             /},
20577             },
20578             5.013002 => { delta_from => 5.013001 },
20579             5.013003 => { delta_from => 5.013002 },
20580             5.013004 => { delta_from => 5.013003 },
20581             5.013005 => { delta_from => 5.013004 },
20582             5.013006 => { delta_from => 5.013005 },
20583             5.013007 => { delta_from => 5.013006 },
20584             5.013008 => { delta_from => 5.013007 },
20585             5.013009 => { delta_from => 5.013008 },
20586             5.01301 => { delta_from => 5.013009 },
20587             5.013011 => { delta_from => 5.01301 },
20588              
20589             5.014 => { delta_from => 5.013011 },
20590             5.014001 => { delta_from => 5.014 },
20591             5.014002 => { delta_from => 5.014001 },
20592             5.014003 => { delta_from => 5.014002 },
20593             5.014004 => { delta_from => 5.014003 },
20594              
20595             5.015 => {
20596             delta_from => 5.014004,
20597             removed => { Shell => 1 },
20598             },
20599             5.015001 => { delta_from => 5.015 },
20600             5.015002 => { delta_from => 5.015001 },
20601             5.015003 => { delta_from => 5.015002 },
20602             5.015004 => { delta_from => 5.015003 },
20603             5.015005 => { delta_from => 5.015004 },
20604             5.015006 => { delta_from => 5.015005 },
20605             5.015007 => { delta_from => 5.015006 },
20606             5.015008 => { delta_from => 5.015007 },
20607             5.015009 => { delta_from => 5.015008 },
20608              
20609             5.016 => { delta_from => 5.015009 },
20610             5.016001 => { delta_from => 5.016 },
20611             5.016002 => { delta_from => 5.016001 },
20612             5.016003 => { delta_from => 5.016002 },
20613              
20614             5.017 => { delta_from => 5.016003 },
20615             5.017001 => { delta_from => 5.017 },
20616             5.017002 => { delta_from => 5.017001 },
20617             5.017003 => { delta_from => 5.017002 },
20618             5.017004 => { delta_from => 5.017003 },
20619             5.017005 => { delta_from => 5.017004 },
20620             5.017006 => { delta_from => 5.017005 },
20621             5.017007 => { delta_from => 5.017006 },
20622             5.017008 => {
20623             delta_from => 5.017007,
20624             changed => { 'Pod::LaTeX' => 1 },
20625             },
20626             5.017009 => {
20627             delta_from => 5.017008,
20628             changed => { map { $_ => 1 } qw/
20629             Archive::Extract
20630             B::Lint
20631             B::Lint::Debug
20632             CPANPLUS
20633             CPANPLUS::Backend
20634             CPANPLUS::Backend::RV
20635             CPANPLUS::Config
20636             CPANPLUS::Config::HomeEnv
20637             CPANPLUS::Configure
20638             CPANPLUS::Configure::Setup
20639             CPANPLUS::Dist
20640             CPANPLUS::Dist::Autobundle
20641             CPANPLUS::Dist::Base
20642             CPANPLUS::Dist::Build
20643             CPANPLUS::Dist::Build::Constants
20644             CPANPLUS::Dist::MM
20645             CPANPLUS::Dist::Sample
20646             CPANPLUS::Error
20647             CPANPLUS::Internals
20648             CPANPLUS::Internals::Constants
20649             CPANPLUS::Internals::Constants::Report
20650             CPANPLUS::Internals::Extract
20651             CPANPLUS::Internals::Fetch
20652             CPANPLUS::Internals::Report
20653             CPANPLUS::Internals::Search
20654             CPANPLUS::Internals::Source
20655             CPANPLUS::Internals::Source::Memory
20656             CPANPLUS::Internals::Source::SQLite
20657             CPANPLUS::Internals::Source::SQLite::Tie
20658             CPANPLUS::Internals::Utils
20659             CPANPLUS::Internals::Utils::Autoflush
20660             CPANPLUS::Module
20661             CPANPLUS::Module::Author
20662             CPANPLUS::Module::Author::Fake
20663             CPANPLUS::Module::Checksums
20664             CPANPLUS::Module::Fake
20665             CPANPLUS::Module::Signature
20666             CPANPLUS::Selfupdate
20667             CPANPLUS::Shell
20668             CPANPLUS::Shell::Classic
20669             CPANPLUS::Shell::Default
20670             CPANPLUS::Shell::Default::Plugins::CustomSource
20671             CPANPLUS::Shell::Default::Plugins::Remote
20672             CPANPLUS::Shell::Default::Plugins::Source
20673             Devel::InnerPackage
20674             File::CheckTree
20675             Log::Message
20676             Log::Message::Config
20677             Log::Message::Handlers
20678             Log::Message::Item
20679             Log::Message::Simple
20680             Module::Pluggable
20681             Module::Pluggable::Object
20682             Object::Accessor
20683             Term::UI
20684             Term::UI::History
20685             Text::Soundex
20686             /},
20687             },
20688             5.01701 => { delta_from => 5.017009 },
20689             5.017011 => { delta_from => 5.01701 },
20690              
20691             5.018 => { delta_from => 5.017011 },
20692             5.018001 => {
20693             delta_from => 5.018,
20694             changed => {
20695             },
20696             removed => {
20697             }
20698             },
20699             5.018002 => {
20700             delta_from => 5.018001,
20701             changed => {
20702             },
20703             removed => {
20704             }
20705             },
20706             5.018003 => {
20707             delta_from => 5.018,
20708             changed => {
20709             },
20710             removed => {
20711             }
20712             },
20713             5.018004 => {
20714             delta_from => 5.018,
20715             changed => {
20716             },
20717             removed => {
20718             }
20719             },
20720              
20721             5.019 => {
20722             delta_from => 5.018,
20723             changed => { 'Module::Build' => 1 },
20724             removed => { map { $_ => 1 } qw/
20725             Archive::Extract
20726             B::Lint
20727             B::Lint::Debug
20728             CPANPLUS
20729             CPANPLUS::Backend
20730             CPANPLUS::Backend::RV
20731             CPANPLUS::Config
20732             CPANPLUS::Config::HomeEnv
20733             CPANPLUS::Configure
20734             CPANPLUS::Configure::Setup
20735             CPANPLUS::Dist
20736             CPANPLUS::Dist::Autobundle
20737             CPANPLUS::Dist::Base
20738             CPANPLUS::Dist::Build
20739             CPANPLUS::Dist::Build::Constants
20740             CPANPLUS::Dist::MM
20741             CPANPLUS::Dist::Sample
20742             CPANPLUS::Error
20743             CPANPLUS::Internals
20744             CPANPLUS::Internals::Constants
20745             CPANPLUS::Internals::Constants::Report
20746             CPANPLUS::Internals::Extract
20747             CPANPLUS::Internals::Fetch
20748             CPANPLUS::Internals::Report
20749             CPANPLUS::Internals::Search
20750             CPANPLUS::Internals::Source
20751             CPANPLUS::Internals::Source::Memory
20752             CPANPLUS::Internals::Source::SQLite
20753             CPANPLUS::Internals::Source::SQLite::Tie
20754             CPANPLUS::Internals::Utils
20755             CPANPLUS::Internals::Utils::Autoflush
20756             CPANPLUS::Module
20757             CPANPLUS::Module::Author
20758             CPANPLUS::Module::Author::Fake
20759             CPANPLUS::Module::Checksums
20760             CPANPLUS::Module::Fake
20761             CPANPLUS::Module::Signature
20762             CPANPLUS::Selfupdate
20763             CPANPLUS::Shell
20764             CPANPLUS::Shell::Classic
20765             CPANPLUS::Shell::Default
20766             CPANPLUS::Shell::Default::Plugins::CustomSource
20767             CPANPLUS::Shell::Default::Plugins::Remote
20768             CPANPLUS::Shell::Default::Plugins::Source
20769             Devel::InnerPackage
20770             File::CheckTree
20771             Log::Message
20772             Log::Message::Config
20773             Log::Message::Handlers
20774             Log::Message::Item
20775             Log::Message::Simple
20776             Module::Pluggable
20777             Module::Pluggable::Object
20778             Object::Accessor
20779             Pod::LaTeX
20780             Term::UI
20781             Term::UI::History
20782             Text::Soundex
20783             /}
20784             },
20785             5.019001 => {
20786             delta_from => 5.019,
20787             changed => {
20788             },
20789             removed => {
20790             }
20791             },
20792             5.019002 => {
20793             delta_from => 5.019001,
20794             changed => {
20795             },
20796             removed => {
20797             }
20798             },
20799             5.019003 => {
20800             delta_from => 5.019002,
20801             changed => {
20802             },
20803             removed => {
20804             }
20805             },
20806             5.019004 => {
20807             delta_from => 5.019003,
20808             changed => {
20809             'Module::Build::Base' => '1',
20810             'Module::Build::Compat' => '1',
20811             'Module::Build::Config' => '1',
20812             'Module::Build::ConfigData'=> '1',
20813             'Module::Build::Cookbook'=> '1',
20814             'Module::Build::Dumper' => '1',
20815             'Module::Build::ModuleInfo'=> '1',
20816             'Module::Build::Notes' => '1',
20817             'Module::Build::PPMMaker'=> '1',
20818             'Module::Build::Platform::Default'=> '1',
20819             'Module::Build::Platform::MacOS'=> '1',
20820             'Module::Build::Platform::Unix'=> '1',
20821             'Module::Build::Platform::VMS'=> '1',
20822             'Module::Build::Platform::VOS'=> '1',
20823             'Module::Build::Platform::Windows'=> '1',
20824             'Module::Build::Platform::aix'=> '1',
20825             'Module::Build::Platform::cygwin'=> '1',
20826             'Module::Build::Platform::darwin'=> '1',
20827             'Module::Build::Platform::os2'=> '1',
20828             'Module::Build::PodParser'=> '1',
20829             'Module::Build::Version'=> '1',
20830             'Module::Build::YAML' => '1',
20831             'inc::latest' => '1',
20832             },
20833             removed => {
20834             }
20835             },
20836             5.019005 => {
20837             delta_from => 5.019004,
20838             changed => {
20839             },
20840             removed => {
20841             }
20842             },
20843             5.019006 => {
20844             delta_from => 5.019005,
20845             changed => {
20846             'Package::Constants' => '1',
20847             },
20848             removed => {
20849             }
20850             },
20851             5.019007 => {
20852             delta_from => 5.019006,
20853             changed => {
20854             'CGI' => '1',
20855             'CGI::Apache' => '1',
20856             'CGI::Carp' => '1',
20857             'CGI::Cookie' => '1',
20858             'CGI::Fast' => '1',
20859             'CGI::Pretty' => '1',
20860             'CGI::Push' => '1',
20861             'CGI::Switch' => '1',
20862             'CGI::Util' => '1',
20863             },
20864             removed => {
20865             }
20866             },
20867             5.019008 => {
20868             delta_from => 5.019007,
20869             changed => {
20870             },
20871             removed => {
20872             }
20873             },
20874             5.019009 => {
20875             delta_from => 5.019008,
20876             changed => {
20877             },
20878             removed => {
20879             }
20880             },
20881             5.01901 => {
20882             delta_from => 5.019009,
20883             changed => {
20884             },
20885             removed => {
20886             }
20887             },
20888             5.019011 => {
20889             delta_from => 5.019010,
20890             changed => {
20891             },
20892             removed => {
20893             }
20894             },
20895             5.020000 => {
20896             delta_from => 5.019011,
20897             changed => {
20898             },
20899             removed => {
20900             }
20901             },
20902             5.021000 => {
20903             delta_from => 5.020000,
20904             changed => {
20905             },
20906             removed => {
20907             'CGI' => 1,
20908             'CGI::Apache' => 1,
20909             'CGI::Carp' => 1,
20910             'CGI::Cookie' => 1,
20911             'CGI::Fast' => 1,
20912             'CGI::Pretty' => 1,
20913             'CGI::Push' => 1,
20914             'CGI::Switch' => 1,
20915             'CGI::Util' => 1,
20916             'Module::Build' => 1,
20917             'Module::Build::Base' => 1,
20918             'Module::Build::Compat' => 1,
20919             'Module::Build::Config' => 1,
20920             'Module::Build::ConfigData'=> 1,
20921             'Module::Build::Cookbook'=> 1,
20922             'Module::Build::Dumper' => 1,
20923             'Module::Build::ModuleInfo'=> 1,
20924             'Module::Build::Notes' => 1,
20925             'Module::Build::PPMMaker'=> 1,
20926             'Module::Build::Platform::Default'=> 1,
20927             'Module::Build::Platform::MacOS'=> 1,
20928             'Module::Build::Platform::Unix'=> 1,
20929             'Module::Build::Platform::VMS'=> 1,
20930             'Module::Build::Platform::VOS'=> 1,
20931             'Module::Build::Platform::Windows'=> 1,
20932             'Module::Build::Platform::aix'=> 1,
20933             'Module::Build::Platform::cygwin'=> 1,
20934             'Module::Build::Platform::darwin'=> 1,
20935             'Module::Build::Platform::os2'=> 1,
20936             'Module::Build::PodParser'=> 1,
20937             'Module::Build::Version'=> 1,
20938             'Module::Build::YAML' => 1,
20939             'Package::Constants' => 1,
20940             'inc::latest' => 1,
20941             }
20942             },
20943             5.021001 => {
20944             delta_from => 5.021000,
20945             changed => {
20946             },
20947             removed => {
20948             }
20949             },
20950             5.021002 => {
20951             delta_from => 5.021001,
20952             changed => {
20953             },
20954             removed => {
20955             }
20956             },
20957             5.021003 => {
20958             delta_from => 5.021002,
20959             changed => {
20960             },
20961             removed => {
20962             }
20963             },
20964             5.020001 => {
20965             delta_from => 5.020000,
20966             changed => {
20967             },
20968             removed => {
20969             }
20970             },
20971             5.021004 => {
20972             delta_from => 5.021003,
20973             changed => {
20974             },
20975             removed => {
20976             }
20977             },
20978             5.021005 => {
20979             delta_from => 5.021004,
20980             changed => {
20981             },
20982             removed => {
20983             }
20984             },
20985             5.021006 => {
20986             delta_from => 5.021005,
20987             changed => {
20988             },
20989             removed => {
20990             }
20991             },
20992             5.021007 => {
20993             delta_from => 5.021006,
20994             changed => {
20995             },
20996             removed => {
20997             }
20998             },
20999             5.021008 => {
21000             delta_from => 5.021007,
21001             changed => {
21002             },
21003             removed => {
21004             }
21005             },
21006             5.020002 => {
21007             delta_from => 5.020001,
21008             changed => {
21009             },
21010             removed => {
21011             }
21012             },
21013             5.021009 => {
21014             delta_from => 5.021008,
21015             changed => {
21016             },
21017             removed => {
21018             }
21019             },
21020             5.021010 => {
21021             delta_from => 5.021009,
21022             changed => {
21023             },
21024             removed => {
21025             }
21026             },
21027             5.021011 => {
21028             delta_from => 5.02101,
21029             changed => {
21030             },
21031             removed => {
21032             }
21033             },
21034             5.022000 => {
21035             delta_from => 5.021011,
21036             changed => {
21037             },
21038             removed => {
21039             }
21040             },
21041             5.023000 => {
21042             delta_from => 5.022000,
21043             changed => {
21044             },
21045             removed => {
21046             }
21047             },
21048             5.023001 => {
21049             delta_from => 5.023000,
21050             changed => {
21051             },
21052             removed => {
21053             }
21054             },
21055             5.023002 => {
21056             delta_from => 5.023001,
21057             changed => {
21058             },
21059             removed => {
21060             }
21061             },
21062             5.020003 => {
21063             delta_from => 5.020002,
21064             changed => {
21065             },
21066             removed => {
21067             }
21068             },
21069             5.023003 => {
21070             delta_from => 5.023002,
21071             changed => {
21072             },
21073             removed => {
21074             }
21075             },
21076             5.023004 => {
21077             delta_from => 5.023003,
21078             changed => {
21079             },
21080             removed => {
21081             }
21082             },
21083             5.023005 => {
21084             delta_from => 5.023004,
21085             changed => {
21086             },
21087             removed => {
21088             }
21089             },
21090             5.022001 => {
21091             delta_from => 5.022,
21092             changed => {
21093             },
21094             removed => {
21095             }
21096             },
21097             5.023006 => {
21098             delta_from => 5.023005,
21099             changed => {
21100             },
21101             removed => {
21102             }
21103             },
21104             5.023007 => {
21105             delta_from => 5.023006,
21106             changed => {
21107             },
21108             removed => {
21109             }
21110             },
21111             5.023008 => {
21112             delta_from => 5.023007,
21113             changed => {
21114             },
21115             removed => {
21116             }
21117             },
21118             5.023009 => {
21119             delta_from => 5.023008,
21120             changed => {
21121             },
21122             removed => {
21123             }
21124             },
21125             5.022002 => {
21126             delta_from => 5.022001,
21127             changed => {
21128             },
21129             removed => {
21130             }
21131             },
21132             5.024000 => {
21133             delta_from => 5.023009,
21134             changed => {
21135             },
21136             removed => {
21137             }
21138             },
21139             5.025000 => {
21140             delta_from => 5.024,
21141             changed => {
21142             },
21143             removed => {
21144             }
21145             },
21146             5.025001 => {
21147             delta_from => 5.025,
21148             changed => {
21149             },
21150             removed => {
21151             }
21152             },
21153             5.025002 => {
21154             delta_from => 5.025001,
21155             changed => {
21156             },
21157             removed => {
21158             }
21159             },
21160             5.025003 => {
21161             delta_from => 5.025002,
21162             changed => {
21163             },
21164             removed => {
21165             }
21166             },
21167             5.025004 => {
21168             delta_from => 5.025003,
21169             changed => {
21170             },
21171             removed => {
21172             }
21173             },
21174             5.025005 => {
21175             delta_from => 5.025004,
21176             changed => {
21177             },
21178             removed => {
21179             }
21180             },
21181             5.025006 => {
21182             delta_from => 5.025005,
21183             changed => {
21184             },
21185             removed => {
21186             }
21187             },
21188             5.025007 => {
21189             delta_from => 5.025006,
21190             changed => {
21191             },
21192             removed => {
21193             }
21194             },
21195             5.025008 => {
21196             delta_from => 5.025007,
21197             changed => {
21198             },
21199             removed => {
21200             }
21201             },
21202             5.022003 => {
21203             delta_from => 5.022002,
21204             changed => {
21205             },
21206             removed => {
21207             }
21208             },
21209             5.024001 => {
21210             delta_from => 5.024000,
21211             changed => {
21212             },
21213             removed => {
21214             }
21215             },
21216             5.025009 => {
21217             delta_from => 5.025008,
21218             changed => {
21219             },
21220             removed => {
21221             }
21222             },
21223             5.025010 => {
21224             delta_from => 5.025009,
21225             changed => {
21226             },
21227             removed => {
21228             }
21229             },
21230             5.025011 => {
21231             delta_from => 5.025010,
21232             changed => {
21233             },
21234             removed => {
21235             }
21236             },
21237             5.025012 => {
21238             delta_from => 5.025011,
21239             changed => {
21240             },
21241             removed => {
21242             }
21243             },
21244             5.026000 => {
21245             delta_from => 5.025012,
21246             changed => {
21247             },
21248             removed => {
21249             }
21250             },
21251             5.027000 => {
21252             delta_from => 5.026,
21253             changed => {
21254             },
21255             removed => {
21256             }
21257             },
21258             5.027001 => {
21259             delta_from => 5.027,
21260             changed => {
21261             },
21262             removed => {
21263             }
21264             },
21265             5.022004 => {
21266             delta_from => 5.022003,
21267             changed => {
21268             },
21269             removed => {
21270             }
21271             },
21272             5.024002 => {
21273             delta_from => 5.024001,
21274             changed => {
21275             },
21276             removed => {
21277             }
21278             },
21279             5.027002 => {
21280             delta_from => 5.027001,
21281             changed => {
21282             },
21283             removed => {
21284             }
21285             },
21286             5.027003 => {
21287             delta_from => 5.027002,
21288             changed => {
21289             'B::Debug' => '1',
21290             },
21291             removed => {
21292             }
21293             },
21294             5.027004 => {
21295             delta_from => 5.027003,
21296             changed => {
21297             },
21298             removed => {
21299             }
21300             },
21301             5.024003 => {
21302             delta_from => 5.024002,
21303             changed => {
21304             },
21305             removed => {
21306             }
21307             },
21308             5.026001 => {
21309             delta_from => 5.026000,
21310             changed => {
21311             },
21312             removed => {
21313             }
21314             },
21315             5.027005 => {
21316             delta_from => 5.027004,
21317             changed => {
21318             },
21319             removed => {
21320             }
21321             },
21322             5.027006 => {
21323             delta_from => 5.027005,
21324             changed => {
21325             },
21326             removed => {
21327             }
21328             },
21329             5.027007 => {
21330             delta_from => 5.027006,
21331             changed => {
21332             },
21333             removed => {
21334             }
21335             },
21336             5.027008 => {
21337             delta_from => 5.027007,
21338             changed => {
21339             },
21340             removed => {
21341             }
21342             },
21343             5.027009 => {
21344             delta_from => 5.027008,
21345             changed => {
21346             },
21347             removed => {
21348             }
21349             },
21350             5.027010 => {
21351             delta_from => 5.027009,
21352             changed => {
21353             },
21354             removed => {
21355             }
21356             },
21357             5.024004 => {
21358             delta_from => 5.024003,
21359             changed => {
21360             },
21361             removed => {
21362             }
21363             },
21364             5.026002 => {
21365             delta_from => 5.026001,
21366             changed => {
21367             },
21368             removed => {
21369             }
21370             },
21371             5.027011 => {
21372             delta_from => 5.02701,
21373             changed => {
21374             },
21375             removed => {
21376             }
21377             },
21378             5.028000 => {
21379             delta_from => 5.027011,
21380             changed => {
21381             },
21382             removed => {
21383             }
21384             },
21385             5.029000 => {
21386             delta_from => 5.028,
21387             changed => {
21388             },
21389             removed => {
21390             }
21391             },
21392             5.029001 => {
21393             delta_from => 5.029,
21394             changed => {
21395             },
21396             removed => {
21397             }
21398             },
21399             5.029002 => {
21400             delta_from => 5.029001,
21401             changed => {
21402             },
21403             removed => {
21404             }
21405             },
21406             5.029003 => {
21407             delta_from => 5.029002,
21408             changed => {
21409             },
21410             removed => {
21411             }
21412             },
21413             5.029004 => {
21414             delta_from => 5.029003,
21415             changed => {
21416             },
21417             removed => {
21418             arybase => '1',
21419             }
21420             },
21421             5.029005 => {
21422             delta_from => 5.027002,
21423             changed => {
21424             },
21425             removed => {
21426             }
21427             },
21428             5.026003 => {
21429             delta_from => 5.026002,
21430             changed => {
21431             },
21432             removed => {
21433             }
21434             },
21435             5.028001 => {
21436             delta_from => 5.028000,
21437             changed => {
21438             },
21439             removed => {
21440             }
21441             },
21442             5.029006 => {
21443             delta_from => 5.029005,
21444             changed => {
21445             },
21446             removed => {
21447             }
21448             },
21449             5.029007 => {
21450             delta_from => 5.029006,
21451             changed => {
21452             },
21453             removed => {
21454             }
21455             },
21456             5.029008 => {
21457             delta_from => 5.029007,
21458             changed => {
21459             },
21460             removed => {
21461             }
21462             },
21463             5.029009 => {
21464             delta_from => 5.029008,
21465             changed => {
21466             },
21467             removed => {
21468             }
21469             },
21470             5.028002 => {
21471             delta_from => 5.028001,
21472             changed => {
21473             },
21474             removed => {
21475             }
21476             },
21477             5.029010 => {
21478             delta_from => 5.029009,
21479             changed => {
21480             },
21481             removed => {
21482             }
21483             },
21484             5.030000 => {
21485             delta_from => 5.02901,
21486             changed => {
21487             },
21488             removed => {
21489             }
21490             },
21491             5.031000 => {
21492             delta_from => 5.030000,
21493             changed => {
21494             },
21495             removed => {
21496             }
21497             },
21498             5.031001 => {
21499             delta_from => 5.031000,
21500             changed => {
21501             },
21502             removed => {
21503             }
21504             },
21505             5.031002 => {
21506             delta_from => 5.031001,
21507             changed => {
21508             },
21509             removed => {
21510             }
21511             },
21512             5.031003 => {
21513             delta_from => 5.031002,
21514             changed => {
21515             },
21516             removed => {
21517             }
21518             },
21519             5.031004 => {
21520             delta_from => 5.031003,
21521             changed => {
21522             },
21523             removed => {
21524             }
21525             },
21526             5.031005 => {
21527             delta_from => 5.031004,
21528             changed => {
21529             },
21530             removed => {
21531             }
21532             },
21533             5.030001 => {
21534             delta_from => 5.030000,
21535             changed => {
21536             },
21537             removed => {
21538             }
21539             },
21540             5.031006 => {
21541             delta_from => 5.031005,
21542             changed => {
21543             },
21544             removed => {
21545             }
21546             },
21547             5.031007 => {
21548             delta_from => 5.031006,
21549             changed => {
21550             },
21551             removed => {
21552             }
21553             },
21554             5.031008 => {
21555             delta_from => 5.031007,
21556             changed => {
21557             },
21558             removed => {
21559             }
21560             },
21561             5.031009 => {
21562             delta_from => 5.031008,
21563             changed => {
21564             },
21565             removed => {
21566             }
21567             },
21568             5.030002 => {
21569             delta_from => 5.030001,
21570             changed => {
21571             },
21572             removed => {
21573             }
21574             },
21575             5.031010 => {
21576             delta_from => 5.031009,
21577             changed => {
21578             },
21579             removed => {
21580             }
21581             },
21582             5.031011 => {
21583             delta_from => 5.03101,
21584             changed => {
21585             },
21586             removed => {
21587             }
21588             },
21589             5.028003 => {
21590             delta_from => 5.028002,
21591             changed => {
21592             },
21593             removed => {
21594             }
21595             },
21596             5.030003 => {
21597             delta_from => 5.030002,
21598             changed => {
21599             },
21600             removed => {
21601             }
21602             },
21603             5.032000 => {
21604             delta_from => 5.031011,
21605             changed => {
21606             },
21607             removed => {
21608             }
21609             },
21610             5.033000 => {
21611             delta_from => 5.032,
21612             changed => {
21613             },
21614             removed => {
21615             }
21616             },
21617             5.033001 => {
21618             delta_from => 5.033000,
21619             changed => {
21620             },
21621             removed => {
21622             }
21623             },
21624             5.033002 => {
21625             delta_from => 5.033001,
21626             changed => {
21627             },
21628             removed => {
21629             }
21630             },
21631             5.033003 => {
21632             delta_from => 5.033002,
21633             changed => {
21634             },
21635             removed => {
21636             }
21637             },
21638             5.033004 => {
21639             delta_from => 5.033003,
21640             changed => {
21641             },
21642             removed => {
21643             }
21644             },
21645             5.033005 => {
21646             delta_from => 5.033004,
21647             changed => {
21648             },
21649             removed => {
21650             }
21651             },
21652             5.033006 => {
21653             delta_from => 5.033005,
21654             changed => {
21655             },
21656             removed => {
21657             }
21658             },
21659             5.032001 => {
21660             delta_from => 5.032,
21661             changed => {
21662             },
21663             removed => {
21664             }
21665             },
21666             5.033007 => {
21667             delta_from => 5.033006,
21668             changed => {
21669             },
21670             removed => {
21671             }
21672             },
21673             5.033008 => {
21674             delta_from => 5.033007,
21675             changed => {
21676             },
21677             removed => {
21678             }
21679             },
21680             5.033009 => {
21681             delta_from => 5.033008,
21682             changed => {
21683             },
21684             removed => {
21685             }
21686             },
21687             5.034000 => {
21688             delta_from => 5.033009,
21689             changed => {
21690             },
21691             removed => {
21692             }
21693             },
21694             5.035000 => {
21695             delta_from => 5.034,
21696             changed => {
21697             },
21698             removed => {
21699             }
21700             },
21701             5.035001 => {
21702             delta_from => 5.035,
21703             changed => {
21704             },
21705             removed => {
21706             }
21707             },
21708             5.035002 => {
21709             delta_from => 5.035001,
21710             changed => {
21711             },
21712             removed => {
21713             }
21714             },
21715             5.035003 => {
21716             delta_from => 5.035002,
21717             changed => {
21718             },
21719             removed => {
21720             }
21721             },
21722             5.035004 => {
21723             delta_from => 5.035003,
21724             changed => {
21725             },
21726             removed => {
21727             }
21728             },
21729             5.035005 => {
21730             delta_from => 5.035004,
21731             changed => {
21732             },
21733             removed => {
21734             }
21735             },
21736             5.035006 => {
21737             delta_from => 5.035005,
21738             changed => {
21739             },
21740             removed => {
21741             }
21742             },
21743             5.035007 => {
21744             delta_from => 5.035006,
21745             changed => {
21746             },
21747             removed => {
21748             }
21749             },
21750             5.035008 => {
21751             delta_from => 5.035007,
21752             changed => {
21753             },
21754             removed => {
21755             }
21756             },
21757             5.035009 => {
21758             delta_from => 5.035008,
21759             changed => {
21760             },
21761             removed => {
21762             }
21763             },
21764             5.034001 => {
21765             delta_from => 5.034000,
21766             changed => {
21767             },
21768             removed => {
21769             }
21770             },
21771             5.035010 => {
21772             delta_from => 5.035009,
21773             changed => {
21774             },
21775             removed => {
21776             }
21777             },
21778             5.035011 => {
21779             delta_from => 5.035010,
21780             changed => {
21781             },
21782             removed => {
21783             }
21784             },
21785             5.036000 => {
21786             delta_from => 5.035011,
21787             changed => {
21788             },
21789             removed => {
21790             }
21791             },
21792             5.037000 => {
21793             delta_from => 5.036000,
21794             changed => {
21795             },
21796             removed => {
21797             }
21798             },
21799             5.037001 => {
21800             delta_from => 5.037000,
21801             changed => {
21802             },
21803             removed => {
21804             }
21805             },
21806             5.037002 => {
21807             delta_from => 5.037001,
21808             changed => {
21809             },
21810             removed => {
21811             }
21812             },
21813             5.037003 => {
21814             delta_from => 5.037002,
21815             changed => {
21816             },
21817             removed => {
21818             }
21819             },
21820             5.037004 => {
21821             delta_from => 5.037003,
21822             changed => {
21823             },
21824             removed => {
21825             }
21826             },
21827             5.037005 => {
21828             delta_from => 5.037004,
21829             changed => {
21830             },
21831             removed => {
21832             }
21833             },
21834             5.037006 => {
21835             delta_from => 5.037005,
21836             changed => {
21837             },
21838             removed => {
21839             }
21840             },
21841             5.037007 => {
21842             delta_from => 5.037006,
21843             changed => {
21844             },
21845             removed => {
21846             }
21847             },
21848             5.037008 => {
21849             delta_from => 5.037007,
21850             changed => {
21851             },
21852             removed => {
21853             }
21854             },
21855             5.037009 => {
21856             delta_from => 5.037008,
21857             changed => {
21858             },
21859             removed => {
21860             }
21861             },
21862             5.037010 => {
21863             delta_from => 5.037009,
21864             changed => {
21865             },
21866             removed => {
21867             }
21868             },
21869             5.037011 => {
21870             delta_from => 5.037010,
21871             changed => {
21872             },
21873             removed => {
21874             }
21875             },
21876             5.036001 => {
21877             delta_from => 5.036,
21878             changed => {
21879             },
21880             removed => {
21881             }
21882             },
21883             5.038000 => {
21884             delta_from => 5.037011,
21885             changed => {
21886             },
21887             removed => {
21888             }
21889             },
21890             5.039001 => {
21891             delta_from => 5.038,
21892             changed => {
21893             },
21894             removed => {
21895             }
21896             },
21897             );
21898              
21899             %deprecated = _undelta(\%deprecated);
21900              
21901             %upstream = (
21902             'App::Cpan' => 'cpan',
21903             'App::Prove' => 'cpan',
21904             'App::Prove::State' => 'cpan',
21905             'App::Prove::State::Result'=> 'cpan',
21906             'App::Prove::State::Result::Test'=> 'cpan',
21907             'Archive::Tar' => 'cpan',
21908             'Archive::Tar::Constant'=> 'cpan',
21909             'Archive::Tar::File' => 'cpan',
21910             'AutoLoader' => 'cpan',
21911             'AutoSplit' => 'cpan',
21912             'CPAN' => 'cpan',
21913             'CPAN::Author' => 'cpan',
21914             'CPAN::Bundle' => 'cpan',
21915             'CPAN::CacheMgr' => 'cpan',
21916             'CPAN::Complete' => 'cpan',
21917             'CPAN::Debug' => 'cpan',
21918             'CPAN::DeferredCode' => 'cpan',
21919             'CPAN::Distribution' => 'cpan',
21920             'CPAN::Distroprefs' => 'cpan',
21921             'CPAN::Distrostatus' => 'cpan',
21922             'CPAN::Exception::RecursiveDependency'=> 'cpan',
21923             'CPAN::Exception::blocked_urllist'=> 'cpan',
21924             'CPAN::Exception::yaml_not_installed'=> 'cpan',
21925             'CPAN::Exception::yaml_process_error'=> 'cpan',
21926             'CPAN::FTP' => 'cpan',
21927             'CPAN::FTP::netrc' => 'cpan',
21928             'CPAN::FirstTime' => 'cpan',
21929             'CPAN::HTTP::Client' => 'cpan',
21930             'CPAN::HTTP::Credentials'=> 'cpan',
21931             'CPAN::HandleConfig' => 'cpan',
21932             'CPAN::Index' => 'cpan',
21933             'CPAN::InfoObj' => 'cpan',
21934             'CPAN::Kwalify' => 'cpan',
21935             'CPAN::LWP::UserAgent' => 'cpan',
21936             'CPAN::Meta' => 'cpan',
21937             'CPAN::Meta::Converter' => 'cpan',
21938             'CPAN::Meta::Feature' => 'cpan',
21939             'CPAN::Meta::History' => 'cpan',
21940             'CPAN::Meta::Merge' => 'cpan',
21941             'CPAN::Meta::Prereqs' => 'cpan',
21942             'CPAN::Meta::Requirements'=> 'cpan',
21943             'CPAN::Meta::Requirements::Range'=> 'cpan',
21944             'CPAN::Meta::Spec' => 'cpan',
21945             'CPAN::Meta::Validator' => 'cpan',
21946             'CPAN::Meta::YAML' => 'cpan',
21947             'CPAN::Mirrors' => 'cpan',
21948             'CPAN::Module' => 'cpan',
21949             'CPAN::Nox' => 'cpan',
21950             'CPAN::Plugin' => 'cpan',
21951             'CPAN::Plugin::Specfile'=> 'cpan',
21952             'CPAN::Prompt' => 'cpan',
21953             'CPAN::Queue' => 'cpan',
21954             'CPAN::Shell' => 'cpan',
21955             'CPAN::Tarzip' => 'cpan',
21956             'CPAN::URL' => 'cpan',
21957             'CPAN::Version' => 'cpan',
21958             'Compress::Raw::Bzip2' => 'cpan',
21959             'Compress::Raw::Zlib' => 'cpan',
21960             'Compress::Zlib' => 'cpan',
21961             'Config::Perl::V' => 'cpan',
21962             'DB_File' => 'cpan',
21963             'Digest' => 'cpan',
21964             'Digest::MD5' => 'cpan',
21965             'Digest::SHA' => 'cpan',
21966             'Digest::base' => 'cpan',
21967             'Digest::file' => 'cpan',
21968             'Encode' => 'cpan',
21969             'Encode::Alias' => 'cpan',
21970             'Encode::Byte' => 'cpan',
21971             'Encode::CJKConstants' => 'cpan',
21972             'Encode::CN' => 'cpan',
21973             'Encode::CN::HZ' => 'cpan',
21974             'Encode::Config' => 'cpan',
21975             'Encode::EBCDIC' => 'cpan',
21976             'Encode::Encoder' => 'cpan',
21977             'Encode::Encoding' => 'cpan',
21978             'Encode::GSM0338' => 'cpan',
21979             'Encode::Guess' => 'cpan',
21980             'Encode::JP' => 'cpan',
21981             'Encode::JP::H2Z' => 'cpan',
21982             'Encode::JP::JIS7' => 'cpan',
21983             'Encode::KR' => 'cpan',
21984             'Encode::KR::2022_KR' => 'cpan',
21985             'Encode::MIME::Header' => 'cpan',
21986             'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
21987             'Encode::MIME::Name' => 'cpan',
21988             'Encode::Symbol' => 'cpan',
21989             'Encode::TW' => 'cpan',
21990             'Encode::Unicode' => 'cpan',
21991             'Encode::Unicode::UTF7' => 'cpan',
21992             'ExtUtils::Command' => 'cpan',
21993             'ExtUtils::Command::MM' => 'cpan',
21994             'ExtUtils::Constant' => 'cpan',
21995             'ExtUtils::Constant::Base'=> 'cpan',
21996             'ExtUtils::Constant::ProxySubs'=> 'cpan',
21997             'ExtUtils::Constant::Utils'=> 'cpan',
21998             'ExtUtils::Constant::XS'=> 'cpan',
21999             'ExtUtils::Install' => 'cpan',
22000             'ExtUtils::Installed' => 'cpan',
22001             'ExtUtils::Liblist' => 'cpan',
22002             'ExtUtils::Liblist::Kid'=> 'cpan',
22003             'ExtUtils::MM' => 'cpan',
22004             'ExtUtils::MM_AIX' => 'cpan',
22005             'ExtUtils::MM_Any' => 'cpan',
22006             'ExtUtils::MM_BeOS' => 'cpan',
22007             'ExtUtils::MM_Cygwin' => 'cpan',
22008             'ExtUtils::MM_DOS' => 'cpan',
22009             'ExtUtils::MM_Darwin' => 'cpan',
22010             'ExtUtils::MM_MacOS' => 'cpan',
22011             'ExtUtils::MM_NW5' => 'cpan',
22012             'ExtUtils::MM_OS2' => 'cpan',
22013             'ExtUtils::MM_OS390' => 'cpan',
22014             'ExtUtils::MM_QNX' => 'cpan',
22015             'ExtUtils::MM_UWIN' => 'cpan',
22016             'ExtUtils::MM_Unix' => 'cpan',
22017             'ExtUtils::MM_VMS' => 'cpan',
22018             'ExtUtils::MM_VOS' => 'cpan',
22019             'ExtUtils::MM_Win32' => 'cpan',
22020             'ExtUtils::MM_Win95' => 'cpan',
22021             'ExtUtils::MY' => 'cpan',
22022             'ExtUtils::MakeMaker' => 'cpan',
22023             'ExtUtils::MakeMaker::Config'=> 'cpan',
22024             'ExtUtils::MakeMaker::Locale'=> 'cpan',
22025             'ExtUtils::MakeMaker::version'=> 'cpan',
22026             'ExtUtils::MakeMaker::version::regex'=> 'cpan',
22027             'ExtUtils::Manifest' => 'cpan',
22028             'ExtUtils::Mkbootstrap' => 'cpan',
22029             'ExtUtils::Mksymlists' => 'cpan',
22030             'ExtUtils::PL2Bat' => 'cpan',
22031             'ExtUtils::Packlist' => 'cpan',
22032             'ExtUtils::testlib' => 'cpan',
22033             'Fatal' => 'cpan',
22034             'File::Fetch' => 'cpan',
22035             'File::GlobMapper' => 'cpan',
22036             'File::Path' => 'cpan',
22037             'File::Temp' => 'cpan',
22038             'Filter::Util::Call' => 'cpan',
22039             'Getopt::Long' => 'cpan',
22040             'HTTP::Tiny' => 'cpan',
22041             'IO::Compress::Adapter::Bzip2'=> 'cpan',
22042             'IO::Compress::Adapter::Deflate'=> 'cpan',
22043             'IO::Compress::Adapter::Identity'=> 'cpan',
22044             'IO::Compress::Base' => 'cpan',
22045             'IO::Compress::Base::Common'=> 'cpan',
22046             'IO::Compress::Bzip2' => 'cpan',
22047             'IO::Compress::Deflate' => 'cpan',
22048             'IO::Compress::Gzip' => 'cpan',
22049             'IO::Compress::Gzip::Constants'=> 'cpan',
22050             'IO::Compress::RawDeflate'=> 'cpan',
22051             'IO::Compress::Zip' => 'cpan',
22052             'IO::Compress::Zip::Constants'=> 'cpan',
22053             'IO::Compress::Zlib::Constants'=> 'cpan',
22054             'IO::Compress::Zlib::Extra'=> 'cpan',
22055             'IO::Socket::IP' => 'cpan',
22056             'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
22057             'IO::Uncompress::Adapter::Identity'=> 'cpan',
22058             'IO::Uncompress::Adapter::Inflate'=> 'cpan',
22059             'IO::Uncompress::AnyInflate'=> 'cpan',
22060             'IO::Uncompress::AnyUncompress'=> 'cpan',
22061             'IO::Uncompress::Base' => 'cpan',
22062             'IO::Uncompress::Bunzip2'=> 'cpan',
22063             'IO::Uncompress::Gunzip'=> 'cpan',
22064             'IO::Uncompress::Inflate'=> 'cpan',
22065             'IO::Uncompress::RawInflate'=> 'cpan',
22066             'IO::Uncompress::Unzip' => 'cpan',
22067             'IO::Zlib' => 'cpan',
22068             'IPC::Cmd' => 'cpan',
22069             'IPC::Msg' => 'cpan',
22070             'IPC::Semaphore' => 'cpan',
22071             'IPC::SharedMem' => 'cpan',
22072             'IPC::SysV' => 'cpan',
22073             'JSON::PP' => 'cpan',
22074             'JSON::PP::Boolean' => 'cpan',
22075             'List::Util' => 'cpan',
22076             'List::Util::XS' => 'cpan',
22077             'Locale::Maketext::Simple'=> 'cpan',
22078             'MIME::Base64' => 'cpan',
22079             'MIME::QuotedPrint' => 'cpan',
22080             'Math::BigFloat' => 'cpan',
22081             'Math::BigFloat::Trace' => 'cpan',
22082             'Math::BigInt' => 'cpan',
22083             'Math::BigInt::Calc' => 'cpan',
22084             'Math::BigInt::FastCalc'=> 'cpan',
22085             'Math::BigInt::Lib' => 'cpan',
22086             'Math::BigInt::Trace' => 'cpan',
22087             'Math::BigRat' => 'cpan',
22088             'Math::BigRat::Trace' => 'cpan',
22089             'Memoize' => 'cpan',
22090             'Memoize::AnyDBM_File' => 'cpan',
22091             'Memoize::Expire' => 'cpan',
22092             'Memoize::NDBM_File' => 'cpan',
22093             'Memoize::SDBM_File' => 'cpan',
22094             'Memoize::Storable' => 'cpan',
22095             'Module::Load' => 'cpan',
22096             'Module::Load::Conditional'=> 'cpan',
22097             'Module::Loaded' => 'cpan',
22098             'Module::Metadata' => 'cpan',
22099             'NEXT' => 'cpan',
22100             'Net::Cmd' => 'cpan',
22101             'Net::Config' => 'cpan',
22102             'Net::Domain' => 'cpan',
22103             'Net::FTP' => 'cpan',
22104             'Net::FTP::A' => 'cpan',
22105             'Net::FTP::E' => 'cpan',
22106             'Net::FTP::I' => 'cpan',
22107             'Net::FTP::L' => 'cpan',
22108             'Net::FTP::dataconn' => 'cpan',
22109             'Net::NNTP' => 'cpan',
22110             'Net::Netrc' => 'cpan',
22111             'Net::POP3' => 'cpan',
22112             'Net::SMTP' => 'cpan',
22113             'Net::Time' => 'cpan',
22114             'Params::Check' => 'cpan',
22115             'Parse::CPAN::Meta' => 'cpan',
22116             'Perl::OSType' => 'cpan',
22117             'PerlIO::via::QuotedPrint'=> 'cpan',
22118             'Pod::Checker' => 'cpan',
22119             'Pod::Escapes' => 'cpan',
22120             'Pod::Man' => 'cpan',
22121             'Pod::ParseLink' => 'cpan',
22122             'Pod::Perldoc' => 'cpan',
22123             'Pod::Perldoc::BaseTo' => 'cpan',
22124             'Pod::Perldoc::GetOptsOO'=> 'cpan',
22125             'Pod::Perldoc::ToANSI' => 'cpan',
22126             'Pod::Perldoc::ToChecker'=> 'cpan',
22127             'Pod::Perldoc::ToMan' => 'cpan',
22128             'Pod::Perldoc::ToNroff' => 'cpan',
22129             'Pod::Perldoc::ToPod' => 'cpan',
22130             'Pod::Perldoc::ToRtf' => 'cpan',
22131             'Pod::Perldoc::ToTerm' => 'cpan',
22132             'Pod::Perldoc::ToText' => 'cpan',
22133             'Pod::Perldoc::ToTk' => 'cpan',
22134             'Pod::Perldoc::ToXml' => 'cpan',
22135             'Pod::Simple' => 'cpan',
22136             'Pod::Simple::BlackBox' => 'cpan',
22137             'Pod::Simple::Checker' => 'cpan',
22138             'Pod::Simple::Debug' => 'cpan',
22139             'Pod::Simple::DumpAsText'=> 'cpan',
22140             'Pod::Simple::DumpAsXML'=> 'cpan',
22141             'Pod::Simple::HTML' => 'cpan',
22142             'Pod::Simple::HTMLBatch'=> 'cpan',
22143             'Pod::Simple::HTMLLegacy'=> 'cpan',
22144             'Pod::Simple::JustPod' => 'cpan',
22145             'Pod::Simple::LinkSection'=> 'cpan',
22146             'Pod::Simple::Methody' => 'cpan',
22147             'Pod::Simple::Progress' => 'cpan',
22148             'Pod::Simple::PullParser'=> 'cpan',
22149             'Pod::Simple::PullParserEndToken'=> 'cpan',
22150             'Pod::Simple::PullParserStartToken'=> 'cpan',
22151             'Pod::Simple::PullParserTextToken'=> 'cpan',
22152             'Pod::Simple::PullParserToken'=> 'cpan',
22153             'Pod::Simple::RTF' => 'cpan',
22154             'Pod::Simple::Search' => 'cpan',
22155             'Pod::Simple::SimpleTree'=> 'cpan',
22156             'Pod::Simple::Text' => 'cpan',
22157             'Pod::Simple::TextContent'=> 'cpan',
22158             'Pod::Simple::TiedOutFH'=> 'cpan',
22159             'Pod::Simple::Transcode'=> 'cpan',
22160             'Pod::Simple::TranscodeDumb'=> 'cpan',
22161             'Pod::Simple::TranscodeSmart'=> 'cpan',
22162             'Pod::Simple::XHTML' => 'cpan',
22163             'Pod::Simple::XMLOutStream'=> 'cpan',
22164             'Pod::Text' => 'cpan',
22165             'Pod::Text::Color' => 'cpan',
22166             'Pod::Text::Overstrike' => 'cpan',
22167             'Pod::Text::Termcap' => 'cpan',
22168             'Pod::Usage' => 'cpan',
22169             'Scalar::Util' => 'cpan',
22170             'Socket' => 'cpan',
22171             'Sub::Util' => 'cpan',
22172             'Sys::Syslog' => 'cpan',
22173             'Sys::Syslog::Win32' => 'cpan',
22174             'TAP::Base' => 'cpan',
22175             'TAP::Formatter::Base' => 'cpan',
22176             'TAP::Formatter::Color' => 'cpan',
22177             'TAP::Formatter::Console'=> 'cpan',
22178             'TAP::Formatter::Console::ParallelSession'=> 'cpan',
22179             'TAP::Formatter::Console::Session'=> 'cpan',
22180             'TAP::Formatter::File' => 'cpan',
22181             'TAP::Formatter::File::Session'=> 'cpan',
22182             'TAP::Formatter::Session'=> 'cpan',
22183             'TAP::Harness' => 'cpan',
22184             'TAP::Harness::Env' => 'cpan',
22185             'TAP::Object' => 'cpan',
22186             'TAP::Parser' => 'cpan',
22187             'TAP::Parser::Aggregator'=> 'cpan',
22188             'TAP::Parser::Grammar' => 'cpan',
22189             'TAP::Parser::Iterator' => 'cpan',
22190             'TAP::Parser::Iterator::Array'=> 'cpan',
22191             'TAP::Parser::Iterator::Process'=> 'cpan',
22192             'TAP::Parser::Iterator::Stream'=> 'cpan',
22193             'TAP::Parser::IteratorFactory'=> 'cpan',
22194             'TAP::Parser::Multiplexer'=> 'cpan',
22195             'TAP::Parser::Result' => 'cpan',
22196             'TAP::Parser::Result::Bailout'=> 'cpan',
22197             'TAP::Parser::Result::Comment'=> 'cpan',
22198             'TAP::Parser::Result::Plan'=> 'cpan',
22199             'TAP::Parser::Result::Pragma'=> 'cpan',
22200             'TAP::Parser::Result::Test'=> 'cpan',
22201             'TAP::Parser::Result::Unknown'=> 'cpan',
22202             'TAP::Parser::Result::Version'=> 'cpan',
22203             'TAP::Parser::Result::YAML'=> 'cpan',
22204             'TAP::Parser::ResultFactory'=> 'cpan',
22205             'TAP::Parser::Scheduler'=> 'cpan',
22206             'TAP::Parser::Scheduler::Job'=> 'cpan',
22207             'TAP::Parser::Scheduler::Spinner'=> 'cpan',
22208             'TAP::Parser::Source' => 'cpan',
22209             'TAP::Parser::SourceHandler'=> 'cpan',
22210             'TAP::Parser::SourceHandler::Executable'=> 'cpan',
22211             'TAP::Parser::SourceHandler::File'=> 'cpan',
22212             'TAP::Parser::SourceHandler::Handle'=> 'cpan',
22213             'TAP::Parser::SourceHandler::Perl'=> 'cpan',
22214             'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
22215             'TAP::Parser::YAMLish::Reader'=> 'cpan',
22216             'TAP::Parser::YAMLish::Writer'=> 'cpan',
22217             'Term::ANSIColor' => 'cpan',
22218             'Term::Cap' => 'cpan',
22219             'Test2' => 'cpan',
22220             'Test2::API' => 'cpan',
22221             'Test2::API::Breakage' => 'cpan',
22222             'Test2::API::Context' => 'cpan',
22223             'Test2::API::Instance' => 'cpan',
22224             'Test2::API::InterceptResult'=> 'cpan',
22225             'Test2::API::InterceptResult::Event'=> 'cpan',
22226             'Test2::API::InterceptResult::Facet'=> 'cpan',
22227             'Test2::API::InterceptResult::Hub'=> 'cpan',
22228             'Test2::API::InterceptResult::Squasher'=> 'cpan',
22229             'Test2::API::Stack' => 'cpan',
22230             'Test2::Event' => 'cpan',
22231             'Test2::Event::Bail' => 'cpan',
22232             'Test2::Event::Diag' => 'cpan',
22233             'Test2::Event::Encoding'=> 'cpan',
22234             'Test2::Event::Exception'=> 'cpan',
22235             'Test2::Event::Fail' => 'cpan',
22236             'Test2::Event::Generic' => 'cpan',
22237             'Test2::Event::Note' => 'cpan',
22238             'Test2::Event::Ok' => 'cpan',
22239             'Test2::Event::Pass' => 'cpan',
22240             'Test2::Event::Plan' => 'cpan',
22241             'Test2::Event::Skip' => 'cpan',
22242             'Test2::Event::Subtest' => 'cpan',
22243             'Test2::Event::TAP::Version'=> 'cpan',
22244             'Test2::Event::V2' => 'cpan',
22245             'Test2::Event::Waiting' => 'cpan',
22246             'Test2::EventFacet' => 'cpan',
22247             'Test2::EventFacet::About'=> 'cpan',
22248             'Test2::EventFacet::Amnesty'=> 'cpan',
22249             'Test2::EventFacet::Assert'=> 'cpan',
22250             'Test2::EventFacet::Control'=> 'cpan',
22251             'Test2::EventFacet::Error'=> 'cpan',
22252             'Test2::EventFacet::Hub'=> 'cpan',
22253             'Test2::EventFacet::Info'=> 'cpan',
22254             'Test2::EventFacet::Info::Table'=> 'cpan',
22255             'Test2::EventFacet::Meta'=> 'cpan',
22256             'Test2::EventFacet::Parent'=> 'cpan',
22257             'Test2::EventFacet::Plan'=> 'cpan',
22258             'Test2::EventFacet::Render'=> 'cpan',
22259             'Test2::EventFacet::Trace'=> 'cpan',
22260             'Test2::Formatter' => 'cpan',
22261             'Test2::Formatter::TAP' => 'cpan',
22262             'Test2::Hub' => 'cpan',
22263             'Test2::Hub::Interceptor'=> 'cpan',
22264             'Test2::Hub::Interceptor::Terminator'=> 'cpan',
22265             'Test2::Hub::Subtest' => 'cpan',
22266             'Test2::IPC' => 'cpan',
22267             'Test2::IPC::Driver' => 'cpan',
22268             'Test2::IPC::Driver::Files'=> 'cpan',
22269             'Test2::Tools::Tiny' => 'cpan',
22270             'Test2::Util' => 'cpan',
22271             'Test2::Util::ExternalMeta'=> 'cpan',
22272             'Test2::Util::Facets2Legacy'=> 'cpan',
22273             'Test2::Util::HashBase' => 'cpan',
22274             'Test2::Util::Trace' => 'cpan',
22275             'Test::Builder' => 'cpan',
22276             'Test::Builder::Formatter'=> 'cpan',
22277             'Test::Builder::IO::Scalar'=> 'cpan',
22278             'Test::Builder::Module' => 'cpan',
22279             'Test::Builder::Tester' => 'cpan',
22280             'Test::Builder::Tester::Color'=> 'cpan',
22281             'Test::Builder::TodoDiag'=> 'cpan',
22282             'Test::Harness' => 'cpan',
22283             'Test::More' => 'cpan',
22284             'Test::Simple' => 'cpan',
22285             'Test::Tester' => 'cpan',
22286             'Test::Tester::Capture' => 'cpan',
22287             'Test::Tester::CaptureRunner'=> 'cpan',
22288             'Test::Tester::Delegate'=> 'cpan',
22289             'Test::use::ok' => 'cpan',
22290             'Text::Balanced' => 'cpan',
22291             'Text::ParseWords' => 'cpan',
22292             'Text::Tabs' => 'cpan',
22293             'Text::Wrap' => 'cpan',
22294             'Tie::RefHash' => 'cpan',
22295             'Time::Local' => 'cpan',
22296             'Time::Piece' => 'cpan',
22297             'Time::Seconds' => 'cpan',
22298             'Unicode::Collate' => 'cpan',
22299             'Unicode::Collate::CJK::Big5'=> 'cpan',
22300             'Unicode::Collate::CJK::GB2312'=> 'cpan',
22301             'Unicode::Collate::CJK::JISX0208'=> 'cpan',
22302             'Unicode::Collate::CJK::Korean'=> 'cpan',
22303             'Unicode::Collate::CJK::Pinyin'=> 'cpan',
22304             'Unicode::Collate::CJK::Stroke'=> 'cpan',
22305             'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
22306             'Unicode::Collate::Locale'=> 'cpan',
22307             'Win32' => 'cpan',
22308             'Win32API::File' => 'cpan',
22309             'autodie' => 'cpan',
22310             'autodie::Scope::Guard' => 'cpan',
22311             'autodie::Scope::GuardStack'=> 'cpan',
22312             'autodie::Util' => 'cpan',
22313             'autodie::exception' => 'cpan',
22314             'autodie::exception::system'=> 'cpan',
22315             'autodie::hints' => 'cpan',
22316             'autodie::skip' => 'cpan',
22317             'bigfloat' => 'cpan',
22318             'bigint' => 'cpan',
22319             'bignum' => 'cpan',
22320             'bigrat' => 'cpan',
22321             'encoding' => 'cpan',
22322             'experimental' => 'cpan',
22323             'ok' => 'cpan',
22324             'parent' => 'cpan',
22325             'perlfaq' => 'cpan',
22326             'stable' => 'cpan',
22327             'version' => 'cpan',
22328             'version::regex' => 'cpan',
22329             );
22330              
22331             %bug_tracker = (
22332             'App::Cpan' => undef,
22333             'App::Prove' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22334             'App::Prove::State' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22335             'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22336             'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22337             'Archive::Tar' => undef,
22338             'Archive::Tar::Constant'=> undef,
22339             'Archive::Tar::File' => undef,
22340             'CPAN' => undef,
22341             'CPAN::Author' => undef,
22342             'CPAN::Bundle' => undef,
22343             'CPAN::CacheMgr' => undef,
22344             'CPAN::Complete' => undef,
22345             'CPAN::Debug' => undef,
22346             'CPAN::DeferredCode' => undef,
22347             'CPAN::Distribution' => undef,
22348             'CPAN::Distroprefs' => undef,
22349             'CPAN::Distrostatus' => undef,
22350             'CPAN::Exception::RecursiveDependency'=> undef,
22351             'CPAN::Exception::blocked_urllist'=> undef,
22352             'CPAN::Exception::yaml_not_installed'=> undef,
22353             'CPAN::Exception::yaml_process_error'=> undef,
22354             'CPAN::FTP' => undef,
22355             'CPAN::FTP::netrc' => undef,
22356             'CPAN::FirstTime' => undef,
22357             'CPAN::HTTP::Client' => undef,
22358             'CPAN::HTTP::Credentials'=> undef,
22359             'CPAN::HandleConfig' => undef,
22360             'CPAN::Index' => undef,
22361             'CPAN::InfoObj' => undef,
22362             'CPAN::Kwalify' => undef,
22363             'CPAN::LWP::UserAgent' => undef,
22364             'CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22365             'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22366             'CPAN::Meta::Feature' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22367             'CPAN::Meta::History' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22368             'CPAN::Meta::Merge' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22369             'CPAN::Meta::Prereqs' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22370             'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
22371             'CPAN::Meta::Requirements::Range'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
22372             'CPAN::Meta::Spec' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22373             'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22374             'CPAN::Meta::YAML' => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
22375             'CPAN::Mirrors' => undef,
22376             'CPAN::Module' => undef,
22377             'CPAN::Nox' => undef,
22378             'CPAN::Plugin' => undef,
22379             'CPAN::Plugin::Specfile'=> undef,
22380             'CPAN::Prompt' => undef,
22381             'CPAN::Queue' => undef,
22382             'CPAN::Shell' => undef,
22383             'CPAN::Tarzip' => undef,
22384             'CPAN::URL' => undef,
22385             'CPAN::Version' => undef,
22386             'Compress::Raw::Bzip2' => 'https://github.com/pmqs/Compress-Raw-Bzip2/issues',
22387             'Compress::Raw::Zlib' => 'https://github.com/pmqs/Compress-Raw-Zlib/issues',
22388             'Compress::Zlib' => 'https://github.com/pmqs/IO-Compress/issues',
22389             'Config::Perl::V' => 'https://github.com/Tux/Config-Perl-V/issues',
22390             'DB_File' => 'https://github.com/pmqs/DB_File/issues',
22391             'Digest' => 'https://github.com/Dual-Life/digest/issues',
22392             'Digest::MD5' => 'https://github.com/Dual-Life/digest-md5/issues',
22393             'Digest::SHA' => undef,
22394             'Digest::base' => 'https://github.com/Dual-Life/digest/issues',
22395             'Digest::file' => 'https://github.com/Dual-Life/digest/issues',
22396             'Encode' => undef,
22397             'Encode::Alias' => undef,
22398             'Encode::Byte' => undef,
22399             'Encode::CJKConstants' => undef,
22400             'Encode::CN' => undef,
22401             'Encode::CN::HZ' => undef,
22402             'Encode::Config' => undef,
22403             'Encode::EBCDIC' => undef,
22404             'Encode::Encoder' => undef,
22405             'Encode::Encoding' => undef,
22406             'Encode::GSM0338' => undef,
22407             'Encode::Guess' => undef,
22408             'Encode::JP' => undef,
22409             'Encode::JP::H2Z' => undef,
22410             'Encode::JP::JIS7' => undef,
22411             'Encode::KR' => undef,
22412             'Encode::KR::2022_KR' => undef,
22413             'Encode::MIME::Header' => undef,
22414             'Encode::MIME::Header::ISO_2022_JP'=> undef,
22415             'Encode::MIME::Name' => undef,
22416             'Encode::Symbol' => undef,
22417             'Encode::TW' => undef,
22418             'Encode::Unicode' => undef,
22419             'Encode::Unicode::UTF7' => undef,
22420             'ExtUtils::Command' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22421             'ExtUtils::Command::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22422             'ExtUtils::Constant' => undef,
22423             'ExtUtils::Constant::Base'=> undef,
22424             'ExtUtils::Constant::ProxySubs'=> undef,
22425             'ExtUtils::Constant::Utils'=> undef,
22426             'ExtUtils::Constant::XS'=> undef,
22427             'ExtUtils::Install' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
22428             'ExtUtils::Installed' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
22429             'ExtUtils::Liblist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22430             'ExtUtils::Liblist::Kid'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22431             'ExtUtils::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22432             'ExtUtils::MM_AIX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22433             'ExtUtils::MM_Any' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22434             'ExtUtils::MM_BeOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22435             'ExtUtils::MM_Cygwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22436             'ExtUtils::MM_DOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22437             'ExtUtils::MM_Darwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22438             'ExtUtils::MM_MacOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22439             'ExtUtils::MM_NW5' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22440             'ExtUtils::MM_OS2' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22441             'ExtUtils::MM_OS390' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22442             'ExtUtils::MM_QNX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22443             'ExtUtils::MM_UWIN' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22444             'ExtUtils::MM_Unix' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22445             'ExtUtils::MM_VMS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22446             'ExtUtils::MM_VOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22447             'ExtUtils::MM_Win32' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22448             'ExtUtils::MM_Win95' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22449             'ExtUtils::MY' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22450             'ExtUtils::MakeMaker' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22451             'ExtUtils::MakeMaker::Config'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22452             'ExtUtils::MakeMaker::Locale'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22453             'ExtUtils::MakeMaker::version'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22454             'ExtUtils::MakeMaker::version::regex'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22455             'ExtUtils::Manifest' => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
22456             'ExtUtils::Mkbootstrap' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22457             'ExtUtils::Mksymlists' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22458             'ExtUtils::PL2Bat' => 'https://github.com/Perl-Toolchain-Gang/extutils-pl2bat/issues',
22459             'ExtUtils::Packlist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
22460             'ExtUtils::testlib' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22461             'Fatal' => 'https://github.com/pjf/autodie/issues',
22462             'File::Fetch' => undef,
22463             'File::GlobMapper' => 'https://github.com/pmqs/IO-Compress/issues',
22464             'File::Path' => undef,
22465             'File::Temp' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
22466             'Filter::Util::Call' => undef,
22467             'Getopt::Long' => undef,
22468             'HTTP::Tiny' => 'https://github.com/Perl-Toolchain-Gang/HTTP-Tiny/issues',
22469             'IO::Compress::Adapter::Bzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
22470             'IO::Compress::Adapter::Deflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22471             'IO::Compress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
22472             'IO::Compress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
22473             'IO::Compress::Base::Common'=> 'https://github.com/pmqs/IO-Compress/issues',
22474             'IO::Compress::Bzip2' => 'https://github.com/pmqs/IO-Compress/issues',
22475             'IO::Compress::Deflate' => 'https://github.com/pmqs/IO-Compress/issues',
22476             'IO::Compress::Gzip' => 'https://github.com/pmqs/IO-Compress/issues',
22477             'IO::Compress::Gzip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
22478             'IO::Compress::RawDeflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22479             'IO::Compress::Zip' => 'https://github.com/pmqs/IO-Compress/issues',
22480             'IO::Compress::Zip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
22481             'IO::Compress::Zlib::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
22482             'IO::Compress::Zlib::Extra'=> 'https://github.com/pmqs/IO-Compress/issues',
22483             'IO::Socket::IP' => undef,
22484             'IO::Uncompress::Adapter::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
22485             'IO::Uncompress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
22486             'IO::Uncompress::Adapter::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22487             'IO::Uncompress::AnyInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22488             'IO::Uncompress::AnyUncompress'=> 'https://github.com/pmqs/IO-Compress/issues',
22489             'IO::Uncompress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
22490             'IO::Uncompress::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
22491             'IO::Uncompress::Gunzip'=> 'https://github.com/pmqs/IO-Compress/issues',
22492             'IO::Uncompress::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22493             'IO::Uncompress::RawInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22494             'IO::Uncompress::Unzip' => 'https://github.com/pmqs/IO-Compress/issues',
22495             'IO::Zlib' => 'https://github.com/tomhughes/IO-Zlib/issues',
22496             'IPC::Cmd' => undef,
22497             'IPC::Msg' => undef,
22498             'IPC::Semaphore' => undef,
22499             'IPC::SharedMem' => undef,
22500             'IPC::SysV' => undef,
22501             'JSON::PP' => 'https://github.com/makamaka/JSON-PP/issues',
22502             'JSON::PP::Boolean' => 'https://github.com/makamaka/JSON-PP/issues',
22503             'List::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
22504             'List::Util::XS' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
22505             'Locale::Maketext::Simple'=> undef,
22506             'MIME::Base64' => 'https://github.com/Dual-Life/mime-base64/issues',
22507             'MIME::QuotedPrint' => 'https://github.com/Dual-Life/mime-base64/issues',
22508             'Math::BigFloat' => undef,
22509             'Math::BigFloat::Trace' => undef,
22510             'Math::BigInt' => undef,
22511             'Math::BigInt::Calc' => undef,
22512             'Math::BigInt::FastCalc'=> undef,
22513             'Math::BigInt::Lib' => undef,
22514             'Math::BigInt::Trace' => undef,
22515             'Math::BigRat' => undef,
22516             'Math::BigRat::Trace' => undef,
22517             'Memoize' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22518             'Memoize::AnyDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22519             'Memoize::Expire' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22520             'Memoize::NDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22521             'Memoize::SDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22522             'Memoize::Storable' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22523             'Module::Load' => undef,
22524             'Module::Load::Conditional'=> undef,
22525             'Module::Loaded' => undef,
22526             'Module::Metadata' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
22527             'NEXT' => undef,
22528             'Net::Cmd' => undef,
22529             'Net::Config' => undef,
22530             'Net::Domain' => undef,
22531             'Net::FTP' => undef,
22532             'Net::FTP::A' => undef,
22533             'Net::FTP::E' => undef,
22534             'Net::FTP::I' => undef,
22535             'Net::FTP::L' => undef,
22536             'Net::FTP::dataconn' => undef,
22537             'Net::NNTP' => undef,
22538             'Net::Netrc' => undef,
22539             'Net::POP3' => undef,
22540             'Net::SMTP' => undef,
22541             'Net::Time' => undef,
22542             'Params::Check' => undef,
22543             'Parse::CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22544             'Perl::OSType' => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
22545             'PerlIO::via::QuotedPrint'=> undef,
22546             'Pod::Checker' => undef,
22547             'Pod::Escapes' => undef,
22548             'Pod::Man' => 'https://github.com/rra/podlators/issues',
22549             'Pod::ParseLink' => 'https://github.com/rra/podlators/issues',
22550             'Pod::Perldoc' => undef,
22551             'Pod::Perldoc::BaseTo' => undef,
22552             'Pod::Perldoc::GetOptsOO'=> undef,
22553             'Pod::Perldoc::ToANSI' => undef,
22554             'Pod::Perldoc::ToChecker'=> undef,
22555             'Pod::Perldoc::ToMan' => undef,
22556             'Pod::Perldoc::ToNroff' => undef,
22557             'Pod::Perldoc::ToPod' => undef,
22558             'Pod::Perldoc::ToRtf' => undef,
22559             'Pod::Perldoc::ToTerm' => undef,
22560             'Pod::Perldoc::ToText' => undef,
22561             'Pod::Perldoc::ToTk' => undef,
22562             'Pod::Perldoc::ToXml' => undef,
22563             'Pod::Simple' => 'https://github.com/perl-pod/pod-simple/issues',
22564             'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
22565             'Pod::Simple::Checker' => 'https://github.com/perl-pod/pod-simple/issues',
22566             'Pod::Simple::Debug' => 'https://github.com/perl-pod/pod-simple/issues',
22567             'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
22568             'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
22569             'Pod::Simple::HTML' => 'https://github.com/perl-pod/pod-simple/issues',
22570             'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
22571             'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
22572             'Pod::Simple::JustPod' => 'https://github.com/perl-pod/pod-simple/issues',
22573             'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
22574             'Pod::Simple::Methody' => 'https://github.com/perl-pod/pod-simple/issues',
22575             'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
22576             'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
22577             'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
22578             'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
22579             'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
22580             'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
22581             'Pod::Simple::RTF' => 'https://github.com/perl-pod/pod-simple/issues',
22582             'Pod::Simple::Search' => 'https://github.com/perl-pod/pod-simple/issues',
22583             'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
22584             'Pod::Simple::Text' => 'https://github.com/perl-pod/pod-simple/issues',
22585             'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
22586             'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
22587             'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
22588             'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
22589             'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
22590             'Pod::Simple::XHTML' => 'https://github.com/perl-pod/pod-simple/issues',
22591             'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
22592             'Pod::Text' => 'https://github.com/rra/podlators/issues',
22593             'Pod::Text::Color' => 'https://github.com/rra/podlators/issues',
22594             'Pod::Text::Overstrike' => 'https://github.com/rra/podlators/issues',
22595             'Pod::Text::Termcap' => 'https://github.com/rra/podlators/issues',
22596             'Pod::Usage' => 'https://github.com/Dual-Life/Pod-Usage/issues',
22597             'Scalar::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
22598             'Socket' => undef,
22599             'Sub::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
22600             'Sys::Syslog' => undef,
22601             'Sys::Syslog::Win32' => undef,
22602             'TAP::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22603             'TAP::Formatter::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22604             'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22605             'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22606             'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22607             'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22608             'TAP::Formatter::File' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22609             'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22610             'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22611             'TAP::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22612             'TAP::Harness::Env' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22613             'TAP::Object' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22614             'TAP::Parser' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22615             'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22616             'TAP::Parser::Grammar' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22617             'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22618             'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22619             'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22620             'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22621             'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22622             'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22623             'TAP::Parser::Result' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22624             'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22625             'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22626             'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22627             'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22628             'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22629             'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22630             'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22631             'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22632             'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22633             'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22634             'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22635             'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22636             'TAP::Parser::Source' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22637             'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22638             'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22639             'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22640             'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22641             'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22642             'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22643             'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22644             'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22645             'Term::ANSIColor' => 'https://rt.cpan.org/Dist/Display.html?Name=Term-ANSIColor',
22646             'Term::Cap' => undef,
22647             'Test2' => 'http://github.com/Test-More/test-more/issues',
22648             'Test2::API' => 'http://github.com/Test-More/test-more/issues',
22649             'Test2::API::Breakage' => 'http://github.com/Test-More/test-more/issues',
22650             'Test2::API::Context' => 'http://github.com/Test-More/test-more/issues',
22651             'Test2::API::Instance' => 'http://github.com/Test-More/test-more/issues',
22652             'Test2::API::InterceptResult'=> 'http://github.com/Test-More/test-more/issues',
22653             'Test2::API::InterceptResult::Event'=> 'http://github.com/Test-More/test-more/issues',
22654             'Test2::API::InterceptResult::Facet'=> 'http://github.com/Test-More/test-more/issues',
22655             'Test2::API::InterceptResult::Hub'=> 'http://github.com/Test-More/test-more/issues',
22656             'Test2::API::InterceptResult::Squasher'=> 'http://github.com/Test-More/test-more/issues',
22657             'Test2::API::Stack' => 'http://github.com/Test-More/test-more/issues',
22658             'Test2::Event' => 'http://github.com/Test-More/test-more/issues',
22659             'Test2::Event::Bail' => 'http://github.com/Test-More/test-more/issues',
22660             'Test2::Event::Diag' => 'http://github.com/Test-More/test-more/issues',
22661             'Test2::Event::Encoding'=> 'http://github.com/Test-More/test-more/issues',
22662             'Test2::Event::Exception'=> 'http://github.com/Test-More/test-more/issues',
22663             'Test2::Event::Fail' => 'http://github.com/Test-More/test-more/issues',
22664             'Test2::Event::Generic' => 'http://github.com/Test-More/test-more/issues',
22665             'Test2::Event::Note' => 'http://github.com/Test-More/test-more/issues',
22666             'Test2::Event::Ok' => 'http://github.com/Test-More/test-more/issues',
22667             'Test2::Event::Pass' => 'http://github.com/Test-More/test-more/issues',
22668             'Test2::Event::Plan' => 'http://github.com/Test-More/test-more/issues',
22669             'Test2::Event::Skip' => 'http://github.com/Test-More/test-more/issues',
22670             'Test2::Event::Subtest' => 'http://github.com/Test-More/test-more/issues',
22671             'Test2::Event::TAP::Version'=> 'http://github.com/Test-More/test-more/issues',
22672             'Test2::Event::V2' => 'http://github.com/Test-More/test-more/issues',
22673             'Test2::Event::Waiting' => 'http://github.com/Test-More/test-more/issues',
22674             'Test2::EventFacet' => 'http://github.com/Test-More/test-more/issues',
22675             'Test2::EventFacet::About'=> 'http://github.com/Test-More/test-more/issues',
22676             'Test2::EventFacet::Amnesty'=> 'http://github.com/Test-More/test-more/issues',
22677             'Test2::EventFacet::Assert'=> 'http://github.com/Test-More/test-more/issues',
22678             'Test2::EventFacet::Control'=> 'http://github.com/Test-More/test-more/issues',
22679             'Test2::EventFacet::Error'=> 'http://github.com/Test-More/test-more/issues',
22680             'Test2::EventFacet::Hub'=> 'http://github.com/Test-More/test-more/issues',
22681             'Test2::EventFacet::Info'=> 'http://github.com/Test-More/test-more/issues',
22682             'Test2::EventFacet::Info::Table'=> 'http://github.com/Test-More/test-more/issues',
22683             'Test2::EventFacet::Meta'=> 'http://github.com/Test-More/test-more/issues',
22684             'Test2::EventFacet::Parent'=> 'http://github.com/Test-More/test-more/issues',
22685             'Test2::EventFacet::Plan'=> 'http://github.com/Test-More/test-more/issues',
22686             'Test2::EventFacet::Render'=> 'http://github.com/Test-More/test-more/issues',
22687             'Test2::EventFacet::Trace'=> 'http://github.com/Test-More/test-more/issues',
22688             'Test2::Formatter' => 'http://github.com/Test-More/test-more/issues',
22689             'Test2::Formatter::TAP' => 'http://github.com/Test-More/test-more/issues',
22690             'Test2::Hub' => 'http://github.com/Test-More/test-more/issues',
22691             'Test2::Hub::Interceptor'=> 'http://github.com/Test-More/test-more/issues',
22692             'Test2::Hub::Interceptor::Terminator'=> 'http://github.com/Test-More/test-more/issues',
22693             'Test2::Hub::Subtest' => 'http://github.com/Test-More/test-more/issues',
22694             'Test2::IPC' => 'http://github.com/Test-More/test-more/issues',
22695             'Test2::IPC::Driver' => 'http://github.com/Test-More/test-more/issues',
22696             'Test2::IPC::Driver::Files'=> 'http://github.com/Test-More/test-more/issues',
22697             'Test2::Tools::Tiny' => 'http://github.com/Test-More/test-more/issues',
22698             'Test2::Util' => 'http://github.com/Test-More/test-more/issues',
22699             'Test2::Util::ExternalMeta'=> 'http://github.com/Test-More/test-more/issues',
22700             'Test2::Util::Facets2Legacy'=> 'http://github.com/Test-More/test-more/issues',
22701             'Test2::Util::HashBase' => 'http://github.com/Test-More/test-more/issues',
22702             'Test2::Util::Trace' => 'http://github.com/Test-More/test-more/issues',
22703             'Test::Builder' => 'http://github.com/Test-More/test-more/issues',
22704             'Test::Builder::Formatter'=> 'http://github.com/Test-More/test-more/issues',
22705             'Test::Builder::IO::Scalar'=> 'http://github.com/Test-More/test-more/issues',
22706             'Test::Builder::Module' => 'http://github.com/Test-More/test-more/issues',
22707             'Test::Builder::Tester' => 'http://github.com/Test-More/test-more/issues',
22708             'Test::Builder::Tester::Color'=> 'http://github.com/Test-More/test-more/issues',
22709             'Test::Builder::TodoDiag'=> 'http://github.com/Test-More/test-more/issues',
22710             'Test::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22711             'Test::More' => 'http://github.com/Test-More/test-more/issues',
22712             'Test::Simple' => 'http://github.com/Test-More/test-more/issues',
22713             'Test::Tester' => 'http://github.com/Test-More/test-more/issues',
22714             'Test::Tester::Capture' => 'http://github.com/Test-More/test-more/issues',
22715             'Test::Tester::CaptureRunner'=> 'http://github.com/Test-More/test-more/issues',
22716             'Test::Tester::Delegate'=> 'http://github.com/Test-More/test-more/issues',
22717             'Test::use::ok' => 'http://github.com/Test-More/test-more/issues',
22718             'Text::Balanced' => undef,
22719             'Text::ParseWords' => undef,
22720             'Text::Tabs' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
22721             'Text::Wrap' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
22722             'Tie::RefHash' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Tie-RefHash',
22723             'Time::Local' => 'https://github.com/houseabsolute/Time-Local/issues',
22724             'Time::Piece' => undef,
22725             'Time::Seconds' => undef,
22726             'Unicode::Collate' => undef,
22727             'Unicode::Collate::CJK::Big5'=> undef,
22728             'Unicode::Collate::CJK::GB2312'=> undef,
22729             'Unicode::Collate::CJK::JISX0208'=> undef,
22730             'Unicode::Collate::CJK::Korean'=> undef,
22731             'Unicode::Collate::CJK::Pinyin'=> undef,
22732             'Unicode::Collate::CJK::Stroke'=> undef,
22733             'Unicode::Collate::CJK::Zhuyin'=> undef,
22734             'Unicode::Collate::Locale'=> undef,
22735             'Win32' => 'https://github.com/perl-libwin32/win32/issues',
22736             'Win32API::File' => undef,
22737             'autodie' => 'https://github.com/pjf/autodie/issues',
22738             'autodie::Scope::Guard' => 'https://github.com/pjf/autodie/issues',
22739             'autodie::Scope::GuardStack'=> 'https://github.com/pjf/autodie/issues',
22740             'autodie::Util' => 'https://github.com/pjf/autodie/issues',
22741             'autodie::exception' => 'https://github.com/pjf/autodie/issues',
22742             'autodie::exception::system'=> 'https://github.com/pjf/autodie/issues',
22743             'autodie::hints' => 'https://github.com/pjf/autodie/issues',
22744             'autodie::skip' => 'https://github.com/pjf/autodie/issues',
22745             'bigfloat' => undef,
22746             'bigint' => undef,
22747             'bignum' => undef,
22748             'bigrat' => undef,
22749             'encoding' => undef,
22750             'experimental' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
22751             'ok' => 'http://github.com/Test-More/test-more/issues',
22752             'parent' => undef,
22753             'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues',
22754             'stable' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
22755             'version' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
22756             'version::regex' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
22757             );
22758              
22759             # Create aliases with trailing zeros for $] use
22760              
22761             $released{'5.000'} = $released{5};
22762             $version{'5.000'} = $version{5};
22763              
22764             _create_aliases(\%delta);
22765             _create_aliases(\%released);
22766             _create_aliases(\%version);
22767             _create_aliases(\%deprecated);
22768              
22769             sub _create_aliases {
22770 20     20   50 my ($hash) = @_;
22771              
22772 20         615 for my $version (keys %$hash) {
22773 4675 100       10114 next unless $version >= 5.006;
22774              
22775 4530         11635 my $padded = sprintf "%0.6f", $version;
22776              
22777             # If the version in string form isn't the same as the numeric version,
22778             # alias it.
22779 4530 100 66     10770 if ($padded ne $version && $version == $padded) {
22780 820         2385 $hash->{$padded} = $hash->{$version};
22781             }
22782             }
22783             }
22784              
22785             1;
22786             __END__