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   18275 use strict;
  5         24  
  5         340  
3              
4             our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
5              
6 5     5   2352 use version;
  5         10503  
  5         30  
7             our $VERSION = '5.20230920';
8              
9             sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
10 42     42   87 sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
  42         77  
  42         356  
11              
12             sub _undelta {
13 11     11   48 my ($delta) = @_;
14 11         59 my (%expanded, $delta_from, $base, $changed, $removed);
15 11         1263 for my $v (sort keys %$delta) {
16 2518         4021 ($delta_from, $changed, $removed) = @{$delta->{$v}}{qw( delta_from changed removed )};
  2518         7530  
17 2518 100       9743 $base = $delta_from ? $expanded{$delta_from} : {};
18 2518 100       69435 my %full = ( %$base, %{$changed || {}} );
  2518         336860  
19 2518         40547 delete @full{ keys %$removed };
20 2518         8281 $expanded{$v} = \%full;
21             }
22 11         2401 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 7296 0   7296   15108 : $released{$a} cmp $released{$b} )
    50          
    50          
33             }
34              
35             my $dumpinc = 0;
36             sub import {
37 4     4   64 my $self = shift;
38 4   50     174 my $what = shift || '';
39 4 50       4720 if ($what eq 'dumpinc') {
40 0         0 $dumpinc = 1;
41             }
42             }
43              
44             END {
45 5 50   5   1339 print "---INC---\n", join "\n" => keys %INC
46             if $dumpinc;
47             }
48              
49              
50             sub first_release_raw {
51 91 100 100 91 0 309 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
52 91         136 my $module = shift;
53 91         165 my $version = shift;
54              
55             my @perls = $version
56             ? grep { defined $version{$_}{ $module } &&
57 1430 100       6185 $version{$_}{ $module } ge $version } keys %version
58 91 100       3827 : grep { exists $version{$_}{ $module } } keys %version;
  24596         46219  
59              
60 91         3196 return @perls;
61             }
62              
63             sub first_release_by_date {
64 4     4 1 2075 my @perls = &first_release_raw;
65 4 50       19 return unless @perls;
66 4         34 return (sort _released_order @perls)[0];
67             }
68              
69             sub first_release {
70 53     53 1 96 my @perls = &first_release_raw;
71 53 100       186 return unless @perls;
72 49         291 return (sort { $a cmp $b } @perls)[0];
  72362         89754  
73             }
74              
75             sub find_modules {
76 5 100   5 1 111 shift if _looks_like_invocant $_[0];
77 5         12 my $regex = shift;
78 5 100       330 my @perls = @_ ? @_ : keys %version;
79              
80 5         12 my %mods;
81 5         12 foreach (@perls) {
82 861         1467 while (my ($k, $v) = each %{$version{$_}}) {
  518800         1365702  
83 517939 100       1350042 $mods{$k}++ if $k =~ $regex;
84             }
85             }
86 5         215 return sort keys %mods
87             }
88              
89             sub find_version {
90 3 50   3 1 504 shift if _looks_like_invocant $_[0];
91 3         8 my $v = shift;
92 3 100 66     32 return $version{$v} if defined $v and defined $version{$v};
93 1         6 return;
94             }
95              
96             sub is_deprecated {
97 3 50 66 3 1 2742 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      33        
98 3         7 my $module = shift;
99 3   66     32 my $perl_version = shift || $];
100 3 50 33     49 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 11 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      33        
106 2 50       6 my $module = shift or return;
107 2         55 my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
  502         887  
108 2 100       25 return unless @perls;
109 1         9 require List::Util;
110 1         10 return List::Util::minstr(@perls);
111             }
112              
113             sub removed_from {
114 34     34 1 76 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 108 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
125 34         72 my $mod = shift;
126 34 50       69 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
  42901         54461  
127 34         257 my $last = pop @perls;
128 34         1274 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
  9724         18198  
  67440         83758  
129 34         833 return @removed;
130             }
131              
132             sub changes_between {
133 0 0   0 1 0 shift if _looks_like_invocant $_[0];
134 0         0 my $left_ver = shift;
135 0         0 my $right_ver = shift;
136              
137 0   0     0 my $left = $version{ $left_ver } || {};
138 0   0     0 my $right = $version{ $right_ver } || {};
139              
140 0         0 my %uniq = (%$left, %$right);
141              
142 0         0 my %changes;
143 0         0 for my $lib (keys %uniq) {
144             my $lhs = exists $left->{ $lib }
145 0 0       0 ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)')
    0          
146             : '(absent)';
147             my $rhs = exists $right->{ $lib }
148 0 0       0 ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)')
    0          
149             : '(absent)';
150              
151 0 0       0 next if $lhs eq $rhs;
152              
153             my $change = {
154             (exists $left->{$lib} ? (left => $left->{$lib}) : ()),
155 0 0       0 (exists $right->{$lib} ? (right => $right->{$lib}) : ()),
    0          
156             };
157              
158 0         0 $changes{$lib} = $change;
159             }
160              
161 0         0 return %changes;
162             }
163              
164             # When things escaped.
165             # NB. If you put version numbers with trailing zeroes here, you
166             # should also add an alias for the numerical ($]) version; see
167             # just before the __END__ of this module.
168             %released = (
169             5.000 => '1994-10-17',
170             5.001 => '1995-03-14',
171             5.002 => '1996-02-29',
172             5.00307 => '1996-10-10',
173             5.004 => '1997-05-15',
174             5.005 => '1998-07-22',
175             5.00503 => '1999-03-28',
176             5.00405 => '1999-04-29',
177             5.006 => '2000-03-22',
178             5.006001 => '2001-04-08',
179             5.007003 => '2002-03-05',
180             5.008 => '2002-07-19',
181             5.008001 => '2003-09-25',
182             5.009 => '2003-10-27',
183             5.008002 => '2003-11-05',
184             5.006002 => '2003-11-15',
185             5.008003 => '2004-01-14',
186             5.00504 => '2004-02-23',
187             5.009001 => '2004-03-16',
188             5.008004 => '2004-04-21',
189             5.008005 => '2004-07-19',
190             5.008006 => '2004-11-27',
191             5.009002 => '2005-04-01',
192             5.008007 => '2005-05-30',
193             5.009003 => '2006-01-28',
194             5.008008 => '2006-01-31',
195             5.009004 => '2006-08-15',
196             5.009005 => '2007-07-07',
197             5.010000 => '2007-12-18',
198             5.008009 => '2008-12-14',
199             5.010001 => '2009-08-22',
200             5.011000 => '2009-10-02',
201             5.011001 => '2009-10-20',
202             5.011002 => '2009-11-20',
203             5.011003 => '2009-12-20',
204             5.011004 => '2010-01-20',
205             5.011005 => '2010-02-20',
206             5.012000 => '2010-04-12',
207             5.013000 => '2010-04-20',
208             5.012001 => '2010-05-16',
209             5.013001 => '2010-05-20',
210             5.013002 => '2010-06-22',
211             5.013003 => '2010-07-20',
212             5.013004 => '2010-08-20',
213             5.012002 => '2010-09-06',
214             5.013005 => '2010-09-19',
215             5.013006 => '2010-10-20',
216             5.013007 => '2010-11-20',
217             5.013008 => '2010-12-20',
218             5.012003 => '2011-01-21',
219             5.013009 => '2011-01-20',
220             5.013010 => '2011-02-20',
221             5.013011 => '2011-03-20',
222             5.014000 => '2011-05-14',
223             5.012004 => '2011-06-20',
224             5.012005 => '2012-11-10',
225             5.014001 => '2011-06-16',
226             5.015000 => '2011-06-20',
227             5.015001 => '2011-07-20',
228             5.015002 => '2011-08-20',
229             5.014002 => '2011-09-26',
230             5.015003 => '2011-09-20',
231             5.015004 => '2011-10-20',
232             5.015005 => '2011-11-20',
233             5.015006 => '2011-12-20',
234             5.015007 => '2012-01-20',
235             5.015008 => '2012-02-20',
236             5.015009 => '2012-03-20',
237             5.016000 => '2012-05-20',
238             5.016001 => '2012-08-08',
239             5.016002 => '2012-11-01',
240             5.017000 => '2012-05-26',
241             5.017001 => '2012-06-20',
242             5.017002 => '2012-07-20',
243             5.017003 => '2012-08-20',
244             5.017004 => '2012-09-20',
245             5.014003 => '2012-10-12',
246             5.017005 => '2012-10-20',
247             5.017006 => '2012-11-20',
248             5.017007 => '2012-12-18',
249             5.017008 => '2013-01-20',
250             5.017009 => '2013-02-20',
251             5.014004 => '2013-03-10',
252             5.016003 => '2013-03-11',
253             5.017010 => '2013-03-21',
254             5.017011 => '2013-04-20',
255             5.018000 => '2013-05-18',
256             5.019000 => '2013-05-20',
257             5.019001 => '2013-06-21',
258             5.019002 => '2013-07-22',
259             5.018001 => '2013-08-12',
260             5.019003 => '2013-08-20',
261             5.019004 => '2013-09-20',
262             5.019005 => '2013-10-20',
263             5.019006 => '2013-11-20',
264             5.019007 => '2013-12-20',
265             5.018002 => '2014-01-06',
266             5.018003 => '2014-10-01',
267             5.018004 => '2014-10-01',
268             5.019008 => '2014-01-20',
269             5.019009 => '2014-02-20',
270             5.01901 => '2014-03-20',
271             5.019011 => '2014-04-20',
272             5.020000 => '2014-05-27',
273             5.021000 => '2014-05-27',
274             5.021001 => '2014-06-20',
275             5.021002 => '2014-07-20',
276             5.021003 => '2014-08-20',
277             5.020001 => '2014-09-14',
278             5.021004 => '2014-09-20',
279             5.021005 => '2014-10-20',
280             5.021006 => '2014-11-20',
281             5.021007 => '2014-12-20',
282             5.021008 => '2015-01-20',
283             5.020002 => '2015-02-14',
284             5.021009 => '2015-02-21',
285             5.021010 => '2015-03-20',
286             5.021011 => '2015-04-20',
287             5.022000 => '2015-06-01',
288             5.023000 => '2015-06-20',
289             5.023001 => '2015-07-20',
290             5.023002 => '2015-08-20',
291             5.020003 => '2015-09-12',
292             5.023003 => '2015-09-20',
293             5.023004 => '2015-10-20',
294             5.023005 => '2015-11-20',
295             5.022001 => '2015-12-13',
296             5.023006 => '2015-12-21',
297             5.023007 => '2016-01-20',
298             5.023008 => '2016-02-20',
299             5.023009 => '2016-03-20',
300             5.022002 => '2016-04-29',
301             5.024000 => '2016-05-09',
302             5.025000 => '2016-05-09',
303             5.025001 => '2016-05-20',
304             5.025002 => '2016-06-20',
305             5.025003 => '2016-07-20',
306             5.025004 => '2016-08-20',
307             5.025005 => '2016-09-20',
308             5.025006 => '2016-10-20',
309             5.025007 => '2016-11-20',
310             5.025008 => '2016-12-20',
311             5.022003 => '2017-01-14',
312             5.024001 => '2017-01-14',
313             5.025009 => '2017-01-20',
314             5.025010 => '2017-02-20',
315             5.025011 => '2017-03-20',
316             5.025012 => '2017-04-20',
317             5.026000 => '2017-05-30',
318             5.027000 => '2017-05-31',
319             5.027001 => '2017-06-20',
320             5.022004 => '2017-07-15',
321             5.024002 => '2017-07-15',
322             5.027002 => '2017-07-20',
323             5.027003 => '2017-08-21',
324             5.027004 => '2017-09-20',
325             5.024003 => '2017-09-22',
326             5.026001 => '2017-09-22',
327             5.027005 => '2017-10-20',
328             5.027006 => '2017-11-20',
329             5.027007 => '2017-12-20',
330             5.027008 => '2018-01-20',
331             5.027009 => '2018-02-20',
332             5.027010 => '2018-03-20',
333             5.024004 => '2018-04-14',
334             5.026002 => '2018-04-14',
335             5.027011 => '2018-04-20',
336             5.028000 => '2018-06-22',
337             5.029000 => '2018-06-26',
338             5.029001 => '2018-07-20',
339             5.029002 => '2018-08-20',
340             5.029003 => '2018-09-20',
341             5.029004 => '2018-10-20',
342             5.029005 => '2018-11-20',
343             5.026003 => '2018-11-29',
344             5.028001 => '2018-11-29',
345             5.029006 => '2018-12-18',
346             5.029007 => '2019-01-20',
347             5.029008 => '2019-02-20',
348             5.029009 => '2019-03-20',
349             5.028002 => '2019-04-19',
350             5.029010 => '2019-04-20',
351             5.030000 => '2019-05-22',
352             5.031000 => '2019-05-24',
353             5.031001 => '2019-06-20',
354             5.031002 => '2019-07-20',
355             5.031003 => '2019-08-20',
356             5.031004 => '2019-09-20',
357             5.031005 => '2019-10-20',
358             5.030001 => '2019-11-10',
359             5.031006 => '2019-11-20',
360             5.031007 => '2019-12-20',
361             5.031008 => '2020-01-20',
362             5.031009 => '2020-02-20',
363             5.030002 => '2020-03-14',
364             5.031010 => '2020-03-20',
365             5.031011 => '2020-04-28',
366             5.028003 => '2020-06-01',
367             5.030003 => '2020-06-01',
368             5.032000 => '2020-06-20',
369             5.033000 => '2020-07-17',
370             5.033001 => '2020-08-20',
371             5.033002 => '2020-09-20',
372             5.033003 => '2020-10-20',
373             5.033004 => '2020-11-20',
374             5.033005 => '2020-12-20',
375             5.033006 => '2021-01-20',
376             5.032001 => '2021-01-23',
377             5.033007 => '2021-02-20',
378             5.033008 => '2021-03-20',
379             5.033009 => '2021-04-20',
380             5.034000 => '2021-05-20',
381             5.035000 => '2021-05-21',
382             5.035001 => '2021-06-20',
383             5.035002 => '2021-07-23',
384             5.035003 => '2021-08-20',
385             5.035004 => '2021-09-20',
386             5.035005 => '2021-10-21',
387             5.035006 => '2021-11-20',
388             5.035007 => '2021-12-20',
389             5.035008 => '2022-01-20',
390             5.035009 => '2022-02-20',
391             5.034001 => '2022-03-13',
392             5.035010 => '2022-03-20',
393             5.035011 => '2022-04-20',
394             5.036000 => '2022-05-27',
395             5.037000 => '2022-05-27',
396             5.037001 => '2022-06-20',
397             5.037002 => '2022-07-20',
398             5.037003 => '2022-08-20',
399             5.037004 => '2022-09-20',
400             5.037005 => '2022-10-20',
401             5.037006 => '2022-11-20',
402             5.037007 => '2022-12-20',
403             5.037008 => '2023-01-20',
404             5.037009 => '2023-02-20',
405             5.037010 => '2023-03-20',
406             5.037011 => '2023-04-20',
407             5.036001 => '2023-04-23',
408             5.038000 => '2023-07-02',
409             5.039001 => '2023-07-20',
410             5.039002 => '2023-08-20',
411             5.039003 => '2023-09-20',
412             );
413              
414             for my $version ( sort { $a <=> $b } keys %released ) {
415             my $family = int ($version * 1000) / 1000;
416             push @{ $families{ $family }} , $version;
417             }
418              
419             %delta = (
420             5 => {
421             changed => {
422             'AnyDBM_File' => undef,
423             'AutoLoader' => undef,
424             'AutoSplit' => undef,
425             'Benchmark' => undef,
426             'Carp' => undef,
427             'Cwd' => undef,
428             'DB_File' => undef,
429             'DynaLoader' => undef,
430             'English' => undef,
431             'Env' => undef,
432             'Exporter' => undef,
433             'ExtUtils::MakeMaker' => undef,
434             'Fcntl' => undef,
435             'File::Basename' => undef,
436             'File::CheckTree' => undef,
437             'File::Find' => undef,
438             'FileHandle' => undef,
439             'GDBM_File' => undef,
440             'Getopt::Long' => undef,
441             'Getopt::Std' => undef,
442             'I18N::Collate' => undef,
443             'IPC::Open2' => undef,
444             'IPC::Open3' => undef,
445             'Math::BigFloat' => undef,
446             'Math::BigInt' => undef,
447             'Math::Complex' => undef,
448             'NDBM_File' => undef,
449             'Net::Ping' => undef,
450             'ODBM_File' => undef,
451             'POSIX' => undef,
452             'SDBM_File' => undef,
453             'Search::Dict' => undef,
454             'Shell' => undef,
455             'Socket' => undef,
456             'Sys::Hostname' => undef,
457             'Sys::Syslog' => undef,
458             'Term::Cap' => undef,
459             'Term::Complete' => undef,
460             'Test::Harness' => undef,
461             'Text::Abbrev' => undef,
462             'Text::ParseWords' => undef,
463             'Text::Soundex' => undef,
464             'Text::Tabs' => undef,
465             'TieHash' => undef,
466             'Time::Local' => undef,
467             'integer' => undef,
468             'less' => undef,
469             'sigtrap' => undef,
470             'strict' => undef,
471             'subs' => undef,
472             },
473             removed => {
474             }
475             },
476             5.001 => {
477             delta_from => 5,
478             changed => {
479             'ExtUtils::Liblist' => undef,
480             'ExtUtils::Manifest' => undef,
481             'ExtUtils::Mkbootstrap' => undef,
482             'File::Path' => undef,
483             'SubstrHash' => undef,
484             'lib' => undef,
485             },
486             removed => {
487             }
488             },
489             5.002 => {
490             delta_from => 5.001,
491             changed => {
492             'DB_File' => '1.01',
493             'Devel::SelfStubber' => '1.01',
494             'DirHandle' => undef,
495             'DynaLoader' => '1.00',
496             'ExtUtils::Install' => undef,
497             'ExtUtils::MM_OS2' => undef,
498             'ExtUtils::MM_Unix' => undef,
499             'ExtUtils::MM_VMS' => undef,
500             'ExtUtils::MakeMaker' => '5.21',
501             'ExtUtils::Manifest' => '1.22',
502             'ExtUtils::Mksymlists' => '1.00',
503             'Fcntl' => '1.00',
504             'File::Copy' => '1.5',
505             'File::Path' => '1.01',
506             'FileCache' => undef,
507             'FileHandle' => '1.00',
508             'GDBM_File' => '1.00',
509             'Getopt::Long' => '2.01',
510             'NDBM_File' => '1.00',
511             'Net::Ping' => '1',
512             'ODBM_File' => '1.00',
513             'POSIX' => '1.00',
514             'Pod::Functions' => undef,
515             'Pod::Text' => undef,
516             'SDBM_File' => '1.00',
517             'Safe' => '1.00',
518             'SelectSaver' => undef,
519             'SelfLoader' => '1.06',
520             'Socket' => '1.5',
521             'Symbol' => undef,
522             'Term::ReadLine' => undef,
523             'Test::Harness' => '1.07',
524             'Text::Wrap' => undef,
525             'Tie::Hash' => undef,
526             'Tie::Scalar' => undef,
527             'Tie::SubstrHash' => undef,
528             'diagnostics' => undef,
529             'overload' => undef,
530             'vars' => undef,
531             },
532             removed => {
533             'SubstrHash' => 1,
534             'TieHash' => 1,
535             }
536             },
537             5.00307 => {
538             delta_from => 5.002,
539             changed => {
540             'Config' => undef,
541             'DB_File' => '1.03',
542             'ExtUtils::Embed' => '1.18',
543             'ExtUtils::Install' => '1.15',
544             'ExtUtils::Liblist' => '1.20',
545             'ExtUtils::MM_Unix' => '1.107',
546             'ExtUtils::MakeMaker' => '5.38',
547             'ExtUtils::Manifest' => '1.27',
548             'ExtUtils::Mkbootstrap' => '1.13',
549             'ExtUtils::Mksymlists' => '1.12',
550             'ExtUtils::testlib' => '1.11',
551             'Fatal' => undef,
552             'File::Basename' => '2.4',
553             'FindBin' => '1.04',
554             'Getopt::Long' => '2.04',
555             'IO' => undef,
556             'IO::File' => '1.05',
557             'IO::Handle' => '1.12',
558             'IO::Pipe' => '1.07',
559             'IO::Seekable' => '1.05',
560             'IO::Select' => '1.09',
561             'IO::Socket' => '1.13',
562             'Net::Ping' => '1.01',
563             'OS2::ExtAttr' => '0.01',
564             'OS2::PrfDB' => '0.02',
565             'OS2::Process' => undef,
566             'OS2::REXX' => undef,
567             'Opcode' => '1.01',
568             'Safe' => '2.06',
569             'Test::Harness' => '1.13',
570             'Text::Tabs' => '96.051501',
571             'Text::Wrap' => '96.041801',
572             'UNIVERSAL' => undef,
573             'VMS::Filespec' => undef,
574             'VMS::Stdio' => '2.0',
575             'ops' => undef,
576             'sigtrap' => '1.01',
577             },
578             removed => {
579             }
580             },
581             5.004 => {
582             delta_from => 5.00307,
583             changed => {
584             'Bundle::CPAN' => '0.02',
585             'CGI' => '2.36',
586             'CGI::Apache' => '1.01',
587             'CGI::Carp' => '1.06',
588             'CGI::Fast' => '1.00a',
589             'CGI::Push' => '1.00',
590             'CGI::Switch' => '0.05',
591             'CPAN' => '1.2401',
592             'CPAN::FirstTime' => '1.18',
593             'CPAN::Nox' => undef,
594             'Class::Struct' => undef,
595             'Cwd' => '2.00',
596             'DB_File' => '1.14',
597             'DynaLoader' => '1.02',
598             'ExtUtils::Command' => '1.00',
599             'ExtUtils::Embed' => '1.2501',
600             'ExtUtils::Install' => '1.16',
601             'ExtUtils::Liblist' => '1.2201',
602             'ExtUtils::MM_Unix' => '1.114',
603             'ExtUtils::MM_Win32' => undef,
604             'ExtUtils::MakeMaker' => '5.4002',
605             'ExtUtils::Manifest' => '1.33',
606             'ExtUtils::Mksymlists' => '1.13',
607             'ExtUtils::XSSymSet' => '1.0',
608             'Fcntl' => '1.03',
609             'File::Basename' => '2.5',
610             'File::Compare' => '1.1001',
611             'File::Copy' => '2.02',
612             'File::Path' => '1.04',
613             'File::stat' => undef,
614             'FileHandle' => '2.00',
615             'Getopt::Long' => '2.10',
616             'IO::File' => '1.0602',
617             'IO::Handle' => '1.1504',
618             'IO::Pipe' => '1.0901',
619             'IO::Seekable' => '1.06',
620             'IO::Select' => '1.10',
621             'IO::Socket' => '1.1602',
622             'IPC::Open2' => '1.01',
623             'IPC::Open3' => '1.0101',
624             'Math::Complex' => '1.01',
625             'Math::Trig' => '1',
626             'Net::Ping' => '2.02',
627             'Net::hostent' => undef,
628             'Net::netent' => undef,
629             'Net::protoent' => undef,
630             'Net::servent' => undef,
631             'Opcode' => '1.04',
632             'POSIX' => '1.02',
633             'Pod::Html' => undef,
634             'Pod::Text' => '1.0203',
635             'SelfLoader' => '1.07',
636             'Socket' => '1.6',
637             'Symbol' => '1.02',
638             'Test::Harness' => '1.1502',
639             'Text::Tabs' => '96.121201',
640             'Text::Wrap' => '97.011701',
641             'Tie::RefHash' => undef,
642             'Time::gmtime' => '1.01',
643             'Time::localtime' => '1.01',
644             'Time::tm' => undef,
645             'User::grent' => undef,
646             'User::pwent' => undef,
647             'VMS::DCLsym' => '1.01',
648             'VMS::Stdio' => '2.02',
649             'autouse' => '1.01',
650             'blib' => undef,
651             'constant' => '1.00',
652             'locale' => undef,
653             'sigtrap' => '1.02',
654             'vmsish' => undef,
655             },
656             removed => {
657             'Fatal' => 1,
658             }
659             },
660             5.00405 => {
661             delta_from => 5.004,
662             changed => {
663             'AutoLoader' => '5.56',
664             'AutoSplit' => '1.0303',
665             'Bundle::CPAN' => '0.03',
666             'CGI' => '2.42',
667             'CGI::Apache' => '1.1',
668             'CGI::Carp' => '1.10',
669             'CGI::Cookie' => '1.06',
670             'CGI::Push' => '1.01',
671             'CGI::Switch' => '0.06',
672             'CPAN' => '1.40',
673             'CPAN::FirstTime' => '1.30',
674             'Cwd' => '2.01',
675             'DB_File' => '1.15',
676             'DynaLoader' => '1.03',
677             'ExtUtils::Command' => '1.01',
678             'ExtUtils::Embed' => '1.2505',
679             'ExtUtils::Install' => '1.28',
680             'ExtUtils::Liblist' => '1.25',
681             'ExtUtils::MM_Unix' => '1.118',
682             'ExtUtils::MakeMaker' => '5.42',
683             'ExtUtils::Mkbootstrap' => '1.14',
684             'ExtUtils::Mksymlists' => '1.16',
685             'File::Basename' => '2.6',
686             'File::DosGlob' => undef,
687             'File::Path' => '1.0402',
688             'File::Spec' => '0.6',
689             'File::Spec::Mac' => '1.0',
690             'File::Spec::OS2' => undef,
691             'File::Spec::Unix' => undef,
692             'File::Spec::VMS' => undef,
693             'File::Spec::Win32' => undef,
694             'FindBin' => '1.41',
695             'Getopt::Long' => '2.19',
696             'IO::File' => '1.06021',
697             'IO::Socket' => '1.1603',
698             'IPC::Open3' => '1.0103',
699             'Math::Complex' => '1.25',
700             'NDBM_File' => '1.01',
701             'Pod::Html' => '1.0101',
702             'Pod::Text' => '1.0204',
703             'SelfLoader' => '1.08',
704             'Socket' => '1.7',
705             'Test' => '1.04',
706             'Test::Harness' => '1.1602',
707             'Text::ParseWords' => '3.1001',
708             'Text::Wrap' => '98.112902',
709             'Tie::Handle' => undef,
710             'attrs' => '0.1',
711             'base' => undef,
712             'blib' => '1.00',
713             're' => undef,
714             'strict' => '1.01',
715             },
716             removed => {
717             }
718             },
719             5.005 => {
720             delta_from => 5.00405,
721             changed => {
722             'AutoLoader' => undef,
723             'AutoSplit' => '1.0302',
724             'B' => undef,
725             'B::Asmdata' => undef,
726             'B::Assembler' => undef,
727             'B::Bblock' => undef,
728             'B::Bytecode' => undef,
729             'B::C' => undef,
730             'B::CC' => undef,
731             'B::Debug' => undef,
732             'B::Deparse' => '0.56',
733             'B::Disassembler' => undef,
734             'B::Lint' => undef,
735             'B::Showlex' => undef,
736             'B::Stackobj' => undef,
737             'B::Terse' => undef,
738             'B::Xref' => undef,
739             'CGI::Carp' => '1.101',
740             'CPAN' => '1.3901',
741             'CPAN::FirstTime' => '1.29',
742             'DB_File' => '1.60',
743             'Data::Dumper' => '2.09',
744             'Errno' => '1.09',
745             'ExtUtils::Installed' => '0.02',
746             'ExtUtils::MM_Unix' => '1.12601',
747             'ExtUtils::MakeMaker' => '5.4301',
748             'ExtUtils::Mkbootstrap' => '1.13',
749             'ExtUtils::Mksymlists' => '1.17',
750             'ExtUtils::Packlist' => '0.03',
751             'Fatal' => '1.02',
752             'File::Path' => '1.0401',
753             'Getopt::Long' => '2.17',
754             'IO::Handle' => '1.1505',
755             'IPC::Msg' => '1.00',
756             'IPC::Open3' => '1.0102',
757             'IPC::Semaphore' => '1.00',
758             'IPC::SysV' => '1.03',
759             'O' => undef,
760             'OS2::Process' => '0.2',
761             'Pod::Html' => '1.01',
762             'Pod::Text' => '1.0203',
763             'Text::ParseWords' => '3.1',
764             'Text::Wrap' => '97.02',
765             'Thread' => '1.0',
766             'Thread::Queue' => undef,
767             'Thread::Semaphore' => undef,
768             'Thread::Signal' => undef,
769             'Thread::Specific' => undef,
770             'Tie::Array' => '1.00',
771             'VMS::Stdio' => '2.1',
772             'attrs' => '1.0',
773             'fields' => '0.02',
774             're' => '0.02',
775             },
776             removed => {
777             'Bundle::CPAN' => 1,
778             }
779             },
780             5.00503 => {
781             delta_from => 5.005,
782             changed => {
783             'AutoSplit' => '1.0303',
784             'CGI' => '2.46',
785             'CGI::Carp' => '1.13',
786             'CGI::Fast' => '1.01',
787             'CPAN' => '1.48',
788             'CPAN::FirstTime' => '1.36',
789             'CPAN::Nox' => '1.00',
790             'DB_File' => '1.65',
791             'Data::Dumper' => '2.101',
792             'Dumpvalue' => undef,
793             'Errno' => '1.111',
794             'ExtUtils::Install' => '1.28',
795             'ExtUtils::Liblist' => '1.25',
796             'ExtUtils::MM_Unix' => '1.12602',
797             'ExtUtils::MakeMaker' => '5.4302',
798             'ExtUtils::Manifest' => '1.33',
799             'ExtUtils::Mkbootstrap' => '1.14',
800             'ExtUtils::Mksymlists' => '1.17',
801             'ExtUtils::testlib' => '1.11',
802             'FindBin' => '1.42',
803             'Getopt::Long' => '2.19',
804             'Getopt::Std' => '1.01',
805             'IO::Pipe' => '1.0902',
806             'IPC::Open3' => '1.0103',
807             'Math::Complex' => '1.26',
808             'Test' => '1.122',
809             'Text::Wrap' => '98.112902',
810             },
811             removed => {
812             }
813             },
814             5.00504 => {
815             delta_from => 5.00503,
816             changed => {
817             'CPAN::FirstTime' => '1.36',
818             'DB_File' => '1.807',
819             'ExtUtils::Install' => '1.28',
820             'ExtUtils::Liblist' => '1.25',
821             'ExtUtils::MM_Unix' => '1.12602',
822             'ExtUtils::Manifest' => '1.33',
823             'ExtUtils::Miniperl' => undef,
824             'ExtUtils::Mkbootstrap' => '1.14',
825             'ExtUtils::Mksymlists' => '1.17',
826             'ExtUtils::testlib' => '1.11',
827             'File::Compare' => '1.1002',
828             'File::Spec' => '0.8',
829             'File::Spec::Functions' => undef,
830             'File::Spec::Mac' => undef,
831             'Getopt::Long' => '2.20',
832             'Pod::Html' => '1.02',
833             },
834             removed => {
835             }
836             },
837             5.006 => {
838             delta_from => 5.00504,
839             changed => {
840             'AutoLoader' => '5.57',
841             'AutoSplit' => '1.0305',
842             'B::Deparse' => '0.59',
843             'B::Stash' => undef,
844             'Benchmark' => '1',
845             'ByteLoader' => '0.03',
846             'CGI' => '2.56',
847             'CGI::Apache' => undef,
848             'CGI::Carp' => '1.14',
849             'CGI::Cookie' => '1.12',
850             'CGI::Fast' => '1.02',
851             'CGI::Pretty' => '1.03',
852             'CGI::Switch' => undef,
853             'CPAN' => '1.52',
854             'CPAN::FirstTime' => '1.38',
855             'Carp::Heavy' => undef,
856             'Class::Struct' => '0.58',
857             'Cwd' => '2.02',
858             'DB' => '1.0',
859             'DB_File' => '1.72',
860             'Devel::DProf' => '20000000.00_00',
861             'Devel::Peek' => '1.00_01',
862             'DynaLoader' => '1.04',
863             'Exporter' => '5.562',
864             'Exporter::Heavy' => undef,
865             'ExtUtils::MM_Cygwin' => undef,
866             'ExtUtils::MM_Unix' => '1.12603',
867             'ExtUtils::MakeMaker' => '5.45',
868             'File::Copy' => '2.03',
869             'File::Glob' => '0.991',
870             'File::Path' => '1.0403',
871             'GDBM_File' => '1.03',
872             'Getopt::Long' => '2.23',
873             'Getopt::Std' => '1.02',
874             'IO' => '1.20',
875             'IO::Dir' => '1.03',
876             'IO::File' => '1.08',
877             'IO::Handle' => '1.21',
878             'IO::Pipe' => '1.121',
879             'IO::Poll' => '0.01',
880             'IO::Seekable' => '1.08',
881             'IO::Select' => '1.14',
882             'IO::Socket' => '1.26',
883             'IO::Socket::INET' => '1.25',
884             'IO::Socket::UNIX' => '1.20',
885             'JNI' => '0.01',
886             'JPL::AutoLoader' => undef,
887             'JPL::Class' => undef,
888             'JPL::Compile' => undef,
889             'NDBM_File' => '1.03',
890             'ODBM_File' => '1.02',
891             'OS2::DLL' => undef,
892             'POSIX' => '1.03',
893             'Pod::Checker' => '1.098',
894             'Pod::Find' => '0.12',
895             'Pod::Html' => '1.03',
896             'Pod::InputObjects' => '1.12',
897             'Pod::Man' => '1.02',
898             'Pod::ParseUtils' => '0.2',
899             'Pod::Parser' => '1.12',
900             'Pod::Plainer' => '0.01',
901             'Pod::Select' => '1.12',
902             'Pod::Text' => '2.03',
903             'Pod::Text::Color' => '0.05',
904             'Pod::Text::Termcap' => '0.04',
905             'Pod::Usage' => '1.12',
906             'SDBM_File' => '1.02',
907             'SelfLoader' => '1.0901',
908             'Shell' => '0.2',
909             'Socket' => '1.72',
910             'Sys::Hostname' => '1.1',
911             'Sys::Syslog' => '0.01',
912             'Term::ANSIColor' => '1.01',
913             'Test' => '1.13',
914             'Test::Harness' => '1.1604',
915             'Text::ParseWords' => '3.2',
916             'Text::Soundex' => '1.0',
917             'Text::Tabs' => '98.112801',
918             'Tie::Array' => '1.01',
919             'Tie::Handle' => '1.0',
920             'VMS::Stdio' => '2.2',
921             'XSLoader' => '0.01',
922             'attributes' => '0.03',
923             'autouse' => '1.02',
924             'base' => '1.01',
925             'bytes' => undef,
926             'charnames' => undef,
927             'constant' => '1.02',
928             'diagnostics' => '1.0',
929             'fields' => '1.01',
930             'filetest' => undef,
931             'lib' => '0.5564',
932             'open' => undef,
933             'utf8' => undef,
934             'warnings' => undef,
935             'warnings::register' => undef,
936             },
937             removed => {
938             }
939             },
940             5.006001 => {
941             delta_from => 5.006,
942             changed => {
943             'AutoLoader' => '5.58',
944             'B::Assembler' => '0.02',
945             'B::Concise' => '0.51',
946             'B::Deparse' => '0.6',
947             'ByteLoader' => '0.04',
948             'CGI' => '2.752',
949             'CGI::Carp' => '1.20',
950             'CGI::Cookie' => '1.18',
951             'CGI::Pretty' => '1.05',
952             'CGI::Push' => '1.04',
953             'CGI::Util' => '1.1',
954             'CPAN' => '1.59_54',
955             'CPAN::FirstTime' => '1.53',
956             'Class::Struct' => '0.59',
957             'Cwd' => '2.04',
958             'DB_File' => '1.75',
959             'Data::Dumper' => '2.102',
960             'ExtUtils::Install' => '1.28',
961             'ExtUtils::Liblist' => '1.26',
962             'ExtUtils::MM_Unix' => '1.12603',
963             'ExtUtils::Manifest' => '1.33',
964             'ExtUtils::Mkbootstrap' => '1.14',
965             'ExtUtils::Mksymlists' => '1.17',
966             'ExtUtils::testlib' => '1.11',
967             'File::Path' => '1.0404',
968             'File::Spec' => '0.82',
969             'File::Spec::Epoc' => undef,
970             'File::Spec::Functions' => '1.1',
971             'File::Spec::Mac' => '1.2',
972             'File::Spec::OS2' => '1.1',
973             'File::Spec::Unix' => '1.2',
974             'File::Spec::VMS' => '1.1',
975             'File::Spec::Win32' => '1.2',
976             'File::Temp' => '0.12',
977             'GDBM_File' => '1.05',
978             'Getopt::Long' => '2.25',
979             'IO::Poll' => '0.05',
980             'JNI' => '0.1',
981             'Math::BigFloat' => '0.02',
982             'Math::BigInt' => '0.01',
983             'Math::Complex' => '1.31',
984             'NDBM_File' => '1.04',
985             'ODBM_File' => '1.03',
986             'OS2::REXX' => '1.00',
987             'Pod::Checker' => '1.2',
988             'Pod::Find' => '0.21',
989             'Pod::InputObjects' => '1.13',
990             'Pod::LaTeX' => '0.53',
991             'Pod::Man' => '1.15',
992             'Pod::ParseUtils' => '0.22',
993             'Pod::Parser' => '1.13',
994             'Pod::Select' => '1.13',
995             'Pod::Text' => '2.08',
996             'Pod::Text::Color' => '0.06',
997             'Pod::Text::Overstrike' => '1.01',
998             'Pod::Text::Termcap' => '1',
999             'Pod::Usage' => '1.14',
1000             'SDBM_File' => '1.03',
1001             'SelfLoader' => '1.0902',
1002             'Shell' => '0.3',
1003             'Term::ANSIColor' => '1.03',
1004             'Test' => '1.15',
1005             'Text::Wrap' => '2001.0131',
1006             'Tie::Handle' => '4.0',
1007             'Tie::RefHash' => '1.3',
1008             },
1009             removed => {
1010             }
1011             },
1012             5.006002 => {
1013             delta_from => 5.006001,
1014             changed => {
1015             'CPAN::FirstTime' => '1.53',
1016             'DB_File' => '1.806',
1017             'Data::Dumper' => '2.121',
1018             'ExtUtils::Command' => '1.05',
1019             'ExtUtils::Command::MM' => '0.03',
1020             'ExtUtils::Install' => '1.32',
1021             'ExtUtils::Installed' => '0.08',
1022             'ExtUtils::Liblist' => '1.01',
1023             'ExtUtils::Liblist::Kid'=> '1.3',
1024             'ExtUtils::MM' => '0.04',
1025             'ExtUtils::MM_Any' => '0.07',
1026             'ExtUtils::MM_BeOS' => '1.04',
1027             'ExtUtils::MM_Cygwin' => '1.06',
1028             'ExtUtils::MM_DOS' => '0.02',
1029             'ExtUtils::MM_MacOS' => '1.07',
1030             'ExtUtils::MM_NW5' => '2.06',
1031             'ExtUtils::MM_OS2' => '1.04',
1032             'ExtUtils::MM_UWIN' => '0.02',
1033             'ExtUtils::MM_Unix' => '1.42',
1034             'ExtUtils::MM_VMS' => '5.70',
1035             'ExtUtils::MM_Win32' => '1.09',
1036             'ExtUtils::MM_Win95' => '0.03',
1037             'ExtUtils::MY' => '0.01',
1038             'ExtUtils::MakeMaker' => '6.17',
1039             'ExtUtils::MakeMaker::bytes'=> '0.01',
1040             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1041             'ExtUtils::Manifest' => '1.42',
1042             'ExtUtils::Mkbootstrap' => '1.15',
1043             'ExtUtils::Mksymlists' => '1.19',
1044             'ExtUtils::Packlist' => '0.04',
1045             'ExtUtils::testlib' => '1.15',
1046             'File::Spec' => '0.86',
1047             'File::Spec::Cygwin' => '1.1',
1048             'File::Spec::Epoc' => '1.1',
1049             'File::Spec::Functions' => '1.3',
1050             'File::Spec::Mac' => '1.4',
1051             'File::Spec::OS2' => '1.2',
1052             'File::Spec::Unix' => '1.5',
1053             'File::Spec::VMS' => '1.4',
1054             'File::Spec::Win32' => '1.4',
1055             'File::Temp' => '0.14',
1056             'Safe' => '2.10',
1057             'Test' => '1.24',
1058             'Test::Builder' => '0.17',
1059             'Test::Harness' => '2.30',
1060             'Test::Harness::Assert' => '0.01',
1061             'Test::Harness::Iterator'=> '0.01',
1062             'Test::Harness::Straps' => '0.15',
1063             'Test::More' => '0.47',
1064             'Test::Simple' => '0.47',
1065             'Unicode' => '3.0.1',
1066             'if' => '0.03',
1067             'ops' => '1.00',
1068             },
1069             removed => {
1070             }
1071             },
1072             5.007003 => {
1073             delta_from => 5.006001,
1074             changed => {
1075             'AnyDBM_File' => '1.00',
1076             'Attribute::Handlers' => '0.76',
1077             'AutoLoader' => '5.59',
1078             'AutoSplit' => '1.0307',
1079             'B' => '1.00',
1080             'B::Asmdata' => '1.00',
1081             'B::Assembler' => '0.04',
1082             'B::Bblock' => '1.00',
1083             'B::Bytecode' => '1.00',
1084             'B::C' => '1.01',
1085             'B::CC' => '1.00',
1086             'B::Concise' => '0.52',
1087             'B::Debug' => '1.00',
1088             'B::Deparse' => '0.63',
1089             'B::Disassembler' => '1.01',
1090             'B::Lint' => '1.00',
1091             'B::Showlex' => '1.00',
1092             'B::Stackobj' => '1.00',
1093             'B::Stash' => '1.00',
1094             'B::Terse' => '1.00',
1095             'B::Xref' => '1.00',
1096             'Benchmark' => '1.04',
1097             'CGI' => '2.80',
1098             'CGI::Apache' => '1.00',
1099             'CGI::Carp' => '1.22',
1100             'CGI::Cookie' => '1.20',
1101             'CGI::Fast' => '1.04',
1102             'CGI::Pretty' => '1.05_00',
1103             'CGI::Switch' => '1.00',
1104             'CGI::Util' => '1.3',
1105             'CPAN' => '1.59_56',
1106             'CPAN::FirstTime' => '1.54',
1107             'CPAN::Nox' => '1.00_01',
1108             'Carp' => '1.01',
1109             'Carp::Heavy' => '1.01',
1110             'Class::ISA' => '0.32',
1111             'Class::Struct' => '0.61',
1112             'Cwd' => '2.06',
1113             'DB_File' => '1.804',
1114             'Data::Dumper' => '2.12',
1115             'Devel::DProf' => '20000000.00_01',
1116             'Devel::PPPort' => '2.0002',
1117             'Devel::Peek' => '1.00_03',
1118             'Devel::SelfStubber' => '1.03',
1119             'Digest' => '1.00',
1120             'Digest::MD5' => '2.16',
1121             'DirHandle' => '1.00',
1122             'Dumpvalue' => '1.10',
1123             'Encode' => '0.40',
1124             'Encode::CN' => '0.02',
1125             'Encode::CN::HZ' => undef,
1126             'Encode::Encoding' => '0.02',
1127             'Encode::Internal' => '0.30',
1128             'Encode::JP' => '0.02',
1129             'Encode::JP::Constants' => '1.02',
1130             'Encode::JP::H2Z' => '0.77',
1131             'Encode::JP::ISO_2022_JP'=> undef,
1132             'Encode::JP::JIS' => undef,
1133             'Encode::JP::Tr' => '0.77',
1134             'Encode::KR' => '0.02',
1135             'Encode::TW' => '0.02',
1136             'Encode::Tcl' => '1.01',
1137             'Encode::Tcl::Escape' => '1.01',
1138             'Encode::Tcl::Extended' => '1.01',
1139             'Encode::Tcl::HanZi' => '1.01',
1140             'Encode::Tcl::Table' => '1.01',
1141             'Encode::Unicode' => '0.30',
1142             'Encode::XS' => '0.40',
1143             'Encode::iso10646_1' => '0.30',
1144             'Encode::usc2_le' => '0.30',
1145             'Encode::utf8' => '0.30',
1146             'English' => '1.00',
1147             'Env' => '1.00',
1148             'Exporter' => '5.566',
1149             'Exporter::Heavy' => '5.562',
1150             'ExtUtils::Command' => '1.02',
1151             'ExtUtils::Constant' => '0.11',
1152             'ExtUtils::Embed' => '1.250601',
1153             'ExtUtils::Install' => '1.29',
1154             'ExtUtils::Installed' => '0.04',
1155             'ExtUtils::Liblist' => '1.2701',
1156             'ExtUtils::MM_BeOS' => '1.00',
1157             'ExtUtils::MM_Cygwin' => '1.00',
1158             'ExtUtils::MM_OS2' => '1.00',
1159             'ExtUtils::MM_Unix' => '1.12607',
1160             'ExtUtils::MM_VMS' => '5.56',
1161             'ExtUtils::MM_Win32' => '1.00_02',
1162             'ExtUtils::MakeMaker' => '5.48_03',
1163             'ExtUtils::Manifest' => '1.35',
1164             'ExtUtils::Mkbootstrap' => '1.1401',
1165             'ExtUtils::Mksymlists' => '1.18',
1166             'ExtUtils::Packlist' => '0.04',
1167             'ExtUtils::testlib' => '1.1201',
1168             'Fatal' => '1.03',
1169             'Fcntl' => '1.04',
1170             'File::Basename' => '2.71',
1171             'File::CheckTree' => '4.1',
1172             'File::Compare' => '1.1003',
1173             'File::Copy' => '2.05',
1174             'File::DosGlob' => '1.00',
1175             'File::Find' => '1.04',
1176             'File::Glob' => '1.01',
1177             'File::Path' => '1.05',
1178             'File::Spec' => '0.83',
1179             'File::Spec::Cygwin' => '1.0',
1180             'File::Spec::Epoc' => '1.00',
1181             'File::Spec::Functions' => '1.2',
1182             'File::Spec::Mac' => '1.3',
1183             'File::Spec::Unix' => '1.4',
1184             'File::Spec::VMS' => '1.2',
1185             'File::Spec::Win32' => '1.3',
1186             'File::Temp' => '0.13',
1187             'File::stat' => '1.00',
1188             'FileCache' => '1.00',
1189             'FileHandle' => '2.01',
1190             'Filter::Simple' => '0.77',
1191             'Filter::Util::Call' => '1.06',
1192             'FindBin' => '1.43',
1193             'GDBM_File' => '1.06',
1194             'Getopt::Long' => '2.28',
1195             'Getopt::Std' => '1.03',
1196             'I18N::Collate' => '1.00',
1197             'I18N::LangTags' => '0.27',
1198             'I18N::LangTags::List' => '0.25',
1199             'I18N::Langinfo' => '0.01',
1200             'IO::Dir' => '1.03_00',
1201             'IO::File' => '1.09',
1202             'IO::Handle' => '1.21_00',
1203             'IO::Pipe' => '1.122',
1204             'IO::Poll' => '0.06',
1205             'IO::Seekable' => '1.08_00',
1206             'IO::Select' => '1.15',
1207             'IO::Socket' => '1.27',
1208             'IO::Socket::INET' => '1.26',
1209             'IO::Socket::UNIX' => '1.20_00',
1210             'IPC::Msg' => '1.00_00',
1211             'IPC::Open3' => '1.0104',
1212             'IPC::Semaphore' => '1.00_00',
1213             'IPC::SysV' => '1.03_00',
1214             'List::Util' => '1.06_00',
1215             'Locale::Constants' => '2.01',
1216             'Locale::Country' => '2.01',
1217             'Locale::Currency' => '2.01',
1218             'Locale::Language' => '2.01',
1219             'Locale::Maketext' => '1.03',
1220             'Locale::Script' => '2.01',
1221             'MIME::Base64' => '2.12',
1222             'MIME::QuotedPrint' => '2.03',
1223             'Math::BigFloat' => '1.30',
1224             'Math::BigInt' => '1.54',
1225             'Math::BigInt::Calc' => '0.25',
1226             'Math::Complex' => '1.34',
1227             'Math::Trig' => '1.01',
1228             'Memoize' => '0.66',
1229             'Memoize::AnyDBM_File' => '0.65',
1230             'Memoize::Expire' => '0.66',
1231             'Memoize::ExpireFile' => '0.65',
1232             'Memoize::ExpireTest' => '0.65',
1233             'Memoize::NDBM_File' => '0.65',
1234             'Memoize::SDBM_File' => '0.65',
1235             'Memoize::Storable' => '0.65',
1236             'NEXT' => '0.50',
1237             'Net::Cmd' => '2.21',
1238             'Net::Config' => '1.10',
1239             'Net::Domain' => '2.17',
1240             'Net::FTP' => '2.64',
1241             'Net::FTP::A' => '1.15',
1242             'Net::FTP::E' => '0.01',
1243             'Net::FTP::I' => '1.12',
1244             'Net::FTP::L' => '0.01',
1245             'Net::FTP::dataconn' => '0.10',
1246             'Net::NNTP' => '2.21',
1247             'Net::Netrc' => '2.12',
1248             'Net::POP3' => '2.23',
1249             'Net::Ping' => '2.12',
1250             'Net::SMTP' => '2.21',
1251             'Net::Time' => '2.09',
1252             'Net::hostent' => '1.00',
1253             'Net::netent' => '1.00',
1254             'Net::protoent' => '1.00',
1255             'Net::servent' => '1.00',
1256             'O' => '1.00',
1257             'OS2::DLL' => '1.00',
1258             'OS2::Process' => '1.0',
1259             'OS2::REXX' => '1.01',
1260             'Opcode' => '1.05',
1261             'POSIX' => '1.05',
1262             'PerlIO' => '1.00',
1263             'PerlIO::Scalar' => '0.01',
1264             'PerlIO::Via' => '0.01',
1265             'Pod::Checker' => '1.3',
1266             'Pod::Find' => '0.22',
1267             'Pod::Functions' => '1.01',
1268             'Pod::Html' => '1.04',
1269             'Pod::LaTeX' => '0.54',
1270             'Pod::Man' => '1.32',
1271             'Pod::ParseLink' => '1.05',
1272             'Pod::Text' => '2.18',
1273             'Pod::Text::Color' => '1.03',
1274             'Pod::Text::Overstrike' => '1.08',
1275             'Pod::Text::Termcap' => '1.09',
1276             'Safe' => '2.07',
1277             'Scalar::Util' => '1.06_00',
1278             'Search::Dict' => '1.02',
1279             'SelectSaver' => '1.00',
1280             'SelfLoader' => '1.0903',
1281             'Shell' => '0.4',
1282             'Socket' => '1.75',
1283             'Storable' => '1.015',
1284             'Switch' => '2.06',
1285             'Symbol' => '1.04',
1286             'Sys::Syslog' => '0.02',
1287             'Term::ANSIColor' => '1.04',
1288             'Term::Cap' => '1.07',
1289             'Term::Complete' => '1.4',
1290             'Term::ReadLine' => '1.00',
1291             'Test' => '1.18',
1292             'Test::Builder' => '0.11',
1293             'Test::Harness' => '2.01',
1294             'Test::Harness::Assert' => '0.01',
1295             'Test::Harness::Iterator'=> '0.01',
1296             'Test::Harness::Straps' => '0.08',
1297             'Test::More' => '0.41',
1298             'Test::Simple' => '0.41',
1299             'Text::Abbrev' => '1.00',
1300             'Text::Balanced' => '1.89',
1301             'Text::ParseWords' => '3.21',
1302             'Text::Soundex' => '1.01',
1303             'Text::Wrap' => '2001.0929',
1304             'Thread' => '2.00',
1305             'Thread::Queue' => '1.00',
1306             'Thread::Semaphore' => '1.00',
1307             'Thread::Signal' => '1.00',
1308             'Thread::Specific' => '1.00',
1309             'Tie::Array' => '1.02',
1310             'Tie::File' => '0.17',
1311             'Tie::Handle' => '4.1',
1312             'Tie::Hash' => '1.00',
1313             'Tie::Memoize' => '1.0',
1314             'Tie::RefHash' => '1.3_00',
1315             'Tie::Scalar' => '1.00',
1316             'Tie::SubstrHash' => '1.00',
1317             'Time::HiRes' => '1.20_00',
1318             'Time::Local' => '1.04',
1319             'Time::gmtime' => '1.02',
1320             'Time::localtime' => '1.02',
1321             'Time::tm' => '1.00',
1322             'UNIVERSAL' => '1.00',
1323             'Unicode::Collate' => '0.10',
1324             'Unicode::Normalize' => '0.14',
1325             'Unicode::UCD' => '0.2',
1326             'User::grent' => '1.00',
1327             'User::pwent' => '1.00',
1328             'VMS::DCLsym' => '1.02',
1329             'VMS::Filespec' => '1.1',
1330             'VMS::Stdio' => '2.3',
1331             'XS::Typemap' => '0.01',
1332             'attributes' => '0.04_01',
1333             'attrs' => '1.01',
1334             'autouse' => '1.03',
1335             'base' => '1.02',
1336             'blib' => '1.01',
1337             'bytes' => '1.00',
1338             'charnames' => '1.01',
1339             'constant' => '1.04',
1340             'diagnostics' => '1.1',
1341             'encoding' => '1.00',
1342             'fields' => '1.02',
1343             'filetest' => '1.00',
1344             'if' => '0.01',
1345             'integer' => '1.00',
1346             'less' => '0.01',
1347             'locale' => '1.00',
1348             'open' => '1.01',
1349             'ops' => '1.00',
1350             'overload' => '1.00',
1351             're' => '0.03',
1352             'sort' => '1.00',
1353             'strict' => '1.02',
1354             'subs' => '1.00',
1355             'threads' => '0.05',
1356             'threads::shared' => '0.90',
1357             'utf8' => '1.00',
1358             'vars' => '1.01',
1359             'vmsish' => '1.00',
1360             'warnings' => '1.00',
1361             'warnings::register' => '1.00',
1362             },
1363             removed => {
1364             }
1365             },
1366             5.008 => {
1367             delta_from => 5.007003,
1368             changed => {
1369             'Attribute::Handlers' => '0.77',
1370             'B' => '1.01',
1371             'B::Lint' => '1.01',
1372             'B::Xref' => '1.01',
1373             'CGI' => '2.81',
1374             'CGI::Carp' => '1.23',
1375             'CPAN' => '1.61',
1376             'CPAN::FirstTime' => '1.56',
1377             'CPAN::Nox' => '1.02',
1378             'Digest::MD5' => '2.20',
1379             'Dumpvalue' => '1.11',
1380             'Encode' => '1.75',
1381             'Encode::Alias' => '1.32',
1382             'Encode::Byte' => '1.22',
1383             'Encode::CJKConstants' => '1.00',
1384             'Encode::CN' => '1.24',
1385             'Encode::CN::HZ' => '1.04',
1386             'Encode::Config' => '1.06',
1387             'Encode::EBCDIC' => '1.21',
1388             'Encode::Encoder' => '0.05',
1389             'Encode::Encoding' => '1.30',
1390             'Encode::Guess' => '1.06',
1391             'Encode::JP' => '1.25',
1392             'Encode::JP::H2Z' => '1.02',
1393             'Encode::JP::JIS7' => '1.08',
1394             'Encode::KR' => '1.22',
1395             'Encode::KR::2022_KR' => '1.05',
1396             'Encode::MIME::Header' => '1.05',
1397             'Encode::Symbol' => '1.22',
1398             'Encode::TW' => '1.26',
1399             'Encode::Unicode' => '1.37',
1400             'Exporter::Heavy' => '5.566',
1401             'ExtUtils::Command' => '1.04',
1402             'ExtUtils::Command::MM' => '0.01',
1403             'ExtUtils::Constant' => '0.12',
1404             'ExtUtils::Installed' => '0.06',
1405             'ExtUtils::Liblist' => '1.00',
1406             'ExtUtils::Liblist::Kid'=> '1.29',
1407             'ExtUtils::MM' => '0.04',
1408             'ExtUtils::MM_Any' => '0.04',
1409             'ExtUtils::MM_BeOS' => '1.03',
1410             'ExtUtils::MM_Cygwin' => '1.04',
1411             'ExtUtils::MM_DOS' => '0.01',
1412             'ExtUtils::MM_MacOS' => '1.03',
1413             'ExtUtils::MM_NW5' => '2.05',
1414             'ExtUtils::MM_OS2' => '1.03',
1415             'ExtUtils::MM_UWIN' => '0.01',
1416             'ExtUtils::MM_Unix' => '1.33',
1417             'ExtUtils::MM_VMS' => '5.65',
1418             'ExtUtils::MM_Win32' => '1.05',
1419             'ExtUtils::MM_Win95' => '0.02',
1420             'ExtUtils::MY' => '0.01',
1421             'ExtUtils::MakeMaker' => '6.03',
1422             'ExtUtils::Manifest' => '1.38',
1423             'ExtUtils::Mkbootstrap' => '1.15',
1424             'ExtUtils::Mksymlists' => '1.19',
1425             'ExtUtils::testlib' => '1.15',
1426             'File::CheckTree' => '4.2',
1427             'FileCache' => '1.021',
1428             'Filter::Simple' => '0.78',
1429             'Getopt::Long' => '2.32',
1430             'Hash::Util' => '0.04',
1431             'List::Util' => '1.07_00',
1432             'Locale::Country' => '2.04',
1433             'Math::BigFloat' => '1.35',
1434             'Math::BigFloat::Trace' => '0.01',
1435             'Math::BigInt' => '1.60',
1436             'Math::BigInt::Calc' => '0.30',
1437             'Math::BigInt::Trace' => '0.01',
1438             'Math::BigRat' => '0.07',
1439             'Memoize' => '1.01',
1440             'Memoize::Expire' => '1.00',
1441             'Memoize::ExpireFile' => '1.01',
1442             'Net::FTP' => '2.65',
1443             'Net::FTP::dataconn' => '0.11',
1444             'Net::Ping' => '2.19',
1445             'Net::SMTP' => '2.24',
1446             'PerlIO' => '1.01',
1447             'PerlIO::encoding' => '0.06',
1448             'PerlIO::scalar' => '0.01',
1449             'PerlIO::via' => '0.01',
1450             'PerlIO::via::QuotedPrint'=> '0.04',
1451             'Pod::Man' => '1.33',
1452             'Pod::Text' => '2.19',
1453             'Scalar::Util' => '1.07_00',
1454             'Storable' => '2.04',
1455             'Switch' => '2.09',
1456             'Sys::Syslog' => '0.03',
1457             'Test' => '1.20',
1458             'Test::Builder' => '0.15',
1459             'Test::Harness' => '2.26',
1460             'Test::Harness::Straps' => '0.14',
1461             'Test::More' => '0.45',
1462             'Test::Simple' => '0.45',
1463             'Thread::Queue' => '2.00',
1464             'Thread::Semaphore' => '2.00',
1465             'Tie::File' => '0.93',
1466             'Tie::RefHash' => '1.30',
1467             'Unicode' => '3.2.0',
1468             'Unicode::Collate' => '0.12',
1469             'Unicode::Normalize' => '0.17',
1470             'XS::APItest' => '0.01',
1471             'attributes' => '0.05',
1472             'base' => '1.03',
1473             'bigint' => '0.02',
1474             'bignum' => '0.11',
1475             'bigrat' => '0.04',
1476             'blib' => '1.02',
1477             'encoding' => '1.35',
1478             'sort' => '1.01',
1479             'threads' => '0.99',
1480             },
1481             removed => {
1482             'Encode::Internal' => 1,
1483             'Encode::JP::Constants' => 1,
1484             'Encode::JP::ISO_2022_JP'=> 1,
1485             'Encode::JP::JIS' => 1,
1486             'Encode::JP::Tr' => 1,
1487             'Encode::Tcl' => 1,
1488             'Encode::Tcl::Escape' => 1,
1489             'Encode::Tcl::Extended' => 1,
1490             'Encode::Tcl::HanZi' => 1,
1491             'Encode::Tcl::Table' => 1,
1492             'Encode::XS' => 1,
1493             'Encode::iso10646_1' => 1,
1494             'Encode::usc2_le' => 1,
1495             'Encode::utf8' => 1,
1496             'PerlIO::Scalar' => 1,
1497             'PerlIO::Via' => 1,
1498             }
1499             },
1500             5.008001 => {
1501             delta_from => 5.008,
1502             changed => {
1503             'Attribute::Handlers' => '0.78',
1504             'AutoLoader' => '5.60',
1505             'AutoSplit' => '1.04',
1506             'B' => '1.02',
1507             'B::Asmdata' => '1.01',
1508             'B::Assembler' => '0.06',
1509             'B::Bblock' => '1.02',
1510             'B::Bytecode' => '1.01',
1511             'B::C' => '1.02',
1512             'B::Concise' => '0.56',
1513             'B::Debug' => '1.01',
1514             'B::Deparse' => '0.64',
1515             'B::Disassembler' => '1.03',
1516             'B::Lint' => '1.02',
1517             'B::Terse' => '1.02',
1518             'Benchmark' => '1.051',
1519             'ByteLoader' => '0.05',
1520             'CGI' => '3.00',
1521             'CGI::Carp' => '1.26',
1522             'CGI::Cookie' => '1.24',
1523             'CGI::Fast' => '1.041',
1524             'CGI::Pretty' => '1.07_00',
1525             'CGI::Util' => '1.31',
1526             'CPAN' => '1.76_01',
1527             'CPAN::FirstTime' => '1.60',
1528             'CPAN::Nox' => '1.03',
1529             'Class::Struct' => '0.63',
1530             'Cwd' => '2.08',
1531             'DB_File' => '1.806',
1532             'Data::Dumper' => '2.121',
1533             'Devel::DProf' => '20030813.00',
1534             'Devel::PPPort' => '2.007',
1535             'Devel::Peek' => '1.01',
1536             'Digest' => '1.02',
1537             'Digest::MD5' => '2.27',
1538             'Encode' => '1.9801',
1539             'Encode::Alias' => '1.38',
1540             'Encode::Byte' => '1.23',
1541             'Encode::CJKConstants' => '1.02',
1542             'Encode::CN::HZ' => '1.05',
1543             'Encode::Config' => '1.07',
1544             'Encode::Encoder' => '0.07',
1545             'Encode::Encoding' => '1.33',
1546             'Encode::Guess' => '1.09',
1547             'Encode::JP::JIS7' => '1.12',
1548             'Encode::KR' => '1.23',
1549             'Encode::KR::2022_KR' => '1.06',
1550             'Encode::MIME::Header' => '1.09',
1551             'Encode::Unicode' => '1.40',
1552             'Encode::Unicode::UTF7' => '0.02',
1553             'English' => '1.01',
1554             'Errno' => '1.09_00',
1555             'Exporter' => '5.567',
1556             'Exporter::Heavy' => '5.567',
1557             'ExtUtils::Command' => '1.05',
1558             'ExtUtils::Command::MM' => '0.03',
1559             'ExtUtils::Constant' => '0.14',
1560             'ExtUtils::Install' => '1.32',
1561             'ExtUtils::Installed' => '0.08',
1562             'ExtUtils::Liblist' => '1.01',
1563             'ExtUtils::Liblist::Kid'=> '1.3',
1564             'ExtUtils::MM_Any' => '0.07',
1565             'ExtUtils::MM_BeOS' => '1.04',
1566             'ExtUtils::MM_Cygwin' => '1.06',
1567             'ExtUtils::MM_DOS' => '0.02',
1568             'ExtUtils::MM_MacOS' => '1.07',
1569             'ExtUtils::MM_NW5' => '2.06',
1570             'ExtUtils::MM_OS2' => '1.04',
1571             'ExtUtils::MM_UWIN' => '0.02',
1572             'ExtUtils::MM_Unix' => '1.42',
1573             'ExtUtils::MM_VMS' => '5.70',
1574             'ExtUtils::MM_Win32' => '1.09',
1575             'ExtUtils::MM_Win95' => '0.03',
1576             'ExtUtils::MakeMaker' => '6.17',
1577             'ExtUtils::MakeMaker::bytes'=> '0.01',
1578             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1579             'ExtUtils::Manifest' => '1.42',
1580             'Fcntl' => '1.05',
1581             'File::Basename' => '2.72',
1582             'File::Copy' => '2.06',
1583             'File::Find' => '1.05',
1584             'File::Glob' => '1.02',
1585             'File::Path' => '1.06',
1586             'File::Spec' => '0.86',
1587             'File::Spec::Cygwin' => '1.1',
1588             'File::Spec::Epoc' => '1.1',
1589             'File::Spec::Functions' => '1.3',
1590             'File::Spec::Mac' => '1.4',
1591             'File::Spec::OS2' => '1.2',
1592             'File::Spec::Unix' => '1.5',
1593             'File::Spec::VMS' => '1.4',
1594             'File::Spec::Win32' => '1.4',
1595             'File::Temp' => '0.14',
1596             'FileCache' => '1.03',
1597             'Filter::Util::Call' => '1.0601',
1598             'GDBM_File' => '1.07',
1599             'Getopt::Long' => '2.34',
1600             'Getopt::Std' => '1.04',
1601             'Hash::Util' => '0.05',
1602             'I18N::LangTags' => '0.28',
1603             'I18N::LangTags::List' => '0.26',
1604             'I18N::Langinfo' => '0.02',
1605             'IO' => '1.21',
1606             'IO::Dir' => '1.04',
1607             'IO::File' => '1.10',
1608             'IO::Handle' => '1.23',
1609             'IO::Seekable' => '1.09',
1610             'IO::Select' => '1.16',
1611             'IO::Socket' => '1.28',
1612             'IO::Socket::INET' => '1.27',
1613             'IO::Socket::UNIX' => '1.21',
1614             'IPC::Msg' => '1.02',
1615             'IPC::Open3' => '1.0105',
1616             'IPC::Semaphore' => '1.02',
1617             'IPC::SysV' => '1.04',
1618             'JNI' => '0.2',
1619             'List::Util' => '1.13',
1620             'Locale::Country' => '2.61',
1621             'Locale::Currency' => '2.21',
1622             'Locale::Language' => '2.21',
1623             'Locale::Maketext' => '1.06',
1624             'Locale::Maketext::Guts'=> undef,
1625             'Locale::Maketext::GutsLoader'=> undef,
1626             'Locale::Script' => '2.21',
1627             'MIME::Base64' => '2.20',
1628             'MIME::QuotedPrint' => '2.20',
1629             'Math::BigFloat' => '1.40',
1630             'Math::BigInt' => '1.66',
1631             'Math::BigInt::Calc' => '0.36',
1632             'Math::BigInt::Scalar' => '0.11',
1633             'Math::BigRat' => '0.10',
1634             'Math::Trig' => '1.02',
1635             'NDBM_File' => '1.05',
1636             'NEXT' => '0.60',
1637             'Net::Cmd' => '2.24',
1638             'Net::Domain' => '2.18',
1639             'Net::FTP' => '2.71',
1640             'Net::FTP::A' => '1.16',
1641             'Net::NNTP' => '2.22',
1642             'Net::POP3' => '2.24',
1643             'Net::Ping' => '2.31',
1644             'Net::SMTP' => '2.26',
1645             'Net::hostent' => '1.01',
1646             'Net::servent' => '1.01',
1647             'ODBM_File' => '1.04',
1648             'OS2::DLL' => '1.01',
1649             'OS2::ExtAttr' => '0.02',
1650             'OS2::PrfDB' => '0.03',
1651             'OS2::Process' => '1.01',
1652             'OS2::REXX' => '1.02',
1653             'POSIX' => '1.06',
1654             'PerlIO' => '1.02',
1655             'PerlIO::encoding' => '0.07',
1656             'PerlIO::scalar' => '0.02',
1657             'PerlIO::via' => '0.02',
1658             'PerlIO::via::QuotedPrint'=> '0.05',
1659             'Pod::Checker' => '1.41',
1660             'Pod::Find' => '0.24',
1661             'Pod::Functions' => '1.02',
1662             'Pod::Html' => '1.0501',
1663             'Pod::InputObjects' => '1.14',
1664             'Pod::LaTeX' => '0.55',
1665             'Pod::Man' => '1.37',
1666             'Pod::ParseLink' => '1.06',
1667             'Pod::ParseUtils' => '0.3',
1668             'Pod::Perldoc' => '3.10',
1669             'Pod::Perldoc::BaseTo' => undef,
1670             'Pod::Perldoc::GetOptsOO'=> undef,
1671             'Pod::Perldoc::ToChecker'=> undef,
1672             'Pod::Perldoc::ToMan' => undef,
1673             'Pod::Perldoc::ToNroff' => undef,
1674             'Pod::Perldoc::ToPod' => undef,
1675             'Pod::Perldoc::ToRtf' => undef,
1676             'Pod::Perldoc::ToText' => undef,
1677             'Pod::Perldoc::ToTk' => undef,
1678             'Pod::Perldoc::ToXml' => undef,
1679             'Pod::PlainText' => '2.01',
1680             'Pod::Text' => '2.21',
1681             'Pod::Text::Color' => '1.04',
1682             'Pod::Text::Overstrike' => '1.1',
1683             'Pod::Text::Termcap' => '1.11',
1684             'Pod::Usage' => '1.16',
1685             'SDBM_File' => '1.04',
1686             'Safe' => '2.10',
1687             'Scalar::Util' => '1.13',
1688             'SelfLoader' => '1.0904',
1689             'Shell' => '0.5',
1690             'Socket' => '1.76',
1691             'Storable' => '2.08',
1692             'Switch' => '2.10',
1693             'Symbol' => '1.05',
1694             'Sys::Hostname' => '1.11',
1695             'Sys::Syslog' => '0.04',
1696             'Term::ANSIColor' => '1.07',
1697             'Term::Cap' => '1.08',
1698             'Term::Complete' => '1.401',
1699             'Term::ReadLine' => '1.01',
1700             'Test' => '1.24',
1701             'Test::Builder' => '0.17',
1702             'Test::Harness' => '2.30',
1703             'Test::Harness::Straps' => '0.15',
1704             'Test::More' => '0.47',
1705             'Test::Simple' => '0.47',
1706             'Text::Abbrev' => '1.01',
1707             'Text::Balanced' => '1.95',
1708             'Text::Wrap' => '2001.09291',
1709             'Thread::Semaphore' => '2.01',
1710             'Tie::Array' => '1.03',
1711             'Tie::File' => '0.97',
1712             'Tie::RefHash' => '1.31',
1713             'Time::HiRes' => '1.51',
1714             'Time::Local' => '1.07',
1715             'UNIVERSAL' => '1.01',
1716             'Unicode' => '4.0.0',
1717             'Unicode::Collate' => '0.28',
1718             'Unicode::Normalize' => '0.23',
1719             'Unicode::UCD' => '0.21',
1720             'VMS::Filespec' => '1.11',
1721             'XS::APItest' => '0.02',
1722             'XSLoader' => '0.02',
1723             'attributes' => '0.06',
1724             'base' => '2.03',
1725             'bigint' => '0.04',
1726             'bignum' => '0.14',
1727             'bigrat' => '0.06',
1728             'bytes' => '1.01',
1729             'charnames' => '1.02',
1730             'diagnostics' => '1.11',
1731             'encoding' => '1.47',
1732             'fields' => '2.03',
1733             'filetest' => '1.01',
1734             'if' => '0.03',
1735             'lib' => '0.5565',
1736             'open' => '1.02',
1737             'overload' => '1.01',
1738             're' => '0.04',
1739             'sort' => '1.02',
1740             'strict' => '1.03',
1741             'threads' => '1.00',
1742             'threads::shared' => '0.91',
1743             'utf8' => '1.02',
1744             'vmsish' => '1.01',
1745             'warnings' => '1.03',
1746             },
1747             removed => {
1748             }
1749             },
1750             5.008002 => {
1751             delta_from => 5.008001,
1752             changed => {
1753             'DB_File' => '1.807',
1754             'Devel::PPPort' => '2.009',
1755             'Digest::MD5' => '2.30',
1756             'I18N::LangTags' => '0.29',
1757             'I18N::LangTags::List' => '0.29',
1758             'MIME::Base64' => '2.21',
1759             'MIME::QuotedPrint' => '2.21',
1760             'Net::Domain' => '2.19',
1761             'Net::FTP' => '2.72',
1762             'Pod::Perldoc' => '3.11',
1763             'Time::HiRes' => '1.52',
1764             'Unicode::Collate' => '0.30',
1765             'Unicode::Normalize' => '0.25',
1766             },
1767             removed => {
1768             }
1769             },
1770             5.008003 => {
1771             delta_from => 5.008002,
1772             changed => {
1773             'Benchmark' => '1.052',
1774             'CGI' => '3.01',
1775             'CGI::Carp' => '1.27',
1776             'CGI::Fast' => '1.05',
1777             'CGI::Pretty' => '1.08',
1778             'CGI::Util' => '1.4',
1779             'Cwd' => '2.12',
1780             'DB_File' => '1.808',
1781             'Devel::PPPort' => '2.011',
1782             'Digest' => '1.05',
1783             'Digest::MD5' => '2.33',
1784             'Digest::base' => '1.00',
1785             'Encode' => '1.99',
1786             'Exporter' => '5.57',
1787             'File::CheckTree' => '4.3',
1788             'File::Copy' => '2.07',
1789             'File::Find' => '1.06',
1790             'File::Spec' => '0.87',
1791             'FindBin' => '1.44',
1792             'Getopt::Std' => '1.05',
1793             'Math::BigFloat' => '1.42',
1794             'Math::BigInt' => '1.68',
1795             'Math::BigInt::Calc' => '0.38',
1796             'Math::BigInt::CalcEmu' => '0.02',
1797             'OS2::DLL' => '1.02',
1798             'POSIX' => '1.07',
1799             'PerlIO' => '1.03',
1800             'PerlIO::via::QuotedPrint'=> '0.06',
1801             'Pod::Html' => '1.0502',
1802             'Pod::Parser' => '1.14',
1803             'Pod::Perldoc' => '3.12',
1804             'Pod::PlainText' => '2.02',
1805             'Storable' => '2.09',
1806             'Test::Harness' => '2.40',
1807             'Test::Harness::Assert' => '0.02',
1808             'Test::Harness::Iterator'=> '0.02',
1809             'Test::Harness::Straps' => '0.19',
1810             'Tie::Hash' => '1.01',
1811             'Unicode::Collate' => '0.33',
1812             'Unicode::Normalize' => '0.28',
1813             'XS::APItest' => '0.03',
1814             'base' => '2.04',
1815             'diagnostics' => '1.12',
1816             'encoding' => '1.48',
1817             'threads' => '1.01',
1818             'threads::shared' => '0.92',
1819             },
1820             removed => {
1821             'Math::BigInt::Scalar' => 1,
1822             }
1823             },
1824             5.008004 => {
1825             delta_from => 5.008003,
1826             changed => {
1827             'Attribute::Handlers' => '0.78_01',
1828             'B::Assembler' => '0.07',
1829             'B::Concise' => '0.60',
1830             'B::Deparse' => '0.66',
1831             'Benchmark' => '1.06',
1832             'CGI' => '3.04',
1833             'Carp' => '1.02',
1834             'Cwd' => '2.17',
1835             'DBM_Filter' => '0.01',
1836             'DBM_Filter::compress' => '0.01',
1837             'DBM_Filter::encode' => '0.01',
1838             'DBM_Filter::int32' => '0.01',
1839             'DBM_Filter::null' => '0.01',
1840             'DBM_Filter::utf8' => '0.01',
1841             'Digest' => '1.06',
1842             'DynaLoader' => '1.05',
1843             'Encode' => '1.99_01',
1844             'Encode::CN::HZ' => '1.0501',
1845             'Exporter' => '5.58',
1846             'Exporter::Heavy' => '5.57',
1847             'ExtUtils::Liblist::Kid'=> '1.3001',
1848             'ExtUtils::MM_NW5' => '2.07_02',
1849             'ExtUtils::MM_Win95' => '0.0301',
1850             'File::Find' => '1.07',
1851             'IO::Handle' => '1.24',
1852             'IO::Pipe' => '1.123',
1853             'IPC::Open3' => '1.0106',
1854             'Locale::Maketext' => '1.08',
1855             'MIME::Base64' => '3.01',
1856             'MIME::QuotedPrint' => '3.01',
1857             'Math::BigFloat' => '1.44',
1858             'Math::BigInt' => '1.70',
1859             'Math::BigInt::Calc' => '0.40',
1860             'Math::BigInt::CalcEmu' => '0.04',
1861             'Math::BigRat' => '0.12',
1862             'ODBM_File' => '1.05',
1863             'POSIX' => '1.08',
1864             'Shell' => '0.5.2',
1865             'Socket' => '1.77',
1866             'Storable' => '2.12',
1867             'Sys::Syslog' => '0.05',
1868             'Term::ANSIColor' => '1.08',
1869             'Time::HiRes' => '1.59',
1870             'Unicode' => '4.0.1',
1871             'Unicode::UCD' => '0.22',
1872             'Win32' => '0.23',
1873             'base' => '2.05',
1874             'bigint' => '0.05',
1875             'bignum' => '0.15',
1876             'charnames' => '1.03',
1877             'open' => '1.03',
1878             'threads' => '1.03',
1879             'utf8' => '1.03',
1880             },
1881             removed => {
1882             }
1883             },
1884             5.008005 => {
1885             delta_from => 5.008004,
1886             changed => {
1887             'B::Concise' => '0.61',
1888             'B::Deparse' => '0.67',
1889             'CGI' => '3.05',
1890             'CGI::Carp' => '1.28',
1891             'CGI::Util' => '1.5',
1892             'Carp' => '1.03',
1893             'Carp::Heavy' => '1.03',
1894             'Cwd' => '2.19',
1895             'DB_File' => '1.809',
1896             'Digest' => '1.08',
1897             'Encode' => '2.01',
1898             'Encode::Alias' => '2.00',
1899             'Encode::Byte' => '2.00',
1900             'Encode::CJKConstants' => '2.00',
1901             'Encode::CN' => '2.00',
1902             'Encode::CN::HZ' => '2.01',
1903             'Encode::Config' => '2.00',
1904             'Encode::EBCDIC' => '2.00',
1905             'Encode::Encoder' => '2.00',
1906             'Encode::Encoding' => '2.00',
1907             'Encode::Guess' => '2.00',
1908             'Encode::JP' => '2.00',
1909             'Encode::JP::H2Z' => '2.00',
1910             'Encode::JP::JIS7' => '2.00',
1911             'Encode::KR' => '2.00',
1912             'Encode::KR::2022_KR' => '2.00',
1913             'Encode::MIME::Header' => '2.00',
1914             'Encode::Symbol' => '2.00',
1915             'Encode::TW' => '2.00',
1916             'Encode::Unicode' => '2.00',
1917             'Encode::Unicode::UTF7' => '2.01',
1918             'File::Basename' => '2.73',
1919             'File::Copy' => '2.08',
1920             'File::Glob' => '1.03',
1921             'FileCache' => '1.04_01',
1922             'I18N::LangTags' => '0.33',
1923             'I18N::LangTags::Detect'=> '1.03',
1924             'List::Util' => '1.14',
1925             'Locale::Constants' => '2.07',
1926             'Locale::Country' => '2.07',
1927             'Locale::Currency' => '2.07',
1928             'Locale::Language' => '2.07',
1929             'Locale::Maketext' => '1.09',
1930             'Locale::Script' => '2.07',
1931             'Net::Cmd' => '2.26',
1932             'Net::FTP' => '2.75',
1933             'Net::NNTP' => '2.23',
1934             'Net::POP3' => '2.28',
1935             'Net::SMTP' => '2.29',
1936             'Net::Time' => '2.10',
1937             'Pod::Checker' => '1.42',
1938             'Pod::Find' => '0.2401',
1939             'Pod::LaTeX' => '0.56',
1940             'Pod::ParseUtils' => '1.2',
1941             'Pod::Perldoc' => '3.13',
1942             'Safe' => '2.11',
1943             'Scalar::Util' => '1.14',
1944             'Shell' => '0.6',
1945             'Storable' => '2.13',
1946             'Term::Cap' => '1.09',
1947             'Test' => '1.25',
1948             'Test::Harness' => '2.42',
1949             'Text::ParseWords' => '3.22',
1950             'Text::Wrap' => '2001.09292',
1951             'Time::Local' => '1.10',
1952             'Unicode::Collate' => '0.40',
1953             'Unicode::Normalize' => '0.30',
1954             'XS::APItest' => '0.04',
1955             'autouse' => '1.04',
1956             'base' => '2.06',
1957             'charnames' => '1.04',
1958             'diagnostics' => '1.13',
1959             'encoding' => '2.00',
1960             'threads' => '1.05',
1961             'utf8' => '1.04',
1962             },
1963             removed => {
1964             }
1965             },
1966             5.008006 => {
1967             delta_from => 5.008005,
1968             changed => {
1969             'B' => '1.07',
1970             'B::C' => '1.04',
1971             'B::Concise' => '0.64',
1972             'B::Debug' => '1.02',
1973             'B::Deparse' => '0.69',
1974             'B::Lint' => '1.03',
1975             'B::Showlex' => '1.02',
1976             'Cwd' => '3.01',
1977             'DB_File' => '1.810',
1978             'Data::Dumper' => '2.121_02',
1979             'Devel::PPPort' => '3.03',
1980             'Devel::Peek' => '1.02',
1981             'Encode' => '2.08',
1982             'Encode::Alias' => '2.02',
1983             'Encode::Encoding' => '2.02',
1984             'Encode::JP' => '2.01',
1985             'Encode::Unicode' => '2.02',
1986             'Exporter::Heavy' => '5.58',
1987             'ExtUtils::Constant' => '0.1401',
1988             'File::Spec' => '3.01',
1989             'File::Spec::Win32' => '1.5',
1990             'I18N::LangTags' => '0.35',
1991             'I18N::LangTags::List' => '0.35',
1992             'MIME::Base64' => '3.05',
1993             'MIME::QuotedPrint' => '3.03',
1994             'Math::BigFloat' => '1.47',
1995             'Math::BigInt' => '1.73',
1996             'Math::BigInt::Calc' => '0.43',
1997             'Math::BigRat' => '0.13',
1998             'Text::ParseWords' => '3.23',
1999             'Time::HiRes' => '1.65',
2000             'XS::APItest' => '0.05',
2001             'diagnostics' => '1.14',
2002             'encoding' => '2.01',
2003             'open' => '1.04',
2004             'overload' => '1.02',
2005             },
2006             removed => {
2007             }
2008             },
2009             5.008007 => {
2010             delta_from => 5.008006,
2011             changed => {
2012             'B' => '1.09',
2013             'B::Concise' => '0.65',
2014             'B::Deparse' => '0.7',
2015             'B::Disassembler' => '1.04',
2016             'B::Terse' => '1.03',
2017             'Benchmark' => '1.07',
2018             'CGI' => '3.10',
2019             'CGI::Carp' => '1.29',
2020             'CGI::Cookie' => '1.25',
2021             'Carp' => '1.04',
2022             'Carp::Heavy' => '1.04',
2023             'Class::ISA' => '0.33',
2024             'Cwd' => '3.05',
2025             'DB_File' => '1.811',
2026             'Data::Dumper' => '2.121_04',
2027             'Devel::DProf' => '20050310.00',
2028             'Devel::PPPort' => '3.06',
2029             'Digest' => '1.10',
2030             'Digest::file' => '0.01',
2031             'Encode' => '2.10',
2032             'Encode::Alias' => '2.03',
2033             'Errno' => '1.09_01',
2034             'ExtUtils::Constant' => '0.16',
2035             'ExtUtils::Constant::Base'=> '0.01',
2036             'ExtUtils::Constant::Utils'=> '0.01',
2037             'ExtUtils::Constant::XS'=> '0.01',
2038             'File::Find' => '1.09',
2039             'File::Glob' => '1.04',
2040             'File::Path' => '1.07',
2041             'File::Spec' => '3.05',
2042             'File::Temp' => '0.16',
2043             'FileCache' => '1.05',
2044             'IO::File' => '1.11',
2045             'IO::Socket::INET' => '1.28',
2046             'Math::BigFloat' => '1.51',
2047             'Math::BigInt' => '1.77',
2048             'Math::BigInt::Calc' => '0.47',
2049             'Math::BigInt::CalcEmu' => '0.05',
2050             'Math::BigRat' => '0.15',
2051             'Pod::Find' => '1.3',
2052             'Pod::Html' => '1.0503',
2053             'Pod::InputObjects' => '1.3',
2054             'Pod::LaTeX' => '0.58',
2055             'Pod::ParseUtils' => '1.3',
2056             'Pod::Parser' => '1.3',
2057             'Pod::Perldoc' => '3.14',
2058             'Pod::Select' => '1.3',
2059             'Pod::Usage' => '1.3',
2060             'SelectSaver' => '1.01',
2061             'Symbol' => '1.06',
2062             'Sys::Syslog' => '0.06',
2063             'Term::ANSIColor' => '1.09',
2064             'Term::Complete' => '1.402',
2065             'Test::Builder' => '0.22',
2066             'Test::Harness' => '2.48',
2067             'Test::Harness::Point' => '0.01',
2068             'Test::Harness::Straps' => '0.23',
2069             'Test::More' => '0.54',
2070             'Test::Simple' => '0.54',
2071             'Text::ParseWords' => '3.24',
2072             'Text::Wrap' => '2001.09293',
2073             'Tie::RefHash' => '1.32',
2074             'Time::HiRes' => '1.66',
2075             'Time::Local' => '1.11',
2076             'Unicode' => '4.1.0',
2077             'Unicode::Normalize' => '0.32',
2078             'Unicode::UCD' => '0.23',
2079             'Win32' => '0.24',
2080             'XS::APItest' => '0.06',
2081             'base' => '2.07',
2082             'bigint' => '0.07',
2083             'bignum' => '0.17',
2084             'bigrat' => '0.08',
2085             'bytes' => '1.02',
2086             'constant' => '1.05',
2087             'overload' => '1.03',
2088             'threads::shared' => '0.93',
2089             'utf8' => '1.05',
2090             },
2091             removed => {
2092             'JNI' => 1,
2093             'JPL::AutoLoader' => 1,
2094             'JPL::Class' => 1,
2095             'JPL::Compile' => 1,
2096             }
2097             },
2098             5.008008 => {
2099             delta_from => 5.008007,
2100             changed => {
2101             'Attribute::Handlers' => '0.78_02',
2102             'B' => '1.09_01',
2103             'B::Bblock' => '1.02_01',
2104             'B::Bytecode' => '1.01_01',
2105             'B::C' => '1.04_01',
2106             'B::CC' => '1.00_01',
2107             'B::Concise' => '0.66',
2108             'B::Debug' => '1.02_01',
2109             'B::Deparse' => '0.71',
2110             'B::Disassembler' => '1.05',
2111             'B::Terse' => '1.03_01',
2112             'ByteLoader' => '0.06',
2113             'CGI' => '3.15',
2114             'CGI::Cookie' => '1.26',
2115             'CPAN' => '1.76_02',
2116             'Cwd' => '3.12',
2117             'DB' => '1.01',
2118             'DB_File' => '1.814',
2119             'Data::Dumper' => '2.121_08',
2120             'Devel::DProf' => '20050603.00',
2121             'Devel::PPPort' => '3.06_01',
2122             'Devel::Peek' => '1.03',
2123             'Digest' => '1.14',
2124             'Digest::MD5' => '2.36',
2125             'Digest::file' => '1.00',
2126             'Dumpvalue' => '1.12',
2127             'Encode' => '2.12',
2128             'Encode::Alias' => '2.04',
2129             'Encode::Config' => '2.01',
2130             'Encode::MIME::Header' => '2.01',
2131             'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2132             'English' => '1.02',
2133             'ExtUtils::Command' => '1.09',
2134             'ExtUtils::Command::MM' => '0.05',
2135             'ExtUtils::Constant' => '0.17',
2136             'ExtUtils::Embed' => '1.26',
2137             'ExtUtils::Install' => '1.33',
2138             'ExtUtils::Liblist::Kid'=> '1.3',
2139             'ExtUtils::MM' => '0.05',
2140             'ExtUtils::MM_AIX' => '0.03',
2141             'ExtUtils::MM_Any' => '0.13',
2142             'ExtUtils::MM_BeOS' => '1.05',
2143             'ExtUtils::MM_Cygwin' => '1.08',
2144             'ExtUtils::MM_MacOS' => '1.08',
2145             'ExtUtils::MM_NW5' => '2.08',
2146             'ExtUtils::MM_OS2' => '1.05',
2147             'ExtUtils::MM_QNX' => '0.02',
2148             'ExtUtils::MM_Unix' => '1.50',
2149             'ExtUtils::MM_VMS' => '5.73',
2150             'ExtUtils::MM_VOS' => '0.02',
2151             'ExtUtils::MM_Win32' => '1.12',
2152             'ExtUtils::MM_Win95' => '0.04',
2153             'ExtUtils::MakeMaker' => '6.30',
2154             'ExtUtils::MakeMaker::Config'=> '0.02',
2155             'ExtUtils::Manifest' => '1.46',
2156             'File::Basename' => '2.74',
2157             'File::Copy' => '2.09',
2158             'File::Find' => '1.10',
2159             'File::Glob' => '1.05',
2160             'File::Path' => '1.08',
2161             'File::Spec' => '3.12',
2162             'File::Spec::Win32' => '1.6',
2163             'FileCache' => '1.06',
2164             'Filter::Simple' => '0.82',
2165             'FindBin' => '1.47',
2166             'GDBM_File' => '1.08',
2167             'Getopt::Long' => '2.35',
2168             'IO' => '1.22',
2169             'IO::Dir' => '1.05',
2170             'IO::File' => '1.13',
2171             'IO::Handle' => '1.25',
2172             'IO::Pipe' => '1.13',
2173             'IO::Poll' => '0.07',
2174             'IO::Seekable' => '1.10',
2175             'IO::Select' => '1.17',
2176             'IO::Socket' => '1.29',
2177             'IO::Socket::INET' => '1.29',
2178             'IO::Socket::UNIX' => '1.22',
2179             'IPC::Open2' => '1.02',
2180             'IPC::Open3' => '1.02',
2181             'List::Util' => '1.18',
2182             'MIME::Base64' => '3.07',
2183             'MIME::QuotedPrint' => '3.07',
2184             'Math::Complex' => '1.35',
2185             'Math::Trig' => '1.03',
2186             'NDBM_File' => '1.06',
2187             'ODBM_File' => '1.06',
2188             'OS2::PrfDB' => '0.04',
2189             'OS2::Process' => '1.02',
2190             'OS2::REXX' => '1.03',
2191             'Opcode' => '1.06',
2192             'POSIX' => '1.09',
2193             'PerlIO' => '1.04',
2194             'PerlIO::encoding' => '0.09',
2195             'PerlIO::scalar' => '0.04',
2196             'PerlIO::via' => '0.03',
2197             'Pod::Checker' => '1.43',
2198             'Pod::Find' => '1.34',
2199             'Pod::Functions' => '1.03',
2200             'Pod::Html' => '1.0504',
2201             'Pod::ParseUtils' => '1.33',
2202             'Pod::Parser' => '1.32',
2203             'Pod::Usage' => '1.33',
2204             'SDBM_File' => '1.05',
2205             'Safe' => '2.12',
2206             'Scalar::Util' => '1.18',
2207             'Socket' => '1.78',
2208             'Storable' => '2.15',
2209             'Switch' => '2.10_01',
2210             'Sys::Syslog' => '0.13',
2211             'Term::ANSIColor' => '1.10',
2212             'Term::ReadLine' => '1.02',
2213             'Test::Builder' => '0.32',
2214             'Test::Builder::Module' => '0.02',
2215             'Test::Builder::Tester' => '1.02',
2216             'Test::Builder::Tester::Color'=> undef,
2217             'Test::Harness' => '2.56',
2218             'Test::Harness::Straps' => '0.26',
2219             'Test::More' => '0.62',
2220             'Test::Simple' => '0.62',
2221             'Text::Tabs' => '2005.0824',
2222             'Text::Wrap' => '2005.082401',
2223             'Tie::Hash' => '1.02',
2224             'Time::HiRes' => '1.86',
2225             'Unicode::Collate' => '0.52',
2226             'Unicode::UCD' => '0.24',
2227             'User::grent' => '1.01',
2228             'Win32' => '0.2601',
2229             'XS::APItest' => '0.08',
2230             'XS::Typemap' => '0.02',
2231             'XSLoader' => '0.06',
2232             'attrs' => '1.02',
2233             'autouse' => '1.05',
2234             'blib' => '1.03',
2235             'charnames' => '1.05',
2236             'diagnostics' => '1.15',
2237             'encoding' => '2.02',
2238             'if' => '0.05',
2239             'open' => '1.05',
2240             'ops' => '1.01',
2241             'overload' => '1.04',
2242             're' => '0.05',
2243             'threads' => '1.07',
2244             'threads::shared' => '0.94',
2245             'utf8' => '1.06',
2246             'vmsish' => '1.02',
2247             'warnings' => '1.05',
2248             'warnings::register' => '1.01',
2249             },
2250             removed => {
2251             }
2252             },
2253             5.008009 => {
2254             delta_from => 5.008008,
2255             changed => {
2256             'Attribute::Handlers' => '0.78_03',
2257             'AutoLoader' => '5.67',
2258             'AutoSplit' => '1.06',
2259             'B' => '1.19',
2260             'B::Asmdata' => '1.02',
2261             'B::Assembler' => '0.08',
2262             'B::C' => '1.05',
2263             'B::Concise' => '0.76',
2264             'B::Debug' => '1.05',
2265             'B::Deparse' => '0.87',
2266             'B::Lint' => '1.11',
2267             'B::Lint::Debug' => undef,
2268             'B::Terse' => '1.05',
2269             'Benchmark' => '1.1',
2270             'CGI' => '3.42',
2271             'CGI::Carp' => '1.30_01',
2272             'CGI::Cookie' => '1.29',
2273             'CGI::Fast' => '1.07',
2274             'CGI::Util' => '1.5_01',
2275             'CPAN' => '1.9301',
2276             'CPAN::Debug' => '5.5',
2277             'CPAN::DeferedCode' => '5.50',
2278             'CPAN::Distroprefs' => '6',
2279             'CPAN::FirstTime' => '5.5_01',
2280             'CPAN::HandleConfig' => '5.5',
2281             'CPAN::Kwalify' => '5.50',
2282             'CPAN::Nox' => '5.50',
2283             'CPAN::Queue' => '5.5',
2284             'CPAN::Tarzip' => '5.5',
2285             'CPAN::Version' => '5.5',
2286             'Carp' => '1.10',
2287             'Carp::Heavy' => '1.10',
2288             'Cwd' => '3.29',
2289             'DBM_Filter' => '0.02',
2290             'DBM_Filter::compress' => '0.02',
2291             'DBM_Filter::encode' => '0.02',
2292             'DBM_Filter::int32' => '0.02',
2293             'DBM_Filter::null' => '0.02',
2294             'DBM_Filter::utf8' => '0.02',
2295             'DB_File' => '1.817',
2296             'Data::Dumper' => '2.121_17',
2297             'Devel::DProf' => '20080331.00',
2298             'Devel::InnerPackage' => '0.3',
2299             'Devel::PPPort' => '3.14',
2300             'Devel::Peek' => '1.04',
2301             'Digest' => '1.15',
2302             'Digest::MD5' => '2.37',
2303             'DirHandle' => '1.02',
2304             'DynaLoader' => '1.09',
2305             'Encode' => '2.26',
2306             'Encode::Alias' => '2.10',
2307             'Encode::Byte' => '2.03',
2308             'Encode::CJKConstants' => '2.02',
2309             'Encode::CN' => '2.02',
2310             'Encode::CN::HZ' => '2.05',
2311             'Encode::Config' => '2.05',
2312             'Encode::EBCDIC' => '2.02',
2313             'Encode::Encoder' => '2.01',
2314             'Encode::Encoding' => '2.05',
2315             'Encode::GSM0338' => '2.01',
2316             'Encode::Guess' => '2.02',
2317             'Encode::JP' => '2.03',
2318             'Encode::JP::H2Z' => '2.02',
2319             'Encode::JP::JIS7' => '2.04',
2320             'Encode::KR' => '2.02',
2321             'Encode::KR::2022_KR' => '2.02',
2322             'Encode::MIME::Header' => '2.05',
2323             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2324             'Encode::MIME::Name' => '1.01',
2325             'Encode::Symbol' => '2.02',
2326             'Encode::TW' => '2.02',
2327             'Encode::Unicode' => '2.05',
2328             'Encode::Unicode::UTF7' => '2.04',
2329             'English' => '1.03',
2330             'Errno' => '1.10',
2331             'Exporter' => '5.63',
2332             'Exporter::Heavy' => '5.63',
2333             'ExtUtils::Command' => '1.15',
2334             'ExtUtils::Command::MM' => '6.48',
2335             'ExtUtils::Constant' => '0.21',
2336             'ExtUtils::Constant::Base'=> '0.04',
2337             'ExtUtils::Constant::ProxySubs'=> '0.06',
2338             'ExtUtils::Constant::Utils'=> '0.02',
2339             'ExtUtils::Constant::XS'=> '0.02',
2340             'ExtUtils::Embed' => '1.28',
2341             'ExtUtils::Install' => '1.50_01',
2342             'ExtUtils::Installed' => '1.43',
2343             'ExtUtils::Liblist' => '6.48',
2344             'ExtUtils::Liblist::Kid'=> '6.48',
2345             'ExtUtils::MM' => '6.48',
2346             'ExtUtils::MM_AIX' => '6.48',
2347             'ExtUtils::MM_Any' => '6.48',
2348             'ExtUtils::MM_BeOS' => '6.48',
2349             'ExtUtils::MM_Cygwin' => '6.48',
2350             'ExtUtils::MM_DOS' => '6.48',
2351             'ExtUtils::MM_Darwin' => '6.48',
2352             'ExtUtils::MM_MacOS' => '6.48',
2353             'ExtUtils::MM_NW5' => '6.48',
2354             'ExtUtils::MM_OS2' => '6.48',
2355             'ExtUtils::MM_QNX' => '6.48',
2356             'ExtUtils::MM_UWIN' => '6.48',
2357             'ExtUtils::MM_Unix' => '6.48',
2358             'ExtUtils::MM_VMS' => '6.48',
2359             'ExtUtils::MM_VOS' => '6.48',
2360             'ExtUtils::MM_Win32' => '6.48',
2361             'ExtUtils::MM_Win95' => '6.48',
2362             'ExtUtils::MY' => '6.48',
2363             'ExtUtils::MakeMaker' => '6.48',
2364             'ExtUtils::MakeMaker::Config'=> '6.48',
2365             'ExtUtils::MakeMaker::bytes'=> '6.48',
2366             'ExtUtils::MakeMaker::vmsish'=> '6.48',
2367             'ExtUtils::Manifest' => '1.55',
2368             'ExtUtils::Mkbootstrap' => '6.48',
2369             'ExtUtils::Mksymlists' => '6.48',
2370             'ExtUtils::Packlist' => '1.43',
2371             'ExtUtils::ParseXS' => '2.19',
2372             'ExtUtils::XSSymSet' => '1.1',
2373             'ExtUtils::testlib' => '6.48',
2374             'Fatal' => '1.06',
2375             'Fcntl' => '1.06',
2376             'File::Basename' => '2.77',
2377             'File::CheckTree' => '4.4',
2378             'File::Compare' => '1.1005',
2379             'File::Copy' => '2.13',
2380             'File::DosGlob' => '1.01',
2381             'File::Find' => '1.13',
2382             'File::Glob' => '1.06',
2383             'File::Path' => '2.07_02',
2384             'File::Spec' => '3.29',
2385             'File::Spec::Cygwin' => '3.29',
2386             'File::Spec::Epoc' => '3.29',
2387             'File::Spec::Functions' => '3.29',
2388             'File::Spec::Mac' => '3.29',
2389             'File::Spec::OS2' => '3.29',
2390             'File::Spec::Unix' => '3.29',
2391             'File::Spec::VMS' => '3.29',
2392             'File::Spec::Win32' => '3.29',
2393             'File::Temp' => '0.20',
2394             'File::stat' => '1.01',
2395             'FileCache' => '1.07',
2396             'Filter::Simple' => '0.83',
2397             'Filter::Util::Call' => '1.07',
2398             'FindBin' => '1.49',
2399             'GDBM_File' => '1.09',
2400             'Getopt::Long' => '2.37',
2401             'Getopt::Std' => '1.06',
2402             'Hash::Util' => '0.06',
2403             'IO' => '1.23',
2404             'IO::Dir' => '1.06',
2405             'IO::File' => '1.14',
2406             'IO::Handle' => '1.27',
2407             'IO::Socket' => '1.30',
2408             'IO::Socket::INET' => '1.31',
2409             'IO::Socket::UNIX' => '1.23',
2410             'IPC::Msg' => '2.00',
2411             'IPC::Open2' => '1.03',
2412             'IPC::Open3' => '1.03',
2413             'IPC::Semaphore' => '2.00',
2414             'IPC::SharedMem' => '2.00',
2415             'IPC::SysV' => '2.00',
2416             'List::Util' => '1.19',
2417             'Locale::Maketext' => '1.13',
2418             'Locale::Maketext::Guts'=> '1.13',
2419             'Locale::Maketext::GutsLoader'=> '1.13',
2420             'Math::BigFloat' => '1.60',
2421             'Math::BigInt' => '1.89',
2422             'Math::BigInt::Calc' => '0.52',
2423             'Math::BigRat' => '0.22',
2424             'Math::Complex' => '1.54',
2425             'Math::Trig' => '1.18',
2426             'Module::CoreList' => '2.17',
2427             'Module::Pluggable' => '3.8',
2428             'Module::Pluggable::Object'=> '3.6',
2429             'NDBM_File' => '1.07',
2430             'NEXT' => '0.61',
2431             'Net::Cmd' => '2.29',
2432             'Net::Config' => '1.11',
2433             'Net::Domain' => '2.20',
2434             'Net::FTP' => '2.77',
2435             'Net::FTP::A' => '1.18',
2436             'Net::NNTP' => '2.24',
2437             'Net::POP3' => '2.29',
2438             'Net::Ping' => '2.35',
2439             'Net::SMTP' => '2.31',
2440             'O' => '1.01',
2441             'ODBM_File' => '1.07',
2442             'OS2::DLL' => '1.03',
2443             'OS2::Process' => '1.03',
2444             'Opcode' => '1.0601',
2445             'POSIX' => '1.15',
2446             'PerlIO' => '1.05',
2447             'PerlIO::encoding' => '0.11',
2448             'PerlIO::scalar' => '0.06',
2449             'PerlIO::via' => '0.05',
2450             'Pod::Html' => '1.09',
2451             'Pod::ParseUtils' => '1.35',
2452             'Pod::Parser' => '1.35',
2453             'Pod::Select' => '1.35',
2454             'Pod::Usage' => '1.35',
2455             'SDBM_File' => '1.06',
2456             'Safe' => '2.16',
2457             'Scalar::Util' => '1.19',
2458             'SelfLoader' => '1.17',
2459             'Shell' => '0.72',
2460             'Socket' => '1.81',
2461             'Storable' => '2.19',
2462             'Switch' => '2.13',
2463             'Sys::Syslog' => '0.27',
2464             'Sys::Syslog::win32::Win32'=> undef,
2465             'Term::ANSIColor' => '1.12',
2466             'Term::Cap' => '1.12',
2467             'Term::ReadLine' => '1.03',
2468             'Test::Builder' => '0.80',
2469             'Test::Builder::Module' => '0.80',
2470             'Test::Builder::Tester' => '1.13',
2471             'Test::Harness' => '2.64',
2472             'Test::Harness::Results'=> '0.01_01',
2473             'Test::Harness::Straps' => '0.26_01',
2474             'Test::Harness::Util' => '0.01',
2475             'Test::More' => '0.80',
2476             'Test::Simple' => '0.80',
2477             'Text::Balanced' => '1.98',
2478             'Text::ParseWords' => '3.27',
2479             'Text::Soundex' => '3.03',
2480             'Text::Tabs' => '2007.1117',
2481             'Text::Wrap' => '2006.1117',
2482             'Thread' => '2.01',
2483             'Thread::Queue' => '2.11',
2484             'Thread::Semaphore' => '2.09',
2485             'Tie::Handle' => '4.2',
2486             'Tie::Hash' => '1.03',
2487             'Tie::Memoize' => '1.1',
2488             'Tie::RefHash' => '1.38',
2489             'Tie::Scalar' => '1.01',
2490             'Tie::StdHandle' => '4.2',
2491             'Time::HiRes' => '1.9715',
2492             'Time::Local' => '1.1901',
2493             'Time::gmtime' => '1.03',
2494             'Unicode' => '5.1.0',
2495             'Unicode::Normalize' => '1.02',
2496             'Unicode::UCD' => '0.25',
2497             'VMS::DCLsym' => '1.03',
2498             'VMS::Stdio' => '2.4',
2499             'Win32' => '0.38',
2500             'Win32API::File' => '0.1001_01',
2501             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2502             'Win32CORE' => '0.02',
2503             'XS::APItest' => '0.15',
2504             'XS::Typemap' => '0.03',
2505             'XSLoader' => '0.10',
2506             'attributes' => '0.09',
2507             'autouse' => '1.06',
2508             'base' => '2.13',
2509             'bigint' => '0.23',
2510             'bignum' => '0.23',
2511             'bigrat' => '0.23',
2512             'blib' => '1.04',
2513             'charnames' => '1.06',
2514             'constant' => '1.17',
2515             'diagnostics' => '1.16',
2516             'encoding' => '2.6_01',
2517             'fields' => '2.12',
2518             'filetest' => '1.02',
2519             'lib' => '0.61',
2520             'open' => '1.06',
2521             'ops' => '1.02',
2522             'overload' => '1.06',
2523             're' => '0.0601',
2524             'sigtrap' => '1.04',
2525             'threads' => '1.71',
2526             'threads::shared' => '1.27',
2527             'utf8' => '1.07',
2528             'warnings' => '1.05_01',
2529             },
2530             removed => {
2531             }
2532             },
2533             5.009 => {
2534             delta_from => 5.008002,
2535             changed => {
2536             'B' => '1.03',
2537             'B::C' => '1.03',
2538             'B::Concise' => '0.57',
2539             'B::Deparse' => '0.65',
2540             'DB_File' => '1.806',
2541             'Devel::PPPort' => '2.008',
2542             'English' => '1.02',
2543             'Fatal' => '1.04',
2544             'OS2::DLL' => '1.02',
2545             'Opcode' => '1.06',
2546             'Time::HiRes' => '1.51',
2547             'Unicode::Collate' => '0.28',
2548             'Unicode::Normalize' => '0.23',
2549             'XSLoader' => '0.03',
2550             'assertions' => '0.01',
2551             'assertions::activate' => '0.01',
2552             'overload' => '1.02',
2553             'version' => '0.29',
2554             },
2555             removed => {
2556             }
2557             },
2558             5.009001 => {
2559             delta_from => 5.008004,
2560             changed => {
2561             'B' => '1.05',
2562             'B::Assembler' => '0.06',
2563             'B::C' => '1.04',
2564             'B::Concise' => '0.59',
2565             'B::Debug' => '1.02',
2566             'B::Deparse' => '0.65',
2567             'DB_File' => '1.808_01',
2568             'Devel::PPPort' => '2.011_01',
2569             'Digest' => '1.05',
2570             'DynaLoader' => '1.04',
2571             'English' => '1.02',
2572             'Exporter::Heavy' => '5.567',
2573             'ExtUtils::Command' => '1.07',
2574             'ExtUtils::Liblist::Kid'=> '1.3',
2575             'ExtUtils::MM_Any' => '0.0901',
2576             'ExtUtils::MM_Cygwin' => '1.07',
2577             'ExtUtils::MM_NW5' => '2.07_01',
2578             'ExtUtils::MM_Unix' => '1.45_01',
2579             'ExtUtils::MM_VMS' => '5.71_01',
2580             'ExtUtils::MM_Win32' => '1.10_01',
2581             'ExtUtils::MM_Win95' => '0.03',
2582             'ExtUtils::MakeMaker' => '6.21_02',
2583             'ExtUtils::Manifest' => '1.43',
2584             'Fatal' => '1.04',
2585             'Getopt::Long' => '2.3401',
2586             'IO::Handle' => '1.23',
2587             'IO::Pipe' => '1.122',
2588             'IPC::Open3' => '1.0105',
2589             'MIME::Base64' => '3.00_01',
2590             'MIME::QuotedPrint' => '3.00',
2591             'Memoize' => '1.01_01',
2592             'ODBM_File' => '1.04',
2593             'Opcode' => '1.06',
2594             'POSIX' => '1.07',
2595             'Storable' => '2.11',
2596             'Time::HiRes' => '1.56',
2597             'Time::Local' => '1.07_94',
2598             'UNIVERSAL' => '1.02',
2599             'Unicode' => '4.0.0',
2600             'Unicode::UCD' => '0.21',
2601             'XSLoader' => '0.03',
2602             'assertions' => '0.01',
2603             'assertions::activate' => '0.01',
2604             'base' => '2.04',
2605             'if' => '0.0401',
2606             'open' => '1.02',
2607             'overload' => '1.02',
2608             'threads' => '1.02',
2609             'utf8' => '1.02',
2610             'version' => '0.36',
2611             },
2612             removed => {
2613             }
2614             },
2615             5.009002 => {
2616             delta_from => 5.008007,
2617             changed => {
2618             'B' => '1.07',
2619             'B::Concise' => '0.64',
2620             'B::Deparse' => '0.69',
2621             'B::Disassembler' => '1.03',
2622             'B::Terse' => '1.02',
2623             'CGI' => '3.07',
2624             'Config::Extensions' => '0.01',
2625             'Devel::DProf' => '20030813.00',
2626             'DynaLoader' => '1.07',
2627             'Encode' => '2.09',
2628             'Encode::Alias' => '2.02',
2629             'English' => '1.03',
2630             'Exporter' => '5.59',
2631             'Exporter::Heavy' => '5.59',
2632             'ExtUtils::Command' => '1.07',
2633             'ExtUtils::Command::MM' => '0.03_01',
2634             'ExtUtils::Embed' => '1.26',
2635             'ExtUtils::Liblist::Kid'=> '1.3',
2636             'ExtUtils::MM_Any' => '0.10',
2637             'ExtUtils::MM_Cygwin' => '1.07',
2638             'ExtUtils::MM_MacOS' => '1.08',
2639             'ExtUtils::MM_NW5' => '2.07',
2640             'ExtUtils::MM_Unix' => '1.46_01',
2641             'ExtUtils::MM_VMS' => '5.71',
2642             'ExtUtils::MM_Win32' => '1.10',
2643             'ExtUtils::MM_Win95' => '0.03',
2644             'ExtUtils::MakeMaker' => '6.25',
2645             'ExtUtils::Manifest' => '1.44',
2646             'Fatal' => '1.04',
2647             'File::Path' => '1.06',
2648             'FileCache' => '1.04_01',
2649             'Getopt::Long' => '2.3401',
2650             'IO::File' => '1.10',
2651             'IO::Socket::INET' => '1.27',
2652             'Math::BigFloat' => '1.49',
2653             'Math::BigInt' => '1.75',
2654             'Math::BigInt::Calc' => '0.45',
2655             'Math::BigRat' => '0.14',
2656             'Memoize' => '1.01_01',
2657             'Module::CoreList' => '1.99',
2658             'NEXT' => '0.60_01',
2659             'Opcode' => '1.06',
2660             'Pod::Html' => '1.0502',
2661             'Scalar::Util' => '1.14_1',
2662             'Storable' => '2.14',
2663             'Symbol' => '1.05',
2664             'Test::Harness' => '2.46',
2665             'Test::Harness::Straps' => '0.20_01',
2666             'Text::Balanced' => '1.95_01',
2667             'Text::Wrap' => '2001.09292',
2668             'UNIVERSAL' => '1.02',
2669             'Unicode' => '4.0.1',
2670             'Unicode::Normalize' => '0.30',
2671             'Unicode::UCD' => '0.22',
2672             'Win32' => '0.23',
2673             'XS::APItest' => '0.05',
2674             'XSLoader' => '0.03',
2675             'assertions' => '0.01',
2676             'assertions::activate' => '0.01',
2677             'base' => '2.06',
2678             'bigint' => '0.06',
2679             'bignum' => '0.16',
2680             'bigrat' => '0.07',
2681             'bytes' => '1.01',
2682             'encoding::warnings' => '0.05',
2683             'if' => '0.0401',
2684             're' => '0.05',
2685             'threads::shared' => '0.92',
2686             'utf8' => '1.04',
2687             'version' => '0.42',
2688             'warnings' => '1.04',
2689             },
2690             removed => {
2691             'Test::Harness::Point' => 1,
2692             }
2693             },
2694             5.009003 => {
2695             delta_from => 5.008008,
2696             changed => {
2697             'Archive::Tar' => '1.26_01',
2698             'Archive::Tar::Constant'=> '0.02',
2699             'Archive::Tar::File' => '0.02',
2700             'AutoSplit' => '1.04_01',
2701             'B' => '1.10',
2702             'B::Bblock' => '1.02',
2703             'B::Bytecode' => '1.01',
2704             'B::C' => '1.04',
2705             'B::CC' => '1.00',
2706             'B::Concise' => '0.67',
2707             'B::Debug' => '1.02',
2708             'B::Deparse' => '0.73',
2709             'B::Lint' => '1.04',
2710             'B::Terse' => '1.03',
2711             'CGI' => '3.15_01',
2712             'CPAN' => '1.83_58',
2713             'CPAN::Debug' => '4.44',
2714             'CPAN::FirstTime' => '4.50',
2715             'CPAN::HandleConfig' => '4.31',
2716             'CPAN::Nox' => '2.31',
2717             'CPAN::Tarzip' => '3.36',
2718             'CPAN::Version' => '2.55',
2719             'Carp' => '1.05',
2720             'Carp::Heavy' => '1.05',
2721             'Compress::Zlib' => '2.000_07',
2722             'Compress::Zlib::Common'=> '2.000_07',
2723             'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2724             'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2725             'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2726             'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2727             'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2728             'Compress::Zlib::FileConstants'=> '2.000_07',
2729             'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2730             'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2731             'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2732             'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2733             'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2734             'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2735             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2736             'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2737             'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2738             'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2739             'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2740             'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2741             'Compress::Zlib::ParseParameters'=> '2.000_07',
2742             'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2743             'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2744             'Config::Extensions' => '0.01',
2745             'Cwd' => '3.15',
2746             'Devel::PPPort' => '3.08',
2747             'Digest::SHA' => '5.32',
2748             'DirHandle' => '1.01',
2749             'DynaLoader' => '1.07',
2750             'Encode' => '2.14',
2751             'Encode::CN::HZ' => '2.02',
2752             'Encode::MIME::Header' => '2.02',
2753             'English' => '1.04',
2754             'Exporter' => '5.59',
2755             'Exporter::Heavy' => '5.59',
2756             'ExtUtils::CBuilder' => '0.15',
2757             'ExtUtils::CBuilder::Base'=> '0.12',
2758             'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2759             'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2760             'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2761             'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2762             'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2763             'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2764             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2765             'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2766             'ExtUtils::Command::MM' => '0.05_01',
2767             'ExtUtils::Constant' => '0.2',
2768             'ExtUtils::Constant::Base'=> '0.02',
2769             'ExtUtils::Constant::ProxySubs'=> '0.01',
2770             'ExtUtils::Constant::XS'=> '0.02',
2771             'ExtUtils::MM_Any' => '0.13_01',
2772             'ExtUtils::MM_Unix' => '1.50_01',
2773             'ExtUtils::MakeMaker' => '6.30_01',
2774             'ExtUtils::ParseXS' => '2.15_02',
2775             'Fatal' => '1.04',
2776             'File::Compare' => '1.1005',
2777             'File::Spec' => '3.15',
2778             'File::Temp' => '0.16_01',
2779             'IO::File' => '1.13_01',
2780             'IO::Handle' => '1.26',
2781             'IO::Socket' => '1.29_01',
2782             'IO::Socket::INET' => '1.29_02',
2783             'IO::Socket::UNIX' => '1.22_01',
2784             'IO::Zlib' => '1.04_02',
2785             'Locale::Maketext' => '1.10_01',
2786             'Math::BigInt::FastCalc'=> '0.10',
2787             'Memoize' => '1.01_01',
2788             'Module::CoreList' => '2.02',
2789             'Moped::Msg' => '0.01',
2790             'NEXT' => '0.60_01',
2791             'Net::Cmd' => '2.26_01',
2792             'Net::Domain' => '2.19_01',
2793             'Net::Ping' => '2.31_04',
2794             'Opcode' => '1.08',
2795             'POSIX' => '1.10',
2796             'Pod::Escapes' => '1.04',
2797             'Pod::Man' => '2.04',
2798             'Pod::Perldoc' => '3.14_01',
2799             'Pod::Simple' => '3.04',
2800             'Pod::Simple::BlackBox' => undef,
2801             'Pod::Simple::Checker' => '2.02',
2802             'Pod::Simple::Debug' => undef,
2803             'Pod::Simple::DumpAsText'=> '2.02',
2804             'Pod::Simple::DumpAsXML'=> '2.02',
2805             'Pod::Simple::HTML' => '3.03',
2806             'Pod::Simple::HTMLBatch'=> '3.02',
2807             'Pod::Simple::HTMLLegacy'=> '5.01',
2808             'Pod::Simple::LinkSection'=> undef,
2809             'Pod::Simple::Methody' => '2.02',
2810             'Pod::Simple::Progress' => '1.01',
2811             'Pod::Simple::PullParser'=> '2.02',
2812             'Pod::Simple::PullParserEndToken'=> undef,
2813             'Pod::Simple::PullParserStartToken'=> undef,
2814             'Pod::Simple::PullParserTextToken'=> undef,
2815             'Pod::Simple::PullParserToken'=> '2.02',
2816             'Pod::Simple::RTF' => '2.02',
2817             'Pod::Simple::Search' => '3.04',
2818             'Pod::Simple::SimpleTree'=> '2.02',
2819             'Pod::Simple::Text' => '2.02',
2820             'Pod::Simple::TextContent'=> '2.02',
2821             'Pod::Simple::TiedOutFH'=> undef,
2822             'Pod::Simple::Transcode'=> undef,
2823             'Pod::Simple::TranscodeDumb'=> '2.02',
2824             'Pod::Simple::TranscodeSmart'=> undef,
2825             'Pod::Simple::XMLOutStream'=> '2.02',
2826             'Pod::Text' => '3.01',
2827             'Pod::Text::Color' => '2.01',
2828             'Pod::Text::Overstrike' => '2',
2829             'Pod::Text::Termcap' => '2.01',
2830             'Pod::Usage' => '1.33_01',
2831             'SelfLoader' => '1.0905',
2832             'Storable' => '2.15_02',
2833             'Test::Builder::Module' => '0.03',
2834             'Text::Balanced' => '1.95_01',
2835             'Tie::File' => '0.97_01',
2836             'UNIVERSAL' => '1.03',
2837             'XS::APItest' => '0.09',
2838             'assertions' => '0.02',
2839             'assertions::activate' => '0.02',
2840             'assertions::compat' => undef,
2841             'constant' => '1.07',
2842             'encoding::warnings' => '0.05',
2843             'feature' => '1.00',
2844             're' => '0.06',
2845             'sort' => '2.00',
2846             'version' => '0.53',
2847             },
2848             removed => {
2849             }
2850             },
2851             5.009004 => {
2852             delta_from => 5.009003,
2853             changed => {
2854             'Archive::Tar' => '1.30_01',
2855             'AutoLoader' => '5.61',
2856             'B' => '1.11',
2857             'B::Bytecode' => '1.02',
2858             'B::C' => '1.05',
2859             'B::Concise' => '0.69',
2860             'B::Deparse' => '0.76',
2861             'B::Lint' => '1.08',
2862             'Benchmark' => '1.08',
2863             'CGI' => '3.20',
2864             'CGI::Cookie' => '1.27',
2865             'CGI::Fast' => '1.07',
2866             'CPAN' => '1.87_55',
2867             'CPAN::Debug' => '5.400561',
2868             'CPAN::FirstTime' => '5.400742',
2869             'CPAN::HandleConfig' => '5.400740',
2870             'CPAN::Nox' => '5.400561',
2871             'CPAN::Tarzip' => '5.400714',
2872             'CPAN::Version' => '5.400561',
2873             'Compress::Raw::Zlib' => '2.000_13',
2874             'Compress::Zlib' => '2.000_13',
2875             'Cwd' => '3.19',
2876             'Devel::PPPort' => '3.10',
2877             'Digest' => '1.15',
2878             'Digest::SHA' => '5.43',
2879             'Encode' => '2.18_01',
2880             'Encode::Alias' => '2.06',
2881             'Encode::Byte' => '2.02',
2882             'Encode::CJKConstants' => '2.02',
2883             'Encode::CN' => '2.02',
2884             'Encode::CN::HZ' => '2.04',
2885             'Encode::Config' => '2.03',
2886             'Encode::EBCDIC' => '2.02',
2887             'Encode::Encoder' => '2.01',
2888             'Encode::Encoding' => '2.04',
2889             'Encode::Guess' => '2.02',
2890             'Encode::JP' => '2.03',
2891             'Encode::JP::H2Z' => '2.02',
2892             'Encode::JP::JIS7' => '2.02',
2893             'Encode::KR' => '2.02',
2894             'Encode::KR::2022_KR' => '2.02',
2895             'Encode::MIME::Header' => '2.04',
2896             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2897             'Encode::Symbol' => '2.02',
2898             'Encode::TW' => '2.02',
2899             'Encode::Unicode' => '2.03',
2900             'Encode::Unicode::UTF7' => '2.04',
2901             'ExtUtils::CBuilder' => '0.18',
2902             'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2903             'ExtUtils::Constant::Base'=> '0.03',
2904             'ExtUtils::Constant::ProxySubs'=> '0.03',
2905             'ExtUtils::Install' => '1.41',
2906             'ExtUtils::Installed' => '1.41',
2907             'ExtUtils::MM_Any' => '0.13_02',
2908             'ExtUtils::MM_NW5' => '2.08_01',
2909             'ExtUtils::MM_Unix' => '1.5003',
2910             'ExtUtils::MM_VMS' => '5.73_03',
2911             'ExtUtils::MM_Win32' => '1.12_02',
2912             'ExtUtils::MM_Win95' => '0.04_01',
2913             'ExtUtils::MakeMaker' => '6.30_02',
2914             'ExtUtils::Manifest' => '1.46_01',
2915             'ExtUtils::Mkbootstrap' => '1.15_01',
2916             'ExtUtils::Mksymlists' => '1.19_01',
2917             'ExtUtils::Packlist' => '1.41',
2918             'File::Basename' => '2.75',
2919             'File::Find' => '1.11',
2920             'File::GlobMapper' => '0.000_02',
2921             'File::Spec' => '3.19',
2922             'FileCache' => '1.07',
2923             'Getopt::Long' => '2.3501',
2924             'Hash::Util' => '0.07',
2925             'Hash::Util::FieldHash' => '0.01',
2926             'IO' => '1.23_01',
2927             'IO::Compress::Adapter::Deflate'=> '2.000_13',
2928             'IO::Compress::Adapter::Identity'=> '2.000_13',
2929             'IO::Compress::Base' => '2.000_13',
2930             'IO::Compress::Base::Common'=> '2.000_13',
2931             'IO::Compress::Deflate' => '2.000_13',
2932             'IO::Compress::Gzip' => '2.000_13',
2933             'IO::Compress::Gzip::Constants'=> '2.000_13',
2934             'IO::Compress::RawDeflate'=> '2.000_13',
2935             'IO::Compress::Zip' => '2.000_13',
2936             'IO::Compress::Zip::Constants'=> '2.000_13',
2937             'IO::Compress::Zlib::Constants'=> '2.000_13',
2938             'IO::Compress::Zlib::Extra'=> '2.000_13',
2939             'IO::Dir' => '1.06',
2940             'IO::File' => '1.14',
2941             'IO::Handle' => '1.27',
2942             'IO::Socket' => '1.30_01',
2943             'IO::Socket::INET' => '1.31',
2944             'IO::Socket::UNIX' => '1.23',
2945             'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2946             'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2947             'IO::Uncompress::AnyInflate'=> '2.000_13',
2948             'IO::Uncompress::AnyUncompress'=> '2.000_13',
2949             'IO::Uncompress::Base' => '2.000_13',
2950             'IO::Uncompress::Gunzip'=> '2.000_13',
2951             'IO::Uncompress::Inflate'=> '2.000_13',
2952             'IO::Uncompress::RawInflate'=> '2.000_13',
2953             'IO::Uncompress::Unzip' => '2.000_13',
2954             'MIME::Base64' => '3.07_01',
2955             'Math::Complex' => '1.36',
2956             'Math::Trig' => '1.04',
2957             'Module::Build' => '0.2805',
2958             'Module::Build::Base' => undef,
2959             'Module::Build::Compat' => '0.03',
2960             'Module::Build::ConfigData'=> undef,
2961             'Module::Build::Cookbook'=> undef,
2962             'Module::Build::ModuleInfo'=> undef,
2963             'Module::Build::Notes' => undef,
2964             'Module::Build::PPMMaker'=> undef,
2965             'Module::Build::Platform::Amiga'=> undef,
2966             'Module::Build::Platform::Default'=> undef,
2967             'Module::Build::Platform::EBCDIC'=> undef,
2968             'Module::Build::Platform::MPEiX'=> undef,
2969             'Module::Build::Platform::MacOS'=> undef,
2970             'Module::Build::Platform::RiscOS'=> undef,
2971             'Module::Build::Platform::Unix'=> undef,
2972             'Module::Build::Platform::VMS'=> undef,
2973             'Module::Build::Platform::VOS'=> undef,
2974             'Module::Build::Platform::Windows'=> undef,
2975             'Module::Build::Platform::aix'=> undef,
2976             'Module::Build::Platform::cygwin'=> undef,
2977             'Module::Build::Platform::darwin'=> undef,
2978             'Module::Build::Platform::os2'=> undef,
2979             'Module::Build::PodParser'=> undef,
2980             'Module::Build::Version'=> '0',
2981             'Module::Build::YAML' => '0.50',
2982             'Module::CoreList' => '2.08',
2983             'Module::Load' => '0.10',
2984             'Module::Loaded' => '0.01',
2985             'Package::Constants' => '0.01',
2986             'Pod::Html' => '1.07',
2987             'Pod::Man' => '2.09',
2988             'Pod::Text' => '3.07',
2989             'Pod::Text::Color' => '2.03',
2990             'Pod::Text::Termcap' => '2.03',
2991             'SDBM_File' => '1.06',
2992             'Shell' => '0.7',
2993             'Sys::Syslog' => '0.17',
2994             'Term::ANSIColor' => '1.11',
2995             'Test::Builder' => '0.33',
2996             'Test::Builder::Tester' => '1.04',
2997             'Test::Harness' => '2.62',
2998             'Test::Harness::Util' => '0.01',
2999             'Test::More' => '0.64',
3000             'Test::Simple' => '0.64',
3001             'Text::Balanced' => '1.98_01',
3002             'Text::ParseWords' => '3.25',
3003             'Text::Tabs' => '2007.071101',
3004             'Text::Wrap' => '2006.0711',
3005             'Tie::RefHash' => '1.34_01',
3006             'Time::HiRes' => '1.87',
3007             'Time::Local' => '1.13',
3008             'Time::gmtime' => '1.03',
3009             'UNIVERSAL' => '1.04',
3010             'Unicode::Normalize' => '1.01',
3011             'Win32API::File' => '0.1001',
3012             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
3013             'assertions' => '0.03',
3014             'assertions::compat' => '0.02',
3015             'autouse' => '1.06',
3016             'diagnostics' => '1.16',
3017             'encoding' => '2.04',
3018             'encoding::warnings' => '0.10',
3019             'feature' => '1.01',
3020             're' => '0.0601',
3021             'threads' => '1.38',
3022             'threads::shared' => '0.94_01',
3023             'version' => '0.67',
3024             },
3025             removed => {
3026             'Compress::Zlib::Common'=> 1,
3027             'Compress::Zlib::Compress::Gzip::Constants'=> 1,
3028             'Compress::Zlib::Compress::Zip::Constants'=> 1,
3029             'Compress::Zlib::CompressPlugin::Deflate'=> 1,
3030             'Compress::Zlib::CompressPlugin::Identity'=> 1,
3031             'Compress::Zlib::File::GlobMapper'=> 1,
3032             'Compress::Zlib::FileConstants'=> 1,
3033             'Compress::Zlib::IO::Compress::Base'=> 1,
3034             'Compress::Zlib::IO::Compress::Deflate'=> 1,
3035             'Compress::Zlib::IO::Compress::Gzip'=> 1,
3036             'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
3037             'Compress::Zlib::IO::Compress::Zip'=> 1,
3038             'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
3039             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
3040             'Compress::Zlib::IO::Uncompress::Base'=> 1,
3041             'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
3042             'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
3043             'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
3044             'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
3045             'Compress::Zlib::ParseParameters'=> 1,
3046             'Compress::Zlib::UncompressPlugin::Identity'=> 1,
3047             'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
3048             }
3049             },
3050             5.009005 => {
3051             delta_from => 5.009004,
3052             changed => {
3053             'Archive::Extract' => '0.22_01',
3054             'Archive::Tar' => '1.32',
3055             'Attribute::Handlers' => '0.78_06',
3056             'AutoLoader' => '5.63',
3057             'AutoSplit' => '1.05',
3058             'B' => '1.16',
3059             'B::Concise' => '0.72',
3060             'B::Debug' => '1.05',
3061             'B::Deparse' => '0.82',
3062             'B::Lint' => '1.09',
3063             'B::Terse' => '1.05',
3064             'Benchmark' => '1.1',
3065             'CGI' => '3.29',
3066             'CGI::Cookie' => '1.28',
3067             'CGI::Util' => '1.5_01',
3068             'CPAN' => '1.9102',
3069             'CPAN::Debug' => '5.400955',
3070             'CPAN::FirstTime' => '5.401669',
3071             'CPAN::HandleConfig' => '5.401744',
3072             'CPAN::Kwalify' => '5.401418',
3073             'CPAN::Nox' => '5.400844',
3074             'CPAN::Queue' => '5.401704',
3075             'CPAN::Tarzip' => '5.401717',
3076             'CPAN::Version' => '5.401387',
3077             'CPANPLUS' => '0.81_01',
3078             'CPANPLUS::Backend' => undef,
3079             'CPANPLUS::Backend::RV' => undef,
3080             'CPANPLUS::Config' => undef,
3081             'CPANPLUS::Configure' => undef,
3082             'CPANPLUS::Configure::Setup'=> undef,
3083             'CPANPLUS::Dist' => undef,
3084             'CPANPLUS::Dist::Base' => '0.01',
3085             'CPANPLUS::Dist::Build' => '0.06_01',
3086             'CPANPLUS::Dist::Build::Constants'=> '0.01',
3087             'CPANPLUS::Dist::MM' => undef,
3088             'CPANPLUS::Dist::Sample'=> undef,
3089             'CPANPLUS::Error' => undef,
3090             'CPANPLUS::Internals' => '0.81_01',
3091             'CPANPLUS::Internals::Constants'=> '0.01',
3092             'CPANPLUS::Internals::Constants::Report'=> '0.01',
3093             'CPANPLUS::Internals::Extract'=> undef,
3094             'CPANPLUS::Internals::Fetch'=> undef,
3095             'CPANPLUS::Internals::Report'=> undef,
3096             'CPANPLUS::Internals::Search'=> undef,
3097             'CPANPLUS::Internals::Source'=> undef,
3098             'CPANPLUS::Internals::Utils'=> undef,
3099             'CPANPLUS::Internals::Utils::Autoflush'=> undef,
3100             'CPANPLUS::Module' => undef,
3101             'CPANPLUS::Module::Author'=> undef,
3102             'CPANPLUS::Module::Author::Fake'=> undef,
3103             'CPANPLUS::Module::Checksums'=> undef,
3104             'CPANPLUS::Module::Fake'=> undef,
3105             'CPANPLUS::Module::Signature'=> undef,
3106             'CPANPLUS::Selfupdate' => undef,
3107             'CPANPLUS::Shell' => undef,
3108             'CPANPLUS::Shell::Classic'=> '0.0562',
3109             'CPANPLUS::Shell::Default'=> '0.81_01',
3110             'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
3111             'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
3112             'CPANPLUS::inc' => undef,
3113             'Carp' => '1.07',
3114             'Carp::Heavy' => '1.07',
3115             'Compress::Raw::Zlib' => '2.005',
3116             'Compress::Zlib' => '2.005',
3117             'Cwd' => '3.25',
3118             'DBM_Filter' => '0.02',
3119             'DB_File' => '1.815',
3120             'Data::Dumper' => '2.121_13',
3121             'Devel::InnerPackage' => '0.3',
3122             'Devel::PPPort' => '3.11_01',
3123             'Digest::MD5' => '2.36_01',
3124             'Digest::SHA' => '5.44',
3125             'DynaLoader' => '1.08',
3126             'Encode' => '2.23',
3127             'Encode::Alias' => '2.07',
3128             'Encode::Byte' => '2.03',
3129             'Encode::Config' => '2.04',
3130             'Encode::Encoding' => '2.05',
3131             'Encode::GSM0338' => '2.00',
3132             'Encode::JP::JIS7' => '2.03',
3133             'Encode::MIME::Header' => '2.05',
3134             'Encode::MIME::Name' => '1.01',
3135             'Encode::Unicode' => '2.05',
3136             'Errno' => '1.10',
3137             'Exporter' => '5.60',
3138             'Exporter::Heavy' => '5.60',
3139             'ExtUtils::CBuilder' => '0.19',
3140             'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3141             'ExtUtils::Command' => '1.13',
3142             'ExtUtils::Command::MM' => '0.07',
3143             'ExtUtils::Constant::Base'=> '0.04',
3144             'ExtUtils::Install' => '1.41_01',
3145             'ExtUtils::Liblist' => '1.03',
3146             'ExtUtils::Liblist::Kid'=> '1.33',
3147             'ExtUtils::MM' => '0.07',
3148             'ExtUtils::MM_AIX' => '0.05',
3149             'ExtUtils::MM_Any' => '0.15',
3150             'ExtUtils::MM_BeOS' => '1.07',
3151             'ExtUtils::MM_Cygwin' => '1.1',
3152             'ExtUtils::MM_DOS' => '0.04',
3153             'ExtUtils::MM_MacOS' => '1.1',
3154             'ExtUtils::MM_NW5' => '2.1',
3155             'ExtUtils::MM_OS2' => '1.07',
3156             'ExtUtils::MM_QNX' => '0.04',
3157             'ExtUtils::MM_UWIN' => '0.04',
3158             'ExtUtils::MM_Unix' => '1.54_01',
3159             'ExtUtils::MM_VMS' => '5.76',
3160             'ExtUtils::MM_VOS' => '0.04',
3161             'ExtUtils::MM_Win32' => '1.15',
3162             'ExtUtils::MM_Win95' => '0.06',
3163             'ExtUtils::MY' => '0.03',
3164             'ExtUtils::MakeMaker' => '6.36',
3165             'ExtUtils::MakeMaker::Config'=> '0.04',
3166             'ExtUtils::MakeMaker::bytes'=> '0.03',
3167             'ExtUtils::MakeMaker::vmsish'=> '0.03',
3168             'ExtUtils::Manifest' => '1.51_01',
3169             'ExtUtils::Mkbootstrap' => '1.17',
3170             'ExtUtils::Mksymlists' => '1.21',
3171             'ExtUtils::ParseXS' => '2.18',
3172             'ExtUtils::XSSymSet' => '1.1',
3173             'ExtUtils::testlib' => '1.17',
3174             'Fatal' => '1.05',
3175             'Fcntl' => '1.06',
3176             'File::Basename' => '2.76',
3177             'File::Copy' => '2.10',
3178             'File::Fetch' => '0.10',
3179             'File::Glob' => '1.06',
3180             'File::Path' => '2.01',
3181             'File::Spec' => '3.25',
3182             'File::Spec::Cygwin' => '1.1_01',
3183             'File::Spec::VMS' => '1.4_01',
3184             'File::Temp' => '0.18',
3185             'Filter::Util::Call' => '1.0602',
3186             'FindBin' => '1.49',
3187             'Getopt::Long' => '2.36',
3188             'Hash::Util::FieldHash' => '1.01',
3189             'IO::Compress::Adapter::Deflate'=> '2.005',
3190             'IO::Compress::Adapter::Identity'=> '2.005',
3191             'IO::Compress::Base' => '2.005',
3192             'IO::Compress::Base::Common'=> '2.005',
3193             'IO::Compress::Deflate' => '2.005',
3194             'IO::Compress::Gzip' => '2.005',
3195             'IO::Compress::Gzip::Constants'=> '2.005',
3196             'IO::Compress::RawDeflate'=> '2.005',
3197             'IO::Compress::Zip' => '2.005',
3198             'IO::Compress::Zip::Constants'=> '2.005',
3199             'IO::Compress::Zlib::Constants'=> '2.005',
3200             'IO::Compress::Zlib::Extra'=> '2.005',
3201             'IO::Uncompress::Adapter::Identity'=> '2.005',
3202             'IO::Uncompress::Adapter::Inflate'=> '2.005',
3203             'IO::Uncompress::AnyInflate'=> '2.005',
3204             'IO::Uncompress::AnyUncompress'=> '2.005',
3205             'IO::Uncompress::Base' => '2.005',
3206             'IO::Uncompress::Gunzip'=> '2.005',
3207             'IO::Uncompress::Inflate'=> '2.005',
3208             'IO::Uncompress::RawInflate'=> '2.005',
3209             'IO::Uncompress::Unzip' => '2.005',
3210             'IO::Zlib' => '1.05_01',
3211             'IPC::Cmd' => '0.36_01',
3212             'List::Util' => '1.19',
3213             'Locale::Maketext::Simple'=> '0.18',
3214             'Log::Message' => '0.01',
3215             'Log::Message::Config' => '0.01',
3216             'Log::Message::Handlers'=> undef,
3217             'Log::Message::Item' => undef,
3218             'Log::Message::Simple' => '0.0201',
3219             'Math::BigFloat' => '1.58',
3220             'Math::BigInt' => '1.87',
3221             'Math::BigInt::Calc' => '0.51',
3222             'Math::BigInt::FastCalc'=> '0.15_01',
3223             'Math::BigRat' => '0.19',
3224             'Math::Complex' => '1.37',
3225             'Memoize' => '1.01_02',
3226             'Module::Build' => '0.2808',
3227             'Module::Build::Config' => undef,
3228             'Module::Build::Version'=> '0.7203',
3229             'Module::CoreList' => '2.12',
3230             'Module::Load::Conditional'=> '0.16',
3231             'Module::Pluggable' => '3.6',
3232             'Module::Pluggable::Object'=> '3.6',
3233             'NDBM_File' => '1.07',
3234             'Net::Cmd' => '2.28',
3235             'Net::Config' => '1.11',
3236             'Net::Domain' => '2.20',
3237             'Net::FTP' => '2.77',
3238             'Net::FTP::A' => '1.18',
3239             'Net::NNTP' => '2.24',
3240             'Net::POP3' => '2.29',
3241             'Net::SMTP' => '2.31',
3242             'ODBM_File' => '1.07',
3243             'OS2::DLL' => '1.03',
3244             'Object::Accessor' => '0.32',
3245             'Opcode' => '1.09',
3246             'POSIX' => '1.13',
3247             'Params::Check' => '0.26',
3248             'PerlIO::encoding' => '0.10',
3249             'PerlIO::scalar' => '0.05',
3250             'PerlIO::via' => '0.04',
3251             'Pod::Html' => '1.08',
3252             'Pod::Man' => '2.12',
3253             'Pod::ParseUtils' => '1.35',
3254             'Pod::Parser' => '1.35',
3255             'Pod::Select' => '1.35',
3256             'Pod::Simple' => '3.05',
3257             'Pod::Text' => '3.08',
3258             'Pod::Usage' => '1.35',
3259             'Scalar::Util' => '1.19',
3260             'SelfLoader' => '1.11',
3261             'Shell' => '0.72_01',
3262             'Socket' => '1.79',
3263             'Storable' => '2.16',
3264             'Switch' => '2.13',
3265             'Sys::Syslog' => '0.18_01',
3266             'Term::ANSIColor' => '1.12',
3267             'Term::UI' => '0.14_01',
3268             'Term::UI::History' => undef,
3269             'Test::Builder' => '0.70',
3270             'Test::Builder::Module' => '0.68',
3271             'Test::Builder::Tester' => '1.07',
3272             'Test::Harness' => '2.64',
3273             'Test::Harness::Results'=> '0.01',
3274             'Test::More' => '0.70',
3275             'Test::Simple' => '0.70',
3276             'Text::Balanced' => '2.0.0',
3277             'Text::Soundex' => '3.02',
3278             'Text::Tabs' => '2007.1117',
3279             'Text::Wrap' => '2006.1117',
3280             'Thread' => '3.02',
3281             'Tie::File' => '0.97_02',
3282             'Tie::Hash::NamedCapture'=> '0.06',
3283             'Tie::Memoize' => '1.1',
3284             'Tie::RefHash' => '1.37',
3285             'Time::HiRes' => '1.9707',
3286             'Time::Local' => '1.17',
3287             'Time::Piece' => '1.11_02',
3288             'Time::Seconds' => undef,
3289             'Unicode' => '5.0.0',
3290             'Unicode::Normalize' => '1.02',
3291             'Unicode::UCD' => '0.25',
3292             'VMS::DCLsym' => '1.03',
3293             'Win32' => '0.30',
3294             'Win32API::File' => '0.1001_01',
3295             'Win32CORE' => '0.02',
3296             'XS::APItest' => '0.12',
3297             'XSLoader' => '0.08',
3298             'attributes' => '0.08',
3299             'base' => '2.12',
3300             'bigint' => '0.22',
3301             'bignum' => '0.22',
3302             'bigrat' => '0.22',
3303             'bytes' => '1.03',
3304             'charnames' => '1.06',
3305             'constant' => '1.10',
3306             'diagnostics' => '1.17',
3307             'encoding' => '2.06',
3308             'encoding::warnings' => '0.11',
3309             'feature' => '1.10',
3310             'fields' => '2.12',
3311             'less' => '0.02',
3312             'mro' => '1.00',
3313             'overload' => '1.06',
3314             're' => '0.08',
3315             'sigtrap' => '1.04',
3316             'sort' => '2.01',
3317             'strict' => '1.04',
3318             'threads' => '1.63',
3319             'threads::shared' => '1.12',
3320             'utf8' => '1.07',
3321             'version' => '0.7203',
3322             'warnings' => '1.06',
3323             },
3324             removed => {
3325             'B::Asmdata' => 1,
3326             'B::Assembler' => 1,
3327             'B::Bblock' => 1,
3328             'B::Bytecode' => 1,
3329             'B::C' => 1,
3330             'B::CC' => 1,
3331             'B::Disassembler' => 1,
3332             'B::Stackobj' => 1,
3333             'B::Stash' => 1,
3334             'ByteLoader' => 1,
3335             'Thread::Signal' => 1,
3336             'Thread::Specific' => 1,
3337             'assertions' => 1,
3338             'assertions::activate' => 1,
3339             'assertions::compat' => 1,
3340             }
3341             },
3342             5.01 => {
3343             delta_from => 5.009005,
3344             changed => {
3345             'Archive::Extract' => '0.24',
3346             'Archive::Tar' => '1.38',
3347             'Attribute::Handlers' => '0.79',
3348             'B' => '1.17',
3349             'B::Concise' => '0.74',
3350             'B::Deparse' => '0.83',
3351             'CPAN' => '1.9205',
3352             'CPAN::API::HOWTO' => undef,
3353             'CPAN::Debug' => '5.402212',
3354             'CPAN::DeferedCode' => '5.50',
3355             'CPAN::FirstTime' => '5.402229',
3356             'CPAN::HandleConfig' => '5.402212',
3357             'CPAN::Nox' => '5.402411',
3358             'CPAN::Queue' => '5.402212',
3359             'CPAN::Tarzip' => '5.402213',
3360             'CPAN::Version' => '5.5',
3361             'CPANPLUS' => '0.84',
3362             'CPANPLUS::Dist::Build' => '0.06_02',
3363             'CPANPLUS::Internals' => '0.84',
3364             'CPANPLUS::Shell::Default'=> '0.84',
3365             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3366             'Carp' => '1.08',
3367             'Carp::Heavy' => '1.08',
3368             'Compress::Raw::Zlib' => '2.008',
3369             'Compress::Zlib' => '2.008',
3370             'Cwd' => '3.2501',
3371             'DB_File' => '1.816_1',
3372             'Data::Dumper' => '2.121_14',
3373             'Devel::PPPort' => '3.13',
3374             'Digest::SHA' => '5.45',
3375             'Exporter' => '5.62',
3376             'Exporter::Heavy' => '5.62',
3377             'ExtUtils::CBuilder' => '0.21',
3378             'ExtUtils::CBuilder::Base'=> '0.21',
3379             'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3380             'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3381             'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3382             'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3383             'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3384             'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3385             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3386             'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3387             'ExtUtils::Command::MM' => '6.42',
3388             'ExtUtils::Constant::ProxySubs'=> '0.05',
3389             'ExtUtils::Embed' => '1.27',
3390             'ExtUtils::Install' => '1.44',
3391             'ExtUtils::Installed' => '1.43',
3392             'ExtUtils::Liblist' => '6.42',
3393             'ExtUtils::Liblist::Kid'=> '6.42',
3394             'ExtUtils::MM' => '6.42',
3395             'ExtUtils::MM_AIX' => '6.42',
3396             'ExtUtils::MM_Any' => '6.42',
3397             'ExtUtils::MM_BeOS' => '6.42',
3398             'ExtUtils::MM_Cygwin' => '6.42',
3399             'ExtUtils::MM_DOS' => '6.42',
3400             'ExtUtils::MM_MacOS' => '6.42',
3401             'ExtUtils::MM_NW5' => '6.42',
3402             'ExtUtils::MM_OS2' => '6.42',
3403             'ExtUtils::MM_QNX' => '6.42',
3404             'ExtUtils::MM_UWIN' => '6.42',
3405             'ExtUtils::MM_Unix' => '6.42',
3406             'ExtUtils::MM_VMS' => '6.42',
3407             'ExtUtils::MM_VOS' => '6.42',
3408             'ExtUtils::MM_Win32' => '6.42',
3409             'ExtUtils::MM_Win95' => '6.42',
3410             'ExtUtils::MY' => '6.42',
3411             'ExtUtils::MakeMaker' => '6.42',
3412             'ExtUtils::MakeMaker::Config'=> '6.42',
3413             'ExtUtils::MakeMaker::bytes'=> '6.42',
3414             'ExtUtils::MakeMaker::vmsish'=> '6.42',
3415             'ExtUtils::Mkbootstrap' => '6.42',
3416             'ExtUtils::Mksymlists' => '6.42',
3417             'ExtUtils::Packlist' => '1.43',
3418             'ExtUtils::ParseXS' => '2.18_02',
3419             'ExtUtils::testlib' => '6.42',
3420             'File::Copy' => '2.11',
3421             'File::Fetch' => '0.14',
3422             'File::Find' => '1.12',
3423             'File::Path' => '2.04',
3424             'File::Spec' => '3.2501',
3425             'File::Spec::Cygwin' => '3.2501',
3426             'File::Spec::Epoc' => '3.2501',
3427             'File::Spec::Functions' => '3.2501',
3428             'File::Spec::Mac' => '3.2501',
3429             'File::Spec::OS2' => '3.2501',
3430             'File::Spec::Unix' => '3.2501',
3431             'File::Spec::VMS' => '3.2501',
3432             'File::Spec::Win32' => '3.2501',
3433             'Filter::Util::Call' => '1.07',
3434             'Getopt::Long' => '2.37',
3435             'Hash::Util::FieldHash' => '1.03',
3436             'IO::Compress::Adapter::Deflate'=> '2.008',
3437             'IO::Compress::Adapter::Identity'=> '2.008',
3438             'IO::Compress::Base' => '2.008',
3439             'IO::Compress::Base::Common'=> '2.008',
3440             'IO::Compress::Deflate' => '2.008',
3441             'IO::Compress::Gzip' => '2.008',
3442             'IO::Compress::Gzip::Constants'=> '2.008',
3443             'IO::Compress::RawDeflate'=> '2.008',
3444             'IO::Compress::Zip' => '2.008',
3445             'IO::Compress::Zip::Constants'=> '2.008',
3446             'IO::Compress::Zlib::Constants'=> '2.008',
3447             'IO::Compress::Zlib::Extra'=> '2.008',
3448             'IO::Uncompress::Adapter::Identity'=> '2.008',
3449             'IO::Uncompress::Adapter::Inflate'=> '2.008',
3450             'IO::Uncompress::AnyInflate'=> '2.008',
3451             'IO::Uncompress::AnyUncompress'=> '2.008',
3452             'IO::Uncompress::Base' => '2.008',
3453             'IO::Uncompress::Gunzip'=> '2.008',
3454             'IO::Uncompress::Inflate'=> '2.008',
3455             'IO::Uncompress::RawInflate'=> '2.008',
3456             'IO::Uncompress::Unzip' => '2.008',
3457             'IO::Zlib' => '1.07',
3458             'IPC::Cmd' => '0.40_1',
3459             'IPC::SysV' => '1.05',
3460             'Locale::Maketext' => '1.12',
3461             'Log::Message::Simple' => '0.04',
3462             'Math::BigFloat' => '1.59',
3463             'Math::BigInt' => '1.88',
3464             'Math::BigInt::Calc' => '0.52',
3465             'Math::BigInt::FastCalc'=> '0.16',
3466             'Math::BigRat' => '0.21',
3467             'Module::Build' => '0.2808_01',
3468             'Module::Build::Base' => '0.2808_01',
3469             'Module::Build::Compat' => '0.2808_01',
3470             'Module::Build::Config' => '0.2808_01',
3471             'Module::Build::Dumper' => undef,
3472             'Module::Build::ModuleInfo'=> '0.2808_01',
3473             'Module::Build::Notes' => '0.2808_01',
3474             'Module::Build::PPMMaker'=> '0.2808_01',
3475             'Module::Build::Platform::Amiga'=> '0.2808_01',
3476             'Module::Build::Platform::Default'=> '0.2808_01',
3477             'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3478             'Module::Build::Platform::MPEiX'=> '0.2808_01',
3479             'Module::Build::Platform::MacOS'=> '0.2808_01',
3480             'Module::Build::Platform::RiscOS'=> '0.2808_01',
3481             'Module::Build::Platform::Unix'=> '0.2808_01',
3482             'Module::Build::Platform::VMS'=> '0.2808_01',
3483             'Module::Build::Platform::VOS'=> '0.2808_01',
3484             'Module::Build::Platform::Windows'=> '0.2808_01',
3485             'Module::Build::Platform::aix'=> '0.2808_01',
3486             'Module::Build::Platform::cygwin'=> '0.2808_01',
3487             'Module::Build::Platform::darwin'=> '0.2808_01',
3488             'Module::Build::Platform::os2'=> '0.2808_01',
3489             'Module::Build::PodParser'=> '0.2808_01',
3490             'Module::CoreList' => '2.13',
3491             'Module::Load' => '0.12',
3492             'Module::Load::Conditional'=> '0.22',
3493             'Net::Cmd' => '2.29',
3494             'Net::Ping' => '2.33',
3495             'Opcode' => '1.11',
3496             'Pod::Checker' => '1.43_01',
3497             'Pod::Man' => '2.16',
3498             'Pod::Perldoc' => '3.14_02',
3499             'Socket' => '1.80',
3500             'Storable' => '2.18',
3501             'Sys::Syslog' => '0.22',
3502             'Sys::Syslog::win32::Win32'=> undef,
3503             'Term::Cap' => '1.12',
3504             'Term::ReadLine' => '1.03',
3505             'Term::UI' => '0.18',
3506             'Test::Builder' => '0.72',
3507             'Test::Builder::Module' => '0.72',
3508             'Test::Builder::Tester' => '1.09',
3509             'Test::Harness::Straps' => '0.26_01',
3510             'Test::More' => '0.72',
3511             'Test::Simple' => '0.72',
3512             'Text::ParseWords' => '3.26',
3513             'Text::Soundex' => '3.03',
3514             'Tie::StdHandle' => undef,
3515             'Time::HiRes' => '1.9711',
3516             'Time::Local' => '1.18',
3517             'Time::Piece' => '1.12',
3518             'VMS::Filespec' => '1.12',
3519             'Win32' => '0.34',
3520             'base' => '2.13',
3521             'constant' => '1.13',
3522             'feature' => '1.11',
3523             'fields' => '2.13',
3524             'filetest' => '1.02',
3525             'open' => '1.06',
3526             'threads' => '1.67',
3527             'threads::shared' => '1.14',
3528             'version' => '0.74',
3529             },
3530             removed => {
3531             }
3532             },
3533             5.010001 => {
3534             delta_from => 5.01,
3535             changed => {
3536             'App::Prove' => '3.17',
3537             'App::Prove::State' => '3.17',
3538             'App::Prove::State::Result'=> '3.17',
3539             'App::Prove::State::Result::Test'=> '3.17',
3540             'Archive::Extract' => '0.34',
3541             'Archive::Tar' => '1.52',
3542             'Attribute::Handlers' => '0.85',
3543             'AutoLoader' => '5.68',
3544             'AutoSplit' => '1.06',
3545             'B' => '1.22',
3546             'B::Concise' => '0.76',
3547             'B::Debug' => '1.11',
3548             'B::Deparse' => '0.89',
3549             'B::Lint' => '1.11',
3550             'B::Lint::Debug' => undef,
3551             'B::Xref' => '1.02',
3552             'Benchmark' => '1.11',
3553             'CGI' => '3.43',
3554             'CGI::Carp' => '1.30_01',
3555             'CGI::Cookie' => '1.29',
3556             'CPAN' => '1.9402',
3557             'CPAN::Author' => '5.5',
3558             'CPAN::Bundle' => '5.5',
3559             'CPAN::CacheMgr' => '5.5',
3560             'CPAN::Complete' => '5.5',
3561             'CPAN::Debug' => '5.5',
3562             'CPAN::DeferredCode' => '5.50',
3563             'CPAN::Distribution' => '1.93',
3564             'CPAN::Distroprefs' => '6',
3565             'CPAN::Distrostatus' => '5.5',
3566             'CPAN::Exception::RecursiveDependency'=> '5.5',
3567             'CPAN::Exception::blocked_urllist'=> '1.0',
3568             'CPAN::Exception::yaml_not_installed'=> '5.5',
3569             'CPAN::FTP' => '5.5001',
3570             'CPAN::FTP::netrc' => '1.00',
3571             'CPAN::FirstTime' => '5.53',
3572             'CPAN::HandleConfig' => '5.5',
3573             'CPAN::Index' => '1.93',
3574             'CPAN::InfoObj' => '5.5',
3575             'CPAN::Kwalify' => '5.50',
3576             'CPAN::LWP::UserAgent' => '1.00',
3577             'CPAN::Module' => '5.5',
3578             'CPAN::Nox' => '5.50',
3579             'CPAN::Prompt' => '5.5',
3580             'CPAN::Queue' => '5.5',
3581             'CPAN::Shell' => '5.5',
3582             'CPAN::Tarzip' => '5.501',
3583             'CPAN::URL' => '5.5',
3584             'CPANPLUS' => '0.88',
3585             'CPANPLUS::Dist::Autobundle'=> undef,
3586             'CPANPLUS::Dist::Base' => undef,
3587             'CPANPLUS::Dist::Build' => '0.36',
3588             'CPANPLUS::Dist::Build::Constants'=> '0.36',
3589             'CPANPLUS::Internals' => '0.88',
3590             'CPANPLUS::Internals::Constants'=> undef,
3591             'CPANPLUS::Internals::Constants::Report'=> undef,
3592             'CPANPLUS::Internals::Source::Memory'=> undef,
3593             'CPANPLUS::Internals::Source::SQLite'=> undef,
3594             'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3595             'CPANPLUS::Shell::Default'=> '0.88',
3596             'Carp' => '1.11',
3597             'Carp::Heavy' => '1.11',
3598             'Compress::Raw::Bzip2' => '2.020',
3599             'Compress::Raw::Zlib' => '2.020',
3600             'Compress::Zlib' => '2.020',
3601             'Cwd' => '3.30',
3602             'DB' => '1.02',
3603             'DBM_Filter::compress' => '0.02',
3604             'DBM_Filter::encode' => '0.02',
3605             'DBM_Filter::int32' => '0.02',
3606             'DBM_Filter::null' => '0.02',
3607             'DBM_Filter::utf8' => '0.02',
3608             'DB_File' => '1.820',
3609             'Data::Dumper' => '2.124',
3610             'Devel::DProf' => '20080331.00',
3611             'Devel::PPPort' => '3.19',
3612             'Devel::Peek' => '1.04',
3613             'Digest' => '1.16',
3614             'Digest::MD5' => '2.39',
3615             'Digest::SHA' => '5.47',
3616             'Digest::base' => '1.16',
3617             'Digest::file' => '1.16',
3618             'DirHandle' => '1.03',
3619             'Dumpvalue' => '1.13',
3620             'DynaLoader' => '1.10',
3621             'Encode' => '2.35',
3622             'Encode::Alias' => '2.12',
3623             'Encode::CN::HZ' => '2.05',
3624             'Encode::Config' => '2.05',
3625             'Encode::GSM0338' => '2.01',
3626             'Encode::Guess' => '2.03',
3627             'Encode::JP::JIS7' => '2.04',
3628             'Encode::MIME::Header' => '2.11',
3629             'Encode::Unicode' => '2.06',
3630             'Errno' => '1.11',
3631             'Exporter' => '5.63',
3632             'Exporter::Heavy' => '5.63',
3633             'ExtUtils::CBuilder' => '0.2602',
3634             'ExtUtils::CBuilder::Base'=> '0.2602',
3635             'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3636             'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3637             'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3638             'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3639             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3640             'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3641             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3642             'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3643             'ExtUtils::Command' => '1.16',
3644             'ExtUtils::Command::MM' => '6.55_02',
3645             'ExtUtils::Constant' => '0.22',
3646             'ExtUtils::Constant::ProxySubs'=> '0.06',
3647             'ExtUtils::Constant::Utils'=> '0.02',
3648             'ExtUtils::Constant::XS'=> '0.03',
3649             'ExtUtils::Embed' => '1.28',
3650             'ExtUtils::Install' => '1.54',
3651             'ExtUtils::Installed' => '1.999_001',
3652             'ExtUtils::Liblist' => '6.55_02',
3653             'ExtUtils::Liblist::Kid'=> '6.5502',
3654             'ExtUtils::MM' => '6.55_02',
3655             'ExtUtils::MM_AIX' => '6.55_02',
3656             'ExtUtils::MM_Any' => '6.55_02',
3657             'ExtUtils::MM_BeOS' => '6.55_02',
3658             'ExtUtils::MM_Cygwin' => '6.55_02',
3659             'ExtUtils::MM_DOS' => '6.5502',
3660             'ExtUtils::MM_Darwin' => '6.55_02',
3661             'ExtUtils::MM_MacOS' => '6.5502',
3662             'ExtUtils::MM_NW5' => '6.55_02',
3663             'ExtUtils::MM_OS2' => '6.55_02',
3664             'ExtUtils::MM_QNX' => '6.55_02',
3665             'ExtUtils::MM_UWIN' => '6.5502',
3666             'ExtUtils::MM_Unix' => '6.55_02',
3667             'ExtUtils::MM_VMS' => '6.55_02',
3668             'ExtUtils::MM_VOS' => '6.55_02',
3669             'ExtUtils::MM_Win32' => '6.55_02',
3670             'ExtUtils::MM_Win95' => '6.55_02',
3671             'ExtUtils::MY' => '6.5502',
3672             'ExtUtils::MakeMaker' => '6.55_02',
3673             'ExtUtils::MakeMaker::Config'=> '6.55_02',
3674             'ExtUtils::Manifest' => '1.56',
3675             'ExtUtils::Mkbootstrap' => '6.55_02',
3676             'ExtUtils::Mksymlists' => '6.55_02',
3677             'ExtUtils::ParseXS' => '2.2002',
3678             'ExtUtils::testlib' => '6.5502',
3679             'Fatal' => '2.06_01',
3680             'File::Basename' => '2.77',
3681             'File::CheckTree' => '4.4',
3682             'File::Compare' => '1.1006',
3683             'File::Copy' => '2.14',
3684             'File::DosGlob' => '1.01',
3685             'File::Fetch' => '0.20',
3686             'File::Find' => '1.14',
3687             'File::GlobMapper' => '1.000',
3688             'File::Path' => '2.07_03',
3689             'File::Spec' => '3.30',
3690             'File::Spec::Cygwin' => '3.30',
3691             'File::Spec::Epoc' => '3.30',
3692             'File::Spec::Functions' => '3.30',
3693             'File::Spec::Mac' => '3.30',
3694             'File::Spec::OS2' => '3.30',
3695             'File::Spec::Unix' => '3.30',
3696             'File::Spec::VMS' => '3.30',
3697             'File::Spec::Win32' => '3.30',
3698             'File::Temp' => '0.22',
3699             'File::stat' => '1.01',
3700             'FileCache' => '1.08',
3701             'FileHandle' => '2.02',
3702             'Filter::Simple' => '0.84',
3703             'Filter::Util::Call' => '1.08',
3704             'FindBin' => '1.50',
3705             'GDBM_File' => '1.09',
3706             'Getopt::Long' => '2.38',
3707             'Getopt::Std' => '1.06',
3708             'Hash::Util::FieldHash' => '1.04',
3709             'I18N::Collate' => '1.01',
3710             'IO' => '1.25',
3711             'IO::Compress::Adapter::Bzip2'=> '2.020',
3712             'IO::Compress::Adapter::Deflate'=> '2.020',
3713             'IO::Compress::Adapter::Identity'=> '2.020',
3714             'IO::Compress::Base' => '2.020',
3715             'IO::Compress::Base::Common'=> '2.020',
3716             'IO::Compress::Bzip2' => '2.020',
3717             'IO::Compress::Deflate' => '2.020',
3718             'IO::Compress::Gzip' => '2.020',
3719             'IO::Compress::Gzip::Constants'=> '2.020',
3720             'IO::Compress::RawDeflate'=> '2.020',
3721             'IO::Compress::Zip' => '2.020',
3722             'IO::Compress::Zip::Constants'=> '2.020',
3723             'IO::Compress::Zlib::Constants'=> '2.020',
3724             'IO::Compress::Zlib::Extra'=> '2.020',
3725             'IO::Dir' => '1.07',
3726             'IO::Handle' => '1.28',
3727             'IO::Socket' => '1.31',
3728             'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3729             'IO::Uncompress::Adapter::Identity'=> '2.020',
3730             'IO::Uncompress::Adapter::Inflate'=> '2.020',
3731             'IO::Uncompress::AnyInflate'=> '2.020',
3732             'IO::Uncompress::AnyUncompress'=> '2.020',
3733             'IO::Uncompress::Base' => '2.020',
3734             'IO::Uncompress::Bunzip2'=> '2.020',
3735             'IO::Uncompress::Gunzip'=> '2.020',
3736             'IO::Uncompress::Inflate'=> '2.020',
3737             'IO::Uncompress::RawInflate'=> '2.020',
3738             'IO::Uncompress::Unzip' => '2.020',
3739             'IO::Zlib' => '1.09',
3740             'IPC::Cmd' => '0.46',
3741             'IPC::Msg' => '2.01',
3742             'IPC::Open2' => '1.03',
3743             'IPC::Open3' => '1.04',
3744             'IPC::Semaphore' => '2.01',
3745             'IPC::SharedMem' => '2.01',
3746             'IPC::SysV' => '2.01',
3747             'List::Util' => '1.21',
3748             'List::Util::PP' => '1.21',
3749             'List::Util::XS' => '1.21',
3750             'Locale::Maketext' => '1.13',
3751             'Locale::Maketext::Guts'=> '1.13',
3752             'Locale::Maketext::GutsLoader'=> '1.13',
3753             'Log::Message' => '0.02',
3754             'MIME::Base64' => '3.08',
3755             'MIME::QuotedPrint' => '3.08',
3756             'Math::BigFloat' => '1.60',
3757             'Math::BigInt' => '1.89',
3758             'Math::BigInt::FastCalc'=> '0.19',
3759             'Math::BigRat' => '0.22',
3760             'Math::Complex' => '1.56',
3761             'Math::Trig' => '1.2',
3762             'Memoize' => '1.01_03',
3763             'Module::Build' => '0.340201',
3764             'Module::Build::Base' => '0.340201',
3765             'Module::Build::Compat' => '0.340201',
3766             'Module::Build::Config' => '0.340201',
3767             'Module::Build::Cookbook'=> '0.340201',
3768             'Module::Build::Dumper' => '0.340201',
3769             'Module::Build::ModuleInfo'=> '0.340201',
3770             'Module::Build::Notes' => '0.340201',
3771             'Module::Build::PPMMaker'=> '0.340201',
3772             'Module::Build::Platform::Amiga'=> '0.340201',
3773             'Module::Build::Platform::Default'=> '0.340201',
3774             'Module::Build::Platform::EBCDIC'=> '0.340201',
3775             'Module::Build::Platform::MPEiX'=> '0.340201',
3776             'Module::Build::Platform::MacOS'=> '0.340201',
3777             'Module::Build::Platform::RiscOS'=> '0.340201',
3778             'Module::Build::Platform::Unix'=> '0.340201',
3779             'Module::Build::Platform::VMS'=> '0.340201',
3780             'Module::Build::Platform::VOS'=> '0.340201',
3781             'Module::Build::Platform::Windows'=> '0.340201',
3782             'Module::Build::Platform::aix'=> '0.340201',
3783             'Module::Build::Platform::cygwin'=> '0.340201',
3784             'Module::Build::Platform::darwin'=> '0.340201',
3785             'Module::Build::Platform::os2'=> '0.340201',
3786             'Module::Build::PodParser'=> '0.340201',
3787             'Module::Build::Version'=> '0.77',
3788             'Module::CoreList' => '2.18',
3789             'Module::Load' => '0.16',
3790             'Module::Load::Conditional'=> '0.30',
3791             'Module::Loaded' => '0.02',
3792             'Module::Pluggable' => '3.9',
3793             'Module::Pluggable::Object'=> '3.9',
3794             'NDBM_File' => '1.08',
3795             'NEXT' => '0.64',
3796             'Net::Ping' => '2.36',
3797             'O' => '1.01',
3798             'OS2::Process' => '1.03',
3799             'OS2::REXX' => '1.04',
3800             'Object::Accessor' => '0.34',
3801             'POSIX' => '1.17',
3802             'Package::Constants' => '0.02',
3803             'Parse::CPAN::Meta' => '1.39',
3804             'PerlIO' => '1.06',
3805             'PerlIO::encoding' => '0.11',
3806             'PerlIO::scalar' => '0.07',
3807             'PerlIO::via' => '0.07',
3808             'Pod::Checker' => '1.45',
3809             'Pod::Find' => '1.35',
3810             'Pod::Html' => '1.09',
3811             'Pod::InputObjects' => '1.31',
3812             'Pod::Man' => '2.22',
3813             'Pod::ParseLink' => '1.09',
3814             'Pod::ParseUtils' => '1.36',
3815             'Pod::Parser' => '1.37',
3816             'Pod::Perldoc' => '3.14_04',
3817             'Pod::PlainText' => '2.04',
3818             'Pod::Select' => '1.36',
3819             'Pod::Simple' => '3.07',
3820             'Pod::Simple::XHTML' => '3.04',
3821             'Pod::Text' => '3.13',
3822             'Pod::Text::Color' => '2.05',
3823             'Pod::Text::Overstrike' => '2.03',
3824             'Pod::Text::Termcap' => '2.05',
3825             'Pod::Usage' => '1.36',
3826             'Safe' => '2.18',
3827             'Scalar::Util' => '1.21',
3828             'Scalar::Util::PP' => '1.21',
3829             'SelectSaver' => '1.02',
3830             'SelfLoader' => '1.17',
3831             'Socket' => '1.82',
3832             'Storable' => '2.20',
3833             'Switch' => '2.14',
3834             'Symbol' => '1.07',
3835             'Sys::Syslog' => '0.27',
3836             'TAP::Base' => '3.17',
3837             'TAP::Formatter::Base' => '3.17',
3838             'TAP::Formatter::Color' => '3.17',
3839             'TAP::Formatter::Console'=> '3.17',
3840             'TAP::Formatter::Console::ParallelSession'=> '3.17',
3841             'TAP::Formatter::Console::Session'=> '3.17',
3842             'TAP::Formatter::File' => '3.17',
3843             'TAP::Formatter::File::Session'=> '3.17',
3844             'TAP::Formatter::Session'=> '3.17',
3845             'TAP::Harness' => '3.17',
3846             'TAP::Object' => '3.17',
3847             'TAP::Parser' => '3.17',
3848             'TAP::Parser::Aggregator'=> '3.17',
3849             'TAP::Parser::Grammar' => '3.17',
3850             'TAP::Parser::Iterator' => '3.17',
3851             'TAP::Parser::Iterator::Array'=> '3.17',
3852             'TAP::Parser::Iterator::Process'=> '3.17',
3853             'TAP::Parser::Iterator::Stream'=> '3.17',
3854             'TAP::Parser::IteratorFactory'=> '3.17',
3855             'TAP::Parser::Multiplexer'=> '3.17',
3856             'TAP::Parser::Result' => '3.17',
3857             'TAP::Parser::Result::Bailout'=> '3.17',
3858             'TAP::Parser::Result::Comment'=> '3.17',
3859             'TAP::Parser::Result::Plan'=> '3.17',
3860             'TAP::Parser::Result::Pragma'=> '3.17',
3861             'TAP::Parser::Result::Test'=> '3.17',
3862             'TAP::Parser::Result::Unknown'=> '3.17',
3863             'TAP::Parser::Result::Version'=> '3.17',
3864             'TAP::Parser::Result::YAML'=> '3.17',
3865             'TAP::Parser::ResultFactory'=> '3.17',
3866             'TAP::Parser::Scheduler'=> '3.17',
3867             'TAP::Parser::Scheduler::Job'=> '3.17',
3868             'TAP::Parser::Scheduler::Spinner'=> '3.17',
3869             'TAP::Parser::Source' => '3.17',
3870             'TAP::Parser::Source::Perl'=> '3.17',
3871             'TAP::Parser::Utils' => '3.17',
3872             'TAP::Parser::YAMLish::Reader'=> '3.17',
3873             'TAP::Parser::YAMLish::Writer'=> '3.17',
3874             'Term::ANSIColor' => '2.00',
3875             'Term::ReadLine' => '1.04',
3876             'Term::UI' => '0.20',
3877             'Test' => '1.25_02',
3878             'Test::Builder' => '0.92',
3879             'Test::Builder::Module' => '0.92',
3880             'Test::Builder::Tester' => '1.18',
3881             'Test::Builder::Tester::Color'=> '1.18',
3882             'Test::Harness' => '3.17',
3883             'Test::More' => '0.92',
3884             'Test::Simple' => '0.92',
3885             'Text::ParseWords' => '3.27',
3886             'Text::Tabs' => '2009.0305',
3887             'Text::Wrap' => '2009.0305',
3888             'Thread::Queue' => '2.11',
3889             'Thread::Semaphore' => '2.09',
3890             'Tie::Handle' => '4.2',
3891             'Tie::Hash' => '1.03',
3892             'Tie::RefHash' => '1.38',
3893             'Tie::Scalar' => '1.01',
3894             'Tie::StdHandle' => '4.2',
3895             'Time::HiRes' => '1.9719',
3896             'Time::Local' => '1.1901',
3897             'Time::Piece' => '1.15',
3898             'UNIVERSAL' => '1.05',
3899             'Unicode' => '5.1.0',
3900             'Unicode::Normalize' => '1.03',
3901             'Unicode::UCD' => '0.27',
3902             'VMS::Stdio' => '2.4',
3903             'Win32' => '0.39',
3904             'Win32API::File' => '0.1101',
3905             'XS::APItest' => '0.15',
3906             'XS::Typemap' => '0.03',
3907             'XSLoader' => '0.10',
3908             'attributes' => '0.09',
3909             'attrs' => '1.03',
3910             'autodie' => '2.06_01',
3911             'autodie::exception' => '2.06_01',
3912             'autodie::exception::system'=> '2.06_01',
3913             'autodie::hints' => '2.06_01',
3914             'base' => '2.14',
3915             'bigint' => '0.23',
3916             'bignum' => '0.23',
3917             'bigrat' => '0.23',
3918             'blib' => '1.04',
3919             'charnames' => '1.07',
3920             'constant' => '1.17',
3921             'encoding' => '2.6_01',
3922             'feature' => '1.13',
3923             'fields' => '2.14',
3924             'lib' => '0.62',
3925             'mro' => '1.01',
3926             'open' => '1.07',
3927             'ops' => '1.02',
3928             'overload' => '1.07',
3929             'overload::numbers' => undef,
3930             'overloading' => '0.01',
3931             'parent' => '0.221',
3932             're' => '0.09',
3933             'threads' => '1.72',
3934             'threads::shared' => '1.29',
3935             'version' => '0.77',
3936             },
3937             removed => {
3938             'CPAN::API::HOWTO' => 1,
3939             'CPAN::DeferedCode' => 1,
3940             'CPANPLUS::inc' => 1,
3941             'ExtUtils::MakeMaker::bytes'=> 1,
3942             'ExtUtils::MakeMaker::vmsish'=> 1,
3943             'Test::Harness::Assert' => 1,
3944             'Test::Harness::Iterator'=> 1,
3945             'Test::Harness::Point' => 1,
3946             'Test::Harness::Results'=> 1,
3947             'Test::Harness::Straps' => 1,
3948             'Test::Harness::Util' => 1,
3949             }
3950             },
3951             5.011 => {
3952             delta_from => 5.010001,
3953             changed => {
3954             'Archive::Tar' => '1.54',
3955             'Attribute::Handlers' => '0.87',
3956             'AutoLoader' => '5.70',
3957             'B::Deparse' => '0.91',
3958             'B::Lint' => '1.11_01',
3959             'B::Lint::Debug' => '0.01',
3960             'CGI' => '3.45',
3961             'CGI::Apache' => '1.01',
3962             'CGI::Carp' => '3.45',
3963             'CGI::Pretty' => '3.44',
3964             'CGI::Switch' => '1.01',
3965             'CGI::Util' => '3.45',
3966             'CPAN' => '1.94_51',
3967             'CPAN::Distribution' => '1.94',
3968             'CPAN::FTP' => '5.5002',
3969             'CPAN::Index' => '1.94',
3970             'CPAN::LWP::UserAgent' => '1.94',
3971             'CPANPLUS::Dist::Build' => '0.40',
3972             'CPANPLUS::Dist::Build::Constants'=> '0.40',
3973             'Carp' => '1.12',
3974             'Carp::Heavy' => '1.12',
3975             'Class::ISA' => '0.36',
3976             'Compress::Raw::Bzip2' => '2.021',
3977             'Compress::Raw::Zlib' => '2.021',
3978             'Compress::Zlib' => '2.021',
3979             'Cwd' => '3.3002',
3980             'Data::Dumper' => '2.125',
3981             'Encode' => '2.37',
3982             'Exporter' => '5.64',
3983             'Exporter::Heavy' => '5.64',
3984             'ExtUtils::ParseXS' => '2.200403',
3985             'File::Basename' => '2.78',
3986             'File::Copy' => '2.16',
3987             'File::stat' => '1.02',
3988             'IO' => '1.25_01',
3989             'IO::Compress::Adapter::Bzip2'=> '2.021',
3990             'IO::Compress::Adapter::Deflate'=> '2.021',
3991             'IO::Compress::Adapter::Identity'=> '2.021',
3992             'IO::Compress::Base' => '2.021',
3993             'IO::Compress::Base::Common'=> '2.021',
3994             'IO::Compress::Bzip2' => '2.021',
3995             'IO::Compress::Deflate' => '2.021',
3996             'IO::Compress::Gzip' => '2.021',
3997             'IO::Compress::Gzip::Constants'=> '2.021',
3998             'IO::Compress::RawDeflate'=> '2.021',
3999             'IO::Compress::Zip' => '2.021',
4000             'IO::Compress::Zip::Constants'=> '2.021',
4001             'IO::Compress::Zlib::Constants'=> '2.021',
4002             'IO::Compress::Zlib::Extra'=> '2.021',
4003             'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
4004             'IO::Uncompress::Adapter::Identity'=> '2.021',
4005             'IO::Uncompress::Adapter::Inflate'=> '2.021',
4006             'IO::Uncompress::AnyInflate'=> '2.021',
4007             'IO::Uncompress::AnyUncompress'=> '2.021',
4008             'IO::Uncompress::Base' => '2.021',
4009             'IO::Uncompress::Bunzip2'=> '2.021',
4010             'IO::Uncompress::Gunzip'=> '2.021',
4011             'IO::Uncompress::Inflate'=> '2.021',
4012             'IO::Uncompress::RawInflate'=> '2.021',
4013             'IO::Uncompress::Unzip' => '2.021',
4014             'IO::Zlib' => '1.10',
4015             'IPC::Cmd' => '0.50',
4016             'IPC::Open3' => '1.05',
4017             'Locale::Maketext::Simple'=> '0.21',
4018             'Log::Message::Simple' => '0.06',
4019             'Math::BigInt' => '1.89_01',
4020             'Math::BigRat' => '0.24',
4021             'Module::Build' => '0.35',
4022             'Module::Build::Base' => '0.35',
4023             'Module::Build::Compat' => '0.35',
4024             'Module::Build::Config' => '0.35',
4025             'Module::Build::Cookbook'=> '0.35',
4026             'Module::Build::Dumper' => '0.35',
4027             'Module::Build::ModuleInfo'=> '0.35',
4028             'Module::Build::Notes' => '0.35',
4029             'Module::Build::PPMMaker'=> '0.35',
4030             'Module::Build::Platform::Amiga'=> '0.35',
4031             'Module::Build::Platform::Default'=> '0.35',
4032             'Module::Build::Platform::EBCDIC'=> '0.35',
4033             'Module::Build::Platform::MPEiX'=> '0.35',
4034             'Module::Build::Platform::MacOS'=> '0.35',
4035             'Module::Build::Platform::RiscOS'=> '0.35',
4036             'Module::Build::Platform::Unix'=> '0.35',
4037             'Module::Build::Platform::VMS'=> '0.35',
4038             'Module::Build::Platform::VOS'=> '0.35',
4039             'Module::Build::Platform::Windows'=> '0.35',
4040             'Module::Build::Platform::aix'=> '0.35',
4041             'Module::Build::Platform::cygwin'=> '0.35',
4042             'Module::Build::Platform::darwin'=> '0.35',
4043             'Module::Build::Platform::os2'=> '0.35',
4044             'Module::Build::PodParser'=> '0.35',
4045             'Module::CoreList' => '2.19',
4046             'Module::Loaded' => '0.06',
4047             'Opcode' => '1.13',
4048             'PerlIO::via' => '0.08',
4049             'Pod::Perldoc' => '3.15_01',
4050             'Pod::Plainer' => '1.01',
4051             'Safe' => '2.19',
4052             'Socket' => '1.84',
4053             'Switch' => '2.14_01',
4054             'Term::ANSIColor' => '2.02',
4055             'Term::ReadLine' => '1.05',
4056             'Text::Balanced' => '2.02',
4057             'Text::Soundex' => '3.03_01',
4058             'Time::Local' => '1.1901_01',
4059             'Unicode::Collate' => '0.52_01',
4060             'attributes' => '0.12',
4061             'constant' => '1.19',
4062             'deprecate' => '0.01',
4063             'overload' => '1.08',
4064             'parent' => '0.223',
4065             're' => '0.10',
4066             'threads' => '1.74',
4067             'threads::shared' => '1.31',
4068             'warnings' => '1.07',
4069             },
4070             removed => {
4071             'attrs' => 1,
4072             }
4073             },
4074             5.011001 => {
4075             delta_from => 5.011,
4076             changed => {
4077             'B' => '1.23',
4078             'B::Concise' => '0.77',
4079             'B::Deparse' => '0.92',
4080             'CGI' => '3.48',
4081             'CGI::Pretty' => '3.46',
4082             'CGI::Util' => '3.48',
4083             'CPANPLUS' => '0.89_03',
4084             'CPANPLUS::Internals' => '0.89_03',
4085             'CPANPLUS::Shell::Default'=> '0.89_03',
4086             'Carp' => '1.13',
4087             'Carp::Heavy' => '1.13',
4088             'ExtUtils::CBuilder' => '0.260301',
4089             'ExtUtils::CBuilder::Base'=> '0.260301',
4090             'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
4091             'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
4092             'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
4093             'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
4094             'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
4095             'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
4096             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
4097             'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
4098             'ExtUtils::Install' => '1.55',
4099             'ExtUtils::Manifest' => '1.57',
4100             'ExtUtils::Packlist' => '1.44',
4101             'ExtUtils::ParseXS' => '2.21',
4102             'File::Glob' => '1.07',
4103             'File::Path' => '2.08',
4104             'IO' => '1.25_02',
4105             'Module::CoreList' => '2.21',
4106             'OS2::DLL' => '1.04',
4107             'OS2::Process' => '1.04',
4108             'Object::Accessor' => '0.36',
4109             'Opcode' => '1.15',
4110             'POSIX' => '1.18',
4111             'Parse::CPAN::Meta' => '1.40',
4112             'PerlIO::via' => '0.09',
4113             'Pod::Simple' => '3.08',
4114             'Socket' => '1.85',
4115             'Storable' => '2.22',
4116             'Switch' => '2.15',
4117             'Test::Builder' => '0.94',
4118             'Test::Builder::Module' => '0.94',
4119             'Test::More' => '0.94',
4120             'Test::Simple' => '0.94',
4121             'XS::APItest' => '0.16',
4122             'mro' => '1.02',
4123             'overload' => '1.09',
4124             'threads::shared' => '1.32',
4125             },
4126             removed => {
4127             }
4128             },
4129             5.011002 => {
4130             delta_from => 5.011001,
4131             changed => {
4132             'B::Concise' => '0.78',
4133             'B::Deparse' => '0.93',
4134             'CPANPLUS' => '0.89_09',
4135             'CPANPLUS::Dist::Build' => '0.44',
4136             'CPANPLUS::Dist::Build::Constants'=> '0.44',
4137             'CPANPLUS::Internals' => '0.89_09',
4138             'CPANPLUS::Shell::Default'=> '0.89_09',
4139             'Carp' => '1.14',
4140             'Carp::Heavy' => '1.14',
4141             'Compress::Zlib' => '2.022',
4142             'DBM_Filter' => '0.03',
4143             'Encode' => '2.38',
4144             'Encode::Byte' => '2.04',
4145             'Encode::CN' => '2.03',
4146             'Encode::JP' => '2.04',
4147             'Encode::KR' => '2.03',
4148             'Encode::TW' => '2.03',
4149             'Encode::Unicode' => '2.07',
4150             'Env' => '1.01',
4151             'Exporter' => '5.64_01',
4152             'Exporter::Heavy' => '5.64_01',
4153             'ExtUtils::CBuilder' => '0.27',
4154             'ExtUtils::CBuilder::Base'=> '0.27',
4155             'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
4156             'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
4157             'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
4158             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
4159             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
4160             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
4161             'ExtUtils::CBuilder::Platform::aix'=> '0.27',
4162             'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
4163             'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
4164             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
4165             'ExtUtils::CBuilder::Platform::os2'=> '0.27',
4166             'File::Fetch' => '0.22',
4167             'I18N::LangTags::Detect'=> '1.04',
4168             'I18N::Langinfo' => '0.03',
4169             'IO::Compress::Adapter::Bzip2'=> '2.022',
4170             'IO::Compress::Adapter::Deflate'=> '2.022',
4171             'IO::Compress::Adapter::Identity'=> '2.022',
4172             'IO::Compress::Base' => '2.022',
4173             'IO::Compress::Base::Common'=> '2.022',
4174             'IO::Compress::Bzip2' => '2.022',
4175             'IO::Compress::Deflate' => '2.022',
4176             'IO::Compress::Gzip' => '2.022',
4177             'IO::Compress::Gzip::Constants'=> '2.022',
4178             'IO::Compress::RawDeflate'=> '2.022',
4179             'IO::Compress::Zip' => '2.022',
4180             'IO::Compress::Zip::Constants'=> '2.022',
4181             'IO::Compress::Zlib::Constants'=> '2.022',
4182             'IO::Compress::Zlib::Extra'=> '2.022',
4183             'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4184             'IO::Uncompress::Adapter::Identity'=> '2.022',
4185             'IO::Uncompress::Adapter::Inflate'=> '2.022',
4186             'IO::Uncompress::AnyInflate'=> '2.022',
4187             'IO::Uncompress::AnyUncompress'=> '2.022',
4188             'IO::Uncompress::Base' => '2.022',
4189             'IO::Uncompress::Bunzip2'=> '2.022',
4190             'IO::Uncompress::Gunzip'=> '2.022',
4191             'IO::Uncompress::Inflate'=> '2.022',
4192             'IO::Uncompress::RawInflate'=> '2.022',
4193             'IO::Uncompress::Unzip' => '2.022',
4194             'IPC::Cmd' => '0.54',
4195             'List::Util' => '1.22',
4196             'List::Util::PP' => '1.22',
4197             'List::Util::XS' => '1.22',
4198             'Locale::Maketext' => '1.14',
4199             'Module::Build' => '0.35_09',
4200             'Module::Build::Base' => '0.35_09',
4201             'Module::Build::Compat' => '0.35_09',
4202             'Module::Build::Config' => '0.35_09',
4203             'Module::Build::Cookbook'=> '0.35_09',
4204             'Module::Build::Dumper' => '0.35_09',
4205             'Module::Build::ModuleInfo'=> '0.35_09',
4206             'Module::Build::Notes' => '0.35_09',
4207             'Module::Build::PPMMaker'=> '0.35_09',
4208             'Module::Build::Platform::Amiga'=> '0.35_09',
4209             'Module::Build::Platform::Default'=> '0.35_09',
4210             'Module::Build::Platform::EBCDIC'=> '0.35_09',
4211             'Module::Build::Platform::MPEiX'=> '0.35_09',
4212             'Module::Build::Platform::MacOS'=> '0.35_09',
4213             'Module::Build::Platform::RiscOS'=> '0.35_09',
4214             'Module::Build::Platform::Unix'=> '0.35_09',
4215             'Module::Build::Platform::VMS'=> '0.35_09',
4216             'Module::Build::Platform::VOS'=> '0.35_09',
4217             'Module::Build::Platform::Windows'=> '0.35_09',
4218             'Module::Build::Platform::aix'=> '0.35_09',
4219             'Module::Build::Platform::cygwin'=> '0.35_09',
4220             'Module::Build::Platform::darwin'=> '0.35_09',
4221             'Module::Build::Platform::os2'=> '0.35_09',
4222             'Module::Build::PodParser'=> '0.35_09',
4223             'Module::Build::YAML' => '1.40',
4224             'Module::CoreList' => '2.23',
4225             'Module::Load::Conditional'=> '0.34',
4226             'Pod::Simple' => '3.10',
4227             'Pod::Simple::XHTML' => '3.10',
4228             'Scalar::Util' => '1.22',
4229             'Scalar::Util::PP' => '1.22',
4230             'Switch' => '2.16',
4231             'XS::APItest' => '0.17',
4232             'XS::APItest::KeywordRPN'=> '0.003',
4233             'base' => '2.15',
4234             'diagnostics' => '1.18',
4235             'fields' => '2.15',
4236             'inc::latest' => '0.35_09',
4237             'legacy' => '1.00',
4238             'overload' => '1.10',
4239             },
4240             removed => {
4241             }
4242             },
4243             5.011003 => {
4244             delta_from => 5.011002,
4245             changed => {
4246             'App::Cpan' => '1.570001',
4247             'Archive::Extract' => '0.36',
4248             'CPAN' => '1.94_5301',
4249             'CPAN::FTP' => '5.5004',
4250             'CPAN::FirstTime' => '5.530001',
4251             'CPAN::Mirrors' => '1.770001',
4252             'CPANPLUS' => '0.90',
4253             'CPANPLUS::Internals' => '0.90',
4254             'CPANPLUS::Shell::Default'=> '0.90',
4255             'Cwd' => '3.31',
4256             'Encode' => '2.39',
4257             'ExtUtils::Command::MM' => '6.56',
4258             'ExtUtils::Liblist' => '6.56',
4259             'ExtUtils::Liblist::Kid'=> '6.56',
4260             'ExtUtils::MM' => '6.56',
4261             'ExtUtils::MM_AIX' => '6.56',
4262             'ExtUtils::MM_Any' => '6.56',
4263             'ExtUtils::MM_BeOS' => '6.56',
4264             'ExtUtils::MM_Cygwin' => '6.56',
4265             'ExtUtils::MM_DOS' => '6.56',
4266             'ExtUtils::MM_Darwin' => '6.56',
4267             'ExtUtils::MM_MacOS' => '6.56',
4268             'ExtUtils::MM_NW5' => '6.56',
4269             'ExtUtils::MM_OS2' => '6.56',
4270             'ExtUtils::MM_QNX' => '6.56',
4271             'ExtUtils::MM_UWIN' => '6.56',
4272             'ExtUtils::MM_Unix' => '6.56',
4273             'ExtUtils::MM_VMS' => '6.56',
4274             'ExtUtils::MM_VOS' => '6.56',
4275             'ExtUtils::MM_Win32' => '6.56',
4276             'ExtUtils::MM_Win95' => '6.56',
4277             'ExtUtils::MY' => '6.56',
4278             'ExtUtils::MakeMaker' => '6.56',
4279             'ExtUtils::MakeMaker::Config'=> '6.56',
4280             'ExtUtils::Mkbootstrap' => '6.56',
4281             'ExtUtils::Mksymlists' => '6.56',
4282             'ExtUtils::testlib' => '6.56',
4283             'File::Find' => '1.15',
4284             'File::Path' => '2.08_01',
4285             'File::Spec' => '3.31',
4286             'Module::Build' => '0.36',
4287             'Module::Build::Base' => '0.36',
4288             'Module::Build::Compat' => '0.36',
4289             'Module::Build::Config' => '0.36',
4290             'Module::Build::Cookbook'=> '0.36',
4291             'Module::Build::Dumper' => '0.36',
4292             'Module::Build::ModuleInfo'=> '0.36',
4293             'Module::Build::Notes' => '0.36',
4294             'Module::Build::PPMMaker'=> '0.36',
4295             'Module::Build::Platform::Amiga'=> '0.36',
4296             'Module::Build::Platform::Default'=> '0.36',
4297             'Module::Build::Platform::EBCDIC'=> '0.36',
4298             'Module::Build::Platform::MPEiX'=> '0.36',
4299             'Module::Build::Platform::MacOS'=> '0.36',
4300             'Module::Build::Platform::RiscOS'=> '0.36',
4301             'Module::Build::Platform::Unix'=> '0.36',
4302             'Module::Build::Platform::VMS'=> '0.36',
4303             'Module::Build::Platform::VOS'=> '0.36',
4304             'Module::Build::Platform::Windows'=> '0.36',
4305             'Module::Build::Platform::aix'=> '0.36',
4306             'Module::Build::Platform::cygwin'=> '0.36',
4307             'Module::Build::Platform::darwin'=> '0.36',
4308             'Module::Build::Platform::os2'=> '0.36',
4309             'Module::Build::PodParser'=> '0.36',
4310             'Module::CoreList' => '2.24',
4311             'POSIX' => '1.19',
4312             'Pod::Simple' => '3.13',
4313             'Pod::Simple::BlackBox' => '3.13',
4314             'Pod::Simple::Checker' => '3.13',
4315             'Pod::Simple::Debug' => '3.13',
4316             'Pod::Simple::DumpAsText'=> '3.13',
4317             'Pod::Simple::DumpAsXML'=> '3.13',
4318             'Pod::Simple::HTML' => '3.13',
4319             'Pod::Simple::HTMLBatch'=> '3.13',
4320             'Pod::Simple::LinkSection'=> '3.13',
4321             'Pod::Simple::Methody' => '3.13',
4322             'Pod::Simple::Progress' => '3.13',
4323             'Pod::Simple::PullParser'=> '3.13',
4324             'Pod::Simple::PullParserEndToken'=> '3.13',
4325             'Pod::Simple::PullParserStartToken'=> '3.13',
4326             'Pod::Simple::PullParserTextToken'=> '3.13',
4327             'Pod::Simple::PullParserToken'=> '3.13',
4328             'Pod::Simple::RTF' => '3.13',
4329             'Pod::Simple::Search' => '3.13',
4330             'Pod::Simple::SimpleTree'=> '3.13',
4331             'Pod::Simple::Text' => '3.13',
4332             'Pod::Simple::TextContent'=> '3.13',
4333             'Pod::Simple::TiedOutFH'=> '3.13',
4334             'Pod::Simple::Transcode'=> '3.13',
4335             'Pod::Simple::TranscodeDumb'=> '3.13',
4336             'Pod::Simple::TranscodeSmart'=> '3.13',
4337             'Pod::Simple::XHTML' => '3.13',
4338             'Pod::Simple::XMLOutStream'=> '3.13',
4339             'Safe' => '2.20',
4340             'Unicode' => '5.2.0',
4341             'constant' => '1.20',
4342             'diagnostics' => '1.19',
4343             'feature' => '1.14',
4344             'inc::latest' => '0.36',
4345             'threads' => '1.75',
4346             'warnings' => '1.08',
4347             },
4348             removed => {
4349             'legacy' => 1,
4350             }
4351             },
4352             5.011004 => {
4353             delta_from => 5.011003,
4354             changed => {
4355             'App::Cpan' => '1.5701',
4356             'Archive::Extract' => '0.38',
4357             'B::Deparse' => '0.94',
4358             'CPAN' => '1.94_54',
4359             'CPAN::FirstTime' => '5.53',
4360             'CPAN::Mirrors' => '1.77',
4361             'Carp' => '1.15',
4362             'Carp::Heavy' => '1.15',
4363             'Compress::Raw::Bzip2' => '2.024',
4364             'Compress::Raw::Zlib' => '2.024',
4365             'Compress::Zlib' => '2.024',
4366             'File::Copy' => '2.17',
4367             'File::Fetch' => '0.24',
4368             'GDBM_File' => '1.10',
4369             'IO::Compress::Adapter::Bzip2'=> '2.024',
4370             'IO::Compress::Adapter::Deflate'=> '2.024',
4371             'IO::Compress::Adapter::Identity'=> '2.024',
4372             'IO::Compress::Base' => '2.024',
4373             'IO::Compress::Base::Common'=> '2.024',
4374             'IO::Compress::Bzip2' => '2.024',
4375             'IO::Compress::Deflate' => '2.024',
4376             'IO::Compress::Gzip' => '2.024',
4377             'IO::Compress::Gzip::Constants'=> '2.024',
4378             'IO::Compress::RawDeflate'=> '2.024',
4379             'IO::Compress::Zip' => '2.024',
4380             'IO::Compress::Zip::Constants'=> '2.024',
4381             'IO::Compress::Zlib::Constants'=> '2.024',
4382             'IO::Compress::Zlib::Extra'=> '2.024',
4383             'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4384             'IO::Uncompress::Adapter::Identity'=> '2.024',
4385             'IO::Uncompress::Adapter::Inflate'=> '2.024',
4386             'IO::Uncompress::AnyInflate'=> '2.024',
4387             'IO::Uncompress::AnyUncompress'=> '2.024',
4388             'IO::Uncompress::Base' => '2.024',
4389             'IO::Uncompress::Bunzip2'=> '2.024',
4390             'IO::Uncompress::Gunzip'=> '2.024',
4391             'IO::Uncompress::Inflate'=> '2.024',
4392             'IO::Uncompress::RawInflate'=> '2.024',
4393             'IO::Uncompress::Unzip' => '2.024',
4394             'Module::Build' => '0.3603',
4395             'Module::Build::Base' => '0.3603',
4396             'Module::Build::Compat' => '0.3603',
4397             'Module::Build::Config' => '0.3603',
4398             'Module::Build::Cookbook'=> '0.3603',
4399             'Module::Build::Dumper' => '0.3603',
4400             'Module::Build::ModuleInfo'=> '0.3603',
4401             'Module::Build::Notes' => '0.3603',
4402             'Module::Build::PPMMaker'=> '0.3603',
4403             'Module::Build::Platform::Amiga'=> '0.3603',
4404             'Module::Build::Platform::Default'=> '0.3603',
4405             'Module::Build::Platform::EBCDIC'=> '0.3603',
4406             'Module::Build::Platform::MPEiX'=> '0.3603',
4407             'Module::Build::Platform::MacOS'=> '0.3603',
4408             'Module::Build::Platform::RiscOS'=> '0.3603',
4409             'Module::Build::Platform::Unix'=> '0.3603',
4410             'Module::Build::Platform::VMS'=> '0.3603',
4411             'Module::Build::Platform::VOS'=> '0.3603',
4412             'Module::Build::Platform::Windows'=> '0.3603',
4413             'Module::Build::Platform::aix'=> '0.3603',
4414             'Module::Build::Platform::cygwin'=> '0.3603',
4415             'Module::Build::Platform::darwin'=> '0.3603',
4416             'Module::Build::Platform::os2'=> '0.3603',
4417             'Module::Build::PodParser'=> '0.3603',
4418             'Module::CoreList' => '2.25',
4419             'PerlIO::encoding' => '0.12',
4420             'Safe' => '2.21',
4421             'UNIVERSAL' => '1.06',
4422             'feature' => '1.15',
4423             'inc::latest' => '0.3603',
4424             'less' => '0.03',
4425             're' => '0.11',
4426             'version' => '0.81',
4427             'warnings' => '1.09',
4428             },
4429             removed => {
4430             }
4431             },
4432             5.011005 => {
4433             delta_from => 5.011004,
4434             changed => {
4435             'B::Debug' => '1.12',
4436             'CPAN' => '1.94_56',
4437             'CPAN::Debug' => '5.5001',
4438             'CPAN::Distribution' => '1.9456',
4439             'CPAN::FirstTime' => '5.5301',
4440             'CPAN::HandleConfig' => '5.5001',
4441             'CPAN::Shell' => '5.5001',
4442             'CPAN::Tarzip' => '5.5011',
4443             'CPANPLUS::Dist::Build' => '0.46',
4444             'CPANPLUS::Dist::Build::Constants'=> '0.46',
4445             'Module::CoreList' => '2.26',
4446             'Pod::Man' => '2.23',
4447             'Pod::ParseLink' => '1.10',
4448             'Pod::Perldoc' => '3.15_02',
4449             'Pod::Plainer' => '1.02',
4450             'Pod::Text' => '3.14',
4451             'Pod::Text::Color' => '2.06',
4452             'Pod::Text::Overstrike' => '2.04',
4453             'Pod::Text::Termcap' => '2.06',
4454             'Safe' => '2.22',
4455             'Socket' => '1.86',
4456             'version' => '0.82',
4457             },
4458             removed => {
4459             }
4460             },
4461             5.012 => {
4462             delta_from => 5.011005,
4463             changed => {
4464             'B::Deparse' => '0.96',
4465             'CPAN::Distribution' => '1.9456_01',
4466             'Module::CoreList' => '2.29',
4467             'Safe' => '2.25',
4468             'Socket' => '1.87',
4469             'Tie::Scalar' => '1.02',
4470             'Time::Piece' => '1.15_01',
4471             'bytes' => '1.04',
4472             'feature' => '1.16',
4473             'utf8' => '1.08',
4474             },
4475             removed => {
4476             }
4477             },
4478             5.012001 => {
4479             delta_from => 5.012,
4480             changed => {
4481             'B::Deparse' => '0.97',
4482             'CGI' => '3.49',
4483             'CGI::Fast' => '1.08',
4484             'Carp' => '1.16',
4485             'Carp::Heavy' => '1.16',
4486             'File::Copy' => '2.18',
4487             'Module::CoreList' => '2.32',
4488             'Pod::Functions' => '1.04',
4489             'Pod::Simple' => '3.14',
4490             'Pod::Simple::BlackBox' => '3.14',
4491             'Pod::Simple::Checker' => '3.14',
4492             'Pod::Simple::Debug' => '3.14',
4493             'Pod::Simple::DumpAsText'=> '3.14',
4494             'Pod::Simple::DumpAsXML'=> '3.14',
4495             'Pod::Simple::HTML' => '3.14',
4496             'Pod::Simple::HTMLBatch'=> '3.14',
4497             'Pod::Simple::LinkSection'=> '3.14',
4498             'Pod::Simple::Methody' => '3.14',
4499             'Pod::Simple::Progress' => '3.14',
4500             'Pod::Simple::PullParser'=> '3.14',
4501             'Pod::Simple::PullParserEndToken'=> '3.14',
4502             'Pod::Simple::PullParserStartToken'=> '3.14',
4503             'Pod::Simple::PullParserTextToken'=> '3.14',
4504             'Pod::Simple::PullParserToken'=> '3.14',
4505             'Pod::Simple::RTF' => '3.14',
4506             'Pod::Simple::Search' => '3.14',
4507             'Pod::Simple::SimpleTree'=> '3.14',
4508             'Pod::Simple::Text' => '3.14',
4509             'Pod::Simple::TextContent'=> '3.14',
4510             'Pod::Simple::TiedOutFH'=> '3.14',
4511             'Pod::Simple::Transcode'=> '3.14',
4512             'Pod::Simple::TranscodeDumb'=> '3.14',
4513             'Pod::Simple::TranscodeSmart'=> '3.14',
4514             'Pod::Simple::XHTML' => '3.14',
4515             'Pod::Simple::XMLOutStream'=> '3.14',
4516             'Safe' => '2.27',
4517             },
4518             removed => {
4519             }
4520             },
4521             5.012002 => {
4522             delta_from => 5.012001,
4523             changed => {
4524             'Carp' => '1.17',
4525             'Carp::Heavy' => '1.17',
4526             'File::Spec' => '3.31_01',
4527             'Module::CoreList' => '2.38',
4528             'Module::Load::Conditional'=> '0.38',
4529             'PerlIO::scalar' => '0.08',
4530             },
4531             removed => {
4532             }
4533             },
4534             5.012003 => {
4535             delta_from => 5.012002,
4536             changed => {
4537             'B::Deparse' => '0.9701',
4538             'Module::Build::Platform::cygwin'=> '0.360301',
4539             'Module::CoreList' => '2.43',
4540             'Socket' => '1.87_01',
4541             },
4542             removed => {
4543             }
4544             },
4545             5.012004 => {
4546             delta_from => 5.012003,
4547             changed => {
4548             'Module::CoreList' => '2.50',
4549             },
4550             removed => {
4551             }
4552             },
4553             5.012005 => {
4554             delta_from => 5.012004,
4555             changed => {
4556             'B::Concise' => '0.78_01',
4557             'Encode' => '2.39_01',
4558             'File::Glob' => '1.07_01',
4559             'Module::CoreList' => '2.50_02',
4560             'Unicode::UCD' => '0.29',
4561             'charnames' => '1.07_01',
4562             },
4563             removed => {
4564             }
4565             },
4566             5.013 => {
4567             delta_from => 5.012,
4568             changed => {
4569             'CGI' => '3.49',
4570             'CGI::Fast' => '1.08',
4571             'Data::Dumper' => '2.126',
4572             'ExtUtils::MM_Unix' => '6.5601',
4573             'ExtUtils::MakeMaker' => '6.5601',
4574             'File::Copy' => '2.18',
4575             'IPC::Open3' => '1.06',
4576             'MIME::Base64' => '3.09',
4577             'MIME::QuotedPrint' => '3.09',
4578             'Module::CoreList' => '2.31',
4579             'Pod::Functions' => '1.04',
4580             'XS::APItest' => '0.18',
4581             'XS::APItest::KeywordRPN'=> '0.004',
4582             'feature' => '1.17',
4583             'threads' => '1.77_01',
4584             'threads::shared' => '1.33',
4585             },
4586             removed => {
4587             }
4588             },
4589             5.013001 => {
4590             delta_from => 5.012001,
4591             changed => {
4592             'Data::Dumper' => '2.126',
4593             'Dumpvalue' => '1.14',
4594             'Errno' => '1.12',
4595             'ExtUtils::MM_Unix' => '6.5601',
4596             'ExtUtils::MakeMaker' => '6.5601',
4597             'ExtUtils::ParseXS' => '2.2205',
4598             'File::Find' => '1.16',
4599             'IPC::Cmd' => '0.58',
4600             'IPC::Open3' => '1.06',
4601             'List::Util' => '1.23',
4602             'List::Util::PP' => '1.23',
4603             'List::Util::XS' => '1.23',
4604             'Locale::Codes' => '3.12',
4605             'Locale::Codes::Country'=> '3.12',
4606             'Locale::Codes::Currency'=> '3.12',
4607             'Locale::Codes::Language'=> '3.12',
4608             'Locale::Codes::Script' => '3.12',
4609             'Locale::Constants' => '3.12',
4610             'Locale::Country' => '3.12',
4611             'Locale::Currency' => '3.12',
4612             'Locale::Language' => '3.12',
4613             'Locale::Script' => '3.12',
4614             'MIME::Base64' => '3.09',
4615             'MIME::QuotedPrint' => '3.09',
4616             'Module::Build::Platform::cygwin'=> '0.360301',
4617             'Module::CoreList' => '2.34',
4618             'Module::Load::Conditional'=> '0.38',
4619             'PerlIO::scalar' => '0.08',
4620             'Scalar::Util' => '1.23',
4621             'Scalar::Util::PP' => '1.23',
4622             'Socket' => '1.88',
4623             'Term::ReadLine' => '1.06',
4624             'Unicode::UCD' => '0.28',
4625             'XS::APItest' => '0.19',
4626             'XS::APItest::KeywordRPN'=> '0.004',
4627             'charnames' => '1.08',
4628             'feature' => '1.17',
4629             'threads' => '1.77_01',
4630             'threads::shared' => '1.33',
4631             },
4632             removed => {
4633             'Class::ISA' => 1,
4634             'Pod::Plainer' => 1,
4635             'Switch' => 1,
4636             }
4637             },
4638             5.013002 => {
4639             delta_from => 5.013001,
4640             changed => {
4641             'B::Concise' => '0.79',
4642             'B::Deparse' => '0.98',
4643             'CPAN' => '1.94_57',
4644             'CPAN::Distribution' => '1.9600',
4645             'Exporter' => '5.64_02',
4646             'Exporter::Heavy' => '5.64_02',
4647             'File::Copy' => '2.19',
4648             'Hash::Util' => '0.08',
4649             'IO::Socket' => '1.32',
4650             'Locale::Codes' => '3.13',
4651             'Locale::Codes::Country'=> '3.13',
4652             'Locale::Codes::Currency'=> '3.13',
4653             'Locale::Codes::Language'=> '3.13',
4654             'Locale::Codes::Script' => '3.13',
4655             'Locale::Constants' => '3.13',
4656             'Locale::Country' => '3.13',
4657             'Locale::Currency' => '3.13',
4658             'Locale::Language' => '3.13',
4659             'Locale::Script' => '3.13',
4660             'Search::Dict' => '1.03',
4661             'Socket' => '1.89',
4662             'Thread::Semaphore' => '2.11',
4663             'UNIVERSAL' => '1.07',
4664             'VMS::DCLsym' => '1.04',
4665             'mro' => '1.03',
4666             'threads' => '1.77_02',
4667             'threads::shared' => '1.33_01',
4668             },
4669             removed => {
4670             }
4671             },
4672             5.013003 => {
4673             delta_from => 5.013002,
4674             changed => {
4675             'App::Prove' => '3.21',
4676             'App::Prove::State' => '3.21',
4677             'App::Prove::State::Result'=> '3.21',
4678             'App::Prove::State::Result::Test'=> '3.21',
4679             'Archive::Extract' => '0.42',
4680             'Archive::Tar' => '1.64',
4681             'Archive::Tar::Constant'=> '1.64',
4682             'Archive::Tar::File' => '1.64',
4683             'Attribute::Handlers' => '0.88',
4684             'CPANPLUS' => '0.9007',
4685             'CPANPLUS::Internals' => '0.9007',
4686             'CPANPLUS::Shell::Default'=> '0.9007',
4687             'Compress::Raw::Bzip2' => '2.027',
4688             'Compress::Raw::Zlib' => '2.027_01',
4689             'Compress::Zlib' => '2.027',
4690             'DB' => '1.03',
4691             'Digest::MD5' => '2.40',
4692             'Digest::SHA' => '5.48',
4693             'Exporter' => '5.64_03',
4694             'Exporter::Heavy' => '5.64_03',
4695             'ExtUtils::CBuilder' => '0.2703',
4696             'ExtUtils::CBuilder::Base'=> '0.2703_01',
4697             'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4698             'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4699             'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4700             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4701             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4702             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4703             'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4704             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4705             'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4706             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4707             'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4708             'ExtUtils::Manifest' => '1.58',
4709             'ExtUtils::ParseXS' => '2.2206',
4710             'Fatal' => '2.10',
4711             'File::Basename' => '2.79',
4712             'File::Copy' => '2.20',
4713             'File::DosGlob' => '1.02',
4714             'File::Find' => '1.17',
4715             'File::Glob' => '1.08',
4716             'File::stat' => '1.03',
4717             'I18N::LangTags' => '0.35_01',
4718             'I18N::LangTags::List' => '0.35_01',
4719             'IO::Compress::Adapter::Bzip2'=> '2.027',
4720             'IO::Compress::Adapter::Deflate'=> '2.027',
4721             'IO::Compress::Adapter::Identity'=> '2.027',
4722             'IO::Compress::Base' => '2.027',
4723             'IO::Compress::Base::Common'=> '2.027',
4724             'IO::Compress::Bzip2' => '2.027',
4725             'IO::Compress::Deflate' => '2.027',
4726             'IO::Compress::Gzip' => '2.027',
4727             'IO::Compress::Gzip::Constants'=> '2.027',
4728             'IO::Compress::RawDeflate'=> '2.027',
4729             'IO::Compress::Zip' => '2.027',
4730             'IO::Compress::Zip::Constants'=> '2.027',
4731             'IO::Compress::Zlib::Constants'=> '2.027',
4732             'IO::Compress::Zlib::Extra'=> '2.027',
4733             'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4734             'IO::Uncompress::Adapter::Identity'=> '2.027',
4735             'IO::Uncompress::Adapter::Inflate'=> '2.027',
4736             'IO::Uncompress::AnyInflate'=> '2.027',
4737             'IO::Uncompress::AnyUncompress'=> '2.027',
4738             'IO::Uncompress::Base' => '2.027',
4739             'IO::Uncompress::Bunzip2'=> '2.027',
4740             'IO::Uncompress::Gunzip'=> '2.027',
4741             'IO::Uncompress::Inflate'=> '2.027',
4742             'IO::Uncompress::RawInflate'=> '2.027',
4743             'IO::Uncompress::Unzip' => '2.027',
4744             'IPC::Cmd' => '0.60',
4745             'IPC::Msg' => '2.03',
4746             'IPC::Semaphore' => '2.03',
4747             'IPC::SharedMem' => '2.03',
4748             'IPC::SysV' => '2.03',
4749             'Locale::Maketext' => '1.15',
4750             'Locale::Maketext::Guts'=> undef,
4751             'Locale::Maketext::GutsLoader'=> undef,
4752             'Module::Build' => '0.3607',
4753             'Module::Build::Base' => '0.3607',
4754             'Module::Build::Compat' => '0.3607',
4755             'Module::Build::Config' => '0.3607',
4756             'Module::Build::Cookbook'=> '0.3607',
4757             'Module::Build::Dumper' => '0.3607',
4758             'Module::Build::ModuleInfo'=> '0.3607',
4759             'Module::Build::Notes' => '0.3607',
4760             'Module::Build::PPMMaker'=> '0.3607',
4761             'Module::Build::Platform::Amiga'=> '0.3607',
4762             'Module::Build::Platform::Default'=> '0.3607',
4763             'Module::Build::Platform::EBCDIC'=> '0.3607',
4764             'Module::Build::Platform::MPEiX'=> '0.3607',
4765             'Module::Build::Platform::MacOS'=> '0.3607',
4766             'Module::Build::Platform::RiscOS'=> '0.3607',
4767             'Module::Build::Platform::Unix'=> '0.3607',
4768             'Module::Build::Platform::VMS'=> '0.3607',
4769             'Module::Build::Platform::VOS'=> '0.3607',
4770             'Module::Build::Platform::Windows'=> '0.3607',
4771             'Module::Build::Platform::aix'=> '0.3607',
4772             'Module::Build::Platform::cygwin'=> '0.3607',
4773             'Module::Build::Platform::darwin'=> '0.3607',
4774             'Module::Build::Platform::os2'=> '0.3607',
4775             'Module::Build::PodParser'=> '0.3607',
4776             'Module::CoreList' => '2.36',
4777             'Module::Load' => '0.18',
4778             'TAP::Base' => '3.21',
4779             'TAP::Formatter::Base' => '3.21',
4780             'TAP::Formatter::Color' => '3.21',
4781             'TAP::Formatter::Console'=> '3.21',
4782             'TAP::Formatter::Console::ParallelSession'=> '3.21',
4783             'TAP::Formatter::Console::Session'=> '3.21',
4784             'TAP::Formatter::File' => '3.21',
4785             'TAP::Formatter::File::Session'=> '3.21',
4786             'TAP::Formatter::Session'=> '3.21',
4787             'TAP::Harness' => '3.21',
4788             'TAP::Object' => '3.21',
4789             'TAP::Parser' => '3.21',
4790             'TAP::Parser::Aggregator'=> '3.21',
4791             'TAP::Parser::Grammar' => '3.21',
4792             'TAP::Parser::Iterator' => '3.21',
4793             'TAP::Parser::Iterator::Array'=> '3.21',
4794             'TAP::Parser::Iterator::Process'=> '3.21',
4795             'TAP::Parser::Iterator::Stream'=> '3.21',
4796             'TAP::Parser::IteratorFactory'=> '3.21',
4797             'TAP::Parser::Multiplexer'=> '3.21',
4798             'TAP::Parser::Result' => '3.21',
4799             'TAP::Parser::Result::Bailout'=> '3.21',
4800             'TAP::Parser::Result::Comment'=> '3.21',
4801             'TAP::Parser::Result::Plan'=> '3.21',
4802             'TAP::Parser::Result::Pragma'=> '3.21',
4803             'TAP::Parser::Result::Test'=> '3.21',
4804             'TAP::Parser::Result::Unknown'=> '3.21',
4805             'TAP::Parser::Result::Version'=> '3.21',
4806             'TAP::Parser::Result::YAML'=> '3.21',
4807             'TAP::Parser::ResultFactory'=> '3.21',
4808             'TAP::Parser::Scheduler'=> '3.21',
4809             'TAP::Parser::Scheduler::Job'=> '3.21',
4810             'TAP::Parser::Scheduler::Spinner'=> '3.21',
4811             'TAP::Parser::Source' => '3.21',
4812             'TAP::Parser::SourceHandler'=> '3.21',
4813             'TAP::Parser::SourceHandler::Executable'=> '3.21',
4814             'TAP::Parser::SourceHandler::File'=> '3.21',
4815             'TAP::Parser::SourceHandler::Handle'=> '3.21',
4816             'TAP::Parser::SourceHandler::Perl'=> '3.21',
4817             'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4818             'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4819             'TAP::Parser::Utils' => '3.21',
4820             'TAP::Parser::YAMLish::Reader'=> '3.21',
4821             'TAP::Parser::YAMLish::Writer'=> '3.21',
4822             'Term::ANSIColor' => '3.00',
4823             'Term::ReadLine' => '1.07',
4824             'Test::Harness' => '3.21',
4825             'Tie::Array' => '1.04',
4826             'Time::HiRes' => '1.9721',
4827             'Time::Piece' => '1.20_01',
4828             'Unicode::Collate' => '0.53',
4829             'Unicode::Normalize' => '1.06',
4830             'Unicode::UCD' => '0.29',
4831             'autodie' => '2.10',
4832             'autodie::exception' => '2.10',
4833             'autodie::exception::system'=> '2.10',
4834             'autodie::hints' => '2.10',
4835             'blib' => '1.05',
4836             'charnames' => '1.11',
4837             'diagnostics' => '1.20',
4838             'inc::latest' => '0.3607',
4839             'lib' => '0.63',
4840             're' => '0.12',
4841             'threads' => '1.77_03',
4842             'threads::shared' => '1.33_02',
4843             'vars' => '1.02',
4844             'warnings' => '1.10',
4845             },
4846             removed => {
4847             'TAP::Parser::Source::Perl'=> 1,
4848             }
4849             },
4850             5.013004 => {
4851             delta_from => 5.013003,
4852             changed => {
4853             'App::Prove' => '3.22',
4854             'App::Prove::State' => '3.22',
4855             'App::Prove::State::Result'=> '3.22',
4856             'App::Prove::State::Result::Test'=> '3.22',
4857             'Archive::Tar' => '1.68',
4858             'Archive::Tar::Constant'=> '1.68',
4859             'Archive::Tar::File' => '1.68',
4860             'B::Lint' => '1.12',
4861             'B::Lint::Debug' => '1.12',
4862             'Carp' => '1.18',
4863             'Carp::Heavy' => '1.18',
4864             'Compress::Raw::Bzip2' => '2.030',
4865             'Compress::Raw::Zlib' => '2.030',
4866             'Compress::Zlib' => '2.030',
4867             'ExtUtils::ParseXS' => '2.2207',
4868             'File::Spec' => '3.31_01',
4869             'I18N::Langinfo' => '0.04',
4870             'IO::Compress::Adapter::Bzip2'=> '2.030',
4871             'IO::Compress::Adapter::Deflate'=> '2.030',
4872             'IO::Compress::Adapter::Identity'=> '2.030',
4873             'IO::Compress::Base' => '2.030',
4874             'IO::Compress::Base::Common'=> '2.030',
4875             'IO::Compress::Bzip2' => '2.030',
4876             'IO::Compress::Deflate' => '2.030',
4877             'IO::Compress::Gzip' => '2.030',
4878             'IO::Compress::Gzip::Constants'=> '2.030',
4879             'IO::Compress::RawDeflate'=> '2.030',
4880             'IO::Compress::Zip' => '2.030',
4881             'IO::Compress::Zip::Constants'=> '2.030',
4882             'IO::Compress::Zlib::Constants'=> '2.030',
4883             'IO::Compress::Zlib::Extra'=> '2.030',
4884             'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4885             'IO::Uncompress::Adapter::Identity'=> '2.030',
4886             'IO::Uncompress::Adapter::Inflate'=> '2.030',
4887             'IO::Uncompress::AnyInflate'=> '2.030',
4888             'IO::Uncompress::AnyUncompress'=> '2.030',
4889             'IO::Uncompress::Base' => '2.030',
4890             'IO::Uncompress::Bunzip2'=> '2.030',
4891             'IO::Uncompress::Gunzip'=> '2.030',
4892             'IO::Uncompress::Inflate'=> '2.030',
4893             'IO::Uncompress::RawInflate'=> '2.030',
4894             'IO::Uncompress::Unzip' => '2.030',
4895             'Module::CoreList' => '2.37',
4896             'TAP::Base' => '3.22',
4897             'TAP::Formatter::Base' => '3.22',
4898             'TAP::Formatter::Color' => '3.22',
4899             'TAP::Formatter::Console'=> '3.22',
4900             'TAP::Formatter::Console::ParallelSession'=> '3.22',
4901             'TAP::Formatter::Console::Session'=> '3.22',
4902             'TAP::Formatter::File' => '3.22',
4903             'TAP::Formatter::File::Session'=> '3.22',
4904             'TAP::Formatter::Session'=> '3.22',
4905             'TAP::Harness' => '3.22',
4906             'TAP::Object' => '3.22',
4907             'TAP::Parser' => '3.22',
4908             'TAP::Parser::Aggregator'=> '3.22',
4909             'TAP::Parser::Grammar' => '3.22',
4910             'TAP::Parser::Iterator' => '3.22',
4911             'TAP::Parser::Iterator::Array'=> '3.22',
4912             'TAP::Parser::Iterator::Process'=> '3.22',
4913             'TAP::Parser::Iterator::Stream'=> '3.22',
4914             'TAP::Parser::IteratorFactory'=> '3.22',
4915             'TAP::Parser::Multiplexer'=> '3.22',
4916             'TAP::Parser::Result' => '3.22',
4917             'TAP::Parser::Result::Bailout'=> '3.22',
4918             'TAP::Parser::Result::Comment'=> '3.22',
4919             'TAP::Parser::Result::Plan'=> '3.22',
4920             'TAP::Parser::Result::Pragma'=> '3.22',
4921             'TAP::Parser::Result::Test'=> '3.22',
4922             'TAP::Parser::Result::Unknown'=> '3.22',
4923             'TAP::Parser::Result::Version'=> '3.22',
4924             'TAP::Parser::Result::YAML'=> '3.22',
4925             'TAP::Parser::ResultFactory'=> '3.22',
4926             'TAP::Parser::Scheduler'=> '3.22',
4927             'TAP::Parser::Scheduler::Job'=> '3.22',
4928             'TAP::Parser::Scheduler::Spinner'=> '3.22',
4929             'TAP::Parser::Source' => '3.22',
4930             'TAP::Parser::SourceHandler'=> '3.22',
4931             'TAP::Parser::SourceHandler::Executable'=> '3.22',
4932             'TAP::Parser::SourceHandler::File'=> '3.22',
4933             'TAP::Parser::SourceHandler::Handle'=> '3.22',
4934             'TAP::Parser::SourceHandler::Perl'=> '3.22',
4935             'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4936             'TAP::Parser::Utils' => '3.22',
4937             'TAP::Parser::YAMLish::Reader'=> '3.22',
4938             'TAP::Parser::YAMLish::Writer'=> '3.22',
4939             'Test::Builder' => '0.96',
4940             'Test::Builder::Module' => '0.96',
4941             'Test::Builder::Tester' => '1.20',
4942             'Test::Builder::Tester::Color'=> '1.20',
4943             'Test::Harness' => '3.22',
4944             'Test::More' => '0.96',
4945             'Test::Simple' => '0.96',
4946             'Unicode::Collate' => '0.56',
4947             'Unicode::Collate::Locale'=> '0.56',
4948             'XS::APItest' => '0.20',
4949             'charnames' => '1.15',
4950             'feature' => '1.18',
4951             },
4952             removed => {
4953             'TAP::Parser::SourceHandler::pgTAP'=> 1,
4954             }
4955             },
4956             5.013005 => {
4957             delta_from => 5.013004,
4958             changed => {
4959             'B::Debug' => '1.16',
4960             'CPANPLUS::Dist::Build' => '0.48',
4961             'CPANPLUS::Dist::Build::Constants'=> '0.48',
4962             'Data::Dumper' => '2.128',
4963             'Encode' => '2.40',
4964             'Encode::Guess' => '2.04',
4965             'Encode::MIME::Header' => '2.12',
4966             'Encode::Unicode::UTF7' => '2.05',
4967             'Errno' => '1.13',
4968             'ExtUtils::Command::MM' => '6.57_05',
4969             'ExtUtils::Liblist' => '6.57_05',
4970             'ExtUtils::Liblist::Kid'=> '6.5705',
4971             'ExtUtils::MM' => '6.57_05',
4972             'ExtUtils::MM_AIX' => '6.57_05',
4973             'ExtUtils::MM_Any' => '6.57_05',
4974             'ExtUtils::MM_BeOS' => '6.57_05',
4975             'ExtUtils::MM_Cygwin' => '6.57_05',
4976             'ExtUtils::MM_DOS' => '6.5705',
4977             'ExtUtils::MM_Darwin' => '6.57_05',
4978             'ExtUtils::MM_MacOS' => '6.5705',
4979             'ExtUtils::MM_NW5' => '6.57_05',
4980             'ExtUtils::MM_OS2' => '6.57_05',
4981             'ExtUtils::MM_QNX' => '6.57_05',
4982             'ExtUtils::MM_UWIN' => '6.5705',
4983             'ExtUtils::MM_Unix' => '6.57_05',
4984             'ExtUtils::MM_VMS' => '6.57_05',
4985             'ExtUtils::MM_VOS' => '6.57_05',
4986             'ExtUtils::MM_Win32' => '6.57_05',
4987             'ExtUtils::MM_Win95' => '6.57_05',
4988             'ExtUtils::MY' => '6.5705',
4989             'ExtUtils::MakeMaker' => '6.57_05',
4990             'ExtUtils::MakeMaker::Config'=> '6.57_05',
4991             'ExtUtils::MakeMaker::YAML'=> '1.44',
4992             'ExtUtils::Mkbootstrap' => '6.57_05',
4993             'ExtUtils::Mksymlists' => '6.57_05',
4994             'ExtUtils::testlib' => '6.5705',
4995             'Filter::Simple' => '0.85',
4996             'Hash::Util' => '0.09',
4997             'Math::BigFloat' => '1.62',
4998             'Math::BigInt' => '1.95',
4999             'Math::BigInt::Calc' => '0.54',
5000             'Math::BigInt::CalcEmu' => '0.06',
5001             'Math::BigInt::FastCalc'=> '0.22',
5002             'Math::BigRat' => '0.26',
5003             'Module::CoreList' => '2.39',
5004             'POSIX' => '1.20',
5005             'PerlIO::scalar' => '0.09',
5006             'Safe' => '2.28',
5007             'Test::Builder' => '0.97_01',
5008             'Test::Builder::Module' => '0.97_01',
5009             'Test::Builder::Tester' => '1.21_01',
5010             'Test::Builder::Tester::Color'=> '1.21_01',
5011             'Test::More' => '0.97_01',
5012             'Test::Simple' => '0.97_01',
5013             'Tie::Hash' => '1.04',
5014             'Unicode::Collate' => '0.59',
5015             'Unicode::Collate::Locale'=> '0.59',
5016             'XS::APItest' => '0.21',
5017             'XS::APItest::KeywordRPN'=> '0.005',
5018             'XSLoader' => '0.11',
5019             'bigint' => '0.25',
5020             'bignum' => '0.25',
5021             'bigrat' => '0.25',
5022             'blib' => '1.06',
5023             'open' => '1.08',
5024             'threads::shared' => '1.33_03',
5025             'warnings' => '1.11',
5026             'warnings::register' => '1.02',
5027             },
5028             removed => {
5029             }
5030             },
5031             5.013006 => {
5032             delta_from => 5.013005,
5033             changed => {
5034             'Archive::Extract' => '0.44',
5035             'B' => '1.24',
5036             'B::Deparse' => '0.99',
5037             'CPAN' => '1.94_61',
5038             'CPAN::FTP' => '5.5005',
5039             'CPAN::Queue' => '5.5001',
5040             'CPAN::Version' => '5.5001',
5041             'Carp' => '1.19',
5042             'Carp::Heavy' => '1.19',
5043             'Compress::Raw::Bzip2' => '2.031',
5044             'Cwd' => '3.34',
5045             'Data::Dumper' => '2.129',
5046             'Devel::Peek' => '1.05',
5047             'Digest::MD5' => '2.51',
5048             'ExtUtils::Constant::Base'=> '0.05',
5049             'ExtUtils::Constant::ProxySubs'=> '0.07',
5050             'ExtUtils::Embed' => '1.29',
5051             'ExtUtils::XSSymSet' => '1.2',
5052             'Fcntl' => '1.09',
5053             'File::DosGlob' => '1.03',
5054             'File::Find' => '1.18',
5055             'File::Glob' => '1.09',
5056             'File::Spec' => '3.33',
5057             'File::Spec::Cygwin' => '3.33',
5058             'File::Spec::Epoc' => '3.33',
5059             'File::Spec::Functions' => '3.33',
5060             'File::Spec::Mac' => '3.33',
5061             'File::Spec::OS2' => '3.33',
5062             'File::Spec::Unix' => '3.33',
5063             'File::Spec::VMS' => '3.33',
5064             'File::Spec::Win32' => '3.33',
5065             'GDBM_File' => '1.11',
5066             'Hash::Util::FieldHash' => '1.05',
5067             'I18N::Langinfo' => '0.06',
5068             'IPC::Cmd' => '0.64',
5069             'IPC::Open3' => '1.07',
5070             'Locale::Codes' => '3.14',
5071             'Locale::Codes::Country'=> '3.14',
5072             'Locale::Codes::Currency'=> '3.14',
5073             'Locale::Codes::Language'=> '3.14',
5074             'Locale::Codes::Script' => '3.14',
5075             'Locale::Constants' => '3.14',
5076             'Locale::Country' => '3.14',
5077             'Locale::Currency' => '3.14',
5078             'Locale::Language' => '3.14',
5079             'Locale::Maketext' => '1.16',
5080             'Locale::Script' => '3.14',
5081             'Math::BigFloat' => '1.63',
5082             'Math::BigInt' => '1.97',
5083             'Math::BigInt::Calc' => '0.55',
5084             'Math::BigInt::CalcEmu' => '0.07',
5085             'Module::CoreList' => '2.40',
5086             'NDBM_File' => '1.09',
5087             'NEXT' => '0.65',
5088             'ODBM_File' => '1.08',
5089             'Opcode' => '1.16',
5090             'POSIX' => '1.21',
5091             'PerlIO::encoding' => '0.13',
5092             'PerlIO::scalar' => '0.10',
5093             'PerlIO::via' => '0.10',
5094             'Pod::Man' => '2.25',
5095             'Pod::Text' => '3.15',
5096             'SDBM_File' => '1.07',
5097             'Socket' => '1.90',
5098             'Sys::Hostname' => '1.13',
5099             'Tie::Hash::NamedCapture'=> '0.07',
5100             'Unicode::Collate' => '0.63',
5101             'Unicode::Collate::Locale'=> '0.63',
5102             'Unicode::Normalize' => '1.07',
5103             'XS::APItest' => '0.23',
5104             'XSLoader' => '0.13',
5105             'attributes' => '0.13',
5106             'charnames' => '1.16',
5107             'if' => '0.06',
5108             'mro' => '1.04',
5109             'overload' => '1.11',
5110             're' => '0.13',
5111             'sigtrap' => '1.05',
5112             'threads' => '1.81_01',
5113             'threads::shared' => '1.34',
5114             },
5115             removed => {
5116             'XS::APItest::KeywordRPN'=> 1,
5117             }
5118             },
5119             5.013007 => {
5120             delta_from => 5.013006,
5121             changed => {
5122             'Archive::Extract' => '0.46',
5123             'Archive::Tar' => '1.72',
5124             'Archive::Tar::Constant'=> '1.72',
5125             'Archive::Tar::File' => '1.72',
5126             'AutoLoader' => '5.71',
5127             'B' => '1.26',
5128             'B::Concise' => '0.81',
5129             'B::Deparse' => '1.01',
5130             'CGI' => '3.50',
5131             'CPAN' => '1.94_62',
5132             'CPANPLUS' => '0.9010',
5133             'CPANPLUS::Dist::Build' => '0.50',
5134             'CPANPLUS::Dist::Build::Constants'=> '0.50',
5135             'CPANPLUS::Internals' => '0.9010',
5136             'CPANPLUS::Shell::Default'=> '0.9010',
5137             'Data::Dumper' => '2.130_01',
5138             'DynaLoader' => '1.11',
5139             'ExtUtils::Constant' => '0.23',
5140             'ExtUtils::Constant::ProxySubs'=> '0.08',
5141             'Fcntl' => '1.10',
5142             'File::Fetch' => '0.28',
5143             'File::Glob' => '1.10',
5144             'File::stat' => '1.04',
5145             'GDBM_File' => '1.12',
5146             'Hash::Util' => '0.10',
5147             'Hash::Util::FieldHash' => '1.06',
5148             'I18N::Langinfo' => '0.07',
5149             'Locale::Maketext' => '1.17',
5150             'Locale::Maketext::Guts'=> '1.17',
5151             'Locale::Maketext::GutsLoader'=> '1.17',
5152             'MIME::Base64' => '3.10',
5153             'MIME::QuotedPrint' => '3.10',
5154             'Math::BigFloat' => '1.99_01',
5155             'Math::BigInt' => '1.99_01',
5156             'Math::BigInt::Calc' => '1.99_01',
5157             'Math::BigInt::CalcEmu' => '1.99_01',
5158             'Math::BigInt::FastCalc'=> '0.24_01',
5159             'Math::BigRat' => '0.26_01',
5160             'Module::CoreList' => '2.41',
5161             'NDBM_File' => '1.10',
5162             'ODBM_File' => '1.09',
5163             'Opcode' => '1.17',
5164             'POSIX' => '1.22',
5165             'Pod::Simple' => '3.15',
5166             'Pod::Simple::BlackBox' => '3.15',
5167             'Pod::Simple::Checker' => '3.15',
5168             'Pod::Simple::Debug' => '3.15',
5169             'Pod::Simple::DumpAsText'=> '3.15',
5170             'Pod::Simple::DumpAsXML'=> '3.15',
5171             'Pod::Simple::HTML' => '3.15',
5172             'Pod::Simple::HTMLBatch'=> '3.15',
5173             'Pod::Simple::LinkSection'=> '3.15',
5174             'Pod::Simple::Methody' => '3.15',
5175             'Pod::Simple::Progress' => '3.15',
5176             'Pod::Simple::PullParser'=> '3.15',
5177             'Pod::Simple::PullParserEndToken'=> '3.15',
5178             'Pod::Simple::PullParserStartToken'=> '3.15',
5179             'Pod::Simple::PullParserTextToken'=> '3.15',
5180             'Pod::Simple::PullParserToken'=> '3.15',
5181             'Pod::Simple::RTF' => '3.15',
5182             'Pod::Simple::Search' => '3.15',
5183             'Pod::Simple::SimpleTree'=> '3.15',
5184             'Pod::Simple::Text' => '3.15',
5185             'Pod::Simple::TextContent'=> '3.15',
5186             'Pod::Simple::TiedOutFH'=> '3.15',
5187             'Pod::Simple::Transcode'=> '3.15',
5188             'Pod::Simple::TranscodeDumb'=> '3.15',
5189             'Pod::Simple::TranscodeSmart'=> '3.15',
5190             'Pod::Simple::XHTML' => '3.15',
5191             'Pod::Simple::XMLOutStream'=> '3.15',
5192             'SDBM_File' => '1.08',
5193             'Safe' => '2.29',
5194             'SelfLoader' => '1.18',
5195             'Socket' => '1.91',
5196             'Storable' => '2.24',
5197             'Sys::Hostname' => '1.14',
5198             'Unicode' => '6.0.0',
5199             'Unicode::Collate' => '0.67',
5200             'Unicode::Collate::CJK::Big5'=> '0.65',
5201             'Unicode::Collate::CJK::GB2312'=> '0.65',
5202             'Unicode::Collate::CJK::JISX0208'=> '0.64',
5203             'Unicode::Collate::CJK::Korean'=> '0.66',
5204             'Unicode::Collate::CJK::Pinyin'=> '0.65',
5205             'Unicode::Collate::CJK::Stroke'=> '0.65',
5206             'Unicode::Collate::Locale'=> '0.67',
5207             'XS::APItest' => '0.26',
5208             'XS::Typemap' => '0.04',
5209             'charnames' => '1.17',
5210             'mro' => '1.05',
5211             'parent' => '0.224',
5212             're' => '0.14',
5213             'threads' => '1.81_02',
5214             },
5215             removed => {
5216             }
5217             },
5218             5.013008 => {
5219             delta_from => 5.013007,
5220             changed => {
5221             'Archive::Tar' => '1.74',
5222             'Archive::Tar::Constant'=> '1.74',
5223             'Archive::Tar::File' => '1.74',
5224             'B' => '1.27',
5225             'B::Concise' => '0.82',
5226             'B::Deparse' => '1.02',
5227             'Carp::Heavy' => '1.17',
5228             'Cwd' => '3.35',
5229             'Data::Dumper' => '2.130_02',
5230             'Devel::Peek' => '1.06',
5231             'Devel::SelfStubber' => '1.05',
5232             'Digest::SHA' => '5.50',
5233             'Dumpvalue' => '1.15',
5234             'DynaLoader' => '1.12',
5235             'Env' => '1.02',
5236             'Exporter::Heavy' => '5.64_01',
5237             'ExtUtils::CBuilder' => '0.280201',
5238             'ExtUtils::CBuilder::Base'=> '0.280201',
5239             'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5240             'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5241             'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5242             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5243             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5244             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5245             'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5246             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5247             'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5248             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5249             'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5250             'ExtUtils::Constant::Utils'=> '0.03',
5251             'ExtUtils::Embed' => '1.30',
5252             'ExtUtils::ParseXS' => '2.2208',
5253             'Fatal' => '2.1001',
5254             'Fcntl' => '1.11',
5255             'File::CheckTree' => '4.41',
5256             'File::Glob' => '1.11',
5257             'GDBM_File' => '1.13',
5258             'Hash::Util::FieldHash' => '1.07',
5259             'I18N::Collate' => '1.02',
5260             'IO' => '1.25_03',
5261             'IPC::Cmd' => '0.66',
5262             'IPC::Open3' => '1.08',
5263             'Locale::Codes' => '3.15',
5264             'Locale::Codes::Country'=> '3.15',
5265             'Locale::Codes::Currency'=> '3.15',
5266             'Locale::Codes::Language'=> '3.15',
5267             'Locale::Codes::Script' => '3.15',
5268             'Locale::Constants' => '3.15',
5269             'Locale::Country' => '3.15',
5270             'Locale::Currency' => '3.15',
5271             'Locale::Language' => '3.15',
5272             'Locale::Script' => '3.15',
5273             'MIME::Base64' => '3.13',
5274             'MIME::QuotedPrint' => '3.13',
5275             'Math::BigFloat' => '1.99_02',
5276             'Math::BigInt' => '1.99_02',
5277             'Math::BigInt::Calc' => '1.99_02',
5278             'Math::BigInt::CalcEmu' => '1.99_02',
5279             'Memoize' => '1.02',
5280             'Memoize::AnyDBM_File' => '1.02',
5281             'Memoize::Expire' => '1.02',
5282             'Memoize::ExpireFile' => '1.02',
5283             'Memoize::ExpireTest' => '1.02',
5284             'Memoize::NDBM_File' => '1.02',
5285             'Memoize::SDBM_File' => '1.02',
5286             'Memoize::Storable' => '1.02',
5287             'Module::CoreList' => '2.43',
5288             'NDBM_File' => '1.11',
5289             'Net::Ping' => '2.37',
5290             'ODBM_File' => '1.10',
5291             'Opcode' => '1.18',
5292             'POSIX' => '1.23',
5293             'PerlIO::encoding' => '0.14',
5294             'PerlIO::scalar' => '0.11',
5295             'PerlIO::via' => '0.11',
5296             'SDBM_File' => '1.09',
5297             'Socket' => '1.92',
5298             'Storable' => '2.25',
5299             'Time::HiRes' => '1.9721_01',
5300             'Unicode::Collate' => '0.6801',
5301             'Unicode::Collate::Locale'=> '0.68',
5302             'Unicode::Normalize' => '1.08',
5303             'Unicode::UCD' => '0.30',
5304             'Win32' => '0.41',
5305             'XS::APItest' => '0.27',
5306             'autodie' => '2.1001',
5307             'autodie::exception' => '2.1001',
5308             'autodie::exception::system'=> '2.1001',
5309             'autodie::hints' => '2.1001',
5310             'feature' => '1.19',
5311             'if' => '0.0601',
5312             'mro' => '1.06',
5313             'overload' => '1.12',
5314             're' => '0.15',
5315             'threads' => '1.81_03',
5316             'threads::shared' => '1.35',
5317             'version' => '0.86',
5318             },
5319             removed => {
5320             }
5321             },
5322             5.013009 => {
5323             delta_from => 5.013008,
5324             changed => {
5325             'Archive::Extract' => '0.48',
5326             'Archive::Tar' => '1.76',
5327             'Archive::Tar::Constant'=> '1.76',
5328             'Archive::Tar::File' => '1.76',
5329             'B::Concise' => '0.83',
5330             'B::Deparse' => '1.03',
5331             'B::Lint' => '1.13',
5332             'Benchmark' => '1.12',
5333             'CGI' => '3.51',
5334             'CGI::Carp' => '3.51',
5335             'CGI::Cookie' => '1.30',
5336             'CGI::Push' => '1.05',
5337             'CGI::Util' => '3.51',
5338             'CPAN' => '1.94_63',
5339             'CPAN::HTTP::Client' => '1.94',
5340             'CPAN::HTTP::Credentials'=> '1.94',
5341             'CPAN::Meta::YAML' => '0.003',
5342             'CPANPLUS' => '0.9011',
5343             'CPANPLUS::Dist::Build' => '0.52',
5344             'CPANPLUS::Dist::Build::Constants'=> '0.52',
5345             'CPANPLUS::Internals' => '0.9011',
5346             'CPANPLUS::Shell::Default'=> '0.9011',
5347             'Carp::Heavy' => '1.19',
5348             'Compress::Raw::Bzip2' => '2.033',
5349             'Compress::Raw::Zlib' => '2.033',
5350             'Compress::Zlib' => '2.033',
5351             'Cwd' => '3.36',
5352             'DBM_Filter' => '0.04',
5353             'DB_File' => '1.821',
5354             'Devel::Peek' => '1.07',
5355             'DirHandle' => '1.04',
5356             'Dumpvalue' => '1.16',
5357             'Encode' => '2.42',
5358             'Encode::Alias' => '2.13',
5359             'Encode::MIME::Header' => '2.13',
5360             'Exporter::Heavy' => '5.64_03',
5361             'ExtUtils::Install' => '1.56',
5362             'ExtUtils::ParseXS' => '2.2209',
5363             'File::Basename' => '2.80',
5364             'File::Copy' => '2.21',
5365             'File::DosGlob' => '1.04',
5366             'File::Fetch' => '0.32',
5367             'File::Find' => '1.19',
5368             'File::Spec::Mac' => '3.34',
5369             'File::Spec::VMS' => '3.34',
5370             'File::stat' => '1.05',
5371             'HTTP::Tiny' => '0.009',
5372             'Hash::Util::FieldHash' => '1.08',
5373             'IO::Compress::Adapter::Bzip2'=> '2.033',
5374             'IO::Compress::Adapter::Deflate'=> '2.033',
5375             'IO::Compress::Adapter::Identity'=> '2.033',
5376             'IO::Compress::Base' => '2.033',
5377             'IO::Compress::Base::Common'=> '2.033',
5378             'IO::Compress::Bzip2' => '2.033',
5379             'IO::Compress::Deflate' => '2.033',
5380             'IO::Compress::Gzip' => '2.033',
5381             'IO::Compress::Gzip::Constants'=> '2.033',
5382             'IO::Compress::RawDeflate'=> '2.033',
5383             'IO::Compress::Zip' => '2.033',
5384             'IO::Compress::Zip::Constants'=> '2.033',
5385             'IO::Compress::Zlib::Constants'=> '2.033',
5386             'IO::Compress::Zlib::Extra'=> '2.033',
5387             'IO::Handle' => '1.29',
5388             'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5389             'IO::Uncompress::Adapter::Identity'=> '2.033',
5390             'IO::Uncompress::Adapter::Inflate'=> '2.033',
5391             'IO::Uncompress::AnyInflate'=> '2.033',
5392             'IO::Uncompress::AnyUncompress'=> '2.033',
5393             'IO::Uncompress::Base' => '2.033',
5394             'IO::Uncompress::Bunzip2'=> '2.033',
5395             'IO::Uncompress::Gunzip'=> '2.033',
5396             'IO::Uncompress::Inflate'=> '2.033',
5397             'IO::Uncompress::RawInflate'=> '2.033',
5398             'IO::Uncompress::Unzip' => '2.033',
5399             'IPC::Cmd' => '0.68',
5400             'IPC::Open3' => '1.09',
5401             'JSON::PP' => '2.27103',
5402             'JSON::PP::Boolean' => undef,
5403             'Locale::Maketext' => '1.18',
5404             'Log::Message' => '0.04',
5405             'Log::Message::Config' => '0.04',
5406             'Log::Message::Handlers'=> '0.04',
5407             'Log::Message::Item' => '0.04',
5408             'Log::Message::Simple' => '0.08',
5409             'Math::BigFloat' => '1.99_03',
5410             'Math::BigInt' => '1.99_03',
5411             'Math::BigInt::Calc' => '1.99_03',
5412             'Math::BigInt::FastCalc'=> '0.24_02',
5413             'Math::BigRat' => '0.26_02',
5414             'Module::CoreList' => '2.42_01',
5415             'Module::Load::Conditional'=> '0.40',
5416             'Module::Metadata' => '1.000003',
5417             'Net::Ping' => '2.38',
5418             'OS2::Process' => '1.05',
5419             'Object::Accessor' => '0.38',
5420             'POSIX' => '1.24',
5421             'Params::Check' => '0.28',
5422             'Perl::OSType' => '1.002',
5423             'Pod::LaTeX' => '0.59',
5424             'Pod::Perldoc' => '3.15_03',
5425             'Socket' => '1.93',
5426             'Storable' => '2.26',
5427             'Sys::Hostname' => '1.15',
5428             'Term::UI' => '0.24',
5429             'Thread::Queue' => '2.12',
5430             'Thread::Semaphore' => '2.12',
5431             'Time::Local' => '1.2000',
5432             'UNIVERSAL' => '1.08',
5433             'Unicode::Normalize' => '1.10',
5434             'Win32' => '0.44',
5435             'bigint' => '0.26',
5436             'bignum' => '0.26',
5437             'bigrat' => '0.26',
5438             'charnames' => '1.18',
5439             'diagnostics' => '1.21',
5440             're' => '0.16',
5441             'threads' => '1.83',
5442             'threads::shared' => '1.36',
5443             'version' => '0.88',
5444             },
5445             removed => {
5446             }
5447             },
5448             5.01301 => {
5449             delta_from => 5.013009,
5450             changed => {
5451             'Attribute::Handlers' => '0.89',
5452             'B' => '1.28',
5453             'B::Showlex' => '1.03',
5454             'CGI' => '3.52',
5455             'CPAN' => '1.94_65',
5456             'CPAN::Distribution' => '1.9601',
5457             'CPAN::FTP::netrc' => '1.01',
5458             'CPAN::FirstTime' => '5.5303',
5459             'CPAN::HandleConfig' => '5.5003',
5460             'CPAN::Meta' => '2.110440',
5461             'CPAN::Meta::Converter' => '2.110440',
5462             'CPAN::Meta::Feature' => '2.110440',
5463             'CPAN::Meta::History' => '2.110440',
5464             'CPAN::Meta::Prereqs' => '2.110440',
5465             'CPAN::Meta::Spec' => '2.110440',
5466             'CPAN::Meta::Validator' => '2.110440',
5467             'CPAN::Shell' => '5.5002',
5468             'CPANPLUS' => '0.9101',
5469             'CPANPLUS::Internals' => '0.9101',
5470             'CPANPLUS::Shell::Default'=> '0.9101',
5471             'Carp' => '1.20',
5472             'Carp::Heavy' => '1.20',
5473             'Cwd' => '3.37',
5474             'Devel::DProf' => '20110217.00',
5475             'DynaLoader' => '1.13',
5476             'ExtUtils::CBuilder' => '0.280202',
5477             'ExtUtils::CBuilder::Base'=> '0.280202',
5478             'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5479             'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5480             'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5481             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5482             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5483             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5484             'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5485             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5486             'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5487             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5488             'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5489             'File::Copy' => '2.22',
5490             'Filter::Simple' => '0.86',
5491             'HTTP::Tiny' => '0.010',
5492             'I18N::LangTags::Detect'=> '1.05',
5493             'IO::Select' => '1.18',
5494             'IPC::Cmd' => '0.70',
5495             'Locale::Maketext' => '1.19',
5496             'Math::BigFloat' => '1.992',
5497             'Math::BigInt' => '1.992',
5498             'Math::BigInt::Calc' => '1.992',
5499             'Math::BigInt::CalcEmu' => '1.992',
5500             'Module::Build' => '0.37_05',
5501             'Module::Build::Base' => '0.37_05',
5502             'Module::Build::Compat' => '0.37_05',
5503             'Module::Build::Config' => '0.37_05',
5504             'Module::Build::Cookbook'=> '0.37_05',
5505             'Module::Build::Dumper' => '0.37_05',
5506             'Module::Build::ModuleInfo'=> '0.37_05',
5507             'Module::Build::Notes' => '0.37_05',
5508             'Module::Build::PPMMaker'=> '0.37_05',
5509             'Module::Build::Platform::Amiga'=> '0.37_05',
5510             'Module::Build::Platform::Default'=> '0.37_05',
5511             'Module::Build::Platform::EBCDIC'=> '0.37_05',
5512             'Module::Build::Platform::MPEiX'=> '0.37_05',
5513             'Module::Build::Platform::MacOS'=> '0.37_05',
5514             'Module::Build::Platform::RiscOS'=> '0.37_05',
5515             'Module::Build::Platform::Unix'=> '0.37_05',
5516             'Module::Build::Platform::VMS'=> '0.37_05',
5517             'Module::Build::Platform::VOS'=> '0.37_05',
5518             'Module::Build::Platform::Windows'=> '0.37_05',
5519             'Module::Build::Platform::aix'=> '0.37_05',
5520             'Module::Build::Platform::cygwin'=> '0.37_05',
5521             'Module::Build::Platform::darwin'=> '0.37_05',
5522             'Module::Build::Platform::os2'=> '0.37_05',
5523             'Module::Build::PodParser'=> '0.37_05',
5524             'Module::Build::Version'=> '0.87',
5525             'Module::Build::YAML' => '1.41',
5526             'Module::CoreList' => '2.45',
5527             'Module::Load::Conditional'=> '0.44',
5528             'Module::Metadata' => '1.000004',
5529             'OS2::Process' => '1.06',
5530             'Parse::CPAN::Meta' => '1.4401',
5531             'Pod::Html' => '1.1',
5532             'Socket' => '1.94',
5533             'Term::UI' => '0.26',
5534             'Unicode::Collate' => '0.72',
5535             'Unicode::Collate::Locale'=> '0.71',
5536             'Unicode::UCD' => '0.31',
5537             'VMS::DCLsym' => '1.05',
5538             'Version::Requirements' => '0.101020',
5539             'bigrat' => '0.27',
5540             'deprecate' => '0.02',
5541             'diagnostics' => '1.22',
5542             'inc::latest' => '0.37_05',
5543             'overload' => '1.13',
5544             're' => '0.17',
5545             'utf8' => '1.09',
5546             'warnings' => '1.12',
5547             },
5548             removed => {
5549             }
5550             },
5551             5.013011 => {
5552             delta_from => 5.01301,
5553             changed => {
5554             'App::Prove' => '3.23',
5555             'App::Prove::State' => '3.23',
5556             'App::Prove::State::Result'=> '3.23',
5557             'App::Prove::State::Result::Test'=> '3.23',
5558             'B' => '1.29',
5559             'CPAN' => '1.9600',
5560             'CPAN::Author' => '5.5001',
5561             'CPAN::CacheMgr' => '5.5001',
5562             'CPAN::Distribution' => '1.9602',
5563             'CPAN::Exception::blocked_urllist'=> '1.001',
5564             'CPAN::HTTP::Client' => '1.9600',
5565             'CPAN::HTTP::Credentials'=> '1.9600',
5566             'CPAN::Index' => '1.9600',
5567             'CPAN::LWP::UserAgent' => '1.9600',
5568             'CPAN::Mirrors' => '1.9600',
5569             'CPAN::Module' => '5.5001',
5570             'CPANPLUS' => '0.9103',
5571             'CPANPLUS::Dist::Build' => '0.54',
5572             'CPANPLUS::Dist::Build::Constants'=> '0.54',
5573             'CPANPLUS::Internals' => '0.9103',
5574             'CPANPLUS::Shell::Default'=> '0.9103',
5575             'Cwd' => '3.36',
5576             'Devel::DProf' => '20110228.00',
5577             'Digest::SHA' => '5.61',
5578             'ExtUtils::Command' => '1.17',
5579             'File::Basename' => '2.81',
5580             'File::Copy' => '2.21',
5581             'File::Glob' => '1.12',
5582             'GDBM_File' => '1.14',
5583             'HTTP::Tiny' => '0.011',
5584             'Hash::Util' => '0.11',
5585             'Hash::Util::FieldHash' => '1.09',
5586             'I18N::Langinfo' => '0.08',
5587             'IO' => '1.25_04',
5588             'IO::Dir' => '1.08',
5589             'IO::File' => '1.15',
5590             'IO::Handle' => '1.30',
5591             'IO::Pipe' => '1.14',
5592             'IO::Poll' => '0.08',
5593             'IO::Select' => '1.20',
5594             'JSON::PP' => '2.27105',
5595             'Locale::Codes' => '3.16',
5596             'Locale::Codes::Country'=> '3.16',
5597             'Locale::Codes::Currency'=> '3.16',
5598             'Locale::Codes::Language'=> '3.16',
5599             'Locale::Codes::Script' => '3.16',
5600             'Locale::Constants' => '3.16',
5601             'Locale::Country' => '3.16',
5602             'Locale::Currency' => '3.16',
5603             'Locale::Language' => '3.16',
5604             'Locale::Script' => '3.16',
5605             'Math::BigFloat' => '1.993',
5606             'Math::BigInt' => '1.994',
5607             'Math::BigInt::Calc' => '1.993',
5608             'Math::BigInt::CalcEmu' => '1.993',
5609             'Math::BigInt::FastCalc'=> '0.28',
5610             'Module::Build' => '0.3800',
5611             'Module::Build::Base' => '0.3800',
5612             'Module::Build::Compat' => '0.3800',
5613             'Module::Build::Config' => '0.3800',
5614             'Module::Build::Cookbook'=> '0.3800',
5615             'Module::Build::Dumper' => '0.3800',
5616             'Module::Build::ModuleInfo'=> '0.3800',
5617             'Module::Build::Notes' => '0.3800',
5618             'Module::Build::PPMMaker'=> '0.3800',
5619             'Module::Build::Platform::Amiga'=> '0.3800',
5620             'Module::Build::Platform::Default'=> '0.3800',
5621             'Module::Build::Platform::EBCDIC'=> '0.3800',
5622             'Module::Build::Platform::MPEiX'=> '0.3800',
5623             'Module::Build::Platform::MacOS'=> '0.3800',
5624             'Module::Build::Platform::RiscOS'=> '0.3800',
5625             'Module::Build::Platform::Unix'=> '0.3800',
5626             'Module::Build::Platform::VMS'=> '0.3800',
5627             'Module::Build::Platform::VOS'=> '0.3800',
5628             'Module::Build::Platform::Windows'=> '0.3800',
5629             'Module::Build::Platform::aix'=> '0.3800',
5630             'Module::Build::Platform::cygwin'=> '0.3800',
5631             'Module::Build::Platform::darwin'=> '0.3800',
5632             'Module::Build::Platform::os2'=> '0.3800',
5633             'Module::Build::PodParser'=> '0.3800',
5634             'Module::CoreList' => '2.46',
5635             'NDBM_File' => '1.12',
5636             'Pod::Simple' => '3.16',
5637             'Pod::Simple::BlackBox' => '3.16',
5638             'Pod::Simple::Checker' => '3.16',
5639             'Pod::Simple::Debug' => '3.16',
5640             'Pod::Simple::DumpAsText'=> '3.16',
5641             'Pod::Simple::DumpAsXML'=> '3.16',
5642             'Pod::Simple::HTML' => '3.16',
5643             'Pod::Simple::HTMLBatch'=> '3.16',
5644             'Pod::Simple::LinkSection'=> '3.16',
5645             'Pod::Simple::Methody' => '3.16',
5646             'Pod::Simple::Progress' => '3.16',
5647             'Pod::Simple::PullParser'=> '3.16',
5648             'Pod::Simple::PullParserEndToken'=> '3.16',
5649             'Pod::Simple::PullParserStartToken'=> '3.16',
5650             'Pod::Simple::PullParserTextToken'=> '3.16',
5651             'Pod::Simple::PullParserToken'=> '3.16',
5652             'Pod::Simple::RTF' => '3.16',
5653             'Pod::Simple::Search' => '3.16',
5654             'Pod::Simple::SimpleTree'=> '3.16',
5655             'Pod::Simple::Text' => '3.16',
5656             'Pod::Simple::TextContent'=> '3.16',
5657             'Pod::Simple::TiedOutFH'=> '3.16',
5658             'Pod::Simple::Transcode'=> '3.16',
5659             'Pod::Simple::TranscodeDumb'=> '3.16',
5660             'Pod::Simple::TranscodeSmart'=> '3.16',
5661             'Pod::Simple::XHTML' => '3.16',
5662             'Pod::Simple::XMLOutStream'=> '3.16',
5663             'Storable' => '2.27',
5664             'Sys::Hostname' => '1.16',
5665             'TAP::Base' => '3.23',
5666             'TAP::Formatter::Base' => '3.23',
5667             'TAP::Formatter::Color' => '3.23',
5668             'TAP::Formatter::Console'=> '3.23',
5669             'TAP::Formatter::Console::ParallelSession'=> '3.23',
5670             'TAP::Formatter::Console::Session'=> '3.23',
5671             'TAP::Formatter::File' => '3.23',
5672             'TAP::Formatter::File::Session'=> '3.23',
5673             'TAP::Formatter::Session'=> '3.23',
5674             'TAP::Harness' => '3.23',
5675             'TAP::Object' => '3.23',
5676             'TAP::Parser' => '3.23',
5677             'TAP::Parser::Aggregator'=> '3.23',
5678             'TAP::Parser::Grammar' => '3.23',
5679             'TAP::Parser::Iterator' => '3.23',
5680             'TAP::Parser::Iterator::Array'=> '3.23',
5681             'TAP::Parser::Iterator::Process'=> '3.23',
5682             'TAP::Parser::Iterator::Stream'=> '3.23',
5683             'TAP::Parser::IteratorFactory'=> '3.23',
5684             'TAP::Parser::Multiplexer'=> '3.23',
5685             'TAP::Parser::Result' => '3.23',
5686             'TAP::Parser::Result::Bailout'=> '3.23',
5687             'TAP::Parser::Result::Comment'=> '3.23',
5688             'TAP::Parser::Result::Plan'=> '3.23',
5689             'TAP::Parser::Result::Pragma'=> '3.23',
5690             'TAP::Parser::Result::Test'=> '3.23',
5691             'TAP::Parser::Result::Unknown'=> '3.23',
5692             'TAP::Parser::Result::Version'=> '3.23',
5693             'TAP::Parser::Result::YAML'=> '3.23',
5694             'TAP::Parser::ResultFactory'=> '3.23',
5695             'TAP::Parser::Scheduler'=> '3.23',
5696             'TAP::Parser::Scheduler::Job'=> '3.23',
5697             'TAP::Parser::Scheduler::Spinner'=> '3.23',
5698             'TAP::Parser::Source' => '3.23',
5699             'TAP::Parser::SourceHandler'=> '3.23',
5700             'TAP::Parser::SourceHandler::Executable'=> '3.23',
5701             'TAP::Parser::SourceHandler::File'=> '3.23',
5702             'TAP::Parser::SourceHandler::Handle'=> '3.23',
5703             'TAP::Parser::SourceHandler::Perl'=> '3.23',
5704             'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5705             'TAP::Parser::Utils' => '3.23',
5706             'TAP::Parser::YAMLish::Reader'=> '3.23',
5707             'TAP::Parser::YAMLish::Writer'=> '3.23',
5708             'Test::Builder' => '0.98',
5709             'Test::Builder::Module' => '0.98',
5710             'Test::Builder::Tester' => '1.22',
5711             'Test::Builder::Tester::Color'=> '1.22',
5712             'Test::Harness' => '3.23',
5713             'Test::More' => '0.98',
5714             'Test::Simple' => '0.98',
5715             'Tie::Hash::NamedCapture'=> '0.08',
5716             'Tie::RefHash' => '1.39',
5717             'Unicode::Collate' => '0.73',
5718             'Unicode::Collate::Locale'=> '0.73',
5719             'Unicode::UCD' => '0.32',
5720             'XS::Typemap' => '0.05',
5721             'attributes' => '0.14',
5722             'base' => '2.16',
5723             'inc::latest' => '0.3800',
5724             'mro' => '1.07',
5725             'parent' => '0.225',
5726             },
5727             removed => {
5728             }
5729             },
5730             5.014 => {
5731             delta_from => 5.013011,
5732             changed => {
5733             'ExtUtils::CBuilder' => '0.280203',
5734             'ExtUtils::CBuilder::Base'=> '0.280203',
5735             'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5736             'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5737             'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5738             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5739             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5740             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5741             'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5742             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5743             'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5744             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5745             'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5746             'ExtUtils::ParseXS' => '2.2210',
5747             'File::Basename' => '2.82',
5748             'HTTP::Tiny' => '0.012',
5749             'IO::Handle' => '1.31',
5750             'Module::CoreList' => '2.49',
5751             'PerlIO' => '1.07',
5752             'Pod::Html' => '1.11',
5753             'XS::APItest' => '0.28',
5754             'bigint' => '0.27',
5755             'bignum' => '0.27',
5756             'bigrat' => '0.28',
5757             'constant' => '1.21',
5758             'feature' => '1.20',
5759             're' => '0.18',
5760             'threads::shared' => '1.37',
5761             },
5762             removed => {
5763             }
5764             },
5765             5.014001 => {
5766             delta_from => 5.014,
5767             changed => {
5768             'B::Deparse' => '1.04',
5769             'Module::CoreList' => '2.49_01',
5770             'Pod::Perldoc' => '3.15_04',
5771             },
5772             removed => {
5773             }
5774             },
5775             5.014002 => {
5776             delta_from => 5.014001,
5777             changed => {
5778             'CPAN' => '1.9600_01',
5779             'CPAN::Distribution' => '1.9602_01',
5780             'Devel::DProf::dprof::V'=> undef,
5781             'Encode' => '2.42_01',
5782             'File::Glob' => '1.13',
5783             'Module::CoreList' => '2.49_02',
5784             'PerlIO::scalar' => '0.11_01',
5785             'Time::Piece::Seconds' => undef,
5786             },
5787             removed => {
5788             }
5789             },
5790             5.014003 => {
5791             delta_from => 5.014002,
5792             changed => {
5793             'Digest' => '1.16_01',
5794             'IPC::Open3' => '1.09_01',
5795             'Module::CoreList' => '2.49_04',
5796             },
5797             removed => {
5798             }
5799             },
5800             5.014004 => {
5801             delta_from => 5.014003,
5802             changed => {
5803             'Encode' => '2.42_02',
5804             'IPC::Open3' => '1.0901',
5805             'Module::CoreList' => '2.49_06',
5806             },
5807             removed => {
5808             }
5809             },
5810             5.015 => {
5811             delta_from => 5.014001,
5812             changed => {
5813             'Archive::Extract' => '0.52',
5814             'Attribute::Handlers' => '0.91',
5815             'B' => '1.30',
5816             'B::Concise' => '0.84',
5817             'B::Deparse' => '1.05',
5818             'Benchmark' => '1.13',
5819             'CGI' => '3.54',
5820             'CGI::Util' => '3.53',
5821             'CPAN::Meta' => '2.110930',
5822             'CPAN::Meta::Converter' => '2.110930',
5823             'CPAN::Meta::Feature' => '2.110930',
5824             'CPAN::Meta::History' => '2.110930',
5825             'CPAN::Meta::Prereqs' => '2.110930',
5826             'CPAN::Meta::Spec' => '2.110930',
5827             'CPAN::Meta::Validator' => '2.110930',
5828             'CPANPLUS' => '0.9105',
5829             'CPANPLUS::Dist::Build' => '0.56',
5830             'CPANPLUS::Dist::Build::Constants'=> '0.56',
5831             'CPANPLUS::Internals' => '0.9105',
5832             'CPANPLUS::Shell::Default'=> '0.9105',
5833             'Compress::Raw::Bzip2' => '2.035',
5834             'Compress::Raw::Zlib' => '2.035',
5835             'Compress::Zlib' => '2.035',
5836             'DB_File' => '1.822',
5837             'Data::Dumper' => '2.131',
5838             'Devel::Peek' => '1.08',
5839             'Digest::SHA' => '5.62',
5840             'Encode' => '2.43',
5841             'Encode::Alias' => '2.14',
5842             'ExtUtils::CBuilder' => '0.280204',
5843             'ExtUtils::CBuilder::Base'=> '0.280204',
5844             'Fatal' => '2.10',
5845             'File::Spec::Win32' => '3.34',
5846             'Filter::Simple' => '0.87',
5847             'Filter::Util::Call' => '1.39',
5848             'FindBin' => '1.51',
5849             'Hash::Util::FieldHash' => '1.10',
5850             'I18N::LangTags' => '0.36',
5851             'IO::Compress::Adapter::Bzip2'=> '2.035',
5852             'IO::Compress::Adapter::Deflate'=> '2.035',
5853             'IO::Compress::Adapter::Identity'=> '2.035',
5854             'IO::Compress::Base' => '2.035',
5855             'IO::Compress::Base::Common'=> '2.035',
5856             'IO::Compress::Bzip2' => '2.035',
5857             'IO::Compress::Deflate' => '2.035',
5858             'IO::Compress::Gzip' => '2.035',
5859             'IO::Compress::Gzip::Constants'=> '2.035',
5860             'IO::Compress::RawDeflate'=> '2.035',
5861             'IO::Compress::Zip' => '2.035',
5862             'IO::Compress::Zip::Constants'=> '2.035',
5863             'IO::Compress::Zlib::Constants'=> '2.035',
5864             'IO::Compress::Zlib::Extra'=> '2.035',
5865             'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5866             'IO::Uncompress::Adapter::Identity'=> '2.035',
5867             'IO::Uncompress::Adapter::Inflate'=> '2.035',
5868             'IO::Uncompress::AnyInflate'=> '2.035',
5869             'IO::Uncompress::AnyUncompress'=> '2.035',
5870             'IO::Uncompress::Base' => '2.035',
5871             'IO::Uncompress::Bunzip2'=> '2.035',
5872             'IO::Uncompress::Gunzip'=> '2.035',
5873             'IO::Uncompress::Inflate'=> '2.035',
5874             'IO::Uncompress::RawInflate'=> '2.035',
5875             'IO::Uncompress::Unzip' => '2.035',
5876             'IPC::Open2' => '1.04',
5877             'IPC::Open3' => '1.11',
5878             'JSON::PP' => '2.27200',
5879             'Math::BigFloat' => '1.994',
5880             'Math::BigInt' => '1.995',
5881             'Math::Complex' => '1.57',
5882             'Math::Trig' => '1.21',
5883             'Module::CoreList' => '2.51',
5884             'ODBM_File' => '1.11',
5885             'Object::Accessor' => '0.42',
5886             'Opcode' => '1.19',
5887             'PerlIO::encoding' => '0.15',
5888             'PerlIO::scalar' => '0.12',
5889             'Pod::Perldoc' => '3.15_05',
5890             'Storable' => '2.28',
5891             'Sys::Syslog' => '0.29',
5892             'Time::HiRes' => '1.9722',
5893             'Unicode::Collate' => '0.76',
5894             'Unicode::Collate::CJK::Pinyin'=> '0.76',
5895             'Unicode::Collate::CJK::Stroke'=> '0.76',
5896             'Unicode::Collate::Locale'=> '0.76',
5897             'Unicode::Normalize' => '1.12',
5898             'XS::APItest' => '0.29',
5899             'XSLoader' => '0.15',
5900             'autodie' => '2.10',
5901             'autodie::exception' => '2.10',
5902             'autodie::exception::system'=> '2.10',
5903             'autodie::hints' => '2.10',
5904             'base' => '2.17',
5905             'charnames' => '1.22',
5906             'constant' => '1.22',
5907             'feature' => '1.21',
5908             'mro' => '1.08',
5909             'overload' => '1.14',
5910             'threads::shared' => '1.38',
5911             'vmsish' => '1.03',
5912             },
5913             removed => {
5914             'Devel::DProf' => 1,
5915             'Shell' => 1,
5916             }
5917             },
5918             5.015001 => {
5919             delta_from => 5.015,
5920             changed => {
5921             'B::Deparse' => '1.06',
5922             'CGI' => '3.55',
5923             'CPAN::Meta' => '2.110930001',
5924             'CPAN::Meta::Converter' => '2.110930001',
5925             'CPANPLUS' => '0.9108',
5926             'CPANPLUS::Internals' => '0.9108',
5927             'CPANPLUS::Shell::Default'=> '0.9108',
5928             'Carp' => '1.21',
5929             'Carp::Heavy' => '1.21',
5930             'Compress::Raw::Bzip2' => '2.037',
5931             'Compress::Raw::Zlib' => '2.037',
5932             'Compress::Zlib' => '2.037',
5933             'Cwd' => '3.37',
5934             'Env' => '1.03',
5935             'ExtUtils::Command::MM' => '6.58',
5936             'ExtUtils::Liblist' => '6.58',
5937             'ExtUtils::Liblist::Kid'=> '6.58',
5938             'ExtUtils::MM' => '6.58',
5939             'ExtUtils::MM_AIX' => '6.58',
5940             'ExtUtils::MM_Any' => '6.58',
5941             'ExtUtils::MM_BeOS' => '6.58',
5942             'ExtUtils::MM_Cygwin' => '6.58',
5943             'ExtUtils::MM_DOS' => '6.58',
5944             'ExtUtils::MM_Darwin' => '6.58',
5945             'ExtUtils::MM_MacOS' => '6.58',
5946             'ExtUtils::MM_NW5' => '6.58',
5947             'ExtUtils::MM_OS2' => '6.58',
5948             'ExtUtils::MM_QNX' => '6.58',
5949             'ExtUtils::MM_UWIN' => '6.58',
5950             'ExtUtils::MM_Unix' => '6.58',
5951             'ExtUtils::MM_VMS' => '6.58',
5952             'ExtUtils::MM_VOS' => '6.58',
5953             'ExtUtils::MM_Win32' => '6.58',
5954             'ExtUtils::MM_Win95' => '6.58',
5955             'ExtUtils::MY' => '6.58',
5956             'ExtUtils::MakeMaker' => '6.58',
5957             'ExtUtils::MakeMaker::Config'=> '6.58',
5958             'ExtUtils::Mkbootstrap' => '6.58',
5959             'ExtUtils::Mksymlists' => '6.58',
5960             'ExtUtils::ParseXS' => '3.00_01',
5961             'ExtUtils::ParseXS::Constants'=> undef,
5962             'ExtUtils::ParseXS::CountLines'=> undef,
5963             'ExtUtils::ParseXS::Utilities'=> undef,
5964             'ExtUtils::Typemaps' => '1.00',
5965             'ExtUtils::Typemaps::InputMap'=> undef,
5966             'ExtUtils::Typemaps::OutputMap'=> undef,
5967             'ExtUtils::Typemaps::Type'=> '0.05',
5968             'ExtUtils::testlib' => '6.58',
5969             'File::Basename' => '2.83',
5970             'File::Find' => '1.20',
5971             'HTTP::Tiny' => '0.013',
5972             'I18N::Langinfo' => '0.08_02',
5973             'IO::Compress::Adapter::Bzip2'=> '2.037',
5974             'IO::Compress::Adapter::Deflate'=> '2.037',
5975             'IO::Compress::Adapter::Identity'=> '2.037',
5976             'IO::Compress::Base' => '2.037',
5977             'IO::Compress::Base::Common'=> '2.037',
5978             'IO::Compress::Bzip2' => '2.037',
5979             'IO::Compress::Deflate' => '2.037',
5980             'IO::Compress::Gzip' => '2.037',
5981             'IO::Compress::Gzip::Constants'=> '2.037',
5982             'IO::Compress::RawDeflate'=> '2.037',
5983             'IO::Compress::Zip' => '2.037',
5984             'IO::Compress::Zip::Constants'=> '2.037',
5985             'IO::Compress::Zlib::Constants'=> '2.037',
5986             'IO::Compress::Zlib::Extra'=> '2.037',
5987             'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
5988             'IO::Uncompress::Adapter::Identity'=> '2.037',
5989             'IO::Uncompress::Adapter::Inflate'=> '2.037',
5990             'IO::Uncompress::AnyInflate'=> '2.037',
5991             'IO::Uncompress::AnyUncompress'=> '2.037',
5992             'IO::Uncompress::Base' => '2.037',
5993             'IO::Uncompress::Bunzip2'=> '2.037',
5994             'IO::Uncompress::Gunzip'=> '2.037',
5995             'IO::Uncompress::Inflate'=> '2.037',
5996             'IO::Uncompress::RawInflate'=> '2.037',
5997             'IO::Uncompress::Unzip' => '2.037',
5998             'IPC::Cmd' => '0.72',
5999             'Locale::Codes' => '3.17',
6000             'Locale::Codes::Constants'=> '3.17',
6001             'Locale::Codes::Country'=> '3.17',
6002             'Locale::Codes::Country_Codes'=> '3.17',
6003             'Locale::Codes::Currency'=> '3.17',
6004             'Locale::Codes::Currency_Codes'=> '3.17',
6005             'Locale::Codes::LangExt'=> '3.17',
6006             'Locale::Codes::LangExt_Codes'=> '3.17',
6007             'Locale::Codes::LangVar'=> '3.17',
6008             'Locale::Codes::LangVar_Codes'=> '3.17',
6009             'Locale::Codes::Language'=> '3.17',
6010             'Locale::Codes::Language_Codes'=> '3.17',
6011             'Locale::Codes::Script' => '3.17',
6012             'Locale::Codes::Script_Codes'=> '3.17',
6013             'Locale::Country' => '3.17',
6014             'Locale::Currency' => '3.17',
6015             'Locale::Language' => '3.17',
6016             'Locale::Script' => '3.17',
6017             'Math::BigFloat::Trace' => '0.28',
6018             'Math::BigInt::FastCalc'=> '0.29',
6019             'Math::BigInt::Trace' => '0.28',
6020             'Math::BigRat' => '0.2602',
6021             'Math::Complex' => '1.58',
6022             'Math::Trig' => '1.22',
6023             'Module::CoreList' => '2.54',
6024             'OS2::Process' => '1.07',
6025             'Pod::Perldoc' => '3.15_06',
6026             'Pod::Simple' => '3.18',
6027             'Pod::Simple::BlackBox' => '3.18',
6028             'Pod::Simple::Checker' => '3.18',
6029             'Pod::Simple::Debug' => '3.18',
6030             'Pod::Simple::DumpAsText'=> '3.18',
6031             'Pod::Simple::DumpAsXML'=> '3.18',
6032             'Pod::Simple::HTML' => '3.18',
6033             'Pod::Simple::HTMLBatch'=> '3.18',
6034             'Pod::Simple::LinkSection'=> '3.18',
6035             'Pod::Simple::Methody' => '3.18',
6036             'Pod::Simple::Progress' => '3.18',
6037             'Pod::Simple::PullParser'=> '3.18',
6038             'Pod::Simple::PullParserEndToken'=> '3.18',
6039             'Pod::Simple::PullParserStartToken'=> '3.18',
6040             'Pod::Simple::PullParserTextToken'=> '3.18',
6041             'Pod::Simple::PullParserToken'=> '3.18',
6042             'Pod::Simple::RTF' => '3.18',
6043             'Pod::Simple::Search' => '3.18',
6044             'Pod::Simple::SimpleTree'=> '3.18',
6045             'Pod::Simple::Text' => '3.18',
6046             'Pod::Simple::TextContent'=> '3.18',
6047             'Pod::Simple::TiedOutFH'=> '3.18',
6048             'Pod::Simple::Transcode'=> '3.18',
6049             'Pod::Simple::TranscodeDumb'=> '3.18',
6050             'Pod::Simple::TranscodeSmart'=> '3.18',
6051             'Pod::Simple::XHTML' => '3.18',
6052             'Pod::Simple::XMLOutStream'=> '3.18',
6053             'Storable' => '2.31',
6054             'Sys::Syslog::Win32' => undef,
6055             'Time::HiRes' => '1.9724',
6056             'Unicode::Collate' => '0.77',
6057             'Unicode::UCD' => '0.33',
6058             'Win32API::File' => '0.1200',
6059             'XS::APItest' => '0.30',
6060             'attributes' => '0.15',
6061             'bigint' => '0.28',
6062             'bignum' => '0.28',
6063             'charnames' => '1.23',
6064             'diagnostics' => '1.23',
6065             'feature' => '1.22',
6066             'overload' => '1.15',
6067             'perlfaq' => '5.015000',
6068             'threads' => '1.84',
6069             'version' => '0.93',
6070             },
6071             removed => {
6072             'ExtUtils::MakeMaker::YAML'=> 1,
6073             'Locale::Constants' => 1,
6074             'Sys::Syslog::win32::Win32'=> 1,
6075             }
6076             },
6077             5.015002 => {
6078             delta_from => 5.015001,
6079             changed => {
6080             'Attribute::Handlers' => '0.92',
6081             'B' => '1.31',
6082             'B::Concise' => '0.85',
6083             'B::Deparse' => '1.07',
6084             'B::Terse' => '1.06',
6085             'B::Xref' => '1.03',
6086             'CPAN' => '1.9800',
6087             'CPAN::Exception::yaml_process_error'=> '5.5',
6088             'CPAN::Meta' => '2.112150',
6089             'CPAN::Meta::Converter' => '2.112150',
6090             'CPAN::Meta::Feature' => '2.112150',
6091             'CPAN::Meta::History' => '2.112150',
6092             'CPAN::Meta::Prereqs' => '2.112150',
6093             'CPAN::Meta::Spec' => '2.112150',
6094             'CPAN::Meta::Validator' => '2.112150',
6095             'CPANPLUS' => '0.9109',
6096             'CPANPLUS::Internals' => '0.9109',
6097             'CPANPLUS::Shell::Default'=> '0.9109',
6098             'DB_File' => '1.824',
6099             'Data::Dumper' => '2.132',
6100             'Encode' => '2.44',
6101             'Encode::Alias' => '2.15',
6102             'Encode::Encoder' => '2.02',
6103             'Encode::Guess' => '2.05',
6104             'ExtUtils::Command::MM' => '6.59',
6105             'ExtUtils::Install' => '1.57',
6106             'ExtUtils::Installed' => '1.999002',
6107             'ExtUtils::Liblist' => '6.59',
6108             'ExtUtils::Liblist::Kid'=> '6.59',
6109             'ExtUtils::MM' => '6.59',
6110             'ExtUtils::MM_AIX' => '6.59',
6111             'ExtUtils::MM_Any' => '6.59',
6112             'ExtUtils::MM_BeOS' => '6.59',
6113             'ExtUtils::MM_Cygwin' => '6.59',
6114             'ExtUtils::MM_DOS' => '6.59',
6115             'ExtUtils::MM_Darwin' => '6.59',
6116             'ExtUtils::MM_MacOS' => '6.59',
6117             'ExtUtils::MM_NW5' => '6.59',
6118             'ExtUtils::MM_OS2' => '6.59',
6119             'ExtUtils::MM_QNX' => '6.59',
6120             'ExtUtils::MM_UWIN' => '6.59',
6121             'ExtUtils::MM_Unix' => '6.59',
6122             'ExtUtils::MM_VMS' => '6.59',
6123             'ExtUtils::MM_VOS' => '6.59',
6124             'ExtUtils::MM_Win32' => '6.59',
6125             'ExtUtils::MM_Win95' => '6.59',
6126             'ExtUtils::MY' => '6.59',
6127             'ExtUtils::MakeMaker' => '6.59',
6128             'ExtUtils::MakeMaker::Config'=> '6.59',
6129             'ExtUtils::Manifest' => '1.60',
6130             'ExtUtils::Mkbootstrap' => '6.59',
6131             'ExtUtils::Mksymlists' => '6.59',
6132             'ExtUtils::ParseXS' => '3.03_01',
6133             'ExtUtils::Typemaps' => '1.01',
6134             'ExtUtils::testlib' => '6.59',
6135             'File::Spec' => '3.34',
6136             'File::Spec::Mac' => '3.35',
6137             'File::Spec::Unix' => '3.34',
6138             'File::Spec::VMS' => '3.35',
6139             'File::Spec::Win32' => '3.35',
6140             'I18N::LangTags' => '0.37',
6141             'IO' => '1.25_05',
6142             'IO::Handle' => '1.32',
6143             'IO::Socket' => '1.33',
6144             'IO::Socket::INET' => '1.32',
6145             'IPC::Open3' => '1.12',
6146             'Math::BigFloat' => '1.995',
6147             'Math::BigFloat::Trace' => '0.29',
6148             'Math::BigInt' => '1.996',
6149             'Math::BigInt::Trace' => '0.29',
6150             'Module::Build' => '0.39_01',
6151             'Module::Build::Base' => '0.39_01',
6152             'Module::Build::Compat' => '0.39_01',
6153             'Module::Build::Config' => '0.39_01',
6154             'Module::Build::Cookbook'=> '0.39_01',
6155             'Module::Build::Dumper' => '0.39_01',
6156             'Module::Build::ModuleInfo'=> '0.39_01',
6157             'Module::Build::Notes' => '0.39_01',
6158             'Module::Build::PPMMaker'=> '0.39_01',
6159             'Module::Build::Platform::Amiga'=> '0.39_01',
6160             'Module::Build::Platform::Default'=> '0.39_01',
6161             'Module::Build::Platform::EBCDIC'=> '0.39_01',
6162             'Module::Build::Platform::MPEiX'=> '0.39_01',
6163             'Module::Build::Platform::MacOS'=> '0.39_01',
6164             'Module::Build::Platform::RiscOS'=> '0.39_01',
6165             'Module::Build::Platform::Unix'=> '0.39_01',
6166             'Module::Build::Platform::VMS'=> '0.39_01',
6167             'Module::Build::Platform::VOS'=> '0.39_01',
6168             'Module::Build::Platform::Windows'=> '0.39_01',
6169             'Module::Build::Platform::aix'=> '0.39_01',
6170             'Module::Build::Platform::cygwin'=> '0.39_01',
6171             'Module::Build::Platform::darwin'=> '0.39_01',
6172             'Module::Build::Platform::os2'=> '0.39_01',
6173             'Module::Build::PodParser'=> '0.39_01',
6174             'Module::CoreList' => '2.55',
6175             'Module::Load' => '0.20',
6176             'Module::Metadata' => '1.000005_01',
6177             'Opcode' => '1.20',
6178             'Params::Check' => '0.32',
6179             'PerlIO::via' => '0.12',
6180             'Term::ANSIColor' => '3.01',
6181             'Unicode::Collate' => '0.78',
6182             'Unicode::Normalize' => '1.13',
6183             'Unicode::UCD' => '0.34',
6184             'bigint' => '0.29',
6185             'bignum' => '0.29',
6186             'bigrat' => '0.29',
6187             'diagnostics' => '1.24',
6188             'fields' => '2.16',
6189             'inc::latest' => '0.39_01',
6190             },
6191             removed => {
6192             }
6193             },
6194             5.015003 => {
6195             delta_from => 5.015002,
6196             changed => {
6197             'AnyDBM_File' => '1.01',
6198             'Archive::Extract' => '0.56',
6199             'Archive::Tar' => '1.78',
6200             'Archive::Tar::Constant'=> '1.78',
6201             'Archive::Tar::File' => '1.78',
6202             'Attribute::Handlers' => '0.93',
6203             'B' => '1.32',
6204             'B::Concise' => '0.86',
6205             'B::Deparse' => '1.08',
6206             'CPAN::Meta' => '2.112621',
6207             'CPAN::Meta::Converter' => '2.112621',
6208             'CPAN::Meta::Feature' => '2.112621',
6209             'CPAN::Meta::History' => '2.112621',
6210             'CPAN::Meta::Prereqs' => '2.112621',
6211             'CPAN::Meta::Spec' => '2.112621',
6212             'CPAN::Meta::Validator' => '2.112621',
6213             'CPAN::Meta::YAML' => '0.004',
6214             'CPANPLUS' => '0.9111',
6215             'CPANPLUS::Dist::Build' => '0.58',
6216             'CPANPLUS::Dist::Build::Constants'=> '0.58',
6217             'CPANPLUS::Internals' => '0.9111',
6218             'CPANPLUS::Shell::Default'=> '0.9111',
6219             'Carp' => '1.23',
6220             'Carp::Heavy' => '1.23',
6221             'Data::Dumper' => '2.134',
6222             'Devel::PPPort' => '3.20',
6223             'Errno' => '1.14',
6224             'Exporter' => '5.65',
6225             'Exporter::Heavy' => '5.65',
6226             'ExtUtils::ParseXS' => '3.04_04',
6227             'ExtUtils::ParseXS::Constants'=> '3.04_04',
6228             'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6229             'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6230             'ExtUtils::Typemaps' => '1.02',
6231             'File::Glob' => '1.13',
6232             'Filter::Simple' => '0.88',
6233             'IO' => '1.25_06',
6234             'IO::Handle' => '1.33',
6235             'Locale::Codes' => '3.18',
6236             'Locale::Codes::Constants'=> '3.18',
6237             'Locale::Codes::Country'=> '3.18',
6238             'Locale::Codes::Country_Codes'=> '3.18',
6239             'Locale::Codes::Currency'=> '3.18',
6240             'Locale::Codes::Currency_Codes'=> '3.18',
6241             'Locale::Codes::LangExt'=> '3.18',
6242             'Locale::Codes::LangExt_Codes'=> '3.18',
6243             'Locale::Codes::LangVar'=> '3.18',
6244             'Locale::Codes::LangVar_Codes'=> '3.18',
6245             'Locale::Codes::Language'=> '3.18',
6246             'Locale::Codes::Language_Codes'=> '3.18',
6247             'Locale::Codes::Script' => '3.18',
6248             'Locale::Codes::Script_Codes'=> '3.18',
6249             'Locale::Country' => '3.18',
6250             'Locale::Currency' => '3.18',
6251             'Locale::Language' => '3.18',
6252             'Locale::Script' => '3.18',
6253             'Math::BigFloat' => '1.997',
6254             'Math::BigInt' => '1.997',
6255             'Math::BigInt::Calc' => '1.997',
6256             'Math::BigInt::CalcEmu' => '1.997',
6257             'Math::BigInt::FastCalc'=> '0.30',
6258             'Math::BigRat' => '0.2603',
6259             'Module::CoreList' => '2.56',
6260             'Module::Load::Conditional'=> '0.46',
6261             'Module::Metadata' => '1.000007',
6262             'ODBM_File' => '1.12',
6263             'POSIX' => '1.26',
6264             'Pod::Perldoc' => '3.15_07',
6265             'Pod::Simple' => '3.19',
6266             'Pod::Simple::BlackBox' => '3.19',
6267             'Pod::Simple::Checker' => '3.19',
6268             'Pod::Simple::Debug' => '3.19',
6269             'Pod::Simple::DumpAsText'=> '3.19',
6270             'Pod::Simple::DumpAsXML'=> '3.19',
6271             'Pod::Simple::HTML' => '3.19',
6272             'Pod::Simple::HTMLBatch'=> '3.19',
6273             'Pod::Simple::LinkSection'=> '3.19',
6274             'Pod::Simple::Methody' => '3.19',
6275             'Pod::Simple::Progress' => '3.19',
6276             'Pod::Simple::PullParser'=> '3.19',
6277             'Pod::Simple::PullParserEndToken'=> '3.19',
6278             'Pod::Simple::PullParserStartToken'=> '3.19',
6279             'Pod::Simple::PullParserTextToken'=> '3.19',
6280             'Pod::Simple::PullParserToken'=> '3.19',
6281             'Pod::Simple::RTF' => '3.19',
6282             'Pod::Simple::Search' => '3.19',
6283             'Pod::Simple::SimpleTree'=> '3.19',
6284             'Pod::Simple::Text' => '3.19',
6285             'Pod::Simple::TextContent'=> '3.19',
6286             'Pod::Simple::TiedOutFH'=> '3.19',
6287             'Pod::Simple::Transcode'=> '3.19',
6288             'Pod::Simple::TranscodeDumb'=> '3.19',
6289             'Pod::Simple::TranscodeSmart'=> '3.19',
6290             'Pod::Simple::XHTML' => '3.19',
6291             'Pod::Simple::XMLOutStream'=> '3.19',
6292             'Search::Dict' => '1.04',
6293             'Socket' => '1.94_01',
6294             'Storable' => '2.32',
6295             'Text::Abbrev' => '1.02',
6296             'Tie::Array' => '1.05',
6297             'UNIVERSAL' => '1.09',
6298             'Unicode::UCD' => '0.35',
6299             'XS::APItest' => '0.31',
6300             'XSLoader' => '0.16',
6301             'attributes' => '0.16',
6302             'diagnostics' => '1.25',
6303             'open' => '1.09',
6304             'perlfaq' => '5.0150034',
6305             'threads' => '1.85',
6306             'threads::shared' => '1.40',
6307             },
6308             removed => {
6309             }
6310             },
6311             5.015004 => {
6312             delta_from => 5.015003,
6313             changed => {
6314             'Archive::Tar' => '1.80',
6315             'Archive::Tar::Constant'=> '1.80',
6316             'Archive::Tar::File' => '1.80',
6317             'Digest' => '1.17',
6318             'DynaLoader' => '1.14',
6319             'ExtUtils::Command::MM' => '6.61_01',
6320             'ExtUtils::Liblist' => '6.61_01',
6321             'ExtUtils::Liblist::Kid'=> '6.61_01',
6322             'ExtUtils::MM' => '6.61_01',
6323             'ExtUtils::MM_AIX' => '6.61_01',
6324             'ExtUtils::MM_Any' => '6.61_01',
6325             'ExtUtils::MM_BeOS' => '6.61_01',
6326             'ExtUtils::MM_Cygwin' => '6.61_01',
6327             'ExtUtils::MM_DOS' => '6.61_01',
6328             'ExtUtils::MM_Darwin' => '6.61_01',
6329             'ExtUtils::MM_MacOS' => '6.61_01',
6330             'ExtUtils::MM_NW5' => '6.61_01',
6331             'ExtUtils::MM_OS2' => '6.61_01',
6332             'ExtUtils::MM_QNX' => '6.61_01',
6333             'ExtUtils::MM_UWIN' => '6.61_01',
6334             'ExtUtils::MM_Unix' => '6.61_01',
6335             'ExtUtils::MM_VMS' => '6.61_01',
6336             'ExtUtils::MM_VOS' => '6.61_01',
6337             'ExtUtils::MM_Win32' => '6.61_01',
6338             'ExtUtils::MM_Win95' => '6.61_01',
6339             'ExtUtils::MY' => '6.61_01',
6340             'ExtUtils::MakeMaker' => '6.61_01',
6341             'ExtUtils::MakeMaker::Config'=> '6.61_01',
6342             'ExtUtils::Mkbootstrap' => '6.61_01',
6343             'ExtUtils::Mksymlists' => '6.61_01',
6344             'ExtUtils::ParseXS' => '3.05',
6345             'ExtUtils::ParseXS::Constants'=> '3.05',
6346             'ExtUtils::ParseXS::CountLines'=> '3.05',
6347             'ExtUtils::ParseXS::Utilities'=> '3.05',
6348             'ExtUtils::testlib' => '6.61_01',
6349             'File::DosGlob' => '1.05',
6350             'Module::CoreList' => '2.57',
6351             'Module::Load' => '0.22',
6352             'Unicode::Collate' => '0.80',
6353             'Unicode::Collate::Locale'=> '0.80',
6354             'Unicode::UCD' => '0.36',
6355             'XS::APItest' => '0.32',
6356             'XS::Typemap' => '0.07',
6357             'attributes' => '0.17',
6358             'base' => '2.18',
6359             'constant' => '1.23',
6360             'mro' => '1.09',
6361             'open' => '1.10',
6362             'perlfaq' => '5.0150035',
6363             },
6364             removed => {
6365             }
6366             },
6367             5.015005 => {
6368             delta_from => 5.015004,
6369             changed => {
6370             'Archive::Extract' => '0.58',
6371             'B::Concise' => '0.87',
6372             'B::Deparse' => '1.09',
6373             'CGI' => '3.58',
6374             'CGI::Fast' => '1.09',
6375             'CPANPLUS' => '0.9112',
6376             'CPANPLUS::Dist::Build' => '0.60',
6377             'CPANPLUS::Dist::Build::Constants'=> '0.60',
6378             'CPANPLUS::Internals' => '0.9112',
6379             'CPANPLUS::Shell::Default'=> '0.9112',
6380             'Compress::Raw::Bzip2' => '2.042',
6381             'Compress::Raw::Zlib' => '2.042',
6382             'Compress::Zlib' => '2.042',
6383             'Digest::SHA' => '5.63',
6384             'Errno' => '1.15',
6385             'ExtUtils::Command::MM' => '6.63_02',
6386             'ExtUtils::Liblist' => '6.63_02',
6387             'ExtUtils::Liblist::Kid'=> '6.63_02',
6388             'ExtUtils::MM' => '6.63_02',
6389             'ExtUtils::MM_AIX' => '6.63_02',
6390             'ExtUtils::MM_Any' => '6.63_02',
6391             'ExtUtils::MM_BeOS' => '6.63_02',
6392             'ExtUtils::MM_Cygwin' => '6.63_02',
6393             'ExtUtils::MM_DOS' => '6.63_02',
6394             'ExtUtils::MM_Darwin' => '6.63_02',
6395             'ExtUtils::MM_MacOS' => '6.63_02',
6396             'ExtUtils::MM_NW5' => '6.63_02',
6397             'ExtUtils::MM_OS2' => '6.63_02',
6398             'ExtUtils::MM_QNX' => '6.63_02',
6399             'ExtUtils::MM_UWIN' => '6.63_02',
6400             'ExtUtils::MM_Unix' => '6.63_02',
6401             'ExtUtils::MM_VMS' => '6.63_02',
6402             'ExtUtils::MM_VOS' => '6.63_02',
6403             'ExtUtils::MM_Win32' => '6.63_02',
6404             'ExtUtils::MM_Win95' => '6.63_02',
6405             'ExtUtils::MY' => '6.63_02',
6406             'ExtUtils::MakeMaker' => '6.63_02',
6407             'ExtUtils::MakeMaker::Config'=> '6.63_02',
6408             'ExtUtils::Mkbootstrap' => '6.63_02',
6409             'ExtUtils::Mksymlists' => '6.63_02',
6410             'ExtUtils::testlib' => '6.63_02',
6411             'File::DosGlob' => '1.06',
6412             'File::Glob' => '1.14',
6413             'HTTP::Tiny' => '0.016',
6414             'IO::Compress::Adapter::Bzip2'=> '2.042',
6415             'IO::Compress::Adapter::Deflate'=> '2.042',
6416             'IO::Compress::Adapter::Identity'=> '2.042',
6417             'IO::Compress::Base' => '2.042',
6418             'IO::Compress::Base::Common'=> '2.042',
6419             'IO::Compress::Bzip2' => '2.042',
6420             'IO::Compress::Deflate' => '2.042',
6421             'IO::Compress::Gzip' => '2.042',
6422             'IO::Compress::Gzip::Constants'=> '2.042',
6423             'IO::Compress::RawDeflate'=> '2.042',
6424             'IO::Compress::Zip' => '2.042',
6425             'IO::Compress::Zip::Constants'=> '2.042',
6426             'IO::Compress::Zlib::Constants'=> '2.042',
6427             'IO::Compress::Zlib::Extra'=> '2.042',
6428             'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6429             'IO::Uncompress::Adapter::Identity'=> '2.042',
6430             'IO::Uncompress::Adapter::Inflate'=> '2.042',
6431             'IO::Uncompress::AnyInflate'=> '2.042',
6432             'IO::Uncompress::AnyUncompress'=> '2.042',
6433             'IO::Uncompress::Base' => '2.042',
6434             'IO::Uncompress::Bunzip2'=> '2.042',
6435             'IO::Uncompress::Gunzip'=> '2.042',
6436             'IO::Uncompress::Inflate'=> '2.042',
6437             'IO::Uncompress::RawInflate'=> '2.042',
6438             'IO::Uncompress::Unzip' => '2.042',
6439             'Locale::Maketext' => '1.20',
6440             'Locale::Maketext::Guts'=> '1.20',
6441             'Locale::Maketext::GutsLoader'=> '1.20',
6442             'Module::CoreList' => '2.58',
6443             'Opcode' => '1.21',
6444             'Socket' => '1.94_02',
6445             'Storable' => '2.33',
6446             'UNIVERSAL' => '1.10',
6447             'Unicode::Collate' => '0.85',
6448             'Unicode::Collate::CJK::Pinyin'=> '0.85',
6449             'Unicode::Collate::CJK::Stroke'=> '0.85',
6450             'Unicode::Collate::Locale'=> '0.85',
6451             'Unicode::UCD' => '0.37',
6452             'XS::APItest' => '0.33',
6453             'arybase' => '0.01',
6454             'charnames' => '1.24',
6455             'feature' => '1.23',
6456             'perlfaq' => '5.0150036',
6457             'strict' => '1.05',
6458             'unicore::Name' => undef,
6459             },
6460             removed => {
6461             }
6462             },
6463             5.015006 => {
6464             delta_from => 5.015005,
6465             changed => {
6466             'Archive::Tar' => '1.82',
6467             'Archive::Tar::Constant'=> '1.82',
6468             'Archive::Tar::File' => '1.82',
6469             'AutoLoader' => '5.72',
6470             'B::Concise' => '0.88',
6471             'B::Debug' => '1.17',
6472             'B::Deparse' => '1.10',
6473             'CPAN::Meta::YAML' => '0.005',
6474             'CPANPLUS' => '0.9113',
6475             'CPANPLUS::Internals' => '0.9113',
6476             'CPANPLUS::Shell::Default'=> '0.9113',
6477             'Carp' => '1.24',
6478             'Compress::Raw::Bzip2' => '2.045',
6479             'Compress::Raw::Zlib' => '2.045',
6480             'Compress::Zlib' => '2.045',
6481             'Cwd' => '3.38',
6482             'DB' => '1.04',
6483             'Data::Dumper' => '2.135_01',
6484             'Digest::SHA' => '5.70',
6485             'Dumpvalue' => '1.17',
6486             'Exporter' => '5.66',
6487             'Exporter::Heavy' => '5.66',
6488             'ExtUtils::CBuilder' => '0.280205',
6489             'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6490             'ExtUtils::Packlist' => '1.45',
6491             'ExtUtils::ParseXS' => '3.08',
6492             'ExtUtils::ParseXS::Constants'=> '3.08',
6493             'ExtUtils::ParseXS::CountLines'=> '3.08',
6494             'ExtUtils::ParseXS::Utilities'=> '3.08',
6495             'File::Basename' => '2.84',
6496             'File::Glob' => '1.15',
6497             'File::Spec::Unix' => '3.35',
6498             'Getopt::Std' => '1.07',
6499             'I18N::LangTags' => '0.38',
6500             'IO::Compress::Adapter::Bzip2'=> '2.045',
6501             'IO::Compress::Adapter::Deflate'=> '2.045',
6502             'IO::Compress::Adapter::Identity'=> '2.045',
6503             'IO::Compress::Base' => '2.046',
6504             'IO::Compress::Base::Common'=> '2.045',
6505             'IO::Compress::Bzip2' => '2.045',
6506             'IO::Compress::Deflate' => '2.045',
6507             'IO::Compress::Gzip' => '2.045',
6508             'IO::Compress::Gzip::Constants'=> '2.045',
6509             'IO::Compress::RawDeflate'=> '2.045',
6510             'IO::Compress::Zip' => '2.046',
6511             'IO::Compress::Zip::Constants'=> '2.045',
6512             'IO::Compress::Zlib::Constants'=> '2.045',
6513             'IO::Compress::Zlib::Extra'=> '2.045',
6514             'IO::Dir' => '1.09',
6515             'IO::File' => '1.16',
6516             'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6517             'IO::Uncompress::Adapter::Identity'=> '2.045',
6518             'IO::Uncompress::Adapter::Inflate'=> '2.045',
6519             'IO::Uncompress::AnyInflate'=> '2.045',
6520             'IO::Uncompress::AnyUncompress'=> '2.045',
6521             'IO::Uncompress::Base' => '2.046',
6522             'IO::Uncompress::Bunzip2'=> '2.045',
6523             'IO::Uncompress::Gunzip'=> '2.045',
6524             'IO::Uncompress::Inflate'=> '2.045',
6525             'IO::Uncompress::RawInflate'=> '2.045',
6526             'IO::Uncompress::Unzip' => '2.046',
6527             'Locale::Codes' => '3.20',
6528             'Locale::Codes::Constants'=> '3.20',
6529             'Locale::Codes::Country'=> '3.20',
6530             'Locale::Codes::Country_Codes'=> '3.20',
6531             'Locale::Codes::Country_Retired'=> '3.20',
6532             'Locale::Codes::Currency'=> '3.20',
6533             'Locale::Codes::Currency_Codes'=> '3.20',
6534             'Locale::Codes::Currency_Retired'=> '3.20',
6535             'Locale::Codes::LangExt'=> '3.20',
6536             'Locale::Codes::LangExt_Codes'=> '3.20',
6537             'Locale::Codes::LangExt_Retired'=> '3.20',
6538             'Locale::Codes::LangFam'=> '3.20',
6539             'Locale::Codes::LangFam_Codes'=> '3.20',
6540             'Locale::Codes::LangFam_Retired'=> '3.20',
6541             'Locale::Codes::LangVar'=> '3.20',
6542             'Locale::Codes::LangVar_Codes'=> '3.20',
6543             'Locale::Codes::LangVar_Retired'=> '3.20',
6544             'Locale::Codes::Language'=> '3.20',
6545             'Locale::Codes::Language_Codes'=> '3.20',
6546             'Locale::Codes::Language_Retired'=> '3.20',
6547             'Locale::Codes::Script' => '3.20',
6548             'Locale::Codes::Script_Codes'=> '3.20',
6549             'Locale::Codes::Script_Retired'=> '3.20',
6550             'Locale::Country' => '3.20',
6551             'Locale::Currency' => '3.20',
6552             'Locale::Language' => '3.20',
6553             'Locale::Maketext' => '1.21',
6554             'Locale::Script' => '3.20',
6555             'Module::CoreList' => '2.59',
6556             'Module::Loaded' => '0.08',
6557             'Opcode' => '1.22',
6558             'POSIX' => '1.27',
6559             'Pod::Html' => '1.12',
6560             'Pod::LaTeX' => '0.60',
6561             'Pod::Perldoc' => '3.15_08',
6562             'Safe' => '2.30',
6563             'SelfLoader' => '1.20',
6564             'Socket' => '1.97',
6565             'Storable' => '2.34',
6566             'UNIVERSAL' => '1.11',
6567             'Unicode::Collate' => '0.87',
6568             'Unicode::Collate::Locale'=> '0.87',
6569             'XS::APItest' => '0.34',
6570             'arybase' => '0.02',
6571             'charnames' => '1.27',
6572             'diagnostics' => '1.26',
6573             'feature' => '1.24',
6574             'if' => '0.0602',
6575             'overload' => '1.16',
6576             'sigtrap' => '1.06',
6577             'strict' => '1.06',
6578             'threads' => '1.86',
6579             'version' => '0.96',
6580             },
6581             removed => {
6582             }
6583             },
6584             5.015007 => {
6585             delta_from => 5.015006,
6586             changed => {
6587             'B' => '1.33',
6588             'B::Deparse' => '1.11',
6589             'CGI' => '3.59',
6590             'CPAN::Meta' => '2.113640',
6591             'CPAN::Meta::Converter' => '2.113640',
6592             'CPAN::Meta::Feature' => '2.113640',
6593             'CPAN::Meta::History' => '2.113640',
6594             'CPAN::Meta::Prereqs' => '2.113640',
6595             'CPAN::Meta::Requirements'=> '2.113640',
6596             'CPAN::Meta::Spec' => '2.113640',
6597             'CPAN::Meta::Validator' => '2.113640',
6598             'CPANPLUS' => '0.9116',
6599             'CPANPLUS::Internals' => '0.9116',
6600             'CPANPLUS::Shell::Default'=> '0.9116',
6601             'Cwd' => '3.39_01',
6602             'Data::Dumper' => '2.135_03',
6603             'Devel::InnerPackage' => '0.4',
6604             'ExtUtils::CBuilder::Base'=> '0.280205',
6605             'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6606             'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6607             'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6608             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6609             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6610             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6611             'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6612             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6613             'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6614             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6615             'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6616             'ExtUtils::Manifest' => '1.61',
6617             'ExtUtils::Packlist' => '1.46',
6618             'ExtUtils::ParseXS' => '3.12',
6619             'ExtUtils::ParseXS::Constants'=> '3.12',
6620             'ExtUtils::ParseXS::CountLines'=> '3.12',
6621             'ExtUtils::ParseXS::Utilities'=> '3.12',
6622             'ExtUtils::Typemaps' => '1.03',
6623             'ExtUtils::Typemaps::Cmd'=> undef,
6624             'ExtUtils::Typemaps::Type'=> '0.06',
6625             'File::Glob' => '1.16',
6626             'File::Spec' => '3.39_01',
6627             'File::Spec::Cygwin' => '3.39_01',
6628             'File::Spec::Epoc' => '3.39_01',
6629             'File::Spec::Functions' => '3.39_01',
6630             'File::Spec::Mac' => '3.39_01',
6631             'File::Spec::OS2' => '3.39_01',
6632             'File::Spec::Unix' => '3.39_01',
6633             'File::Spec::VMS' => '3.39_01',
6634             'File::Spec::Win32' => '3.39_01',
6635             'IO::Dir' => '1.10',
6636             'IO::Pipe' => '1.15',
6637             'IO::Poll' => '0.09',
6638             'IO::Select' => '1.21',
6639             'IO::Socket' => '1.34',
6640             'IO::Socket::INET' => '1.33',
6641             'IO::Socket::UNIX' => '1.24',
6642             'Locale::Maketext' => '1.22',
6643             'Math::BigInt' => '1.998',
6644             'Module::CoreList' => '2.60',
6645             'Module::Pluggable' => '4.0',
6646             'POSIX' => '1.28',
6647             'PerlIO::scalar' => '0.13',
6648             'Pod::Html' => '1.13',
6649             'Pod::Perldoc' => '3.15_15',
6650             'Pod::Perldoc::BaseTo' => '3.15_15',
6651             'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6652             'Pod::Perldoc::ToANSI' => '3.15_15',
6653             'Pod::Perldoc::ToChecker'=> '3.15_15',
6654             'Pod::Perldoc::ToMan' => '3.15_15',
6655             'Pod::Perldoc::ToNroff' => '3.15_15',
6656             'Pod::Perldoc::ToPod' => '3.15_15',
6657             'Pod::Perldoc::ToRtf' => '3.15_15',
6658             'Pod::Perldoc::ToTerm' => '3.15_15',
6659             'Pod::Perldoc::ToText' => '3.15_15',
6660             'Pod::Perldoc::ToTk' => '3.15_15',
6661             'Pod::Perldoc::ToXml' => '3.15_15',
6662             'Term::UI' => '0.30',
6663             'Tie::File' => '0.98',
6664             'Unicode::UCD' => '0.39',
6665             'Version::Requirements' => '0.101021',
6666             'XS::APItest' => '0.35',
6667             '_charnames' => '1.28',
6668             'arybase' => '0.03',
6669             'autouse' => '1.07',
6670             'charnames' => '1.28',
6671             'diagnostics' => '1.27',
6672             'feature' => '1.25',
6673             'overload' => '1.17',
6674             'overloading' => '0.02',
6675             'perlfaq' => '5.0150038',
6676             },
6677             removed => {
6678             }
6679             },
6680             5.015008 => {
6681             delta_from => 5.015007,
6682             changed => {
6683             'B' => '1.34',
6684             'B::Deparse' => '1.12',
6685             'CPAN::Meta' => '2.120351',
6686             'CPAN::Meta::Converter' => '2.120351',
6687             'CPAN::Meta::Feature' => '2.120351',
6688             'CPAN::Meta::History' => '2.120351',
6689             'CPAN::Meta::Prereqs' => '2.120351',
6690             'CPAN::Meta::Requirements'=> '2.120351',
6691             'CPAN::Meta::Spec' => '2.120351',
6692             'CPAN::Meta::Validator' => '2.120351',
6693             'CPAN::Meta::YAML' => '0.007',
6694             'CPANPLUS' => '0.9118',
6695             'CPANPLUS::Dist::Build' => '0.62',
6696             'CPANPLUS::Dist::Build::Constants'=> '0.62',
6697             'CPANPLUS::Internals' => '0.9118',
6698             'CPANPLUS::Shell::Default'=> '0.9118',
6699             'Carp' => '1.25',
6700             'Carp::Heavy' => '1.25',
6701             'Compress::Raw::Bzip2' => '2.048',
6702             'Compress::Raw::Zlib' => '2.048',
6703             'Compress::Zlib' => '2.048',
6704             'Cwd' => '3.39_02',
6705             'DB_File' => '1.826',
6706             'Data::Dumper' => '2.135_05',
6707             'English' => '1.05',
6708             'ExtUtils::Install' => '1.58',
6709             'ExtUtils::ParseXS' => '3.16',
6710             'ExtUtils::ParseXS::Constants'=> '3.16',
6711             'ExtUtils::ParseXS::CountLines'=> '3.16',
6712             'ExtUtils::ParseXS::Utilities'=> '3.16',
6713             'ExtUtils::Typemaps' => '3.16',
6714             'ExtUtils::Typemaps::Cmd'=> '3.16',
6715             'ExtUtils::Typemaps::InputMap'=> '3.16',
6716             'ExtUtils::Typemaps::OutputMap'=> '3.16',
6717             'ExtUtils::Typemaps::Type'=> '3.16',
6718             'File::Copy' => '2.23',
6719             'File::Glob' => '1.17',
6720             'File::Spec' => '3.39_02',
6721             'File::Spec::Cygwin' => '3.39_02',
6722             'File::Spec::Epoc' => '3.39_02',
6723             'File::Spec::Functions' => '3.39_02',
6724             'File::Spec::Mac' => '3.39_02',
6725             'File::Spec::OS2' => '3.39_02',
6726             'File::Spec::Unix' => '3.39_02',
6727             'File::Spec::VMS' => '3.39_02',
6728             'File::Spec::Win32' => '3.39_02',
6729             'Filter::Util::Call' => '1.40',
6730             'IO::Compress::Adapter::Bzip2'=> '2.048',
6731             'IO::Compress::Adapter::Deflate'=> '2.048',
6732             'IO::Compress::Adapter::Identity'=> '2.048',
6733             'IO::Compress::Base' => '2.048',
6734             'IO::Compress::Base::Common'=> '2.048',
6735             'IO::Compress::Bzip2' => '2.048',
6736             'IO::Compress::Deflate' => '2.048',
6737             'IO::Compress::Gzip' => '2.048',
6738             'IO::Compress::Gzip::Constants'=> '2.048',
6739             'IO::Compress::RawDeflate'=> '2.048',
6740             'IO::Compress::Zip' => '2.048',
6741             'IO::Compress::Zip::Constants'=> '2.048',
6742             'IO::Compress::Zlib::Constants'=> '2.048',
6743             'IO::Compress::Zlib::Extra'=> '2.048',
6744             'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6745             'IO::Uncompress::Adapter::Identity'=> '2.048',
6746             'IO::Uncompress::Adapter::Inflate'=> '2.048',
6747             'IO::Uncompress::AnyInflate'=> '2.048',
6748             'IO::Uncompress::AnyUncompress'=> '2.048',
6749             'IO::Uncompress::Base' => '2.048',
6750             'IO::Uncompress::Bunzip2'=> '2.048',
6751             'IO::Uncompress::Gunzip'=> '2.048',
6752             'IO::Uncompress::Inflate'=> '2.048',
6753             'IO::Uncompress::RawInflate'=> '2.048',
6754             'IO::Uncompress::Unzip' => '2.048',
6755             'IPC::Cmd' => '0.76',
6756             'Math::Complex' => '1.59',
6757             'Math::Trig' => '1.23',
6758             'Module::Metadata' => '1.000009',
6759             'Opcode' => '1.23',
6760             'POSIX' => '1.30',
6761             'Parse::CPAN::Meta' => '1.4402',
6762             'PerlIO::mmap' => '0.010',
6763             'Pod::Checker' => '1.51',
6764             'Pod::Find' => '1.51',
6765             'Pod::Functions' => '1.05',
6766             'Pod::Html' => '1.14',
6767             'Pod::InputObjects' => '1.51',
6768             'Pod::ParseUtils' => '1.51',
6769             'Pod::Parser' => '1.51',
6770             'Pod::PlainText' => '2.05',
6771             'Pod::Select' => '1.51',
6772             'Pod::Usage' => '1.51',
6773             'Safe' => '2.31',
6774             'Socket' => '1.98',
6775             'Term::Cap' => '1.13',
6776             'Term::ReadLine' => '1.08',
6777             'Time::HiRes' => '1.9725',
6778             'Unicode' => '6.1.0',
6779             'Unicode::UCD' => '0.41',
6780             'Version::Requirements' => '0.101022',
6781             'XS::APItest' => '0.36',
6782             'XS::Typemap' => '0.08',
6783             '_charnames' => '1.29',
6784             'arybase' => '0.04',
6785             'charnames' => '1.29',
6786             'diagnostics' => '1.28',
6787             'feature' => '1.26',
6788             'locale' => '1.01',
6789             'overload' => '1.18',
6790             'perlfaq' => '5.0150039',
6791             're' => '0.19',
6792             'subs' => '1.01',
6793             'warnings' => '1.13',
6794             },
6795             removed => {
6796             }
6797             },
6798             5.015009 => {
6799             delta_from => 5.015008,
6800             changed => {
6801             'B::Deparse' => '1.13',
6802             'B::Lint' => '1.14',
6803             'B::Lint::Debug' => '1.14',
6804             'CPAN::Meta' => '2.120630',
6805             'CPAN::Meta::Converter' => '2.120630',
6806             'CPAN::Meta::Feature' => '2.120630',
6807             'CPAN::Meta::History' => '2.120630',
6808             'CPAN::Meta::Prereqs' => '2.120630',
6809             'CPAN::Meta::Requirements'=> '2.120630',
6810             'CPAN::Meta::Spec' => '2.120630',
6811             'CPAN::Meta::Validator' => '2.120630',
6812             'CPANPLUS' => '0.9121',
6813             'CPANPLUS::Internals' => '0.9121',
6814             'CPANPLUS::Shell::Default'=> '0.9121',
6815             'Data::Dumper' => '2.135_06',
6816             'Digest::SHA' => '5.71',
6817             'ExtUtils::CBuilder' => '0.280206',
6818             'ExtUtils::CBuilder::Base'=> '0.280206',
6819             'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6820             'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6821             'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6822             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6823             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6824             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6825             'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6826             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6827             'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6828             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6829             'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6830             'HTTP::Tiny' => '0.017',
6831             'Locale::Codes' => '3.21',
6832             'Locale::Codes::Constants'=> '3.21',
6833             'Locale::Codes::Country'=> '3.21',
6834             'Locale::Codes::Country_Codes'=> '3.21',
6835             'Locale::Codes::Country_Retired'=> '3.21',
6836             'Locale::Codes::Currency'=> '3.21',
6837             'Locale::Codes::Currency_Codes'=> '3.21',
6838             'Locale::Codes::Currency_Retired'=> '3.21',
6839             'Locale::Codes::LangExt'=> '3.21',
6840             'Locale::Codes::LangExt_Codes'=> '3.21',
6841             'Locale::Codes::LangExt_Retired'=> '3.21',
6842             'Locale::Codes::LangFam'=> '3.21',
6843             'Locale::Codes::LangFam_Codes'=> '3.21',
6844             'Locale::Codes::LangFam_Retired'=> '3.21',
6845             'Locale::Codes::LangVar'=> '3.21',
6846             'Locale::Codes::LangVar_Codes'=> '3.21',
6847             'Locale::Codes::LangVar_Retired'=> '3.21',
6848             'Locale::Codes::Language'=> '3.21',
6849             'Locale::Codes::Language_Codes'=> '3.21',
6850             'Locale::Codes::Language_Retired'=> '3.21',
6851             'Locale::Codes::Script' => '3.21',
6852             'Locale::Codes::Script_Codes'=> '3.21',
6853             'Locale::Codes::Script_Retired'=> '3.21',
6854             'Locale::Country' => '3.21',
6855             'Locale::Currency' => '3.21',
6856             'Locale::Language' => '3.21',
6857             'Locale::Script' => '3.21',
6858             'Module::CoreList' => '2.65',
6859             'Pod::Html' => '1.1501',
6860             'Pod::Perldoc' => '3.17',
6861             'Pod::Perldoc::BaseTo' => '3.17',
6862             'Pod::Perldoc::GetOptsOO'=> '3.17',
6863             'Pod::Perldoc::ToANSI' => '3.17',
6864             'Pod::Perldoc::ToChecker'=> '3.17',
6865             'Pod::Perldoc::ToMan' => '3.17',
6866             'Pod::Perldoc::ToNroff' => '3.17',
6867             'Pod::Perldoc::ToPod' => '3.17',
6868             'Pod::Perldoc::ToRtf' => '3.17',
6869             'Pod::Perldoc::ToTerm' => '3.17',
6870             'Pod::Perldoc::ToText' => '3.17',
6871             'Pod::Perldoc::ToTk' => '3.17',
6872             'Pod::Perldoc::ToXml' => '3.17',
6873             'Pod::Simple' => '3.20',
6874             'Pod::Simple::BlackBox' => '3.20',
6875             'Pod::Simple::Checker' => '3.20',
6876             'Pod::Simple::Debug' => '3.20',
6877             'Pod::Simple::DumpAsText'=> '3.20',
6878             'Pod::Simple::DumpAsXML'=> '3.20',
6879             'Pod::Simple::HTML' => '3.20',
6880             'Pod::Simple::HTMLBatch'=> '3.20',
6881             'Pod::Simple::LinkSection'=> '3.20',
6882             'Pod::Simple::Methody' => '3.20',
6883             'Pod::Simple::Progress' => '3.20',
6884             'Pod::Simple::PullParser'=> '3.20',
6885             'Pod::Simple::PullParserEndToken'=> '3.20',
6886             'Pod::Simple::PullParserStartToken'=> '3.20',
6887             'Pod::Simple::PullParserTextToken'=> '3.20',
6888             'Pod::Simple::PullParserToken'=> '3.20',
6889             'Pod::Simple::RTF' => '3.20',
6890             'Pod::Simple::Search' => '3.20',
6891             'Pod::Simple::SimpleTree'=> '3.20',
6892             'Pod::Simple::Text' => '3.20',
6893             'Pod::Simple::TextContent'=> '3.20',
6894             'Pod::Simple::TiedOutFH'=> '3.20',
6895             'Pod::Simple::Transcode'=> '3.20',
6896             'Pod::Simple::TranscodeDumb'=> '3.20',
6897             'Pod::Simple::TranscodeSmart'=> '3.20',
6898             'Pod::Simple::XHTML' => '3.20',
6899             'Pod::Simple::XMLOutStream'=> '3.20',
6900             'Socket' => '2.000',
6901             'Term::ReadLine' => '1.09',
6902             'Unicode::Collate' => '0.89',
6903             'Unicode::Collate::CJK::Korean'=> '0.88',
6904             'Unicode::Collate::Locale'=> '0.89',
6905             'Unicode::Normalize' => '1.14',
6906             'Unicode::UCD' => '0.42',
6907             'XS::APItest' => '0.37',
6908             'arybase' => '0.05',
6909             'attributes' => '0.18',
6910             'charnames' => '1.30',
6911             'feature' => '1.27',
6912             },
6913             removed => {
6914             }
6915             },
6916             5.016 => {
6917             delta_from => 5.015009,
6918             changed => {
6919             'B::Concise' => '0.89',
6920             'B::Deparse' => '1.14',
6921             'Carp' => '1.26',
6922             'Carp::Heavy' => '1.26',
6923             'IO::Socket' => '1.35',
6924             'Module::CoreList' => '2.66',
6925             'PerlIO::scalar' => '0.14',
6926             'Pod::Html' => '1.1502',
6927             'Safe' => '2.31_01',
6928             'Socket' => '2.001',
6929             'Unicode::UCD' => '0.43',
6930             'XS::APItest' => '0.38',
6931             '_charnames' => '1.31',
6932             'attributes' => '0.19',
6933             'strict' => '1.07',
6934             'version' => '0.99',
6935             },
6936             removed => {
6937             }
6938             },
6939             5.016001 => {
6940             delta_from => 5.016,
6941             changed => {
6942             'B' => '1.35',
6943             'B::Deparse' => '1.14_01',
6944             'List::Util' => '1.25',
6945             'List::Util::PP' => '1.25',
6946             'List::Util::XS' => '1.25',
6947             'Module::CoreList' => '2.70',
6948             'PerlIO::scalar' => '0.14_01',
6949             'Scalar::Util' => '1.25',
6950             'Scalar::Util::PP' => '1.25',
6951             're' => '0.19_01',
6952             },
6953             removed => {
6954             }
6955             },
6956             5.016002 => {
6957             delta_from => 5.016001,
6958             changed => {
6959             'Module::CoreList' => '2.76',
6960             },
6961             removed => {
6962             }
6963             },
6964             5.016003 => {
6965             delta_from => 5.016002,
6966             changed => {
6967             'Encode' => '2.44_01',
6968             'Module::CoreList' => '2.76_02',
6969             'XS::APItest' => '0.39',
6970             },
6971             removed => {
6972             }
6973             },
6974             5.017 => {
6975             delta_from => 5.016,
6976             changed => {
6977             'B' => '1.35',
6978             'B::Concise' => '0.90',
6979             'ExtUtils::ParseXS' => '3.17',
6980             'ExtUtils::ParseXS::Utilities'=> '3.17',
6981             'File::DosGlob' => '1.07',
6982             'File::Find' => '1.21',
6983             'File::stat' => '1.06',
6984             'Hash::Util' => '0.12',
6985             'IO::Socket' => '1.34',
6986             'Module::CoreList' => '2.67',
6987             'Pod::Functions' => '1.06',
6988             'Storable' => '2.35',
6989             'XS::APItest' => '0.39',
6990             'diagnostics' => '1.29',
6991             'feature' => '1.28',
6992             'overload' => '1.19',
6993             'utf8' => '1.10',
6994             },
6995             removed => {
6996             'Version::Requirements' => 1,
6997             }
6998             },
6999             5.017001 => {
7000             delta_from => 5.017,
7001             changed => {
7002             'App::Prove' => '3.25',
7003             'App::Prove::State' => '3.25',
7004             'App::Prove::State::Result'=> '3.25',
7005             'App::Prove::State::Result::Test'=> '3.25',
7006             'Archive::Extract' => '0.60',
7007             'Archive::Tar' => '1.88',
7008             'Archive::Tar::Constant'=> '1.88',
7009             'Archive::Tar::File' => '1.88',
7010             'B' => '1.36',
7011             'B::Deparse' => '1.15',
7012             'CPAN::Meta' => '2.120921',
7013             'CPAN::Meta::Converter' => '2.120921',
7014             'CPAN::Meta::Feature' => '2.120921',
7015             'CPAN::Meta::History' => '2.120921',
7016             'CPAN::Meta::Prereqs' => '2.120921',
7017             'CPAN::Meta::Requirements'=> '2.122',
7018             'CPAN::Meta::Spec' => '2.120921',
7019             'CPAN::Meta::Validator' => '2.120921',
7020             'CPAN::Meta::YAML' => '0.008',
7021             'CPANPLUS' => '0.9130',
7022             'CPANPLUS::Config::HomeEnv'=> '0.04',
7023             'CPANPLUS::Internals' => '0.9130',
7024             'CPANPLUS::Shell::Default'=> '0.9130',
7025             'Class::Struct' => '0.64',
7026             'Compress::Raw::Bzip2' => '2.052',
7027             'Compress::Raw::Zlib' => '2.054',
7028             'Compress::Zlib' => '2.052',
7029             'Digest::MD5' => '2.52',
7030             'DynaLoader' => '1.15',
7031             'ExtUtils::CBuilder' => '0.280208',
7032             'ExtUtils::CBuilder::Base'=> '0.280208',
7033             'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
7034             'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
7035             'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
7036             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
7037             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
7038             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
7039             'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
7040             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
7041             'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
7042             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
7043             'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
7044             'Fatal' => '2.11',
7045             'File::DosGlob' => '1.08',
7046             'File::Fetch' => '0.34',
7047             'File::Spec::Unix' => '3.39_03',
7048             'Filter::Util::Call' => '1.45',
7049             'HTTP::Tiny' => '0.022',
7050             'IO' => '1.25_07',
7051             'IO::Compress::Adapter::Bzip2'=> '2.052',
7052             'IO::Compress::Adapter::Deflate'=> '2.052',
7053             'IO::Compress::Adapter::Identity'=> '2.052',
7054             'IO::Compress::Base' => '2.052',
7055             'IO::Compress::Base::Common'=> '2.052',
7056             'IO::Compress::Bzip2' => '2.052',
7057             'IO::Compress::Deflate' => '2.052',
7058             'IO::Compress::Gzip' => '2.052',
7059             'IO::Compress::Gzip::Constants'=> '2.052',
7060             'IO::Compress::RawDeflate'=> '2.052',
7061             'IO::Compress::Zip' => '2.052',
7062             'IO::Compress::Zip::Constants'=> '2.052',
7063             'IO::Compress::Zlib::Constants'=> '2.052',
7064             'IO::Compress::Zlib::Extra'=> '2.052',
7065             'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
7066             'IO::Uncompress::Adapter::Identity'=> '2.052',
7067             'IO::Uncompress::Adapter::Inflate'=> '2.052',
7068             'IO::Uncompress::AnyInflate'=> '2.052',
7069             'IO::Uncompress::AnyUncompress'=> '2.052',
7070             'IO::Uncompress::Base' => '2.052',
7071             'IO::Uncompress::Bunzip2'=> '2.052',
7072             'IO::Uncompress::Gunzip'=> '2.052',
7073             'IO::Uncompress::Inflate'=> '2.052',
7074             'IO::Uncompress::RawInflate'=> '2.052',
7075             'IO::Uncompress::Unzip' => '2.052',
7076             'IPC::Cmd' => '0.78',
7077             'List::Util' => '1.25',
7078             'List::Util::XS' => '1.25',
7079             'Locale::Codes' => '3.22',
7080             'Locale::Codes::Constants'=> '3.22',
7081             'Locale::Codes::Country'=> '3.22',
7082             'Locale::Codes::Country_Codes'=> '3.22',
7083             'Locale::Codes::Country_Retired'=> '3.22',
7084             'Locale::Codes::Currency'=> '3.22',
7085             'Locale::Codes::Currency_Codes'=> '3.22',
7086             'Locale::Codes::Currency_Retired'=> '3.22',
7087             'Locale::Codes::LangExt'=> '3.22',
7088             'Locale::Codes::LangExt_Codes'=> '3.22',
7089             'Locale::Codes::LangExt_Retired'=> '3.22',
7090             'Locale::Codes::LangFam'=> '3.22',
7091             'Locale::Codes::LangFam_Codes'=> '3.22',
7092             'Locale::Codes::LangFam_Retired'=> '3.22',
7093             'Locale::Codes::LangVar'=> '3.22',
7094             'Locale::Codes::LangVar_Codes'=> '3.22',
7095             'Locale::Codes::LangVar_Retired'=> '3.22',
7096             'Locale::Codes::Language'=> '3.22',
7097             'Locale::Codes::Language_Codes'=> '3.22',
7098             'Locale::Codes::Language_Retired'=> '3.22',
7099             'Locale::Codes::Script' => '3.22',
7100             'Locale::Codes::Script_Codes'=> '3.22',
7101             'Locale::Codes::Script_Retired'=> '3.22',
7102             'Locale::Country' => '3.22',
7103             'Locale::Currency' => '3.22',
7104             'Locale::Language' => '3.22',
7105             'Locale::Script' => '3.22',
7106             'Memoize' => '1.03',
7107             'Memoize::AnyDBM_File' => '1.03',
7108             'Memoize::Expire' => '1.03',
7109             'Memoize::ExpireFile' => '1.03',
7110             'Memoize::ExpireTest' => '1.03',
7111             'Memoize::NDBM_File' => '1.03',
7112             'Memoize::SDBM_File' => '1.03',
7113             'Memoize::Storable' => '1.03',
7114             'Module::Build' => '0.40',
7115             'Module::Build::Base' => '0.40',
7116             'Module::Build::Compat' => '0.40',
7117             'Module::Build::Config' => '0.40',
7118             'Module::Build::Cookbook'=> '0.40',
7119             'Module::Build::Dumper' => '0.40',
7120             'Module::Build::ModuleInfo'=> '0.40',
7121             'Module::Build::Notes' => '0.40',
7122             'Module::Build::PPMMaker'=> '0.40',
7123             'Module::Build::Platform::Amiga'=> '0.40',
7124             'Module::Build::Platform::Default'=> '0.40',
7125             'Module::Build::Platform::EBCDIC'=> '0.40',
7126             'Module::Build::Platform::MPEiX'=> '0.40',
7127             'Module::Build::Platform::MacOS'=> '0.40',
7128             'Module::Build::Platform::RiscOS'=> '0.40',
7129             'Module::Build::Platform::Unix'=> '0.40',
7130             'Module::Build::Platform::VMS'=> '0.40',
7131             'Module::Build::Platform::VOS'=> '0.40',
7132             'Module::Build::Platform::Windows'=> '0.40',
7133             'Module::Build::Platform::aix'=> '0.40',
7134             'Module::Build::Platform::cygwin'=> '0.40',
7135             'Module::Build::Platform::darwin'=> '0.40',
7136             'Module::Build::Platform::os2'=> '0.40',
7137             'Module::Build::PodParser'=> '0.40',
7138             'Module::CoreList' => '2.68',
7139             'Module::Load::Conditional'=> '0.50',
7140             'Object::Accessor' => '0.44',
7141             'POSIX' => '1.31',
7142             'Params::Check' => '0.36',
7143             'Parse::CPAN::Meta' => '1.4404',
7144             'PerlIO::mmap' => '0.011',
7145             'PerlIO::via::QuotedPrint'=> '0.07',
7146             'Pod::Html' => '1.16',
7147             'Pod::Man' => '2.26',
7148             'Pod::Text' => '3.16',
7149             'Safe' => '2.33_01',
7150             'Scalar::Util' => '1.25',
7151             'Search::Dict' => '1.07',
7152             'Storable' => '2.36',
7153             'TAP::Base' => '3.25',
7154             'TAP::Formatter::Base' => '3.25',
7155             'TAP::Formatter::Color' => '3.25',
7156             'TAP::Formatter::Console'=> '3.25',
7157             'TAP::Formatter::Console::ParallelSession'=> '3.25',
7158             'TAP::Formatter::Console::Session'=> '3.25',
7159             'TAP::Formatter::File' => '3.25',
7160             'TAP::Formatter::File::Session'=> '3.25',
7161             'TAP::Formatter::Session'=> '3.25',
7162             'TAP::Harness' => '3.25',
7163             'TAP::Object' => '3.25',
7164             'TAP::Parser' => '3.25',
7165             'TAP::Parser::Aggregator'=> '3.25',
7166             'TAP::Parser::Grammar' => '3.25',
7167             'TAP::Parser::Iterator' => '3.25',
7168             'TAP::Parser::Iterator::Array'=> '3.25',
7169             'TAP::Parser::Iterator::Process'=> '3.25',
7170             'TAP::Parser::Iterator::Stream'=> '3.25',
7171             'TAP::Parser::IteratorFactory'=> '3.25',
7172             'TAP::Parser::Multiplexer'=> '3.25',
7173             'TAP::Parser::Result' => '3.25',
7174             'TAP::Parser::Result::Bailout'=> '3.25',
7175             'TAP::Parser::Result::Comment'=> '3.25',
7176             'TAP::Parser::Result::Plan'=> '3.25',
7177             'TAP::Parser::Result::Pragma'=> '3.25',
7178             'TAP::Parser::Result::Test'=> '3.25',
7179             'TAP::Parser::Result::Unknown'=> '3.25',
7180             'TAP::Parser::Result::Version'=> '3.25',
7181             'TAP::Parser::Result::YAML'=> '3.25',
7182             'TAP::Parser::ResultFactory'=> '3.25',
7183             'TAP::Parser::Scheduler'=> '3.25',
7184             'TAP::Parser::Scheduler::Job'=> '3.25',
7185             'TAP::Parser::Scheduler::Spinner'=> '3.25',
7186             'TAP::Parser::Source' => '3.25',
7187             'TAP::Parser::SourceHandler'=> '3.25',
7188             'TAP::Parser::SourceHandler::Executable'=> '3.25',
7189             'TAP::Parser::SourceHandler::File'=> '3.25',
7190             'TAP::Parser::SourceHandler::Handle'=> '3.25',
7191             'TAP::Parser::SourceHandler::Perl'=> '3.25',
7192             'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7193             'TAP::Parser::Utils' => '3.25',
7194             'TAP::Parser::YAMLish::Reader'=> '3.25',
7195             'TAP::Parser::YAMLish::Writer'=> '3.25',
7196             'Term::ANSIColor' => '3.02',
7197             'Test::Harness' => '3.25',
7198             'Unicode' => '6.2.0',
7199             'Unicode::UCD' => '0.44',
7200             'XS::APItest' => '0.40',
7201             '_charnames' => '1.32',
7202             'attributes' => '0.2',
7203             'autodie' => '2.11',
7204             'autodie::exception' => '2.11',
7205             'autodie::exception::system'=> '2.11',
7206             'autodie::hints' => '2.11',
7207             'bigint' => '0.30',
7208             'charnames' => '1.32',
7209             'feature' => '1.29',
7210             'inc::latest' => '0.40',
7211             'perlfaq' => '5.0150040',
7212             're' => '0.20',
7213             },
7214             removed => {
7215             'List::Util::PP' => 1,
7216             'Scalar::Util::PP' => 1,
7217             }
7218             },
7219             5.017002 => {
7220             delta_from => 5.017001,
7221             changed => {
7222             'App::Prove' => '3.25_01',
7223             'App::Prove::State' => '3.25_01',
7224             'App::Prove::State::Result'=> '3.25_01',
7225             'App::Prove::State::Result::Test'=> '3.25_01',
7226             'B::Concise' => '0.91',
7227             'Compress::Raw::Bzip2' => '2.05201',
7228             'Compress::Raw::Zlib' => '2.05401',
7229             'Exporter' => '5.67',
7230             'Exporter::Heavy' => '5.67',
7231             'Fatal' => '2.12',
7232             'File::Fetch' => '0.36',
7233             'File::stat' => '1.07',
7234             'IO' => '1.25_08',
7235             'IO::Socket' => '1.35',
7236             'Module::CoreList' => '2.69',
7237             'PerlIO::scalar' => '0.15',
7238             'Socket' => '2.002',
7239             'Storable' => '2.37',
7240             'TAP::Base' => '3.25_01',
7241             'TAP::Formatter::Base' => '3.25_01',
7242             'TAP::Formatter::Color' => '3.25_01',
7243             'TAP::Formatter::Console'=> '3.25_01',
7244             'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7245             'TAP::Formatter::Console::Session'=> '3.25_01',
7246             'TAP::Formatter::File' => '3.25_01',
7247             'TAP::Formatter::File::Session'=> '3.25_01',
7248             'TAP::Formatter::Session'=> '3.25_01',
7249             'TAP::Harness' => '3.25_01',
7250             'TAP::Object' => '3.25_01',
7251             'TAP::Parser' => '3.25_01',
7252             'TAP::Parser::Aggregator'=> '3.25_01',
7253             'TAP::Parser::Grammar' => '3.25_01',
7254             'TAP::Parser::Iterator' => '3.25_01',
7255             'TAP::Parser::Iterator::Array'=> '3.25_01',
7256             'TAP::Parser::Iterator::Process'=> '3.25_01',
7257             'TAP::Parser::Iterator::Stream'=> '3.25_01',
7258             'TAP::Parser::IteratorFactory'=> '3.25_01',
7259             'TAP::Parser::Multiplexer'=> '3.25_01',
7260             'TAP::Parser::Result' => '3.25_01',
7261             'TAP::Parser::Result::Bailout'=> '3.25_01',
7262             'TAP::Parser::Result::Comment'=> '3.25_01',
7263             'TAP::Parser::Result::Plan'=> '3.25_01',
7264             'TAP::Parser::Result::Pragma'=> '3.25_01',
7265             'TAP::Parser::Result::Test'=> '3.25_01',
7266             'TAP::Parser::Result::Unknown'=> '3.25_01',
7267             'TAP::Parser::Result::Version'=> '3.25_01',
7268             'TAP::Parser::Result::YAML'=> '3.25_01',
7269             'TAP::Parser::ResultFactory'=> '3.25_01',
7270             'TAP::Parser::Scheduler'=> '3.25_01',
7271             'TAP::Parser::Scheduler::Job'=> '3.25_01',
7272             'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7273             'TAP::Parser::Source' => '3.25_01',
7274             'TAP::Parser::SourceHandler'=> '3.25_01',
7275             'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7276             'TAP::Parser::SourceHandler::File'=> '3.25_01',
7277             'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7278             'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7279             'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7280             'TAP::Parser::Utils' => '3.25_01',
7281             'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7282             'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7283             'Test::Harness' => '3.25_01',
7284             'Tie::StdHandle' => '4.3',
7285             'XS::APItest' => '0.41',
7286             'autodie' => '2.12',
7287             'autodie::exception' => '2.12',
7288             'autodie::exception::system'=> '2.12',
7289             'autodie::hints' => '2.12',
7290             'diagnostics' => '1.30',
7291             'overload' => '1.20',
7292             're' => '0.21',
7293             'vars' => '1.03',
7294             },
7295             removed => {
7296             }
7297             },
7298             5.017003 => {
7299             delta_from => 5.017002,
7300             changed => {
7301             'B' => '1.37',
7302             'B::Concise' => '0.92',
7303             'B::Debug' => '1.18',
7304             'B::Deparse' => '1.16',
7305             'CGI' => '3.60',
7306             'Compress::Raw::Bzip2' => '2.055',
7307             'Compress::Raw::Zlib' => '2.056',
7308             'Compress::Zlib' => '2.055',
7309             'Data::Dumper' => '2.135_07',
7310             'Devel::Peek' => '1.09',
7311             'Encode' => '2.47',
7312             'Encode::Alias' => '2.16',
7313             'Encode::GSM0338' => '2.02',
7314             'Encode::Unicode::UTF7' => '2.06',
7315             'IO::Compress::Adapter::Bzip2'=> '2.055',
7316             'IO::Compress::Adapter::Deflate'=> '2.055',
7317             'IO::Compress::Adapter::Identity'=> '2.055',
7318             'IO::Compress::Base' => '2.055',
7319             'IO::Compress::Base::Common'=> '2.055',
7320             'IO::Compress::Bzip2' => '2.055',
7321             'IO::Compress::Deflate' => '2.055',
7322             'IO::Compress::Gzip' => '2.055',
7323             'IO::Compress::Gzip::Constants'=> '2.055',
7324             'IO::Compress::RawDeflate'=> '2.055',
7325             'IO::Compress::Zip' => '2.055',
7326             'IO::Compress::Zip::Constants'=> '2.055',
7327             'IO::Compress::Zlib::Constants'=> '2.055',
7328             'IO::Compress::Zlib::Extra'=> '2.055',
7329             'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7330             'IO::Uncompress::Adapter::Identity'=> '2.055',
7331             'IO::Uncompress::Adapter::Inflate'=> '2.055',
7332             'IO::Uncompress::AnyInflate'=> '2.055',
7333             'IO::Uncompress::AnyUncompress'=> '2.055',
7334             'IO::Uncompress::Base' => '2.055',
7335             'IO::Uncompress::Bunzip2'=> '2.055',
7336             'IO::Uncompress::Gunzip'=> '2.055',
7337             'IO::Uncompress::Inflate'=> '2.055',
7338             'IO::Uncompress::RawInflate'=> '2.055',
7339             'IO::Uncompress::Unzip' => '2.055',
7340             'Module::Build' => '0.4003',
7341             'Module::Build::Base' => '0.4003',
7342             'Module::Build::Compat' => '0.4003',
7343             'Module::Build::Config' => '0.4003',
7344             'Module::Build::Cookbook'=> '0.4003',
7345             'Module::Build::Dumper' => '0.4003',
7346             'Module::Build::ModuleInfo'=> '0.4003',
7347             'Module::Build::Notes' => '0.4003',
7348             'Module::Build::PPMMaker'=> '0.4003',
7349             'Module::Build::Platform::Amiga'=> '0.4003',
7350             'Module::Build::Platform::Default'=> '0.4003',
7351             'Module::Build::Platform::EBCDIC'=> '0.4003',
7352             'Module::Build::Platform::MPEiX'=> '0.4003',
7353             'Module::Build::Platform::MacOS'=> '0.4003',
7354             'Module::Build::Platform::RiscOS'=> '0.4003',
7355             'Module::Build::Platform::Unix'=> '0.4003',
7356             'Module::Build::Platform::VMS'=> '0.4003',
7357             'Module::Build::Platform::VOS'=> '0.4003',
7358             'Module::Build::Platform::Windows'=> '0.4003',
7359             'Module::Build::Platform::aix'=> '0.4003',
7360             'Module::Build::Platform::cygwin'=> '0.4003',
7361             'Module::Build::Platform::darwin'=> '0.4003',
7362             'Module::Build::Platform::os2'=> '0.4003',
7363             'Module::Build::PodParser'=> '0.4003',
7364             'Module::CoreList' => '2.71',
7365             'Module::CoreList::TieHashDelta'=> '2.71',
7366             'Module::Load::Conditional'=> '0.54',
7367             'Module::Metadata' => '1.000011',
7368             'Module::Pluggable' => '4.3',
7369             'Module::Pluggable::Object'=> '4.3',
7370             'Pod::Simple' => '3.23',
7371             'Pod::Simple::BlackBox' => '3.23',
7372             'Pod::Simple::Checker' => '3.23',
7373             'Pod::Simple::Debug' => '3.23',
7374             'Pod::Simple::DumpAsText'=> '3.23',
7375             'Pod::Simple::DumpAsXML'=> '3.23',
7376             'Pod::Simple::HTML' => '3.23',
7377             'Pod::Simple::HTMLBatch'=> '3.23',
7378             'Pod::Simple::LinkSection'=> '3.23',
7379             'Pod::Simple::Methody' => '3.23',
7380             'Pod::Simple::Progress' => '3.23',
7381             'Pod::Simple::PullParser'=> '3.23',
7382             'Pod::Simple::PullParserEndToken'=> '3.23',
7383             'Pod::Simple::PullParserStartToken'=> '3.23',
7384             'Pod::Simple::PullParserTextToken'=> '3.23',
7385             'Pod::Simple::PullParserToken'=> '3.23',
7386             'Pod::Simple::RTF' => '3.23',
7387             'Pod::Simple::Search' => '3.23',
7388             'Pod::Simple::SimpleTree'=> '3.23',
7389             'Pod::Simple::Text' => '3.23',
7390             'Pod::Simple::TextContent'=> '3.23',
7391             'Pod::Simple::TiedOutFH'=> '3.23',
7392             'Pod::Simple::Transcode'=> '3.23',
7393             'Pod::Simple::TranscodeDumb'=> '3.23',
7394             'Pod::Simple::TranscodeSmart'=> '3.23',
7395             'Pod::Simple::XHTML' => '3.23',
7396             'Pod::Simple::XMLOutStream'=> '3.23',
7397             'Socket' => '2.004',
7398             'Storable' => '2.38',
7399             'Sys::Syslog' => '0.31',
7400             'Term::ReadLine' => '1.10',
7401             'Text::Tabs' => '2012.0818',
7402             'Text::Wrap' => '2012.0818',
7403             'Time::Local' => '1.2300',
7404             'Unicode::UCD' => '0.45',
7405             'Win32' => '0.45',
7406             'Win32CORE' => '0.03',
7407             'XS::APItest' => '0.42',
7408             'inc::latest' => '0.4003',
7409             'perlfaq' => '5.0150041',
7410             're' => '0.22',
7411             },
7412             removed => {
7413             }
7414             },
7415             5.017004 => {
7416             delta_from => 5.017003,
7417             changed => {
7418             'Archive::Tar' => '1.90',
7419             'Archive::Tar::Constant'=> '1.90',
7420             'Archive::Tar::File' => '1.90',
7421             'B' => '1.38',
7422             'B::Concise' => '0.93',
7423             'B::Deparse' => '1.17',
7424             'B::Xref' => '1.04',
7425             'CPANPLUS' => '0.9131',
7426             'CPANPLUS::Internals' => '0.9131',
7427             'CPANPLUS::Shell::Default'=> '0.9131',
7428             'DB_File' => '1.827',
7429             'Devel::Peek' => '1.10',
7430             'DynaLoader' => '1.16',
7431             'Errno' => '1.16',
7432             'ExtUtils::ParseXS' => '3.18',
7433             'ExtUtils::ParseXS::Constants'=> '3.18',
7434             'ExtUtils::ParseXS::CountLines'=> '3.18',
7435             'ExtUtils::ParseXS::Utilities'=> '3.18',
7436             'File::Copy' => '2.24',
7437             'File::Find' => '1.22',
7438             'IPC::Open3' => '1.13',
7439             'Locale::Codes' => '3.23',
7440             'Locale::Codes::Constants'=> '3.23',
7441             'Locale::Codes::Country'=> '3.23',
7442             'Locale::Codes::Country_Codes'=> '3.23',
7443             'Locale::Codes::Country_Retired'=> '3.23',
7444             'Locale::Codes::Currency'=> '3.23',
7445             'Locale::Codes::Currency_Codes'=> '3.23',
7446             'Locale::Codes::Currency_Retired'=> '3.23',
7447             'Locale::Codes::LangExt'=> '3.23',
7448             'Locale::Codes::LangExt_Codes'=> '3.23',
7449             'Locale::Codes::LangExt_Retired'=> '3.23',
7450             'Locale::Codes::LangFam'=> '3.23',
7451             'Locale::Codes::LangFam_Codes'=> '3.23',
7452             'Locale::Codes::LangFam_Retired'=> '3.23',
7453             'Locale::Codes::LangVar'=> '3.23',
7454             'Locale::Codes::LangVar_Codes'=> '3.23',
7455             'Locale::Codes::LangVar_Retired'=> '3.23',
7456             'Locale::Codes::Language'=> '3.23',
7457             'Locale::Codes::Language_Codes'=> '3.23',
7458             'Locale::Codes::Language_Retired'=> '3.23',
7459             'Locale::Codes::Script' => '3.23',
7460             'Locale::Codes::Script_Codes'=> '3.23',
7461             'Locale::Codes::Script_Retired'=> '3.23',
7462             'Locale::Country' => '3.23',
7463             'Locale::Currency' => '3.23',
7464             'Locale::Language' => '3.23',
7465             'Locale::Script' => '3.23',
7466             'Math::BigFloat::Trace' => '0.30',
7467             'Math::BigInt::Trace' => '0.30',
7468             'Module::CoreList' => '2.73',
7469             'Module::CoreList::TieHashDelta'=> '2.73',
7470             'Opcode' => '1.24',
7471             'Socket' => '2.006',
7472             'Storable' => '2.39',
7473             'Sys::Syslog' => '0.32',
7474             'Unicode::UCD' => '0.46',
7475             'XS::APItest' => '0.43',
7476             'bignum' => '0.30',
7477             'bigrat' => '0.30',
7478             'constant' => '1.24',
7479             'feature' => '1.30',
7480             'threads::shared' => '1.41',
7481             'version' => '0.9901',
7482             'warnings' => '1.14',
7483             },
7484             removed => {
7485             }
7486             },
7487             5.017005 => {
7488             delta_from => 5.017004,
7489             changed => {
7490             'AutoLoader' => '5.73',
7491             'B' => '1.39',
7492             'B::Deparse' => '1.18',
7493             'CPANPLUS' => '0.9133',
7494             'CPANPLUS::Internals' => '0.9133',
7495             'CPANPLUS::Shell::Default'=> '0.9133',
7496             'Carp' => '1.27',
7497             'Carp::Heavy' => '1.27',
7498             'Data::Dumper' => '2.136',
7499             'Digest::SHA' => '5.72',
7500             'ExtUtils::CBuilder' => '0.280209',
7501             'ExtUtils::CBuilder::Base'=> '0.280209',
7502             'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7503             'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7504             'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7505             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7506             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7507             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7508             'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7509             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7510             'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7511             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7512             'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7513             'File::Copy' => '2.25',
7514             'File::Glob' => '1.18',
7515             'HTTP::Tiny' => '0.024',
7516             'Module::CoreList' => '2.75',
7517             'Module::CoreList::TieHashDelta'=> '2.75',
7518             'PerlIO::encoding' => '0.16',
7519             'Unicode::Collate' => '0.90',
7520             'Unicode::Collate::Locale'=> '0.90',
7521             'Unicode::Normalize' => '1.15',
7522             'Win32CORE' => '0.04',
7523             'XS::APItest' => '0.44',
7524             'attributes' => '0.21',
7525             'bigint' => '0.31',
7526             'bignum' => '0.31',
7527             'bigrat' => '0.31',
7528             'feature' => '1.31',
7529             'threads::shared' => '1.42',
7530             'warnings' => '1.15',
7531             },
7532             removed => {
7533             }
7534             },
7535             5.017006 => {
7536             delta_from => 5.017005,
7537             changed => {
7538             'B' => '1.40',
7539             'B::Concise' => '0.94',
7540             'B::Deparse' => '1.19',
7541             'B::Xref' => '1.05',
7542             'CGI' => '3.63',
7543             'CGI::Util' => '3.62',
7544             'CPAN' => '1.99_51',
7545             'CPANPLUS::Dist::Build' => '0.64',
7546             'CPANPLUS::Dist::Build::Constants'=> '0.64',
7547             'Carp' => '1.28',
7548             'Carp::Heavy' => '1.28',
7549             'Compress::Raw::Bzip2' => '2.058',
7550             'Compress::Raw::Zlib' => '2.058',
7551             'Compress::Zlib' => '2.058',
7552             'Data::Dumper' => '2.137',
7553             'Digest::SHA' => '5.73',
7554             'DynaLoader' => '1.17',
7555             'Env' => '1.04',
7556             'Errno' => '1.17',
7557             'ExtUtils::Manifest' => '1.62',
7558             'ExtUtils::Typemaps' => '3.18',
7559             'ExtUtils::Typemaps::Cmd'=> '3.18',
7560             'ExtUtils::Typemaps::InputMap'=> '3.18',
7561             'ExtUtils::Typemaps::OutputMap'=> '3.18',
7562             'ExtUtils::Typemaps::Type'=> '3.18',
7563             'Fatal' => '2.13',
7564             'File::Find' => '1.23',
7565             'Hash::Util' => '0.13',
7566             'IO::Compress::Adapter::Bzip2'=> '2.058',
7567             'IO::Compress::Adapter::Deflate'=> '2.058',
7568             'IO::Compress::Adapter::Identity'=> '2.058',
7569             'IO::Compress::Base' => '2.058',
7570             'IO::Compress::Base::Common'=> '2.058',
7571             'IO::Compress::Bzip2' => '2.058',
7572             'IO::Compress::Deflate' => '2.058',
7573             'IO::Compress::Gzip' => '2.058',
7574             'IO::Compress::Gzip::Constants'=> '2.058',
7575             'IO::Compress::RawDeflate'=> '2.058',
7576             'IO::Compress::Zip' => '2.058',
7577             'IO::Compress::Zip::Constants'=> '2.058',
7578             'IO::Compress::Zlib::Constants'=> '2.058',
7579             'IO::Compress::Zlib::Extra'=> '2.058',
7580             'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7581             'IO::Uncompress::Adapter::Identity'=> '2.058',
7582             'IO::Uncompress::Adapter::Inflate'=> '2.058',
7583             'IO::Uncompress::AnyInflate'=> '2.058',
7584             'IO::Uncompress::AnyUncompress'=> '2.058',
7585             'IO::Uncompress::Base' => '2.058',
7586             'IO::Uncompress::Bunzip2'=> '2.058',
7587             'IO::Uncompress::Gunzip'=> '2.058',
7588             'IO::Uncompress::Inflate'=> '2.058',
7589             'IO::Uncompress::RawInflate'=> '2.058',
7590             'IO::Uncompress::Unzip' => '2.058',
7591             'Module::CoreList' => '2.78',
7592             'Module::CoreList::TieHashDelta'=> '2.77',
7593             'Module::Pluggable' => '4.5',
7594             'Module::Pluggable::Object'=> '4.5',
7595             'Opcode' => '1.25',
7596             'Sys::Hostname' => '1.17',
7597             'Term::UI' => '0.32',
7598             'Thread::Queue' => '3.01',
7599             'Tie::Hash::NamedCapture'=> '0.09',
7600             'Unicode::Collate' => '0.93',
7601             'Unicode::Collate::CJK::Korean'=> '0.93',
7602             'Unicode::Collate::Locale'=> '0.93',
7603             'Unicode::Normalize' => '1.16',
7604             'Unicode::UCD' => '0.47',
7605             'XS::APItest' => '0.46',
7606             '_charnames' => '1.33',
7607             'autodie' => '2.13',
7608             'autodie::exception' => '2.13',
7609             'autodie::exception::system'=> '2.13',
7610             'autodie::hints' => '2.13',
7611             'charnames' => '1.33',
7612             're' => '0.23',
7613             },
7614             removed => {
7615             }
7616             },
7617             5.017007 => {
7618             delta_from => 5.017006,
7619             changed => {
7620             'B' => '1.41',
7621             'CPANPLUS::Dist::Build' => '0.68',
7622             'CPANPLUS::Dist::Build::Constants'=> '0.68',
7623             'Compress::Raw::Bzip2' => '2.059',
7624             'Compress::Raw::Zlib' => '2.059',
7625             'Compress::Zlib' => '2.059',
7626             'Cwd' => '3.39_03',
7627             'Data::Dumper' => '2.139',
7628             'Devel::Peek' => '1.11',
7629             'Digest::SHA' => '5.80',
7630             'DynaLoader' => '1.18',
7631             'English' => '1.06',
7632             'Errno' => '1.18',
7633             'ExtUtils::Command::MM' => '6.64',
7634             'ExtUtils::Liblist' => '6.64',
7635             'ExtUtils::Liblist::Kid'=> '6.64',
7636             'ExtUtils::MM' => '6.64',
7637             'ExtUtils::MM_AIX' => '6.64',
7638             'ExtUtils::MM_Any' => '6.64',
7639             'ExtUtils::MM_BeOS' => '6.64',
7640             'ExtUtils::MM_Cygwin' => '6.64',
7641             'ExtUtils::MM_DOS' => '6.64',
7642             'ExtUtils::MM_Darwin' => '6.64',
7643             'ExtUtils::MM_MacOS' => '6.64',
7644             'ExtUtils::MM_NW5' => '6.64',
7645             'ExtUtils::MM_OS2' => '6.64',
7646             'ExtUtils::MM_QNX' => '6.64',
7647             'ExtUtils::MM_UWIN' => '6.64',
7648             'ExtUtils::MM_Unix' => '6.64',
7649             'ExtUtils::MM_VMS' => '6.64',
7650             'ExtUtils::MM_VOS' => '6.64',
7651             'ExtUtils::MM_Win32' => '6.64',
7652             'ExtUtils::MM_Win95' => '6.64',
7653             'ExtUtils::MY' => '6.64',
7654             'ExtUtils::MakeMaker' => '6.64',
7655             'ExtUtils::MakeMaker::Config'=> '6.64',
7656             'ExtUtils::Mkbootstrap' => '6.64',
7657             'ExtUtils::Mksymlists' => '6.64',
7658             'ExtUtils::testlib' => '6.64',
7659             'File::DosGlob' => '1.09',
7660             'File::Glob' => '1.19',
7661             'GDBM_File' => '1.15',
7662             'IO::Compress::Adapter::Bzip2'=> '2.059',
7663             'IO::Compress::Adapter::Deflate'=> '2.059',
7664             'IO::Compress::Adapter::Identity'=> '2.059',
7665             'IO::Compress::Base' => '2.059',
7666             'IO::Compress::Base::Common'=> '2.059',
7667             'IO::Compress::Bzip2' => '2.059',
7668             'IO::Compress::Deflate' => '2.059',
7669             'IO::Compress::Gzip' => '2.059',
7670             'IO::Compress::Gzip::Constants'=> '2.059',
7671             'IO::Compress::RawDeflate'=> '2.059',
7672             'IO::Compress::Zip' => '2.059',
7673             'IO::Compress::Zip::Constants'=> '2.059',
7674             'IO::Compress::Zlib::Constants'=> '2.059',
7675             'IO::Compress::Zlib::Extra'=> '2.059',
7676             'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7677             'IO::Uncompress::Adapter::Identity'=> '2.059',
7678             'IO::Uncompress::Adapter::Inflate'=> '2.059',
7679             'IO::Uncompress::AnyInflate'=> '2.059',
7680             'IO::Uncompress::AnyUncompress'=> '2.059',
7681             'IO::Uncompress::Base' => '2.059',
7682             'IO::Uncompress::Bunzip2'=> '2.059',
7683             'IO::Uncompress::Gunzip'=> '2.059',
7684             'IO::Uncompress::Inflate'=> '2.059',
7685             'IO::Uncompress::RawInflate'=> '2.059',
7686             'IO::Uncompress::Unzip' => '2.059',
7687             'List::Util' => '1.26',
7688             'List::Util::XS' => '1.26',
7689             'Locale::Codes' => '3.24',
7690             'Locale::Codes::Constants'=> '3.24',
7691             'Locale::Codes::Country'=> '3.24',
7692             'Locale::Codes::Country_Codes'=> '3.24',
7693             'Locale::Codes::Country_Retired'=> '3.24',
7694             'Locale::Codes::Currency'=> '3.24',
7695             'Locale::Codes::Currency_Codes'=> '3.24',
7696             'Locale::Codes::Currency_Retired'=> '3.24',
7697             'Locale::Codes::LangExt'=> '3.24',
7698             'Locale::Codes::LangExt_Codes'=> '3.24',
7699             'Locale::Codes::LangExt_Retired'=> '3.24',
7700             'Locale::Codes::LangFam'=> '3.24',
7701             'Locale::Codes::LangFam_Codes'=> '3.24',
7702             'Locale::Codes::LangFam_Retired'=> '3.24',
7703             'Locale::Codes::LangVar'=> '3.24',
7704             'Locale::Codes::LangVar_Codes'=> '3.24',
7705             'Locale::Codes::LangVar_Retired'=> '3.24',
7706             'Locale::Codes::Language'=> '3.24',
7707             'Locale::Codes::Language_Codes'=> '3.24',
7708             'Locale::Codes::Language_Retired'=> '3.24',
7709             'Locale::Codes::Script' => '3.24',
7710             'Locale::Codes::Script_Codes'=> '3.24',
7711             'Locale::Codes::Script_Retired'=> '3.24',
7712             'Locale::Country' => '3.24',
7713             'Locale::Currency' => '3.24',
7714             'Locale::Language' => '3.24',
7715             'Locale::Maketext' => '1.23',
7716             'Locale::Script' => '3.24',
7717             'Module::CoreList' => '2.79',
7718             'Module::CoreList::TieHashDelta'=> '2.79',
7719             'POSIX' => '1.32',
7720             'Scalar::Util' => '1.26',
7721             'Socket' => '2.006_001',
7722             'Storable' => '2.40',
7723             'Term::ReadLine' => '1.11',
7724             'Unicode::Collate' => '0.96',
7725             'Unicode::Collate::CJK::Stroke'=> '0.94',
7726             'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7727             'Unicode::Collate::Locale'=> '0.96',
7728             'XS::APItest' => '0.48',
7729             'XS::Typemap' => '0.09',
7730             '_charnames' => '1.34',
7731             'charnames' => '1.34',
7732             'feature' => '1.32',
7733             'mro' => '1.10',
7734             'sigtrap' => '1.07',
7735             'sort' => '2.02',
7736             },
7737             removed => {
7738             }
7739             },
7740             5.017008 => {
7741             delta_from => 5.017007,
7742             changed => {
7743             'Archive::Extract' => '0.62',
7744             'B' => '1.42',
7745             'B::Concise' => '0.95',
7746             'Compress::Raw::Bzip2' => '2.060',
7747             'Compress::Raw::Zlib' => '2.060',
7748             'Compress::Zlib' => '2.060',
7749             'Cwd' => '3.40',
7750             'Data::Dumper' => '2.141',
7751             'Digest::SHA' => '5.81',
7752             'ExtUtils::Install' => '1.59',
7753             'File::Fetch' => '0.38',
7754             'File::Path' => '2.09',
7755             'File::Spec' => '3.40',
7756             'File::Spec::Cygwin' => '3.40',
7757             'File::Spec::Epoc' => '3.40',
7758             'File::Spec::Functions' => '3.40',
7759             'File::Spec::Mac' => '3.40',
7760             'File::Spec::OS2' => '3.40',
7761             'File::Spec::Unix' => '3.40',
7762             'File::Spec::VMS' => '3.40',
7763             'File::Spec::Win32' => '3.40',
7764             'HTTP::Tiny' => '0.025',
7765             'Hash::Util' => '0.14',
7766             'I18N::LangTags' => '0.39',
7767             'I18N::LangTags::List' => '0.39',
7768             'I18N::Langinfo' => '0.09',
7769             'IO' => '1.26',
7770             'IO::Compress::Adapter::Bzip2'=> '2.060',
7771             'IO::Compress::Adapter::Deflate'=> '2.060',
7772             'IO::Compress::Adapter::Identity'=> '2.060',
7773             'IO::Compress::Base' => '2.060',
7774             'IO::Compress::Base::Common'=> '2.060',
7775             'IO::Compress::Bzip2' => '2.060',
7776             'IO::Compress::Deflate' => '2.060',
7777             'IO::Compress::Gzip' => '2.060',
7778             'IO::Compress::Gzip::Constants'=> '2.060',
7779             'IO::Compress::RawDeflate'=> '2.060',
7780             'IO::Compress::Zip' => '2.060',
7781             'IO::Compress::Zip::Constants'=> '2.060',
7782             'IO::Compress::Zlib::Constants'=> '2.060',
7783             'IO::Compress::Zlib::Extra'=> '2.060',
7784             'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7785             'IO::Uncompress::Adapter::Identity'=> '2.060',
7786             'IO::Uncompress::Adapter::Inflate'=> '2.060',
7787             'IO::Uncompress::AnyInflate'=> '2.060',
7788             'IO::Uncompress::AnyUncompress'=> '2.060',
7789             'IO::Uncompress::Base' => '2.060',
7790             'IO::Uncompress::Bunzip2'=> '2.060',
7791             'IO::Uncompress::Gunzip'=> '2.060',
7792             'IO::Uncompress::Inflate'=> '2.060',
7793             'IO::Uncompress::RawInflate'=> '2.060',
7794             'IO::Uncompress::Unzip' => '2.060',
7795             'List::Util' => '1.27',
7796             'List::Util::XS' => '1.27',
7797             'Module::CoreList' => '2.80',
7798             'Module::CoreList::TieHashDelta'=> '2.80',
7799             'Pod::Html' => '1.17',
7800             'Pod::LaTeX' => '0.61',
7801             'Pod::Man' => '2.27',
7802             'Pod::Text' => '3.17',
7803             'Pod::Text::Color' => '2.07',
7804             'Pod::Text::Overstrike' => '2.05',
7805             'Pod::Text::Termcap' => '2.07',
7806             'Safe' => '2.34',
7807             'Scalar::Util' => '1.27',
7808             'Socket' => '2.009',
7809             'Term::ANSIColor' => '4.02',
7810             'Test' => '1.26',
7811             'Unicode::Collate' => '0.97',
7812             'XS::APItest' => '0.51',
7813             'XS::Typemap' => '0.10',
7814             '_charnames' => '1.35',
7815             'charnames' => '1.35',
7816             'constant' => '1.25',
7817             'diagnostics' => '1.31',
7818             'threads::shared' => '1.43',
7819             'warnings' => '1.16',
7820             },
7821             removed => {
7822             }
7823             },
7824             5.017009 => {
7825             delta_from => 5.017008,
7826             changed => {
7827             'App::Cpan' => '1.60_02',
7828             'App::Prove' => '3.26',
7829             'App::Prove::State' => '3.26',
7830             'App::Prove::State::Result'=> '3.26',
7831             'App::Prove::State::Result::Test'=> '3.26',
7832             'Archive::Extract' => '0.68',
7833             'Attribute::Handlers' => '0.94',
7834             'B::Lint' => '1.17',
7835             'B::Lint::Debug' => '1.17',
7836             'Benchmark' => '1.14',
7837             'CPAN' => '2.00',
7838             'CPAN::Distribution' => '2.00',
7839             'CPAN::FirstTime' => '5.5304',
7840             'CPAN::Nox' => '5.5001',
7841             'CPANPLUS' => '0.9135',
7842             'CPANPLUS::Backend' => '0.9135',
7843             'CPANPLUS::Backend::RV' => '0.9135',
7844             'CPANPLUS::Config' => '0.9135',
7845             'CPANPLUS::Config::HomeEnv'=> '0.9135',
7846             'CPANPLUS::Configure' => '0.9135',
7847             'CPANPLUS::Configure::Setup'=> '0.9135',
7848             'CPANPLUS::Dist' => '0.9135',
7849             'CPANPLUS::Dist::Autobundle'=> '0.9135',
7850             'CPANPLUS::Dist::Base' => '0.9135',
7851             'CPANPLUS::Dist::Build' => '0.70',
7852             'CPANPLUS::Dist::Build::Constants'=> '0.70',
7853             'CPANPLUS::Dist::MM' => '0.9135',
7854             'CPANPLUS::Dist::Sample'=> '0.9135',
7855             'CPANPLUS::Error' => '0.9135',
7856             'CPANPLUS::Internals' => '0.9135',
7857             'CPANPLUS::Internals::Constants'=> '0.9135',
7858             'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7859             'CPANPLUS::Internals::Extract'=> '0.9135',
7860             'CPANPLUS::Internals::Fetch'=> '0.9135',
7861             'CPANPLUS::Internals::Report'=> '0.9135',
7862             'CPANPLUS::Internals::Search'=> '0.9135',
7863             'CPANPLUS::Internals::Source'=> '0.9135',
7864             'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7865             'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7866             'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7867             'CPANPLUS::Internals::Utils'=> '0.9135',
7868             'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7869             'CPANPLUS::Module' => '0.9135',
7870             'CPANPLUS::Module::Author'=> '0.9135',
7871             'CPANPLUS::Module::Author::Fake'=> '0.9135',
7872             'CPANPLUS::Module::Checksums'=> '0.9135',
7873             'CPANPLUS::Module::Fake'=> '0.9135',
7874             'CPANPLUS::Module::Signature'=> '0.9135',
7875             'CPANPLUS::Selfupdate' => '0.9135',
7876             'CPANPLUS::Shell' => '0.9135',
7877             'CPANPLUS::Shell::Classic'=> '0.9135',
7878             'CPANPLUS::Shell::Default'=> '0.9135',
7879             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7880             'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7881             'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
7882             'Config' => '5.017009',
7883             'Config::Perl::V' => '0.17',
7884             'DBM_Filter' => '0.05',
7885             'Data::Dumper' => '2.142',
7886             'Digest::SHA' => '5.82',
7887             'Encode' => '2.48',
7888             'ExtUtils::Installed' => '1.999003',
7889             'ExtUtils::Manifest' => '1.63',
7890             'ExtUtils::ParseXS::Utilities'=> '3.19',
7891             'ExtUtils::Typemaps' => '3.19',
7892             'File::CheckTree' => '4.42',
7893             'File::DosGlob' => '1.10',
7894             'File::Temp' => '0.22_90',
7895             'Filter::Simple' => '0.89',
7896             'IO' => '1.27',
7897             'Log::Message' => '0.06',
7898             'Log::Message::Config' => '0.06',
7899             'Log::Message::Handlers'=> '0.06',
7900             'Log::Message::Item' => '0.06',
7901             'Log::Message::Simple' => '0.10',
7902             'Math::BigInt' => '1.999',
7903             'Module::CoreList' => '2.82',
7904             'Module::CoreList::TieHashDelta'=> '2.82',
7905             'Module::Load' => '0.24',
7906             'Module::Pluggable' => '4.6',
7907             'Module::Pluggable::Object'=> '4.6',
7908             'OS2::DLL' => '1.05',
7909             'OS2::ExtAttr' => '0.03',
7910             'OS2::Process' => '1.08',
7911             'Object::Accessor' => '0.46',
7912             'PerlIO::scalar' => '0.16',
7913             'Pod::Checker' => '1.60',
7914             'Pod::Find' => '1.60',
7915             'Pod::Html' => '1.18',
7916             'Pod::InputObjects' => '1.60',
7917             'Pod::ParseUtils' => '1.60',
7918             'Pod::Parser' => '1.60',
7919             'Pod::Perldoc' => '3.19',
7920             'Pod::Perldoc::BaseTo' => '3.19',
7921             'Pod::Perldoc::GetOptsOO'=> '3.19',
7922             'Pod::Perldoc::ToANSI' => '3.19',
7923             'Pod::Perldoc::ToChecker'=> '3.19',
7924             'Pod::Perldoc::ToMan' => '3.19',
7925             'Pod::Perldoc::ToNroff' => '3.19',
7926             'Pod::Perldoc::ToPod' => '3.19',
7927             'Pod::Perldoc::ToRtf' => '3.19',
7928             'Pod::Perldoc::ToTerm' => '3.19',
7929             'Pod::Perldoc::ToText' => '3.19',
7930             'Pod::Perldoc::ToTk' => '3.19',
7931             'Pod::Perldoc::ToXml' => '3.19',
7932             'Pod::PlainText' => '2.06',
7933             'Pod::Select' => '1.60',
7934             'Pod::Usage' => '1.61',
7935             'SelfLoader' => '1.21',
7936             'TAP::Base' => '3.26',
7937             'TAP::Formatter::Base' => '3.26',
7938             'TAP::Formatter::Color' => '3.26',
7939             'TAP::Formatter::Console'=> '3.26',
7940             'TAP::Formatter::Console::ParallelSession'=> '3.26',
7941             'TAP::Formatter::Console::Session'=> '3.26',
7942             'TAP::Formatter::File' => '3.26',
7943             'TAP::Formatter::File::Session'=> '3.26',
7944             'TAP::Formatter::Session'=> '3.26',
7945             'TAP::Harness' => '3.26',
7946             'TAP::Object' => '3.26',
7947             'TAP::Parser' => '3.26',
7948             'TAP::Parser::Aggregator'=> '3.26',
7949             'TAP::Parser::Grammar' => '3.26',
7950             'TAP::Parser::Iterator' => '3.26',
7951             'TAP::Parser::Iterator::Array'=> '3.26',
7952             'TAP::Parser::Iterator::Process'=> '3.26',
7953             'TAP::Parser::Iterator::Stream'=> '3.26',
7954             'TAP::Parser::IteratorFactory'=> '3.26',
7955             'TAP::Parser::Multiplexer'=> '3.26',
7956             'TAP::Parser::Result' => '3.26',
7957             'TAP::Parser::Result::Bailout'=> '3.26',
7958             'TAP::Parser::Result::Comment'=> '3.26',
7959             'TAP::Parser::Result::Plan'=> '3.26',
7960             'TAP::Parser::Result::Pragma'=> '3.26',
7961             'TAP::Parser::Result::Test'=> '3.26',
7962             'TAP::Parser::Result::Unknown'=> '3.26',
7963             'TAP::Parser::Result::Version'=> '3.26',
7964             'TAP::Parser::Result::YAML'=> '3.26',
7965             'TAP::Parser::ResultFactory'=> '3.26',
7966             'TAP::Parser::Scheduler'=> '3.26',
7967             'TAP::Parser::Scheduler::Job'=> '3.26',
7968             'TAP::Parser::Scheduler::Spinner'=> '3.26',
7969             'TAP::Parser::Source' => '3.26',
7970             'TAP::Parser::SourceHandler'=> '3.26',
7971             'TAP::Parser::SourceHandler::Executable'=> '3.26',
7972             'TAP::Parser::SourceHandler::File'=> '3.26',
7973             'TAP::Parser::SourceHandler::Handle'=> '3.26',
7974             'TAP::Parser::SourceHandler::Perl'=> '3.26',
7975             'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
7976             'TAP::Parser::Utils' => '3.26',
7977             'TAP::Parser::YAMLish::Reader'=> '3.26',
7978             'TAP::Parser::YAMLish::Writer'=> '3.26',
7979             'Term::UI' => '0.34',
7980             'Test::Harness' => '3.26',
7981             'Text::Soundex' => '3.04',
7982             'Thread::Queue' => '3.02',
7983             'Unicode::UCD' => '0.50',
7984             'Win32' => '0.46',
7985             'Win32API::File' => '0.1201',
7986             '_charnames' => '1.36',
7987             'arybase' => '0.06',
7988             'bigint' => '0.32',
7989             'bignum' => '0.32',
7990             'charnames' => '1.36',
7991             'filetest' => '1.03',
7992             'locale' => '1.02',
7993             'overload' => '1.21',
7994             'warnings' => '1.17',
7995             },
7996             removed => {
7997             }
7998             },
7999             5.017010 => {
8000             delta_from => 5.017009,
8001             changed => {
8002             'Benchmark' => '1.15',
8003             'Config' => '5.017009',
8004             'Data::Dumper' => '2.145',
8005             'Digest::SHA' => '5.84',
8006             'Encode' => '2.49',
8007             'ExtUtils::Command::MM' => '6.65_01',
8008             'ExtUtils::Liblist' => '6.65_01',
8009             'ExtUtils::Liblist::Kid'=> '6.65_01',
8010             'ExtUtils::MM' => '6.65_01',
8011             'ExtUtils::MM_AIX' => '6.65_01',
8012             'ExtUtils::MM_Any' => '6.65_01',
8013             'ExtUtils::MM_BeOS' => '6.65_01',
8014             'ExtUtils::MM_Cygwin' => '6.65_01',
8015             'ExtUtils::MM_DOS' => '6.65_01',
8016             'ExtUtils::MM_Darwin' => '6.65_01',
8017             'ExtUtils::MM_MacOS' => '6.65_01',
8018             'ExtUtils::MM_NW5' => '6.65_01',
8019             'ExtUtils::MM_OS2' => '6.65_01',
8020             'ExtUtils::MM_QNX' => '6.65_01',
8021             'ExtUtils::MM_UWIN' => '6.65_01',
8022             'ExtUtils::MM_Unix' => '6.65_01',
8023             'ExtUtils::MM_VMS' => '6.65_01',
8024             'ExtUtils::MM_VOS' => '6.65_01',
8025             'ExtUtils::MM_Win32' => '6.65_01',
8026             'ExtUtils::MM_Win95' => '6.65_01',
8027             'ExtUtils::MY' => '6.65_01',
8028             'ExtUtils::MakeMaker' => '6.65_01',
8029             'ExtUtils::MakeMaker::Config'=> '6.65_01',
8030             'ExtUtils::Mkbootstrap' => '6.65_01',
8031             'ExtUtils::Mksymlists' => '6.65_01',
8032             'ExtUtils::testlib' => '6.65_01',
8033             'File::Copy' => '2.26',
8034             'File::Temp' => '0.23',
8035             'Getopt::Long' => '2.39',
8036             'Hash::Util' => '0.15',
8037             'I18N::Langinfo' => '0.10',
8038             'IPC::Cmd' => '0.80',
8039             'JSON::PP' => '2.27202',
8040             'Locale::Codes' => '3.25',
8041             'Locale::Codes::Constants'=> '3.25',
8042             'Locale::Codes::Country'=> '3.25',
8043             'Locale::Codes::Country_Codes'=> '3.25',
8044             'Locale::Codes::Country_Retired'=> '3.25',
8045             'Locale::Codes::Currency'=> '3.25',
8046             'Locale::Codes::Currency_Codes'=> '3.25',
8047             'Locale::Codes::Currency_Retired'=> '3.25',
8048             'Locale::Codes::LangExt'=> '3.25',
8049             'Locale::Codes::LangExt_Codes'=> '3.25',
8050             'Locale::Codes::LangExt_Retired'=> '3.25',
8051             'Locale::Codes::LangFam'=> '3.25',
8052             'Locale::Codes::LangFam_Codes'=> '3.25',
8053             'Locale::Codes::LangFam_Retired'=> '3.25',
8054             'Locale::Codes::LangVar'=> '3.25',
8055             'Locale::Codes::LangVar_Codes'=> '3.25',
8056             'Locale::Codes::LangVar_Retired'=> '3.25',
8057             'Locale::Codes::Language'=> '3.25',
8058             'Locale::Codes::Language_Codes'=> '3.25',
8059             'Locale::Codes::Language_Retired'=> '3.25',
8060             'Locale::Codes::Script' => '3.25',
8061             'Locale::Codes::Script_Codes'=> '3.25',
8062             'Locale::Codes::Script_Retired'=> '3.25',
8063             'Locale::Country' => '3.25',
8064             'Locale::Currency' => '3.25',
8065             'Locale::Language' => '3.25',
8066             'Locale::Script' => '3.25',
8067             'Math::BigFloat' => '1.998',
8068             'Math::BigFloat::Trace' => '0.32',
8069             'Math::BigInt' => '1.9991',
8070             'Math::BigInt::CalcEmu' => '1.998',
8071             'Math::BigInt::Trace' => '0.32',
8072             'Math::BigRat' => '0.2604',
8073             'Module::CoreList' => '2.84',
8074             'Module::CoreList::TieHashDelta'=> '2.84',
8075             'Module::Pluggable' => '4.7',
8076             'Net::Ping' => '2.41',
8077             'Perl::OSType' => '1.003',
8078             'Pod::Simple' => '3.26',
8079             'Pod::Simple::BlackBox' => '3.26',
8080             'Pod::Simple::Checker' => '3.26',
8081             'Pod::Simple::Debug' => '3.26',
8082             'Pod::Simple::DumpAsText'=> '3.26',
8083             'Pod::Simple::DumpAsXML'=> '3.26',
8084             'Pod::Simple::HTML' => '3.26',
8085             'Pod::Simple::HTMLBatch'=> '3.26',
8086             'Pod::Simple::LinkSection'=> '3.26',
8087             'Pod::Simple::Methody' => '3.26',
8088             'Pod::Simple::Progress' => '3.26',
8089             'Pod::Simple::PullParser'=> '3.26',
8090             'Pod::Simple::PullParserEndToken'=> '3.26',
8091             'Pod::Simple::PullParserStartToken'=> '3.26',
8092             'Pod::Simple::PullParserTextToken'=> '3.26',
8093             'Pod::Simple::PullParserToken'=> '3.26',
8094             'Pod::Simple::RTF' => '3.26',
8095             'Pod::Simple::Search' => '3.26',
8096             'Pod::Simple::SimpleTree'=> '3.26',
8097             'Pod::Simple::Text' => '3.26',
8098             'Pod::Simple::TextContent'=> '3.26',
8099             'Pod::Simple::TiedOutFH'=> '3.26',
8100             'Pod::Simple::Transcode'=> '3.26',
8101             'Pod::Simple::TranscodeDumb'=> '3.26',
8102             'Pod::Simple::TranscodeSmart'=> '3.26',
8103             'Pod::Simple::XHTML' => '3.26',
8104             'Pod::Simple::XMLOutStream'=> '3.26',
8105             'Safe' => '2.35',
8106             'Term::ReadLine' => '1.12',
8107             'Text::ParseWords' => '3.28',
8108             'Tie::File' => '0.99',
8109             'Unicode::UCD' => '0.51',
8110             'Win32' => '0.47',
8111             'bigint' => '0.33',
8112             'bignum' => '0.33',
8113             'bigrat' => '0.33',
8114             'constant' => '1.27',
8115             'perlfaq' => '5.0150042',
8116             'version' => '0.9902',
8117             },
8118             removed => {
8119             }
8120             },
8121             5.017011 => {
8122             delta_from => 5.017010,
8123             changed => {
8124             'App::Cpan' => '1.61',
8125             'B::Deparse' => '1.20',
8126             'Config' => '5.017009',
8127             'Exporter' => '5.68',
8128             'Exporter::Heavy' => '5.68',
8129             'ExtUtils::CBuilder' => '0.280210',
8130             'ExtUtils::Command::MM' => '6.66',
8131             'ExtUtils::Liblist' => '6.66',
8132             'ExtUtils::Liblist::Kid'=> '6.66',
8133             'ExtUtils::MM' => '6.66',
8134             'ExtUtils::MM_AIX' => '6.66',
8135             'ExtUtils::MM_Any' => '6.66',
8136             'ExtUtils::MM_BeOS' => '6.66',
8137             'ExtUtils::MM_Cygwin' => '6.66',
8138             'ExtUtils::MM_DOS' => '6.66',
8139             'ExtUtils::MM_Darwin' => '6.66',
8140             'ExtUtils::MM_MacOS' => '6.66',
8141             'ExtUtils::MM_NW5' => '6.66',
8142             'ExtUtils::MM_OS2' => '6.66',
8143             'ExtUtils::MM_QNX' => '6.66',
8144             'ExtUtils::MM_UWIN' => '6.66',
8145             'ExtUtils::MM_Unix' => '6.66',
8146             'ExtUtils::MM_VMS' => '6.66',
8147             'ExtUtils::MM_VOS' => '6.66',
8148             'ExtUtils::MM_Win32' => '6.66',
8149             'ExtUtils::MM_Win95' => '6.66',
8150             'ExtUtils::MY' => '6.66',
8151             'ExtUtils::MakeMaker' => '6.66',
8152             'ExtUtils::MakeMaker::Config'=> '6.66',
8153             'ExtUtils::Mkbootstrap' => '6.66',
8154             'ExtUtils::Mksymlists' => '6.66',
8155             'ExtUtils::testlib' => '6.66',
8156             'File::Glob' => '1.20',
8157             'IO' => '1.28',
8158             'Module::CoreList' => '2.87',
8159             'Module::CoreList::TieHashDelta'=> '2.87',
8160             'Storable' => '2.41',
8161             'bigint' => '0.34',
8162             'mro' => '1.11',
8163             'overload' => '1.22',
8164             'warnings' => '1.18',
8165             },
8166             removed => {
8167             }
8168             },
8169             5.018000 => {
8170             delta_from => 5.017011,
8171             changed => {
8172             'Carp' => '1.29',
8173             'Carp::Heavy' => '1.29',
8174             'Config' => '5.018000',
8175             'Hash::Util' => '0.16',
8176             'IO::Handle' => '1.34',
8177             'IO::Socket' => '1.36',
8178             'Module::CoreList' => '2.89',
8179             'Module::CoreList::TieHashDelta'=> '2.89',
8180             'Pod::Simple' => '3.28',
8181             'Pod::Simple::BlackBox' => '3.28',
8182             'Pod::Simple::Checker' => '3.28',
8183             'Pod::Simple::Debug' => '3.28',
8184             'Pod::Simple::DumpAsText'=> '3.28',
8185             'Pod::Simple::DumpAsXML'=> '3.28',
8186             'Pod::Simple::HTML' => '3.28',
8187             'Pod::Simple::HTMLBatch'=> '3.28',
8188             'Pod::Simple::LinkSection'=> '3.28',
8189             'Pod::Simple::Methody' => '3.28',
8190             'Pod::Simple::Progress' => '3.28',
8191             'Pod::Simple::PullParser'=> '3.28',
8192             'Pod::Simple::PullParserEndToken'=> '3.28',
8193             'Pod::Simple::PullParserStartToken'=> '3.28',
8194             'Pod::Simple::PullParserTextToken'=> '3.28',
8195             'Pod::Simple::PullParserToken'=> '3.28',
8196             'Pod::Simple::RTF' => '3.28',
8197             'Pod::Simple::Search' => '3.28',
8198             'Pod::Simple::SimpleTree'=> '3.28',
8199             'Pod::Simple::Text' => '3.28',
8200             'Pod::Simple::TextContent'=> '3.28',
8201             'Pod::Simple::TiedOutFH'=> '3.28',
8202             'Pod::Simple::Transcode'=> '3.28',
8203             'Pod::Simple::TranscodeDumb'=> '3.28',
8204             'Pod::Simple::TranscodeSmart'=> '3.28',
8205             'Pod::Simple::XHTML' => '3.28',
8206             'Pod::Simple::XMLOutStream'=> '3.28',
8207             },
8208             removed => {
8209             }
8210             },
8211             5.018001 => {
8212             delta_from => 5.018000,
8213             changed => {
8214             'B' => '1.42_01',
8215             'Config' => '5.018001',
8216             'Digest::SHA' => '5.84_01',
8217             'Module::CoreList' => '2.96',
8218             'Module::CoreList::TieHashDelta'=> '2.96',
8219             'Module::CoreList::Utils'=> '2.96',
8220             },
8221             removed => {
8222             'VMS::Filespec' => 1,
8223             }
8224             },
8225             5.018002 => {
8226             delta_from => 5.018001,
8227             changed => {
8228             'B' => '1.42_02',
8229             'B::Concise' => '0.95_01',
8230             'Config' => '5.018002',
8231             'File::Glob' => '1.20_01',
8232             'Module::CoreList' => '3.03',
8233             'Module::CoreList::TieHashDelta'=> '3.03',
8234             'Module::CoreList::Utils'=> '3.03',
8235             },
8236             },
8237             5.018003 => {
8238             delta_from => 5.018002,
8239             changed => {
8240             'Config' => '5.018003',
8241             'Digest::SHA' => '5.84_02',
8242             'Module::CoreList' => '3.12',
8243             'Module::CoreList::TieHashDelta'=> '3.12',
8244             'Module::CoreList::Utils'=> '3.12',
8245             },
8246             },
8247             5.018004 => {
8248             delta_from => 5.018003,
8249             changed => {
8250             'Config' => '5.018004',
8251             'Module::CoreList' => '3.13',
8252             'Module::CoreList::TieHashDelta'=> '3.13',
8253             'Module::CoreList::Utils'=> '3.13',
8254             },
8255             },
8256             5.019000 => {
8257             delta_from => 5.018000,
8258             changed => {
8259             'Config' => '5.019000',
8260             'Getopt::Std' => '1.08',
8261             'Module::CoreList' => '2.91',
8262             'Module::CoreList::TieHashDelta'=> '2.91',
8263             'Storable' => '2.42',
8264             'feature' => '1.33',
8265             'utf8' => '1.11',
8266             },
8267             removed => {
8268             'Archive::Extract' => 1,
8269             'B::Lint' => 1,
8270             'B::Lint::Debug' => 1,
8271             'CPANPLUS' => 1,
8272             'CPANPLUS::Backend' => 1,
8273             'CPANPLUS::Backend::RV' => 1,
8274             'CPANPLUS::Config' => 1,
8275             'CPANPLUS::Config::HomeEnv'=> 1,
8276             'CPANPLUS::Configure' => 1,
8277             'CPANPLUS::Configure::Setup'=> 1,
8278             'CPANPLUS::Dist' => 1,
8279             'CPANPLUS::Dist::Autobundle'=> 1,
8280             'CPANPLUS::Dist::Base' => 1,
8281             'CPANPLUS::Dist::Build' => 1,
8282             'CPANPLUS::Dist::Build::Constants'=> 1,
8283             'CPANPLUS::Dist::MM' => 1,
8284             'CPANPLUS::Dist::Sample'=> 1,
8285             'CPANPLUS::Error' => 1,
8286             'CPANPLUS::Internals' => 1,
8287             'CPANPLUS::Internals::Constants'=> 1,
8288             'CPANPLUS::Internals::Constants::Report'=> 1,
8289             'CPANPLUS::Internals::Extract'=> 1,
8290             'CPANPLUS::Internals::Fetch'=> 1,
8291             'CPANPLUS::Internals::Report'=> 1,
8292             'CPANPLUS::Internals::Search'=> 1,
8293             'CPANPLUS::Internals::Source'=> 1,
8294             'CPANPLUS::Internals::Source::Memory'=> 1,
8295             'CPANPLUS::Internals::Source::SQLite'=> 1,
8296             'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8297             'CPANPLUS::Internals::Utils'=> 1,
8298             'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8299             'CPANPLUS::Module' => 1,
8300             'CPANPLUS::Module::Author'=> 1,
8301             'CPANPLUS::Module::Author::Fake'=> 1,
8302             'CPANPLUS::Module::Checksums'=> 1,
8303             'CPANPLUS::Module::Fake'=> 1,
8304             'CPANPLUS::Module::Signature'=> 1,
8305             'CPANPLUS::Selfupdate' => 1,
8306             'CPANPLUS::Shell' => 1,
8307             'CPANPLUS::Shell::Classic'=> 1,
8308             'CPANPLUS::Shell::Default'=> 1,
8309             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8310             'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8311             'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8312             'Devel::InnerPackage' => 1,
8313             'File::CheckTree' => 1,
8314             'Log::Message' => 1,
8315             'Log::Message::Config' => 1,
8316             'Log::Message::Handlers'=> 1,
8317             'Log::Message::Item' => 1,
8318             'Log::Message::Simple' => 1,
8319             'Module::Pluggable' => 1,
8320             'Module::Pluggable::Object'=> 1,
8321             'Object::Accessor' => 1,
8322             'Pod::LaTeX' => 1,
8323             'Term::UI' => 1,
8324             'Term::UI::History' => 1,
8325             'Text::Soundex' => 1,
8326             }
8327             },
8328             5.019001 => {
8329             delta_from => 5.019000,
8330             changed => {
8331             'App::Prove' => '3.28',
8332             'App::Prove::State' => '3.28',
8333             'App::Prove::State::Result'=> '3.28',
8334             'App::Prove::State::Result::Test'=> '3.28',
8335             'Archive::Tar' => '1.92',
8336             'Archive::Tar::Constant'=> '1.92',
8337             'Archive::Tar::File' => '1.92',
8338             'Attribute::Handlers' => '0.95',
8339             'B' => '1.43',
8340             'B::Concise' => '0.96',
8341             'B::Deparse' => '1.21',
8342             'B::Showlex' => '1.04',
8343             'Benchmark' => '1.16',
8344             'CPAN::Meta' => '2.131560',
8345             'CPAN::Meta::Converter' => '2.131560',
8346             'CPAN::Meta::Feature' => '2.131560',
8347             'CPAN::Meta::History' => '2.131560',
8348             'CPAN::Meta::Prereqs' => '2.131560',
8349             'CPAN::Meta::Spec' => '2.131560',
8350             'CPAN::Meta::Validator' => '2.131560',
8351             'Carp' => '1.30',
8352             'Carp::Heavy' => '1.30',
8353             'Compress::Raw::Bzip2' => '2.061',
8354             'Compress::Raw::Zlib' => '2.061',
8355             'Compress::Zlib' => '2.061',
8356             'Config' => '5.019001',
8357             'Config::Perl::V' => '0.18',
8358             'Cwd' => '3.41',
8359             'DB' => '1.06',
8360             'DB_File' => '1.828',
8361             'Data::Dumper' => '2.146',
8362             'Encode' => '2.51',
8363             'Encode::CN::HZ' => '2.06',
8364             'Encode::GSM0338' => '2.03',
8365             'Encode::Unicode::UTF7' => '2.07',
8366             'ExtUtils::CBuilder::Base'=> '0.280210',
8367             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8368             'ExtUtils::Command::MM' => '6.68',
8369             'ExtUtils::Install' => '1.60',
8370             'ExtUtils::Liblist' => '6.68',
8371             'ExtUtils::Liblist::Kid'=> '6.68',
8372             'ExtUtils::MM' => '6.68',
8373             'ExtUtils::MM_AIX' => '6.68',
8374             'ExtUtils::MM_Any' => '6.68',
8375             'ExtUtils::MM_BeOS' => '6.68',
8376             'ExtUtils::MM_Cygwin' => '6.68',
8377             'ExtUtils::MM_DOS' => '6.68',
8378             'ExtUtils::MM_Darwin' => '6.68',
8379             'ExtUtils::MM_MacOS' => '6.68',
8380             'ExtUtils::MM_NW5' => '6.68',
8381             'ExtUtils::MM_OS2' => '6.68',
8382             'ExtUtils::MM_QNX' => '6.68',
8383             'ExtUtils::MM_UWIN' => '6.68',
8384             'ExtUtils::MM_Unix' => '6.68',
8385             'ExtUtils::MM_VMS' => '6.68',
8386             'ExtUtils::MM_VOS' => '6.68',
8387             'ExtUtils::MM_Win32' => '6.68',
8388             'ExtUtils::MM_Win95' => '6.68',
8389             'ExtUtils::MY' => '6.68',
8390             'ExtUtils::MakeMaker' => '6.68',
8391             'ExtUtils::MakeMaker::Config'=> '6.68',
8392             'ExtUtils::Mkbootstrap' => '6.68',
8393             'ExtUtils::Mksymlists' => '6.68',
8394             'ExtUtils::ParseXS' => '3.19',
8395             'ExtUtils::testlib' => '6.68',
8396             'Fatal' => '2.19',
8397             'File::Copy' => '2.27',
8398             'File::DosGlob' => '1.11',
8399             'File::Fetch' => '0.42',
8400             'File::Find' => '1.24',
8401             'File::Spec' => '3.41',
8402             'File::Spec::Cygwin' => '3.41',
8403             'File::Spec::Epoc' => '3.41',
8404             'File::Spec::Mac' => '3.41',
8405             'File::Spec::OS2' => '3.41',
8406             'File::Spec::Unix' => '3.41',
8407             'File::Spec::VMS' => '3.41',
8408             'File::Spec::Win32' => '3.41',
8409             'File::Temp' => '0.2301',
8410             'Filter::Simple' => '0.90',
8411             'Filter::Util::Call' => '1.49',
8412             'Getopt::Long' => '2.4',
8413             'HTTP::Tiny' => '0.031',
8414             'Hash::Util::FieldHash' => '1.11',
8415             'IO::Compress::Adapter::Bzip2'=> '2.061',
8416             'IO::Compress::Adapter::Deflate'=> '2.061',
8417             'IO::Compress::Adapter::Identity'=> '2.061',
8418             'IO::Compress::Base' => '2.061',
8419             'IO::Compress::Base::Common'=> '2.061',
8420             'IO::Compress::Bzip2' => '2.061',
8421             'IO::Compress::Deflate' => '2.061',
8422             'IO::Compress::Gzip' => '2.061',
8423             'IO::Compress::Gzip::Constants'=> '2.061',
8424             'IO::Compress::RawDeflate'=> '2.061',
8425             'IO::Compress::Zip' => '2.061',
8426             'IO::Compress::Zip::Constants'=> '2.061',
8427             'IO::Compress::Zlib::Constants'=> '2.061',
8428             'IO::Compress::Zlib::Extra'=> '2.061',
8429             'IO::Handle' => '1.35',
8430             'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8431             'IO::Uncompress::Adapter::Identity'=> '2.061',
8432             'IO::Uncompress::Adapter::Inflate'=> '2.061',
8433             'IO::Uncompress::AnyInflate'=> '2.061',
8434             'IO::Uncompress::AnyUncompress'=> '2.061',
8435             'IO::Uncompress::Base' => '2.061',
8436             'IO::Uncompress::Bunzip2'=> '2.061',
8437             'IO::Uncompress::Gunzip'=> '2.061',
8438             'IO::Uncompress::Inflate'=> '2.061',
8439             'IO::Uncompress::RawInflate'=> '2.061',
8440             'IO::Uncompress::Unzip' => '2.061',
8441             'IPC::Open3' => '1.14',
8442             'Locale::Codes' => '3.26',
8443             'Locale::Codes::Constants'=> '3.26',
8444             'Locale::Codes::Country'=> '3.26',
8445             'Locale::Codes::Country_Codes'=> '3.26',
8446             'Locale::Codes::Country_Retired'=> '3.26',
8447             'Locale::Codes::Currency'=> '3.26',
8448             'Locale::Codes::Currency_Codes'=> '3.26',
8449             'Locale::Codes::Currency_Retired'=> '3.26',
8450             'Locale::Codes::LangExt'=> '3.26',
8451             'Locale::Codes::LangExt_Codes'=> '3.26',
8452             'Locale::Codes::LangExt_Retired'=> '3.26',
8453             'Locale::Codes::LangFam'=> '3.26',
8454             'Locale::Codes::LangFam_Codes'=> '3.26',
8455             'Locale::Codes::LangFam_Retired'=> '3.26',
8456             'Locale::Codes::LangVar'=> '3.26',
8457             'Locale::Codes::LangVar_Codes'=> '3.26',
8458             'Locale::Codes::LangVar_Retired'=> '3.26',
8459             'Locale::Codes::Language'=> '3.26',
8460             'Locale::Codes::Language_Codes'=> '3.26',
8461             'Locale::Codes::Language_Retired'=> '3.26',
8462             'Locale::Codes::Script' => '3.26',
8463             'Locale::Codes::Script_Codes'=> '3.26',
8464             'Locale::Codes::Script_Retired'=> '3.26',
8465             'Locale::Country' => '3.26',
8466             'Locale::Currency' => '3.26',
8467             'Locale::Language' => '3.26',
8468             'Locale::Maketext' => '1.24',
8469             'Locale::Script' => '3.26',
8470             'Math::BigFloat' => '1.999',
8471             'Math::BigInt' => '1.9992',
8472             'Math::BigInt::Calc' => '1.998',
8473             'Math::BigInt::CalcEmu' => '1.9991',
8474             'Math::BigRat' => '0.2606',
8475             'Module::Build' => '0.4005',
8476             'Module::Build::Base' => '0.4005',
8477             'Module::Build::Compat' => '0.4005',
8478             'Module::Build::Config' => '0.4005',
8479             'Module::Build::Cookbook'=> '0.4005',
8480             'Module::Build::Dumper' => '0.4005',
8481             'Module::Build::ModuleInfo'=> '0.4005',
8482             'Module::Build::Notes' => '0.4005',
8483             'Module::Build::PPMMaker'=> '0.4005',
8484             'Module::Build::Platform::Amiga'=> '0.4005',
8485             'Module::Build::Platform::Default'=> '0.4005',
8486             'Module::Build::Platform::EBCDIC'=> '0.4005',
8487             'Module::Build::Platform::MPEiX'=> '0.4005',
8488             'Module::Build::Platform::MacOS'=> '0.4005',
8489             'Module::Build::Platform::RiscOS'=> '0.4005',
8490             'Module::Build::Platform::Unix'=> '0.4005',
8491             'Module::Build::Platform::VMS'=> '0.4005',
8492             'Module::Build::Platform::VOS'=> '0.4005',
8493             'Module::Build::Platform::Windows'=> '0.4005',
8494             'Module::Build::Platform::aix'=> '0.4005',
8495             'Module::Build::Platform::cygwin'=> '0.4005',
8496             'Module::Build::Platform::darwin'=> '0.4005',
8497             'Module::Build::Platform::os2'=> '0.4005',
8498             'Module::Build::PodParser'=> '0.4005',
8499             'Module::CoreList' => '2.92',
8500             'Module::CoreList::TieHashDelta'=> '2.92',
8501             'Module::CoreList::Utils'=> '2.92',
8502             'Module::Metadata' => '1.000014',
8503             'Net::Ping' => '2.42',
8504             'OS2::Process' => '1.09',
8505             'POSIX' => '1.33',
8506             'Pod::Find' => '1.61',
8507             'Pod::Html' => '1.19',
8508             'Pod::InputObjects' => '1.61',
8509             'Pod::ParseUtils' => '1.61',
8510             'Pod::Parser' => '1.61',
8511             'Pod::Perldoc' => '3.20',
8512             'Pod::Perldoc::BaseTo' => '3.20',
8513             'Pod::Perldoc::GetOptsOO'=> '3.20',
8514             'Pod::Perldoc::ToANSI' => '3.20',
8515             'Pod::Perldoc::ToChecker'=> '3.20',
8516             'Pod::Perldoc::ToMan' => '3.20',
8517             'Pod::Perldoc::ToNroff' => '3.20',
8518             'Pod::Perldoc::ToPod' => '3.20',
8519             'Pod::Perldoc::ToRtf' => '3.20',
8520             'Pod::Perldoc::ToTerm' => '3.20',
8521             'Pod::Perldoc::ToText' => '3.20',
8522             'Pod::Perldoc::ToTk' => '3.20',
8523             'Pod::Perldoc::ToXml' => '3.20',
8524             'Pod::Select' => '1.61',
8525             'Pod::Usage' => '1.63',
8526             'Safe' => '2.36',
8527             'Storable' => '2.43',
8528             'Sys::Hostname' => '1.18',
8529             'Sys::Syslog' => '0.33',
8530             'TAP::Base' => '3.28',
8531             'TAP::Formatter::Base' => '3.28',
8532             'TAP::Formatter::Color' => '3.28',
8533             'TAP::Formatter::Console'=> '3.28',
8534             'TAP::Formatter::Console::ParallelSession'=> '3.28',
8535             'TAP::Formatter::Console::Session'=> '3.28',
8536             'TAP::Formatter::File' => '3.28',
8537             'TAP::Formatter::File::Session'=> '3.28',
8538             'TAP::Formatter::Session'=> '3.28',
8539             'TAP::Harness' => '3.28',
8540             'TAP::Object' => '3.28',
8541             'TAP::Parser' => '3.28',
8542             'TAP::Parser::Aggregator'=> '3.28',
8543             'TAP::Parser::Grammar' => '3.28',
8544             'TAP::Parser::Iterator' => '3.28',
8545             'TAP::Parser::Iterator::Array'=> '3.28',
8546             'TAP::Parser::Iterator::Process'=> '3.28',
8547             'TAP::Parser::Iterator::Stream'=> '3.28',
8548             'TAP::Parser::IteratorFactory'=> '3.28',
8549             'TAP::Parser::Multiplexer'=> '3.28',
8550             'TAP::Parser::Result' => '3.28',
8551             'TAP::Parser::Result::Bailout'=> '3.28',
8552             'TAP::Parser::Result::Comment'=> '3.28',
8553             'TAP::Parser::Result::Plan'=> '3.28',
8554             'TAP::Parser::Result::Pragma'=> '3.28',
8555             'TAP::Parser::Result::Test'=> '3.28',
8556             'TAP::Parser::Result::Unknown'=> '3.28',
8557             'TAP::Parser::Result::Version'=> '3.28',
8558             'TAP::Parser::Result::YAML'=> '3.28',
8559             'TAP::Parser::ResultFactory'=> '3.28',
8560             'TAP::Parser::Scheduler'=> '3.28',
8561             'TAP::Parser::Scheduler::Job'=> '3.28',
8562             'TAP::Parser::Scheduler::Spinner'=> '3.28',
8563             'TAP::Parser::Source' => '3.28',
8564             'TAP::Parser::SourceHandler'=> '3.28',
8565             'TAP::Parser::SourceHandler::Executable'=> '3.28',
8566             'TAP::Parser::SourceHandler::File'=> '3.28',
8567             'TAP::Parser::SourceHandler::Handle'=> '3.28',
8568             'TAP::Parser::SourceHandler::Perl'=> '3.28',
8569             'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8570             'TAP::Parser::Utils' => '3.28',
8571             'TAP::Parser::YAMLish::Reader'=> '3.28',
8572             'TAP::Parser::YAMLish::Writer'=> '3.28',
8573             'Term::ReadLine' => '1.13',
8574             'Test::Harness' => '3.28',
8575             'Text::Tabs' => '2013.0523',
8576             'Text::Wrap' => '2013.0523',
8577             'Thread' => '3.04',
8578             'Tie::File' => '1.00',
8579             'Time::Piece' => '1.2002',
8580             'Unicode::Collate' => '0.98',
8581             'Unicode::UCD' => '0.53',
8582             'XS::APItest' => '0.53',
8583             '_charnames' => '1.37',
8584             'autodie' => '2.19',
8585             'autodie::exception' => '2.19',
8586             'autodie::exception::system'=> '2.19',
8587             'autodie::hints' => '2.19',
8588             'autodie::skip' => '2.19',
8589             'bigint' => '0.35',
8590             'charnames' => '1.38',
8591             'encoding' => '2.12',
8592             'inc::latest' => '0.4005',
8593             'mro' => '1.12',
8594             'perlfaq' => '5.0150043',
8595             're' => '0.25',
8596             'threads' => '1.87',
8597             'threads::shared' => '1.44',
8598             'utf8' => '1.12',
8599             },
8600             removed => {
8601             }
8602             },
8603             5.019002 => {
8604             delta_from => 5.019001,
8605             changed => {
8606             'B' => '1.44',
8607             'B::Concise' => '0.98',
8608             'B::Deparse' => '1.22',
8609             'Benchmark' => '1.17',
8610             'Class::Struct' => '0.65',
8611             'Config' => '5.019002',
8612             'DB' => '1.07',
8613             'DBM_Filter' => '0.06',
8614             'DBM_Filter::compress' => '0.03',
8615             'DBM_Filter::encode' => '0.03',
8616             'DBM_Filter::int32' => '0.03',
8617             'DBM_Filter::null' => '0.03',
8618             'DBM_Filter::utf8' => '0.03',
8619             'DB_File' => '1.829',
8620             'Data::Dumper' => '2.147',
8621             'Devel::Peek' => '1.12',
8622             'Digest::MD5' => '2.53',
8623             'Digest::SHA' => '5.85',
8624             'English' => '1.07',
8625             'Errno' => '1.19',
8626             'ExtUtils::Embed' => '1.31',
8627             'ExtUtils::Miniperl' => '1',
8628             'ExtUtils::ParseXS' => '3.21',
8629             'ExtUtils::ParseXS::Constants'=> '3.21',
8630             'ExtUtils::ParseXS::CountLines'=> '3.21',
8631             'ExtUtils::ParseXS::Eval'=> '3.19',
8632             'ExtUtils::ParseXS::Utilities'=> '3.21',
8633             'ExtUtils::Typemaps' => '3.21',
8634             'ExtUtils::Typemaps::Cmd'=> '3.21',
8635             'ExtUtils::Typemaps::InputMap'=> '3.21',
8636             'ExtUtils::Typemaps::OutputMap'=> '3.21',
8637             'ExtUtils::Typemaps::Type'=> '3.21',
8638             'ExtUtils::XSSymSet' => '1.3',
8639             'Fatal' => '2.20',
8640             'File::Basename' => '2.85',
8641             'File::Spec::VMS' => '3.43',
8642             'File::Spec::Win32' => '3.42',
8643             'Getopt::Long' => '2.41',
8644             'Getopt::Std' => '1.09',
8645             'HTTP::Tiny' => '0.034',
8646             'Hash::Util::FieldHash' => '1.12',
8647             'I18N::Langinfo' => '0.11',
8648             'IO::Socket::INET' => '1.34',
8649             'IO::Socket::UNIX' => '1.25',
8650             'IPC::Cmd' => '0.82',
8651             'MIME::Base64' => '3.14',
8652             'Module::CoreList' => '2.94',
8653             'Module::CoreList::TieHashDelta'=> '2.94',
8654             'Module::CoreList::Utils'=> '2.94',
8655             'POSIX' => '1.34',
8656             'Params::Check' => '0.38',
8657             'Parse::CPAN::Meta' => '1.4405',
8658             'Pod::Functions' => '1.07',
8659             'Pod::Html' => '1.2',
8660             'Safe' => '2.37',
8661             'Socket' => '2.010',
8662             'Storable' => '2.45',
8663             'Text::ParseWords' => '3.29',
8664             'Tie::Array' => '1.06',
8665             'Tie::Hash' => '1.05',
8666             'Tie::Scalar' => '1.03',
8667             'Time::Piece' => '1.21',
8668             'Time::Seconds' => '1.21',
8669             'XS::APItest' => '0.54',
8670             'autodie' => '2.20',
8671             'autodie::exception' => '2.20',
8672             'autodie::exception::system'=> '2.20',
8673             'autodie::hints' => '2.20',
8674             'autodie::skip' => '2.20',
8675             'base' => '2.19',
8676             'deprecate' => '0.03',
8677             'if' => '0.0603',
8678             'integer' => '1.01',
8679             'strict' => '1.08',
8680             'subs' => '1.02',
8681             'vmsish' => '1.04',
8682             },
8683             removed => {
8684             }
8685             },
8686             5.019003 => {
8687             delta_from => 5.019002,
8688             changed => {
8689             'B' => '1.45',
8690             'CPAN::Meta' => '2.132140',
8691             'CPAN::Meta::Converter' => '2.132140',
8692             'CPAN::Meta::Feature' => '2.132140',
8693             'CPAN::Meta::History' => '2.132140',
8694             'CPAN::Meta::Prereqs' => '2.132140',
8695             'CPAN::Meta::Spec' => '2.132140',
8696             'CPAN::Meta::Validator' => '2.132140',
8697             'Carp' => '1.31',
8698             'Carp::Heavy' => '1.31',
8699             'Compress::Raw::Bzip2' => '2.062',
8700             'Compress::Raw::Zlib' => '2.062',
8701             'Compress::Zlib' => '2.062',
8702             'Config' => '5.019003',
8703             'Config::Perl::V' => '0.19',
8704             'Cwd' => '3.44',
8705             'Data::Dumper' => '2.148',
8706             'Devel::PPPort' => '3.21',
8707             'Devel::Peek' => '1.13',
8708             'DynaLoader' => '1.19',
8709             'Encode' => '2.52',
8710             'Encode::Alias' => '2.17',
8711             'Encode::Encoding' => '2.06',
8712             'Encode::GSM0338' => '2.04',
8713             'Encode::MIME::Header' => '2.14',
8714             'Encode::Unicode' => '2.08',
8715             'English' => '1.08',
8716             'Exporter' => '5.69',
8717             'Exporter::Heavy' => '5.69',
8718             'ExtUtils::Command::MM' => '6.72',
8719             'ExtUtils::Liblist' => '6.72',
8720             'ExtUtils::Liblist::Kid'=> '6.72',
8721             'ExtUtils::MM' => '6.72',
8722             'ExtUtils::MM_AIX' => '6.72',
8723             'ExtUtils::MM_Any' => '6.72',
8724             'ExtUtils::MM_BeOS' => '6.72',
8725             'ExtUtils::MM_Cygwin' => '6.72',
8726             'ExtUtils::MM_DOS' => '6.72',
8727             'ExtUtils::MM_Darwin' => '6.72',
8728             'ExtUtils::MM_MacOS' => '6.72',
8729             'ExtUtils::MM_NW5' => '6.72',
8730             'ExtUtils::MM_OS2' => '6.72',
8731             'ExtUtils::MM_QNX' => '6.72',
8732             'ExtUtils::MM_UWIN' => '6.72',
8733             'ExtUtils::MM_Unix' => '6.72',
8734             'ExtUtils::MM_VMS' => '6.72',
8735             'ExtUtils::MM_VOS' => '6.72',
8736             'ExtUtils::MM_Win32' => '6.72',
8737             'ExtUtils::MM_Win95' => '6.72',
8738             'ExtUtils::MY' => '6.72',
8739             'ExtUtils::MakeMaker' => '6.72',
8740             'ExtUtils::MakeMaker::Config'=> '6.72',
8741             'ExtUtils::Mkbootstrap' => '6.72',
8742             'ExtUtils::Mksymlists' => '6.72',
8743             'ExtUtils::ParseXS::Eval'=> '3.21',
8744             'ExtUtils::testlib' => '6.72',
8745             'File::Spec' => '3.44',
8746             'File::Spec::Cygwin' => '3.44',
8747             'File::Spec::Epoc' => '3.44',
8748             'File::Spec::Functions' => '3.44',
8749             'File::Spec::Mac' => '3.44',
8750             'File::Spec::OS2' => '3.44',
8751             'File::Spec::Unix' => '3.44',
8752             'File::Spec::VMS' => '3.44',
8753             'File::Spec::Win32' => '3.44',
8754             'Getopt::Std' => '1.10',
8755             'IO::Compress::Adapter::Bzip2'=> '2.062',
8756             'IO::Compress::Adapter::Deflate'=> '2.062',
8757             'IO::Compress::Adapter::Identity'=> '2.062',
8758             'IO::Compress::Base' => '2.062',
8759             'IO::Compress::Base::Common'=> '2.062',
8760             'IO::Compress::Bzip2' => '2.062',
8761             'IO::Compress::Deflate' => '2.062',
8762             'IO::Compress::Gzip' => '2.062',
8763             'IO::Compress::Gzip::Constants'=> '2.062',
8764             'IO::Compress::RawDeflate'=> '2.062',
8765             'IO::Compress::Zip' => '2.062',
8766             'IO::Compress::Zip::Constants'=> '2.062',
8767             'IO::Compress::Zlib::Constants'=> '2.062',
8768             'IO::Compress::Zlib::Extra'=> '2.062',
8769             'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8770             'IO::Uncompress::Adapter::Identity'=> '2.062',
8771             'IO::Uncompress::Adapter::Inflate'=> '2.062',
8772             'IO::Uncompress::AnyInflate'=> '2.062',
8773             'IO::Uncompress::AnyUncompress'=> '2.062',
8774             'IO::Uncompress::Base' => '2.062',
8775             'IO::Uncompress::Bunzip2'=> '2.062',
8776             'IO::Uncompress::Gunzip'=> '2.062',
8777             'IO::Uncompress::Inflate'=> '2.062',
8778             'IO::Uncompress::RawInflate'=> '2.062',
8779             'IO::Uncompress::Unzip' => '2.062',
8780             'IPC::Cmd' => '0.84',
8781             'IPC::Msg' => '2.04',
8782             'IPC::Open3' => '1.15',
8783             'IPC::Semaphore' => '2.04',
8784             'IPC::SharedMem' => '2.04',
8785             'IPC::SysV' => '2.04',
8786             'List::Util' => '1.31',
8787             'List::Util::XS' => '1.31',
8788             'Math::BigFloat::Trace' => '0.36',
8789             'Math::BigInt::Trace' => '0.36',
8790             'Module::Build' => '0.4007',
8791             'Module::Build::Base' => '0.4007',
8792             'Module::Build::Compat' => '0.4007',
8793             'Module::Build::Config' => '0.4007',
8794             'Module::Build::Cookbook'=> '0.4007',
8795             'Module::Build::Dumper' => '0.4007',
8796             'Module::Build::ModuleInfo'=> '0.4007',
8797             'Module::Build::Notes' => '0.4007',
8798             'Module::Build::PPMMaker'=> '0.4007',
8799             'Module::Build::Platform::Default'=> '0.4007',
8800             'Module::Build::Platform::MacOS'=> '0.4007',
8801             'Module::Build::Platform::Unix'=> '0.4007',
8802             'Module::Build::Platform::VMS'=> '0.4007',
8803             'Module::Build::Platform::VOS'=> '0.4007',
8804             'Module::Build::Platform::Windows'=> '0.4007',
8805             'Module::Build::Platform::aix'=> '0.4007',
8806             'Module::Build::Platform::cygwin'=> '0.4007',
8807             'Module::Build::Platform::darwin'=> '0.4007',
8808             'Module::Build::Platform::os2'=> '0.4007',
8809             'Module::Build::PodParser'=> '0.4007',
8810             'Module::CoreList' => '2.97',
8811             'Module::CoreList::TieHashDelta'=> '2.97',
8812             'Module::CoreList::Utils'=> '2.97',
8813             'Net::Cmd' => '2.30',
8814             'Net::Config' => '1.12',
8815             'Net::Domain' => '2.22',
8816             'Net::FTP' => '2.78',
8817             'Net::FTP::dataconn' => '0.12',
8818             'Net::NNTP' => '2.25',
8819             'Net::Netrc' => '2.14',
8820             'Net::POP3' => '2.30',
8821             'Net::SMTP' => '2.32',
8822             'PerlIO' => '1.08',
8823             'Pod::Functions' => '1.08',
8824             'Scalar::Util' => '1.31',
8825             'Socket' => '2.011',
8826             'Storable' => '2.46',
8827             'Time::HiRes' => '1.9726',
8828             'Time::Piece' => '1.22',
8829             'Time::Seconds' => '1.22',
8830             'XS::APItest' => '0.55',
8831             'bigint' => '0.36',
8832             'bignum' => '0.36',
8833             'bigrat' => '0.36',
8834             'constant' => '1.28',
8835             'diagnostics' => '1.32',
8836             'inc::latest' => '0.4007',
8837             'mro' => '1.13',
8838             'parent' => '0.226',
8839             'utf8' => '1.13',
8840             'version' => '0.9903',
8841             },
8842             removed => {
8843             'Module::Build::Platform::Amiga'=> 1,
8844             'Module::Build::Platform::EBCDIC'=> 1,
8845             'Module::Build::Platform::MPEiX'=> 1,
8846             'Module::Build::Platform::RiscOS'=> 1,
8847             }
8848             },
8849             5.019004 => {
8850             delta_from => 5.019003,
8851             changed => {
8852             'B' => '1.46',
8853             'B::Concise' => '0.99',
8854             'B::Deparse' => '1.23',
8855             'CPAN' => '2.03',
8856             'CPAN::Meta' => '2.132620',
8857             'CPAN::Meta::Converter' => '2.132620',
8858             'CPAN::Meta::Feature' => '2.132620',
8859             'CPAN::Meta::History' => '2.132620',
8860             'CPAN::Meta::Prereqs' => '2.132620',
8861             'CPAN::Meta::Requirements'=> '2.123',
8862             'CPAN::Meta::Spec' => '2.132620',
8863             'CPAN::Meta::Validator' => '2.132620',
8864             'Carp' => '1.32',
8865             'Carp::Heavy' => '1.32',
8866             'Config' => '5.019004',
8867             'Data::Dumper' => '2.149',
8868             'Devel::Peek' => '1.14',
8869             'DynaLoader' => '1.20',
8870             'Encode' => '2.55',
8871             'Encode::Alias' => '2.18',
8872             'Encode::CN::HZ' => '2.07',
8873             'Encode::Encoder' => '2.03',
8874             'Encode::Encoding' => '2.07',
8875             'Encode::GSM0338' => '2.05',
8876             'Encode::Guess' => '2.06',
8877             'Encode::JP::JIS7' => '2.05',
8878             'Encode::KR::2022_KR' => '2.03',
8879             'Encode::MIME::Header' => '2.15',
8880             'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8881             'Encode::Unicode' => '2.09',
8882             'Encode::Unicode::UTF7' => '2.08',
8883             'Errno' => '1.20',
8884             'Exporter' => '5.70',
8885             'Exporter::Heavy' => '5.70',
8886             'ExtUtils::CBuilder' => '0.280212',
8887             'ExtUtils::CBuilder::Base'=> '0.280212',
8888             'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8889             'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8890             'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8891             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8892             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8893             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8894             'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8895             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8896             'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8897             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8898             'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8899             'ExtUtils::Command' => '1.18',
8900             'ExtUtils::Command::MM' => '6.76',
8901             'ExtUtils::Liblist' => '6.76',
8902             'ExtUtils::Liblist::Kid'=> '6.76',
8903             'ExtUtils::MM' => '6.76',
8904             'ExtUtils::MM_AIX' => '6.76',
8905             'ExtUtils::MM_Any' => '6.76',
8906             'ExtUtils::MM_BeOS' => '6.76',
8907             'ExtUtils::MM_Cygwin' => '6.76',
8908             'ExtUtils::MM_DOS' => '6.76',
8909             'ExtUtils::MM_Darwin' => '6.76',
8910             'ExtUtils::MM_MacOS' => '6.76',
8911             'ExtUtils::MM_NW5' => '6.76',
8912             'ExtUtils::MM_OS2' => '6.76',
8913             'ExtUtils::MM_QNX' => '6.76',
8914             'ExtUtils::MM_UWIN' => '6.76',
8915             'ExtUtils::MM_Unix' => '6.76',
8916             'ExtUtils::MM_VMS' => '6.76',
8917             'ExtUtils::MM_VOS' => '6.76',
8918             'ExtUtils::MM_Win32' => '6.76',
8919             'ExtUtils::MM_Win95' => '6.76',
8920             'ExtUtils::MY' => '6.76',
8921             'ExtUtils::MakeMaker' => '6.76',
8922             'ExtUtils::MakeMaker::Config'=> '6.76',
8923             'ExtUtils::Mkbootstrap' => '6.76',
8924             'ExtUtils::Mksymlists' => '6.76',
8925             'ExtUtils::ParseXS' => '3.23',
8926             'ExtUtils::ParseXS::Constants'=> '3.23',
8927             'ExtUtils::ParseXS::CountLines'=> '3.23',
8928             'ExtUtils::ParseXS::Eval'=> '3.23',
8929             'ExtUtils::ParseXS::Utilities'=> '3.23',
8930             'ExtUtils::Typemaps' => '3.23',
8931             'ExtUtils::Typemaps::Cmd'=> '3.23',
8932             'ExtUtils::Typemaps::InputMap'=> '3.23',
8933             'ExtUtils::Typemaps::OutputMap'=> '3.23',
8934             'ExtUtils::Typemaps::Type'=> '3.23',
8935             'ExtUtils::testlib' => '6.76',
8936             'Fatal' => '2.21',
8937             'File::Copy' => '2.28',
8938             'File::Find' => '1.25',
8939             'File::Glob' => '1.21',
8940             'FileCache' => '1.09',
8941             'HTTP::Tiny' => '0.035',
8942             'Hash::Util::FieldHash' => '1.13',
8943             'I18N::LangTags' => '0.40',
8944             'IO' => '1.29',
8945             'IO::Socket' => '1.37',
8946             'IPC::Open3' => '1.16',
8947             'JSON::PP' => '2.27202_01',
8948             'List::Util' => '1.32',
8949             'List::Util::XS' => '1.32',
8950             'Locale::Codes' => '3.27',
8951             'Locale::Codes::Constants'=> '3.27',
8952             'Locale::Codes::Country'=> '3.27',
8953             'Locale::Codes::Country_Codes'=> '3.27',
8954             'Locale::Codes::Country_Retired'=> '3.27',
8955             'Locale::Codes::Currency'=> '3.27',
8956             'Locale::Codes::Currency_Codes'=> '3.27',
8957             'Locale::Codes::Currency_Retired'=> '3.27',
8958             'Locale::Codes::LangExt'=> '3.27',
8959             'Locale::Codes::LangExt_Codes'=> '3.27',
8960             'Locale::Codes::LangExt_Retired'=> '3.27',
8961             'Locale::Codes::LangFam'=> '3.27',
8962             'Locale::Codes::LangFam_Codes'=> '3.27',
8963             'Locale::Codes::LangFam_Retired'=> '3.27',
8964             'Locale::Codes::LangVar'=> '3.27',
8965             'Locale::Codes::LangVar_Codes'=> '3.27',
8966             'Locale::Codes::LangVar_Retired'=> '3.27',
8967             'Locale::Codes::Language'=> '3.27',
8968             'Locale::Codes::Language_Codes'=> '3.27',
8969             'Locale::Codes::Language_Retired'=> '3.27',
8970             'Locale::Codes::Script' => '3.27',
8971             'Locale::Codes::Script_Codes'=> '3.27',
8972             'Locale::Codes::Script_Retired'=> '3.27',
8973             'Locale::Country' => '3.27',
8974             'Locale::Currency' => '3.27',
8975             'Locale::Language' => '3.27',
8976             'Locale::Script' => '3.27',
8977             'Math::BigFloat' => '1.9991',
8978             'Math::BigInt' => '1.9993',
8979             'Math::BigInt::FastCalc'=> '0.31',
8980             'Module::CoreList' => '2.99',
8981             'Module::CoreList::TieHashDelta'=> '2.99',
8982             'Module::CoreList::Utils'=> '2.99',
8983             'Module::Load::Conditional'=> '0.58',
8984             'Module::Metadata' => '1.000018',
8985             'Opcode' => '1.26',
8986             'POSIX' => '1.35',
8987             'Parse::CPAN::Meta' => '1.4407',
8988             'Perl::OSType' => '1.005',
8989             'Pod::Html' => '1.21',
8990             'Scalar::Util' => '1.32',
8991             'Socket' => '2.012',
8992             'Storable' => '2.47',
8993             'Term::ReadLine' => '1.14',
8994             'Test::Builder' => '0.98_06',
8995             'Test::Builder::Module' => '0.98_06',
8996             'Test::More' => '0.98_06',
8997             'Test::Simple' => '0.98_06',
8998             'Time::Piece' => '1.23',
8999             'Time::Seconds' => '1.23',
9000             'Unicode::Collate' => '0.99',
9001             'Unicode::UCD' => '0.54',
9002             'XS::APItest' => '0.56',
9003             'XS::Typemap' => '0.11',
9004             '_charnames' => '1.39',
9005             'autodie' => '2.21',
9006             'autodie::exception' => '2.21',
9007             'autodie::exception::system'=> '2.21',
9008             'autodie::hints' => '2.21',
9009             'autodie::skip' => '2.21',
9010             'charnames' => '1.39',
9011             'diagnostics' => '1.33',
9012             'mro' => '1.14',
9013             'parent' => '0.228',
9014             'perlfaq' => '5.0150044',
9015             're' => '0.26',
9016             'version' => '0.9904',
9017             'warnings' => '1.19',
9018             },
9019             removed => {
9020             }
9021             },
9022             5.019005 => {
9023             delta_from => 5.019004,
9024             changed => {
9025             'App::Prove' => '3.29',
9026             'App::Prove::State' => '3.29',
9027             'App::Prove::State::Result'=> '3.29',
9028             'App::Prove::State::Result::Test'=> '3.29',
9029             'CPAN::Meta' => '2.132830',
9030             'CPAN::Meta::Converter' => '2.132830',
9031             'CPAN::Meta::Feature' => '2.132830',
9032             'CPAN::Meta::History' => '2.132830',
9033             'CPAN::Meta::Prereqs' => '2.132830',
9034             'CPAN::Meta::Requirements'=> '2.125',
9035             'CPAN::Meta::Spec' => '2.132830',
9036             'CPAN::Meta::Validator' => '2.132830',
9037             'CPAN::Meta::YAML' => '0.010',
9038             'Config' => '5.019005',
9039             'Cwd' => '3.45',
9040             'ExtUtils::Command::MM' => '6.80',
9041             'ExtUtils::Install' => '1.61',
9042             'ExtUtils::Liblist' => '6.80',
9043             'ExtUtils::Liblist::Kid'=> '6.80',
9044             'ExtUtils::MM' => '6.80',
9045             'ExtUtils::MM_AIX' => '6.80',
9046             'ExtUtils::MM_Any' => '6.80',
9047             'ExtUtils::MM_BeOS' => '6.80',
9048             'ExtUtils::MM_Cygwin' => '6.80',
9049             'ExtUtils::MM_DOS' => '6.80',
9050             'ExtUtils::MM_Darwin' => '6.80',
9051             'ExtUtils::MM_MacOS' => '6.80',
9052             'ExtUtils::MM_NW5' => '6.80',
9053             'ExtUtils::MM_OS2' => '6.80',
9054             'ExtUtils::MM_QNX' => '6.80',
9055             'ExtUtils::MM_UWIN' => '6.80',
9056             'ExtUtils::MM_Unix' => '6.80',
9057             'ExtUtils::MM_VMS' => '6.80',
9058             'ExtUtils::MM_VOS' => '6.80',
9059             'ExtUtils::MM_Win32' => '6.80',
9060             'ExtUtils::MM_Win95' => '6.80',
9061             'ExtUtils::MY' => '6.80',
9062             'ExtUtils::MakeMaker' => '6.80',
9063             'ExtUtils::MakeMaker::Config'=> '6.80',
9064             'ExtUtils::Mkbootstrap' => '6.80',
9065             'ExtUtils::Mksymlists' => '6.80',
9066             'ExtUtils::testlib' => '6.80',
9067             'Fatal' => '2.22',
9068             'File::Fetch' => '0.44',
9069             'File::Glob' => '1.22',
9070             'File::Spec' => '3.45',
9071             'File::Spec::Cygwin' => '3.45',
9072             'File::Spec::Epoc' => '3.45',
9073             'File::Spec::Functions' => '3.45',
9074             'File::Spec::Mac' => '3.45',
9075             'File::Spec::OS2' => '3.45',
9076             'File::Spec::Unix' => '3.45',
9077             'File::Spec::VMS' => '3.45',
9078             'File::Spec::Win32' => '3.45',
9079             'File::Temp' => '0.2304',
9080             'Getopt::Long' => '2.42',
9081             'HTTP::Tiny' => '0.036',
9082             'IPC::Cmd' => '0.84_01',
9083             'JSON::PP' => '2.27203',
9084             'List::Util' => '1.35',
9085             'List::Util::XS' => '1.35',
9086             'Module::CoreList' => '3.00',
9087             'Module::CoreList::TieHashDelta'=> '3.00',
9088             'Module::CoreList::Utils'=> '3.00',
9089             'Module::Metadata' => '1.000019',
9090             'Parse::CPAN::Meta' => '1.4409',
9091             'Perl::OSType' => '1.006',
9092             'PerlIO::scalar' => '0.17',
9093             'Pod::Man' => '2.28',
9094             'Pod::Text' => '3.18',
9095             'Pod::Text::Termcap' => '2.08',
9096             'Scalar::Util' => '1.35',
9097             'TAP::Base' => '3.29',
9098             'TAP::Formatter::Base' => '3.29',
9099             'TAP::Formatter::Color' => '3.29',
9100             'TAP::Formatter::Console'=> '3.29',
9101             'TAP::Formatter::Console::ParallelSession'=> '3.29',
9102             'TAP::Formatter::Console::Session'=> '3.29',
9103             'TAP::Formatter::File' => '3.29',
9104             'TAP::Formatter::File::Session'=> '3.29',
9105             'TAP::Formatter::Session'=> '3.29',
9106             'TAP::Harness' => '3.29',
9107             'TAP::Harness::Env' => '3.29',
9108             'TAP::Object' => '3.29',
9109             'TAP::Parser' => '3.29',
9110             'TAP::Parser::Aggregator'=> '3.29',
9111             'TAP::Parser::Grammar' => '3.29',
9112             'TAP::Parser::Iterator' => '3.29',
9113             'TAP::Parser::Iterator::Array'=> '3.29',
9114             'TAP::Parser::Iterator::Process'=> '3.29',
9115             'TAP::Parser::Iterator::Stream'=> '3.29',
9116             'TAP::Parser::IteratorFactory'=> '3.29',
9117             'TAP::Parser::Multiplexer'=> '3.29',
9118             'TAP::Parser::Result' => '3.29',
9119             'TAP::Parser::Result::Bailout'=> '3.29',
9120             'TAP::Parser::Result::Comment'=> '3.29',
9121             'TAP::Parser::Result::Plan'=> '3.29',
9122             'TAP::Parser::Result::Pragma'=> '3.29',
9123             'TAP::Parser::Result::Test'=> '3.29',
9124             'TAP::Parser::Result::Unknown'=> '3.29',
9125             'TAP::Parser::Result::Version'=> '3.29',
9126             'TAP::Parser::Result::YAML'=> '3.29',
9127             'TAP::Parser::ResultFactory'=> '3.29',
9128             'TAP::Parser::Scheduler'=> '3.29',
9129             'TAP::Parser::Scheduler::Job'=> '3.29',
9130             'TAP::Parser::Scheduler::Spinner'=> '3.29',
9131             'TAP::Parser::Source' => '3.29',
9132             'TAP::Parser::SourceHandler'=> '3.29',
9133             'TAP::Parser::SourceHandler::Executable'=> '3.29',
9134             'TAP::Parser::SourceHandler::File'=> '3.29',
9135             'TAP::Parser::SourceHandler::Handle'=> '3.29',
9136             'TAP::Parser::SourceHandler::Perl'=> '3.29',
9137             'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
9138             'TAP::Parser::YAMLish::Reader'=> '3.29',
9139             'TAP::Parser::YAMLish::Writer'=> '3.29',
9140             'Test::Builder' => '0.99',
9141             'Test::Builder::Module' => '0.99',
9142             'Test::Builder::Tester' => '1.23_002',
9143             'Test::Builder::Tester::Color'=> '1.23_002',
9144             'Test::Harness' => '3.29',
9145             'Test::More' => '0.99',
9146             'Test::Simple' => '0.99',
9147             'Unicode' => '6.3.0',
9148             'Unicode::Normalize' => '1.17',
9149             'Unicode::UCD' => '0.55',
9150             'attributes' => '0.22',
9151             'autodie' => '2.22',
9152             'autodie::exception' => '2.22',
9153             'autodie::exception::system'=> '2.22',
9154             'autodie::hints' => '2.22',
9155             'autodie::skip' => '2.22',
9156             'feature' => '1.34',
9157             'threads' => '1.89',
9158             'warnings' => '1.20',
9159             },
9160             removed => {
9161             'TAP::Parser::Utils' => 1,
9162             }
9163             },
9164             5.019006 => {
9165             delta_from => 5.019005,
9166             changed => {
9167             'App::Prove' => '3.30',
9168             'App::Prove::State' => '3.30',
9169             'App::Prove::State::Result'=> '3.30',
9170             'App::Prove::State::Result::Test'=> '3.30',
9171             'Archive::Tar' => '1.96',
9172             'Archive::Tar::Constant'=> '1.96',
9173             'Archive::Tar::File' => '1.96',
9174             'AutoLoader' => '5.74',
9175             'B' => '1.47',
9176             'B::Concise' => '0.991',
9177             'B::Debug' => '1.19',
9178             'B::Deparse' => '1.24',
9179             'Benchmark' => '1.18',
9180             'Compress::Raw::Bzip2' => '2.063',
9181             'Compress::Raw::Zlib' => '2.063',
9182             'Compress::Zlib' => '2.063',
9183             'Config' => '5.019006',
9184             'DB_File' => '1.831',
9185             'Devel::Peek' => '1.15',
9186             'DynaLoader' => '1.21',
9187             'Errno' => '1.20_01',
9188             'ExtUtils::Command::MM' => '6.82',
9189             'ExtUtils::Liblist' => '6.82',
9190             'ExtUtils::Liblist::Kid'=> '6.82',
9191             'ExtUtils::MM' => '6.82',
9192             'ExtUtils::MM_AIX' => '6.82',
9193             'ExtUtils::MM_Any' => '6.82',
9194             'ExtUtils::MM_BeOS' => '6.82',
9195             'ExtUtils::MM_Cygwin' => '6.82',
9196             'ExtUtils::MM_DOS' => '6.82',
9197             'ExtUtils::MM_Darwin' => '6.82',
9198             'ExtUtils::MM_MacOS' => '6.82',
9199             'ExtUtils::MM_NW5' => '6.82',
9200             'ExtUtils::MM_OS2' => '6.82',
9201             'ExtUtils::MM_QNX' => '6.82',
9202             'ExtUtils::MM_UWIN' => '6.82',
9203             'ExtUtils::MM_Unix' => '6.82',
9204             'ExtUtils::MM_VMS' => '6.82',
9205             'ExtUtils::MM_VOS' => '6.82',
9206             'ExtUtils::MM_Win32' => '6.82',
9207             'ExtUtils::MM_Win95' => '6.82',
9208             'ExtUtils::MY' => '6.82',
9209             'ExtUtils::MakeMaker' => '6.82',
9210             'ExtUtils::MakeMaker::Config'=> '6.82',
9211             'ExtUtils::Mkbootstrap' => '6.82',
9212             'ExtUtils::Mksymlists' => '6.82',
9213             'ExtUtils::testlib' => '6.82',
9214             'File::DosGlob' => '1.12',
9215             'File::Find' => '1.26',
9216             'File::Glob' => '1.23',
9217             'HTTP::Tiny' => '0.038',
9218             'IO' => '1.30',
9219             'IO::Compress::Adapter::Bzip2'=> '2.063',
9220             'IO::Compress::Adapter::Deflate'=> '2.063',
9221             'IO::Compress::Adapter::Identity'=> '2.063',
9222             'IO::Compress::Base' => '2.063',
9223             'IO::Compress::Base::Common'=> '2.063',
9224             'IO::Compress::Bzip2' => '2.063',
9225             'IO::Compress::Deflate' => '2.063',
9226             'IO::Compress::Gzip' => '2.063',
9227             'IO::Compress::Gzip::Constants'=> '2.063',
9228             'IO::Compress::RawDeflate'=> '2.063',
9229             'IO::Compress::Zip' => '2.063',
9230             'IO::Compress::Zip::Constants'=> '2.063',
9231             'IO::Compress::Zlib::Constants'=> '2.063',
9232             'IO::Compress::Zlib::Extra'=> '2.063',
9233             'IO::Select' => '1.22',
9234             'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9235             'IO::Uncompress::Adapter::Identity'=> '2.063',
9236             'IO::Uncompress::Adapter::Inflate'=> '2.063',
9237             'IO::Uncompress::AnyInflate'=> '2.063',
9238             'IO::Uncompress::AnyUncompress'=> '2.063',
9239             'IO::Uncompress::Base' => '2.063',
9240             'IO::Uncompress::Bunzip2'=> '2.063',
9241             'IO::Uncompress::Gunzip'=> '2.063',
9242             'IO::Uncompress::Inflate'=> '2.063',
9243             'IO::Uncompress::RawInflate'=> '2.063',
9244             'IO::Uncompress::Unzip' => '2.063',
9245             'IPC::Cmd' => '0.90',
9246             'Locale::Maketext' => '1.25',
9247             'Module::Build' => '0.4202',
9248             'Module::Build::Base' => '0.4202',
9249             'Module::Build::Compat' => '0.4202',
9250             'Module::Build::Config' => '0.4202',
9251             'Module::Build::Cookbook'=> '0.4202',
9252             'Module::Build::Dumper' => '0.4202',
9253             'Module::Build::ModuleInfo'=> '0.4202',
9254             'Module::Build::Notes' => '0.4202',
9255             'Module::Build::PPMMaker'=> '0.4202',
9256             'Module::Build::Platform::Default'=> '0.4202',
9257             'Module::Build::Platform::MacOS'=> '0.4202',
9258             'Module::Build::Platform::Unix'=> '0.4202',
9259             'Module::Build::Platform::VMS'=> '0.4202',
9260             'Module::Build::Platform::VOS'=> '0.4202',
9261             'Module::Build::Platform::Windows'=> '0.4202',
9262             'Module::Build::Platform::aix'=> '0.4202',
9263             'Module::Build::Platform::cygwin'=> '0.4202',
9264             'Module::Build::Platform::darwin'=> '0.4202',
9265             'Module::Build::Platform::os2'=> '0.4202',
9266             'Module::Build::PodParser'=> '0.4202',
9267             'Module::CoreList' => '3.01',
9268             'Module::CoreList::TieHashDelta'=> '3.01',
9269             'Module::CoreList::Utils'=> '3.01',
9270             'Opcode' => '1.27',
9271             'POSIX' => '1.36',
9272             'Package::Constants' => '0.04',
9273             'PerlIO::scalar' => '0.18',
9274             'PerlIO::via' => '0.13',
9275             'SDBM_File' => '1.10',
9276             'Socket' => '2.013',
9277             'TAP::Base' => '3.30',
9278             'TAP::Formatter::Base' => '3.30',
9279             'TAP::Formatter::Color' => '3.30',
9280             'TAP::Formatter::Console'=> '3.30',
9281             'TAP::Formatter::Console::ParallelSession'=> '3.30',
9282             'TAP::Formatter::Console::Session'=> '3.30',
9283             'TAP::Formatter::File' => '3.30',
9284             'TAP::Formatter::File::Session'=> '3.30',
9285             'TAP::Formatter::Session'=> '3.30',
9286             'TAP::Harness' => '3.30',
9287             'TAP::Harness::Env' => '3.30',
9288             'TAP::Object' => '3.30',
9289             'TAP::Parser' => '3.30',
9290             'TAP::Parser::Aggregator'=> '3.30',
9291             'TAP::Parser::Grammar' => '3.30',
9292             'TAP::Parser::Iterator' => '3.30',
9293             'TAP::Parser::Iterator::Array'=> '3.30',
9294             'TAP::Parser::Iterator::Process'=> '3.30',
9295             'TAP::Parser::Iterator::Stream'=> '3.30',
9296             'TAP::Parser::IteratorFactory'=> '3.30',
9297             'TAP::Parser::Multiplexer'=> '3.30',
9298             'TAP::Parser::Result' => '3.30',
9299             'TAP::Parser::Result::Bailout'=> '3.30',
9300             'TAP::Parser::Result::Comment'=> '3.30',
9301             'TAP::Parser::Result::Plan'=> '3.30',
9302             'TAP::Parser::Result::Pragma'=> '3.30',
9303             'TAP::Parser::Result::Test'=> '3.30',
9304             'TAP::Parser::Result::Unknown'=> '3.30',
9305             'TAP::Parser::Result::Version'=> '3.30',
9306             'TAP::Parser::Result::YAML'=> '3.30',
9307             'TAP::Parser::ResultFactory'=> '3.30',
9308             'TAP::Parser::Scheduler'=> '3.30',
9309             'TAP::Parser::Scheduler::Job'=> '3.30',
9310             'TAP::Parser::Scheduler::Spinner'=> '3.30',
9311             'TAP::Parser::Source' => '3.30',
9312             'TAP::Parser::SourceHandler'=> '3.30',
9313             'TAP::Parser::SourceHandler::Executable'=> '3.30',
9314             'TAP::Parser::SourceHandler::File'=> '3.30',
9315             'TAP::Parser::SourceHandler::Handle'=> '3.30',
9316             'TAP::Parser::SourceHandler::Perl'=> '3.30',
9317             'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9318             'TAP::Parser::YAMLish::Reader'=> '3.30',
9319             'TAP::Parser::YAMLish::Writer'=> '3.30',
9320             'Term::Cap' => '1.15',
9321             'Test::Builder' => '1.001002',
9322             'Test::Builder::Module' => '1.001002',
9323             'Test::Harness' => '3.30',
9324             'Test::More' => '1.001002',
9325             'Test::Simple' => '1.001002',
9326             'Tie::StdHandle' => '4.4',
9327             'Unicode::Collate' => '1.02',
9328             'Unicode::Collate::CJK::Korean'=> '1.02',
9329             'Unicode::Collate::Locale'=> '1.02',
9330             'XS::APItest' => '0.57',
9331             'XS::Typemap' => '0.12',
9332             'arybase' => '0.07',
9333             'bignum' => '0.37',
9334             'constant' => '1.29',
9335             'fields' => '2.17',
9336             'inc::latest' => '0.4202',
9337             'threads' => '1.90',
9338             'threads::shared' => '1.45',
9339             },
9340             removed => {
9341             }
9342             },
9343             5.019007 => {
9344             delta_from => 5.019006,
9345             changed => {
9346             'CGI' => '3.64',
9347             'CGI::Apache' => '1.02',
9348             'CGI::Carp' => '3.64',
9349             'CGI::Cookie' => '1.31',
9350             'CGI::Fast' => '1.10',
9351             'CGI::Pretty' => '3.64',
9352             'CGI::Push' => '1.06',
9353             'CGI::Switch' => '1.02',
9354             'CGI::Util' => '3.64',
9355             'CPAN::Meta' => '2.133380',
9356             'CPAN::Meta::Converter' => '2.133380',
9357             'CPAN::Meta::Feature' => '2.133380',
9358             'CPAN::Meta::History' => '2.133380',
9359             'CPAN::Meta::Prereqs' => '2.133380',
9360             'CPAN::Meta::Spec' => '2.133380',
9361             'CPAN::Meta::Validator' => '2.133380',
9362             'Config' => '5.019007',
9363             'Data::Dumper' => '2.150',
9364             'DynaLoader' => '1.22',
9365             'ExtUtils::Command::MM' => '6.84',
9366             'ExtUtils::Liblist' => '6.84',
9367             'ExtUtils::Liblist::Kid'=> '6.84',
9368             'ExtUtils::MM' => '6.84',
9369             'ExtUtils::MM_AIX' => '6.84',
9370             'ExtUtils::MM_Any' => '6.84',
9371             'ExtUtils::MM_BeOS' => '6.84',
9372             'ExtUtils::MM_Cygwin' => '6.84',
9373             'ExtUtils::MM_DOS' => '6.84',
9374             'ExtUtils::MM_Darwin' => '6.84',
9375             'ExtUtils::MM_MacOS' => '6.84',
9376             'ExtUtils::MM_NW5' => '6.84',
9377             'ExtUtils::MM_OS2' => '6.84',
9378             'ExtUtils::MM_QNX' => '6.84',
9379             'ExtUtils::MM_UWIN' => '6.84',
9380             'ExtUtils::MM_Unix' => '6.84',
9381             'ExtUtils::MM_VMS' => '6.84',
9382             'ExtUtils::MM_VOS' => '6.84',
9383             'ExtUtils::MM_Win32' => '6.84',
9384             'ExtUtils::MM_Win95' => '6.84',
9385             'ExtUtils::MY' => '6.84',
9386             'ExtUtils::MakeMaker' => '6.84',
9387             'ExtUtils::MakeMaker::Config'=> '6.84',
9388             'ExtUtils::Mkbootstrap' => '6.84',
9389             'ExtUtils::Mksymlists' => '6.84',
9390             'ExtUtils::testlib' => '6.84',
9391             'File::Fetch' => '0.46',
9392             'HTTP::Tiny' => '0.039',
9393             'Locale::Codes' => '3.28',
9394             'Locale::Codes::Constants'=> '3.28',
9395             'Locale::Codes::Country'=> '3.28',
9396             'Locale::Codes::Country_Codes'=> '3.28',
9397             'Locale::Codes::Country_Retired'=> '3.28',
9398             'Locale::Codes::Currency'=> '3.28',
9399             'Locale::Codes::Currency_Codes'=> '3.28',
9400             'Locale::Codes::Currency_Retired'=> '3.28',
9401             'Locale::Codes::LangExt'=> '3.28',
9402             'Locale::Codes::LangExt_Codes'=> '3.28',
9403             'Locale::Codes::LangExt_Retired'=> '3.28',
9404             'Locale::Codes::LangFam'=> '3.28',
9405             'Locale::Codes::LangFam_Codes'=> '3.28',
9406             'Locale::Codes::LangFam_Retired'=> '3.28',
9407             'Locale::Codes::LangVar'=> '3.28',
9408             'Locale::Codes::LangVar_Codes'=> '3.28',
9409             'Locale::Codes::LangVar_Retired'=> '3.28',
9410             'Locale::Codes::Language'=> '3.28',
9411             'Locale::Codes::Language_Codes'=> '3.28',
9412             'Locale::Codes::Language_Retired'=> '3.28',
9413             'Locale::Codes::Script' => '3.28',
9414             'Locale::Codes::Script_Codes'=> '3.28',
9415             'Locale::Codes::Script_Retired'=> '3.28',
9416             'Locale::Country' => '3.28',
9417             'Locale::Currency' => '3.28',
9418             'Locale::Language' => '3.28',
9419             'Locale::Script' => '3.28',
9420             'Module::Build' => '0.4203',
9421             'Module::Build::Base' => '0.4203',
9422             'Module::Build::Compat' => '0.4203',
9423             'Module::Build::Config' => '0.4203',
9424             'Module::Build::Cookbook'=> '0.4203',
9425             'Module::Build::Dumper' => '0.4203',
9426             'Module::Build::ModuleInfo'=> '0.4203',
9427             'Module::Build::Notes' => '0.4203',
9428             'Module::Build::PPMMaker'=> '0.4203',
9429             'Module::Build::Platform::Default'=> '0.4203',
9430             'Module::Build::Platform::MacOS'=> '0.4203',
9431             'Module::Build::Platform::Unix'=> '0.4203',
9432             'Module::Build::Platform::VMS'=> '0.4203',
9433             'Module::Build::Platform::VOS'=> '0.4203',
9434             'Module::Build::Platform::Windows'=> '0.4203',
9435             'Module::Build::Platform::aix'=> '0.4203',
9436             'Module::Build::Platform::cygwin'=> '0.4203',
9437             'Module::Build::Platform::darwin'=> '0.4203',
9438             'Module::Build::Platform::os2'=> '0.4203',
9439             'Module::Build::PodParser'=> '0.4203',
9440             'Module::CoreList' => '3.02',
9441             'Module::CoreList::TieHashDelta'=> '3.02',
9442             'Module::CoreList::Utils'=> '3.02',
9443             'POSIX' => '1.37',
9444             'PerlIO::encoding' => '0.17',
9445             'PerlIO::via' => '0.14',
9446             'SDBM_File' => '1.11',
9447             'Storable' => '2.48',
9448             'Time::Piece' => '1.24',
9449             'Time::Seconds' => '1.24',
9450             'Unicode::Collate' => '1.04',
9451             'Win32' => '0.48',
9452             'XS::APItest' => '0.58',
9453             'base' => '2.20',
9454             'constant' => '1.30',
9455             'inc::latest' => '0.4203',
9456             'threads' => '1.91',
9457             },
9458             removed => {
9459             }
9460             },
9461             5.019008 => {
9462             delta_from => 5.019007,
9463             changed => {
9464             'Config' => '5.019008',
9465             'DynaLoader' => '1.24',
9466             'Encode' => '2.57',
9467             'Errno' => '1.20_02',
9468             'ExtUtils::CBuilder' => '0.280213',
9469             'ExtUtils::CBuilder::Base'=> '0.280213',
9470             'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9471             'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9472             'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9473             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9474             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9475             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9476             'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9477             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9478             'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9479             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9480             'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9481             'ExtUtils::Command::MM' => '6.86',
9482             'ExtUtils::Liblist' => '6.86',
9483             'ExtUtils::Liblist::Kid'=> '6.86',
9484             'ExtUtils::MM' => '6.86',
9485             'ExtUtils::MM_AIX' => '6.86',
9486             'ExtUtils::MM_Any' => '6.86',
9487             'ExtUtils::MM_BeOS' => '6.86',
9488             'ExtUtils::MM_Cygwin' => '6.86',
9489             'ExtUtils::MM_DOS' => '6.86',
9490             'ExtUtils::MM_Darwin' => '6.86',
9491             'ExtUtils::MM_MacOS' => '6.86',
9492             'ExtUtils::MM_NW5' => '6.86',
9493             'ExtUtils::MM_OS2' => '6.86',
9494             'ExtUtils::MM_QNX' => '6.86',
9495             'ExtUtils::MM_UWIN' => '6.86',
9496             'ExtUtils::MM_Unix' => '6.86',
9497             'ExtUtils::MM_VMS' => '6.86',
9498             'ExtUtils::MM_VOS' => '6.86',
9499             'ExtUtils::MM_Win32' => '6.86',
9500             'ExtUtils::MM_Win95' => '6.86',
9501             'ExtUtils::MY' => '6.86',
9502             'ExtUtils::MakeMaker' => '6.86',
9503             'ExtUtils::MakeMaker::Config'=> '6.86',
9504             'ExtUtils::Mkbootstrap' => '6.86',
9505             'ExtUtils::Mksymlists' => '6.86',
9506             'ExtUtils::testlib' => '6.86',
9507             'File::Copy' => '2.29',
9508             'Hash::Util::FieldHash' => '1.14',
9509             'IO::Socket::IP' => '0.26',
9510             'IO::Socket::UNIX' => '1.26',
9511             'List::Util' => '1.36',
9512             'List::Util::XS' => '1.36',
9513             'Module::Build' => '0.4204',
9514             'Module::Build::Base' => '0.4204',
9515             'Module::Build::Compat' => '0.4204',
9516             'Module::Build::Config' => '0.4204',
9517             'Module::Build::Cookbook'=> '0.4204',
9518             'Module::Build::Dumper' => '0.4204',
9519             'Module::Build::ModuleInfo'=> '0.4204',
9520             'Module::Build::Notes' => '0.4204',
9521             'Module::Build::PPMMaker'=> '0.4204',
9522             'Module::Build::Platform::Default'=> '0.4204',
9523             'Module::Build::Platform::MacOS'=> '0.4204',
9524             'Module::Build::Platform::Unix'=> '0.4204',
9525             'Module::Build::Platform::VMS'=> '0.4204',
9526             'Module::Build::Platform::VOS'=> '0.4204',
9527             'Module::Build::Platform::Windows'=> '0.4204',
9528             'Module::Build::Platform::aix'=> '0.4204',
9529             'Module::Build::Platform::cygwin'=> '0.4204',
9530             'Module::Build::Platform::darwin'=> '0.4204',
9531             'Module::Build::Platform::os2'=> '0.4204',
9532             'Module::Build::PodParser'=> '0.4204',
9533             'Module::CoreList' => '3.04',
9534             'Module::CoreList::TieHashDelta'=> '3.04',
9535             'Module::CoreList::Utils'=> '3.04',
9536             'Module::Load' => '0.28',
9537             'Module::Load::Conditional'=> '0.60',
9538             'Net::Config' => '1.13',
9539             'Net::FTP::A' => '1.19',
9540             'POSIX' => '1.38_01',
9541             'Perl::OSType' => '1.007',
9542             'PerlIO::encoding' => '0.18',
9543             'Pod::Perldoc' => '3.21',
9544             'Pod::Perldoc::BaseTo' => '3.21',
9545             'Pod::Perldoc::GetOptsOO'=> '3.21',
9546             'Pod::Perldoc::ToANSI' => '3.21',
9547             'Pod::Perldoc::ToChecker'=> '3.21',
9548             'Pod::Perldoc::ToMan' => '3.21',
9549             'Pod::Perldoc::ToNroff' => '3.21',
9550             'Pod::Perldoc::ToPod' => '3.21',
9551             'Pod::Perldoc::ToRtf' => '3.21',
9552             'Pod::Perldoc::ToTerm' => '3.21',
9553             'Pod::Perldoc::ToText' => '3.21',
9554             'Pod::Perldoc::ToTk' => '3.21',
9555             'Pod::Perldoc::ToXml' => '3.21',
9556             'Scalar::Util' => '1.36',
9557             'Time::Piece' => '1.27',
9558             'Time::Seconds' => '1.27',
9559             'Unicode::UCD' => '0.57',
9560             'XS::APItest' => '0.59',
9561             'XSLoader' => '0.17',
9562             'base' => '2.21',
9563             'constant' => '1.31',
9564             'inc::latest' => '0.4204',
9565             'threads::shared' => '1.46',
9566             'version' => '0.9907',
9567             'version::regex' => '0.9907',
9568             'version::vpp' => '0.9907',
9569             'warnings' => '1.21',
9570             },
9571             removed => {
9572             }
9573             },
9574             5.019009 => {
9575             delta_from => 5.019008,
9576             changed => {
9577             'B' => '1.48',
9578             'B::Concise' => '0.992',
9579             'B::Deparse' => '1.25',
9580             'CGI' => '3.65',
9581             'CPAN::Meta::YAML' => '0.011',
9582             'Compress::Raw::Bzip2' => '2.064',
9583             'Compress::Raw::Zlib' => '2.065',
9584             'Compress::Zlib' => '2.064',
9585             'Config' => '5.019009',
9586             'Config::Perl::V' => '0.20',
9587             'Cwd' => '3.47',
9588             'Devel::Peek' => '1.16',
9589             'Digest::SHA' => '5.87',
9590             'DynaLoader' => '1.25',
9591             'English' => '1.09',
9592             'ExtUtils::CBuilder' => '0.280216',
9593             'ExtUtils::CBuilder::Base'=> '0.280216',
9594             'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9595             'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9596             'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9597             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9598             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9599             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9600             'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9601             'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9602             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9603             'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9604             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9605             'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9606             'ExtUtils::Command::MM' => '6.88',
9607             'ExtUtils::Embed' => '1.32',
9608             'ExtUtils::Install' => '1.62',
9609             'ExtUtils::Installed' => '1.999004',
9610             'ExtUtils::Liblist' => '6.88',
9611             'ExtUtils::Liblist::Kid'=> '6.88',
9612             'ExtUtils::MM' => '6.88',
9613             'ExtUtils::MM_AIX' => '6.88',
9614             'ExtUtils::MM_Any' => '6.88',
9615             'ExtUtils::MM_BeOS' => '6.88',
9616             'ExtUtils::MM_Cygwin' => '6.88',
9617             'ExtUtils::MM_DOS' => '6.88',
9618             'ExtUtils::MM_Darwin' => '6.88',
9619             'ExtUtils::MM_MacOS' => '6.88',
9620             'ExtUtils::MM_NW5' => '6.88',
9621             'ExtUtils::MM_OS2' => '6.88',
9622             'ExtUtils::MM_QNX' => '6.88',
9623             'ExtUtils::MM_UWIN' => '6.88',
9624             'ExtUtils::MM_Unix' => '6.88',
9625             'ExtUtils::MM_VMS' => '6.88',
9626             'ExtUtils::MM_VOS' => '6.88',
9627             'ExtUtils::MM_Win32' => '6.88',
9628             'ExtUtils::MM_Win95' => '6.88',
9629             'ExtUtils::MY' => '6.88',
9630             'ExtUtils::MakeMaker' => '6.88',
9631             'ExtUtils::MakeMaker::Config'=> '6.88',
9632             'ExtUtils::Mkbootstrap' => '6.88',
9633             'ExtUtils::Mksymlists' => '6.88',
9634             'ExtUtils::Packlist' => '1.47',
9635             'ExtUtils::testlib' => '6.88',
9636             'Fatal' => '2.23',
9637             'File::Fetch' => '0.48',
9638             'File::Spec' => '3.47',
9639             'File::Spec::Cygwin' => '3.47',
9640             'File::Spec::Epoc' => '3.47',
9641             'File::Spec::Functions' => '3.47',
9642             'File::Spec::Mac' => '3.47',
9643             'File::Spec::OS2' => '3.47',
9644             'File::Spec::Unix' => '3.47',
9645             'File::Spec::VMS' => '3.47',
9646             'File::Spec::Win32' => '3.47',
9647             'HTTP::Tiny' => '0.042',
9648             'IO::Compress::Adapter::Bzip2'=> '2.064',
9649             'IO::Compress::Adapter::Deflate'=> '2.064',
9650             'IO::Compress::Adapter::Identity'=> '2.064',
9651             'IO::Compress::Base' => '2.064',
9652             'IO::Compress::Base::Common'=> '2.064',
9653             'IO::Compress::Bzip2' => '2.064',
9654             'IO::Compress::Deflate' => '2.064',
9655             'IO::Compress::Gzip' => '2.064',
9656             'IO::Compress::Gzip::Constants'=> '2.064',
9657             'IO::Compress::RawDeflate'=> '2.064',
9658             'IO::Compress::Zip' => '2.064',
9659             'IO::Compress::Zip::Constants'=> '2.064',
9660             'IO::Compress::Zlib::Constants'=> '2.064',
9661             'IO::Compress::Zlib::Extra'=> '2.064',
9662             'IO::Socket::INET' => '1.35',
9663             'IO::Socket::IP' => '0.28',
9664             'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9665             'IO::Uncompress::Adapter::Identity'=> '2.064',
9666             'IO::Uncompress::Adapter::Inflate'=> '2.064',
9667             'IO::Uncompress::AnyInflate'=> '2.064',
9668             'IO::Uncompress::AnyUncompress'=> '2.064',
9669             'IO::Uncompress::Base' => '2.064',
9670             'IO::Uncompress::Bunzip2'=> '2.064',
9671             'IO::Uncompress::Gunzip'=> '2.064',
9672             'IO::Uncompress::Inflate'=> '2.064',
9673             'IO::Uncompress::RawInflate'=> '2.064',
9674             'IO::Uncompress::Unzip' => '2.064',
9675             'IPC::Cmd' => '0.92',
9676             'List::Util' => '1.38',
9677             'List::Util::XS' => '1.38',
9678             'Locale::Codes' => '3.29',
9679             'Locale::Codes::Constants'=> '3.29',
9680             'Locale::Codes::Country'=> '3.29',
9681             'Locale::Codes::Country_Codes'=> '3.29',
9682             'Locale::Codes::Country_Retired'=> '3.29',
9683             'Locale::Codes::Currency'=> '3.29',
9684             'Locale::Codes::Currency_Codes'=> '3.29',
9685             'Locale::Codes::Currency_Retired'=> '3.29',
9686             'Locale::Codes::LangExt'=> '3.29',
9687             'Locale::Codes::LangExt_Codes'=> '3.29',
9688             'Locale::Codes::LangExt_Retired'=> '3.29',
9689             'Locale::Codes::LangFam'=> '3.29',
9690             'Locale::Codes::LangFam_Codes'=> '3.29',
9691             'Locale::Codes::LangFam_Retired'=> '3.29',
9692             'Locale::Codes::LangVar'=> '3.29',
9693             'Locale::Codes::LangVar_Codes'=> '3.29',
9694             'Locale::Codes::LangVar_Retired'=> '3.29',
9695             'Locale::Codes::Language'=> '3.29',
9696             'Locale::Codes::Language_Codes'=> '3.29',
9697             'Locale::Codes::Language_Retired'=> '3.29',
9698             'Locale::Codes::Script' => '3.29',
9699             'Locale::Codes::Script_Codes'=> '3.29',
9700             'Locale::Codes::Script_Retired'=> '3.29',
9701             'Locale::Country' => '3.29',
9702             'Locale::Currency' => '3.29',
9703             'Locale::Language' => '3.29',
9704             'Locale::Script' => '3.29',
9705             'Module::Build' => '0.4205',
9706             'Module::Build::Base' => '0.4205',
9707             'Module::Build::Compat' => '0.4205',
9708             'Module::Build::Config' => '0.4205',
9709             'Module::Build::Cookbook'=> '0.4205',
9710             'Module::Build::Dumper' => '0.4205',
9711             'Module::Build::ModuleInfo'=> '0.4205',
9712             'Module::Build::Notes' => '0.4205',
9713             'Module::Build::PPMMaker'=> '0.4205',
9714             'Module::Build::Platform::Default'=> '0.4205',
9715             'Module::Build::Platform::MacOS'=> '0.4205',
9716             'Module::Build::Platform::Unix'=> '0.4205',
9717             'Module::Build::Platform::VMS'=> '0.4205',
9718             'Module::Build::Platform::VOS'=> '0.4205',
9719             'Module::Build::Platform::Windows'=> '0.4205',
9720             'Module::Build::Platform::aix'=> '0.4205',
9721             'Module::Build::Platform::cygwin'=> '0.4205',
9722             'Module::Build::Platform::darwin'=> '0.4205',
9723             'Module::Build::Platform::os2'=> '0.4205',
9724             'Module::Build::PodParser'=> '0.4205',
9725             'Module::CoreList' => '3.06',
9726             'Module::CoreList::TieHashDelta'=> '3.06',
9727             'Module::CoreList::Utils'=> '3.06',
9728             'Module::Load' => '0.30',
9729             'Module::Load::Conditional'=> '0.62',
9730             'Net::Domain' => '2.23',
9731             'Net::FTP' => '2.79',
9732             'Net::NNTP' => '2.26',
9733             'Net::POP3' => '2.31',
9734             'Net::Ping' => '2.43',
9735             'Net::SMTP' => '2.33',
9736             'POSIX' => '1.38_02',
9737             'Parse::CPAN::Meta' => '1.4413',
9738             'Pod::Escapes' => '1.06',
9739             'Pod::Find' => '1.62',
9740             'Pod::InputObjects' => '1.62',
9741             'Pod::ParseUtils' => '1.62',
9742             'Pod::Parser' => '1.62',
9743             'Pod::Select' => '1.62',
9744             'Scalar::Util' => '1.38',
9745             'autodie' => '2.23',
9746             'autodie::exception' => '2.23',
9747             'autodie::exception::system'=> '2.23',
9748             'autodie::hints' => '2.23',
9749             'autodie::skip' => '2.23',
9750             'diagnostics' => '1.34',
9751             'feature' => '1.35',
9752             'inc::latest' => '0.4205',
9753             'locale' => '1.03',
9754             'mro' => '1.15',
9755             'threads' => '1.92',
9756             'version' => '0.9908',
9757             'version::regex' => '0.9908',
9758             'version::vpp' => '0.9908',
9759             'warnings' => '1.22',
9760             },
9761             removed => {
9762             }
9763             },
9764             5.01901 => {
9765             delta_from => 5.019009,
9766             changed => {
9767             'App::Cpan' => '1.62',
9768             'Attribute::Handlers' => '0.96',
9769             'B::Deparse' => '1.26',
9770             'CPAN' => '2.04',
9771             'CPAN::Bundle' => '5.5001',
9772             'CPAN::Complete' => '5.5001',
9773             'CPAN::Distribution' => '2.01',
9774             'CPAN::Distroprefs' => '6.0001',
9775             'CPAN::FirstTime' => '5.5305',
9776             'CPAN::Meta' => '2.140640',
9777             'CPAN::Meta::Converter' => '2.140640',
9778             'CPAN::Meta::Feature' => '2.140640',
9779             'CPAN::Meta::History' => '2.140640',
9780             'CPAN::Meta::Prereqs' => '2.140640',
9781             'CPAN::Meta::Spec' => '2.140640',
9782             'CPAN::Meta::Validator' => '2.140640',
9783             'CPAN::Meta::YAML' => '0.012',
9784             'CPAN::Queue' => '5.5002',
9785             'CPAN::Shell' => '5.5003',
9786             'CPAN::Tarzip' => '5.5012',
9787             'CPAN::Version' => '5.5003',
9788             'Carp' => '1.33',
9789             'Carp::Heavy' => '1.33',
9790             'Config' => '5.019010',
9791             'Data::Dumper' => '2.151',
9792             'Devel::PPPort' => '3.22',
9793             'Digest::SHA' => '5.88',
9794             'ExtUtils::Command::MM' => '6.92',
9795             'ExtUtils::Install' => '1.63',
9796             'ExtUtils::Installed' => '1.999005',
9797             'ExtUtils::Liblist' => '6.92',
9798             'ExtUtils::Liblist::Kid'=> '6.92',
9799             'ExtUtils::MM' => '6.92',
9800             'ExtUtils::MM_AIX' => '6.92',
9801             'ExtUtils::MM_Any' => '6.92',
9802             'ExtUtils::MM_BeOS' => '6.92',
9803             'ExtUtils::MM_Cygwin' => '6.92',
9804             'ExtUtils::MM_DOS' => '6.92',
9805             'ExtUtils::MM_Darwin' => '6.92',
9806             'ExtUtils::MM_MacOS' => '6.92',
9807             'ExtUtils::MM_NW5' => '6.92',
9808             'ExtUtils::MM_OS2' => '6.92',
9809             'ExtUtils::MM_QNX' => '6.92',
9810             'ExtUtils::MM_UWIN' => '6.92',
9811             'ExtUtils::MM_Unix' => '6.92',
9812             'ExtUtils::MM_VMS' => '6.92',
9813             'ExtUtils::MM_VOS' => '6.92',
9814             'ExtUtils::MM_Win32' => '6.92',
9815             'ExtUtils::MM_Win95' => '6.92',
9816             'ExtUtils::MY' => '6.92',
9817             'ExtUtils::MakeMaker' => '6.92',
9818             'ExtUtils::MakeMaker::Config'=> '6.92',
9819             'ExtUtils::Mkbootstrap' => '6.92',
9820             'ExtUtils::Mksymlists' => '6.92',
9821             'ExtUtils::Packlist' => '1.48',
9822             'ExtUtils::ParseXS' => '3.24',
9823             'ExtUtils::ParseXS::Constants'=> '3.24',
9824             'ExtUtils::ParseXS::CountLines'=> '3.24',
9825             'ExtUtils::ParseXS::Eval'=> '3.24',
9826             'ExtUtils::ParseXS::Utilities'=> '3.24',
9827             'ExtUtils::Typemaps' => '3.24',
9828             'ExtUtils::Typemaps::Cmd'=> '3.24',
9829             'ExtUtils::Typemaps::InputMap'=> '3.24',
9830             'ExtUtils::Typemaps::OutputMap'=> '3.24',
9831             'ExtUtils::Typemaps::Type'=> '3.24',
9832             'ExtUtils::testlib' => '6.92',
9833             'File::Find' => '1.27',
9834             'Filter::Simple' => '0.91',
9835             'HTTP::Tiny' => '0.043',
9836             'Hash::Util::FieldHash' => '1.15',
9837             'IO' => '1.31',
9838             'IO::Socket::IP' => '0.29',
9839             'Locale::Codes' => '3.30',
9840             'Locale::Codes::Constants'=> '3.30',
9841             'Locale::Codes::Country'=> '3.30',
9842             'Locale::Codes::Country_Codes'=> '3.30',
9843             'Locale::Codes::Country_Retired'=> '3.30',
9844             'Locale::Codes::Currency'=> '3.30',
9845             'Locale::Codes::Currency_Codes'=> '3.30',
9846             'Locale::Codes::Currency_Retired'=> '3.30',
9847             'Locale::Codes::LangExt'=> '3.30',
9848             'Locale::Codes::LangExt_Codes'=> '3.30',
9849             'Locale::Codes::LangExt_Retired'=> '3.30',
9850             'Locale::Codes::LangFam'=> '3.30',
9851             'Locale::Codes::LangFam_Codes'=> '3.30',
9852             'Locale::Codes::LangFam_Retired'=> '3.30',
9853             'Locale::Codes::LangVar'=> '3.30',
9854             'Locale::Codes::LangVar_Codes'=> '3.30',
9855             'Locale::Codes::LangVar_Retired'=> '3.30',
9856             'Locale::Codes::Language'=> '3.30',
9857             'Locale::Codes::Language_Codes'=> '3.30',
9858             'Locale::Codes::Language_Retired'=> '3.30',
9859             'Locale::Codes::Script' => '3.30',
9860             'Locale::Codes::Script_Codes'=> '3.30',
9861             'Locale::Codes::Script_Retired'=> '3.30',
9862             'Locale::Country' => '3.30',
9863             'Locale::Currency' => '3.30',
9864             'Locale::Language' => '3.30',
9865             'Locale::Script' => '3.30',
9866             'Module::CoreList' => '3.09',
9867             'Module::CoreList::TieHashDelta'=> '3.09',
9868             'Module::CoreList::Utils'=> '3.09',
9869             'Module::Load' => '0.32',
9870             'POSIX' => '1.38_03',
9871             'Parse::CPAN::Meta' => '1.4414',
9872             'Pod::Perldoc' => '3.23',
9873             'Pod::Perldoc::BaseTo' => '3.23',
9874             'Pod::Perldoc::GetOptsOO'=> '3.23',
9875             'Pod::Perldoc::ToANSI' => '3.23',
9876             'Pod::Perldoc::ToChecker'=> '3.23',
9877             'Pod::Perldoc::ToMan' => '3.23',
9878             'Pod::Perldoc::ToNroff' => '3.23',
9879             'Pod::Perldoc::ToPod' => '3.23',
9880             'Pod::Perldoc::ToRtf' => '3.23',
9881             'Pod::Perldoc::ToTerm' => '3.23',
9882             'Pod::Perldoc::ToText' => '3.23',
9883             'Pod::Perldoc::ToTk' => '3.23',
9884             'Pod::Perldoc::ToXml' => '3.23',
9885             'Thread::Queue' => '3.05',
9886             'XS::APItest' => '0.60',
9887             'XS::Typemap' => '0.13',
9888             'autouse' => '1.08',
9889             'base' => '2.22',
9890             'charnames' => '1.40',
9891             'feature' => '1.36',
9892             'mro' => '1.16',
9893             'threads' => '1.93',
9894             'warnings' => '1.23',
9895             'warnings::register' => '1.03',
9896             },
9897             removed => {
9898             }
9899             },
9900             5.019011 => {
9901             delta_from => 5.01901,
9902             changed => {
9903             'CPAN' => '2.05',
9904             'CPAN::Distribution' => '2.02',
9905             'CPAN::FirstTime' => '5.5306',
9906             'CPAN::Shell' => '5.5004',
9907             'Carp' => '1.3301',
9908             'Carp::Heavy' => '1.3301',
9909             'Config' => '5.019011',
9910             'ExtUtils::Command::MM' => '6.94',
9911             'ExtUtils::Install' => '1.67',
9912             'ExtUtils::Liblist' => '6.94',
9913             'ExtUtils::Liblist::Kid'=> '6.94',
9914             'ExtUtils::MM' => '6.94',
9915             'ExtUtils::MM_AIX' => '6.94',
9916             'ExtUtils::MM_Any' => '6.94',
9917             'ExtUtils::MM_BeOS' => '6.94',
9918             'ExtUtils::MM_Cygwin' => '6.94',
9919             'ExtUtils::MM_DOS' => '6.94',
9920             'ExtUtils::MM_Darwin' => '6.94',
9921             'ExtUtils::MM_MacOS' => '6.94',
9922             'ExtUtils::MM_NW5' => '6.94',
9923             'ExtUtils::MM_OS2' => '6.94',
9924             'ExtUtils::MM_QNX' => '6.94',
9925             'ExtUtils::MM_UWIN' => '6.94',
9926             'ExtUtils::MM_Unix' => '6.94',
9927             'ExtUtils::MM_VMS' => '6.94',
9928             'ExtUtils::MM_VOS' => '6.94',
9929             'ExtUtils::MM_Win32' => '6.94',
9930             'ExtUtils::MM_Win95' => '6.94',
9931             'ExtUtils::MY' => '6.94',
9932             'ExtUtils::MakeMaker' => '6.94',
9933             'ExtUtils::MakeMaker::Config'=> '6.94',
9934             'ExtUtils::Mkbootstrap' => '6.94',
9935             'ExtUtils::Mksymlists' => '6.94',
9936             'ExtUtils::testlib' => '6.94',
9937             'Module::CoreList' => '3.10',
9938             'Module::CoreList::TieHashDelta'=> '3.10',
9939             'Module::CoreList::Utils'=> '3.10',
9940             'PerlIO' => '1.09',
9941             'Storable' => '2.49',
9942             'Win32' => '0.49',
9943             'experimental' => '0.007',
9944             },
9945             removed => {
9946             }
9947             },
9948             5.020000 => {
9949             delta_from => 5.019011,
9950             changed => {
9951             'Config' => '5.02',
9952             'Devel::PPPort' => '3.21',
9953             'Encode' => '2.60',
9954             'Errno' => '1.20_03',
9955             'ExtUtils::Command::MM' => '6.98',
9956             'ExtUtils::Liblist' => '6.98',
9957             'ExtUtils::Liblist::Kid'=> '6.98',
9958             'ExtUtils::MM' => '6.98',
9959             'ExtUtils::MM_AIX' => '6.98',
9960             'ExtUtils::MM_Any' => '6.98',
9961             'ExtUtils::MM_BeOS' => '6.98',
9962             'ExtUtils::MM_Cygwin' => '6.98',
9963             'ExtUtils::MM_DOS' => '6.98',
9964             'ExtUtils::MM_Darwin' => '6.98',
9965             'ExtUtils::MM_MacOS' => '6.98',
9966             'ExtUtils::MM_NW5' => '6.98',
9967             'ExtUtils::MM_OS2' => '6.98',
9968             'ExtUtils::MM_QNX' => '6.98',
9969             'ExtUtils::MM_UWIN' => '6.98',
9970             'ExtUtils::MM_Unix' => '6.98',
9971             'ExtUtils::MM_VMS' => '6.98',
9972             'ExtUtils::MM_VOS' => '6.98',
9973             'ExtUtils::MM_Win32' => '6.98',
9974             'ExtUtils::MM_Win95' => '6.98',
9975             'ExtUtils::MY' => '6.98',
9976             'ExtUtils::MakeMaker' => '6.98',
9977             'ExtUtils::MakeMaker::Config'=> '6.98',
9978             'ExtUtils::Miniperl' => '1.01',
9979             'ExtUtils::Mkbootstrap' => '6.98',
9980             'ExtUtils::Mksymlists' => '6.98',
9981             'ExtUtils::testlib' => '6.98',
9982             'Pod::Functions::Functions'=> '1.08',
9983             },
9984             removed => {
9985             }
9986             },
9987             5.021000 => {
9988             delta_from => 5.020000,
9989             changed => {
9990             'Module::CoreList' => '5.021001',
9991             'Module::CoreList::TieHashDelta'=> '5.021001',
9992             'Module::CoreList::Utils'=> '5.021001',
9993             'feature' => '1.37',
9994             },
9995             removed => {
9996             'CGI' => 1,
9997             'CGI::Apache' => 1,
9998             'CGI::Carp' => 1,
9999             'CGI::Cookie' => 1,
10000             'CGI::Fast' => 1,
10001             'CGI::Pretty' => 1,
10002             'CGI::Push' => 1,
10003             'CGI::Switch' => 1,
10004             'CGI::Util' => 1,
10005             'Module::Build' => 1,
10006             'Module::Build::Base' => 1,
10007             'Module::Build::Compat' => 1,
10008             'Module::Build::Config' => 1,
10009             'Module::Build::ConfigData'=> 1,
10010             'Module::Build::Cookbook'=> 1,
10011             'Module::Build::Dumper' => 1,
10012             'Module::Build::ModuleInfo'=> 1,
10013             'Module::Build::Notes' => 1,
10014             'Module::Build::PPMMaker'=> 1,
10015             'Module::Build::Platform::Default'=> 1,
10016             'Module::Build::Platform::MacOS'=> 1,
10017             'Module::Build::Platform::Unix'=> 1,
10018             'Module::Build::Platform::VMS'=> 1,
10019             'Module::Build::Platform::VOS'=> 1,
10020             'Module::Build::Platform::Windows'=> 1,
10021             'Module::Build::Platform::aix'=> 1,
10022             'Module::Build::Platform::cygwin'=> 1,
10023             'Module::Build::Platform::darwin'=> 1,
10024             'Module::Build::Platform::os2'=> 1,
10025             'Module::Build::PodParser'=> 1,
10026             'Module::Build::Version'=> 1,
10027             'Module::Build::YAML' => 1,
10028             'Package::Constants' => 1,
10029             'inc::latest' => 1,
10030             }
10031             },
10032             5.021001 => {
10033             delta_from => 5.021000,
10034             changed => {
10035             'App::Prove' => '3.32',
10036             'App::Prove::State' => '3.32',
10037             'App::Prove::State::Result'=> '3.32',
10038             'App::Prove::State::Result::Test'=> '3.32',
10039             'Archive::Tar' => '2.00',
10040             'Archive::Tar::Constant'=> '2.00',
10041             'Archive::Tar::File' => '2.00',
10042             'B' => '1.49',
10043             'B::Deparse' => '1.27',
10044             'Benchmark' => '1.19',
10045             'CPAN::Meta' => '2.141520',
10046             'CPAN::Meta::Converter' => '2.141520',
10047             'CPAN::Meta::Feature' => '2.141520',
10048             'CPAN::Meta::History' => '2.141520',
10049             'CPAN::Meta::Prereqs' => '2.141520',
10050             'CPAN::Meta::Spec' => '2.141520',
10051             'CPAN::Meta::Validator' => '2.141520',
10052             'Carp' => '1.34',
10053             'Carp::Heavy' => '1.34',
10054             'Config' => '5.021001',
10055             'Cwd' => '3.48',
10056             'Data::Dumper' => '2.152',
10057             'Devel::PPPort' => '3.24',
10058             'Devel::Peek' => '1.17',
10059             'Digest::SHA' => '5.92',
10060             'DynaLoader' => '1.26',
10061             'Encode' => '2.62',
10062             'Errno' => '1.20_04',
10063             'Exporter' => '5.71',
10064             'Exporter::Heavy' => '5.71',
10065             'ExtUtils::Install' => '1.68',
10066             'ExtUtils::Miniperl' => '1.02',
10067             'ExtUtils::ParseXS' => '3.25',
10068             'ExtUtils::ParseXS::Constants'=> '3.25',
10069             'ExtUtils::ParseXS::CountLines'=> '3.25',
10070             'ExtUtils::ParseXS::Eval'=> '3.25',
10071             'ExtUtils::ParseXS::Utilities'=> '3.25',
10072             'ExtUtils::Typemaps' => '3.25',
10073             'ExtUtils::Typemaps::Cmd'=> '3.25',
10074             'ExtUtils::Typemaps::InputMap'=> '3.25',
10075             'ExtUtils::Typemaps::OutputMap'=> '3.25',
10076             'ExtUtils::Typemaps::Type'=> '3.25',
10077             'Fatal' => '2.25',
10078             'File::Spec' => '3.48',
10079             'File::Spec::Cygwin' => '3.48',
10080             'File::Spec::Epoc' => '3.48',
10081             'File::Spec::Functions' => '3.48',
10082             'File::Spec::Mac' => '3.48',
10083             'File::Spec::OS2' => '3.48',
10084             'File::Spec::Unix' => '3.48',
10085             'File::Spec::VMS' => '3.48',
10086             'File::Spec::Win32' => '3.48',
10087             'Hash::Util' => '0.17',
10088             'IO' => '1.32',
10089             'List::Util' => '1.39',
10090             'List::Util::XS' => '1.39',
10091             'Locale::Codes' => '3.31',
10092             'Locale::Codes::Constants'=> '3.31',
10093             'Locale::Codes::Country'=> '3.31',
10094             'Locale::Codes::Country_Codes'=> '3.31',
10095             'Locale::Codes::Country_Retired'=> '3.31',
10096             'Locale::Codes::Currency'=> '3.31',
10097             'Locale::Codes::Currency_Codes'=> '3.31',
10098             'Locale::Codes::Currency_Retired'=> '3.31',
10099             'Locale::Codes::LangExt'=> '3.31',
10100             'Locale::Codes::LangExt_Codes'=> '3.31',
10101             'Locale::Codes::LangExt_Retired'=> '3.31',
10102             'Locale::Codes::LangFam'=> '3.31',
10103             'Locale::Codes::LangFam_Codes'=> '3.31',
10104             'Locale::Codes::LangFam_Retired'=> '3.31',
10105             'Locale::Codes::LangVar'=> '3.31',
10106             'Locale::Codes::LangVar_Codes'=> '3.31',
10107             'Locale::Codes::LangVar_Retired'=> '3.31',
10108             'Locale::Codes::Language'=> '3.31',
10109             'Locale::Codes::Language_Codes'=> '3.31',
10110             'Locale::Codes::Language_Retired'=> '3.31',
10111             'Locale::Codes::Script' => '3.31',
10112             'Locale::Codes::Script_Codes'=> '3.31',
10113             'Locale::Codes::Script_Retired'=> '3.31',
10114             'Locale::Country' => '3.31',
10115             'Locale::Currency' => '3.31',
10116             'Locale::Language' => '3.31',
10117             'Locale::Script' => '3.31',
10118             'Math::BigFloat' => '1.9994',
10119             'Math::BigInt' => '1.9995',
10120             'Math::BigInt::Calc' => '1.9994',
10121             'Math::BigInt::CalcEmu' => '1.9994',
10122             'Math::BigRat' => '0.2608',
10123             'Module::CoreList' => '5.021001_01',
10124             'Module::CoreList::TieHashDelta'=> '5.021001_01',
10125             'Module::CoreList::Utils'=> '5.021001_01',
10126             'Module::Metadata' => '1.000024',
10127             'NDBM_File' => '1.13',
10128             'Net::Config' => '1.14',
10129             'Net::SMTP' => '2.34',
10130             'Net::Time' => '2.11',
10131             'OS2::Process' => '1.10',
10132             'POSIX' => '1.40',
10133             'PerlIO::encoding' => '0.19',
10134             'PerlIO::mmap' => '0.013',
10135             'PerlIO::scalar' => '0.19',
10136             'PerlIO::via' => '0.15',
10137             'Pod::Html' => '1.22',
10138             'Scalar::Util' => '1.39',
10139             'SelfLoader' => '1.22',
10140             'Socket' => '2.014',
10141             'Storable' => '2.51',
10142             'TAP::Base' => '3.32',
10143             'TAP::Formatter::Base' => '3.32',
10144             'TAP::Formatter::Color' => '3.32',
10145             'TAP::Formatter::Console'=> '3.32',
10146             'TAP::Formatter::Console::ParallelSession'=> '3.32',
10147             'TAP::Formatter::Console::Session'=> '3.32',
10148             'TAP::Formatter::File' => '3.32',
10149             'TAP::Formatter::File::Session'=> '3.32',
10150             'TAP::Formatter::Session'=> '3.32',
10151             'TAP::Harness' => '3.32',
10152             'TAP::Harness::Env' => '3.32',
10153             'TAP::Object' => '3.32',
10154             'TAP::Parser' => '3.32',
10155             'TAP::Parser::Aggregator'=> '3.32',
10156             'TAP::Parser::Grammar' => '3.32',
10157             'TAP::Parser::Iterator' => '3.32',
10158             'TAP::Parser::Iterator::Array'=> '3.32',
10159             'TAP::Parser::Iterator::Process'=> '3.32',
10160             'TAP::Parser::Iterator::Stream'=> '3.32',
10161             'TAP::Parser::IteratorFactory'=> '3.32',
10162             'TAP::Parser::Multiplexer'=> '3.32',
10163             'TAP::Parser::Result' => '3.32',
10164             'TAP::Parser::Result::Bailout'=> '3.32',
10165             'TAP::Parser::Result::Comment'=> '3.32',
10166             'TAP::Parser::Result::Plan'=> '3.32',
10167             'TAP::Parser::Result::Pragma'=> '3.32',
10168             'TAP::Parser::Result::Test'=> '3.32',
10169             'TAP::Parser::Result::Unknown'=> '3.32',
10170             'TAP::Parser::Result::Version'=> '3.32',
10171             'TAP::Parser::Result::YAML'=> '3.32',
10172             'TAP::Parser::ResultFactory'=> '3.32',
10173             'TAP::Parser::Scheduler'=> '3.32',
10174             'TAP::Parser::Scheduler::Job'=> '3.32',
10175             'TAP::Parser::Scheduler::Spinner'=> '3.32',
10176             'TAP::Parser::Source' => '3.32',
10177             'TAP::Parser::SourceHandler'=> '3.32',
10178             'TAP::Parser::SourceHandler::Executable'=> '3.32',
10179             'TAP::Parser::SourceHandler::File'=> '3.32',
10180             'TAP::Parser::SourceHandler::Handle'=> '3.32',
10181             'TAP::Parser::SourceHandler::Perl'=> '3.32',
10182             'TAP::Parser::SourceHandler::RawTAP'=> '3.32',
10183             'TAP::Parser::YAMLish::Reader'=> '3.32',
10184             'TAP::Parser::YAMLish::Writer'=> '3.32',
10185             'Term::ANSIColor' => '4.03',
10186             'Test::Builder' => '1.001003',
10187             'Test::Builder::Module' => '1.001003',
10188             'Test::Builder::Tester' => '1.23_003',
10189             'Test::Harness' => '3.32',
10190             'Test::More' => '1.001003',
10191             'Test::Simple' => '1.001003',
10192             'Tie::File' => '1.01',
10193             'Unicode' => '7.0.0',
10194             'Unicode::Collate' => '1.07',
10195             'Unicode::Normalize' => '1.18',
10196             'Unicode::UCD' => '0.58',
10197             'XS::APItest' => '0.61',
10198             '_charnames' => '1.41',
10199             'autodie' => '2.25',
10200             'autodie::Scope::Guard' => '2.25',
10201             'autodie::Scope::GuardStack'=> '2.25',
10202             'autodie::ScopeUtil' => '2.25',
10203             'autodie::exception' => '2.25',
10204             'autodie::exception::system'=> '2.25',
10205             'autodie::hints' => '2.25',
10206             'autodie::skip' => '2.25',
10207             'charnames' => '1.41',
10208             'locale' => '1.04',
10209             'threads' => '1.94',
10210             'utf8' => '1.14',
10211             'warnings' => '1.24',
10212             },
10213             removed => {
10214             }
10215             },
10216             5.021002 => {
10217             delta_from => 5.021001,
10218             changed => {
10219             'B' => '1.50',
10220             'Config' => '5.021002',
10221             'Cwd' => '3.49',
10222             'Devel::Peek' => '1.18',
10223             'ExtUtils::Manifest' => '1.64',
10224             'File::Copy' => '2.30',
10225             'File::Spec' => '3.49',
10226             'File::Spec::Cygwin' => '3.49',
10227             'File::Spec::Epoc' => '3.49',
10228             'File::Spec::Functions' => '3.49',
10229             'File::Spec::Mac' => '3.49',
10230             'File::Spec::OS2' => '3.49',
10231             'File::Spec::Unix' => '3.49',
10232             'File::Spec::VMS' => '3.49',
10233             'File::Spec::Win32' => '3.49',
10234             'Filter::Simple' => '0.92',
10235             'Hash::Util' => '0.18',
10236             'IO' => '1.33',
10237             'IO::Socket::IP' => '0.31',
10238             'IPC::Open3' => '1.17',
10239             'Math::BigFloat' => '1.9996',
10240             'Math::BigInt' => '1.9996',
10241             'Math::BigInt::Calc' => '1.9996',
10242             'Math::BigInt::CalcEmu' => '1.9996',
10243             'Module::CoreList' => '5.021002',
10244             'Module::CoreList::TieHashDelta'=> '5.021002',
10245             'Module::CoreList::Utils'=> '5.021002',
10246             'POSIX' => '1.41',
10247             'Pod::Usage' => '1.64',
10248             'XS::APItest' => '0.62',
10249             'arybase' => '0.08',
10250             'experimental' => '0.008',
10251             'threads' => '1.95',
10252             'warnings' => '1.26',
10253             },
10254             removed => {
10255             }
10256             },
10257             5.021003 => {
10258             delta_from => 5.021002,
10259             changed => {
10260             'B::Debug' => '1.21',
10261             'CPAN::Meta' => '2.142060',
10262             'CPAN::Meta::Converter' => '2.142060',
10263             'CPAN::Meta::Feature' => '2.142060',
10264             'CPAN::Meta::History' => '2.142060',
10265             'CPAN::Meta::Merge' => '2.142060',
10266             'CPAN::Meta::Prereqs' => '2.142060',
10267             'CPAN::Meta::Requirements'=> '2.126',
10268             'CPAN::Meta::Spec' => '2.142060',
10269             'CPAN::Meta::Validator' => '2.142060',
10270             'Config' => '5.021003',
10271             'Config::Perl::V' => '0.22',
10272             'ExtUtils::CBuilder' => '0.280217',
10273             'ExtUtils::CBuilder::Base'=> '0.280217',
10274             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10275             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10276             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10277             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10278             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10279             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10280             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10281             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10282             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10283             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10284             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10285             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10286             'ExtUtils::Manifest' => '1.65',
10287             'HTTP::Tiny' => '0.047',
10288             'IPC::Open3' => '1.18',
10289             'Module::CoreList' => '5.021003',
10290             'Module::CoreList::TieHashDelta'=> '5.021003',
10291             'Module::CoreList::Utils'=> '5.021003',
10292             'Opcode' => '1.28',
10293             'POSIX' => '1.42',
10294             'Safe' => '2.38',
10295             'Socket' => '2.015',
10296             'Sys::Hostname' => '1.19',
10297             'UNIVERSAL' => '1.12',
10298             'XS::APItest' => '0.63',
10299             'perlfaq' => '5.0150045',
10300             },
10301             removed => {
10302             }
10303             },
10304             5.020001 => {
10305             delta_from => 5.020000,
10306             changed => {
10307             'Config' => '5.020001',
10308             'Config::Perl::V' => '0.22',
10309             'Cwd' => '3.48',
10310             'Exporter' => '5.71',
10311             'Exporter::Heavy' => '5.71',
10312             'ExtUtils::CBuilder' => '0.280217',
10313             'ExtUtils::CBuilder::Base'=> '0.280217',
10314             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10315             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10316             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10317             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10318             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10319             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10320             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10321             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10322             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10323             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10324             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10325             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10326             'File::Copy' => '2.30',
10327             'File::Spec' => '3.48',
10328             'File::Spec::Cygwin' => '3.48',
10329             'File::Spec::Epoc' => '3.48',
10330             'File::Spec::Functions' => '3.48',
10331             'File::Spec::Mac' => '3.48',
10332             'File::Spec::OS2' => '3.48',
10333             'File::Spec::Unix' => '3.48',
10334             'File::Spec::VMS' => '3.48',
10335             'File::Spec::Win32' => '3.48',
10336             'Module::CoreList' => '5.020001',
10337             'Module::CoreList::TieHashDelta'=> '5.020001',
10338             'Module::CoreList::Utils'=> '5.020001',
10339             'PerlIO::via' => '0.15',
10340             'Unicode::UCD' => '0.58',
10341             'XS::APItest' => '0.60_01',
10342             'utf8' => '1.13_01',
10343             'version' => '0.9909',
10344             'version::regex' => '0.9909',
10345             'version::vpp' => '0.9909',
10346             },
10347             removed => {
10348             }
10349             },
10350             5.021004 => {
10351             delta_from => 5.021003,
10352             changed => {
10353             'App::Prove' => '3.33',
10354             'App::Prove::State' => '3.33',
10355             'App::Prove::State::Result'=> '3.33',
10356             'App::Prove::State::Result::Test'=> '3.33',
10357             'Archive::Tar' => '2.02',
10358             'Archive::Tar::Constant'=> '2.02',
10359             'Archive::Tar::File' => '2.02',
10360             'Attribute::Handlers' => '0.97',
10361             'B' => '1.51',
10362             'B::Concise' => '0.993',
10363             'B::Deparse' => '1.28',
10364             'B::Op_private' => '5.021004',
10365             'CPAN::Meta::Requirements'=> '2.128',
10366             'Config' => '5.021004',
10367             'Cwd' => '3.50',
10368             'Data::Dumper' => '2.154',
10369             'ExtUtils::CBuilder' => '0.280219',
10370             'ExtUtils::CBuilder::Base'=> '0.280219',
10371             'ExtUtils::CBuilder::Platform::Unix'=> '0.280219',
10372             'ExtUtils::CBuilder::Platform::VMS'=> '0.280219',
10373             'ExtUtils::CBuilder::Platform::Windows'=> '0.280219',
10374             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219',
10375             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219',
10376             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219',
10377             'ExtUtils::CBuilder::Platform::aix'=> '0.280219',
10378             'ExtUtils::CBuilder::Platform::android'=> '0.280219',
10379             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219',
10380             'ExtUtils::CBuilder::Platform::darwin'=> '0.280219',
10381             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219',
10382             'ExtUtils::CBuilder::Platform::os2'=> '0.280219',
10383             'ExtUtils::Install' => '2.04',
10384             'ExtUtils::Installed' => '2.04',
10385             'ExtUtils::Liblist::Kid'=> '6.98_01',
10386             'ExtUtils::Manifest' => '1.68',
10387             'ExtUtils::Packlist' => '2.04',
10388             'File::Find' => '1.28',
10389             'File::Spec' => '3.50',
10390             'File::Spec::Cygwin' => '3.50',
10391             'File::Spec::Epoc' => '3.50',
10392             'File::Spec::Functions' => '3.50',
10393             'File::Spec::Mac' => '3.50',
10394             'File::Spec::OS2' => '3.50',
10395             'File::Spec::Unix' => '3.50',
10396             'File::Spec::VMS' => '3.50',
10397             'File::Spec::Win32' => '3.50',
10398             'Getopt::Std' => '1.11',
10399             'HTTP::Tiny' => '0.049',
10400             'IO' => '1.34',
10401             'IO::Socket::IP' => '0.32',
10402             'List::Util' => '1.41',
10403             'List::Util::XS' => '1.41',
10404             'Locale::Codes' => '3.32',
10405             'Locale::Codes::Constants'=> '3.32',
10406             'Locale::Codes::Country'=> '3.32',
10407             'Locale::Codes::Country_Codes'=> '3.32',
10408             'Locale::Codes::Country_Retired'=> '3.32',
10409             'Locale::Codes::Currency'=> '3.32',
10410             'Locale::Codes::Currency_Codes'=> '3.32',
10411             'Locale::Codes::Currency_Retired'=> '3.32',
10412             'Locale::Codes::LangExt'=> '3.32',
10413             'Locale::Codes::LangExt_Codes'=> '3.32',
10414             'Locale::Codes::LangExt_Retired'=> '3.32',
10415             'Locale::Codes::LangFam'=> '3.32',
10416             'Locale::Codes::LangFam_Codes'=> '3.32',
10417             'Locale::Codes::LangFam_Retired'=> '3.32',
10418             'Locale::Codes::LangVar'=> '3.32',
10419             'Locale::Codes::LangVar_Codes'=> '3.32',
10420             'Locale::Codes::LangVar_Retired'=> '3.32',
10421             'Locale::Codes::Language'=> '3.32',
10422             'Locale::Codes::Language_Codes'=> '3.32',
10423             'Locale::Codes::Language_Retired'=> '3.32',
10424             'Locale::Codes::Script' => '3.32',
10425             'Locale::Codes::Script_Codes'=> '3.32',
10426             'Locale::Codes::Script_Retired'=> '3.32',
10427             'Locale::Country' => '3.32',
10428             'Locale::Currency' => '3.32',
10429             'Locale::Language' => '3.32',
10430             'Locale::Script' => '3.32',
10431             'Math::BigFloat' => '1.9997',
10432             'Math::BigInt' => '1.9997',
10433             'Math::BigInt::Calc' => '1.9997',
10434             'Math::BigInt::CalcEmu' => '1.9997',
10435             'Module::CoreList' => '5.20140920',
10436             'Module::CoreList::TieHashDelta'=> '5.20140920',
10437             'Module::CoreList::Utils'=> '5.20140920',
10438             'POSIX' => '1.43',
10439             'Pod::Perldoc' => '3.24',
10440             'Pod::Perldoc::BaseTo' => '3.24',
10441             'Pod::Perldoc::GetOptsOO'=> '3.24',
10442             'Pod::Perldoc::ToANSI' => '3.24',
10443             'Pod::Perldoc::ToChecker'=> '3.24',
10444             'Pod::Perldoc::ToMan' => '3.24',
10445             'Pod::Perldoc::ToNroff' => '3.24',
10446             'Pod::Perldoc::ToPod' => '3.24',
10447             'Pod::Perldoc::ToRtf' => '3.24',
10448             'Pod::Perldoc::ToTerm' => '3.24',
10449             'Pod::Perldoc::ToText' => '3.24',
10450             'Pod::Perldoc::ToTk' => '3.24',
10451             'Pod::Perldoc::ToXml' => '3.24',
10452             'Scalar::Util' => '1.41',
10453             'Sub::Util' => '1.41',
10454             'TAP::Base' => '3.33',
10455             'TAP::Formatter::Base' => '3.33',
10456             'TAP::Formatter::Color' => '3.33',
10457             'TAP::Formatter::Console'=> '3.33',
10458             'TAP::Formatter::Console::ParallelSession'=> '3.33',
10459             'TAP::Formatter::Console::Session'=> '3.33',
10460             'TAP::Formatter::File' => '3.33',
10461             'TAP::Formatter::File::Session'=> '3.33',
10462             'TAP::Formatter::Session'=> '3.33',
10463             'TAP::Harness' => '3.33',
10464             'TAP::Harness::Env' => '3.33',
10465             'TAP::Object' => '3.33',
10466             'TAP::Parser' => '3.33',
10467             'TAP::Parser::Aggregator'=> '3.33',
10468             'TAP::Parser::Grammar' => '3.33',
10469             'TAP::Parser::Iterator' => '3.33',
10470             'TAP::Parser::Iterator::Array'=> '3.33',
10471             'TAP::Parser::Iterator::Process'=> '3.33',
10472             'TAP::Parser::Iterator::Stream'=> '3.33',
10473             'TAP::Parser::IteratorFactory'=> '3.33',
10474             'TAP::Parser::Multiplexer'=> '3.33',
10475             'TAP::Parser::Result' => '3.33',
10476             'TAP::Parser::Result::Bailout'=> '3.33',
10477             'TAP::Parser::Result::Comment'=> '3.33',
10478             'TAP::Parser::Result::Plan'=> '3.33',
10479             'TAP::Parser::Result::Pragma'=> '3.33',
10480             'TAP::Parser::Result::Test'=> '3.33',
10481             'TAP::Parser::Result::Unknown'=> '3.33',
10482             'TAP::Parser::Result::Version'=> '3.33',
10483             'TAP::Parser::Result::YAML'=> '3.33',
10484             'TAP::Parser::ResultFactory'=> '3.33',
10485             'TAP::Parser::Scheduler'=> '3.33',
10486             'TAP::Parser::Scheduler::Job'=> '3.33',
10487             'TAP::Parser::Scheduler::Spinner'=> '3.33',
10488             'TAP::Parser::Source' => '3.33',
10489             'TAP::Parser::SourceHandler'=> '3.33',
10490             'TAP::Parser::SourceHandler::Executable'=> '3.33',
10491             'TAP::Parser::SourceHandler::File'=> '3.33',
10492             'TAP::Parser::SourceHandler::Handle'=> '3.33',
10493             'TAP::Parser::SourceHandler::Perl'=> '3.33',
10494             'TAP::Parser::SourceHandler::RawTAP'=> '3.33',
10495             'TAP::Parser::YAMLish::Reader'=> '3.33',
10496             'TAP::Parser::YAMLish::Writer'=> '3.33',
10497             'Term::ReadLine' => '1.15',
10498             'Test::Builder' => '1.001006',
10499             'Test::Builder::Module' => '1.001006',
10500             'Test::Builder::Tester' => '1.24',
10501             'Test::Builder::Tester::Color'=> '1.24',
10502             'Test::Harness' => '3.33',
10503             'Test::More' => '1.001006',
10504             'Test::Simple' => '1.001006',
10505             'Time::Piece' => '1.29',
10506             'Time::Seconds' => '1.29',
10507             'XS::APItest' => '0.64',
10508             '_charnames' => '1.42',
10509             'attributes' => '0.23',
10510             'bigint' => '0.37',
10511             'bignum' => '0.38',
10512             'bigrat' => '0.37',
10513             'constant' => '1.32',
10514             'experimental' => '0.010',
10515             'overload' => '1.23',
10516             'threads' => '1.96',
10517             'version' => '0.9909',
10518             'version::regex' => '0.9909',
10519             'version::vpp' => '0.9909',
10520             },
10521             removed => {
10522             }
10523             },
10524             5.021005 => {
10525             delta_from => 5.021004,
10526             changed => {
10527             'B' => '1.52',
10528             'B::Concise' => '0.994',
10529             'B::Debug' => '1.22',
10530             'B::Deparse' => '1.29',
10531             'B::Op_private' => '5.021005',
10532             'CPAN::Meta' => '2.142690',
10533             'CPAN::Meta::Converter' => '2.142690',
10534             'CPAN::Meta::Feature' => '2.142690',
10535             'CPAN::Meta::History' => '2.142690',
10536             'CPAN::Meta::Merge' => '2.142690',
10537             'CPAN::Meta::Prereqs' => '2.142690',
10538             'CPAN::Meta::Spec' => '2.142690',
10539             'CPAN::Meta::Validator' => '2.142690',
10540             'Compress::Raw::Bzip2' => '2.066',
10541             'Compress::Raw::Zlib' => '2.066',
10542             'Compress::Zlib' => '2.066',
10543             'Config' => '5.021005',
10544             'Cwd' => '3.51',
10545             'DynaLoader' => '1.27',
10546             'Errno' => '1.21',
10547             'ExtUtils::CBuilder' => '0.280220',
10548             'ExtUtils::CBuilder::Base'=> '0.280220',
10549             'ExtUtils::CBuilder::Platform::Unix'=> '0.280220',
10550             'ExtUtils::CBuilder::Platform::VMS'=> '0.280220',
10551             'ExtUtils::CBuilder::Platform::Windows'=> '0.280220',
10552             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220',
10553             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220',
10554             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220',
10555             'ExtUtils::CBuilder::Platform::aix'=> '0.280220',
10556             'ExtUtils::CBuilder::Platform::android'=> '0.280220',
10557             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220',
10558             'ExtUtils::CBuilder::Platform::darwin'=> '0.280220',
10559             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220',
10560             'ExtUtils::CBuilder::Platform::os2'=> '0.280220',
10561             'ExtUtils::Miniperl' => '1.03',
10562             'Fcntl' => '1.13',
10563             'File::Find' => '1.29',
10564             'File::Spec' => '3.51',
10565             'File::Spec::Cygwin' => '3.51',
10566             'File::Spec::Epoc' => '3.51',
10567             'File::Spec::Functions' => '3.51',
10568             'File::Spec::Mac' => '3.51',
10569             'File::Spec::OS2' => '3.51',
10570             'File::Spec::Unix' => '3.51',
10571             'File::Spec::VMS' => '3.51',
10572             'File::Spec::Win32' => '3.51',
10573             'HTTP::Tiny' => '0.050',
10574             'IO::Compress::Adapter::Bzip2'=> '2.066',
10575             'IO::Compress::Adapter::Deflate'=> '2.066',
10576             'IO::Compress::Adapter::Identity'=> '2.066',
10577             'IO::Compress::Base' => '2.066',
10578             'IO::Compress::Base::Common'=> '2.066',
10579             'IO::Compress::Bzip2' => '2.066',
10580             'IO::Compress::Deflate' => '2.066',
10581             'IO::Compress::Gzip' => '2.066',
10582             'IO::Compress::Gzip::Constants'=> '2.066',
10583             'IO::Compress::RawDeflate'=> '2.066',
10584             'IO::Compress::Zip' => '2.066',
10585             'IO::Compress::Zip::Constants'=> '2.066',
10586             'IO::Compress::Zlib::Constants'=> '2.066',
10587             'IO::Compress::Zlib::Extra'=> '2.066',
10588             'IO::Uncompress::Adapter::Bunzip2'=> '2.066',
10589             'IO::Uncompress::Adapter::Identity'=> '2.066',
10590             'IO::Uncompress::Adapter::Inflate'=> '2.066',
10591             'IO::Uncompress::AnyInflate'=> '2.066',
10592             'IO::Uncompress::AnyUncompress'=> '2.066',
10593             'IO::Uncompress::Base' => '2.066',
10594             'IO::Uncompress::Bunzip2'=> '2.066',
10595             'IO::Uncompress::Gunzip'=> '2.066',
10596             'IO::Uncompress::Inflate'=> '2.066',
10597             'IO::Uncompress::RawInflate'=> '2.066',
10598             'IO::Uncompress::Unzip' => '2.066',
10599             'JSON::PP' => '2.27300',
10600             'Module::CoreList' => '5.20141020',
10601             'Module::CoreList::TieHashDelta'=> '5.20141020',
10602             'Module::CoreList::Utils'=> '5.20141020',
10603             'Net::Cmd' => '3.02',
10604             'Net::Config' => '3.02',
10605             'Net::Domain' => '3.02',
10606             'Net::FTP' => '3.02',
10607             'Net::FTP::A' => '3.02',
10608             'Net::FTP::E' => '3.02',
10609             'Net::FTP::I' => '3.02',
10610             'Net::FTP::L' => '3.02',
10611             'Net::FTP::dataconn' => '3.02',
10612             'Net::NNTP' => '3.02',
10613             'Net::Netrc' => '3.02',
10614             'Net::POP3' => '3.02',
10615             'Net::SMTP' => '3.02',
10616             'Net::Time' => '3.02',
10617             'Opcode' => '1.29',
10618             'POSIX' => '1.45',
10619             'Socket' => '2.016',
10620             'Test::Builder' => '1.001008',
10621             'Test::Builder::Module' => '1.001008',
10622             'Test::More' => '1.001008',
10623             'Test::Simple' => '1.001008',
10624             'XS::APItest' => '0.65',
10625             'XSLoader' => '0.18',
10626             'attributes' => '0.24',
10627             'experimental' => '0.012',
10628             'feature' => '1.38',
10629             'perlfaq' => '5.0150046',
10630             're' => '0.27',
10631             'threads::shared' => '1.47',
10632             'warnings' => '1.28',
10633             'warnings::register' => '1.04',
10634             },
10635             removed => {
10636             }
10637             },
10638             5.021006 => {
10639             delta_from => 5.021005,
10640             changed => {
10641             'App::Prove' => '3.34',
10642             'App::Prove::State' => '3.34',
10643             'App::Prove::State::Result'=> '3.34',
10644             'App::Prove::State::Result::Test'=> '3.34',
10645             'B' => '1.53',
10646             'B::Concise' => '0.995',
10647             'B::Deparse' => '1.30',
10648             'B::Op_private' => '5.021006',
10649             'CPAN::Meta' => '2.143240',
10650             'CPAN::Meta::Converter' => '2.143240',
10651             'CPAN::Meta::Feature' => '2.143240',
10652             'CPAN::Meta::History' => '2.143240',
10653             'CPAN::Meta::Merge' => '2.143240',
10654             'CPAN::Meta::Prereqs' => '2.143240',
10655             'CPAN::Meta::Requirements'=> '2.130',
10656             'CPAN::Meta::Spec' => '2.143240',
10657             'CPAN::Meta::Validator' => '2.143240',
10658             'Config' => '5.021006',
10659             'Devel::Peek' => '1.19',
10660             'Digest::SHA' => '5.93',
10661             'DynaLoader' => '1.28',
10662             'Encode' => '2.64',
10663             'Exporter' => '5.72',
10664             'Exporter::Heavy' => '5.72',
10665             'ExtUtils::Command::MM' => '7.02',
10666             'ExtUtils::Liblist' => '7.02',
10667             'ExtUtils::Liblist::Kid'=> '7.02',
10668             'ExtUtils::MM' => '7.02',
10669             'ExtUtils::MM_AIX' => '7.02',
10670             'ExtUtils::MM_Any' => '7.02',
10671             'ExtUtils::MM_BeOS' => '7.02',
10672             'ExtUtils::MM_Cygwin' => '7.02',
10673             'ExtUtils::MM_DOS' => '7.02',
10674             'ExtUtils::MM_Darwin' => '7.02',
10675             'ExtUtils::MM_MacOS' => '7.02',
10676             'ExtUtils::MM_NW5' => '7.02',
10677             'ExtUtils::MM_OS2' => '7.02',
10678             'ExtUtils::MM_QNX' => '7.02',
10679             'ExtUtils::MM_UWIN' => '7.02',
10680             'ExtUtils::MM_Unix' => '7.02',
10681             'ExtUtils::MM_VMS' => '7.02',
10682             'ExtUtils::MM_VOS' => '7.02',
10683             'ExtUtils::MM_Win32' => '7.02',
10684             'ExtUtils::MM_Win95' => '7.02',
10685             'ExtUtils::MY' => '7.02',
10686             'ExtUtils::MakeMaker' => '7.02',
10687             'ExtUtils::MakeMaker::Config'=> '7.02',
10688             'ExtUtils::MakeMaker::Locale'=> '7.02',
10689             'ExtUtils::MakeMaker::version'=> '7.02',
10690             'ExtUtils::MakeMaker::version::regex'=> '7.02',
10691             'ExtUtils::MakeMaker::version::vpp'=> '7.02',
10692             'ExtUtils::Manifest' => '1.69',
10693             'ExtUtils::Mkbootstrap' => '7.02',
10694             'ExtUtils::Mksymlists' => '7.02',
10695             'ExtUtils::ParseXS' => '3.26',
10696             'ExtUtils::ParseXS::Constants'=> '3.26',
10697             'ExtUtils::ParseXS::CountLines'=> '3.26',
10698             'ExtUtils::ParseXS::Eval'=> '3.26',
10699             'ExtUtils::ParseXS::Utilities'=> '3.26',
10700             'ExtUtils::testlib' => '7.02',
10701             'File::Spec::VMS' => '3.52',
10702             'HTTP::Tiny' => '0.051',
10703             'I18N::Langinfo' => '0.12',
10704             'IO::Socket' => '1.38',
10705             'Module::CoreList' => '5.20141120',
10706             'Module::CoreList::TieHashDelta'=> '5.20141120',
10707             'Module::CoreList::Utils'=> '5.20141120',
10708             'POSIX' => '1.46',
10709             'PerlIO::encoding' => '0.20',
10710             'PerlIO::scalar' => '0.20',
10711             'TAP::Base' => '3.34',
10712             'TAP::Formatter::Base' => '3.34',
10713             'TAP::Formatter::Color' => '3.34',
10714             'TAP::Formatter::Console'=> '3.34',
10715             'TAP::Formatter::Console::ParallelSession'=> '3.34',
10716             'TAP::Formatter::Console::Session'=> '3.34',
10717             'TAP::Formatter::File' => '3.34',
10718             'TAP::Formatter::File::Session'=> '3.34',
10719             'TAP::Formatter::Session'=> '3.34',
10720             'TAP::Harness' => '3.34',
10721             'TAP::Harness::Env' => '3.34',
10722             'TAP::Object' => '3.34',
10723             'TAP::Parser' => '3.34',
10724             'TAP::Parser::Aggregator'=> '3.34',
10725             'TAP::Parser::Grammar' => '3.34',
10726             'TAP::Parser::Iterator' => '3.34',
10727             'TAP::Parser::Iterator::Array'=> '3.34',
10728             'TAP::Parser::Iterator::Process'=> '3.34',
10729             'TAP::Parser::Iterator::Stream'=> '3.34',
10730             'TAP::Parser::IteratorFactory'=> '3.34',
10731             'TAP::Parser::Multiplexer'=> '3.34',
10732             'TAP::Parser::Result' => '3.34',
10733             'TAP::Parser::Result::Bailout'=> '3.34',
10734             'TAP::Parser::Result::Comment'=> '3.34',
10735             'TAP::Parser::Result::Plan'=> '3.34',
10736             'TAP::Parser::Result::Pragma'=> '3.34',
10737             'TAP::Parser::Result::Test'=> '3.34',
10738             'TAP::Parser::Result::Unknown'=> '3.34',
10739             'TAP::Parser::Result::Version'=> '3.34',
10740             'TAP::Parser::Result::YAML'=> '3.34',
10741             'TAP::Parser::ResultFactory'=> '3.34',
10742             'TAP::Parser::Scheduler'=> '3.34',
10743             'TAP::Parser::Scheduler::Job'=> '3.34',
10744             'TAP::Parser::Scheduler::Spinner'=> '3.34',
10745             'TAP::Parser::Source' => '3.34',
10746             'TAP::Parser::SourceHandler'=> '3.34',
10747             'TAP::Parser::SourceHandler::Executable'=> '3.34',
10748             'TAP::Parser::SourceHandler::File'=> '3.34',
10749             'TAP::Parser::SourceHandler::Handle'=> '3.34',
10750             'TAP::Parser::SourceHandler::Perl'=> '3.34',
10751             'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
10752             'TAP::Parser::YAMLish::Reader'=> '3.34',
10753             'TAP::Parser::YAMLish::Writer'=> '3.34',
10754             'Test::Builder' => '1.301001_075',
10755             'Test::Builder::Module' => '1.301001_075',
10756             'Test::Builder::Tester' => '1.301001_075',
10757             'Test::Builder::Tester::Color'=> '1.301001_075',
10758             'Test::Harness' => '3.34',
10759             'Test::More' => '1.301001_075',
10760             'Test::More::DeepCheck' => undef,
10761             'Test::More::DeepCheck::Strict'=> undef,
10762             'Test::More::DeepCheck::Tolerant'=> undef,
10763             'Test::More::Tools' => undef,
10764             'Test::MostlyLike' => undef,
10765             'Test::Simple' => '1.301001_075',
10766             'Test::Stream' => '1.301001_075',
10767             'Test::Stream::ArrayBase'=> undef,
10768             'Test::Stream::ArrayBase::Meta'=> undef,
10769             'Test::Stream::Carp' => undef,
10770             'Test::Stream::Context' => undef,
10771             'Test::Stream::Event' => undef,
10772             'Test::Stream::Event::Bail'=> undef,
10773             'Test::Stream::Event::Child'=> undef,
10774             'Test::Stream::Event::Diag'=> undef,
10775             'Test::Stream::Event::Finish'=> undef,
10776             'Test::Stream::Event::Note'=> undef,
10777             'Test::Stream::Event::Ok'=> undef,
10778             'Test::Stream::Event::Plan'=> undef,
10779             'Test::Stream::Event::Subtest'=> undef,
10780             'Test::Stream::ExitMagic'=> undef,
10781             'Test::Stream::ExitMagic::Context'=> undef,
10782             'Test::Stream::Exporter'=> undef,
10783             'Test::Stream::Exporter::Meta'=> undef,
10784             'Test::Stream::IOSets' => undef,
10785             'Test::Stream::Meta' => undef,
10786             'Test::Stream::PackageUtil'=> undef,
10787             'Test::Stream::Tester' => undef,
10788             'Test::Stream::Tester::Checks'=> undef,
10789             'Test::Stream::Tester::Checks::Event'=> undef,
10790             'Test::Stream::Tester::Events'=> undef,
10791             'Test::Stream::Tester::Events::Event'=> undef,
10792             'Test::Stream::Tester::Grab'=> undef,
10793             'Test::Stream::Threads' => undef,
10794             'Test::Stream::Toolset' => undef,
10795             'Test::Stream::Util' => undef,
10796             'Test::Tester' => '1.301001_075',
10797             'Test::Tester::Capture' => undef,
10798             'Test::use::ok' => '1.301001_075',
10799             'Unicode::UCD' => '0.59',
10800             'XS::APItest' => '0.68',
10801             'XSLoader' => '0.19',
10802             'experimental' => '0.013',
10803             'locale' => '1.05',
10804             'ok' => '1.301001_075',
10805             'overload' => '1.24',
10806             're' => '0.28',
10807             'warnings' => '1.29',
10808             },
10809             removed => {
10810             }
10811             },
10812             5.021007 => {
10813             delta_from => 5.021006,
10814             changed => {
10815             'Archive::Tar' => '2.04',
10816             'Archive::Tar::Constant'=> '2.04',
10817             'Archive::Tar::File' => '2.04',
10818             'B' => '1.54',
10819             'B::Concise' => '0.996',
10820             'B::Deparse' => '1.31',
10821             'B::Op_private' => '5.021007',
10822             'B::Showlex' => '1.05',
10823             'Compress::Raw::Bzip2' => '2.067',
10824             'Compress::Raw::Zlib' => '2.067',
10825             'Compress::Zlib' => '2.067',
10826             'Config' => '5.021007',
10827             'Cwd' => '3.54',
10828             'DB_File' => '1.834',
10829             'Data::Dumper' => '2.155',
10830             'Devel::PPPort' => '3.25',
10831             'Devel::Peek' => '1.20',
10832             'DynaLoader' => '1.29',
10833             'Encode' => '2.67',
10834             'Errno' => '1.22',
10835             'ExtUtils::CBuilder' => '0.280221',
10836             'ExtUtils::CBuilder::Base'=> '0.280221',
10837             'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
10838             'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
10839             'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
10840             'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
10841             'ExtUtils::CBuilder::Platform::android'=> '0.280221',
10842             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
10843             'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
10844             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
10845             'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
10846             'ExtUtils::Command::MM' => '7.04',
10847             'ExtUtils::Liblist' => '7.04',
10848             'ExtUtils::Liblist::Kid'=> '7.04',
10849             'ExtUtils::MM' => '7.04',
10850             'ExtUtils::MM_AIX' => '7.04',
10851             'ExtUtils::MM_Any' => '7.04',
10852             'ExtUtils::MM_BeOS' => '7.04',
10853             'ExtUtils::MM_Cygwin' => '7.04',
10854             'ExtUtils::MM_DOS' => '7.04',
10855             'ExtUtils::MM_Darwin' => '7.04',
10856             'ExtUtils::MM_MacOS' => '7.04',
10857             'ExtUtils::MM_NW5' => '7.04',
10858             'ExtUtils::MM_OS2' => '7.04',
10859             'ExtUtils::MM_QNX' => '7.04',
10860             'ExtUtils::MM_UWIN' => '7.04',
10861             'ExtUtils::MM_Unix' => '7.04',
10862             'ExtUtils::MM_VMS' => '7.04',
10863             'ExtUtils::MM_VOS' => '7.04',
10864             'ExtUtils::MM_Win32' => '7.04',
10865             'ExtUtils::MM_Win95' => '7.04',
10866             'ExtUtils::MY' => '7.04',
10867             'ExtUtils::MakeMaker' => '7.04',
10868             'ExtUtils::MakeMaker::Config'=> '7.04',
10869             'ExtUtils::MakeMaker::Locale'=> '7.04',
10870             'ExtUtils::MakeMaker::version'=> '7.04',
10871             'ExtUtils::MakeMaker::version::regex'=> '7.04',
10872             'ExtUtils::MakeMaker::version::vpp'=> '7.04',
10873             'ExtUtils::Mkbootstrap' => '7.04',
10874             'ExtUtils::Mksymlists' => '7.04',
10875             'ExtUtils::ParseXS' => '3.27',
10876             'ExtUtils::ParseXS::Constants'=> '3.27',
10877             'ExtUtils::ParseXS::CountLines'=> '3.27',
10878             'ExtUtils::ParseXS::Eval'=> '3.27',
10879             'ExtUtils::ParseXS::Utilities'=> '3.27',
10880             'ExtUtils::testlib' => '7.04',
10881             'File::Spec' => '3.53',
10882             'File::Spec::Cygwin' => '3.54',
10883             'File::Spec::Epoc' => '3.54',
10884             'File::Spec::Functions' => '3.54',
10885             'File::Spec::Mac' => '3.54',
10886             'File::Spec::OS2' => '3.54',
10887             'File::Spec::Unix' => '3.54',
10888             'File::Spec::VMS' => '3.54',
10889             'File::Spec::Win32' => '3.54',
10890             'Filter::Util::Call' => '1.51',
10891             'HTTP::Tiny' => '0.053',
10892             'IO' => '1.35',
10893             'IO::Compress::Adapter::Bzip2'=> '2.067',
10894             'IO::Compress::Adapter::Deflate'=> '2.067',
10895             'IO::Compress::Adapter::Identity'=> '2.067',
10896             'IO::Compress::Base' => '2.067',
10897             'IO::Compress::Base::Common'=> '2.067',
10898             'IO::Compress::Bzip2' => '2.067',
10899             'IO::Compress::Deflate' => '2.067',
10900             'IO::Compress::Gzip' => '2.067',
10901             'IO::Compress::Gzip::Constants'=> '2.067',
10902             'IO::Compress::RawDeflate'=> '2.067',
10903             'IO::Compress::Zip' => '2.067',
10904             'IO::Compress::Zip::Constants'=> '2.067',
10905             'IO::Compress::Zlib::Constants'=> '2.067',
10906             'IO::Compress::Zlib::Extra'=> '2.067',
10907             'IO::Socket::IP' => '0.34',
10908             'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
10909             'IO::Uncompress::Adapter::Identity'=> '2.067',
10910             'IO::Uncompress::Adapter::Inflate'=> '2.067',
10911             'IO::Uncompress::AnyInflate'=> '2.067',
10912             'IO::Uncompress::AnyUncompress'=> '2.067',
10913             'IO::Uncompress::Base' => '2.067',
10914             'IO::Uncompress::Bunzip2'=> '2.067',
10915             'IO::Uncompress::Gunzip'=> '2.067',
10916             'IO::Uncompress::Inflate'=> '2.067',
10917             'IO::Uncompress::RawInflate'=> '2.067',
10918             'IO::Uncompress::Unzip' => '2.067',
10919             'Locale::Codes' => '3.33',
10920             'Locale::Codes::Constants'=> '3.33',
10921             'Locale::Codes::Country'=> '3.33',
10922             'Locale::Codes::Country_Codes'=> '3.33',
10923             'Locale::Codes::Country_Retired'=> '3.33',
10924             'Locale::Codes::Currency'=> '3.33',
10925             'Locale::Codes::Currency_Codes'=> '3.33',
10926             'Locale::Codes::Currency_Retired'=> '3.33',
10927             'Locale::Codes::LangExt'=> '3.33',
10928             'Locale::Codes::LangExt_Codes'=> '3.33',
10929             'Locale::Codes::LangExt_Retired'=> '3.33',
10930             'Locale::Codes::LangFam'=> '3.33',
10931             'Locale::Codes::LangFam_Codes'=> '3.33',
10932             'Locale::Codes::LangFam_Retired'=> '3.33',
10933             'Locale::Codes::LangVar'=> '3.33',
10934             'Locale::Codes::LangVar_Codes'=> '3.33',
10935             'Locale::Codes::LangVar_Retired'=> '3.33',
10936             'Locale::Codes::Language'=> '3.33',
10937             'Locale::Codes::Language_Codes'=> '3.33',
10938             'Locale::Codes::Language_Retired'=> '3.33',
10939             'Locale::Codes::Script' => '3.33',
10940             'Locale::Codes::Script_Codes'=> '3.33',
10941             'Locale::Codes::Script_Retired'=> '3.33',
10942             'Locale::Country' => '3.33',
10943             'Locale::Currency' => '3.33',
10944             'Locale::Language' => '3.33',
10945             'Locale::Maketext' => '1.26',
10946             'Locale::Script' => '3.33',
10947             'Module::CoreList' => '5.20141220',
10948             'Module::CoreList::TieHashDelta'=> '5.20141220',
10949             'Module::CoreList::Utils'=> '5.20141220',
10950             'NDBM_File' => '1.14',
10951             'Net::Cmd' => '3.04',
10952             'Net::Config' => '3.04',
10953             'Net::Domain' => '3.04',
10954             'Net::FTP' => '3.04',
10955             'Net::FTP::A' => '3.04',
10956             'Net::FTP::E' => '3.04',
10957             'Net::FTP::I' => '3.04',
10958             'Net::FTP::L' => '3.04',
10959             'Net::FTP::dataconn' => '3.04',
10960             'Net::NNTP' => '3.04',
10961             'Net::Netrc' => '3.04',
10962             'Net::POP3' => '3.04',
10963             'Net::SMTP' => '3.04',
10964             'Net::Time' => '3.04',
10965             'Opcode' => '1.30',
10966             'POSIX' => '1.48',
10967             'PerlIO::scalar' => '0.21',
10968             'Pod::Escapes' => '1.07',
10969             'SDBM_File' => '1.12',
10970             'Storable' => '2.52',
10971             'Sys::Hostname' => '1.20',
10972             'Test::Builder' => '1.301001_090',
10973             'Test::Builder::Module' => '1.301001_090',
10974             'Test::Builder::Tester' => '1.301001_090',
10975             'Test::Builder::Tester::Color'=> '1.301001_090',
10976             'Test::CanFork' => undef,
10977             'Test::CanThread' => undef,
10978             'Test::More' => '1.301001_090',
10979             'Test::Simple' => '1.301001_090',
10980             'Test::Stream' => '1.301001_090',
10981             'Test::Stream::API' => undef,
10982             'Test::Stream::ForceExit'=> undef,
10983             'Test::Stream::Subtest' => undef,
10984             'Test::Tester' => '1.301001_090',
10985             'Test::use::ok' => '1.301001_090',
10986             'Unicode::Collate' => '1.09',
10987             'Unicode::Collate::CJK::Big5'=> '1.09',
10988             'Unicode::Collate::CJK::GB2312'=> '1.09',
10989             'Unicode::Collate::CJK::JISX0208'=> '1.09',
10990             'Unicode::Collate::CJK::Korean'=> '1.09',
10991             'Unicode::Collate::CJK::Pinyin'=> '1.09',
10992             'Unicode::Collate::CJK::Stroke'=> '1.09',
10993             'Unicode::Collate::CJK::Zhuyin'=> '1.09',
10994             'Unicode::Collate::Locale'=> '1.09',
10995             'XS::APItest' => '0.69',
10996             'XSLoader' => '0.20',
10997             '_charnames' => '1.43',
10998             'arybase' => '0.09',
10999             'charnames' => '1.43',
11000             'feature' => '1.39',
11001             'mro' => '1.17',
11002             'ok' => '1.301001_090',
11003             'strict' => '1.09',
11004             'threads' => '1.96_001',
11005             },
11006             removed => {
11007             }
11008             },
11009             5.021008 => {
11010             delta_from => 5.021007,
11011             changed => {
11012             'App::Prove' => '3.35',
11013             'App::Prove::State' => '3.35',
11014             'App::Prove::State::Result'=> '3.35',
11015             'App::Prove::State::Result::Test'=> '3.35',
11016             'B' => '1.55',
11017             'B::Deparse' => '1.32',
11018             'B::Op_private' => '5.021008',
11019             'CPAN::Meta::Requirements'=> '2.131',
11020             'Compress::Raw::Bzip2' => '2.068',
11021             'Compress::Raw::Zlib' => '2.068',
11022             'Compress::Zlib' => '2.068',
11023             'Config' => '5.021008',
11024             'DB_File' => '1.835',
11025             'Data::Dumper' => '2.156',
11026             'Devel::PPPort' => '3.28',
11027             'Devel::Peek' => '1.21',
11028             'Digest::MD5' => '2.54',
11029             'Digest::SHA' => '5.95',
11030             'DynaLoader' => '1.30',
11031             'ExtUtils::Command' => '1.20',
11032             'ExtUtils::Manifest' => '1.70',
11033             'Fatal' => '2.26',
11034             'File::Glob' => '1.24',
11035             'Filter::Util::Call' => '1.54',
11036             'Getopt::Long' => '2.43',
11037             'IO::Compress::Adapter::Bzip2'=> '2.068',
11038             'IO::Compress::Adapter::Deflate'=> '2.068',
11039             'IO::Compress::Adapter::Identity'=> '2.068',
11040             'IO::Compress::Base' => '2.068',
11041             'IO::Compress::Base::Common'=> '2.068',
11042             'IO::Compress::Bzip2' => '2.068',
11043             'IO::Compress::Deflate' => '2.068',
11044             'IO::Compress::Gzip' => '2.068',
11045             'IO::Compress::Gzip::Constants'=> '2.068',
11046             'IO::Compress::RawDeflate'=> '2.068',
11047             'IO::Compress::Zip' => '2.068',
11048             'IO::Compress::Zip::Constants'=> '2.068',
11049             'IO::Compress::Zlib::Constants'=> '2.068',
11050             'IO::Compress::Zlib::Extra'=> '2.068',
11051             'IO::Socket::IP' => '0.36',
11052             'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
11053             'IO::Uncompress::Adapter::Identity'=> '2.068',
11054             'IO::Uncompress::Adapter::Inflate'=> '2.068',
11055             'IO::Uncompress::AnyInflate'=> '2.068',
11056             'IO::Uncompress::AnyUncompress'=> '2.068',
11057             'IO::Uncompress::Base' => '2.068',
11058             'IO::Uncompress::Bunzip2'=> '2.068',
11059             'IO::Uncompress::Gunzip'=> '2.068',
11060             'IO::Uncompress::Inflate'=> '2.068',
11061             'IO::Uncompress::RawInflate'=> '2.068',
11062             'IO::Uncompress::Unzip' => '2.068',
11063             'MIME::Base64' => '3.15',
11064             'Module::CoreList' => '5.20150220',
11065             'Module::CoreList::TieHashDelta'=> '5.20150220',
11066             'Module::CoreList::Utils'=> '5.20150220',
11067             'Module::Load::Conditional'=> '0.64',
11068             'Module::Metadata' => '1.000026',
11069             'Net::Cmd' => '3.05',
11070             'Net::Config' => '3.05',
11071             'Net::Domain' => '3.05',
11072             'Net::FTP' => '3.05',
11073             'Net::FTP::A' => '3.05',
11074             'Net::FTP::E' => '3.05',
11075             'Net::FTP::I' => '3.05',
11076             'Net::FTP::L' => '3.05',
11077             'Net::FTP::dataconn' => '3.05',
11078             'Net::NNTP' => '3.05',
11079             'Net::Netrc' => '3.05',
11080             'Net::POP3' => '3.05',
11081             'Net::SMTP' => '3.05',
11082             'Net::Time' => '3.05',
11083             'Opcode' => '1.31',
11084             'POSIX' => '1.49',
11085             'PerlIO::encoding' => '0.21',
11086             'Pod::Simple' => '3.29',
11087             'Pod::Simple::BlackBox' => '3.29',
11088             'Pod::Simple::Checker' => '3.29',
11089             'Pod::Simple::Debug' => '3.29',
11090             'Pod::Simple::DumpAsText'=> '3.29',
11091             'Pod::Simple::DumpAsXML'=> '3.29',
11092             'Pod::Simple::HTML' => '3.29',
11093             'Pod::Simple::HTMLBatch'=> '3.29',
11094             'Pod::Simple::LinkSection'=> '3.29',
11095             'Pod::Simple::Methody' => '3.29',
11096             'Pod::Simple::Progress' => '3.29',
11097             'Pod::Simple::PullParser'=> '3.29',
11098             'Pod::Simple::PullParserEndToken'=> '3.29',
11099             'Pod::Simple::PullParserStartToken'=> '3.29',
11100             'Pod::Simple::PullParserTextToken'=> '3.29',
11101             'Pod::Simple::PullParserToken'=> '3.29',
11102             'Pod::Simple::RTF' => '3.29',
11103             'Pod::Simple::Search' => '3.29',
11104             'Pod::Simple::SimpleTree'=> '3.29',
11105             'Pod::Simple::Text' => '3.29',
11106             'Pod::Simple::TextContent'=> '3.29',
11107             'Pod::Simple::TiedOutFH'=> '3.29',
11108             'Pod::Simple::Transcode'=> '3.29',
11109             'Pod::Simple::TranscodeDumb'=> '3.29',
11110             'Pod::Simple::TranscodeSmart'=> '3.29',
11111             'Pod::Simple::XHTML' => '3.29',
11112             'Pod::Simple::XMLOutStream'=> '3.29',
11113             'SDBM_File' => '1.13',
11114             'Safe' => '2.39',
11115             'TAP::Base' => '3.35',
11116             'TAP::Formatter::Base' => '3.35',
11117             'TAP::Formatter::Color' => '3.35',
11118             'TAP::Formatter::Console'=> '3.35',
11119             'TAP::Formatter::Console::ParallelSession'=> '3.35',
11120             'TAP::Formatter::Console::Session'=> '3.35',
11121             'TAP::Formatter::File' => '3.35',
11122             'TAP::Formatter::File::Session'=> '3.35',
11123             'TAP::Formatter::Session'=> '3.35',
11124             'TAP::Harness' => '3.35',
11125             'TAP::Harness::Env' => '3.35',
11126             'TAP::Object' => '3.35',
11127             'TAP::Parser' => '3.35',
11128             'TAP::Parser::Aggregator'=> '3.35',
11129             'TAP::Parser::Grammar' => '3.35',
11130             'TAP::Parser::Iterator' => '3.35',
11131             'TAP::Parser::Iterator::Array'=> '3.35',
11132             'TAP::Parser::Iterator::Process'=> '3.35',
11133             'TAP::Parser::Iterator::Stream'=> '3.35',
11134             'TAP::Parser::IteratorFactory'=> '3.35',
11135             'TAP::Parser::Multiplexer'=> '3.35',
11136             'TAP::Parser::Result' => '3.35',
11137             'TAP::Parser::Result::Bailout'=> '3.35',
11138             'TAP::Parser::Result::Comment'=> '3.35',
11139             'TAP::Parser::Result::Plan'=> '3.35',
11140             'TAP::Parser::Result::Pragma'=> '3.35',
11141             'TAP::Parser::Result::Test'=> '3.35',
11142             'TAP::Parser::Result::Unknown'=> '3.35',
11143             'TAP::Parser::Result::Version'=> '3.35',
11144             'TAP::Parser::Result::YAML'=> '3.35',
11145             'TAP::Parser::ResultFactory'=> '3.35',
11146             'TAP::Parser::Scheduler'=> '3.35',
11147             'TAP::Parser::Scheduler::Job'=> '3.35',
11148             'TAP::Parser::Scheduler::Spinner'=> '3.35',
11149             'TAP::Parser::Source' => '3.35',
11150             'TAP::Parser::SourceHandler'=> '3.35',
11151             'TAP::Parser::SourceHandler::Executable'=> '3.35',
11152             'TAP::Parser::SourceHandler::File'=> '3.35',
11153             'TAP::Parser::SourceHandler::Handle'=> '3.35',
11154             'TAP::Parser::SourceHandler::Perl'=> '3.35',
11155             'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
11156             'TAP::Parser::YAMLish::Reader'=> '3.35',
11157             'TAP::Parser::YAMLish::Writer'=> '3.35',
11158             'Test::Builder' => '1.301001_097',
11159             'Test::Builder::Module' => '1.301001_097',
11160             'Test::Builder::Tester' => '1.301001_097',
11161             'Test::Builder::Tester::Color'=> '1.301001_097',
11162             'Test::Harness' => '3.35',
11163             'Test::More' => '1.301001_097',
11164             'Test::Simple' => '1.301001_097',
11165             'Test::Stream' => '1.301001_097',
11166             'Test::Stream::Block' => undef,
11167             'Test::Tester' => '1.301001_097',
11168             'Test::Tester::CaptureRunner'=> undef,
11169             'Test::Tester::Delegate'=> undef,
11170             'Test::use::ok' => '1.301001_097',
11171             'Unicode::Collate' => '1.10',
11172             'Unicode::Collate::CJK::Big5'=> '1.10',
11173             'Unicode::Collate::CJK::GB2312'=> '1.10',
11174             'Unicode::Collate::CJK::JISX0208'=> '1.10',
11175             'Unicode::Collate::CJK::Korean'=> '1.10',
11176             'Unicode::Collate::CJK::Pinyin'=> '1.10',
11177             'Unicode::Collate::CJK::Stroke'=> '1.10',
11178             'Unicode::Collate::CJK::Zhuyin'=> '1.10',
11179             'Unicode::Collate::Locale'=> '1.10',
11180             'VMS::DCLsym' => '1.06',
11181             'XS::APItest' => '0.70',
11182             'arybase' => '0.10',
11183             'attributes' => '0.25',
11184             'autodie' => '2.26',
11185             'autodie::Scope::Guard' => '2.26',
11186             'autodie::Scope::GuardStack'=> '2.26',
11187             'autodie::ScopeUtil' => '2.26',
11188             'autodie::exception' => '2.26',
11189             'autodie::exception::system'=> '2.26',
11190             'autodie::hints' => '2.26',
11191             'autodie::skip' => '2.26',
11192             'ok' => '1.301001_097',
11193             're' => '0.30',
11194             'warnings' => '1.30',
11195             },
11196             removed => {
11197             }
11198             },
11199             5.020002 => {
11200             delta_from => 5.020001,
11201             changed => {
11202             'CPAN::Author' => '5.5002',
11203             'CPAN::CacheMgr' => '5.5002',
11204             'CPAN::FTP' => '5.5006',
11205             'CPAN::HTTP::Client' => '1.9601',
11206             'CPAN::HandleConfig' => '5.5005',
11207             'CPAN::Index' => '1.9601',
11208             'CPAN::LWP::UserAgent' => '1.9601',
11209             'CPAN::Mirrors' => '1.9601',
11210             'Config' => '5.020002',
11211             'Cwd' => '3.48_01',
11212             'Data::Dumper' => '2.151_01',
11213             'Errno' => '1.20_05',
11214             'File::Spec' => '3.48_01',
11215             'File::Spec::Cygwin' => '3.48_01',
11216             'File::Spec::Epoc' => '3.48_01',
11217             'File::Spec::Functions' => '3.48_01',
11218             'File::Spec::Mac' => '3.48_01',
11219             'File::Spec::OS2' => '3.48_01',
11220             'File::Spec::Unix' => '3.48_01',
11221             'File::Spec::VMS' => '3.48_01',
11222             'File::Spec::Win32' => '3.48_01',
11223             'IO::Socket' => '1.38',
11224             'Module::CoreList' => '5.20150214',
11225             'Module::CoreList::TieHashDelta'=> '5.20150214',
11226             'Module::CoreList::Utils'=> '5.20150214',
11227             'PerlIO::scalar' => '0.18_01',
11228             'Pod::PlainText' => '2.07',
11229             'Storable' => '2.49_01',
11230             'VMS::DCLsym' => '1.05_01',
11231             'VMS::Stdio' => '2.41',
11232             'attributes' => '0.23',
11233             'feature' => '1.36_01',
11234             },
11235             removed => {
11236             }
11237             },
11238             5.021009 => {
11239             delta_from => 5.021008,
11240             changed => {
11241             'B' => '1.56',
11242             'B::Debug' => '1.23',
11243             'B::Deparse' => '1.33',
11244             'B::Op_private' => '5.021009',
11245             'Benchmark' => '1.20',
11246             'CPAN::Author' => '5.5002',
11247             'CPAN::CacheMgr' => '5.5002',
11248             'CPAN::FTP' => '5.5006',
11249             'CPAN::HTTP::Client' => '1.9601',
11250             'CPAN::HandleConfig' => '5.5005',
11251             'CPAN::Index' => '1.9601',
11252             'CPAN::LWP::UserAgent' => '1.9601',
11253             'CPAN::Meta::Requirements'=> '2.132',
11254             'CPAN::Mirrors' => '1.9601',
11255             'Carp' => '1.35',
11256             'Carp::Heavy' => '1.35',
11257             'Config' => '5.021009',
11258             'Config::Perl::V' => '0.23',
11259             'Data::Dumper' => '2.157',
11260             'Devel::Peek' => '1.22',
11261             'DynaLoader' => '1.31',
11262             'Encode' => '2.70',
11263             'Encode::MIME::Header' => '2.16',
11264             'Errno' => '1.23',
11265             'ExtUtils::Miniperl' => '1.04',
11266             'HTTP::Tiny' => '0.054',
11267             'Module::CoreList' => '5.20150220',
11268             'Module::CoreList::TieHashDelta'=> '5.20150220',
11269             'Module::CoreList::Utils'=> '5.20150220',
11270             'Opcode' => '1.32',
11271             'POSIX' => '1.51',
11272             'Perl::OSType' => '1.008',
11273             'PerlIO::scalar' => '0.22',
11274             'Pod::Find' => '1.63',
11275             'Pod::InputObjects' => '1.63',
11276             'Pod::ParseUtils' => '1.63',
11277             'Pod::Parser' => '1.63',
11278             'Pod::Perldoc' => '3.25',
11279             'Pod::Perldoc::BaseTo' => '3.25',
11280             'Pod::Perldoc::GetOptsOO'=> '3.25',
11281             'Pod::Perldoc::ToANSI' => '3.25',
11282             'Pod::Perldoc::ToChecker'=> '3.25',
11283             'Pod::Perldoc::ToMan' => '3.25',
11284             'Pod::Perldoc::ToNroff' => '3.25',
11285             'Pod::Perldoc::ToPod' => '3.25',
11286             'Pod::Perldoc::ToRtf' => '3.25',
11287             'Pod::Perldoc::ToTerm' => '3.25',
11288             'Pod::Perldoc::ToText' => '3.25',
11289             'Pod::Perldoc::ToTk' => '3.25',
11290             'Pod::Perldoc::ToXml' => '3.25',
11291             'Pod::PlainText' => '2.07',
11292             'Pod::Select' => '1.63',
11293             'Socket' => '2.018',
11294             'Storable' => '2.53',
11295             'Test::Builder' => '1.301001_098',
11296             'Test::Builder::Module' => '1.301001_098',
11297             'Test::Builder::Tester' => '1.301001_098',
11298             'Test::Builder::Tester::Color'=> '1.301001_098',
11299             'Test::More' => '1.301001_098',
11300             'Test::Simple' => '1.301001_098',
11301             'Test::Stream' => '1.301001_098',
11302             'Test::Tester' => '1.301001_098',
11303             'Test::use::ok' => '1.301001_098',
11304             'Unicode::Collate' => '1.11',
11305             'Unicode::Collate::CJK::Big5'=> '1.11',
11306             'Unicode::Collate::CJK::GB2312'=> '1.11',
11307             'Unicode::Collate::CJK::JISX0208'=> '1.11',
11308             'Unicode::Collate::CJK::Korean'=> '1.11',
11309             'Unicode::Collate::CJK::Pinyin'=> '1.11',
11310             'Unicode::Collate::CJK::Stroke'=> '1.11',
11311             'Unicode::Collate::CJK::Zhuyin'=> '1.11',
11312             'Unicode::Collate::Locale'=> '1.11',
11313             'Unicode::UCD' => '0.61',
11314             'VMS::Stdio' => '2.41',
11315             'Win32' => '0.51',
11316             'Win32API::File' => '0.1202',
11317             'attributes' => '0.26',
11318             'bigint' => '0.39',
11319             'bignum' => '0.39',
11320             'bigrat' => '0.39',
11321             'constant' => '1.33',
11322             'encoding' => '2.13',
11323             'feature' => '1.40',
11324             'ok' => '1.301001_098',
11325             'overload' => '1.25',
11326             'perlfaq' => '5.021009',
11327             're' => '0.31',
11328             'threads::shared' => '1.48',
11329             'warnings' => '1.31',
11330             },
11331             removed => {
11332             }
11333             },
11334             5.021010 => {
11335             delta_from => 5.021009,
11336             changed => {
11337             'App::Cpan' => '1.63',
11338             'B' => '1.57',
11339             'B::Deparse' => '1.34',
11340             'B::Op_private' => '5.021010',
11341             'Benchmark' => '1.2',
11342             'CPAN' => '2.10',
11343             'CPAN::Distribution' => '2.04',
11344             'CPAN::FirstTime' => '5.5307',
11345             'CPAN::HTTP::Credentials'=> '1.9601',
11346             'CPAN::HandleConfig' => '5.5006',
11347             'CPAN::Meta' => '2.150001',
11348             'CPAN::Meta::Converter' => '2.150001',
11349             'CPAN::Meta::Feature' => '2.150001',
11350             'CPAN::Meta::History' => '2.150001',
11351             'CPAN::Meta::Merge' => '2.150001',
11352             'CPAN::Meta::Prereqs' => '2.150001',
11353             'CPAN::Meta::Spec' => '2.150001',
11354             'CPAN::Meta::Validator' => '2.150001',
11355             'CPAN::Module' => '5.5002',
11356             'CPAN::Plugin' => '0.95',
11357             'CPAN::Plugin::Specfile'=> '0.01',
11358             'CPAN::Shell' => '5.5005',
11359             'Carp' => '1.36',
11360             'Carp::Heavy' => '1.36',
11361             'Config' => '5.02101',
11362             'Cwd' => '3.55',
11363             'DB' => '1.08',
11364             'Data::Dumper' => '2.158',
11365             'Devel::PPPort' => '3.31',
11366             'DynaLoader' => '1.32',
11367             'Encode' => '2.72',
11368             'Encode::Alias' => '2.19',
11369             'File::Spec' => '3.55',
11370             'File::Spec::Cygwin' => '3.55',
11371             'File::Spec::Epoc' => '3.55',
11372             'File::Spec::Functions' => '3.55',
11373             'File::Spec::Mac' => '3.55',
11374             'File::Spec::OS2' => '3.55',
11375             'File::Spec::Unix' => '3.55',
11376             'File::Spec::VMS' => '3.55',
11377             'File::Spec::Win32' => '3.55',
11378             'Getopt::Long' => '2.45',
11379             'Locale::Codes' => '3.34',
11380             'Locale::Codes::Constants'=> '3.34',
11381             'Locale::Codes::Country'=> '3.34',
11382             'Locale::Codes::Country_Codes'=> '3.34',
11383             'Locale::Codes::Country_Retired'=> '3.34',
11384             'Locale::Codes::Currency'=> '3.34',
11385             'Locale::Codes::Currency_Codes'=> '3.34',
11386             'Locale::Codes::Currency_Retired'=> '3.34',
11387             'Locale::Codes::LangExt'=> '3.34',
11388             'Locale::Codes::LangExt_Codes'=> '3.34',
11389             'Locale::Codes::LangExt_Retired'=> '3.34',
11390             'Locale::Codes::LangFam'=> '3.34',
11391             'Locale::Codes::LangFam_Codes'=> '3.34',
11392             'Locale::Codes::LangFam_Retired'=> '3.34',
11393             'Locale::Codes::LangVar'=> '3.34',
11394             'Locale::Codes::LangVar_Codes'=> '3.34',
11395             'Locale::Codes::LangVar_Retired'=> '3.34',
11396             'Locale::Codes::Language'=> '3.34',
11397             'Locale::Codes::Language_Codes'=> '3.34',
11398             'Locale::Codes::Language_Retired'=> '3.34',
11399             'Locale::Codes::Script' => '3.34',
11400             'Locale::Codes::Script_Codes'=> '3.34',
11401             'Locale::Codes::Script_Retired'=> '3.34',
11402             'Locale::Country' => '3.34',
11403             'Locale::Currency' => '3.34',
11404             'Locale::Language' => '3.34',
11405             'Locale::Script' => '3.34',
11406             'Module::CoreList' => '5.20150320',
11407             'Module::CoreList::TieHashDelta'=> '5.20150320',
11408             'Module::CoreList::Utils'=> '5.20150320',
11409             'POSIX' => '1.52',
11410             'Pod::Functions' => '1.09',
11411             'Pod::Functions::Functions'=> '1.09',
11412             'Term::Complete' => '1.403',
11413             'Test::Builder' => '1.001014',
11414             'Test::Builder::IO::Scalar'=> '2.113',
11415             'Test::Builder::Module' => '1.001014',
11416             'Test::Builder::Tester' => '1.28',
11417             'Test::Builder::Tester::Color'=> '1.290001',
11418             'Test::More' => '1.001014',
11419             'Test::Simple' => '1.001014',
11420             'Test::Tester' => '0.114',
11421             'Test::use::ok' => '0.16',
11422             'Text::Balanced' => '2.03',
11423             'Text::ParseWords' => '3.30',
11424             'Unicode::Collate' => '1.12',
11425             'Unicode::Collate::CJK::Big5'=> '1.12',
11426             'Unicode::Collate::CJK::GB2312'=> '1.12',
11427             'Unicode::Collate::CJK::JISX0208'=> '1.12',
11428             'Unicode::Collate::CJK::Korean'=> '1.12',
11429             'Unicode::Collate::CJK::Pinyin'=> '1.12',
11430             'Unicode::Collate::CJK::Stroke'=> '1.12',
11431             'Unicode::Collate::CJK::Zhuyin'=> '1.12',
11432             'Unicode::Collate::Locale'=> '1.12',
11433             'XS::APItest' => '0.71',
11434             'encoding' => '2.14',
11435             'locale' => '1.06',
11436             'meta_notation' => undef,
11437             'ok' => '0.16',
11438             'parent' => '0.232',
11439             're' => '0.32',
11440             'sigtrap' => '1.08',
11441             'threads' => '2.01',
11442             'utf8' => '1.15',
11443             },
11444             removed => {
11445             'Test::CanFork' => 1,
11446             'Test::CanThread' => 1,
11447             'Test::More::DeepCheck' => 1,
11448             'Test::More::DeepCheck::Strict'=> 1,
11449             'Test::More::DeepCheck::Tolerant'=> 1,
11450             'Test::More::Tools' => 1,
11451             'Test::MostlyLike' => 1,
11452             'Test::Stream' => 1,
11453             'Test::Stream::API' => 1,
11454             'Test::Stream::ArrayBase'=> 1,
11455             'Test::Stream::ArrayBase::Meta'=> 1,
11456             'Test::Stream::Block' => 1,
11457             'Test::Stream::Carp' => 1,
11458             'Test::Stream::Context' => 1,
11459             'Test::Stream::Event' => 1,
11460             'Test::Stream::Event::Bail'=> 1,
11461             'Test::Stream::Event::Child'=> 1,
11462             'Test::Stream::Event::Diag'=> 1,
11463             'Test::Stream::Event::Finish'=> 1,
11464             'Test::Stream::Event::Note'=> 1,
11465             'Test::Stream::Event::Ok'=> 1,
11466             'Test::Stream::Event::Plan'=> 1,
11467             'Test::Stream::Event::Subtest'=> 1,
11468             'Test::Stream::ExitMagic'=> 1,
11469             'Test::Stream::ExitMagic::Context'=> 1,
11470             'Test::Stream::Exporter'=> 1,
11471             'Test::Stream::Exporter::Meta'=> 1,
11472             'Test::Stream::ForceExit'=> 1,
11473             'Test::Stream::IOSets' => 1,
11474             'Test::Stream::Meta' => 1,
11475             'Test::Stream::PackageUtil'=> 1,
11476             'Test::Stream::Subtest' => 1,
11477             'Test::Stream::Tester' => 1,
11478             'Test::Stream::Tester::Checks'=> 1,
11479             'Test::Stream::Tester::Checks::Event'=> 1,
11480             'Test::Stream::Tester::Events'=> 1,
11481             'Test::Stream::Tester::Events::Event'=> 1,
11482             'Test::Stream::Tester::Grab'=> 1,
11483             'Test::Stream::Threads' => 1,
11484             'Test::Stream::Toolset' => 1,
11485             'Test::Stream::Util' => 1,
11486             }
11487             },
11488             5.021011 => {
11489             delta_from => 5.021010,
11490             changed => {
11491             'B' => '1.58',
11492             'B::Deparse' => '1.35',
11493             'B::Op_private' => '5.021011',
11494             'CPAN' => '2.11',
11495             'Config' => '5.021011',
11496             'Config::Perl::V' => '0.24',
11497             'Cwd' => '3.56',
11498             'ExtUtils::Miniperl' => '1.05',
11499             'ExtUtils::ParseXS' => '3.28',
11500             'ExtUtils::ParseXS::Constants'=> '3.28',
11501             'ExtUtils::ParseXS::CountLines'=> '3.28',
11502             'ExtUtils::ParseXS::Eval'=> '3.28',
11503             'ExtUtils::ParseXS::Utilities'=> '3.28',
11504             'ExtUtils::Typemaps' => '3.28',
11505             'ExtUtils::Typemaps::Cmd'=> '3.28',
11506             'ExtUtils::Typemaps::InputMap'=> '3.28',
11507             'ExtUtils::Typemaps::OutputMap'=> '3.28',
11508             'ExtUtils::Typemaps::Type'=> '3.28',
11509             'File::Spec' => '3.56',
11510             'File::Spec::Cygwin' => '3.56',
11511             'File::Spec::Epoc' => '3.56',
11512             'File::Spec::Functions' => '3.56',
11513             'File::Spec::Mac' => '3.56',
11514             'File::Spec::OS2' => '3.56',
11515             'File::Spec::Unix' => '3.56',
11516             'File::Spec::VMS' => '3.56',
11517             'File::Spec::Win32' => '3.56',
11518             'IO::Socket::IP' => '0.37',
11519             'Module::CoreList' => '5.20150420',
11520             'Module::CoreList::TieHashDelta'=> '5.20150420',
11521             'Module::CoreList::Utils'=> '5.20150420',
11522             'PerlIO::mmap' => '0.014',
11523             'XS::APItest' => '0.72',
11524             'attributes' => '0.27',
11525             'if' => '0.0604',
11526             'utf8' => '1.16',
11527             'warnings' => '1.32',
11528             },
11529             removed => {
11530             }
11531             },
11532             5.022000 => {
11533             delta_from => 5.021011,
11534             changed => {
11535             'B::Op_private' => '5.022000',
11536             'Config' => '5.022',
11537             'ExtUtils::Command::MM' => '7.04_01',
11538             'ExtUtils::Liblist' => '7.04_01',
11539             'ExtUtils::Liblist::Kid'=> '7.04_01',
11540             'ExtUtils::MM' => '7.04_01',
11541             'ExtUtils::MM_AIX' => '7.04_01',
11542             'ExtUtils::MM_Any' => '7.04_01',
11543             'ExtUtils::MM_BeOS' => '7.04_01',
11544             'ExtUtils::MM_Cygwin' => '7.04_01',
11545             'ExtUtils::MM_DOS' => '7.04_01',
11546             'ExtUtils::MM_Darwin' => '7.04_01',
11547             'ExtUtils::MM_MacOS' => '7.04_01',
11548             'ExtUtils::MM_NW5' => '7.04_01',
11549             'ExtUtils::MM_OS2' => '7.04_01',
11550             'ExtUtils::MM_QNX' => '7.04_01',
11551             'ExtUtils::MM_UWIN' => '7.04_01',
11552             'ExtUtils::MM_Unix' => '7.04_01',
11553             'ExtUtils::MM_VMS' => '7.04_01',
11554             'ExtUtils::MM_VOS' => '7.04_01',
11555             'ExtUtils::MM_Win32' => '7.04_01',
11556             'ExtUtils::MM_Win95' => '7.04_01',
11557             'ExtUtils::MY' => '7.04_01',
11558             'ExtUtils::MakeMaker' => '7.04_01',
11559             'ExtUtils::MakeMaker::Config'=> '7.04_01',
11560             'ExtUtils::MakeMaker::Locale'=> '7.04_01',
11561             'ExtUtils::MakeMaker::version'=> '7.04_01',
11562             'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
11563             'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
11564             'ExtUtils::Mkbootstrap' => '7.04_01',
11565             'ExtUtils::Mksymlists' => '7.04_01',
11566             'ExtUtils::testlib' => '7.04_01',
11567             'Module::CoreList' => '5.20150520',
11568             'Module::CoreList::TieHashDelta'=> '5.20150520',
11569             'Module::CoreList::Utils'=> '5.20150520',
11570             'POSIX' => '1.53',
11571             'PerlIO::via::QuotedPrint'=> '0.08',
11572             'overload' => '1.26',
11573             'utf8' => '1.17',
11574             },
11575             removed => {
11576             }
11577             },
11578             5.023000 => {
11579             delta_from => 5.022000,
11580             changed => {
11581             'B::Op_private' => '5.023000',
11582             'CPAN::Meta' => '2.150005',
11583             'CPAN::Meta::Converter' => '2.150005',
11584             'CPAN::Meta::Feature' => '2.150005',
11585             'CPAN::Meta::History' => '2.150005',
11586             'CPAN::Meta::Merge' => '2.150005',
11587             'CPAN::Meta::Prereqs' => '2.150005',
11588             'CPAN::Meta::Requirements'=> '2.133',
11589             'CPAN::Meta::Spec' => '2.150005',
11590             'CPAN::Meta::Validator' => '2.150005',
11591             'CPAN::Meta::YAML' => '0.016',
11592             'Config' => '5.023',
11593             'Encode' => '2.73',
11594             'ExtUtils::CBuilder' => '0.280223',
11595             'ExtUtils::CBuilder::Base'=> '0.280223',
11596             'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
11597             'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
11598             'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
11599             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
11600             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
11601             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
11602             'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
11603             'ExtUtils::CBuilder::Platform::android'=> '0.280223',
11604             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
11605             'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
11606             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
11607             'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
11608             'Fatal' => '2.27',
11609             'Getopt::Long' => '2.46',
11610             'HTTP::Tiny' => '0.056',
11611             'List::Util' => '1.42_01',
11612             'List::Util::XS' => '1.42_01',
11613             'Locale::Codes' => '3.35',
11614             'Locale::Codes::Constants'=> '3.35',
11615             'Locale::Codes::Country'=> '3.35',
11616             'Locale::Codes::Country_Codes'=> '3.35',
11617             'Locale::Codes::Country_Retired'=> '3.35',
11618             'Locale::Codes::Currency'=> '3.35',
11619             'Locale::Codes::Currency_Codes'=> '3.35',
11620             'Locale::Codes::Currency_Retired'=> '3.35',
11621             'Locale::Codes::LangExt'=> '3.35',
11622             'Locale::Codes::LangExt_Codes'=> '3.35',
11623             'Locale::Codes::LangExt_Retired'=> '3.35',
11624             'Locale::Codes::LangFam'=> '3.35',
11625             'Locale::Codes::LangFam_Codes'=> '3.35',
11626             'Locale::Codes::LangFam_Retired'=> '3.35',
11627             'Locale::Codes::LangVar'=> '3.35',
11628             'Locale::Codes::LangVar_Codes'=> '3.35',
11629             'Locale::Codes::LangVar_Retired'=> '3.35',
11630             'Locale::Codes::Language'=> '3.35',
11631             'Locale::Codes::Language_Codes'=> '3.35',
11632             'Locale::Codes::Language_Retired'=> '3.35',
11633             'Locale::Codes::Script' => '3.35',
11634             'Locale::Codes::Script_Codes'=> '3.35',
11635             'Locale::Codes::Script_Retired'=> '3.35',
11636             'Locale::Country' => '3.35',
11637             'Locale::Currency' => '3.35',
11638             'Locale::Language' => '3.35',
11639             'Locale::Script' => '3.35',
11640             'Math::BigFloat' => '1.999701',
11641             'Math::BigInt' => '1.999701',
11642             'Math::BigInt::Calc' => '1.999701',
11643             'Math::BigInt::CalcEmu' => '1.999701',
11644             'Math::BigRat' => '0.260801',
11645             'Module::CoreList' => '5.20150620',
11646             'Module::CoreList::TieHashDelta'=> '5.20150620',
11647             'Module::CoreList::Utils'=> '5.20150620',
11648             'Module::Metadata' => '1.000027',
11649             'Net::Cmd' => '3.06',
11650             'Net::Config' => '3.06',
11651             'Net::Domain' => '3.06',
11652             'Net::FTP' => '3.06',
11653             'Net::FTP::A' => '3.06',
11654             'Net::FTP::E' => '3.06',
11655             'Net::FTP::I' => '3.06',
11656             'Net::FTP::L' => '3.06',
11657             'Net::FTP::dataconn' => '3.06',
11658             'Net::NNTP' => '3.06',
11659             'Net::Netrc' => '3.06',
11660             'Net::POP3' => '3.06',
11661             'Net::SMTP' => '3.06',
11662             'Net::Time' => '3.06',
11663             'POSIX' => '1.54',
11664             'Parse::CPAN::Meta' => '1.4417',
11665             'Pod::Simple' => '3.30',
11666             'Pod::Simple::BlackBox' => '3.30',
11667             'Pod::Simple::Checker' => '3.30',
11668             'Pod::Simple::Debug' => '3.30',
11669             'Pod::Simple::DumpAsText'=> '3.30',
11670             'Pod::Simple::DumpAsXML'=> '3.30',
11671             'Pod::Simple::HTML' => '3.30',
11672             'Pod::Simple::HTMLBatch'=> '3.30',
11673             'Pod::Simple::LinkSection'=> '3.30',
11674             'Pod::Simple::Methody' => '3.30',
11675             'Pod::Simple::Progress' => '3.30',
11676             'Pod::Simple::PullParser'=> '3.30',
11677             'Pod::Simple::PullParserEndToken'=> '3.30',
11678             'Pod::Simple::PullParserStartToken'=> '3.30',
11679             'Pod::Simple::PullParserTextToken'=> '3.30',
11680             'Pod::Simple::PullParserToken'=> '3.30',
11681             'Pod::Simple::RTF' => '3.30',
11682             'Pod::Simple::Search' => '3.30',
11683             'Pod::Simple::SimpleTree'=> '3.30',
11684             'Pod::Simple::Text' => '3.30',
11685             'Pod::Simple::TextContent'=> '3.30',
11686             'Pod::Simple::TiedOutFH'=> '3.30',
11687             'Pod::Simple::Transcode'=> '3.30',
11688             'Pod::Simple::TranscodeDumb'=> '3.30',
11689             'Pod::Simple::TranscodeSmart'=> '3.30',
11690             'Pod::Simple::XHTML' => '3.30',
11691             'Pod::Simple::XMLOutStream'=> '3.30',
11692             'Pod::Usage' => '1.67',
11693             'Scalar::Util' => '1.42_01',
11694             'Socket' => '2.019',
11695             'Sub::Util' => '1.42_01',
11696             'Time::Piece' => '1.30',
11697             'Time::Seconds' => '1.30',
11698             'UNIVERSAL' => '1.13',
11699             'Unicode' => '8.0.0',
11700             'XS::APItest' => '0.73',
11701             'autodie' => '2.27',
11702             'autodie::Scope::Guard' => '2.27',
11703             'autodie::Scope::GuardStack'=> '2.27',
11704             'autodie::Util' => '2.27',
11705             'autodie::exception' => '2.27',
11706             'autodie::exception::system'=> '2.27',
11707             'autodie::hints' => '2.27',
11708             'autodie::skip' => '2.27',
11709             'encoding' => '2.15',
11710             'feature' => '1.41',
11711             'parent' => '0.234',
11712             'threads' => '2.02',
11713             },
11714             removed => {
11715             }
11716             },
11717             5.023001 => {
11718             delta_from => 5.023000,
11719             changed => {
11720             'B::Op_private' => '5.023001',
11721             'Config' => '5.023001',
11722             'DynaLoader' => '1.33',
11723             'Encode' => '2.75',
11724             'Encode::MIME::Header' => '2.17',
11725             'Encode::Unicode' => '2.13',
11726             'Fatal' => '2.29',
11727             'File::Path' => '2.11',
11728             'Getopt::Long' => '2.47',
11729             'I18N::Langinfo' => '0.13',
11730             'IPC::Open3' => '1.19',
11731             'Module::CoreList' => '5.20150720',
11732             'Module::CoreList::TieHashDelta'=> '5.20150720',
11733             'Module::CoreList::Utils'=> '5.20150720',
11734             'Net::Cmd' => '3.07',
11735             'Net::Config' => '3.07',
11736             'Net::Domain' => '3.07',
11737             'Net::FTP' => '3.07',
11738             'Net::FTP::A' => '3.07',
11739             'Net::FTP::E' => '3.07',
11740             'Net::FTP::I' => '3.07',
11741             'Net::FTP::L' => '3.07',
11742             'Net::FTP::dataconn' => '3.07',
11743             'Net::NNTP' => '3.07',
11744             'Net::Netrc' => '3.07',
11745             'Net::POP3' => '3.07',
11746             'Net::SMTP' => '3.07',
11747             'Net::Time' => '3.07',
11748             'Opcode' => '1.33',
11749             'POSIX' => '1.55',
11750             'PerlIO::scalar' => '0.23',
11751             'Socket' => '2.020',
11752             'Storable' => '2.54',
11753             'Unicode::Collate' => '1.14',
11754             'Unicode::Collate::CJK::Big5'=> '1.14',
11755             'Unicode::Collate::CJK::GB2312'=> '1.14',
11756             'Unicode::Collate::CJK::JISX0208'=> '1.14',
11757             'Unicode::Collate::CJK::Korean'=> '1.14',
11758             'Unicode::Collate::CJK::Pinyin'=> '1.14',
11759             'Unicode::Collate::CJK::Stroke'=> '1.14',
11760             'Unicode::Collate::CJK::Zhuyin'=> '1.14',
11761             'Unicode::Collate::Locale'=> '1.14',
11762             'Unicode::Normalize' => '1.19',
11763             'XS::APItest' => '0.74',
11764             'XS::Typemap' => '0.14',
11765             'autodie' => '2.29',
11766             'autodie::Scope::Guard' => '2.29',
11767             'autodie::Scope::GuardStack'=> '2.29',
11768             'autodie::Util' => '2.29',
11769             'autodie::exception' => '2.29',
11770             'autodie::exception::system'=> '2.29',
11771             'autodie::hints' => '2.29',
11772             'autodie::skip' => '2.29',
11773             'encoding' => '2.16',
11774             'feature' => '1.42',
11775             'warnings' => '1.33',
11776             },
11777             removed => {
11778             'autodie::ScopeUtil' => 1,
11779             }
11780             },
11781             5.023002 => {
11782             delta_from => 5.023001,
11783             changed => {
11784             'Attribute::Handlers' => '0.99',
11785             'B::Op_private' => '5.023002',
11786             'CPAN::Meta::YAML' => '0.017',
11787             'Config' => '5.023002',
11788             'Cwd' => '3.57',
11789             'Encode' => '2.76',
11790             'ExtUtils::ParseXS' => '3.29',
11791             'ExtUtils::ParseXS::Constants'=> '3.29',
11792             'ExtUtils::ParseXS::CountLines'=> '3.29',
11793             'ExtUtils::ParseXS::Eval'=> '3.29',
11794             'ExtUtils::ParseXS::Utilities'=> '3.29',
11795             'ExtUtils::Typemaps' => '3.29',
11796             'File::Find' => '1.30',
11797             'File::Spec' => '3.57',
11798             'File::Spec::Cygwin' => '3.57',
11799             'File::Spec::Epoc' => '3.57',
11800             'File::Spec::Functions' => '3.57',
11801             'File::Spec::Mac' => '3.57',
11802             'File::Spec::OS2' => '3.57',
11803             'File::Spec::Unix' => '3.57',
11804             'File::Spec::VMS' => '3.57',
11805             'File::Spec::Win32' => '3.57',
11806             'Filter::Util::Call' => '1.55',
11807             'Hash::Util' => '0.19',
11808             'Module::CoreList' => '5.20150820',
11809             'Module::CoreList::TieHashDelta'=> '5.20150820',
11810             'Module::CoreList::Utils'=> '5.20150820',
11811             'POSIX' => '1.56',
11812             'Term::Cap' => '1.17',
11813             'Unicode::UCD' => '0.62',
11814             'perlfaq' => '5.021010',
11815             },
11816             removed => {
11817             }
11818             },
11819             5.020003 => {
11820             delta_from => 5.020002,
11821             changed => {
11822             'Config' => '5.020003',
11823             'Errno' => '1.20_06',
11824             'Module::CoreList' => '5.20150912',
11825             'Module::CoreList::TieHashDelta'=> '5.20150912',
11826             'Module::CoreList::Utils'=> '5.20150912',
11827             },
11828             removed => {
11829             }
11830             },
11831             5.023003 => {
11832             delta_from => 5.023002,
11833             changed => {
11834             'Amiga::ARexx' => '0.02',
11835             'Amiga::Exec' => '0.01',
11836             'B' => '1.59',
11837             'B::Op_private' => '5.023003',
11838             'Carp' => '1.37',
11839             'Carp::Heavy' => '1.37',
11840             'Compress::Raw::Zlib' => '2.068_01',
11841             'Config' => '5.023003',
11842             'Cwd' => '3.58',
11843             'DynaLoader' => '1.34',
11844             'Encode' => '2.77',
11845             'Encode::Unicode' => '2.14',
11846             'English' => '1.10',
11847             'Errno' => '1.24',
11848             'ExtUtils::Command' => '7.10',
11849             'ExtUtils::Command::MM' => '7.10',
11850             'ExtUtils::Liblist' => '7.10',
11851             'ExtUtils::Liblist::Kid'=> '7.10',
11852             'ExtUtils::MM' => '7.10',
11853             'ExtUtils::MM_AIX' => '7.10',
11854             'ExtUtils::MM_Any' => '7.10',
11855             'ExtUtils::MM_BeOS' => '7.10',
11856             'ExtUtils::MM_Cygwin' => '7.10',
11857             'ExtUtils::MM_DOS' => '7.10',
11858             'ExtUtils::MM_Darwin' => '7.10',
11859             'ExtUtils::MM_MacOS' => '7.10',
11860             'ExtUtils::MM_NW5' => '7.10',
11861             'ExtUtils::MM_OS2' => '7.10',
11862             'ExtUtils::MM_QNX' => '7.10',
11863             'ExtUtils::MM_UWIN' => '7.10',
11864             'ExtUtils::MM_Unix' => '7.10',
11865             'ExtUtils::MM_VMS' => '7.10',
11866             'ExtUtils::MM_VOS' => '7.10',
11867             'ExtUtils::MM_Win32' => '7.10',
11868             'ExtUtils::MM_Win95' => '7.10',
11869             'ExtUtils::MY' => '7.10',
11870             'ExtUtils::MakeMaker' => '7.10',
11871             'ExtUtils::MakeMaker::Config'=> '7.10',
11872             'ExtUtils::MakeMaker::Locale'=> '7.10',
11873             'ExtUtils::MakeMaker::version'=> '7.10',
11874             'ExtUtils::MakeMaker::version::regex'=> '7.10',
11875             'ExtUtils::MakeMaker::version::vpp'=> '7.10',
11876             'ExtUtils::Mkbootstrap' => '7.10',
11877             'ExtUtils::Mksymlists' => '7.10',
11878             'ExtUtils::ParseXS' => '3.30',
11879             'ExtUtils::ParseXS::Constants'=> '3.30',
11880             'ExtUtils::ParseXS::CountLines'=> '3.30',
11881             'ExtUtils::ParseXS::Eval'=> '3.30',
11882             'ExtUtils::ParseXS::Utilities'=> '3.30',
11883             'ExtUtils::Typemaps' => '3.30',
11884             'ExtUtils::Typemaps::Cmd'=> '3.30',
11885             'ExtUtils::Typemaps::InputMap'=> '3.30',
11886             'ExtUtils::Typemaps::OutputMap'=> '3.30',
11887             'ExtUtils::Typemaps::Type'=> '3.30',
11888             'ExtUtils::testlib' => '7.10',
11889             'File::Find' => '1.31',
11890             'File::Glob' => '1.25',
11891             'File::Spec' => '3.58',
11892             'File::Spec::AmigaOS' => '3.58',
11893             'File::Spec::Cygwin' => '3.58',
11894             'File::Spec::Epoc' => '3.58',
11895             'File::Spec::Functions' => '3.58',
11896             'File::Spec::Mac' => '3.58',
11897             'File::Spec::OS2' => '3.58',
11898             'File::Spec::Unix' => '3.58',
11899             'File::Spec::VMS' => '3.58',
11900             'File::Spec::Win32' => '3.58',
11901             'Hash::Util::FieldHash' => '1.17',
11902             'Locale::Codes' => '3.36',
11903             'Locale::Codes::Constants'=> '3.36',
11904             'Locale::Codes::Country'=> '3.36',
11905             'Locale::Codes::Country_Codes'=> '3.36',
11906             'Locale::Codes::Country_Retired'=> '3.36',
11907             'Locale::Codes::Currency'=> '3.36',
11908             'Locale::Codes::Currency_Codes'=> '3.36',
11909             'Locale::Codes::Currency_Retired'=> '3.36',
11910             'Locale::Codes::LangExt'=> '3.36',
11911             'Locale::Codes::LangExt_Codes'=> '3.36',
11912             'Locale::Codes::LangExt_Retired'=> '3.36',
11913             'Locale::Codes::LangFam'=> '3.36',
11914             'Locale::Codes::LangFam_Codes'=> '3.36',
11915             'Locale::Codes::LangFam_Retired'=> '3.36',
11916             'Locale::Codes::LangVar'=> '3.36',
11917             'Locale::Codes::LangVar_Codes'=> '3.36',
11918             'Locale::Codes::LangVar_Retired'=> '3.36',
11919             'Locale::Codes::Language'=> '3.36',
11920             'Locale::Codes::Language_Codes'=> '3.36',
11921             'Locale::Codes::Language_Retired'=> '3.36',
11922             'Locale::Codes::Script' => '3.36',
11923             'Locale::Codes::Script_Codes'=> '3.36',
11924             'Locale::Codes::Script_Retired'=> '3.36',
11925             'Locale::Country' => '3.36',
11926             'Locale::Currency' => '3.36',
11927             'Locale::Language' => '3.36',
11928             'Locale::Script' => '3.36',
11929             'Math::BigFloat::Trace' => '0.40',
11930             'Math::BigInt::Trace' => '0.40',
11931             'Module::CoreList' => '5.20150920',
11932             'Module::CoreList::TieHashDelta'=> '5.20150920',
11933             'Module::CoreList::Utils'=> '5.20150920',
11934             'OS2::DLL' => '1.06',
11935             'OS2::ExtAttr' => '0.04',
11936             'OS2::Process' => '1.11',
11937             'OS2::REXX' => '1.05',
11938             'POSIX' => '1.57',
11939             'Pod::Perldoc' => '3.25_01',
11940             'Socket' => '2.020_01',
11941             'Test' => '1.27',
11942             'Thread::Queue' => '3.06',
11943             'Time::HiRes' => '1.9727_02',
11944             'Unicode::UCD' => '0.63',
11945             'Win32' => '0.52',
11946             'XS::APItest' => '0.75',
11947             'bigint' => '0.40',
11948             'bignum' => '0.40',
11949             'bigrat' => '0.40',
11950             'encoding' => '2.17',
11951             'experimental' => '0.014',
11952             'if' => '0.0605',
11953             'locale' => '1.07',
11954             'mro' => '1.18',
11955             'threads' => '2.03',
11956             },
11957             removed => {
11958             }
11959             },
11960             5.023004 => {
11961             delta_from => 5.023003,
11962             changed => {
11963             'B' => '1.60',
11964             'B::Op_private' => '5.023004',
11965             'Compress::Raw::Bzip2' => '2.069',
11966             'Compress::Raw::Zlib' => '2.069',
11967             'Compress::Zlib' => '2.069',
11968             'Config' => '5.023004',
11969             'Devel::PPPort' => '3.32',
11970             'DynaLoader' => '1.35',
11971             'Encode' => '2.78',
11972             'ExtUtils::CBuilder' => '0.280224',
11973             'ExtUtils::CBuilder::Base'=> '0.280224',
11974             'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
11975             'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
11976             'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
11977             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
11978             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
11979             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
11980             'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
11981             'ExtUtils::CBuilder::Platform::android'=> '0.280224',
11982             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
11983             'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
11984             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
11985             'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
11986             'File::Path' => '2.12',
11987             'IO' => '1.36',
11988             'IO::Compress::Adapter::Bzip2'=> '2.069',
11989             'IO::Compress::Adapter::Deflate'=> '2.069',
11990             'IO::Compress::Adapter::Identity'=> '2.069',
11991             'IO::Compress::Base' => '2.069',
11992             'IO::Compress::Base::Common'=> '2.069',
11993             'IO::Compress::Bzip2' => '2.069',
11994             'IO::Compress::Deflate' => '2.069',
11995             'IO::Compress::Gzip' => '2.069',
11996             'IO::Compress::Gzip::Constants'=> '2.069',
11997             'IO::Compress::RawDeflate'=> '2.069',
11998             'IO::Compress::Zip' => '2.069',
11999             'IO::Compress::Zip::Constants'=> '2.069',
12000             'IO::Compress::Zlib::Constants'=> '2.069',
12001             'IO::Compress::Zlib::Extra'=> '2.069',
12002             'IO::Poll' => '0.10',
12003             'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
12004             'IO::Uncompress::Adapter::Identity'=> '2.069',
12005             'IO::Uncompress::Adapter::Inflate'=> '2.069',
12006             'IO::Uncompress::AnyInflate'=> '2.069',
12007             'IO::Uncompress::AnyUncompress'=> '2.069',
12008             'IO::Uncompress::Base' => '2.069',
12009             'IO::Uncompress::Bunzip2'=> '2.069',
12010             'IO::Uncompress::Gunzip'=> '2.069',
12011             'IO::Uncompress::Inflate'=> '2.069',
12012             'IO::Uncompress::RawInflate'=> '2.069',
12013             'IO::Uncompress::Unzip' => '2.069',
12014             'Math::BigFloat' => '1.999704',
12015             'Math::BigFloat::Trace' => '0.41',
12016             'Math::BigInt' => '1.999704',
12017             'Math::BigInt::Calc' => '1.999704',
12018             'Math::BigInt::CalcEmu' => '1.999704',
12019             'Math::BigInt::FastCalc'=> '0.34',
12020             'Math::BigInt::Trace' => '0.41',
12021             'Module::CoreList' => '5.20151020',
12022             'Module::CoreList::TieHashDelta'=> '5.20151020',
12023             'Module::CoreList::Utils'=> '5.20151020',
12024             'Module::Metadata' => '1.000029',
12025             'POSIX' => '1.58',
12026             'Perl::OSType' => '1.009',
12027             'PerlIO::encoding' => '0.22',
12028             'Socket' => '2.020_02',
12029             'Unicode::Normalize' => '1.21',
12030             'XS::APItest' => '0.76',
12031             'bigint' => '0.41',
12032             'bignum' => '0.41',
12033             'bigrat' => '0.41',
12034             'experimental' => '0.016',
12035             'if' => '0.0606',
12036             'warnings' => '1.35',
12037             },
12038             removed => {
12039             }
12040             },
12041             5.023005 => {
12042             delta_from => 5.023004,
12043             changed => {
12044             'B' => '1.61',
12045             'B::Op_private' => '5.023005',
12046             'Carp' => '1.38',
12047             'Carp::Heavy' => '1.38',
12048             'Config' => '5.023005',
12049             'Config::Perl::V' => '0.25',
12050             'Cwd' => '3.59',
12051             'Devel::Peek' => '1.23',
12052             'Dumpvalue' => '1.18',
12053             'DynaLoader' => '1.36',
12054             'File::Find' => '1.32',
12055             'File::Spec' => '3.59',
12056             'File::Spec::AmigaOS' => '3.59',
12057             'File::Spec::Cygwin' => '3.59',
12058             'File::Spec::Epoc' => '3.59',
12059             'File::Spec::Functions' => '3.59',
12060             'File::Spec::Mac' => '3.59',
12061             'File::Spec::OS2' => '3.59',
12062             'File::Spec::Unix' => '3.59',
12063             'File::Spec::VMS' => '3.59',
12064             'File::Spec::Win32' => '3.59',
12065             'Getopt::Long' => '2.48',
12066             'Hash::Util::FieldHash' => '1.18',
12067             'IPC::Open3' => '1.20',
12068             'Math::BigFloat' => '1.999710',
12069             'Math::BigInt' => '1.999710',
12070             'Math::BigInt::Calc' => '1.999710',
12071             'Math::BigInt::CalcEmu' => '1.999710',
12072             'Math::BigInt::FastCalc'=> '0.37',
12073             'Module::CoreList' => '5.20151120',
12074             'Module::CoreList::TieHashDelta'=> '5.20151120',
12075             'Module::CoreList::Utils'=> '5.20151120',
12076             'Module::Metadata' => '1.000030',
12077             'POSIX' => '1.59',
12078             'PerlIO::encoding' => '0.23',
12079             'PerlIO::mmap' => '0.015',
12080             'PerlIO::scalar' => '0.24',
12081             'PerlIO::via' => '0.16',
12082             'Pod::Simple' => '3.32',
12083             'Pod::Simple::BlackBox' => '3.32',
12084             'Pod::Simple::Checker' => '3.32',
12085             'Pod::Simple::Debug' => '3.32',
12086             'Pod::Simple::DumpAsText'=> '3.32',
12087             'Pod::Simple::DumpAsXML'=> '3.32',
12088             'Pod::Simple::HTML' => '3.32',
12089             'Pod::Simple::HTMLBatch'=> '3.32',
12090             'Pod::Simple::LinkSection'=> '3.32',
12091             'Pod::Simple::Methody' => '3.32',
12092             'Pod::Simple::Progress' => '3.32',
12093             'Pod::Simple::PullParser'=> '3.32',
12094             'Pod::Simple::PullParserEndToken'=> '3.32',
12095             'Pod::Simple::PullParserStartToken'=> '3.32',
12096             'Pod::Simple::PullParserTextToken'=> '3.32',
12097             'Pod::Simple::PullParserToken'=> '3.32',
12098             'Pod::Simple::RTF' => '3.32',
12099             'Pod::Simple::Search' => '3.32',
12100             'Pod::Simple::SimpleTree'=> '3.32',
12101             'Pod::Simple::Text' => '3.32',
12102             'Pod::Simple::TextContent'=> '3.32',
12103             'Pod::Simple::TiedOutFH'=> '3.32',
12104             'Pod::Simple::Transcode'=> '3.32',
12105             'Pod::Simple::TranscodeDumb'=> '3.32',
12106             'Pod::Simple::TranscodeSmart'=> '3.32',
12107             'Pod::Simple::XHTML' => '3.32',
12108             'Pod::Simple::XMLOutStream'=> '3.32',
12109             'Thread::Queue' => '3.07',
12110             'Tie::Scalar' => '1.04',
12111             'Time::HiRes' => '1.9728',
12112             'Time::Piece' => '1.31',
12113             'Time::Seconds' => '1.31',
12114             'Unicode::Normalize' => '1.23',
12115             'XSLoader' => '0.21',
12116             'arybase' => '0.11',
12117             'base' => '2.22_01',
12118             'fields' => '2.22_01',
12119             'threads' => '2.04',
12120             'threads::shared' => '1.49',
12121             },
12122             removed => {
12123             'ExtUtils::MakeMaker::version::vpp'=> 1,
12124             'version::vpp' => 1,
12125             }
12126             },
12127             5.022001 => {
12128             delta_from => 5.022,
12129             changed => {
12130             'B::Op_private' => '5.022001',
12131             'Config' => '5.022001',
12132             'Module::CoreList' => '5.20151213',
12133             'Module::CoreList::TieHashDelta'=> '5.20151213',
12134             'Module::CoreList::Utils'=> '5.20151213',
12135             'POSIX' => '1.53_01',
12136             'PerlIO::scalar' => '0.23',
12137             'Storable' => '2.53_01',
12138             'Win32' => '0.52',
12139             'warnings' => '1.34',
12140             },
12141             removed => {
12142             }
12143             },
12144             5.023006 => {
12145             delta_from => 5.023005,
12146             changed => {
12147             'B::Deparse' => '1.36',
12148             'B::Op_private' => '5.023006',
12149             'Benchmark' => '1.21',
12150             'CPAN::Meta::Requirements'=> '2.140',
12151             'CPAN::Meta::YAML' => '0.018',
12152             'Config' => '5.023006',
12153             'Cwd' => '3.60',
12154             'Data::Dumper' => '2.159',
12155             'DynaLoader' => '1.37',
12156             'File::Spec' => '3.60',
12157             'File::Spec::AmigaOS' => '3.60',
12158             'File::Spec::Cygwin' => '3.60',
12159             'File::Spec::Epoc' => '3.60',
12160             'File::Spec::Functions' => '3.60',
12161             'File::Spec::Mac' => '3.60',
12162             'File::Spec::OS2' => '3.60',
12163             'File::Spec::Unix' => '3.60',
12164             'File::Spec::VMS' => '3.60',
12165             'File::Spec::Win32' => '3.60',
12166             'Hash::Util::FieldHash' => '1.19',
12167             'Locale::Codes' => '3.37',
12168             'Locale::Codes::Constants'=> '3.37',
12169             'Locale::Codes::Country'=> '3.37',
12170             'Locale::Codes::Country_Codes'=> '3.37',
12171             'Locale::Codes::Country_Retired'=> '3.37',
12172             'Locale::Codes::Currency'=> '3.37',
12173             'Locale::Codes::Currency_Codes'=> '3.37',
12174             'Locale::Codes::Currency_Retired'=> '3.37',
12175             'Locale::Codes::LangExt'=> '3.37',
12176             'Locale::Codes::LangExt_Codes'=> '3.37',
12177             'Locale::Codes::LangExt_Retired'=> '3.37',
12178             'Locale::Codes::LangFam'=> '3.37',
12179             'Locale::Codes::LangFam_Codes'=> '3.37',
12180             'Locale::Codes::LangFam_Retired'=> '3.37',
12181             'Locale::Codes::LangVar'=> '3.37',
12182             'Locale::Codes::LangVar_Codes'=> '3.37',
12183             'Locale::Codes::LangVar_Retired'=> '3.37',
12184             'Locale::Codes::Language'=> '3.37',
12185             'Locale::Codes::Language_Codes'=> '3.37',
12186             'Locale::Codes::Language_Retired'=> '3.37',
12187             'Locale::Codes::Script' => '3.37',
12188             'Locale::Codes::Script_Codes'=> '3.37',
12189             'Locale::Codes::Script_Retired'=> '3.37',
12190             'Locale::Country' => '3.37',
12191             'Locale::Currency' => '3.37',
12192             'Locale::Language' => '3.37',
12193             'Locale::Script' => '3.37',
12194             'Math::BigInt::FastCalc'=> '0.38',
12195             'Module::CoreList' => '5.20151220',
12196             'Module::CoreList::TieHashDelta'=> '5.20151220',
12197             'Module::CoreList::Utils'=> '5.20151220',
12198             'Module::Metadata' => '1.000031',
12199             'Opcode' => '1.34',
12200             'PerlIO::mmap' => '0.016',
12201             'Pod::Perldoc' => '3.25_02',
12202             'SDBM_File' => '1.14',
12203             'Term::ANSIColor' => '4.04',
12204             'Test' => '1.28',
12205             'Unicode::Normalize' => '1.24',
12206             'XS::APItest' => '0.77',
12207             'base' => '2.23',
12208             'encoding::warnings' => '0.12',
12209             'fields' => '2.23',
12210             'locale' => '1.08',
12211             'strict' => '1.10',
12212             'threads' => '2.05',
12213             'threads::shared' => '1.50',
12214             'utf8' => '1.18',
12215             },
12216             removed => {
12217             }
12218             },
12219             5.023007 => {
12220             delta_from => 5.023006,
12221             changed => {
12222             'App::Prove' => '3.36',
12223             'App::Prove::State' => '3.36',
12224             'App::Prove::State::Result'=> '3.36',
12225             'App::Prove::State::Result::Test'=> '3.36',
12226             'B' => '1.62',
12227             'B::Deparse' => '1.37',
12228             'B::Op_private' => '5.023007',
12229             'Benchmark' => '1.22',
12230             'Config' => '5.023007',
12231             'Cwd' => '3.62',
12232             'Data::Dumper' => '2.160',
12233             'ExtUtils::ParseXS' => '3.31',
12234             'ExtUtils::ParseXS::Constants'=> '3.31',
12235             'ExtUtils::ParseXS::CountLines'=> '3.31',
12236             'ExtUtils::ParseXS::Eval'=> '3.31',
12237             'ExtUtils::ParseXS::Utilities'=> '3.31',
12238             'ExtUtils::Typemaps' => '3.31',
12239             'ExtUtils::Typemaps::Cmd'=> '3.31',
12240             'ExtUtils::Typemaps::InputMap'=> '3.31',
12241             'ExtUtils::Typemaps::OutputMap'=> '3.31',
12242             'ExtUtils::Typemaps::Type'=> '3.31',
12243             'File::Find' => '1.33',
12244             'File::Spec' => '3.62',
12245             'File::Spec::AmigaOS' => '3.62',
12246             'File::Spec::Cygwin' => '3.62',
12247             'File::Spec::Epoc' => '3.62',
12248             'File::Spec::Functions' => '3.62',
12249             'File::Spec::Mac' => '3.62',
12250             'File::Spec::OS2' => '3.62',
12251             'File::Spec::Unix' => '3.62',
12252             'File::Spec::VMS' => '3.62',
12253             'File::Spec::Win32' => '3.62',
12254             'Math::BigFloat' => '1.999715',
12255             'Math::BigFloat::Trace' => '0.42',
12256             'Math::BigInt' => '1.999715',
12257             'Math::BigInt::Calc' => '1.999715',
12258             'Math::BigInt::CalcEmu' => '1.999715',
12259             'Math::BigInt::FastCalc'=> '0.40',
12260             'Math::BigInt::Trace' => '0.42',
12261             'Math::BigRat' => '0.260802',
12262             'Module::CoreList' => '5.20160120',
12263             'Module::CoreList::TieHashDelta'=> '5.20160120',
12264             'Module::CoreList::Utils'=> '5.20160120',
12265             'Net::Cmd' => '3.08',
12266             'Net::Config' => '3.08',
12267             'Net::Domain' => '3.08',
12268             'Net::FTP' => '3.08',
12269             'Net::FTP::A' => '3.08',
12270             'Net::FTP::E' => '3.08',
12271             'Net::FTP::I' => '3.08',
12272             'Net::FTP::L' => '3.08',
12273             'Net::FTP::dataconn' => '3.08',
12274             'Net::NNTP' => '3.08',
12275             'Net::Netrc' => '3.08',
12276             'Net::POP3' => '3.08',
12277             'Net::SMTP' => '3.08',
12278             'Net::Time' => '3.08',
12279             'Pod::Man' => '4.04',
12280             'Pod::ParseLink' => '4.04',
12281             'Pod::Text' => '4.04',
12282             'Pod::Text::Color' => '4.04',
12283             'Pod::Text::Overstrike' => '4.04',
12284             'Pod::Text::Termcap' => '4.04',
12285             'Pod::Usage' => '1.68',
12286             'TAP::Base' => '3.36',
12287             'TAP::Formatter::Base' => '3.36',
12288             'TAP::Formatter::Color' => '3.36',
12289             'TAP::Formatter::Console'=> '3.36',
12290             'TAP::Formatter::Console::ParallelSession'=> '3.36',
12291             'TAP::Formatter::Console::Session'=> '3.36',
12292             'TAP::Formatter::File' => '3.36',
12293             'TAP::Formatter::File::Session'=> '3.36',
12294             'TAP::Formatter::Session'=> '3.36',
12295             'TAP::Harness' => '3.36',
12296             'TAP::Harness::Env' => '3.36',
12297             'TAP::Object' => '3.36',
12298             'TAP::Parser' => '3.36',
12299             'TAP::Parser::Aggregator'=> '3.36',
12300             'TAP::Parser::Grammar' => '3.36',
12301             'TAP::Parser::Iterator' => '3.36',
12302             'TAP::Parser::Iterator::Array'=> '3.36',
12303             'TAP::Parser::Iterator::Process'=> '3.36',
12304             'TAP::Parser::Iterator::Stream'=> '3.36',
12305             'TAP::Parser::IteratorFactory'=> '3.36',
12306             'TAP::Parser::Multiplexer'=> '3.36',
12307             'TAP::Parser::Result' => '3.36',
12308             'TAP::Parser::Result::Bailout'=> '3.36',
12309             'TAP::Parser::Result::Comment'=> '3.36',
12310             'TAP::Parser::Result::Plan'=> '3.36',
12311             'TAP::Parser::Result::Pragma'=> '3.36',
12312             'TAP::Parser::Result::Test'=> '3.36',
12313             'TAP::Parser::Result::Unknown'=> '3.36',
12314             'TAP::Parser::Result::Version'=> '3.36',
12315             'TAP::Parser::Result::YAML'=> '3.36',
12316             'TAP::Parser::ResultFactory'=> '3.36',
12317             'TAP::Parser::Scheduler'=> '3.36',
12318             'TAP::Parser::Scheduler::Job'=> '3.36',
12319             'TAP::Parser::Scheduler::Spinner'=> '3.36',
12320             'TAP::Parser::Source' => '3.36',
12321             'TAP::Parser::SourceHandler'=> '3.36',
12322             'TAP::Parser::SourceHandler::Executable'=> '3.36',
12323             'TAP::Parser::SourceHandler::File'=> '3.36',
12324             'TAP::Parser::SourceHandler::Handle'=> '3.36',
12325             'TAP::Parser::SourceHandler::Perl'=> '3.36',
12326             'TAP::Parser::SourceHandler::RawTAP'=> '3.36',
12327             'TAP::Parser::YAMLish::Reader'=> '3.36',
12328             'TAP::Parser::YAMLish::Writer'=> '3.36',
12329             'Test::Harness' => '3.36',
12330             'Unicode::Normalize' => '1.25',
12331             'Unicode::UCD' => '0.64',
12332             'XS::APItest' => '0.78',
12333             'bigint' => '0.42',
12334             'bignum' => '0.42',
12335             'bigrat' => '0.42',
12336             'utf8' => '1.19',
12337             },
12338             removed => {
12339             }
12340             },
12341             5.023008 => {
12342             delta_from => 5.023007,
12343             changed => {
12344             'B::Op_private' => '5.023008',
12345             'Config' => '5.023008',
12346             'Cwd' => '3.63',
12347             'DynaLoader' => '1.38',
12348             'Encode' => '2.80',
12349             'Encode::Alias' => '2.20',
12350             'Encode::MIME::Header' => '2.19',
12351             'Encode::Unicode' => '2.15',
12352             'ExtUtils::CBuilder' => '0.280225',
12353             'ExtUtils::CBuilder::Base'=> '0.280225',
12354             'ExtUtils::CBuilder::Platform::Unix'=> '0.280225',
12355             'ExtUtils::CBuilder::Platform::VMS'=> '0.280225',
12356             'ExtUtils::CBuilder::Platform::Windows'=> '0.280225',
12357             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225',
12358             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225',
12359             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225',
12360             'ExtUtils::CBuilder::Platform::aix'=> '0.280225',
12361             'ExtUtils::CBuilder::Platform::android'=> '0.280225',
12362             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225',
12363             'ExtUtils::CBuilder::Platform::darwin'=> '0.280225',
12364             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225',
12365             'ExtUtils::CBuilder::Platform::os2'=> '0.280225',
12366             'ExtUtils::Command::MM' => '7.10_01',
12367             'ExtUtils::Liblist' => '7.10_01',
12368             'ExtUtils::Liblist::Kid'=> '7.10_01',
12369             'ExtUtils::MM' => '7.10_01',
12370             'ExtUtils::MM_AIX' => '7.10_01',
12371             'ExtUtils::MM_Any' => '7.10_01',
12372             'ExtUtils::MM_BeOS' => '7.10_01',
12373             'ExtUtils::MM_Cygwin' => '7.10_01',
12374             'ExtUtils::MM_DOS' => '7.10_01',
12375             'ExtUtils::MM_Darwin' => '7.10_01',
12376             'ExtUtils::MM_MacOS' => '7.10_01',
12377             'ExtUtils::MM_NW5' => '7.10_01',
12378             'ExtUtils::MM_OS2' => '7.10_01',
12379             'ExtUtils::MM_QNX' => '7.10_01',
12380             'ExtUtils::MM_UWIN' => '7.10_01',
12381             'ExtUtils::MM_Unix' => '7.10_01',
12382             'ExtUtils::MM_VMS' => '7.10_01',
12383             'ExtUtils::MM_VOS' => '7.10_01',
12384             'ExtUtils::MM_Win32' => '7.10_01',
12385             'ExtUtils::MM_Win95' => '7.10_01',
12386             'ExtUtils::MY' => '7.10_01',
12387             'ExtUtils::MakeMaker' => '7.10_01',
12388             'ExtUtils::MakeMaker::Config'=> '7.10_01',
12389             'ExtUtils::MakeMaker::version'=> '7.10_01',
12390             'ExtUtils::MakeMaker::version::regex'=> '7.10_01',
12391             'ExtUtils::Mkbootstrap' => '7.10_01',
12392             'ExtUtils::Mksymlists' => '7.10_01',
12393             'ExtUtils::testlib' => '7.10_01',
12394             'File::Spec' => '3.63',
12395             'File::Spec::AmigaOS' => '3.63',
12396             'File::Spec::Cygwin' => '3.63',
12397             'File::Spec::Epoc' => '3.63',
12398             'File::Spec::Functions' => '3.63',
12399             'File::Spec::Mac' => '3.63',
12400             'File::Spec::OS2' => '3.63',
12401             'File::Spec::Unix' => '3.63',
12402             'File::Spec::VMS' => '3.63',
12403             'File::Spec::Win32' => '3.63',
12404             'IPC::Msg' => '2.05',
12405             'IPC::Semaphore' => '2.05',
12406             'IPC::SharedMem' => '2.05',
12407             'IPC::SysV' => '2.05',
12408             'Module::CoreList' => '5.20160121',
12409             'Module::CoreList::TieHashDelta'=> '5.20160121',
12410             'Module::CoreList::Utils'=> '5.20160121',
12411             'ODBM_File' => '1.13',
12412             'POSIX' => '1.63',
12413             'PerlIO::encoding' => '0.24',
12414             'Pod::Man' => '4.06',
12415             'Pod::ParseLink' => '4.06',
12416             'Pod::Text' => '4.06',
12417             'Pod::Text::Color' => '4.06',
12418             'Pod::Text::Overstrike' => '4.06',
12419             'Pod::Text::Termcap' => '4.06',
12420             'Storable' => '2.55',
12421             'Time::HiRes' => '1.9730',
12422             'XS::APItest' => '0.79',
12423             },
12424             removed => {
12425             }
12426             },
12427             5.023009 => {
12428             delta_from => 5.023008,
12429             changed => {
12430             'Amiga::ARexx' => '0.04',
12431             'Amiga::Exec' => '0.02',
12432             'B::Op_private' => '5.023009',
12433             'Carp' => '1.40',
12434             'Carp::Heavy' => '1.40',
12435             'Config' => '5.023009',
12436             'Errno' => '1.25',
12437             'ExtUtils::Embed' => '1.33',
12438             'File::Find' => '1.34',
12439             'File::Glob' => '1.26',
12440             'File::Spec::AmigaOS' => ';.64',
12441             'IPC::Msg' => '2.06_01',
12442             'IPC::Semaphore' => '2.06_01',
12443             'IPC::SharedMem' => '2.06_01',
12444             'IPC::SysV' => '2.06_01',
12445             'List::Util' => '1.42_02',
12446             'List::Util::XS' => '1.42_02',
12447             'Module::CoreList' => '5.20160320',
12448             'Module::CoreList::TieHashDelta'=> '5.20160320',
12449             'Module::CoreList::Utils'=> '5.20160320',
12450             'POSIX' => '1.64',
12451             'Pod::Functions' => '1.10',
12452             'Pod::Functions::Functions'=> '1.10',
12453             'Scalar::Util' => '1.42_02',
12454             'SelfLoader' => '1.23',
12455             'Socket' => '2.020_03',
12456             'Storable' => '2.56',
12457             'Sub::Util' => '1.42_02',
12458             'Thread::Queue' => '3.08',
12459             'Tie::File' => '1.02',
12460             'Time::HiRes' => '1.9732',
12461             'Win32API::File' => '0.1203',
12462             'XS::APItest' => '0.80',
12463             'autouse' => '1.11',
12464             'bytes' => '1.05',
12465             'strict' => '1.11',
12466             'threads' => '2.06',
12467             'version' => '0.9916',
12468             'version::regex' => '0.9916',
12469             'warnings' => '1.36',
12470             },
12471             removed => {
12472             'Win32API::File::ExtUtils::Myconst2perl'=> 1,
12473             }
12474             },
12475             5.022002 => {
12476             delta_from => 5.022001,
12477             changed => {
12478             'B::Op_private' => '5.022002',
12479             'Config' => '5.022002',
12480             'Cwd' => '3.56_01',
12481             'File::Spec' => '3.56_01',
12482             'File::Spec::Cygwin' => '3.56_01',
12483             'File::Spec::Epoc' => '3.56_01',
12484             'File::Spec::Functions' => '3.56_01',
12485             'File::Spec::Mac' => '3.56_01',
12486             'File::Spec::OS2' => '3.56_01',
12487             'File::Spec::Unix' => '3.56_01',
12488             'File::Spec::VMS' => '3.56_01',
12489             'File::Spec::Win32' => '3.56_01',
12490             'Module::CoreList' => '5.20160429',
12491             'Module::CoreList::TieHashDelta'=> '5.20160429',
12492             'Module::CoreList::Utils'=> '5.20160429',
12493             'XS::APItest' => '0.72_01',
12494             },
12495             removed => {
12496             }
12497             },
12498             5.024000 => {
12499             delta_from => 5.023009,
12500             changed => {
12501             'B::Op_private' => '5.024000',
12502             'Config' => '5.024',
12503             'File::Copy' => '2.31',
12504             'File::Path' => '2.12_01',
12505             'File::Spec::AmigaOS' => '3.64',
12506             'IO::Handle' => '1.36',
12507             'Module::CoreList' => '5.20160506',
12508             'Module::CoreList::TieHashDelta'=> '5.20160506',
12509             'Module::CoreList::Utils'=> '5.20160506',
12510             'ODBM_File' => '1.14',
12511             'POSIX' => '1.65',
12512             'Pod::Man' => '4.07',
12513             'Pod::ParseLink' => '4.07',
12514             'Pod::Text' => '4.07',
12515             'Pod::Text::Color' => '4.07',
12516             'Pod::Text::Overstrike' => '4.07',
12517             'Pod::Text::Termcap' => '4.07',
12518             'Thread::Queue' => '3.09',
12519             'Time::HiRes' => '1.9733',
12520             'threads' => '2.07',
12521             'threads::shared' => '1.51',
12522             'locale' => '1.09',
12523             },
12524             removed => {
12525             }
12526             },
12527             5.025000 => {
12528             delta_from => 5.024,
12529             changed => {
12530             'B::Op_private' => '5.025000',
12531             'Config' => '5.025',
12532             'Module::CoreList' => '5.20160507',
12533             'Module::CoreList::TieHashDelta'=> '5.20160507',
12534             'Module::CoreList::Utils'=> '5.20160507',
12535             'feature' => '1.43',
12536             },
12537             removed => {
12538             }
12539             },
12540             5.025001 => {
12541             delta_from => 5.025,
12542             changed => {
12543             'Archive::Tar' => '2.08',
12544             'Archive::Tar::Constant'=> '2.08',
12545             'Archive::Tar::File' => '2.08',
12546             'B::Op_private' => '5.025001',
12547             'Carp' => '1.41',
12548             'Carp::Heavy' => '1.41',
12549             'Config' => '5.025001',
12550             'Config::Perl::V' => '0.26',
12551             'DB_File' => '1.838',
12552             'Digest::MD5' => '2.55',
12553             'IPC::Cmd' => '0.94',
12554             'IPC::Msg' => '2.07',
12555             'IPC::Semaphore' => '2.07',
12556             'IPC::SharedMem' => '2.07',
12557             'IPC::SysV' => '2.07',
12558             'List::Util' => '1.45_01',
12559             'List::Util::XS' => '1.45_01',
12560             'Locale::Codes' => '3.38',
12561             'Locale::Codes::Constants'=> '3.38',
12562             'Locale::Codes::Country'=> '3.38',
12563             'Locale::Codes::Country_Codes'=> '3.38',
12564             'Locale::Codes::Country_Retired'=> '3.38',
12565             'Locale::Codes::Currency'=> '3.38',
12566             'Locale::Codes::Currency_Codes'=> '3.38',
12567             'Locale::Codes::Currency_Retired'=> '3.38',
12568             'Locale::Codes::LangExt'=> '3.38',
12569             'Locale::Codes::LangExt_Codes'=> '3.38',
12570             'Locale::Codes::LangExt_Retired'=> '3.38',
12571             'Locale::Codes::LangFam'=> '3.38',
12572             'Locale::Codes::LangFam_Codes'=> '3.38',
12573             'Locale::Codes::LangFam_Retired'=> '3.38',
12574             'Locale::Codes::LangVar'=> '3.38',
12575             'Locale::Codes::LangVar_Codes'=> '3.38',
12576             'Locale::Codes::LangVar_Retired'=> '3.38',
12577             'Locale::Codes::Language'=> '3.38',
12578             'Locale::Codes::Language_Codes'=> '3.38',
12579             'Locale::Codes::Language_Retired'=> '3.38',
12580             'Locale::Codes::Script' => '3.38',
12581             'Locale::Codes::Script_Codes'=> '3.38',
12582             'Locale::Codes::Script_Retired'=> '3.38',
12583             'Locale::Country' => '3.38',
12584             'Locale::Currency' => '3.38',
12585             'Locale::Language' => '3.38',
12586             'Locale::Maketext' => '1.27',
12587             'Locale::Script' => '3.38',
12588             'Module::CoreList' => '5.20160520',
12589             'Module::CoreList::TieHashDelta'=> '5.20160520',
12590             'Module::CoreList::Utils'=> '5.20160520',
12591             'Module::Metadata' => '1.000032',
12592             'POSIX' => '1.69',
12593             'Scalar::Util' => '1.45_01',
12594             'Sub::Util' => '1.45_01',
12595             'Sys::Syslog' => '0.34',
12596             'Term::ANSIColor' => '4.05',
12597             'Test2' => '1.302015',
12598             'Test2::API' => '1.302015',
12599             'Test2::API::Breakage' => '1.302015',
12600             'Test2::API::Context' => '1.302015',
12601             'Test2::API::Instance' => '1.302015',
12602             'Test2::API::Stack' => '1.302015',
12603             'Test2::Event' => '1.302015',
12604             'Test2::Event::Bail' => '1.302015',
12605             'Test2::Event::Diag' => '1.302015',
12606             'Test2::Event::Exception'=> '1.302015',
12607             'Test2::Event::Note' => '1.302015',
12608             'Test2::Event::Ok' => '1.302015',
12609             'Test2::Event::Plan' => '1.302015',
12610             'Test2::Event::Skip' => '1.302015',
12611             'Test2::Event::Subtest' => '1.302015',
12612             'Test2::Event::Waiting' => '1.302015',
12613             'Test2::Formatter' => '1.302015',
12614             'Test2::Formatter::TAP' => '1.302015',
12615             'Test2::Hub' => '1.302015',
12616             'Test2::Hub::Interceptor'=> '1.302015',
12617             'Test2::Hub::Interceptor::Terminator'=> '1.302015',
12618             'Test2::Hub::Subtest' => '1.302015',
12619             'Test2::IPC' => '1.302015',
12620             'Test2::IPC::Driver' => '1.302015',
12621             'Test2::IPC::Driver::Files'=> '1.302015',
12622             'Test2::Util' => '1.302015',
12623             'Test2::Util::ExternalMeta'=> '1.302015',
12624             'Test2::Util::HashBase' => '1.302015',
12625             'Test2::Util::Trace' => '1.302015',
12626             'Test::Builder' => '1.302015',
12627             'Test::Builder::Formatter'=> '1.302015',
12628             'Test::Builder::Module' => '1.302015',
12629             'Test::Builder::Tester' => '1.302015',
12630             'Test::Builder::Tester::Color'=> '1.302015',
12631             'Test::Builder::TodoDiag'=> '1.302015',
12632             'Test::More' => '1.302015',
12633             'Test::Simple' => '1.302015',
12634             'Test::Tester' => '1.302015',
12635             'Test::Tester::Capture' => '1.302015',
12636             'Test::Tester::CaptureRunner'=> '1.302015',
12637             'Test::Tester::Delegate'=> '1.302015',
12638             'Test::use::ok' => '1.302015',
12639             'XS::APItest' => '0.81',
12640             '_charnames' => '1.44',
12641             'charnames' => '1.44',
12642             'ok' => '1.302015',
12643             'perlfaq' => '5.021011',
12644             're' => '0.33',
12645             'threads' => '2.08',
12646             'threads::shared' => '1.52',
12647             },
12648             removed => {
12649             }
12650             },
12651             5.025002 => {
12652             delta_from => 5.025001,
12653             changed => {
12654             'App::Cpan' => '1.64',
12655             'B::Op_private' => '5.025002',
12656             'CPAN' => '2.14',
12657             'CPAN::Distribution' => '2.12',
12658             'CPAN::FTP' => '5.5007',
12659             'CPAN::FirstTime' => '5.5309',
12660             'CPAN::HandleConfig' => '5.5007',
12661             'CPAN::Index' => '2.12',
12662             'CPAN::Mirrors' => '2.12',
12663             'CPAN::Plugin' => '0.96',
12664             'CPAN::Shell' => '5.5006',
12665             'Config' => '5.025002',
12666             'Cwd' => '3.64',
12667             'Devel::Peek' => '1.24',
12668             'DynaLoader' => '1.39',
12669             'ExtUtils::Command' => '7.18',
12670             'ExtUtils::Command::MM' => '7.18',
12671             'ExtUtils::Liblist' => '7.18',
12672             'ExtUtils::Liblist::Kid'=> '7.18',
12673             'ExtUtils::MM' => '7.18',
12674             'ExtUtils::MM_AIX' => '7.18',
12675             'ExtUtils::MM_Any' => '7.18',
12676             'ExtUtils::MM_BeOS' => '7.18',
12677             'ExtUtils::MM_Cygwin' => '7.18',
12678             'ExtUtils::MM_DOS' => '7.18',
12679             'ExtUtils::MM_Darwin' => '7.18',
12680             'ExtUtils::MM_MacOS' => '7.18',
12681             'ExtUtils::MM_NW5' => '7.18',
12682             'ExtUtils::MM_OS2' => '7.18',
12683             'ExtUtils::MM_QNX' => '7.18',
12684             'ExtUtils::MM_UWIN' => '7.18',
12685             'ExtUtils::MM_Unix' => '7.18',
12686             'ExtUtils::MM_VMS' => '7.18',
12687             'ExtUtils::MM_VOS' => '7.18',
12688             'ExtUtils::MM_Win32' => '7.18',
12689             'ExtUtils::MM_Win95' => '7.18',
12690             'ExtUtils::MY' => '7.18',
12691             'ExtUtils::MakeMaker' => '7.18',
12692             'ExtUtils::MakeMaker::Config'=> '7.18',
12693             'ExtUtils::MakeMaker::Locale'=> '7.18',
12694             'ExtUtils::MakeMaker::version'=> '7.18',
12695             'ExtUtils::MakeMaker::version::regex'=> '7.18',
12696             'ExtUtils::Miniperl' => '1.06',
12697             'ExtUtils::Mkbootstrap' => '7.18',
12698             'ExtUtils::Mksymlists' => '7.18',
12699             'ExtUtils::ParseXS' => '3.32',
12700             'ExtUtils::ParseXS::Constants'=> '3.32',
12701             'ExtUtils::ParseXS::CountLines'=> '3.32',
12702             'ExtUtils::ParseXS::Eval'=> '3.32',
12703             'ExtUtils::ParseXS::Utilities'=> '3.32',
12704             'ExtUtils::Typemaps' => '3.32',
12705             'ExtUtils::Typemaps::Cmd'=> '3.32',
12706             'ExtUtils::Typemaps::InputMap'=> '3.32',
12707             'ExtUtils::Typemaps::OutputMap'=> '3.32',
12708             'ExtUtils::Typemaps::Type'=> '3.32',
12709             'ExtUtils::testlib' => '7.18',
12710             'File::Copy' => '2.32',
12711             'File::Glob' => '1.27',
12712             'File::Spec' => '3.64',
12713             'File::Spec::Cygwin' => '3.64',
12714             'File::Spec::Epoc' => '3.64',
12715             'File::Spec::Functions' => '3.64',
12716             'File::Spec::Mac' => '3.64',
12717             'File::Spec::OS2' => '3.64',
12718             'File::Spec::Unix' => '3.64',
12719             'File::Spec::VMS' => '3.64',
12720             'File::Spec::Win32' => '3.64',
12721             'FileHandle' => '2.03',
12722             'Getopt::Long' => '2.49',
12723             'HTTP::Tiny' => '0.058',
12724             'JSON::PP' => '2.27400',
12725             'Locale::Codes' => '3.39',
12726             'Locale::Codes::Constants'=> '3.39',
12727             'Locale::Codes::Country'=> '3.39',
12728             'Locale::Codes::Country_Codes'=> '3.39',
12729             'Locale::Codes::Country_Retired'=> '3.39',
12730             'Locale::Codes::Currency'=> '3.39',
12731             'Locale::Codes::Currency_Codes'=> '3.39',
12732             'Locale::Codes::Currency_Retired'=> '3.39',
12733             'Locale::Codes::LangExt'=> '3.39',
12734             'Locale::Codes::LangExt_Codes'=> '3.39',
12735             'Locale::Codes::LangExt_Retired'=> '3.39',
12736             'Locale::Codes::LangFam'=> '3.39',
12737             'Locale::Codes::LangFam_Codes'=> '3.39',
12738             'Locale::Codes::LangFam_Retired'=> '3.39',
12739             'Locale::Codes::LangVar'=> '3.39',
12740             'Locale::Codes::LangVar_Codes'=> '3.39',
12741             'Locale::Codes::LangVar_Retired'=> '3.39',
12742             'Locale::Codes::Language'=> '3.39',
12743             'Locale::Codes::Language_Codes'=> '3.39',
12744             'Locale::Codes::Language_Retired'=> '3.39',
12745             'Locale::Codes::Script' => '3.39',
12746             'Locale::Codes::Script_Codes'=> '3.39',
12747             'Locale::Codes::Script_Retired'=> '3.39',
12748             'Locale::Country' => '3.39',
12749             'Locale::Currency' => '3.39',
12750             'Locale::Language' => '3.39',
12751             'Locale::Script' => '3.39',
12752             'Module::CoreList' => '5.20160620',
12753             'Module::CoreList::TieHashDelta'=> '5.20160620',
12754             'Module::CoreList::Utils'=> '5.20160620',
12755             'Opcode' => '1.35',
12756             'POSIX' => '1.70',
12757             'Pod::Checker' => '1.73',
12758             'Pod::Functions' => '1.11',
12759             'Pod::Functions::Functions'=> '1.11',
12760             'Pod::Usage' => '1.69',
12761             'Test2' => '1.302026',
12762             'Test2::API' => '1.302026',
12763             'Test2::API::Breakage' => '1.302026',
12764             'Test2::API::Context' => '1.302026',
12765             'Test2::API::Instance' => '1.302026',
12766             'Test2::API::Stack' => '1.302026',
12767             'Test2::Event' => '1.302026',
12768             'Test2::Event::Bail' => '1.302026',
12769             'Test2::Event::Diag' => '1.302026',
12770             'Test2::Event::Exception'=> '1.302026',
12771             'Test2::Event::Generic' => '1.302026',
12772             'Test2::Event::Note' => '1.302026',
12773             'Test2::Event::Ok' => '1.302026',
12774             'Test2::Event::Plan' => '1.302026',
12775             'Test2::Event::Skip' => '1.302026',
12776             'Test2::Event::Subtest' => '1.302026',
12777             'Test2::Event::Waiting' => '1.302026',
12778             'Test2::Formatter' => '1.302026',
12779             'Test2::Formatter::TAP' => '1.302026',
12780             'Test2::Hub' => '1.302026',
12781             'Test2::Hub::Interceptor'=> '1.302026',
12782             'Test2::Hub::Interceptor::Terminator'=> '1.302026',
12783             'Test2::Hub::Subtest' => '1.302026',
12784             'Test2::IPC' => '1.302026',
12785             'Test2::IPC::Driver' => '1.302026',
12786             'Test2::IPC::Driver::Files'=> '1.302026',
12787             'Test2::Util' => '1.302026',
12788             'Test2::Util::ExternalMeta'=> '1.302026',
12789             'Test2::Util::HashBase' => '1.302026',
12790             'Test2::Util::Trace' => '1.302026',
12791             'Test::Builder' => '1.302026',
12792             'Test::Builder::Formatter'=> '1.302026',
12793             'Test::Builder::Module' => '1.302026',
12794             'Test::Builder::Tester' => '1.302026',
12795             'Test::Builder::Tester::Color'=> '1.302026',
12796             'Test::Builder::TodoDiag'=> '1.302026',
12797             'Test::More' => '1.302026',
12798             'Test::Simple' => '1.302026',
12799             'Test::Tester' => '1.302026',
12800             'Test::Tester::Capture' => '1.302026',
12801             'Test::Tester::CaptureRunner'=> '1.302026',
12802             'Test::Tester::Delegate'=> '1.302026',
12803             'Test::use::ok' => '1.302026',
12804             'Thread::Queue' => '3.11',
12805             'Time::HiRes' => '1.9734',
12806             'Unicode::UCD' => '0.65',
12807             'VMS::DCLsym' => '1.07',
12808             'XS::APItest' => '0.82',
12809             'diagnostics' => '1.35',
12810             'feature' => '1.44',
12811             'ok' => '1.302026',
12812             'threads' => '2.09',
12813             },
12814             removed => {
12815             }
12816             },
12817             5.025003 => {
12818             delta_from => 5.025002,
12819             changed => {
12820             'B::Op_private' => '5.025003',
12821             'Config' => '5.025003',
12822             'Data::Dumper' => '2.161',
12823             'Devel::PPPort' => '3.35',
12824             'Encode' => '2.84',
12825             'Encode::MIME::Header' => '2.23',
12826             'Encode::MIME::Header::ISO_2022_JP'=> '1.07',
12827             'ExtUtils::ParseXS' => '3.33',
12828             'ExtUtils::ParseXS::Constants'=> '3.33',
12829             'ExtUtils::ParseXS::CountLines'=> '3.33',
12830             'ExtUtils::ParseXS::Eval'=> '3.33',
12831             'ExtUtils::ParseXS::Utilities'=> '3.33',
12832             'ExtUtils::Typemaps' => '3.33',
12833             'ExtUtils::Typemaps::Cmd'=> '3.33',
12834             'ExtUtils::Typemaps::InputMap'=> '3.33',
12835             'ExtUtils::Typemaps::OutputMap'=> '3.33',
12836             'ExtUtils::Typemaps::Type'=> '3.33',
12837             'Hash::Util' => '0.20',
12838             'Math::BigFloat' => '1.999726',
12839             'Math::BigFloat::Trace' => '0.43',
12840             'Math::BigInt' => '1.999726',
12841             'Math::BigInt::Calc' => '1.999726',
12842             'Math::BigInt::CalcEmu' => '1.999726',
12843             'Math::BigInt::FastCalc'=> '0.42',
12844             'Math::BigInt::Trace' => '0.43',
12845             'Math::BigRat' => '0.260804',
12846             'Module::CoreList' => '5.20160720',
12847             'Module::CoreList::TieHashDelta'=> '5.20160720',
12848             'Module::CoreList::Utils'=> '5.20160720',
12849             'Net::Cmd' => '3.09',
12850             'Net::Config' => '3.09',
12851             'Net::Domain' => '3.09',
12852             'Net::FTP' => '3.09',
12853             'Net::FTP::A' => '3.09',
12854             'Net::FTP::E' => '3.09',
12855             'Net::FTP::I' => '3.09',
12856             'Net::FTP::L' => '3.09',
12857             'Net::FTP::dataconn' => '3.09',
12858             'Net::NNTP' => '3.09',
12859             'Net::Netrc' => '3.09',
12860             'Net::POP3' => '3.09',
12861             'Net::SMTP' => '3.09',
12862             'Net::Time' => '3.09',
12863             'Parse::CPAN::Meta' => '1.4422',
12864             'Perl::OSType' => '1.010',
12865             'Test2' => '1.302045',
12866             'Test2::API' => '1.302045',
12867             'Test2::API::Breakage' => '1.302045',
12868             'Test2::API::Context' => '1.302045',
12869             'Test2::API::Instance' => '1.302045',
12870             'Test2::API::Stack' => '1.302045',
12871             'Test2::Event' => '1.302045',
12872             'Test2::Event::Bail' => '1.302045',
12873             'Test2::Event::Diag' => '1.302045',
12874             'Test2::Event::Exception'=> '1.302045',
12875             'Test2::Event::Generic' => '1.302045',
12876             'Test2::Event::Info' => '1.302045',
12877             'Test2::Event::Note' => '1.302045',
12878             'Test2::Event::Ok' => '1.302045',
12879             'Test2::Event::Plan' => '1.302045',
12880             'Test2::Event::Skip' => '1.302045',
12881             'Test2::Event::Subtest' => '1.302045',
12882             'Test2::Event::Waiting' => '1.302045',
12883             'Test2::Formatter' => '1.302045',
12884             'Test2::Formatter::TAP' => '1.302045',
12885             'Test2::Hub' => '1.302045',
12886             'Test2::Hub::Interceptor'=> '1.302045',
12887             'Test2::Hub::Interceptor::Terminator'=> '1.302045',
12888             'Test2::Hub::Subtest' => '1.302045',
12889             'Test2::IPC' => '1.302045',
12890             'Test2::IPC::Driver' => '1.302045',
12891             'Test2::IPC::Driver::Files'=> '1.302045',
12892             'Test2::Util' => '1.302045',
12893             'Test2::Util::ExternalMeta'=> '1.302045',
12894             'Test2::Util::HashBase' => '1.302045',
12895             'Test2::Util::Trace' => '1.302045',
12896             'Test::Builder' => '1.302045',
12897             'Test::Builder::Formatter'=> '1.302045',
12898             'Test::Builder::Module' => '1.302045',
12899             'Test::Builder::Tester' => '1.302045',
12900             'Test::Builder::Tester::Color'=> '1.302045',
12901             'Test::Builder::TodoDiag'=> '1.302045',
12902             'Test::More' => '1.302045',
12903             'Test::Simple' => '1.302045',
12904             'Test::Tester' => '1.302045',
12905             'Test::Tester::Capture' => '1.302045',
12906             'Test::Tester::CaptureRunner'=> '1.302045',
12907             'Test::Tester::Delegate'=> '1.302045',
12908             'Test::use::ok' => '1.302045',
12909             'Time::HiRes' => '1.9739',
12910             'Unicode' => '9.0.0',
12911             'Unicode::UCD' => '0.66',
12912             'XSLoader' => '0.22',
12913             'bigint' => '0.43',
12914             'bignum' => '0.43',
12915             'bigrat' => '0.43',
12916             'encoding' => '2.17_01',
12917             'encoding::warnings' => '0.13',
12918             'feature' => '1.45',
12919             'ok' => '1.302045',
12920             'version' => '0.9917',
12921             'version::regex' => '0.9917',
12922             'warnings' => '1.37',
12923             },
12924             removed => {
12925             }
12926             },
12927             5.025004 => {
12928             delta_from => 5.025003,
12929             changed => {
12930             'App::Cpan' => '1.64_01',
12931             'App::Prove' => '3.36_01',
12932             'App::Prove::State' => '3.36_01',
12933             'App::Prove::State::Result'=> '3.36_01',
12934             'App::Prove::State::Result::Test'=> '3.36_01',
12935             'Archive::Tar' => '2.10',
12936             'Archive::Tar::Constant'=> '2.10',
12937             'Archive::Tar::File' => '2.10',
12938             'B' => '1.63',
12939             'B::Concise' => '0.998',
12940             'B::Deparse' => '1.38',
12941             'B::Op_private' => '5.025004',
12942             'CPAN' => '2.14_01',
12943             'CPAN::Meta' => '2.150010',
12944             'CPAN::Meta::Converter' => '2.150010',
12945             'CPAN::Meta::Feature' => '2.150010',
12946             'CPAN::Meta::History' => '2.150010',
12947             'CPAN::Meta::Merge' => '2.150010',
12948             'CPAN::Meta::Prereqs' => '2.150010',
12949             'CPAN::Meta::Spec' => '2.150010',
12950             'CPAN::Meta::Validator' => '2.150010',
12951             'Carp' => '1.42',
12952             'Carp::Heavy' => '1.42',
12953             'Compress::Zlib' => '2.069_01',
12954             'Config' => '5.025004',
12955             'Config::Perl::V' => '0.27',
12956             'Cwd' => '3.65',
12957             'Digest' => '1.17_01',
12958             'Digest::SHA' => '5.96',
12959             'Encode' => '2.86',
12960             'Errno' => '1.26',
12961             'ExtUtils::Command' => '7.24',
12962             'ExtUtils::Command::MM' => '7.24',
12963             'ExtUtils::Liblist' => '7.24',
12964             'ExtUtils::Liblist::Kid'=> '7.24',
12965             'ExtUtils::MM' => '7.24',
12966             'ExtUtils::MM_AIX' => '7.24',
12967             'ExtUtils::MM_Any' => '7.24',
12968             'ExtUtils::MM_BeOS' => '7.24',
12969             'ExtUtils::MM_Cygwin' => '7.24',
12970             'ExtUtils::MM_DOS' => '7.24',
12971             'ExtUtils::MM_Darwin' => '7.24',
12972             'ExtUtils::MM_MacOS' => '7.24',
12973             'ExtUtils::MM_NW5' => '7.24',
12974             'ExtUtils::MM_OS2' => '7.24',
12975             'ExtUtils::MM_QNX' => '7.24',
12976             'ExtUtils::MM_UWIN' => '7.24',
12977             'ExtUtils::MM_Unix' => '7.24',
12978             'ExtUtils::MM_VMS' => '7.24',
12979             'ExtUtils::MM_VOS' => '7.24',
12980             'ExtUtils::MM_Win32' => '7.24',
12981             'ExtUtils::MM_Win95' => '7.24',
12982             'ExtUtils::MY' => '7.24',
12983             'ExtUtils::MakeMaker' => '7.24',
12984             'ExtUtils::MakeMaker::Config'=> '7.24',
12985             'ExtUtils::MakeMaker::Locale'=> '7.24',
12986             'ExtUtils::MakeMaker::version'=> '7.24',
12987             'ExtUtils::MakeMaker::version::regex'=> '7.24',
12988             'ExtUtils::Mkbootstrap' => '7.24',
12989             'ExtUtils::Mksymlists' => '7.24',
12990             'ExtUtils::testlib' => '7.24',
12991             'File::Fetch' => '0.52',
12992             'File::Spec' => '3.65',
12993             'File::Spec::AmigaOS' => '3.65',
12994             'File::Spec::Cygwin' => '3.65',
12995             'File::Spec::Epoc' => '3.65',
12996             'File::Spec::Functions' => '3.65',
12997             'File::Spec::Mac' => '3.65',
12998             'File::Spec::OS2' => '3.65',
12999             'File::Spec::Unix' => '3.65',
13000             'File::Spec::VMS' => '3.65',
13001             'File::Spec::Win32' => '3.65',
13002             'HTTP::Tiny' => '0.064',
13003             'Hash::Util' => '0.21',
13004             'I18N::LangTags' => '0.41',
13005             'I18N::LangTags::Detect'=> '1.06',
13006             'IO' => '1.37',
13007             'IO::Compress::Adapter::Bzip2'=> '2.069_01',
13008             'IO::Compress::Adapter::Deflate'=> '2.069_01',
13009             'IO::Compress::Adapter::Identity'=> '2.069_01',
13010             'IO::Compress::Base' => '2.069_01',
13011             'IO::Compress::Base::Common'=> '2.069_01',
13012             'IO::Compress::Bzip2' => '2.069_01',
13013             'IO::Compress::Deflate' => '2.069_01',
13014             'IO::Compress::Gzip' => '2.069_01',
13015             'IO::Compress::Gzip::Constants'=> '2.069_01',
13016             'IO::Compress::RawDeflate'=> '2.069_01',
13017             'IO::Compress::Zip' => '2.069_01',
13018             'IO::Compress::Zip::Constants'=> '2.069_01',
13019             'IO::Compress::Zlib::Constants'=> '2.069_01',
13020             'IO::Compress::Zlib::Extra'=> '2.069_01',
13021             'IO::Socket::IP' => '0.38',
13022             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_01',
13023             'IO::Uncompress::Adapter::Identity'=> '2.069_01',
13024             'IO::Uncompress::Adapter::Inflate'=> '2.069_01',
13025             'IO::Uncompress::AnyInflate'=> '2.069_01',
13026             'IO::Uncompress::AnyUncompress'=> '2.069_01',
13027             'IO::Uncompress::Base' => '2.069_01',
13028             'IO::Uncompress::Bunzip2'=> '2.069_01',
13029             'IO::Uncompress::Gunzip'=> '2.069_01',
13030             'IO::Uncompress::Inflate'=> '2.069_01',
13031             'IO::Uncompress::RawInflate'=> '2.069_01',
13032             'IO::Uncompress::Unzip' => '2.069_01',
13033             'IPC::Cmd' => '0.96',
13034             'JSON::PP' => '2.27400_01',
13035             'Locale::Maketext' => '1.28',
13036             'Locale::Maketext::Simple'=> '0.21_01',
13037             'Math::BigFloat::Trace' => '0.43_01',
13038             'Math::BigInt::Trace' => '0.43_01',
13039             'Memoize' => '1.03_01',
13040             'Module::CoreList' => '5.20160820',
13041             'Module::CoreList::TieHashDelta'=> '5.20160820',
13042             'Module::CoreList::Utils'=> '5.20160820',
13043             'Module::Load::Conditional'=> '0.68',
13044             'Module::Metadata' => '1.000033',
13045             'NEXT' => '0.67',
13046             'Net::Cmd' => '3.10',
13047             'Net::Config' => '3.10',
13048             'Net::Domain' => '3.10',
13049             'Net::FTP' => '3.10',
13050             'Net::FTP::A' => '3.10',
13051             'Net::FTP::E' => '3.10',
13052             'Net::FTP::I' => '3.10',
13053             'Net::FTP::L' => '3.10',
13054             'Net::FTP::dataconn' => '3.10',
13055             'Net::NNTP' => '3.10',
13056             'Net::Netrc' => '3.10',
13057             'Net::POP3' => '3.10',
13058             'Net::Ping' => '2.44',
13059             'Net::SMTP' => '3.10',
13060             'Net::Time' => '3.10',
13061             'Opcode' => '1.37',
13062             'POSIX' => '1.71',
13063             'Parse::CPAN::Meta' => '2.150010',
13064             'Pod::Html' => '1.2201',
13065             'Pod::Perldoc' => '3.27',
13066             'Pod::Perldoc::BaseTo' => '3.27',
13067             'Pod::Perldoc::GetOptsOO'=> '3.27',
13068             'Pod::Perldoc::ToANSI' => '3.27',
13069             'Pod::Perldoc::ToChecker'=> '3.27',
13070             'Pod::Perldoc::ToMan' => '3.27',
13071             'Pod::Perldoc::ToNroff' => '3.27',
13072             'Pod::Perldoc::ToPod' => '3.27',
13073             'Pod::Perldoc::ToRtf' => '3.27',
13074             'Pod::Perldoc::ToTerm' => '3.27',
13075             'Pod::Perldoc::ToText' => '3.27',
13076             'Pod::Perldoc::ToTk' => '3.27',
13077             'Pod::Perldoc::ToXml' => '3.27',
13078             'Storable' => '2.57',
13079             'Sys::Syslog' => '0.34_01',
13080             'TAP::Base' => '3.36_01',
13081             'TAP::Formatter::Base' => '3.36_01',
13082             'TAP::Formatter::Color' => '3.36_01',
13083             'TAP::Formatter::Console'=> '3.36_01',
13084             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13085             'TAP::Formatter::Console::Session'=> '3.36_01',
13086             'TAP::Formatter::File' => '3.36_01',
13087             'TAP::Formatter::File::Session'=> '3.36_01',
13088             'TAP::Formatter::Session'=> '3.36_01',
13089             'TAP::Harness' => '3.36_01',
13090             'TAP::Harness::Env' => '3.36_01',
13091             'TAP::Object' => '3.36_01',
13092             'TAP::Parser' => '3.36_01',
13093             'TAP::Parser::Aggregator'=> '3.36_01',
13094             'TAP::Parser::Grammar' => '3.36_01',
13095             'TAP::Parser::Iterator' => '3.36_01',
13096             'TAP::Parser::Iterator::Array'=> '3.36_01',
13097             'TAP::Parser::Iterator::Process'=> '3.36_01',
13098             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13099             'TAP::Parser::IteratorFactory'=> '3.36_01',
13100             'TAP::Parser::Multiplexer'=> '3.36_01',
13101             'TAP::Parser::Result' => '3.36_01',
13102             'TAP::Parser::Result::Bailout'=> '3.36_01',
13103             'TAP::Parser::Result::Comment'=> '3.36_01',
13104             'TAP::Parser::Result::Plan'=> '3.36_01',
13105             'TAP::Parser::Result::Pragma'=> '3.36_01',
13106             'TAP::Parser::Result::Test'=> '3.36_01',
13107             'TAP::Parser::Result::Unknown'=> '3.36_01',
13108             'TAP::Parser::Result::Version'=> '3.36_01',
13109             'TAP::Parser::Result::YAML'=> '3.36_01',
13110             'TAP::Parser::ResultFactory'=> '3.36_01',
13111             'TAP::Parser::Scheduler'=> '3.36_01',
13112             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13113             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13114             'TAP::Parser::Source' => '3.36_01',
13115             'TAP::Parser::SourceHandler'=> '3.36_01',
13116             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13117             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13118             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13119             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13120             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13121             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13122             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13123             'Test' => '1.29',
13124             'Test2' => '1.302052',
13125             'Test2::API' => '1.302052',
13126             'Test2::API::Breakage' => '1.302052',
13127             'Test2::API::Context' => '1.302052',
13128             'Test2::API::Instance' => '1.302052',
13129             'Test2::API::Stack' => '1.302052',
13130             'Test2::Event' => '1.302052',
13131             'Test2::Event::Bail' => '1.302052',
13132             'Test2::Event::Diag' => '1.302052',
13133             'Test2::Event::Exception'=> '1.302052',
13134             'Test2::Event::Generic' => '1.302052',
13135             'Test2::Event::Info' => '1.302052',
13136             'Test2::Event::Note' => '1.302052',
13137             'Test2::Event::Ok' => '1.302052',
13138             'Test2::Event::Plan' => '1.302052',
13139             'Test2::Event::Skip' => '1.302052',
13140             'Test2::Event::Subtest' => '1.302052',
13141             'Test2::Event::Waiting' => '1.302052',
13142             'Test2::Formatter' => '1.302052',
13143             'Test2::Formatter::TAP' => '1.302052',
13144             'Test2::Hub' => '1.302052',
13145             'Test2::Hub::Interceptor'=> '1.302052',
13146             'Test2::Hub::Interceptor::Terminator'=> '1.302052',
13147             'Test2::Hub::Subtest' => '1.302052',
13148             'Test2::IPC' => '1.302052',
13149             'Test2::IPC::Driver' => '1.302052',
13150             'Test2::IPC::Driver::Files'=> '1.302052',
13151             'Test2::Util' => '1.302052',
13152             'Test2::Util::ExternalMeta'=> '1.302052',
13153             'Test2::Util::HashBase' => '1.302052',
13154             'Test2::Util::Trace' => '1.302052',
13155             'Test::Builder' => '1.302052',
13156             'Test::Builder::Formatter'=> '1.302052',
13157             'Test::Builder::Module' => '1.302052',
13158             'Test::Builder::Tester' => '1.302052',
13159             'Test::Builder::Tester::Color'=> '1.302052',
13160             'Test::Builder::TodoDiag'=> '1.302052',
13161             'Test::Harness' => '3.36_01',
13162             'Test::More' => '1.302052',
13163             'Test::Simple' => '1.302052',
13164             'Test::Tester' => '1.302052',
13165             'Test::Tester::Capture' => '1.302052',
13166             'Test::Tester::CaptureRunner'=> '1.302052',
13167             'Test::Tester::Delegate'=> '1.302052',
13168             'Test::use::ok' => '1.302052',
13169             'Tie::Hash::NamedCapture'=> '0.10',
13170             'Time::Local' => '1.24',
13171             'XS::APItest' => '0.83',
13172             'arybase' => '0.12',
13173             'base' => '2.24',
13174             'bigint' => '0.43_01',
13175             'bignum' => '0.43_01',
13176             'bigrat' => '0.43_01',
13177             'encoding' => '2.18',
13178             'ok' => '1.302052',
13179             },
13180             removed => {
13181             }
13182             },
13183             5.025005 => {
13184             delta_from => 5.025004,
13185             changed => {
13186             'B::Op_private' => '5.025005',
13187             'Config' => '5.025005',
13188             'Filter::Simple' => '0.93',
13189             'Locale::Codes' => '3.40',
13190             'Locale::Codes::Constants'=> '3.40',
13191             'Locale::Codes::Country'=> '3.40',
13192             'Locale::Codes::Country_Codes'=> '3.40',
13193             'Locale::Codes::Country_Retired'=> '3.40',
13194             'Locale::Codes::Currency'=> '3.40',
13195             'Locale::Codes::Currency_Codes'=> '3.40',
13196             'Locale::Codes::Currency_Retired'=> '3.40',
13197             'Locale::Codes::LangExt'=> '3.40',
13198             'Locale::Codes::LangExt_Codes'=> '3.40',
13199             'Locale::Codes::LangExt_Retired'=> '3.40',
13200             'Locale::Codes::LangFam'=> '3.40',
13201             'Locale::Codes::LangFam_Codes'=> '3.40',
13202             'Locale::Codes::LangFam_Retired'=> '3.40',
13203             'Locale::Codes::LangVar'=> '3.40',
13204             'Locale::Codes::LangVar_Codes'=> '3.40',
13205             'Locale::Codes::LangVar_Retired'=> '3.40',
13206             'Locale::Codes::Language'=> '3.40',
13207             'Locale::Codes::Language_Codes'=> '3.40',
13208             'Locale::Codes::Language_Retired'=> '3.40',
13209             'Locale::Codes::Script' => '3.40',
13210             'Locale::Codes::Script_Codes'=> '3.40',
13211             'Locale::Codes::Script_Retired'=> '3.40',
13212             'Locale::Country' => '3.40',
13213             'Locale::Currency' => '3.40',
13214             'Locale::Language' => '3.40',
13215             'Locale::Script' => '3.40',
13216             'Module::CoreList' => '5.20160920',
13217             'Module::CoreList::TieHashDelta'=> '5.20160920',
13218             'Module::CoreList::Utils'=> '5.20160920',
13219             'POSIX' => '1.72',
13220             'Sys::Syslog' => '0.35',
13221             'Test2' => '1.302056',
13222             'Test2::API' => '1.302056',
13223             'Test2::API::Breakage' => '1.302056',
13224             'Test2::API::Context' => '1.302056',
13225             'Test2::API::Instance' => '1.302056',
13226             'Test2::API::Stack' => '1.302056',
13227             'Test2::Event' => '1.302056',
13228             'Test2::Event::Bail' => '1.302056',
13229             'Test2::Event::Diag' => '1.302056',
13230             'Test2::Event::Exception'=> '1.302056',
13231             'Test2::Event::Generic' => '1.302056',
13232             'Test2::Event::Info' => '1.302056',
13233             'Test2::Event::Note' => '1.302056',
13234             'Test2::Event::Ok' => '1.302056',
13235             'Test2::Event::Plan' => '1.302056',
13236             'Test2::Event::Skip' => '1.302056',
13237             'Test2::Event::Subtest' => '1.302056',
13238             'Test2::Event::Waiting' => '1.302056',
13239             'Test2::Formatter' => '1.302056',
13240             'Test2::Formatter::TAP' => '1.302056',
13241             'Test2::Hub' => '1.302056',
13242             'Test2::Hub::Interceptor'=> '1.302056',
13243             'Test2::Hub::Interceptor::Terminator'=> '1.302056',
13244             'Test2::Hub::Subtest' => '1.302056',
13245             'Test2::IPC' => '1.302056',
13246             'Test2::IPC::Driver' => '1.302056',
13247             'Test2::IPC::Driver::Files'=> '1.302056',
13248             'Test2::Util' => '1.302056',
13249             'Test2::Util::ExternalMeta'=> '1.302056',
13250             'Test2::Util::HashBase' => '1.302056',
13251             'Test2::Util::Trace' => '1.302056',
13252             'Test::Builder' => '1.302056',
13253             'Test::Builder::Formatter'=> '1.302056',
13254             'Test::Builder::Module' => '1.302056',
13255             'Test::Builder::Tester' => '1.302056',
13256             'Test::Builder::Tester::Color'=> '1.302056',
13257             'Test::Builder::TodoDiag'=> '1.302056',
13258             'Test::More' => '1.302056',
13259             'Test::Simple' => '1.302056',
13260             'Test::Tester' => '1.302056',
13261             'Test::Tester::Capture' => '1.302056',
13262             'Test::Tester::CaptureRunner'=> '1.302056',
13263             'Test::Tester::Delegate'=> '1.302056',
13264             'Test::use::ok' => '1.302056',
13265             'Thread::Semaphore' => '2.13',
13266             'XS::APItest' => '0.84',
13267             'XSLoader' => '0.24',
13268             'ok' => '1.302056',
13269             },
13270             removed => {
13271             }
13272             },
13273             5.025006 => {
13274             delta_from => 5.025005,
13275             changed => {
13276             'Archive::Tar' => '2.14',
13277             'Archive::Tar::Constant'=> '2.14',
13278             'Archive::Tar::File' => '2.14',
13279             'B' => '1.64',
13280             'B::Concise' => '0.999',
13281             'B::Deparse' => '1.39',
13282             'B::Op_private' => '5.025006',
13283             'Config' => '5.025006',
13284             'Data::Dumper' => '2.162',
13285             'Devel::Peek' => '1.25',
13286             'HTTP::Tiny' => '0.070',
13287             'List::Util' => '1.46',
13288             'List::Util::XS' => '1.46',
13289             'Module::CoreList' => '5.20161020',
13290             'Module::CoreList::TieHashDelta'=> '5.20161020',
13291             'Module::CoreList::Utils'=> '5.20161020',
13292             'Net::Ping' => '2.51',
13293             'OS2::DLL' => '1.07',
13294             'Opcode' => '1.38',
13295             'POSIX' => '1.73',
13296             'PerlIO::encoding' => '0.25',
13297             'Pod::Man' => '4.08',
13298             'Pod::ParseLink' => '4.08',
13299             'Pod::Text' => '4.08',
13300             'Pod::Text::Color' => '4.08',
13301             'Pod::Text::Overstrike' => '4.08',
13302             'Pod::Text::Termcap' => '4.08',
13303             'Scalar::Util' => '1.46',
13304             'Storable' => '2.58',
13305             'Sub::Util' => '1.46',
13306             'Test2' => '1.302059',
13307             'Test2::API' => '1.302059',
13308             'Test2::API::Breakage' => '1.302059',
13309             'Test2::API::Context' => '1.302059',
13310             'Test2::API::Instance' => '1.302059',
13311             'Test2::API::Stack' => '1.302059',
13312             'Test2::Event' => '1.302059',
13313             'Test2::Event::Bail' => '1.302059',
13314             'Test2::Event::Diag' => '1.302059',
13315             'Test2::Event::Exception'=> '1.302059',
13316             'Test2::Event::Generic' => '1.302059',
13317             'Test2::Event::Info' => '1.302059',
13318             'Test2::Event::Note' => '1.302059',
13319             'Test2::Event::Ok' => '1.302059',
13320             'Test2::Event::Plan' => '1.302059',
13321             'Test2::Event::Skip' => '1.302059',
13322             'Test2::Event::Subtest' => '1.302059',
13323             'Test2::Event::Waiting' => '1.302059',
13324             'Test2::Formatter' => '1.302059',
13325             'Test2::Formatter::TAP' => '1.302059',
13326             'Test2::Hub' => '1.302059',
13327             'Test2::Hub::Interceptor'=> '1.302059',
13328             'Test2::Hub::Interceptor::Terminator'=> '1.302059',
13329             'Test2::Hub::Subtest' => '1.302059',
13330             'Test2::IPC' => '1.302059',
13331             'Test2::IPC::Driver' => '1.302059',
13332             'Test2::IPC::Driver::Files'=> '1.302059',
13333             'Test2::Util' => '1.302059',
13334             'Test2::Util::ExternalMeta'=> '1.302059',
13335             'Test2::Util::HashBase' => '1.302059',
13336             'Test2::Util::Trace' => '1.302059',
13337             'Test::Builder' => '1.302059',
13338             'Test::Builder::Formatter'=> '1.302059',
13339             'Test::Builder::Module' => '1.302059',
13340             'Test::Builder::Tester' => '1.302059',
13341             'Test::Builder::Tester::Color'=> '1.302059',
13342             'Test::Builder::TodoDiag'=> '1.302059',
13343             'Test::More' => '1.302059',
13344             'Test::Simple' => '1.302059',
13345             'Test::Tester' => '1.302059',
13346             'Test::Tester::Capture' => '1.302059',
13347             'Test::Tester::CaptureRunner'=> '1.302059',
13348             'Test::Tester::Delegate'=> '1.302059',
13349             'Test::use::ok' => '1.302059',
13350             'Time::HiRes' => '1.9740_01',
13351             'VMS::Stdio' => '2.42',
13352             'XS::APItest' => '0.86',
13353             'attributes' => '0.28',
13354             'mro' => '1.19',
13355             'ok' => '1.302059',
13356             'overload' => '1.27',
13357             'parent' => '0.236',
13358             },
13359             removed => {
13360             }
13361             },
13362             5.025007 => {
13363             delta_from => 5.025006,
13364             changed => {
13365             'Archive::Tar' => '2.18',
13366             'Archive::Tar::Constant'=> '2.18',
13367             'Archive::Tar::File' => '2.18',
13368             'B' => '1.65',
13369             'B::Op_private' => '5.025007',
13370             'Config' => '5.025007',
13371             'Cwd' => '3.66',
13372             'Data::Dumper' => '2.165',
13373             'Devel::Peek' => '1.26',
13374             'DynaLoader' => '1.40',
13375             'Errno' => '1.27',
13376             'ExtUtils::ParseXS::Utilities'=> '3.34',
13377             'File::Spec' => '3.66',
13378             'File::Spec::AmigaOS' => '3.66',
13379             'File::Spec::Cygwin' => '3.66',
13380             'File::Spec::Epoc' => '3.66',
13381             'File::Spec::Functions' => '3.66',
13382             'File::Spec::Mac' => '3.66',
13383             'File::Spec::OS2' => '3.66',
13384             'File::Spec::Unix' => '3.66',
13385             'File::Spec::VMS' => '3.66',
13386             'File::Spec::Win32' => '3.66',
13387             'Hash::Util' => '0.22',
13388             'JSON::PP' => '2.27400_02',
13389             'List::Util' => '1.46_02',
13390             'List::Util::XS' => '1.46_02',
13391             'Math::BigFloat' => '1.999727',
13392             'Math::BigInt' => '1.999727',
13393             'Math::BigInt::Calc' => '1.999727',
13394             'Math::BigInt::CalcEmu' => '1.999727',
13395             'Math::Complex' => '1.5901',
13396             'Module::CoreList' => '5.20161120',
13397             'Module::CoreList::TieHashDelta'=> '5.20161120',
13398             'Module::CoreList::Utils'=> '5.20161120',
13399             'Net::Ping' => '2.55',
13400             'Opcode' => '1.39',
13401             'POSIX' => '1.75',
13402             'Pod::Man' => '4.09',
13403             'Pod::ParseLink' => '4.09',
13404             'Pod::Text' => '4.09',
13405             'Pod::Text::Color' => '4.09',
13406             'Pod::Text::Overstrike' => '4.09',
13407             'Pod::Text::Termcap' => '4.09',
13408             'Scalar::Util' => '1.46_02',
13409             'Storable' => '2.59',
13410             'Sub::Util' => '1.46_02',
13411             'Term::ANSIColor' => '4.06',
13412             'Test2' => '1.302062',
13413             'Test2::API' => '1.302062',
13414             'Test2::API::Breakage' => '1.302062',
13415             'Test2::API::Context' => '1.302062',
13416             'Test2::API::Instance' => '1.302062',
13417             'Test2::API::Stack' => '1.302062',
13418             'Test2::Event' => '1.302062',
13419             'Test2::Event::Bail' => '1.302062',
13420             'Test2::Event::Diag' => '1.302062',
13421             'Test2::Event::Exception'=> '1.302062',
13422             'Test2::Event::Generic' => '1.302062',
13423             'Test2::Event::Info' => '1.302062',
13424             'Test2::Event::Note' => '1.302062',
13425             'Test2::Event::Ok' => '1.302062',
13426             'Test2::Event::Plan' => '1.302062',
13427             'Test2::Event::Skip' => '1.302062',
13428             'Test2::Event::Subtest' => '1.302062',
13429             'Test2::Event::Waiting' => '1.302062',
13430             'Test2::Formatter' => '1.302062',
13431             'Test2::Formatter::TAP' => '1.302062',
13432             'Test2::Hub' => '1.302062',
13433             'Test2::Hub::Interceptor'=> '1.302062',
13434             'Test2::Hub::Interceptor::Terminator'=> '1.302062',
13435             'Test2::Hub::Subtest' => '1.302062',
13436             'Test2::IPC' => '1.302062',
13437             'Test2::IPC::Driver' => '1.302062',
13438             'Test2::IPC::Driver::Files'=> '1.302062',
13439             'Test2::Util' => '1.302062',
13440             'Test2::Util::ExternalMeta'=> '1.302062',
13441             'Test2::Util::HashBase' => '1.302062',
13442             'Test2::Util::Trace' => '1.302062',
13443             'Test::Builder' => '1.302062',
13444             'Test::Builder::Formatter'=> '1.302062',
13445             'Test::Builder::Module' => '1.302062',
13446             'Test::Builder::Tester' => '1.302062',
13447             'Test::Builder::Tester::Color'=> '1.302062',
13448             'Test::Builder::TodoDiag'=> '1.302062',
13449             'Test::More' => '1.302062',
13450             'Test::Simple' => '1.302062',
13451             'Test::Tester' => '1.302062',
13452             'Test::Tester::Capture' => '1.302062',
13453             'Test::Tester::CaptureRunner'=> '1.302062',
13454             'Test::Tester::Delegate'=> '1.302062',
13455             'Test::use::ok' => '1.302062',
13456             'Time::HiRes' => '1.9740_03',
13457             'Unicode::Collate' => '1.18',
13458             'Unicode::Collate::CJK::Big5'=> '1.18',
13459             'Unicode::Collate::CJK::GB2312'=> '1.18',
13460             'Unicode::Collate::CJK::JISX0208'=> '1.18',
13461             'Unicode::Collate::CJK::Korean'=> '1.18',
13462             'Unicode::Collate::CJK::Pinyin'=> '1.18',
13463             'Unicode::Collate::CJK::Stroke'=> '1.18',
13464             'Unicode::Collate::CJK::Zhuyin'=> '1.18',
13465             'Unicode::Collate::Locale'=> '1.18',
13466             'Unicode::UCD' => '0.67',
13467             'XS::APItest' => '0.87',
13468             'XS::Typemap' => '0.15',
13469             'mro' => '1.20',
13470             'ok' => '1.302062',
13471             'threads' => '2.10',
13472             },
13473             removed => {
13474             }
13475             },
13476             5.025008 => {
13477             delta_from => 5.025007,
13478             changed => {
13479             'Archive::Tar' => '2.24',
13480             'Archive::Tar::Constant'=> '2.24',
13481             'Archive::Tar::File' => '2.24',
13482             'B::Debug' => '1.24',
13483             'B::Op_private' => '5.025008',
13484             'Config' => '5.025008',
13485             'Data::Dumper' => '2.166',
13486             'Encode' => '2.88',
13487             'Encode::Alias' => '2.21',
13488             'Encode::CN::HZ' => '2.08',
13489             'Encode::MIME::Header' => '2.24',
13490             'Encode::MIME::Name' => '1.02',
13491             'Encode::Unicode' => '2.1501',
13492             'IO' => '1.38',
13493             'Locale::Codes' => '3.42',
13494             'Locale::Codes::Constants'=> '3.42',
13495             'Locale::Codes::Country'=> '3.42',
13496             'Locale::Codes::Country_Codes'=> '3.42',
13497             'Locale::Codes::Country_Retired'=> '3.42',
13498             'Locale::Codes::Currency'=> '3.42',
13499             'Locale::Codes::Currency_Codes'=> '3.42',
13500             'Locale::Codes::Currency_Retired'=> '3.42',
13501             'Locale::Codes::LangExt'=> '3.42',
13502             'Locale::Codes::LangExt_Codes'=> '3.42',
13503             'Locale::Codes::LangExt_Retired'=> '3.42',
13504             'Locale::Codes::LangFam'=> '3.42',
13505             'Locale::Codes::LangFam_Codes'=> '3.42',
13506             'Locale::Codes::LangFam_Retired'=> '3.42',
13507             'Locale::Codes::LangVar'=> '3.42',
13508             'Locale::Codes::LangVar_Codes'=> '3.42',
13509             'Locale::Codes::LangVar_Retired'=> '3.42',
13510             'Locale::Codes::Language'=> '3.42',
13511             'Locale::Codes::Language_Codes'=> '3.42',
13512             'Locale::Codes::Language_Retired'=> '3.42',
13513             'Locale::Codes::Script' => '3.42',
13514             'Locale::Codes::Script_Codes'=> '3.42',
13515             'Locale::Codes::Script_Retired'=> '3.42',
13516             'Locale::Country' => '3.42',
13517             'Locale::Currency' => '3.42',
13518             'Locale::Language' => '3.42',
13519             'Locale::Script' => '3.42',
13520             'Math::BigFloat' => '1.999806',
13521             'Math::BigFloat::Trace' => '0.47',
13522             'Math::BigInt' => '1.999806',
13523             'Math::BigInt::Calc' => '1.999806',
13524             'Math::BigInt::CalcEmu' => '1.999806',
13525             'Math::BigInt::FastCalc'=> '0.5005',
13526             'Math::BigInt::Lib' => '1.999806',
13527             'Math::BigInt::Trace' => '0.47',
13528             'Math::BigRat' => '0.2611',
13529             'Module::CoreList' => '5.20161220',
13530             'Module::CoreList::TieHashDelta'=> '5.20161220',
13531             'Module::CoreList::Utils'=> '5.20161220',
13532             'POSIX' => '1.76',
13533             'PerlIO::scalar' => '0.25',
13534             'Pod::Simple' => '3.35',
13535             'Pod::Simple::BlackBox' => '3.35',
13536             'Pod::Simple::Checker' => '3.35',
13537             'Pod::Simple::Debug' => '3.35',
13538             'Pod::Simple::DumpAsText'=> '3.35',
13539             'Pod::Simple::DumpAsXML'=> '3.35',
13540             'Pod::Simple::HTML' => '3.35',
13541             'Pod::Simple::HTMLBatch'=> '3.35',
13542             'Pod::Simple::LinkSection'=> '3.35',
13543             'Pod::Simple::Methody' => '3.35',
13544             'Pod::Simple::Progress' => '3.35',
13545             'Pod::Simple::PullParser'=> '3.35',
13546             'Pod::Simple::PullParserEndToken'=> '3.35',
13547             'Pod::Simple::PullParserStartToken'=> '3.35',
13548             'Pod::Simple::PullParserTextToken'=> '3.35',
13549             'Pod::Simple::PullParserToken'=> '3.35',
13550             'Pod::Simple::RTF' => '3.35',
13551             'Pod::Simple::Search' => '3.35',
13552             'Pod::Simple::SimpleTree'=> '3.35',
13553             'Pod::Simple::Text' => '3.35',
13554             'Pod::Simple::TextContent'=> '3.35',
13555             'Pod::Simple::TiedOutFH'=> '3.35',
13556             'Pod::Simple::Transcode'=> '3.35',
13557             'Pod::Simple::TranscodeDumb'=> '3.35',
13558             'Pod::Simple::TranscodeSmart'=> '3.35',
13559             'Pod::Simple::XHTML' => '3.35',
13560             'Pod::Simple::XMLOutStream'=> '3.35',
13561             'Test2' => '1.302073',
13562             'Test2::API' => '1.302073',
13563             'Test2::API::Breakage' => '1.302073',
13564             'Test2::API::Context' => '1.302073',
13565             'Test2::API::Instance' => '1.302073',
13566             'Test2::API::Stack' => '1.302073',
13567             'Test2::Event' => '1.302073',
13568             'Test2::Event::Bail' => '1.302073',
13569             'Test2::Event::Diag' => '1.302073',
13570             'Test2::Event::Encoding'=> '1.302073',
13571             'Test2::Event::Exception'=> '1.302073',
13572             'Test2::Event::Generic' => '1.302073',
13573             'Test2::Event::Info' => '1.302073',
13574             'Test2::Event::Note' => '1.302073',
13575             'Test2::Event::Ok' => '1.302073',
13576             'Test2::Event::Plan' => '1.302073',
13577             'Test2::Event::Skip' => '1.302073',
13578             'Test2::Event::Subtest' => '1.302073',
13579             'Test2::Event::TAP::Version'=> '1.302073',
13580             'Test2::Event::Waiting' => '1.302073',
13581             'Test2::Formatter' => '1.302073',
13582             'Test2::Formatter::TAP' => '1.302073',
13583             'Test2::Hub' => '1.302073',
13584             'Test2::Hub::Interceptor'=> '1.302073',
13585             'Test2::Hub::Interceptor::Terminator'=> '1.302073',
13586             'Test2::Hub::Subtest' => '1.302073',
13587             'Test2::IPC' => '1.302073',
13588             'Test2::IPC::Driver' => '1.302073',
13589             'Test2::IPC::Driver::Files'=> '1.302073',
13590             'Test2::Tools::Tiny' => '1.302073',
13591             'Test2::Util' => '1.302073',
13592             'Test2::Util::ExternalMeta'=> '1.302073',
13593             'Test2::Util::HashBase' => '0.002',
13594             'Test2::Util::Trace' => '1.302073',
13595             'Test::Builder' => '1.302073',
13596             'Test::Builder::Formatter'=> '1.302073',
13597             'Test::Builder::Module' => '1.302073',
13598             'Test::Builder::Tester' => '1.302073',
13599             'Test::Builder::Tester::Color'=> '1.302073',
13600             'Test::Builder::TodoDiag'=> '1.302073',
13601             'Test::More' => '1.302073',
13602             'Test::Simple' => '1.302073',
13603             'Test::Tester' => '1.302073',
13604             'Test::Tester::Capture' => '1.302073',
13605             'Test::Tester::CaptureRunner'=> '1.302073',
13606             'Test::Tester::Delegate'=> '1.302073',
13607             'Test::use::ok' => '1.302073',
13608             'Time::HiRes' => '1.9741',
13609             'Time::Local' => '1.25',
13610             'Unicode::Collate' => '1.19',
13611             'Unicode::Collate::CJK::Big5'=> '1.19',
13612             'Unicode::Collate::CJK::GB2312'=> '1.19',
13613             'Unicode::Collate::CJK::JISX0208'=> '1.19',
13614             'Unicode::Collate::CJK::Korean'=> '1.19',
13615             'Unicode::Collate::CJK::Pinyin'=> '1.19',
13616             'Unicode::Collate::CJK::Stroke'=> '1.19',
13617             'Unicode::Collate::CJK::Zhuyin'=> '1.19',
13618             'Unicode::Collate::Locale'=> '1.19',
13619             'bigint' => '0.47',
13620             'bignum' => '0.47',
13621             'bigrat' => '0.47',
13622             'encoding' => '2.19',
13623             'ok' => '1.302073',
13624             },
13625             removed => {
13626             }
13627             },
13628             5.022003 => {
13629             delta_from => 5.022002,
13630             changed => {
13631             'App::Cpan' => '1.63_01',
13632             'App::Prove' => '3.35_01',
13633             'App::Prove::State' => '3.35_01',
13634             'App::Prove::State::Result'=> '3.35_01',
13635             'App::Prove::State::Result::Test'=> '3.35_01',
13636             'Archive::Tar' => '2.04_01',
13637             'Archive::Tar::Constant'=> '2.04_01',
13638             'Archive::Tar::File' => '2.04_01',
13639             'B::Op_private' => '5.022003',
13640             'CPAN' => '2.11_01',
13641             'Compress::Zlib' => '2.068_001',
13642             'Config' => '5.022003',
13643             'Cwd' => '3.56_02',
13644             'Digest' => '1.17_01',
13645             'Digest::SHA' => '5.95_01',
13646             'Encode' => '2.72_01',
13647             'ExtUtils::Command' => '1.20_01',
13648             'ExtUtils::Command::MM' => '7.04_02',
13649             'ExtUtils::Liblist' => '7.04_02',
13650             'ExtUtils::Liblist::Kid'=> '7.04_02',
13651             'ExtUtils::MM' => '7.04_02',
13652             'ExtUtils::MM_AIX' => '7.04_02',
13653             'ExtUtils::MM_Any' => '7.04_02',
13654             'ExtUtils::MM_BeOS' => '7.04_02',
13655             'ExtUtils::MM_Cygwin' => '7.04_02',
13656             'ExtUtils::MM_DOS' => '7.04_02',
13657             'ExtUtils::MM_Darwin' => '7.04_02',
13658             'ExtUtils::MM_MacOS' => '7.04_02',
13659             'ExtUtils::MM_NW5' => '7.04_02',
13660             'ExtUtils::MM_OS2' => '7.04_02',
13661             'ExtUtils::MM_QNX' => '7.04_02',
13662             'ExtUtils::MM_UWIN' => '7.04_02',
13663             'ExtUtils::MM_Unix' => '7.04_02',
13664             'ExtUtils::MM_VMS' => '7.04_02',
13665             'ExtUtils::MM_VOS' => '7.04_02',
13666             'ExtUtils::MM_Win32' => '7.04_02',
13667             'ExtUtils::MM_Win95' => '7.04_02',
13668             'ExtUtils::MY' => '7.04_02',
13669             'ExtUtils::MakeMaker' => '7.04_02',
13670             'ExtUtils::MakeMaker::Config'=> '7.04_02',
13671             'ExtUtils::Mkbootstrap' => '7.04_02',
13672             'ExtUtils::Mksymlists' => '7.04_02',
13673             'ExtUtils::testlib' => '7.04_02',
13674             'File::Fetch' => '0.48_01',
13675             'File::Spec' => '3.56_02',
13676             'File::Spec::Cygwin' => '3.56_02',
13677             'File::Spec::Epoc' => '3.56_02',
13678             'File::Spec::Functions' => '3.56_02',
13679             'File::Spec::Mac' => '3.56_02',
13680             'File::Spec::OS2' => '3.56_02',
13681             'File::Spec::Unix' => '3.56_02',
13682             'File::Spec::VMS' => '3.56_02',
13683             'File::Spec::Win32' => '3.56_02',
13684             'HTTP::Tiny' => '0.054_01',
13685             'I18N::LangTags::Detect'=> '1.05_01',
13686             'IO' => '1.35_01',
13687             'IO::Compress::Adapter::Bzip2'=> '2.068_001',
13688             'IO::Compress::Adapter::Deflate'=> '2.068_001',
13689             'IO::Compress::Adapter::Identity'=> '2.068_001',
13690             'IO::Compress::Base' => '2.068_001',
13691             'IO::Compress::Base::Common'=> '2.068_001',
13692             'IO::Compress::Bzip2' => '2.068_001',
13693             'IO::Compress::Deflate' => '2.068_001',
13694             'IO::Compress::Gzip' => '2.068_001',
13695             'IO::Compress::Gzip::Constants'=> '2.068_001',
13696             'IO::Compress::RawDeflate'=> '2.068_001',
13697             'IO::Compress::Zip' => '2.068_001',
13698             'IO::Compress::Zip::Constants'=> '2.068_001',
13699             'IO::Compress::Zlib::Constants'=> '2.068_001',
13700             'IO::Compress::Zlib::Extra'=> '2.068_001',
13701             'IO::Uncompress::Adapter::Bunzip2'=> '2.068_001',
13702             'IO::Uncompress::Adapter::Identity'=> '2.068_001',
13703             'IO::Uncompress::Adapter::Inflate'=> '2.068_001',
13704             'IO::Uncompress::AnyInflate'=> '2.068_001',
13705             'IO::Uncompress::AnyUncompress'=> '2.068_001',
13706             'IO::Uncompress::Base' => '2.068_001',
13707             'IO::Uncompress::Bunzip2'=> '2.068_001',
13708             'IO::Uncompress::Gunzip'=> '2.068_001',
13709             'IO::Uncompress::Inflate'=> '2.068_001',
13710             'IO::Uncompress::RawInflate'=> '2.068_001',
13711             'IO::Uncompress::Unzip' => '2.068_001',
13712             'IPC::Cmd' => '0.92_01',
13713             'JSON::PP' => '2.27300_01',
13714             'Locale::Maketext' => '1.26_01',
13715             'Locale::Maketext::Simple'=> '0.21_01',
13716             'Memoize' => '1.03_01',
13717             'Module::CoreList' => '5.20170114_22',
13718             'Module::CoreList::TieHashDelta'=> '5.20170114_22',
13719             'Module::CoreList::Utils'=> '5.20170114_22',
13720             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13721             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13722             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13723             'Net::Cmd' => '3.05_01',
13724             'Net::Config' => '3.05_01',
13725             'Net::Domain' => '3.05_01',
13726             'Net::FTP' => '3.05_01',
13727             'Net::FTP::A' => '3.05_01',
13728             'Net::FTP::E' => '3.05_01',
13729             'Net::FTP::I' => '3.05_01',
13730             'Net::FTP::L' => '3.05_01',
13731             'Net::FTP::dataconn' => '3.05_01',
13732             'Net::NNTP' => '3.05_01',
13733             'Net::Netrc' => '3.05_01',
13734             'Net::POP3' => '3.05_01',
13735             'Net::Ping' => '2.43_01',
13736             'Net::SMTP' => '3.05_01',
13737             'Net::Time' => '3.05_01',
13738             'Parse::CPAN::Meta' => '1.4414_001',
13739             'Pod::Html' => '1.2201',
13740             'Pod::Perldoc' => '3.25_01',
13741             'Storable' => '2.53_02',
13742             'Sys::Syslog' => '0.33_01',
13743             'TAP::Base' => '3.35_01',
13744             'TAP::Formatter::Base' => '3.35_01',
13745             'TAP::Formatter::Color' => '3.35_01',
13746             'TAP::Formatter::Console'=> '3.35_01',
13747             'TAP::Formatter::Console::ParallelSession'=> '3.35_01',
13748             'TAP::Formatter::Console::Session'=> '3.35_01',
13749             'TAP::Formatter::File' => '3.35_01',
13750             'TAP::Formatter::File::Session'=> '3.35_01',
13751             'TAP::Formatter::Session'=> '3.35_01',
13752             'TAP::Harness' => '3.35_01',
13753             'TAP::Harness::Env' => '3.35_01',
13754             'TAP::Object' => '3.35_01',
13755             'TAP::Parser' => '3.35_01',
13756             'TAP::Parser::Aggregator'=> '3.35_01',
13757             'TAP::Parser::Grammar' => '3.35_01',
13758             'TAP::Parser::Iterator' => '3.35_01',
13759             'TAP::Parser::Iterator::Array'=> '3.35_01',
13760             'TAP::Parser::Iterator::Process'=> '3.35_01',
13761             'TAP::Parser::Iterator::Stream'=> '3.35_01',
13762             'TAP::Parser::IteratorFactory'=> '3.35_01',
13763             'TAP::Parser::Multiplexer'=> '3.35_01',
13764             'TAP::Parser::Result' => '3.35_01',
13765             'TAP::Parser::Result::Bailout'=> '3.35_01',
13766             'TAP::Parser::Result::Comment'=> '3.35_01',
13767             'TAP::Parser::Result::Plan'=> '3.35_01',
13768             'TAP::Parser::Result::Pragma'=> '3.35_01',
13769             'TAP::Parser::Result::Test'=> '3.35_01',
13770             'TAP::Parser::Result::Unknown'=> '3.35_01',
13771             'TAP::Parser::Result::Version'=> '3.35_01',
13772             'TAP::Parser::Result::YAML'=> '3.35_01',
13773             'TAP::Parser::ResultFactory'=> '3.35_01',
13774             'TAP::Parser::Scheduler'=> '3.35_01',
13775             'TAP::Parser::Scheduler::Job'=> '3.35_01',
13776             'TAP::Parser::Scheduler::Spinner'=> '3.35_01',
13777             'TAP::Parser::Source' => '3.35_01',
13778             'TAP::Parser::SourceHandler'=> '3.35_01',
13779             'TAP::Parser::SourceHandler::Executable'=> '3.35_01',
13780             'TAP::Parser::SourceHandler::File'=> '3.35_01',
13781             'TAP::Parser::SourceHandler::Handle'=> '3.35_01',
13782             'TAP::Parser::SourceHandler::Perl'=> '3.35_01',
13783             'TAP::Parser::SourceHandler::RawTAP'=> '3.35_01',
13784             'TAP::Parser::YAMLish::Reader'=> '3.35_01',
13785             'TAP::Parser::YAMLish::Writer'=> '3.35_01',
13786             'Test' => '1.26_01',
13787             'Test::Harness' => '3.35_01',
13788             'XSLoader' => '0.20_01',
13789             'bigint' => '0.39_01',
13790             'bignum' => '0.39_01',
13791             'bigrat' => '0.39_01',
13792             },
13793             removed => {
13794             }
13795             },
13796             5.024001 => {
13797             delta_from => 5.024000,
13798             changed => {
13799             'App::Cpan' => '1.63_01',
13800             'App::Prove' => '3.36_01',
13801             'App::Prove::State' => '3.36_01',
13802             'App::Prove::State::Result'=> '3.36_01',
13803             'App::Prove::State::Result::Test'=> '3.36_01',
13804             'Archive::Tar' => '2.04_01',
13805             'Archive::Tar::Constant'=> '2.04_01',
13806             'Archive::Tar::File' => '2.04_01',
13807             'B::Op_private' => '5.024001',
13808             'CPAN' => '2.11_01',
13809             'Compress::Zlib' => '2.069_001',
13810             'Config' => '5.024001',
13811             'Cwd' => '3.63_01',
13812             'Digest' => '1.17_01',
13813             'Digest::SHA' => '5.95_01',
13814             'Encode' => '2.80_01',
13815             'ExtUtils::Command' => '7.10_02',
13816             'ExtUtils::Command::MM' => '7.10_02',
13817             'ExtUtils::Liblist' => '7.10_02',
13818             'ExtUtils::Liblist::Kid'=> '7.10_02',
13819             'ExtUtils::MM' => '7.10_02',
13820             'ExtUtils::MM_AIX' => '7.10_02',
13821             'ExtUtils::MM_Any' => '7.10_02',
13822             'ExtUtils::MM_BeOS' => '7.10_02',
13823             'ExtUtils::MM_Cygwin' => '7.10_02',
13824             'ExtUtils::MM_DOS' => '7.10_02',
13825             'ExtUtils::MM_Darwin' => '7.10_02',
13826             'ExtUtils::MM_MacOS' => '7.10_02',
13827             'ExtUtils::MM_NW5' => '7.10_02',
13828             'ExtUtils::MM_OS2' => '7.10_02',
13829             'ExtUtils::MM_QNX' => '7.10_02',
13830             'ExtUtils::MM_UWIN' => '7.10_02',
13831             'ExtUtils::MM_Unix' => '7.10_02',
13832             'ExtUtils::MM_VMS' => '7.10_02',
13833             'ExtUtils::MM_VOS' => '7.10_02',
13834             'ExtUtils::MM_Win32' => '7.10_02',
13835             'ExtUtils::MM_Win95' => '7.10_02',
13836             'ExtUtils::MY' => '7.10_02',
13837             'ExtUtils::MakeMaker' => '7.10_02',
13838             'ExtUtils::MakeMaker::Config'=> '7.10_02',
13839             'ExtUtils::Mkbootstrap' => '7.10_02',
13840             'ExtUtils::Mksymlists' => '7.10_02',
13841             'ExtUtils::testlib' => '7.10_02',
13842             'File::Fetch' => '0.48_01',
13843             'File::Spec' => '3.63_01',
13844             'File::Spec::Cygwin' => '3.63_01',
13845             'File::Spec::Epoc' => '3.63_01',
13846             'File::Spec::Functions' => '3.63_01',
13847             'File::Spec::Mac' => '3.63_01',
13848             'File::Spec::OS2' => '3.63_01',
13849             'File::Spec::Unix' => '3.63_01',
13850             'File::Spec::VMS' => '3.63_01',
13851             'File::Spec::Win32' => '3.63_01',
13852             'HTTP::Tiny' => '0.056_001',
13853             'I18N::LangTags::Detect'=> '1.05_01',
13854             'IO' => '1.36_01',
13855             'IO::Compress::Adapter::Bzip2'=> '2.069_001',
13856             'IO::Compress::Adapter::Deflate'=> '2.069_001',
13857             'IO::Compress::Adapter::Identity'=> '2.069_001',
13858             'IO::Compress::Base' => '2.069_001',
13859             'IO::Compress::Base::Common'=> '2.069_001',
13860             'IO::Compress::Bzip2' => '2.069_001',
13861             'IO::Compress::Deflate' => '2.069_001',
13862             'IO::Compress::Gzip' => '2.069_001',
13863             'IO::Compress::Gzip::Constants'=> '2.069_001',
13864             'IO::Compress::RawDeflate'=> '2.069_001',
13865             'IO::Compress::Zip' => '2.069_001',
13866             'IO::Compress::Zip::Constants'=> '2.069_001',
13867             'IO::Compress::Zlib::Constants'=> '2.069_001',
13868             'IO::Compress::Zlib::Extra'=> '2.069_001',
13869             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_001',
13870             'IO::Uncompress::Adapter::Identity'=> '2.069_001',
13871             'IO::Uncompress::Adapter::Inflate'=> '2.069_001',
13872             'IO::Uncompress::AnyInflate'=> '2.069_001',
13873             'IO::Uncompress::AnyUncompress'=> '2.069_001',
13874             'IO::Uncompress::Base' => '2.069_001',
13875             'IO::Uncompress::Bunzip2'=> '2.069_001',
13876             'IO::Uncompress::Gunzip'=> '2.069_001',
13877             'IO::Uncompress::Inflate'=> '2.069_001',
13878             'IO::Uncompress::RawInflate'=> '2.069_001',
13879             'IO::Uncompress::Unzip' => '2.069_001',
13880             'IPC::Cmd' => '0.92_01',
13881             'JSON::PP' => '2.27300_01',
13882             'Locale::Maketext' => '1.26_01',
13883             'Locale::Maketext::Simple'=> '0.21_01',
13884             'Math::BigFloat::Trace' => '0.42_01',
13885             'Math::BigInt::Trace' => '0.42_01',
13886             'Memoize' => '1.03_01',
13887             'Module::CoreList' => '5.20170114_24',
13888             'Module::CoreList::TieHashDelta'=> '5.20170114_24',
13889             'Module::CoreList::Utils'=> '5.20170114_24',
13890             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13891             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13892             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13893             'Net::Cmd' => '3.08_01',
13894             'Net::Config' => '3.08_01',
13895             'Net::Domain' => '3.08_01',
13896             'Net::FTP' => '3.08_01',
13897             'Net::FTP::A' => '3.08_01',
13898             'Net::FTP::E' => '3.08_01',
13899             'Net::FTP::I' => '3.08_01',
13900             'Net::FTP::L' => '3.08_01',
13901             'Net::FTP::dataconn' => '3.08_01',
13902             'Net::NNTP' => '3.08_01',
13903             'Net::Netrc' => '3.08_01',
13904             'Net::POP3' => '3.08_01',
13905             'Net::Ping' => '2.43_01',
13906             'Net::SMTP' => '3.08_01',
13907             'Net::Time' => '3.08_01',
13908             'Parse::CPAN::Meta' => '1.4417_001',
13909             'Pod::Html' => '1.2201',
13910             'Pod::Perldoc' => '3.25_03',
13911             'Storable' => '2.56_01',
13912             'Sys::Syslog' => '0.33_01',
13913             'TAP::Base' => '3.36_01',
13914             'TAP::Formatter::Base' => '3.36_01',
13915             'TAP::Formatter::Color' => '3.36_01',
13916             'TAP::Formatter::Console'=> '3.36_01',
13917             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13918             'TAP::Formatter::Console::Session'=> '3.36_01',
13919             'TAP::Formatter::File' => '3.36_01',
13920             'TAP::Formatter::File::Session'=> '3.36_01',
13921             'TAP::Formatter::Session'=> '3.36_01',
13922             'TAP::Harness' => '3.36_01',
13923             'TAP::Harness::Env' => '3.36_01',
13924             'TAP::Object' => '3.36_01',
13925             'TAP::Parser' => '3.36_01',
13926             'TAP::Parser::Aggregator'=> '3.36_01',
13927             'TAP::Parser::Grammar' => '3.36_01',
13928             'TAP::Parser::Iterator' => '3.36_01',
13929             'TAP::Parser::Iterator::Array'=> '3.36_01',
13930             'TAP::Parser::Iterator::Process'=> '3.36_01',
13931             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13932             'TAP::Parser::IteratorFactory'=> '3.36_01',
13933             'TAP::Parser::Multiplexer'=> '3.36_01',
13934             'TAP::Parser::Result' => '3.36_01',
13935             'TAP::Parser::Result::Bailout'=> '3.36_01',
13936             'TAP::Parser::Result::Comment'=> '3.36_01',
13937             'TAP::Parser::Result::Plan'=> '3.36_01',
13938             'TAP::Parser::Result::Pragma'=> '3.36_01',
13939             'TAP::Parser::Result::Test'=> '3.36_01',
13940             'TAP::Parser::Result::Unknown'=> '3.36_01',
13941             'TAP::Parser::Result::Version'=> '3.36_01',
13942             'TAP::Parser::Result::YAML'=> '3.36_01',
13943             'TAP::Parser::ResultFactory'=> '3.36_01',
13944             'TAP::Parser::Scheduler'=> '3.36_01',
13945             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13946             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13947             'TAP::Parser::Source' => '3.36_01',
13948             'TAP::Parser::SourceHandler'=> '3.36_01',
13949             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13950             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13951             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13952             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13953             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13954             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13955             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13956             'Test' => '1.28_01',
13957             'Test::Harness' => '3.36_01',
13958             'XSLoader' => '0.22',
13959             'bigint' => '0.42_01',
13960             'bignum' => '0.42_01',
13961             'bigrat' => '0.42_01',
13962             },
13963             removed => {
13964             }
13965             },
13966             5.025009 => {
13967             delta_from => 5.025008,
13968             changed => {
13969             'App::Cpan' => '1.66',
13970             'B::Deparse' => '1.40',
13971             'B::Op_private' => '5.025009',
13972             'B::Terse' => '1.07',
13973             'B::Xref' => '1.06',
13974             'CPAN' => '2.16',
13975             'CPAN::Bundle' => '5.5002',
13976             'CPAN::Distribution' => '2.16',
13977             'CPAN::Exception::RecursiveDependency'=> '5.5001',
13978             'CPAN::FTP' => '5.5008',
13979             'CPAN::FirstTime' => '5.5310',
13980             'CPAN::HandleConfig' => '5.5008',
13981             'CPAN::Module' => '5.5003',
13982             'Compress::Raw::Bzip2' => '2.070',
13983             'Compress::Raw::Zlib' => '2.070',
13984             'Config' => '5.025009',
13985             'DB_File' => '1.840',
13986             'Data::Dumper' => '2.167',
13987             'Devel::SelfStubber' => '1.06',
13988             'DynaLoader' => '1.41',
13989             'Errno' => '1.28',
13990             'ExtUtils::Embed' => '1.34',
13991             'File::Glob' => '1.28',
13992             'I18N::LangTags' => '0.42',
13993             'Module::CoreList' => '5.20170120',
13994             'Module::CoreList::TieHashDelta'=> '5.20170120',
13995             'Module::CoreList::Utils'=> '5.20170120',
13996             'OS2::Process' => '1.12',
13997             'PerlIO::scalar' => '0.26',
13998             'Pod::Html' => '1.2202',
13999             'Storable' => '2.61',
14000             'Symbol' => '1.08',
14001             'Term::ReadLine' => '1.16',
14002             'Test' => '1.30',
14003             'Unicode::UCD' => '0.68',
14004             'VMS::DCLsym' => '1.08',
14005             'XS::APItest' => '0.88',
14006             'XSLoader' => '0.26',
14007             'attributes' => '0.29',
14008             'diagnostics' => '1.36',
14009             'feature' => '1.46',
14010             'lib' => '0.64',
14011             'overload' => '1.28',
14012             're' => '0.34',
14013             'threads' => '2.12',
14014             'threads::shared' => '1.54',
14015             },
14016             removed => {
14017             }
14018             },
14019             5.025010 => {
14020             delta_from => 5.025009,
14021             changed => {
14022             'B' => '1.68',
14023             'B::Op_private' => '5.025010',
14024             'CPAN' => '2.17',
14025             'CPAN::Distribution' => '2.17',
14026             'Config' => '5.02501',
14027             'Getopt::Std' => '1.12',
14028             'Module::CoreList' => '5.20170220',
14029             'Module::CoreList::TieHashDelta'=> '5.20170220',
14030             'Module::CoreList::Utils'=> '5.20170220',
14031             'PerlIO' => '1.10',
14032             'Storable' => '2.62',
14033             'Thread::Queue' => '3.12',
14034             'feature' => '1.47',
14035             'open' => '1.11',
14036             'threads' => '2.13',
14037             },
14038             removed => {
14039             }
14040             },
14041             5.025011 => {
14042             delta_from => 5.025010,
14043             changed => {
14044             'App::Prove' => '3.38',
14045             'App::Prove::State' => '3.38',
14046             'App::Prove::State::Result'=> '3.38',
14047             'App::Prove::State::Result::Test'=> '3.38',
14048             'B::Op_private' => '5.025011',
14049             'Compress::Raw::Bzip2' => '2.074',
14050             'Compress::Raw::Zlib' => '2.074',
14051             'Compress::Zlib' => '2.074',
14052             'Config' => '5.025011',
14053             'Config::Perl::V' => '0.28',
14054             'Cwd' => '3.67',
14055             'ExtUtils::ParseXS' => '3.34',
14056             'ExtUtils::ParseXS::Constants'=> '3.34',
14057             'ExtUtils::ParseXS::CountLines'=> '3.34',
14058             'ExtUtils::ParseXS::Eval'=> '3.34',
14059             'ExtUtils::Typemaps' => '3.34',
14060             'ExtUtils::Typemaps::Cmd'=> '3.34',
14061             'ExtUtils::Typemaps::InputMap'=> '3.34',
14062             'ExtUtils::Typemaps::OutputMap'=> '3.34',
14063             'ExtUtils::Typemaps::Type'=> '3.34',
14064             'File::Spec' => '3.67',
14065             'File::Spec::AmigaOS' => '3.67',
14066             'File::Spec::Cygwin' => '3.67',
14067             'File::Spec::Epoc' => '3.67',
14068             'File::Spec::Functions' => '3.67',
14069             'File::Spec::Mac' => '3.67',
14070             'File::Spec::OS2' => '3.67',
14071             'File::Spec::Unix' => '3.67',
14072             'File::Spec::VMS' => '3.67',
14073             'File::Spec::Win32' => '3.67',
14074             'IO::Compress::Adapter::Bzip2'=> '2.074',
14075             'IO::Compress::Adapter::Deflate'=> '2.074',
14076             'IO::Compress::Adapter::Identity'=> '2.074',
14077             'IO::Compress::Base' => '2.074',
14078             'IO::Compress::Base::Common'=> '2.074',
14079             'IO::Compress::Bzip2' => '2.074',
14080             'IO::Compress::Deflate' => '2.074',
14081             'IO::Compress::Gzip' => '2.074',
14082             'IO::Compress::Gzip::Constants'=> '2.074',
14083             'IO::Compress::RawDeflate'=> '2.074',
14084             'IO::Compress::Zip' => '2.074',
14085             'IO::Compress::Zip::Constants'=> '2.074',
14086             'IO::Compress::Zlib::Constants'=> '2.074',
14087             'IO::Compress::Zlib::Extra'=> '2.074',
14088             'IO::Uncompress::Adapter::Bunzip2'=> '2.074',
14089             'IO::Uncompress::Adapter::Identity'=> '2.074',
14090             'IO::Uncompress::Adapter::Inflate'=> '2.074',
14091             'IO::Uncompress::AnyInflate'=> '2.074',
14092             'IO::Uncompress::AnyUncompress'=> '2.074',
14093             'IO::Uncompress::Base' => '2.074',
14094             'IO::Uncompress::Bunzip2'=> '2.074',
14095             'IO::Uncompress::Gunzip'=> '2.074',
14096             'IO::Uncompress::Inflate'=> '2.074',
14097             'IO::Uncompress::RawInflate'=> '2.074',
14098             'IO::Uncompress::Unzip' => '2.074',
14099             'Module::CoreList' => '5.20170320',
14100             'Module::CoreList::TieHashDelta'=> '5.20170230',
14101             'Module::CoreList::Utils'=> '5.20170320',
14102             'Pod::Perldoc' => '3.28',
14103             'Pod::Perldoc::BaseTo' => '3.28',
14104             'Pod::Perldoc::GetOptsOO'=> '3.28',
14105             'Pod::Perldoc::ToANSI' => '3.28',
14106             'Pod::Perldoc::ToChecker'=> '3.28',
14107             'Pod::Perldoc::ToMan' => '3.28',
14108             'Pod::Perldoc::ToNroff' => '3.28',
14109             'Pod::Perldoc::ToPod' => '3.28',
14110             'Pod::Perldoc::ToRtf' => '3.28',
14111             'Pod::Perldoc::ToTerm' => '3.28',
14112             'Pod::Perldoc::ToText' => '3.28',
14113             'Pod::Perldoc::ToTk' => '3.28',
14114             'Pod::Perldoc::ToXml' => '3.28',
14115             'TAP::Base' => '3.38',
14116             'TAP::Formatter::Base' => '3.38',
14117             'TAP::Formatter::Color' => '3.38',
14118             'TAP::Formatter::Console'=> '3.38',
14119             'TAP::Formatter::Console::ParallelSession'=> '3.38',
14120             'TAP::Formatter::Console::Session'=> '3.38',
14121             'TAP::Formatter::File' => '3.38',
14122             'TAP::Formatter::File::Session'=> '3.38',
14123             'TAP::Formatter::Session'=> '3.38',
14124             'TAP::Harness' => '3.38',
14125             'TAP::Harness::Env' => '3.38',
14126             'TAP::Object' => '3.38',
14127             'TAP::Parser' => '3.38',
14128             'TAP::Parser::Aggregator'=> '3.38',
14129             'TAP::Parser::Grammar' => '3.38',
14130             'TAP::Parser::Iterator' => '3.38',
14131             'TAP::Parser::Iterator::Array'=> '3.38',
14132             'TAP::Parser::Iterator::Process'=> '3.38',
14133             'TAP::Parser::Iterator::Stream'=> '3.38',
14134             'TAP::Parser::IteratorFactory'=> '3.38',
14135             'TAP::Parser::Multiplexer'=> '3.38',
14136             'TAP::Parser::Result' => '3.38',
14137             'TAP::Parser::Result::Bailout'=> '3.38',
14138             'TAP::Parser::Result::Comment'=> '3.38',
14139             'TAP::Parser::Result::Plan'=> '3.38',
14140             'TAP::Parser::Result::Pragma'=> '3.38',
14141             'TAP::Parser::Result::Test'=> '3.38',
14142             'TAP::Parser::Result::Unknown'=> '3.38',
14143             'TAP::Parser::Result::Version'=> '3.38',
14144             'TAP::Parser::Result::YAML'=> '3.38',
14145             'TAP::Parser::ResultFactory'=> '3.38',
14146             'TAP::Parser::Scheduler'=> '3.38',
14147             'TAP::Parser::Scheduler::Job'=> '3.38',
14148             'TAP::Parser::Scheduler::Spinner'=> '3.38',
14149             'TAP::Parser::Source' => '3.38',
14150             'TAP::Parser::SourceHandler'=> '3.38',
14151             'TAP::Parser::SourceHandler::Executable'=> '3.38',
14152             'TAP::Parser::SourceHandler::File'=> '3.38',
14153             'TAP::Parser::SourceHandler::Handle'=> '3.38',
14154             'TAP::Parser::SourceHandler::Perl'=> '3.38',
14155             'TAP::Parser::SourceHandler::RawTAP'=> '3.38',
14156             'TAP::Parser::YAMLish::Reader'=> '3.38',
14157             'TAP::Parser::YAMLish::Writer'=> '3.38',
14158             'Test::Harness' => '3.38',
14159             'VMS::Stdio' => '2.41',
14160             'threads' => '2.15',
14161             'threads::shared' => '1.55',
14162             },
14163             removed => {
14164             }
14165             },
14166             5.025012 => {
14167             delta_from => 5.025011,
14168             changed => {
14169             'B::Op_private' => '5.025012',
14170             'CPAN' => '2.18',
14171             'CPAN::Bundle' => '5.5003',
14172             'CPAN::Distribution' => '2.18',
14173             'Config' => '5.025012',
14174             'DynaLoader' => '1.42',
14175             'Module::CoreList' => '5.20170420',
14176             'Module::CoreList::TieHashDelta'=> '5.20170420',
14177             'Module::CoreList::Utils'=> '5.20170420',
14178             'Safe' => '2.40',
14179             'XSLoader' => '0.27',
14180             'base' => '2.25',
14181             'threads::shared' => '1.56',
14182             },
14183             removed => {
14184             }
14185             },
14186             5.026000 => {
14187             delta_from => 5.025012,
14188             changed => {
14189             'B::Op_private' => '5.026000',
14190             'Config' => '5.026',
14191             'Module::CoreList' => '5.20170530',
14192             'Module::CoreList::TieHashDelta'=> '5.20170530',
14193             'Module::CoreList::Utils'=> '5.20170530',
14194             },
14195             removed => {
14196             }
14197             },
14198             5.027000 => {
14199             delta_from => 5.026000,
14200             changed => {
14201             'Attribute::Handlers' => '1.00',
14202             'B::Concise' => '1.000',
14203             'B::Deparse' => '1.41',
14204             'B::Op_private' => '5.027000',
14205             'Config' => '5.027',
14206             'Module::CoreList' => '5.20170531',
14207             'Module::CoreList::TieHashDelta'=> '5.20170531',
14208             'Module::CoreList::Utils'=> '5.20170531',
14209             'O' => '1.02',
14210             'attributes' => '0.3',
14211             'feature' => '1.48',
14212             },
14213             removed => {
14214             }
14215             },
14216             5.027001 => {
14217             delta_from => 5.027,
14218             changed => {
14219             'App::Prove' => '3.39',
14220             'App::Prove::State' => '3.39',
14221             'App::Prove::State::Result'=> '3.39',
14222             'App::Prove::State::Result::Test'=> '3.39',
14223             'Archive::Tar' => '2.26',
14224             'Archive::Tar::Constant'=> '2.26',
14225             'Archive::Tar::File' => '2.26',
14226             'B::Op_private' => '5.027001',
14227             'B::Terse' => '1.08',
14228             'Config' => '5.027001',
14229             'Devel::PPPort' => '3.36',
14230             'DirHandle' => '1.05',
14231             'ExtUtils::Command' => '7.30',
14232             'ExtUtils::Command::MM' => '7.30',
14233             'ExtUtils::Install' => '2.14',
14234             'ExtUtils::Installed' => '2.14',
14235             'ExtUtils::Liblist' => '7.30',
14236             'ExtUtils::Liblist::Kid'=> '7.30',
14237             'ExtUtils::MM' => '7.30',
14238             'ExtUtils::MM_AIX' => '7.30',
14239             'ExtUtils::MM_Any' => '7.30',
14240             'ExtUtils::MM_BeOS' => '7.30',
14241             'ExtUtils::MM_Cygwin' => '7.30',
14242             'ExtUtils::MM_DOS' => '7.30',
14243             'ExtUtils::MM_Darwin' => '7.30',
14244             'ExtUtils::MM_MacOS' => '7.30',
14245             'ExtUtils::MM_NW5' => '7.30',
14246             'ExtUtils::MM_OS2' => '7.30',
14247             'ExtUtils::MM_QNX' => '7.30',
14248             'ExtUtils::MM_UWIN' => '7.30',
14249             'ExtUtils::MM_Unix' => '7.30',
14250             'ExtUtils::MM_VMS' => '7.30',
14251             'ExtUtils::MM_VOS' => '7.30',
14252             'ExtUtils::MM_Win32' => '7.30',
14253             'ExtUtils::MM_Win95' => '7.30',
14254             'ExtUtils::MY' => '7.30',
14255             'ExtUtils::MakeMaker' => '7.30',
14256             'ExtUtils::MakeMaker::Config'=> '7.30',
14257             'ExtUtils::MakeMaker::Locale'=> '7.30',
14258             'ExtUtils::MakeMaker::version'=> '7.30',
14259             'ExtUtils::MakeMaker::version::regex'=> '7.30',
14260             'ExtUtils::Mkbootstrap' => '7.30',
14261             'ExtUtils::Mksymlists' => '7.30',
14262             'ExtUtils::Packlist' => '2.14',
14263             'ExtUtils::testlib' => '7.30',
14264             'File::Path' => '2.14',
14265             'Filter::Util::Call' => '1.57',
14266             'GDBM_File' => '1.16',
14267             'Getopt::Long' => '2.5',
14268             'IO::Socket::IP' => '0.39',
14269             'IPC::Cmd' => '0.98',
14270             'JSON::PP' => '2.94',
14271             'JSON::PP::Boolean' => '2.94',
14272             'Locale::Codes' => '3.52',
14273             'Locale::Codes::Constants'=> '3.52',
14274             'Locale::Codes::Country'=> '3.52',
14275             'Locale::Codes::Country_Codes'=> '3.52',
14276             'Locale::Codes::Country_Retired'=> '3.52',
14277             'Locale::Codes::Currency'=> '3.52',
14278             'Locale::Codes::Currency_Codes'=> '3.52',
14279             'Locale::Codes::Currency_Retired'=> '3.52',
14280             'Locale::Codes::LangExt'=> '3.52',
14281             'Locale::Codes::LangExt_Codes'=> '3.52',
14282             'Locale::Codes::LangExt_Retired'=> '3.52',
14283             'Locale::Codes::LangFam'=> '3.52',
14284             'Locale::Codes::LangFam_Codes'=> '3.52',
14285             'Locale::Codes::LangFam_Retired'=> '3.52',
14286             'Locale::Codes::LangVar'=> '3.52',
14287             'Locale::Codes::LangVar_Codes'=> '3.52',
14288             'Locale::Codes::LangVar_Retired'=> '3.52',
14289             'Locale::Codes::Language'=> '3.52',
14290             'Locale::Codes::Language_Codes'=> '3.52',
14291             'Locale::Codes::Language_Retired'=> '3.52',
14292             'Locale::Codes::Script' => '3.52',
14293             'Locale::Codes::Script_Codes'=> '3.52',
14294             'Locale::Codes::Script_Retired'=> '3.52',
14295             'Locale::Country' => '3.52',
14296             'Locale::Currency' => '3.52',
14297             'Locale::Language' => '3.52',
14298             'Locale::Script' => '3.52',
14299             'Module::CoreList' => '5.20170621',
14300             'Module::CoreList::TieHashDelta'=> '5.20170621',
14301             'Module::CoreList::Utils'=> '5.20170621',
14302             'PerlIO::scalar' => '0.27',
14303             'PerlIO::via' => '0.17',
14304             'Storable' => '2.63',
14305             'TAP::Base' => '3.39',
14306             'TAP::Formatter::Base' => '3.39',
14307             'TAP::Formatter::Color' => '3.39',
14308             'TAP::Formatter::Console'=> '3.39',
14309             'TAP::Formatter::Console::ParallelSession'=> '3.39',
14310             'TAP::Formatter::Console::Session'=> '3.39',
14311             'TAP::Formatter::File' => '3.39',
14312             'TAP::Formatter::File::Session'=> '3.39',
14313             'TAP::Formatter::Session'=> '3.39',
14314             'TAP::Harness' => '3.39',
14315             'TAP::Harness::Env' => '3.39',
14316             'TAP::Object' => '3.39',
14317             'TAP::Parser' => '3.39',
14318             'TAP::Parser::Aggregator'=> '3.39',
14319             'TAP::Parser::Grammar' => '3.39',
14320             'TAP::Parser::Iterator' => '3.39',
14321             'TAP::Parser::Iterator::Array'=> '3.39',
14322             'TAP::Parser::Iterator::Process'=> '3.39',
14323             'TAP::Parser::Iterator::Stream'=> '3.39',
14324             'TAP::Parser::IteratorFactory'=> '3.39',
14325             'TAP::Parser::Multiplexer'=> '3.39',
14326             'TAP::Parser::Result' => '3.39',
14327             'TAP::Parser::Result::Bailout'=> '3.39',
14328             'TAP::Parser::Result::Comment'=> '3.39',
14329             'TAP::Parser::Result::Plan'=> '3.39',
14330             'TAP::Parser::Result::Pragma'=> '3.39',
14331             'TAP::Parser::Result::Test'=> '3.39',
14332             'TAP::Parser::Result::Unknown'=> '3.39',
14333             'TAP::Parser::Result::Version'=> '3.39',
14334             'TAP::Parser::Result::YAML'=> '3.39',
14335             'TAP::Parser::ResultFactory'=> '3.39',
14336             'TAP::Parser::Scheduler'=> '3.39',
14337             'TAP::Parser::Scheduler::Job'=> '3.39',
14338             'TAP::Parser::Scheduler::Spinner'=> '3.39',
14339             'TAP::Parser::Source' => '3.39',
14340             'TAP::Parser::SourceHandler'=> '3.39',
14341             'TAP::Parser::SourceHandler::Executable'=> '3.39',
14342             'TAP::Parser::SourceHandler::File'=> '3.39',
14343             'TAP::Parser::SourceHandler::Handle'=> '3.39',
14344             'TAP::Parser::SourceHandler::Perl'=> '3.39',
14345             'TAP::Parser::SourceHandler::RawTAP'=> '3.39',
14346             'TAP::Parser::YAMLish::Reader'=> '3.39',
14347             'TAP::Parser::YAMLish::Writer'=> '3.39',
14348             'Test::Harness' => '3.39',
14349             'XS::APItest' => '0.89',
14350             '_charnames' => '1.45',
14351             'charnames' => '1.45',
14352             'if' => '0.0607',
14353             'mro' => '1.21',
14354             'threads' => '2.16',
14355             'threads::shared' => '1.57',
14356             'version' => '0.9918',
14357             'version::regex' => '0.9918',
14358             },
14359             removed => {
14360             }
14361             },
14362             5.022004 => {
14363             delta_from => 5.022003,
14364             changed => {
14365             'B::Op_private' => '5.022004',
14366             'Config' => '5.022004',
14367             'Module::CoreList' => '5.20170715_22',
14368             'Module::CoreList::TieHashDelta'=> '5.20170715_22',
14369             'Module::CoreList::Utils'=> '5.20170715_22',
14370             'base' => '2.22_01',
14371             },
14372             removed => {
14373             }
14374             },
14375             5.024002 => {
14376             delta_from => 5.024001,
14377             changed => {
14378             'B::Op_private' => '5.024002',
14379             'Config' => '5.024002',
14380             'Module::CoreList' => '5.20170715_24',
14381             'Module::CoreList::TieHashDelta'=> '5.20170715_24',
14382             'Module::CoreList::Utils'=> '5.20170715_24',
14383             'base' => '2.23_01',
14384             },
14385             removed => {
14386             }
14387             },
14388             5.027002 => {
14389             delta_from => 5.027001,
14390             changed => {
14391             'B::Op_private' => '5.027002',
14392             'Carp' => '1.43',
14393             'Carp::Heavy' => '1.43',
14394             'Config' => '5.027002',
14395             'Cwd' => '3.68',
14396             'Encode' => '2.92',
14397             'Encode::Alias' => '2.23',
14398             'Encode::CN::HZ' => '2.09',
14399             'Encode::Encoding' => '2.08',
14400             'Encode::GSM0338' => '2.07',
14401             'Encode::Guess' => '2.07',
14402             'Encode::JP::JIS7' => '2.07',
14403             'Encode::KR::2022_KR' => '2.04',
14404             'Encode::MIME::Header' => '2.27',
14405             'Encode::MIME::Header::ISO_2022_JP'=> '1.09',
14406             'Encode::Unicode' => '2.16',
14407             'Encode::Unicode::UTF7' => '2.10',
14408             'ExtUtils::CBuilder' => '0.280228',
14409             'ExtUtils::CBuilder::Base'=> '0.280228',
14410             'ExtUtils::CBuilder::Platform::Unix'=> '0.280228',
14411             'ExtUtils::CBuilder::Platform::VMS'=> '0.280228',
14412             'ExtUtils::CBuilder::Platform::Windows'=> '0.280228',
14413             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228',
14414             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228',
14415             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228',
14416             'ExtUtils::CBuilder::Platform::aix'=> '0.280228',
14417             'ExtUtils::CBuilder::Platform::android'=> '0.280228',
14418             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228',
14419             'ExtUtils::CBuilder::Platform::darwin'=> '0.280228',
14420             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228',
14421             'ExtUtils::CBuilder::Platform::os2'=> '0.280228',
14422             'File::Glob' => '1.29',
14423             'File::Spec' => '3.68',
14424             'File::Spec::AmigaOS' => '3.68',
14425             'File::Spec::Cygwin' => '3.68',
14426             'File::Spec::Epoc' => '3.68',
14427             'File::Spec::Functions' => '3.68',
14428             'File::Spec::Mac' => '3.68',
14429             'File::Spec::OS2' => '3.68',
14430             'File::Spec::Unix' => '3.68',
14431             'File::Spec::VMS' => '3.68',
14432             'File::Spec::Win32' => '3.68',
14433             'List::Util' => '1.48',
14434             'List::Util::XS' => '1.48',
14435             'Math::BigRat' => '0.2613',
14436             'Module::CoreList' => '5.20170720',
14437             'Module::CoreList::TieHashDelta'=> '5.20170720',
14438             'Module::CoreList::Utils'=> '5.20170720',
14439             'Opcode' => '1.40',
14440             'POSIX' => '1.77',
14441             'PerlIO::scalar' => '0.29',
14442             'Scalar::Util' => '1.48',
14443             'Sub::Util' => '1.48',
14444             'Time::HiRes' => '1.9743',
14445             'Time::Piece' => '1.3201',
14446             'Time::Seconds' => '1.3201',
14447             'Unicode' => '10.0.0',
14448             'XS::APItest' => '0.90',
14449             'arybase' => '0.13',
14450             'encoding' => '2.20',
14451             'feature' => '1.49',
14452             're' => '0.35',
14453             },
14454             removed => {
14455             }
14456             },
14457             5.027003 => {
14458             delta_from => 5.027002,
14459             changed => {
14460             'B' => '1.69',
14461             'B::Concise' => '1.001',
14462             'B::Debug' => '1.25',
14463             'B::Deparse' => '1.42',
14464             'B::Op_private' => '5.027003',
14465             'Config' => '5.027003',
14466             'Data::Dumper' => '2.167_02',
14467             'Devel::Peek' => '1.27',
14468             'ExtUtils::Constant' => '0.24',
14469             'ExtUtils::Constant::Base'=> '0.06',
14470             'ExtUtils::Constant::ProxySubs'=> '0.09',
14471             'ExtUtils::Constant::Utils'=> '0.04',
14472             'ExtUtils::ParseXS' => '3.35',
14473             'ExtUtils::ParseXS::Constants'=> '3.35',
14474             'ExtUtils::ParseXS::CountLines'=> '3.35',
14475             'ExtUtils::ParseXS::Eval'=> '3.35',
14476             'ExtUtils::ParseXS::Utilities'=> '3.35',
14477             'ExtUtils::Typemaps' => '3.35',
14478             'ExtUtils::Typemaps::Cmd'=> '3.35',
14479             'ExtUtils::Typemaps::InputMap'=> '3.35',
14480             'ExtUtils::Typemaps::OutputMap'=> '3.35',
14481             'ExtUtils::Typemaps::Type'=> '3.35',
14482             'Filter::Simple' => '0.94',
14483             'Module::CoreList' => '5.20170821',
14484             'Module::CoreList::TieHashDelta'=> '5.20170821',
14485             'Module::CoreList::Utils'=> '5.20170821',
14486             'SelfLoader' => '1.24',
14487             'Storable' => '2.64',
14488             'XS::APItest' => '0.91',
14489             'base' => '2.26',
14490             'threads' => '2.17',
14491             'utf8' => '1.20',
14492             },
14493             removed => {
14494             }
14495             },
14496             5.027004 => {
14497             delta_from => 5.027003,
14498             changed => {
14499             'B::Op_private' => '5.027004',
14500             'Config' => '5.027004',
14501             'File::Glob' => '1.30',
14502             'I18N::Langinfo' => '0.14',
14503             'Module::CoreList' => '5.20170920',
14504             'Module::CoreList::TieHashDelta'=> '5.20170920',
14505             'Module::CoreList::Utils'=> '5.20170920',
14506             'Term::ReadLine' => '1.17',
14507             'VMS::Stdio' => '2.42',
14508             'XS::APItest' => '0.92',
14509             'attributes' => '0.31',
14510             'sort' => '2.03',
14511             'threads' => '2.18',
14512             },
14513             removed => {
14514             }
14515             },
14516             5.024003 => {
14517             delta_from => 5.024002,
14518             changed => {
14519             'B::Op_private' => '5.024003',
14520             'Config' => '5.024003',
14521             'Module::CoreList' => '5.20170922_24',
14522             'Module::CoreList::TieHashDelta'=> '5.20170922_24',
14523             'Module::CoreList::Utils'=> '5.20170922_24',
14524             'POSIX' => '1.65_01',
14525             'Time::HiRes' => '1.9741',
14526             },
14527             removed => {
14528             }
14529             },
14530             5.026001 => {
14531             delta_from => 5.026000,
14532             changed => {
14533             'B::Op_private' => '5.026001',
14534             'Config' => '5.026001',
14535             'Module::CoreList' => '5.20170922_26',
14536             'Module::CoreList::TieHashDelta'=> '5.20170922_26',
14537             'Module::CoreList::Utils'=> '5.20170922_26',
14538             '_charnames' => '1.45',
14539             'base' => '2.26',
14540             'charnames' => '1.45',
14541             },
14542             removed => {
14543             }
14544             },
14545             5.027005 => {
14546             delta_from => 5.027004,
14547             changed => {
14548             'B' => '1.70',
14549             'B::Concise' => '1.002',
14550             'B::Deparse' => '1.43',
14551             'B::Op_private' => '5.027005',
14552             'B::Xref' => '1.07',
14553             'Config' => '5.027005',
14554             'Config::Perl::V' => '0.29',
14555             'Digest::SHA' => '5.98',
14556             'Encode' => '2.93',
14557             'Encode::CN::HZ' => '2.10',
14558             'Encode::JP::JIS7' => '2.08',
14559             'Encode::MIME::Header' => '2.28',
14560             'Encode::MIME::Name' => '1.03',
14561             'File::Fetch' => '0.54',
14562             'File::Path' => '2.15',
14563             'List::Util' => '1.49',
14564             'List::Util::XS' => '1.49',
14565             'Locale::Codes' => '3.54',
14566             'Locale::Codes::Constants'=> '3.54',
14567             'Locale::Codes::Country'=> '3.54',
14568             'Locale::Codes::Country_Codes'=> '3.54',
14569             'Locale::Codes::Country_Retired'=> '3.54',
14570             'Locale::Codes::Currency'=> '3.54',
14571             'Locale::Codes::Currency_Codes'=> '3.54',
14572             'Locale::Codes::Currency_Retired'=> '3.54',
14573             'Locale::Codes::LangExt'=> '3.54',
14574             'Locale::Codes::LangExt_Codes'=> '3.54',
14575             'Locale::Codes::LangExt_Retired'=> '3.54',
14576             'Locale::Codes::LangFam'=> '3.54',
14577             'Locale::Codes::LangFam_Codes'=> '3.54',
14578             'Locale::Codes::LangFam_Retired'=> '3.54',
14579             'Locale::Codes::LangVar'=> '3.54',
14580             'Locale::Codes::LangVar_Codes'=> '3.54',
14581             'Locale::Codes::LangVar_Retired'=> '3.54',
14582             'Locale::Codes::Language'=> '3.54',
14583             'Locale::Codes::Language_Codes'=> '3.54',
14584             'Locale::Codes::Language_Retired'=> '3.54',
14585             'Locale::Codes::Script' => '3.54',
14586             'Locale::Codes::Script_Codes'=> '3.54',
14587             'Locale::Codes::Script_Retired'=> '3.54',
14588             'Locale::Country' => '3.54',
14589             'Locale::Currency' => '3.54',
14590             'Locale::Language' => '3.54',
14591             'Locale::Script' => '3.54',
14592             'Math::BigFloat' => '1.999811',
14593             'Math::BigInt' => '1.999811',
14594             'Math::BigInt::Calc' => '1.999811',
14595             'Math::BigInt::CalcEmu' => '1.999811',
14596             'Math::BigInt::FastCalc'=> '0.5006',
14597             'Math::BigInt::Lib' => '1.999811',
14598             'Module::CoreList' => '5.20171020',
14599             'Module::CoreList::TieHashDelta'=> '5.20171020',
14600             'Module::CoreList::Utils'=> '5.20171020',
14601             'NEXT' => '0.67_01',
14602             'POSIX' => '1.78',
14603             'Pod::Perldoc' => '3.2801',
14604             'Scalar::Util' => '1.49',
14605             'Sub::Util' => '1.49',
14606             'Sys::Hostname' => '1.21',
14607             'Test2' => '1.302103',
14608             'Test2::API' => '1.302103',
14609             'Test2::API::Breakage' => '1.302103',
14610             'Test2::API::Context' => '1.302103',
14611             'Test2::API::Instance' => '1.302103',
14612             'Test2::API::Stack' => '1.302103',
14613             'Test2::Event' => '1.302103',
14614             'Test2::Event::Bail' => '1.302103',
14615             'Test2::Event::Diag' => '1.302103',
14616             'Test2::Event::Encoding'=> '1.302103',
14617             'Test2::Event::Exception'=> '1.302103',
14618             'Test2::Event::Fail' => '1.302103',
14619             'Test2::Event::Generic' => '1.302103',
14620             'Test2::Event::Note' => '1.302103',
14621             'Test2::Event::Ok' => '1.302103',
14622             'Test2::Event::Pass' => '1.302103',
14623             'Test2::Event::Plan' => '1.302103',
14624             'Test2::Event::Skip' => '1.302103',
14625             'Test2::Event::Subtest' => '1.302103',
14626             'Test2::Event::TAP::Version'=> '1.302103',
14627             'Test2::Event::Waiting' => '1.302103',
14628             'Test2::EventFacet' => '1.302103',
14629             'Test2::EventFacet::About'=> '1.302103',
14630             'Test2::EventFacet::Amnesty'=> '1.302103',
14631             'Test2::EventFacet::Assert'=> '1.302103',
14632             'Test2::EventFacet::Control'=> '1.302103',
14633             'Test2::EventFacet::Error'=> '1.302103',
14634             'Test2::EventFacet::Info'=> '1.302103',
14635             'Test2::EventFacet::Meta'=> '1.302103',
14636             'Test2::EventFacet::Parent'=> '1.302103',
14637             'Test2::EventFacet::Plan'=> '1.302103',
14638             'Test2::EventFacet::Trace'=> '1.302103',
14639             'Test2::Formatter' => '1.302103',
14640             'Test2::Formatter::TAP' => '1.302103',
14641             'Test2::Hub' => '1.302103',
14642             'Test2::Hub::Interceptor'=> '1.302103',
14643             'Test2::Hub::Interceptor::Terminator'=> '1.302103',
14644             'Test2::Hub::Subtest' => '1.302103',
14645             'Test2::IPC' => '1.302103',
14646             'Test2::IPC::Driver' => '1.302103',
14647             'Test2::IPC::Driver::Files'=> '1.302103',
14648             'Test2::Tools::Tiny' => '1.302103',
14649             'Test2::Util' => '1.302103',
14650             'Test2::Util::ExternalMeta'=> '1.302103',
14651             'Test2::Util::Facets2Legacy'=> '1.302103',
14652             'Test2::Util::HashBase' => '0.005',
14653             'Test2::Util::Trace' => '1.302103',
14654             'Test::Builder' => '1.302103',
14655             'Test::Builder::Formatter'=> '1.302103',
14656             'Test::Builder::IO::Scalar'=> '2.114',
14657             'Test::Builder::Module' => '1.302103',
14658             'Test::Builder::Tester' => '1.302103',
14659             'Test::Builder::Tester::Color'=> '1.302103',
14660             'Test::Builder::TodoDiag'=> '1.302103',
14661             'Test::More' => '1.302103',
14662             'Test::Simple' => '1.302103',
14663             'Test::Tester' => '1.302103',
14664             'Test::Tester::Capture' => '1.302103',
14665             'Test::Tester::CaptureRunner'=> '1.302103',
14666             'Test::Tester::Delegate'=> '1.302103',
14667             'Test::use::ok' => '1.302103',
14668             'Time::HiRes' => '1.9746',
14669             'Time::Piece' => '1.3202',
14670             'Time::Seconds' => '1.3202',
14671             'arybase' => '0.14',
14672             'encoding' => '2.21',
14673             'ok' => '1.302103',
14674             },
14675             removed => {
14676             'Test2::Event::Info' => 1,
14677             }
14678             },
14679             5.027006 => {
14680             delta_from => 5.027005,
14681             changed => {
14682             'Attribute::Handlers' => '1.01',
14683             'B' => '1.72',
14684             'B::Concise' => '1.003',
14685             'B::Deparse' => '1.45',
14686             'B::Op_private' => '5.027006',
14687             'Carp' => '1.44',
14688             'Carp::Heavy' => '1.44',
14689             'Compress::Raw::Zlib' => '2.075',
14690             'Config' => '5.027006',
14691             'Config::Extensions' => '0.02',
14692             'Cwd' => '3.70',
14693             'DynaLoader' => '1.44',
14694             'ExtUtils::CBuilder' => '0.280229',
14695             'ExtUtils::CBuilder::Platform::Unix'=> '0.280229',
14696             'ExtUtils::CBuilder::Platform::VMS'=> '0.280229',
14697             'ExtUtils::CBuilder::Platform::Windows'=> '0.280229',
14698             'ExtUtils::CBuilder::Platform::aix'=> '0.280229',
14699             'ExtUtils::CBuilder::Platform::android'=> '0.280229',
14700             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280229',
14701             'ExtUtils::CBuilder::Platform::darwin'=> '0.280229',
14702             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280229',
14703             'ExtUtils::CBuilder::Platform::os2'=> '0.280229',
14704             'ExtUtils::Embed' => '1.35',
14705             'ExtUtils::Miniperl' => '1.07',
14706             'ExtUtils::ParseXS' => '3.36',
14707             'ExtUtils::ParseXS::Constants'=> '3.36',
14708             'ExtUtils::ParseXS::CountLines'=> '3.36',
14709             'ExtUtils::ParseXS::Eval'=> '3.36',
14710             'ExtUtils::ParseXS::Utilities'=> '3.36',
14711             'ExtUtils::Typemaps' => '3.36',
14712             'ExtUtils::Typemaps::Cmd'=> '3.36',
14713             'ExtUtils::Typemaps::InputMap'=> '3.36',
14714             'ExtUtils::Typemaps::OutputMap'=> '3.36',
14715             'ExtUtils::Typemaps::Type'=> '3.36',
14716             'ExtUtils::XSSymSet' => '1.4',
14717             'File::Copy' => '2.33',
14718             'File::Spec' => '3.69',
14719             'File::Spec::AmigaOS' => '3.69',
14720             'File::Spec::Cygwin' => '3.69',
14721             'File::Spec::Epoc' => '3.69',
14722             'File::Spec::Functions' => '3.69',
14723             'File::Spec::Mac' => '3.69',
14724             'File::Spec::OS2' => '3.69',
14725             'File::Spec::Unix' => '3.69',
14726             'File::Spec::VMS' => '3.69',
14727             'File::Spec::Win32' => '3.69',
14728             'File::stat' => '1.08',
14729             'FileCache' => '1.10',
14730             'Filter::Simple' => '0.95',
14731             'Hash::Util::FieldHash' => '1.20',
14732             'I18N::LangTags' => '0.43',
14733             'I18N::LangTags::Detect'=> '1.07',
14734             'I18N::LangTags::List' => '0.40',
14735             'I18N::Langinfo' => '0.15',
14736             'IO::Handle' => '1.37',
14737             'IO::Select' => '1.23',
14738             'Locale::Maketext' => '1.29',
14739             'Module::CoreList' => '5.20171120',
14740             'Module::CoreList::TieHashDelta'=> '5.20171120',
14741             'Module::CoreList::Utils'=> '5.20171120',
14742             'Net::Cmd' => '3.11',
14743             'Net::Config' => '3.11',
14744             'Net::Domain' => '3.11',
14745             'Net::FTP' => '3.11',
14746             'Net::FTP::A' => '3.11',
14747             'Net::FTP::E' => '3.11',
14748             'Net::FTP::I' => '3.11',
14749             'Net::FTP::L' => '3.11',
14750             'Net::FTP::dataconn' => '3.11',
14751             'Net::NNTP' => '3.11',
14752             'Net::Netrc' => '3.11',
14753             'Net::POP3' => '3.11',
14754             'Net::Ping' => '2.62',
14755             'Net::SMTP' => '3.11',
14756             'Net::Time' => '3.11',
14757             'Net::hostent' => '1.02',
14758             'Net::netent' => '1.01',
14759             'Net::protoent' => '1.01',
14760             'Net::servent' => '1.02',
14761             'O' => '1.03',
14762             'ODBM_File' => '1.15',
14763             'Opcode' => '1.41',
14764             'POSIX' => '1.80',
14765             'Pod::Html' => '1.2203',
14766             'SelfLoader' => '1.25',
14767             'Socket' => '2.020_04',
14768             'Storable' => '2.65',
14769             'Test' => '1.31',
14770             'Test2' => '1.302111',
14771             'Test2::API' => '1.302111',
14772             'Test2::API::Breakage' => '1.302111',
14773             'Test2::API::Context' => '1.302111',
14774             'Test2::API::Instance' => '1.302111',
14775             'Test2::API::Stack' => '1.302111',
14776             'Test2::Event' => '1.302111',
14777             'Test2::Event::Bail' => '1.302111',
14778             'Test2::Event::Diag' => '1.302111',
14779             'Test2::Event::Encoding'=> '1.302111',
14780             'Test2::Event::Exception'=> '1.302111',
14781             'Test2::Event::Fail' => '1.302111',
14782             'Test2::Event::Generic' => '1.302111',
14783             'Test2::Event::Note' => '1.302111',
14784             'Test2::Event::Ok' => '1.302111',
14785             'Test2::Event::Pass' => '1.302111',
14786             'Test2::Event::Plan' => '1.302111',
14787             'Test2::Event::Skip' => '1.302111',
14788             'Test2::Event::Subtest' => '1.302111',
14789             'Test2::Event::TAP::Version'=> '1.302111',
14790             'Test2::Event::Waiting' => '1.302111',
14791             'Test2::EventFacet' => '1.302111',
14792             'Test2::EventFacet::About'=> '1.302111',
14793             'Test2::EventFacet::Amnesty'=> '1.302111',
14794             'Test2::EventFacet::Assert'=> '1.302111',
14795             'Test2::EventFacet::Control'=> '1.302111',
14796             'Test2::EventFacet::Error'=> '1.302111',
14797             'Test2::EventFacet::Info'=> '1.302111',
14798             'Test2::EventFacet::Meta'=> '1.302111',
14799             'Test2::EventFacet::Parent'=> '1.302111',
14800             'Test2::EventFacet::Plan'=> '1.302111',
14801             'Test2::EventFacet::Trace'=> '1.302111',
14802             'Test2::Formatter' => '1.302111',
14803             'Test2::Formatter::TAP' => '1.302111',
14804             'Test2::Hub' => '1.302111',
14805             'Test2::Hub::Interceptor'=> '1.302111',
14806             'Test2::Hub::Interceptor::Terminator'=> '1.302111',
14807             'Test2::Hub::Subtest' => '1.302111',
14808             'Test2::IPC' => '1.302111',
14809             'Test2::IPC::Driver' => '1.302111',
14810             'Test2::IPC::Driver::Files'=> '1.302111',
14811             'Test2::Tools::Tiny' => '1.302111',
14812             'Test2::Util' => '1.302111',
14813             'Test2::Util::ExternalMeta'=> '1.302111',
14814             'Test2::Util::Facets2Legacy'=> '1.302111',
14815             'Test2::Util::HashBase' => '1.302111',
14816             'Test2::Util::Trace' => '1.302111',
14817             'Test::Builder' => '1.302111',
14818             'Test::Builder::Formatter'=> '1.302111',
14819             'Test::Builder::Module' => '1.302111',
14820             'Test::Builder::Tester' => '1.302111',
14821             'Test::Builder::Tester::Color'=> '1.302111',
14822             'Test::Builder::TodoDiag'=> '1.302111',
14823             'Test::More' => '1.302111',
14824             'Test::Simple' => '1.302111',
14825             'Test::Tester' => '1.302111',
14826             'Test::Tester::Capture' => '1.302111',
14827             'Test::Tester::CaptureRunner'=> '1.302111',
14828             'Test::Tester::Delegate'=> '1.302111',
14829             'Test::use::ok' => '1.302111',
14830             'Tie::Array' => '1.07',
14831             'Tie::StdHandle' => '4.5',
14832             'Time::HiRes' => '1.9747',
14833             'Time::gmtime' => '1.04',
14834             'Time::localtime' => '1.03',
14835             'Unicode::Collate' => '1.23',
14836             'Unicode::Collate::CJK::Big5'=> '1.23',
14837             'Unicode::Collate::CJK::GB2312'=> '1.23',
14838             'Unicode::Collate::CJK::JISX0208'=> '1.23',
14839             'Unicode::Collate::CJK::Korean'=> '1.23',
14840             'Unicode::Collate::CJK::Pinyin'=> '1.23',
14841             'Unicode::Collate::CJK::Stroke'=> '1.23',
14842             'Unicode::Collate::CJK::Zhuyin'=> '1.23',
14843             'Unicode::Collate::Locale'=> '1.23',
14844             'Unicode::Normalize' => '1.26',
14845             'User::grent' => '1.02',
14846             'User::pwent' => '1.01',
14847             'VMS::DCLsym' => '1.09',
14848             'VMS::Stdio' => '2.44',
14849             'XS::APItest' => '0.93',
14850             'XS::Typemap' => '0.16',
14851             'XSLoader' => '0.28',
14852             'attributes' => '0.32',
14853             'base' => '2.27',
14854             'blib' => '1.07',
14855             'experimental' => '0.017',
14856             'fields' => '2.24',
14857             'ok' => '1.302111',
14858             're' => '0.36',
14859             'sort' => '2.04',
14860             'threads' => '2.19',
14861             'warnings' => '1.38',
14862             },
14863             removed => {
14864             }
14865             },
14866             5.027007 => {
14867             delta_from => 5.027006,
14868             changed => {
14869             'App::Cpan' => '1.67',
14870             'B' => '1.73',
14871             'B::Debug' => '1.26',
14872             'B::Deparse' => '1.46',
14873             'B::Op_private' => '5.027007',
14874             'CPAN' => '2.20',
14875             'CPAN::Distribution' => '2.19',
14876             'CPAN::FTP' => '5.5011',
14877             'CPAN::FirstTime' => '5.5311',
14878             'CPAN::Shell' => '5.5007',
14879             'Carp' => '1.45',
14880             'Carp::Heavy' => '1.45',
14881             'Compress::Raw::Zlib' => '2.076',
14882             'Config' => '5.027007',
14883             'Cwd' => '3.71',
14884             'Data::Dumper' => '2.169',
14885             'Devel::PPPort' => '3.37',
14886             'Digest::SHA' => '6.00',
14887             'DynaLoader' => '1.45',
14888             'ExtUtils::CBuilder' => '0.280230',
14889             'ExtUtils::CBuilder::Base'=> '0.280230',
14890             'ExtUtils::CBuilder::Platform::Unix'=> '0.280230',
14891             'ExtUtils::CBuilder::Platform::VMS'=> '0.280230',
14892             'ExtUtils::CBuilder::Platform::Windows'=> '0.280230',
14893             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280230',
14894             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280230',
14895             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280230',
14896             'ExtUtils::CBuilder::Platform::aix'=> '0.280230',
14897             'ExtUtils::CBuilder::Platform::android'=> '0.280230',
14898             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280230',
14899             'ExtUtils::CBuilder::Platform::darwin'=> '0.280230',
14900             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280230',
14901             'ExtUtils::CBuilder::Platform::os2'=> '0.280230',
14902             'ExtUtils::Typemaps' => '3.37',
14903             'File::Fetch' => '0.56',
14904             'File::Spec' => '3.71',
14905             'File::Spec::AmigaOS' => '3.71',
14906             'File::Spec::Cygwin' => '3.71',
14907             'File::Spec::Epoc' => '3.71',
14908             'File::Spec::Functions' => '3.71',
14909             'File::Spec::Mac' => '3.71',
14910             'File::Spec::OS2' => '3.71',
14911             'File::Spec::Unix' => '3.71',
14912             'File::Spec::VMS' => '3.71',
14913             'File::Spec::Win32' => '3.71',
14914             'Filter::Util::Call' => '1.58',
14915             'GDBM_File' => '1.17',
14916             'JSON::PP' => '2.97000',
14917             'JSON::PP::Boolean' => '2.97000',
14918             'Locale::Codes' => '3.55',
14919             'Locale::Codes::Constants'=> '3.55',
14920             'Locale::Codes::Country'=> '3.55',
14921             'Locale::Codes::Country_Codes'=> '3.55',
14922             'Locale::Codes::Country_Retired'=> '3.55',
14923             'Locale::Codes::Currency'=> '3.55',
14924             'Locale::Codes::Currency_Codes'=> '3.55',
14925             'Locale::Codes::Currency_Retired'=> '3.55',
14926             'Locale::Codes::LangExt'=> '3.55',
14927             'Locale::Codes::LangExt_Codes'=> '3.55',
14928             'Locale::Codes::LangExt_Retired'=> '3.55',
14929             'Locale::Codes::LangFam'=> '3.55',
14930             'Locale::Codes::LangFam_Codes'=> '3.55',
14931             'Locale::Codes::LangFam_Retired'=> '3.55',
14932             'Locale::Codes::LangVar'=> '3.55',
14933             'Locale::Codes::LangVar_Codes'=> '3.55',
14934             'Locale::Codes::LangVar_Retired'=> '3.55',
14935             'Locale::Codes::Language'=> '3.55',
14936             'Locale::Codes::Language_Codes'=> '3.55',
14937             'Locale::Codes::Language_Retired'=> '3.55',
14938             'Locale::Codes::Script' => '3.55',
14939             'Locale::Codes::Script_Codes'=> '3.55',
14940             'Locale::Codes::Script_Retired'=> '3.55',
14941             'Locale::Country' => '3.55',
14942             'Locale::Currency' => '3.55',
14943             'Locale::Language' => '3.55',
14944             'Locale::Script' => '3.55',
14945             'Module::CoreList' => '5.20171220',
14946             'Module::CoreList::TieHashDelta'=> '5.20171220',
14947             'Module::CoreList::Utils'=> '5.20171220',
14948             'Opcode' => '1.42',
14949             'POSIX' => '1.81',
14950             'Pod::Functions' => '1.12',
14951             'Pod::Functions::Functions'=> '1.12',
14952             'Pod::Html' => '1.23',
14953             'Sys::Hostname' => '1.22',
14954             'Test2' => '1.302120',
14955             'Test2::API' => '1.302120',
14956             'Test2::API::Breakage' => '1.302120',
14957             'Test2::API::Context' => '1.302120',
14958             'Test2::API::Instance' => '1.302120',
14959             'Test2::API::Stack' => '1.302120',
14960             'Test2::Event' => '1.302120',
14961             'Test2::Event::Bail' => '1.302120',
14962             'Test2::Event::Diag' => '1.302120',
14963             'Test2::Event::Encoding'=> '1.302120',
14964             'Test2::Event::Exception'=> '1.302120',
14965             'Test2::Event::Fail' => '1.302120',
14966             'Test2::Event::Generic' => '1.302120',
14967             'Test2::Event::Note' => '1.302120',
14968             'Test2::Event::Ok' => '1.302120',
14969             'Test2::Event::Pass' => '1.302120',
14970             'Test2::Event::Plan' => '1.302120',
14971             'Test2::Event::Skip' => '1.302120',
14972             'Test2::Event::Subtest' => '1.302120',
14973             'Test2::Event::TAP::Version'=> '1.302120',
14974             'Test2::Event::Waiting' => '1.302120',
14975             'Test2::EventFacet' => '1.302120',
14976             'Test2::EventFacet::About'=> '1.302120',
14977             'Test2::EventFacet::Amnesty'=> '1.302120',
14978             'Test2::EventFacet::Assert'=> '1.302120',
14979             'Test2::EventFacet::Control'=> '1.302120',
14980             'Test2::EventFacet::Error'=> '1.302120',
14981             'Test2::EventFacet::Info'=> '1.302120',
14982             'Test2::EventFacet::Meta'=> '1.302120',
14983             'Test2::EventFacet::Parent'=> '1.302120',
14984             'Test2::EventFacet::Plan'=> '1.302120',
14985             'Test2::EventFacet::Trace'=> '1.302120',
14986             'Test2::Formatter' => '1.302120',
14987             'Test2::Formatter::TAP' => '1.302120',
14988             'Test2::Hub' => '1.302120',
14989             'Test2::Hub::Interceptor'=> '1.302120',
14990             'Test2::Hub::Interceptor::Terminator'=> '1.302120',
14991             'Test2::Hub::Subtest' => '1.302120',
14992             'Test2::IPC' => '1.302120',
14993             'Test2::IPC::Driver' => '1.302120',
14994             'Test2::IPC::Driver::Files'=> '1.302120',
14995             'Test2::Tools::Tiny' => '1.302120',
14996             'Test2::Util' => '1.302120',
14997             'Test2::Util::ExternalMeta'=> '1.302120',
14998             'Test2::Util::Facets2Legacy'=> '1.302120',
14999             'Test2::Util::HashBase' => '1.302120',
15000             'Test2::Util::Trace' => '1.302120',
15001             'Test::Builder' => '1.302120',
15002             'Test::Builder::Formatter'=> '1.302120',
15003             'Test::Builder::Module' => '1.302120',
15004             'Test::Builder::Tester' => '1.302120',
15005             'Test::Builder::Tester::Color'=> '1.302120',
15006             'Test::Builder::TodoDiag'=> '1.302120',
15007             'Test::More' => '1.302120',
15008             'Test::Simple' => '1.302120',
15009             'Test::Tester' => '1.302120',
15010             'Test::Tester::Capture' => '1.302120',
15011             'Test::Tester::CaptureRunner'=> '1.302120',
15012             'Test::Tester::Delegate'=> '1.302120',
15013             'Test::use::ok' => '1.302120',
15014             'Time::HiRes' => '1.9748',
15015             'Time::Piece' => '1.3203',
15016             'Time::Seconds' => '1.3203',
15017             'Unicode::Collate' => '1.25',
15018             'Unicode::Collate::CJK::Big5'=> '1.25',
15019             'Unicode::Collate::CJK::GB2312'=> '1.25',
15020             'Unicode::Collate::CJK::JISX0208'=> '1.25',
15021             'Unicode::Collate::CJK::Korean'=> '1.25',
15022             'Unicode::Collate::CJK::Pinyin'=> '1.25',
15023             'Unicode::Collate::CJK::Stroke'=> '1.25',
15024             'Unicode::Collate::CJK::Zhuyin'=> '1.25',
15025             'Unicode::Collate::Locale'=> '1.25',
15026             'Unicode::UCD' => '0.69',
15027             'XS::APItest' => '0.94',
15028             'XSLoader' => '0.29',
15029             'arybase' => '0.15',
15030             'autodie::exception' => '2.29001',
15031             'autodie::hints' => '2.29001',
15032             'experimental' => '0.019',
15033             'feature' => '1.50',
15034             'ok' => '1.302120',
15035             'overload' => '1.29',
15036             'threads' => '2.21',
15037             'threads::shared' => '1.58',
15038             'warnings' => '1.39',
15039             },
15040             removed => {
15041             }
15042             },
15043             5.027008 => {
15044             delta_from => 5.027007,
15045             changed => {
15046             'B' => '1.74',
15047             'B::Deparse' => '1.47',
15048             'B::Op_private' => '5.027008',
15049             'Config' => '5.027008',
15050             'Cwd' => '3.72',
15051             'Data::Dumper' => '2.170',
15052             'Devel::PPPort' => '3.38',
15053             'Digest::SHA' => '6.01',
15054             'Encode' => '2.94',
15055             'Encode::Alias' => '2.24',
15056             'ExtUtils::Miniperl' => '1.08',
15057             'File::Spec' => '3.72',
15058             'File::Spec::AmigaOS' => '3.72',
15059             'File::Spec::Cygwin' => '3.72',
15060             'File::Spec::Epoc' => '3.72',
15061             'File::Spec::Functions' => '3.72',
15062             'File::Spec::Mac' => '3.72',
15063             'File::Spec::OS2' => '3.72',
15064             'File::Spec::Unix' => '3.72',
15065             'File::Spec::VMS' => '3.72',
15066             'File::Spec::Win32' => '3.72',
15067             'JSON::PP' => '2.97001',
15068             'JSON::PP::Boolean' => '2.97001',
15069             'Module::CoreList' => '5.20180120',
15070             'Module::CoreList::TieHashDelta'=> '5.20180120',
15071             'Module::CoreList::Utils'=> '5.20180120',
15072             'Opcode' => '1.43',
15073             'Pod::Functions' => '1.13',
15074             'Pod::Functions::Functions'=> '1.13',
15075             'Pod::Html' => '1.24',
15076             'Pod::Man' => '4.10',
15077             'Pod::ParseLink' => '4.10',
15078             'Pod::Text' => '4.10',
15079             'Pod::Text::Color' => '4.10',
15080             'Pod::Text::Overstrike' => '4.10',
15081             'Pod::Text::Termcap' => '4.10',
15082             'Socket' => '2.027',
15083             'Time::HiRes' => '1.9752',
15084             'Unicode::UCD' => '0.70',
15085             'XS::APItest' => '0.95',
15086             'XSLoader' => '0.30',
15087             'autodie::exception' => '2.29002',
15088             'feature' => '1.51',
15089             'overload' => '1.30',
15090             'utf8' => '1.21',
15091             'warnings' => '1.40',
15092             },
15093             removed => {
15094             }
15095             },
15096             5.027009 => {
15097             delta_from => 5.027008,
15098             changed => {
15099             'B::Op_private' => '5.027009',
15100             'Carp' => '1.46',
15101             'Carp::Heavy' => '1.46',
15102             'Config' => '5.027009',
15103             'Cwd' => '3.74',
15104             'Devel::PPPort' => '3.39',
15105             'Encode' => '2.96',
15106             'Encode::Unicode' => '2.17',
15107             'Errno' => '1.29',
15108             'ExtUtils::Command' => '7.32',
15109             'ExtUtils::Command::MM' => '7.32',
15110             'ExtUtils::Liblist' => '7.32',
15111             'ExtUtils::Liblist::Kid'=> '7.32',
15112             'ExtUtils::MM' => '7.32',
15113             'ExtUtils::MM_AIX' => '7.32',
15114             'ExtUtils::MM_Any' => '7.32',
15115             'ExtUtils::MM_BeOS' => '7.32',
15116             'ExtUtils::MM_Cygwin' => '7.32',
15117             'ExtUtils::MM_DOS' => '7.32',
15118             'ExtUtils::MM_Darwin' => '7.32',
15119             'ExtUtils::MM_MacOS' => '7.32',
15120             'ExtUtils::MM_NW5' => '7.32',
15121             'ExtUtils::MM_OS2' => '7.32',
15122             'ExtUtils::MM_QNX' => '7.32',
15123             'ExtUtils::MM_UWIN' => '7.32',
15124             'ExtUtils::MM_Unix' => '7.32',
15125             'ExtUtils::MM_VMS' => '7.32',
15126             'ExtUtils::MM_VOS' => '7.32',
15127             'ExtUtils::MM_Win32' => '7.32',
15128             'ExtUtils::MM_Win95' => '7.32',
15129             'ExtUtils::MY' => '7.32',
15130             'ExtUtils::MakeMaker' => '7.32',
15131             'ExtUtils::MakeMaker::Config'=> '7.32',
15132             'ExtUtils::MakeMaker::Locale'=> '7.32',
15133             'ExtUtils::MakeMaker::version'=> '7.32',
15134             'ExtUtils::MakeMaker::version::regex'=> '7.32',
15135             'ExtUtils::Mkbootstrap' => '7.32',
15136             'ExtUtils::Mksymlists' => '7.32',
15137             'ExtUtils::ParseXS' => '3.38',
15138             'ExtUtils::ParseXS::Constants'=> '3.38',
15139             'ExtUtils::ParseXS::CountLines'=> '3.38',
15140             'ExtUtils::ParseXS::Eval'=> '3.38',
15141             'ExtUtils::ParseXS::Utilities'=> '3.38',
15142             'ExtUtils::Typemaps' => '3.38',
15143             'ExtUtils::Typemaps::Cmd'=> '3.38',
15144             'ExtUtils::Typemaps::InputMap'=> '3.38',
15145             'ExtUtils::Typemaps::OutputMap'=> '3.38',
15146             'ExtUtils::Typemaps::Type'=> '3.38',
15147             'ExtUtils::testlib' => '7.32',
15148             'File::Spec' => '3.74',
15149             'File::Spec::AmigaOS' => '3.74',
15150             'File::Spec::Cygwin' => '3.74',
15151             'File::Spec::Epoc' => '3.74',
15152             'File::Spec::Functions' => '3.74',
15153             'File::Spec::Mac' => '3.74',
15154             'File::Spec::OS2' => '3.74',
15155             'File::Spec::Unix' => '3.74',
15156             'File::Spec::VMS' => '3.74',
15157             'File::Spec::Win32' => '3.74',
15158             'IPC::Cmd' => '1.00',
15159             'Math::BigFloat::Trace' => '0.49',
15160             'Math::BigInt::Trace' => '0.49',
15161             'Module::CoreList' => '5.20180220',
15162             'Module::CoreList::Utils'=> '5.20180220',
15163             'POSIX' => '1.82',
15164             'PerlIO::encoding' => '0.26',
15165             'Storable' => '3.06',
15166             'Storable::Limit' => undef,
15167             'Test2' => '1.302122',
15168             'Test2::API' => '1.302122',
15169             'Test2::API::Breakage' => '1.302122',
15170             'Test2::API::Context' => '1.302122',
15171             'Test2::API::Instance' => '1.302122',
15172             'Test2::API::Stack' => '1.302122',
15173             'Test2::Event' => '1.302122',
15174             'Test2::Event::Bail' => '1.302122',
15175             'Test2::Event::Diag' => '1.302122',
15176             'Test2::Event::Encoding'=> '1.302122',
15177             'Test2::Event::Exception'=> '1.302122',
15178             'Test2::Event::Fail' => '1.302122',
15179             'Test2::Event::Generic' => '1.302122',
15180             'Test2::Event::Note' => '1.302122',
15181             'Test2::Event::Ok' => '1.302122',
15182             'Test2::Event::Pass' => '1.302122',
15183             'Test2::Event::Plan' => '1.302122',
15184             'Test2::Event::Skip' => '1.302122',
15185             'Test2::Event::Subtest' => '1.302122',
15186             'Test2::Event::TAP::Version'=> '1.302122',
15187             'Test2::Event::Waiting' => '1.302122',
15188             'Test2::EventFacet' => '1.302122',
15189             'Test2::EventFacet::About'=> '1.302122',
15190             'Test2::EventFacet::Amnesty'=> '1.302122',
15191             'Test2::EventFacet::Assert'=> '1.302122',
15192             'Test2::EventFacet::Control'=> '1.302122',
15193             'Test2::EventFacet::Error'=> '1.302122',
15194             'Test2::EventFacet::Info'=> '1.302122',
15195             'Test2::EventFacet::Meta'=> '1.302122',
15196             'Test2::EventFacet::Parent'=> '1.302122',
15197             'Test2::EventFacet::Plan'=> '1.302122',
15198             'Test2::EventFacet::Render'=> '1.302122',
15199             'Test2::EventFacet::Trace'=> '1.302122',
15200             'Test2::Formatter' => '1.302122',
15201             'Test2::Formatter::TAP' => '1.302122',
15202             'Test2::Hub' => '1.302122',
15203             'Test2::Hub::Interceptor'=> '1.302122',
15204             'Test2::Hub::Interceptor::Terminator'=> '1.302122',
15205             'Test2::Hub::Subtest' => '1.302122',
15206             'Test2::IPC' => '1.302122',
15207             'Test2::IPC::Driver' => '1.302122',
15208             'Test2::IPC::Driver::Files'=> '1.302122',
15209             'Test2::Tools::Tiny' => '1.302122',
15210             'Test2::Util' => '1.302122',
15211             'Test2::Util::ExternalMeta'=> '1.302122',
15212             'Test2::Util::Facets2Legacy'=> '1.302122',
15213             'Test2::Util::HashBase' => '1.302122',
15214             'Test2::Util::Trace' => '1.302122',
15215             'Test::Builder' => '1.302122',
15216             'Test::Builder::Formatter'=> '1.302122',
15217             'Test::Builder::Module' => '1.302122',
15218             'Test::Builder::Tester' => '1.302122',
15219             'Test::Builder::Tester::Color'=> '1.302122',
15220             'Test::Builder::TodoDiag'=> '1.302122',
15221             'Test::More' => '1.302122',
15222             'Test::Simple' => '1.302122',
15223             'Test::Tester' => '1.302122',
15224             'Test::Tester::Capture' => '1.302122',
15225             'Test::Tester::CaptureRunner'=> '1.302122',
15226             'Test::Tester::Delegate'=> '1.302122',
15227             'Test::use::ok' => '1.302122',
15228             'Time::HiRes' => '1.9753',
15229             'XS::APItest' => '0.96',
15230             'bigint' => '0.49',
15231             'bignum' => '0.49',
15232             'bigrat' => '0.49',
15233             'encoding' => '2.22',
15234             'if' => '0.0608',
15235             'mro' => '1.22',
15236             'ok' => '1.302122',
15237             'threads' => '2.22',
15238             'warnings' => '1.41',
15239             },
15240             removed => {
15241             'Module::CoreList::TieHashDelta'=> 1,
15242             }
15243             },
15244             5.027010 => {
15245             delta_from => 5.027009,
15246             changed => {
15247             'App::Prove' => '3.42',
15248             'App::Prove::State' => '3.42',
15249             'App::Prove::State::Result'=> '3.42',
15250             'App::Prove::State::Result::Test'=> '3.42',
15251             'B::Deparse' => '1.48',
15252             'B::Op_private' => '5.027010',
15253             'Carp' => '1.49',
15254             'Carp::Heavy' => '1.49',
15255             'Config' => '5.02701',
15256             'Encode' => '2.97',
15257             'ExtUtils::Command' => '7.34',
15258             'ExtUtils::Command::MM' => '7.34',
15259             'ExtUtils::Liblist' => '7.34',
15260             'ExtUtils::Liblist::Kid'=> '7.34',
15261             'ExtUtils::MM' => '7.34',
15262             'ExtUtils::MM_AIX' => '7.34',
15263             'ExtUtils::MM_Any' => '7.34',
15264             'ExtUtils::MM_BeOS' => '7.34',
15265             'ExtUtils::MM_Cygwin' => '7.34',
15266             'ExtUtils::MM_DOS' => '7.34',
15267             'ExtUtils::MM_Darwin' => '7.34',
15268             'ExtUtils::MM_MacOS' => '7.34',
15269             'ExtUtils::MM_NW5' => '7.34',
15270             'ExtUtils::MM_OS2' => '7.34',
15271             'ExtUtils::MM_QNX' => '7.34',
15272             'ExtUtils::MM_UWIN' => '7.34',
15273             'ExtUtils::MM_Unix' => '7.34',
15274             'ExtUtils::MM_VMS' => '7.34',
15275             'ExtUtils::MM_VOS' => '7.34',
15276             'ExtUtils::MM_Win32' => '7.34',
15277             'ExtUtils::MM_Win95' => '7.34',
15278             'ExtUtils::MY' => '7.34',
15279             'ExtUtils::MakeMaker' => '7.34',
15280             'ExtUtils::MakeMaker::Config'=> '7.34',
15281             'ExtUtils::MakeMaker::Locale'=> '7.34',
15282             'ExtUtils::MakeMaker::version'=> '7.34',
15283             'ExtUtils::MakeMaker::version::regex'=> '7.34',
15284             'ExtUtils::Mkbootstrap' => '7.34',
15285             'ExtUtils::Mksymlists' => '7.34',
15286             'ExtUtils::ParseXS' => '3.39',
15287             'ExtUtils::ParseXS::Constants'=> '3.39',
15288             'ExtUtils::ParseXS::CountLines'=> '3.39',
15289             'ExtUtils::ParseXS::Eval'=> '3.39',
15290             'ExtUtils::ParseXS::Utilities'=> '3.39',
15291             'ExtUtils::testlib' => '7.34',
15292             'File::Glob' => '1.31',
15293             'I18N::Langinfo' => '0.16',
15294             'List::Util' => '1.50',
15295             'List::Util::XS' => '1.50',
15296             'Locale::Codes' => '3.56',
15297             'Locale::Codes::Constants'=> '3.56',
15298             'Locale::Codes::Country'=> '3.56',
15299             'Locale::Codes::Country_Codes'=> '3.56',
15300             'Locale::Codes::Country_Retired'=> '3.56',
15301             'Locale::Codes::Currency'=> '3.56',
15302             'Locale::Codes::Currency_Codes'=> '3.56',
15303             'Locale::Codes::Currency_Retired'=> '3.56',
15304             'Locale::Codes::LangExt'=> '3.56',
15305             'Locale::Codes::LangExt_Codes'=> '3.56',
15306             'Locale::Codes::LangExt_Retired'=> '3.56',
15307             'Locale::Codes::LangFam'=> '3.56',
15308             'Locale::Codes::LangFam_Codes'=> '3.56',
15309             'Locale::Codes::LangFam_Retired'=> '3.56',
15310             'Locale::Codes::LangVar'=> '3.56',
15311             'Locale::Codes::LangVar_Codes'=> '3.56',
15312             'Locale::Codes::LangVar_Retired'=> '3.56',
15313             'Locale::Codes::Language'=> '3.56',
15314             'Locale::Codes::Language_Codes'=> '3.56',
15315             'Locale::Codes::Language_Retired'=> '3.56',
15316             'Locale::Codes::Script' => '3.56',
15317             'Locale::Codes::Script_Codes'=> '3.56',
15318             'Locale::Codes::Script_Retired'=> '3.56',
15319             'Locale::Country' => '3.56',
15320             'Locale::Currency' => '3.56',
15321             'Locale::Language' => '3.56',
15322             'Locale::Script' => '3.56',
15323             'Module::CoreList' => '5.20180221',
15324             'Module::CoreList::Utils'=> '5.20180221',
15325             'POSIX' => '1.83',
15326             'Scalar::Util' => '1.50',
15327             'Sub::Util' => '1.50',
15328             'TAP::Base' => '3.42',
15329             'TAP::Formatter::Base' => '3.42',
15330             'TAP::Formatter::Color' => '3.42',
15331             'TAP::Formatter::Console'=> '3.42',
15332             'TAP::Formatter::Console::ParallelSession'=> '3.42',
15333             'TAP::Formatter::Console::Session'=> '3.42',
15334             'TAP::Formatter::File' => '3.42',
15335             'TAP::Formatter::File::Session'=> '3.42',
15336             'TAP::Formatter::Session'=> '3.42',
15337             'TAP::Harness' => '3.42',
15338             'TAP::Harness::Env' => '3.42',
15339             'TAP::Object' => '3.42',
15340             'TAP::Parser' => '3.42',
15341             'TAP::Parser::Aggregator'=> '3.42',
15342             'TAP::Parser::Grammar' => '3.42',
15343             'TAP::Parser::Iterator' => '3.42',
15344             'TAP::Parser::Iterator::Array'=> '3.42',
15345             'TAP::Parser::Iterator::Process'=> '3.42',
15346             'TAP::Parser::Iterator::Stream'=> '3.42',
15347             'TAP::Parser::IteratorFactory'=> '3.42',
15348             'TAP::Parser::Multiplexer'=> '3.42',
15349             'TAP::Parser::Result' => '3.42',
15350             'TAP::Parser::Result::Bailout'=> '3.42',
15351             'TAP::Parser::Result::Comment'=> '3.42',
15352             'TAP::Parser::Result::Plan'=> '3.42',
15353             'TAP::Parser::Result::Pragma'=> '3.42',
15354             'TAP::Parser::Result::Test'=> '3.42',
15355             'TAP::Parser::Result::Unknown'=> '3.42',
15356             'TAP::Parser::Result::Version'=> '3.42',
15357             'TAP::Parser::Result::YAML'=> '3.42',
15358             'TAP::Parser::ResultFactory'=> '3.42',
15359             'TAP::Parser::Scheduler'=> '3.42',
15360             'TAP::Parser::Scheduler::Job'=> '3.42',
15361             'TAP::Parser::Scheduler::Spinner'=> '3.42',
15362             'TAP::Parser::Source' => '3.42',
15363             'TAP::Parser::SourceHandler'=> '3.42',
15364             'TAP::Parser::SourceHandler::Executable'=> '3.42',
15365             'TAP::Parser::SourceHandler::File'=> '3.42',
15366             'TAP::Parser::SourceHandler::Handle'=> '3.42',
15367             'TAP::Parser::SourceHandler::Perl'=> '3.42',
15368             'TAP::Parser::SourceHandler::RawTAP'=> '3.42',
15369             'TAP::Parser::YAMLish::Reader'=> '3.42',
15370             'TAP::Parser::YAMLish::Writer'=> '3.42',
15371             'Test2' => '1.302133',
15372             'Test2::API' => '1.302133',
15373             'Test2::API::Breakage' => '1.302133',
15374             'Test2::API::Context' => '1.302133',
15375             'Test2::API::Instance' => '1.302133',
15376             'Test2::API::Stack' => '1.302133',
15377             'Test2::Event' => '1.302133',
15378             'Test2::Event::Bail' => '1.302133',
15379             'Test2::Event::Diag' => '1.302133',
15380             'Test2::Event::Encoding'=> '1.302133',
15381             'Test2::Event::Exception'=> '1.302133',
15382             'Test2::Event::Fail' => '1.302133',
15383             'Test2::Event::Generic' => '1.302133',
15384             'Test2::Event::Note' => '1.302133',
15385             'Test2::Event::Ok' => '1.302133',
15386             'Test2::Event::Pass' => '1.302133',
15387             'Test2::Event::Plan' => '1.302133',
15388             'Test2::Event::Skip' => '1.302133',
15389             'Test2::Event::Subtest' => '1.302133',
15390             'Test2::Event::TAP::Version'=> '1.302133',
15391             'Test2::Event::V2' => '1.302133',
15392             'Test2::Event::Waiting' => '1.302133',
15393             'Test2::EventFacet' => '1.302133',
15394             'Test2::EventFacet::About'=> '1.302133',
15395             'Test2::EventFacet::Amnesty'=> '1.302133',
15396             'Test2::EventFacet::Assert'=> '1.302133',
15397             'Test2::EventFacet::Control'=> '1.302133',
15398             'Test2::EventFacet::Error'=> '1.302133',
15399             'Test2::EventFacet::Hub'=> '1.302133',
15400             'Test2::EventFacet::Info'=> '1.302133',
15401             'Test2::EventFacet::Meta'=> '1.302133',
15402             'Test2::EventFacet::Parent'=> '1.302133',
15403             'Test2::EventFacet::Plan'=> '1.302133',
15404             'Test2::EventFacet::Render'=> '1.302133',
15405             'Test2::EventFacet::Trace'=> '1.302133',
15406             'Test2::Formatter' => '1.302133',
15407             'Test2::Formatter::TAP' => '1.302133',
15408             'Test2::Hub' => '1.302133',
15409             'Test2::Hub::Interceptor'=> '1.302133',
15410             'Test2::Hub::Interceptor::Terminator'=> '1.302133',
15411             'Test2::Hub::Subtest' => '1.302133',
15412             'Test2::IPC' => '1.302133',
15413             'Test2::IPC::Driver' => '1.302133',
15414             'Test2::IPC::Driver::Files'=> '1.302133',
15415             'Test2::Tools::Tiny' => '1.302133',
15416             'Test2::Util' => '1.302133',
15417             'Test2::Util::ExternalMeta'=> '1.302133',
15418             'Test2::Util::Facets2Legacy'=> '1.302133',
15419             'Test2::Util::HashBase' => '1.302133',
15420             'Test2::Util::Trace' => '1.302133',
15421             'Test::Builder' => '1.302133',
15422             'Test::Builder::Formatter'=> '1.302133',
15423             'Test::Builder::Module' => '1.302133',
15424             'Test::Builder::Tester' => '1.302133',
15425             'Test::Builder::Tester::Color'=> '1.302133',
15426             'Test::Builder::TodoDiag'=> '1.302133',
15427             'Test::Harness' => '3.42',
15428             'Test::More' => '1.302133',
15429             'Test::Simple' => '1.302133',
15430             'Test::Tester' => '1.302133',
15431             'Test::Tester::Capture' => '1.302133',
15432             'Test::Tester::CaptureRunner'=> '1.302133',
15433             'Test::Tester::Delegate'=> '1.302133',
15434             'Test::use::ok' => '1.302133',
15435             'Time::HiRes' => '1.9757',
15436             'Time::Piece' => '1.3204',
15437             'Time::Seconds' => '1.3204',
15438             'attributes' => '0.33',
15439             'ok' => '1.302133',
15440             'warnings' => '1.42',
15441             },
15442             removed => {
15443             }
15444             },
15445             5.024004 => {
15446             delta_from => 5.024003,
15447             changed => {
15448             'B::Op_private' => '5.024004',
15449             'Config' => '5.024004',
15450             'Module::CoreList' => '5.20180414_24',
15451             'Module::CoreList::TieHashDelta'=> '5.20180414_24',
15452             'Module::CoreList::Utils'=> '5.20180414_24',
15453             },
15454             removed => {
15455             }
15456             },
15457             5.026002 => {
15458             delta_from => 5.026001,
15459             changed => {
15460             'B::Op_private' => '5.026002',
15461             'Config' => '5.026002',
15462             'Module::CoreList' => '5.20180414_26',
15463             'Module::CoreList::TieHashDelta'=> '5.20180414_26',
15464             'Module::CoreList::Utils'=> '5.20180414_26',
15465             'PerlIO::via' => '0.17',
15466             'Term::ReadLine' => '1.17',
15467             'Unicode::UCD' => '0.69',
15468             },
15469             removed => {
15470             }
15471             },
15472             5.027011 => {
15473             delta_from => 5.027010,
15474             changed => {
15475             'B::Op_private' => '5.027011',
15476             'Carp' => '1.50',
15477             'Carp::Heavy' => '1.50',
15478             'Config' => '5.027011',
15479             'Devel::PPPort' => '3.40',
15480             'Exporter' => '5.73',
15481             'Exporter::Heavy' => '5.73',
15482             'ExtUtils::Constant' => '0.25',
15483             'I18N::Langinfo' => '0.17',
15484             'IO' => '1.39',
15485             'IO::Dir' => '1.39',
15486             'IO::File' => '1.39',
15487             'IO::Handle' => '1.39',
15488             'IO::Pipe' => '1.39',
15489             'IO::Poll' => '1.39',
15490             'IO::Seekable' => '1.39',
15491             'IO::Select' => '1.39',
15492             'IO::Socket' => '1.39',
15493             'IO::Socket::INET' => '1.39',
15494             'IO::Socket::UNIX' => '1.39',
15495             'Module::CoreList' => '5.20180420',
15496             'Module::CoreList::Utils'=> '5.20180420',
15497             'POSIX' => '1.84',
15498             'Time::HiRes' => '1.9759',
15499             'XS::APItest' => '0.97',
15500             'bytes' => '1.06',
15501             'subs' => '1.03',
15502             'vars' => '1.04',
15503             'version' => '0.9923',
15504             'version::regex' => '0.9923',
15505             },
15506             removed => {
15507             }
15508             },
15509             5.028000 => {
15510             delta_from => 5.027011,
15511             changed => {
15512             'Archive::Tar' => '2.30',
15513             'Archive::Tar::Constant'=> '2.30',
15514             'Archive::Tar::File' => '2.30',
15515             'B::Op_private' => '5.028000',
15516             'Config' => '5.028',
15517             'Module::CoreList' => '5.20180622',
15518             'Module::CoreList::Utils'=> '5.20180622',
15519             'Storable' => '3.08',
15520             'XS::APItest' => '0.98',
15521             'feature' => '1.52',
15522             },
15523             removed => {
15524             }
15525             },
15526             5.029000 => {
15527             delta_from => 5.028,
15528             changed => {
15529             'B::Op_private' => '5.029000',
15530             'Config' => '5.029',
15531             'Module::CoreList' => '5.20180626',
15532             'Module::CoreList::Utils'=> '5.20180626',
15533             'Unicode::UCD' => '0.71',
15534             'XS::APItest' => '0.99',
15535             'feature' => '1.53',
15536             },
15537             removed => {
15538             }
15539             },
15540             5.029001 => {
15541             delta_from => 5.029000,
15542             changed => {
15543             'B::Op_private' => '5.029001',
15544             'Compress::Raw::Bzip2' => '2.081',
15545             'Compress::Raw::Zlib' => '2.081',
15546             'Compress::Zlib' => '2.081',
15547             'Config' => '5.029001',
15548             'Config::Perl::V' => '0.30',
15549             'DB_File' => '1.842',
15550             'Devel::PPPort' => '3.42',
15551             'Digest::SHA' => '6.02',
15552             'ExtUtils::Manifest' => '1.71',
15553             'File::GlobMapper' => '1.001',
15554             'File::Temp' => '0.2308',
15555             'IO::Compress::Adapter::Bzip2'=> '2.081',
15556             'IO::Compress::Adapter::Deflate'=> '2.081',
15557             'IO::Compress::Adapter::Identity'=> '2.081',
15558             'IO::Compress::Base' => '2.081',
15559             'IO::Compress::Base::Common'=> '2.081',
15560             'IO::Compress::Bzip2' => '2.081',
15561             'IO::Compress::Deflate' => '2.081',
15562             'IO::Compress::Gzip' => '2.081',
15563             'IO::Compress::Gzip::Constants'=> '2.081',
15564             'IO::Compress::RawDeflate'=> '2.081',
15565             'IO::Compress::Zip' => '2.081',
15566             'IO::Compress::Zip::Constants'=> '2.081',
15567             'IO::Compress::Zlib::Constants'=> '2.081',
15568             'IO::Compress::Zlib::Extra'=> '2.081',
15569             'IO::Uncompress::Adapter::Bunzip2'=> '2.081',
15570             'IO::Uncompress::Adapter::Identity'=> '2.081',
15571             'IO::Uncompress::Adapter::Inflate'=> '2.081',
15572             'IO::Uncompress::AnyInflate'=> '2.081',
15573             'IO::Uncompress::AnyUncompress'=> '2.081',
15574             'IO::Uncompress::Base' => '2.081',
15575             'IO::Uncompress::Bunzip2'=> '2.081',
15576             'IO::Uncompress::Gunzip'=> '2.081',
15577             'IO::Uncompress::Inflate'=> '2.081',
15578             'IO::Uncompress::RawInflate'=> '2.081',
15579             'IO::Uncompress::Unzip' => '2.081',
15580             'IPC::Cmd' => '1.02',
15581             'Locale::Codes' => '3.57',
15582             'Locale::Codes::Constants'=> '3.57',
15583             'Locale::Codes::Country'=> '3.57',
15584             'Locale::Codes::Country_Codes'=> '3.57',
15585             'Locale::Codes::Country_Retired'=> '3.57',
15586             'Locale::Codes::Currency'=> '3.57',
15587             'Locale::Codes::Currency_Codes'=> '3.57',
15588             'Locale::Codes::Currency_Retired'=> '3.57',
15589             'Locale::Codes::LangExt'=> '3.57',
15590             'Locale::Codes::LangExt_Codes'=> '3.57',
15591             'Locale::Codes::LangExt_Retired'=> '3.57',
15592             'Locale::Codes::LangFam'=> '3.57',
15593             'Locale::Codes::LangFam_Codes'=> '3.57',
15594             'Locale::Codes::LangFam_Retired'=> '3.57',
15595             'Locale::Codes::LangVar'=> '3.57',
15596             'Locale::Codes::LangVar_Codes'=> '3.57',
15597             'Locale::Codes::LangVar_Retired'=> '3.57',
15598             'Locale::Codes::Language'=> '3.57',
15599             'Locale::Codes::Language_Codes'=> '3.57',
15600             'Locale::Codes::Language_Retired'=> '3.57',
15601             'Locale::Codes::Script' => '3.57',
15602             'Locale::Codes::Script_Codes'=> '3.57',
15603             'Locale::Codes::Script_Retired'=> '3.57',
15604             'Locale::Country' => '3.57',
15605             'Locale::Currency' => '3.57',
15606             'Locale::Language' => '3.57',
15607             'Locale::Script' => '3.57',
15608             'Math::BigFloat' => '1.999813',
15609             'Math::BigFloat::Trace' => '0.50',
15610             'Math::BigInt' => '1.999813',
15611             'Math::BigInt::Calc' => '1.999813',
15612             'Math::BigInt::CalcEmu' => '1.999813',
15613             'Math::BigInt::FastCalc'=> '0.5007',
15614             'Math::BigInt::Lib' => '1.999813',
15615             'Math::BigInt::Trace' => '0.50',
15616             'Math::BigRat' => '0.2614',
15617             'Module::CoreList' => '5.20180720',
15618             'Module::CoreList::Utils'=> '5.20180720',
15619             'Pod::Man' => '4.11',
15620             'Pod::ParseLink' => '4.11',
15621             'Pod::Text' => '4.11',
15622             'Pod::Text::Color' => '4.11',
15623             'Pod::Text::Overstrike' => '4.11',
15624             'Pod::Text::Termcap' => '4.11',
15625             'Storable' => '3.11',
15626             'Test2' => '1.302138',
15627             'Test2::API' => '1.302138',
15628             'Test2::API::Breakage' => '1.302138',
15629             'Test2::API::Context' => '1.302138',
15630             'Test2::API::Instance' => '1.302138',
15631             'Test2::API::Stack' => '1.302138',
15632             'Test2::Event' => '1.302138',
15633             'Test2::Event::Bail' => '1.302138',
15634             'Test2::Event::Diag' => '1.302138',
15635             'Test2::Event::Encoding'=> '1.302138',
15636             'Test2::Event::Exception'=> '1.302138',
15637             'Test2::Event::Fail' => '1.302138',
15638             'Test2::Event::Generic' => '1.302138',
15639             'Test2::Event::Note' => '1.302138',
15640             'Test2::Event::Ok' => '1.302138',
15641             'Test2::Event::Pass' => '1.302138',
15642             'Test2::Event::Plan' => '1.302138',
15643             'Test2::Event::Skip' => '1.302138',
15644             'Test2::Event::Subtest' => '1.302138',
15645             'Test2::Event::TAP::Version'=> '1.302138',
15646             'Test2::Event::V2' => '1.302138',
15647             'Test2::Event::Waiting' => '1.302138',
15648             'Test2::EventFacet' => '1.302138',
15649             'Test2::EventFacet::About'=> '1.302138',
15650             'Test2::EventFacet::Amnesty'=> '1.302138',
15651             'Test2::EventFacet::Assert'=> '1.302138',
15652             'Test2::EventFacet::Control'=> '1.302138',
15653             'Test2::EventFacet::Error'=> '1.302138',
15654             'Test2::EventFacet::Hub'=> '1.302138',
15655             'Test2::EventFacet::Info'=> '1.302138',
15656             'Test2::EventFacet::Meta'=> '1.302138',
15657             'Test2::EventFacet::Parent'=> '1.302138',
15658             'Test2::EventFacet::Plan'=> '1.302138',
15659             'Test2::EventFacet::Render'=> '1.302138',
15660             'Test2::EventFacet::Trace'=> '1.302138',
15661             'Test2::Formatter' => '1.302138',
15662             'Test2::Formatter::TAP' => '1.302138',
15663             'Test2::Hub' => '1.302138',
15664             'Test2::Hub::Interceptor'=> '1.302138',
15665             'Test2::Hub::Interceptor::Terminator'=> '1.302138',
15666             'Test2::Hub::Subtest' => '1.302138',
15667             'Test2::IPC' => '1.302138',
15668             'Test2::IPC::Driver' => '1.302138',
15669             'Test2::IPC::Driver::Files'=> '1.302138',
15670             'Test2::Tools::Tiny' => '1.302138',
15671             'Test2::Util' => '1.302138',
15672             'Test2::Util::ExternalMeta'=> '1.302138',
15673             'Test2::Util::Facets2Legacy'=> '1.302138',
15674             'Test2::Util::HashBase' => '1.302138',
15675             'Test2::Util::Trace' => '1.302138',
15676             'Test::Builder' => '1.302138',
15677             'Test::Builder::Formatter'=> '1.302138',
15678             'Test::Builder::Module' => '1.302138',
15679             'Test::Builder::Tester' => '1.302138',
15680             'Test::Builder::Tester::Color'=> '1.302138',
15681             'Test::Builder::TodoDiag'=> '1.302138',
15682             'Test::More' => '1.302138',
15683             'Test::Simple' => '1.302138',
15684             'Test::Tester' => '1.302138',
15685             'Test::Tester::Capture' => '1.302138',
15686             'Test::Tester::CaptureRunner'=> '1.302138',
15687             'Test::Tester::Delegate'=> '1.302138',
15688             'Test::use::ok' => '1.302138',
15689             'Thread::Queue' => '3.13',
15690             'Time::Local' => '1.28',
15691             'bigint' => '0.50',
15692             'bignum' => '0.50',
15693             'bigrat' => '0.50',
15694             'experimental' => '0.020',
15695             'ok' => '1.302138',
15696             'parent' => '0.237',
15697             'perlfaq' => '5.20180605',
15698             'version' => '0.9924',
15699             'version::regex' => '0.9924',
15700             },
15701             removed => {
15702             }
15703             },
15704             5.029002 => {
15705             delta_from => 5.029001,
15706             changed => {
15707             'B::Op_private' => '5.029002',
15708             'Config' => '5.029002',
15709             'Config::Extensions' => '0.03',
15710             'Cwd' => '3.75',
15711             'Data::Dumper' => '2.171',
15712             'Filter::Util::Call' => '1.59',
15713             'HTTP::Tiny' => '0.076',
15714             'Module::CoreList' => '5.20180820',
15715             'Module::CoreList::Utils'=> '5.20180820',
15716             'PerlIO::scalar' => '0.30',
15717             'Storable' => '3.12',
15718             'Test2' => '1.302140',
15719             'Test2::API' => '1.302140',
15720             'Test2::API::Breakage' => '1.302140',
15721             'Test2::API::Context' => '1.302140',
15722             'Test2::API::Instance' => '1.302140',
15723             'Test2::API::Stack' => '1.302140',
15724             'Test2::Event' => '1.302140',
15725             'Test2::Event::Bail' => '1.302140',
15726             'Test2::Event::Diag' => '1.302140',
15727             'Test2::Event::Encoding'=> '1.302140',
15728             'Test2::Event::Exception'=> '1.302140',
15729             'Test2::Event::Fail' => '1.302140',
15730             'Test2::Event::Generic' => '1.302140',
15731             'Test2::Event::Note' => '1.302140',
15732             'Test2::Event::Ok' => '1.302140',
15733             'Test2::Event::Pass' => '1.302140',
15734             'Test2::Event::Plan' => '1.302140',
15735             'Test2::Event::Skip' => '1.302140',
15736             'Test2::Event::Subtest' => '1.302140',
15737             'Test2::Event::TAP::Version'=> '1.302140',
15738             'Test2::Event::V2' => '1.302140',
15739             'Test2::Event::Waiting' => '1.302140',
15740             'Test2::EventFacet' => '1.302140',
15741             'Test2::EventFacet::About'=> '1.302140',
15742             'Test2::EventFacet::Amnesty'=> '1.302140',
15743             'Test2::EventFacet::Assert'=> '1.302140',
15744             'Test2::EventFacet::Control'=> '1.302140',
15745             'Test2::EventFacet::Error'=> '1.302140',
15746             'Test2::EventFacet::Hub'=> '1.302140',
15747             'Test2::EventFacet::Info'=> '1.302140',
15748             'Test2::EventFacet::Meta'=> '1.302140',
15749             'Test2::EventFacet::Parent'=> '1.302140',
15750             'Test2::EventFacet::Plan'=> '1.302140',
15751             'Test2::EventFacet::Render'=> '1.302140',
15752             'Test2::EventFacet::Trace'=> '1.302140',
15753             'Test2::Formatter' => '1.302140',
15754             'Test2::Formatter::TAP' => '1.302140',
15755             'Test2::Hub' => '1.302140',
15756             'Test2::Hub::Interceptor'=> '1.302140',
15757             'Test2::Hub::Interceptor::Terminator'=> '1.302140',
15758             'Test2::Hub::Subtest' => '1.302140',
15759             'Test2::IPC' => '1.302140',
15760             'Test2::IPC::Driver' => '1.302140',
15761             'Test2::IPC::Driver::Files'=> '1.302140',
15762             'Test2::Tools::Tiny' => '1.302140',
15763             'Test2::Util' => '1.302140',
15764             'Test2::Util::ExternalMeta'=> '1.302140',
15765             'Test2::Util::Facets2Legacy'=> '1.302140',
15766             'Test2::Util::HashBase' => '1.302140',
15767             'Test2::Util::Trace' => '1.302140',
15768             'Test::Builder' => '1.302140',
15769             'Test::Builder::Formatter'=> '1.302140',
15770             'Test::Builder::Module' => '1.302140',
15771             'Test::Builder::Tester' => '1.302140',
15772             'Test::Builder::Tester::Color'=> '1.302140',
15773             'Test::Builder::TodoDiag'=> '1.302140',
15774             'Test::More' => '1.302140',
15775             'Test::Simple' => '1.302140',
15776             'Test::Tester' => '1.302140',
15777             'Test::Tester::Capture' => '1.302140',
15778             'Test::Tester::CaptureRunner'=> '1.302140',
15779             'Test::Tester::Delegate'=> '1.302140',
15780             'Test::use::ok' => '1.302140',
15781             'Time::HiRes' => '1.9760',
15782             'Time::Piece' => '1.33',
15783             'Time::Seconds' => '1.33',
15784             'Unicode' => '11.0.0',
15785             'ok' => '1.302140',
15786             'warnings' => '1.43',
15787             },
15788             removed => {
15789             }
15790             },
15791             5.029003 => {
15792             delta_from => 5.029002,
15793             changed => {
15794             'Archive::Tar' => '2.32',
15795             'Archive::Tar::Constant'=> '2.32',
15796             'Archive::Tar::File' => '2.32',
15797             'B::Op_private' => '5.029003',
15798             'Config' => '5.029003',
15799             'Data::Dumper' => '2.172',
15800             'Devel::PPPort' => '3.43',
15801             'File::Path' => '2.16',
15802             'File::Spec' => '3.75',
15803             'File::Spec::AmigaOS' => '3.75',
15804             'File::Spec::Cygwin' => '3.75',
15805             'File::Spec::Epoc' => '3.75',
15806             'File::Spec::Functions' => '3.75',
15807             'File::Spec::Mac' => '3.75',
15808             'File::Spec::OS2' => '3.75',
15809             'File::Spec::Unix' => '3.75',
15810             'File::Spec::VMS' => '3.75',
15811             'File::Spec::Win32' => '3.75',
15812             'Module::CoreList' => '5.20180920',
15813             'Module::CoreList::Utils'=> '5.20180920',
15814             'POSIX' => '1.85',
15815             'Storable' => '3.13',
15816             'User::grent' => '1.03',
15817             'perlfaq' => '5.20180915',
15818             },
15819             removed => {
15820             'Locale::Codes' => 1,
15821             'Locale::Codes::Constants'=> 1,
15822             'Locale::Codes::Country'=> 1,
15823             'Locale::Codes::Country_Codes'=> 1,
15824             'Locale::Codes::Country_Retired'=> 1,
15825             'Locale::Codes::Currency'=> 1,
15826             'Locale::Codes::Currency_Codes'=> 1,
15827             'Locale::Codes::Currency_Retired'=> 1,
15828             'Locale::Codes::LangExt'=> 1,
15829             'Locale::Codes::LangExt_Codes'=> 1,
15830             'Locale::Codes::LangExt_Retired'=> 1,
15831             'Locale::Codes::LangFam'=> 1,
15832             'Locale::Codes::LangFam_Codes'=> 1,
15833             'Locale::Codes::LangFam_Retired'=> 1,
15834             'Locale::Codes::LangVar'=> 1,
15835             'Locale::Codes::LangVar_Codes'=> 1,
15836             'Locale::Codes::LangVar_Retired'=> 1,
15837             'Locale::Codes::Language'=> 1,
15838             'Locale::Codes::Language_Codes'=> 1,
15839             'Locale::Codes::Language_Retired'=> 1,
15840             'Locale::Codes::Script' => 1,
15841             'Locale::Codes::Script_Codes'=> 1,
15842             'Locale::Codes::Script_Retired'=> 1,
15843             'Locale::Country' => 1,
15844             'Locale::Currency' => 1,
15845             'Locale::Language' => 1,
15846             'Locale::Script' => 1,
15847             }
15848             },
15849             5.029004 => {
15850             delta_from => 5.029003,
15851             changed => {
15852             'App::Cpan' => '1.671',
15853             'B' => '1.75',
15854             'B::Concise' => '1.004',
15855             'B::Deparse' => '1.49',
15856             'B::Op_private' => '5.029004',
15857             'B::Terse' => '1.09',
15858             'CPAN' => '2.21',
15859             'CPAN::Distribution' => '2.21',
15860             'CPAN::Mirrors' => '2.21',
15861             'CPAN::Plugin' => '0.97',
15862             'CPAN::Shell' => '5.5008',
15863             'Config' => '5.029004',
15864             'Devel::Peek' => '1.28',
15865             'File::Copy' => '2.34',
15866             'File::Glob' => '1.32',
15867             'Math::BigFloat::Trace' => '0.51',
15868             'Math::BigInt::Trace' => '0.51',
15869             'Module::CoreList' => '5.20181020',
15870             'Module::CoreList::Utils'=> '5.20181020',
15871             'Unicode::UCD' => '0.72',
15872             'bigint' => '0.51',
15873             'bignum' => '0.51',
15874             'bigrat' => '0.51',
15875             'bytes' => '1.07',
15876             'feature' => '1.54',
15877             'sigtrap' => '1.09',
15878             'vars' => '1.05',
15879             },
15880             removed => {
15881             'B::Debug' => 1,
15882             'arybase' => 1,
15883             }
15884             },
15885             5.029005 => {
15886             delta_from => 5.029004,
15887             changed => {
15888             'B::Op_private' => '5.029005',
15889             'Config' => '5.029005',
15890             'Cwd' => '3.76',
15891             'Data::Dumper' => '2.173',
15892             'Errno' => '1.30',
15893             'File::Spec' => '3.76',
15894             'File::Spec::AmigaOS' => '3.76',
15895             'File::Spec::Cygwin' => '3.76',
15896             'File::Spec::Epoc' => '3.76',
15897             'File::Spec::Functions' => '3.76',
15898             'File::Spec::Mac' => '3.76',
15899             'File::Spec::OS2' => '3.76',
15900             'File::Spec::Unix' => '3.76',
15901             'File::Spec::VMS' => '3.76',
15902             'File::Spec::Win32' => '3.76',
15903             'GDBM_File' => '1.18',
15904             'Module::CoreList' => '5.20181120',
15905             'Module::CoreList::Utils'=> '5.20181120',
15906             'NDBM_File' => '1.15',
15907             'ODBM_File' => '1.16',
15908             'SDBM_File' => '1.15',
15909             're' => '0.37',
15910             },
15911             removed => {
15912             }
15913             },
15914             5.026003 => {
15915             delta_from => 5.026002,
15916             changed => {
15917             'Archive::Tar' => '2.24_01',
15918             'B::Op_private' => '5.026003',
15919             'Config' => '5.026003',
15920             'Module::CoreList' => '5.20181129_26',
15921             'Module::CoreList::TieHashDelta'=> '5.20181129_26',
15922             'Module::CoreList::Utils'=> '5.20181129_26',
15923             },
15924             removed => {
15925             }
15926             },
15927             5.028001 => {
15928             delta_from => 5.028,
15929             changed => {
15930             'B::Op_private' => '5.028001',
15931             'Config' => '5.028001',
15932             'Module::CoreList' => '5.20181129_28',
15933             'Module::CoreList::Utils'=> '5.20181129_28',
15934             },
15935             removed => {
15936             }
15937             },
15938             5.029006 => {
15939             delta_from => 5.029005,
15940             changed => {
15941             'B::Op_private' => '5.029006',
15942             'Config' => '5.029006',
15943             'Config::Perl::V' => '0.32',
15944             'ExtUtils::ParseXS' => '3.40',
15945             'ExtUtils::ParseXS::Constants'=> '3.40',
15946             'ExtUtils::ParseXS::CountLines'=> '3.40',
15947             'ExtUtils::ParseXS::Eval'=> '3.40',
15948             'ExtUtils::ParseXS::Utilities'=> '3.40',
15949             'File::Find' => '1.35',
15950             'Module::CoreList' => '5.20181218',
15951             'Module::CoreList::Utils'=> '5.20181218',
15952             'POSIX' => '1.86',
15953             'Storable' => '3.14',
15954             'Test2' => '1.302141',
15955             'Test2::API' => '1.302141',
15956             'Test2::API::Breakage' => '1.302141',
15957             'Test2::API::Context' => '1.302141',
15958             'Test2::API::Instance' => '1.302141',
15959             'Test2::API::Stack' => '1.302141',
15960             'Test2::Event' => '1.302141',
15961             'Test2::Event::Bail' => '1.302141',
15962             'Test2::Event::Diag' => '1.302141',
15963             'Test2::Event::Encoding'=> '1.302141',
15964             'Test2::Event::Exception'=> '1.302141',
15965             'Test2::Event::Fail' => '1.302141',
15966             'Test2::Event::Generic' => '1.302141',
15967             'Test2::Event::Note' => '1.302141',
15968             'Test2::Event::Ok' => '1.302141',
15969             'Test2::Event::Pass' => '1.302141',
15970             'Test2::Event::Plan' => '1.302141',
15971             'Test2::Event::Skip' => '1.302141',
15972             'Test2::Event::Subtest' => '1.302141',
15973             'Test2::Event::TAP::Version'=> '1.302141',
15974             'Test2::Event::V2' => '1.302141',
15975             'Test2::Event::Waiting' => '1.302141',
15976             'Test2::EventFacet' => '1.302141',
15977             'Test2::EventFacet::About'=> '1.302141',
15978             'Test2::EventFacet::Amnesty'=> '1.302141',
15979             'Test2::EventFacet::Assert'=> '1.302141',
15980             'Test2::EventFacet::Control'=> '1.302141',
15981             'Test2::EventFacet::Error'=> '1.302141',
15982             'Test2::EventFacet::Hub'=> '1.302141',
15983             'Test2::EventFacet::Info'=> '1.302141',
15984             'Test2::EventFacet::Meta'=> '1.302141',
15985             'Test2::EventFacet::Parent'=> '1.302141',
15986             'Test2::EventFacet::Plan'=> '1.302141',
15987             'Test2::EventFacet::Render'=> '1.302141',
15988             'Test2::EventFacet::Trace'=> '1.302141',
15989             'Test2::Formatter' => '1.302141',
15990             'Test2::Formatter::TAP' => '1.302141',
15991             'Test2::Hub' => '1.302141',
15992             'Test2::Hub::Interceptor'=> '1.302141',
15993             'Test2::Hub::Interceptor::Terminator'=> '1.302141',
15994             'Test2::Hub::Subtest' => '1.302141',
15995             'Test2::IPC' => '1.302141',
15996             'Test2::IPC::Driver' => '1.302141',
15997             'Test2::IPC::Driver::Files'=> '1.302141',
15998             'Test2::Tools::Tiny' => '1.302141',
15999             'Test2::Util' => '1.302141',
16000             'Test2::Util::ExternalMeta'=> '1.302141',
16001             'Test2::Util::Facets2Legacy'=> '1.302141',
16002             'Test2::Util::HashBase' => '1.302141',
16003             'Test2::Util::Trace' => '1.302141',
16004             'Test::Builder' => '1.302141',
16005             'Test::Builder::Formatter'=> '1.302141',
16006             'Test::Builder::Module' => '1.302141',
16007             'Test::Builder::Tester' => '1.302141',
16008             'Test::Builder::Tester::Color'=> '1.302141',
16009             'Test::Builder::TodoDiag'=> '1.302141',
16010             'Test::More' => '1.302141',
16011             'Test::Simple' => '1.302141',
16012             'Test::Tester' => '1.302141',
16013             'Test::Tester::Capture' => '1.302141',
16014             'Test::Tester::CaptureRunner'=> '1.302141',
16015             'Test::Tester::Delegate'=> '1.302141',
16016             'Test::use::ok' => '1.302141',
16017             'ok' => '1.302141',
16018             'threads::shared' => '1.59',
16019             },
16020             removed => {
16021             'Storable::Limit' => 1,
16022             }
16023             },
16024             5.029007 => {
16025             delta_from => 5.029006,
16026             changed => {
16027             'App::Cpan' => '1.672',
16028             'B::Op_private' => '5.029007',
16029             'CPAN' => '2.22',
16030             'CPAN::Distribution' => '2.22',
16031             'CPAN::Plugin::Specfile'=> '0.02',
16032             'Compress::Raw::Bzip2' => '2.084',
16033             'Compress::Raw::Zlib' => '2.084',
16034             'Compress::Zlib' => '2.084',
16035             'Config' => '5.029007',
16036             'Cwd' => '3.77',
16037             'DB_File' => '1.843',
16038             'File::Find' => '1.36',
16039             'File::Spec' => '3.77',
16040             'File::Spec::AmigaOS' => '3.77',
16041             'File::Spec::Cygwin' => '3.77',
16042             'File::Spec::Epoc' => '3.77',
16043             'File::Spec::Functions' => '3.77',
16044             'File::Spec::Mac' => '3.77',
16045             'File::Spec::OS2' => '3.77',
16046             'File::Spec::Unix' => '3.77',
16047             'File::Spec::VMS' => '3.77',
16048             'File::Spec::Win32' => '3.77',
16049             'File::Temp' => '0.2309',
16050             'IO::Compress::Adapter::Bzip2'=> '2.084',
16051             'IO::Compress::Adapter::Deflate'=> '2.084',
16052             'IO::Compress::Adapter::Identity'=> '2.084',
16053             'IO::Compress::Base' => '2.084',
16054             'IO::Compress::Base::Common'=> '2.084',
16055             'IO::Compress::Bzip2' => '2.084',
16056             'IO::Compress::Deflate' => '2.084',
16057             'IO::Compress::Gzip' => '2.084',
16058             'IO::Compress::Gzip::Constants'=> '2.084',
16059             'IO::Compress::RawDeflate'=> '2.084',
16060             'IO::Compress::Zip' => '2.084',
16061             'IO::Compress::Zip::Constants'=> '2.084',
16062             'IO::Compress::Zlib::Constants'=> '2.084',
16063             'IO::Compress::Zlib::Extra'=> '2.084',
16064             'IO::Uncompress::Adapter::Bunzip2'=> '2.084',
16065             'IO::Uncompress::Adapter::Identity'=> '2.084',
16066             'IO::Uncompress::Adapter::Inflate'=> '2.084',
16067             'IO::Uncompress::AnyInflate'=> '2.084',
16068             'IO::Uncompress::AnyUncompress'=> '2.084',
16069             'IO::Uncompress::Base' => '2.084',
16070             'IO::Uncompress::Bunzip2'=> '2.084',
16071             'IO::Uncompress::Gunzip'=> '2.084',
16072             'IO::Uncompress::Inflate'=> '2.084',
16073             'IO::Uncompress::RawInflate'=> '2.084',
16074             'IO::Uncompress::Unzip' => '2.084',
16075             'Math::BigFloat' => '1.999816',
16076             'Math::BigInt' => '1.999816',
16077             'Math::BigInt::Calc' => '1.999816',
16078             'Math::BigInt::FastCalc'=> '0.5008',
16079             'Math::BigInt::Lib' => '1.999816',
16080             'Module::CoreList' => '5.20190120',
16081             'Module::CoreList::Utils'=> '5.20190120',
16082             'Test2' => '1.302160',
16083             'Test2::API' => '1.302160',
16084             'Test2::API::Breakage' => '1.302160',
16085             'Test2::API::Context' => '1.302160',
16086             'Test2::API::Instance' => '1.302160',
16087             'Test2::API::Stack' => '1.302160',
16088             'Test2::Event' => '1.302160',
16089             'Test2::Event::Bail' => '1.302160',
16090             'Test2::Event::Diag' => '1.302160',
16091             'Test2::Event::Encoding'=> '1.302160',
16092             'Test2::Event::Exception'=> '1.302160',
16093             'Test2::Event::Fail' => '1.302160',
16094             'Test2::Event::Generic' => '1.302160',
16095             'Test2::Event::Note' => '1.302160',
16096             'Test2::Event::Ok' => '1.302160',
16097             'Test2::Event::Pass' => '1.302160',
16098             'Test2::Event::Plan' => '1.302160',
16099             'Test2::Event::Skip' => '1.302160',
16100             'Test2::Event::Subtest' => '1.302160',
16101             'Test2::Event::TAP::Version'=> '1.302160',
16102             'Test2::Event::V2' => '1.302160',
16103             'Test2::Event::Waiting' => '1.302160',
16104             'Test2::EventFacet' => '1.302160',
16105             'Test2::EventFacet::About'=> '1.302160',
16106             'Test2::EventFacet::Amnesty'=> '1.302160',
16107             'Test2::EventFacet::Assert'=> '1.302160',
16108             'Test2::EventFacet::Control'=> '1.302160',
16109             'Test2::EventFacet::Error'=> '1.302160',
16110             'Test2::EventFacet::Hub'=> '1.302160',
16111             'Test2::EventFacet::Info'=> '1.302160',
16112             'Test2::EventFacet::Info::Table'=> undef,
16113             'Test2::EventFacet::Meta'=> '1.302160',
16114             'Test2::EventFacet::Parent'=> '1.302160',
16115             'Test2::EventFacet::Plan'=> '1.302160',
16116             'Test2::EventFacet::Render'=> '1.302160',
16117             'Test2::EventFacet::Trace'=> '1.302160',
16118             'Test2::Formatter' => '1.302160',
16119             'Test2::Formatter::TAP' => '1.302160',
16120             'Test2::Hub' => '1.302160',
16121             'Test2::Hub::Interceptor'=> '1.302160',
16122             'Test2::Hub::Interceptor::Terminator'=> '1.302160',
16123             'Test2::Hub::Subtest' => '1.302160',
16124             'Test2::IPC' => '1.302160',
16125             'Test2::IPC::Driver' => '1.302160',
16126             'Test2::IPC::Driver::Files'=> '1.302160',
16127             'Test2::Tools::Tiny' => '1.302160',
16128             'Test2::Util' => '1.302160',
16129             'Test2::Util::ExternalMeta'=> '1.302160',
16130             'Test2::Util::Facets2Legacy'=> '1.302160',
16131             'Test2::Util::HashBase' => '1.302160',
16132             'Test2::Util::Trace' => '1.302160',
16133             'Test::Builder' => '1.302160',
16134             'Test::Builder::Formatter'=> '1.302160',
16135             'Test::Builder::Module' => '1.302160',
16136             'Test::Builder::Tester' => '1.302160',
16137             'Test::Builder::Tester::Color'=> '1.302160',
16138             'Test::Builder::TodoDiag'=> '1.302160',
16139             'Test::More' => '1.302160',
16140             'Test::Simple' => '1.302160',
16141             'Test::Tester' => '1.302160',
16142             'Test::Tester::Capture' => '1.302160',
16143             'Test::Tester::CaptureRunner'=> '1.302160',
16144             'Test::Tester::Delegate'=> '1.302160',
16145             'Test::use::ok' => '1.302160',
16146             'Unicode::Collate' => '1.27',
16147             'Unicode::Collate::CJK::Big5'=> '1.27',
16148             'Unicode::Collate::CJK::GB2312'=> '1.27',
16149             'Unicode::Collate::CJK::JISX0208'=> '1.27',
16150             'Unicode::Collate::CJK::Korean'=> '1.27',
16151             'Unicode::Collate::CJK::Pinyin'=> '1.27',
16152             'Unicode::Collate::CJK::Stroke'=> '1.27',
16153             'Unicode::Collate::CJK::Zhuyin'=> '1.27',
16154             'Unicode::Collate::Locale'=> '1.27',
16155             'lib' => '0.65',
16156             'ok' => '1.302160',
16157             },
16158             removed => {
16159             'Math::BigInt::CalcEmu' => 1,
16160             }
16161             },
16162             5.029008 => {
16163             delta_from => 5.029007,
16164             changed => {
16165             'B' => '1.76',
16166             'B::Op_private' => '5.029008',
16167             'Config' => '5.029008',
16168             'Devel::PPPort' => '3.44',
16169             'Encode' => '3.00',
16170             'Encode::Unicode' => '2.18',
16171             'ExtUtils::Miniperl' => '1.09',
16172             'IO' => '1.40',
16173             'IO::Dir' => '1.40',
16174             'IO::File' => '1.40',
16175             'IO::Handle' => '1.40',
16176             'IO::Pipe' => '1.40',
16177             'IO::Poll' => '1.40',
16178             'IO::Seekable' => '1.40',
16179             'IO::Select' => '1.40',
16180             'IO::Socket' => '1.40',
16181             'IO::Socket::INET' => '1.40',
16182             'IO::Socket::UNIX' => '1.40',
16183             'JSON::PP' => '4.00',
16184             'JSON::PP::Boolean' => '4.00',
16185             'Module::CoreList' => '5.20190220',
16186             'Module::CoreList::Utils'=> '5.20190220',
16187             'Module::Load' => '0.34',
16188             'Net::Ping' => '2.71',
16189             'POSIX' => '1.87',
16190             'Test2' => '1.302162',
16191             'Test2::API' => '1.302162',
16192             'Test2::API::Breakage' => '1.302162',
16193             'Test2::API::Context' => '1.302162',
16194             'Test2::API::Instance' => '1.302162',
16195             'Test2::API::Stack' => '1.302162',
16196             'Test2::Event' => '1.302162',
16197             'Test2::Event::Bail' => '1.302162',
16198             'Test2::Event::Diag' => '1.302162',
16199             'Test2::Event::Encoding'=> '1.302162',
16200             'Test2::Event::Exception'=> '1.302162',
16201             'Test2::Event::Fail' => '1.302162',
16202             'Test2::Event::Generic' => '1.302162',
16203             'Test2::Event::Note' => '1.302162',
16204             'Test2::Event::Ok' => '1.302162',
16205             'Test2::Event::Pass' => '1.302162',
16206             'Test2::Event::Plan' => '1.302162',
16207             'Test2::Event::Skip' => '1.302162',
16208             'Test2::Event::Subtest' => '1.302162',
16209             'Test2::Event::TAP::Version'=> '1.302162',
16210             'Test2::Event::V2' => '1.302162',
16211             'Test2::Event::Waiting' => '1.302162',
16212             'Test2::EventFacet' => '1.302162',
16213             'Test2::EventFacet::About'=> '1.302162',
16214             'Test2::EventFacet::Amnesty'=> '1.302162',
16215             'Test2::EventFacet::Assert'=> '1.302162',
16216             'Test2::EventFacet::Control'=> '1.302162',
16217             'Test2::EventFacet::Error'=> '1.302162',
16218             'Test2::EventFacet::Hub'=> '1.302162',
16219             'Test2::EventFacet::Info'=> '1.302162',
16220             'Test2::EventFacet::Meta'=> '1.302162',
16221             'Test2::EventFacet::Parent'=> '1.302162',
16222             'Test2::EventFacet::Plan'=> '1.302162',
16223             'Test2::EventFacet::Render'=> '1.302162',
16224             'Test2::EventFacet::Trace'=> '1.302162',
16225             'Test2::Formatter' => '1.302162',
16226             'Test2::Formatter::TAP' => '1.302162',
16227             'Test2::Hub' => '1.302162',
16228             'Test2::Hub::Interceptor'=> '1.302162',
16229             'Test2::Hub::Interceptor::Terminator'=> '1.302162',
16230             'Test2::Hub::Subtest' => '1.302162',
16231             'Test2::IPC' => '1.302162',
16232             'Test2::IPC::Driver' => '1.302162',
16233             'Test2::IPC::Driver::Files'=> '1.302162',
16234             'Test2::Tools::Tiny' => '1.302162',
16235             'Test2::Util' => '1.302162',
16236             'Test2::Util::ExternalMeta'=> '1.302162',
16237             'Test2::Util::Facets2Legacy'=> '1.302162',
16238             'Test2::Util::HashBase' => '1.302162',
16239             'Test2::Util::Trace' => '1.302162',
16240             'Test::Builder' => '1.302162',
16241             'Test::Builder::Formatter'=> '1.302162',
16242             'Test::Builder::Module' => '1.302162',
16243             'Test::Builder::Tester' => '1.302162',
16244             'Test::Builder::Tester::Color'=> '1.302162',
16245             'Test::Builder::TodoDiag'=> '1.302162',
16246             'Test::More' => '1.302162',
16247             'Test::Simple' => '1.302162',
16248             'Test::Tester' => '1.302162',
16249             'Test::Tester::Capture' => '1.302162',
16250             'Test::Tester::CaptureRunner'=> '1.302162',
16251             'Test::Tester::Delegate'=> '1.302162',
16252             'Test::use::ok' => '1.302162',
16253             'XS::APItest' => '1.00',
16254             'deprecate' => '0.04',
16255             'ok' => '1.302162',
16256             'perlfaq' => '5.20190126',
16257             },
16258             removed => {
16259             }
16260             },
16261             5.029009 => {
16262             delta_from => 5.029008,
16263             changed => {
16264             'B::Op_private' => '5.029009',
16265             'Config' => '5.029009',
16266             'Devel::PPPort' => '3.45',
16267             'Encode' => '3.01',
16268             'ExtUtils::Manifest' => '1.72',
16269             'JSON::PP' => '4.02',
16270             'JSON::PP::Boolean' => '4.02',
16271             'Module::CoreList' => '5.20190320',
16272             'Module::CoreList::Utils'=> '5.20190320',
16273             'PerlIO::encoding' => '0.27',
16274             'Unicode' => '12.0.0',
16275             'threads::shared' => '1.60',
16276             'utf8' => '1.22',
16277             'warnings' => '1.44',
16278             },
16279             removed => {
16280             }
16281             },
16282             5.028002 => {
16283             delta_from => 5.028001,
16284             changed => {
16285             'B::Op_private' => '5.028002',
16286             'Config' => '5.028002',
16287             'Module::CoreList' => '5.20190419',
16288             'Module::CoreList::Utils'=> '5.20190419',
16289             'PerlIO::scalar' => '0.30',
16290             'Storable' => '3.08_01',
16291             },
16292             removed => {
16293             }
16294             },
16295             5.029010 => {
16296             delta_from => 5.029009,
16297             changed => {
16298             'B::Op_private' => '5.029010',
16299             'Config' => '5.02901',
16300             'Cwd' => '3.78',
16301             'Data::Dumper' => '2.174',
16302             'ExtUtils::CBuilder' => '0.280231',
16303             'ExtUtils::CBuilder::Base'=> '0.280231',
16304             'ExtUtils::CBuilder::Platform::Unix'=> '0.280231',
16305             'ExtUtils::CBuilder::Platform::VMS'=> '0.280231',
16306             'ExtUtils::CBuilder::Platform::Windows'=> '0.280231',
16307             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280231',
16308             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280231',
16309             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280231',
16310             'ExtUtils::CBuilder::Platform::aix'=> '0.280231',
16311             'ExtUtils::CBuilder::Platform::android'=> '0.280231',
16312             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280231',
16313             'ExtUtils::CBuilder::Platform::darwin'=> '0.280231',
16314             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280231',
16315             'ExtUtils::CBuilder::Platform::os2'=> '0.280231',
16316             'File::Spec' => '3.78',
16317             'File::Spec::AmigaOS' => '3.78',
16318             'File::Spec::Cygwin' => '3.78',
16319             'File::Spec::Epoc' => '3.78',
16320             'File::Spec::Functions' => '3.78',
16321             'File::Spec::Mac' => '3.78',
16322             'File::Spec::OS2' => '3.78',
16323             'File::Spec::Unix' => '3.78',
16324             'File::Spec::VMS' => '3.78',
16325             'File::Spec::Win32' => '3.78',
16326             'I18N::Langinfo' => '0.18',
16327             'Module::CoreList' => '5.20190420',
16328             'Module::CoreList::Utils'=> '5.20190420',
16329             'Module::Metadata' => '1.000036',
16330             'POSIX' => '1.88',
16331             'Storable' => '3.15',
16332             'Unicode' => '12.1.0',
16333             },
16334             removed => {
16335             }
16336             },
16337             5.030000 => {
16338             delta_from => 5.02901,
16339             changed => {
16340             'B::Op_private' => '5.030000',
16341             'Config' => '5.03',
16342             'Devel::PPPort' => '3.52',
16343             'Module::CoreList' => '5.20190522',
16344             'Module::CoreList::Utils'=> '5.20190522',
16345             'XS::Typemap' => '0.17',
16346             },
16347             removed => {
16348             }
16349             },
16350             5.031000 => {
16351             delta_from => 5.03,
16352             changed => {
16353             'B::Op_private' => '5.031000',
16354             'Config' => '5.031',
16355             'Module::CoreList' => '5.20190524',
16356             'Module::CoreList::Utils'=> '5.20190524',
16357             'Pod::Simple' => '3.36',
16358             'Pod::Simple::BlackBox' => '3.36',
16359             'Pod::Simple::Checker' => '3.36',
16360             'Pod::Simple::Debug' => '3.36',
16361             'Pod::Simple::DumpAsText'=> '3.36',
16362             'Pod::Simple::DumpAsXML'=> '3.36',
16363             'Pod::Simple::HTML' => '3.36',
16364             'Pod::Simple::HTMLBatch'=> '3.36',
16365             'Pod::Simple::JustPod' => undef,
16366             'Pod::Simple::LinkSection'=> '3.36',
16367             'Pod::Simple::Methody' => '3.36',
16368             'Pod::Simple::Progress' => '3.36',
16369             'Pod::Simple::PullParser'=> '3.36',
16370             'Pod::Simple::PullParserEndToken'=> '3.36',
16371             'Pod::Simple::PullParserStartToken'=> '3.36',
16372             'Pod::Simple::PullParserTextToken'=> '3.36',
16373             'Pod::Simple::PullParserToken'=> '3.36',
16374             'Pod::Simple::RTF' => '3.36',
16375             'Pod::Simple::Search' => '3.36',
16376             'Pod::Simple::SimpleTree'=> '3.36',
16377             'Pod::Simple::Text' => '3.36',
16378             'Pod::Simple::TextContent'=> '3.36',
16379             'Pod::Simple::TiedOutFH'=> '3.36',
16380             'Pod::Simple::Transcode'=> '3.36',
16381             'Pod::Simple::TranscodeDumb'=> '3.36',
16382             'Pod::Simple::TranscodeSmart'=> '3.36',
16383             'Pod::Simple::XHTML' => '3.36',
16384             'Pod::Simple::XMLOutStream'=> '3.36',
16385             'Socket' => '2.029',
16386             'feature' => '1.55',
16387             },
16388             removed => {
16389             }
16390             },
16391             5.031001 => {
16392             delta_from => 5.031000,
16393             changed => {
16394             'App::Cpan' => '1.675',
16395             'B::Op_private' => '5.031001',
16396             'CPAN' => '2.27',
16397             'CPAN::Bundle' => '5.5005',
16398             'CPAN::Distribution' => '2.27',
16399             'CPAN::FTP' => '5.5012',
16400             'CPAN::FirstTime' => '5.5314',
16401             'CPAN::HandleConfig' => '5.5011',
16402             'CPAN::Mirrors' => '2.27',
16403             'CPAN::Queue' => '5.5003',
16404             'CPAN::Shell' => '5.5009',
16405             'CPAN::Tarzip' => '5.5013',
16406             'Class::Struct' => '0.66',
16407             'Compress::Raw::Bzip2' => '2.086',
16408             'Compress::Raw::Zlib' => '2.086',
16409             'Compress::Zlib' => '2.086',
16410             'Config' => '5.031001',
16411             'DB_File' => '1.852',
16412             'Devel::PPPort' => '3.53',
16413             'ExtUtils::CBuilder' => '0.280232',
16414             'ExtUtils::Command' => '7.36',
16415             'ExtUtils::Command::MM' => '7.36',
16416             'ExtUtils::Liblist' => '7.36',
16417             'ExtUtils::Liblist::Kid'=> '7.36',
16418             'ExtUtils::MM' => '7.36',
16419             'ExtUtils::MM_AIX' => '7.36',
16420             'ExtUtils::MM_Any' => '7.36',
16421             'ExtUtils::MM_BeOS' => '7.36',
16422             'ExtUtils::MM_Cygwin' => '7.36',
16423             'ExtUtils::MM_DOS' => '7.36',
16424             'ExtUtils::MM_Darwin' => '7.36',
16425             'ExtUtils::MM_MacOS' => '7.36',
16426             'ExtUtils::MM_NW5' => '7.36',
16427             'ExtUtils::MM_OS2' => '7.36',
16428             'ExtUtils::MM_QNX' => '7.36',
16429             'ExtUtils::MM_UWIN' => '7.36',
16430             'ExtUtils::MM_Unix' => '7.36',
16431             'ExtUtils::MM_VMS' => '7.36',
16432             'ExtUtils::MM_VOS' => '7.36',
16433             'ExtUtils::MM_Win32' => '7.36',
16434             'ExtUtils::MM_Win95' => '7.36',
16435             'ExtUtils::MY' => '7.36',
16436             'ExtUtils::MakeMaker' => '7.36',
16437             'ExtUtils::MakeMaker::Config'=> '7.36',
16438             'ExtUtils::MakeMaker::Locale'=> '7.36',
16439             'ExtUtils::MakeMaker::version'=> '7.36',
16440             'ExtUtils::MakeMaker::version::regex'=> '7.36',
16441             'ExtUtils::Mkbootstrap' => '7.36',
16442             'ExtUtils::Mksymlists' => '7.36',
16443             'ExtUtils::testlib' => '7.36',
16444             'File::Spec::Win32' => '3.79',
16445             'I18N::LangTags' => '0.44',
16446             'IO' => '1.41',
16447             'IO::Compress::Adapter::Bzip2'=> '2.086',
16448             'IO::Compress::Adapter::Deflate'=> '2.086',
16449             'IO::Compress::Adapter::Identity'=> '2.086',
16450             'IO::Compress::Base' => '2.086',
16451             'IO::Compress::Base::Common'=> '2.086',
16452             'IO::Compress::Bzip2' => '2.086',
16453             'IO::Compress::Deflate' => '2.086',
16454             'IO::Compress::Gzip' => '2.086',
16455             'IO::Compress::Gzip::Constants'=> '2.086',
16456             'IO::Compress::RawDeflate'=> '2.086',
16457             'IO::Compress::Zip' => '2.086',
16458             'IO::Compress::Zip::Constants'=> '2.086',
16459             'IO::Compress::Zlib::Constants'=> '2.086',
16460             'IO::Compress::Zlib::Extra'=> '2.086',
16461             'IO::Dir' => '1.41',
16462             'IO::File' => '1.41',
16463             'IO::Handle' => '1.41',
16464             'IO::Pipe' => '1.41',
16465             'IO::Poll' => '1.41',
16466             'IO::Seekable' => '1.41',
16467             'IO::Select' => '1.41',
16468             'IO::Socket' => '1.41',
16469             'IO::Socket::INET' => '1.41',
16470             'IO::Socket::UNIX' => '1.41',
16471             'IO::Uncompress::Adapter::Bunzip2'=> '2.086',
16472             'IO::Uncompress::Adapter::Identity'=> '2.086',
16473             'IO::Uncompress::Adapter::Inflate'=> '2.086',
16474             'IO::Uncompress::AnyInflate'=> '2.086',
16475             'IO::Uncompress::AnyUncompress'=> '2.086',
16476             'IO::Uncompress::Base' => '2.086',
16477             'IO::Uncompress::Bunzip2'=> '2.086',
16478             'IO::Uncompress::Gunzip'=> '2.086',
16479             'IO::Uncompress::Inflate'=> '2.086',
16480             'IO::Uncompress::RawInflate'=> '2.086',
16481             'IO::Uncompress::Unzip' => '2.086',
16482             'Module::CoreList' => '5.20190620',
16483             'Module::CoreList::Utils'=> '5.20190620',
16484             'POSIX' => '1.89',
16485             'Pod::Man' => '4.12',
16486             'Pod::ParseLink' => '4.12',
16487             'Pod::Simple' => '3.38',
16488             'Pod::Simple::BlackBox' => '3.38',
16489             'Pod::Simple::Checker' => '3.38',
16490             'Pod::Simple::Debug' => '3.38',
16491             'Pod::Simple::DumpAsText'=> '3.38',
16492             'Pod::Simple::DumpAsXML'=> '3.38',
16493             'Pod::Simple::HTML' => '3.38',
16494             'Pod::Simple::HTMLBatch'=> '3.38',
16495             'Pod::Simple::LinkSection'=> '3.38',
16496             'Pod::Simple::Methody' => '3.38',
16497             'Pod::Simple::Progress' => '3.38',
16498             'Pod::Simple::PullParser'=> '3.38',
16499             'Pod::Simple::PullParserEndToken'=> '3.38',
16500             'Pod::Simple::PullParserStartToken'=> '3.38',
16501             'Pod::Simple::PullParserTextToken'=> '3.38',
16502             'Pod::Simple::PullParserToken'=> '3.38',
16503             'Pod::Simple::RTF' => '3.38',
16504             'Pod::Simple::Search' => '3.38',
16505             'Pod::Simple::SimpleTree'=> '3.38',
16506             'Pod::Simple::Text' => '3.38',
16507             'Pod::Simple::TextContent'=> '3.38',
16508             'Pod::Simple::TiedOutFH'=> '3.38',
16509             'Pod::Simple::Transcode'=> '3.38',
16510             'Pod::Simple::TranscodeDumb'=> '3.38',
16511             'Pod::Simple::TranscodeSmart'=> '3.38',
16512             'Pod::Simple::XHTML' => '3.38',
16513             'Pod::Simple::XMLOutStream'=> '3.38',
16514             'Pod::Text' => '4.12',
16515             'Pod::Text::Color' => '4.12',
16516             'Pod::Text::Overstrike' => '4.12',
16517             'Pod::Text::Termcap' => '4.12',
16518             'SelfLoader' => '1.26',
16519             'Storable' => '3.16',
16520             'Sys::Hostname' => '1.23',
16521             'Test2' => '1.302164',
16522             'Test2::API' => '1.302164',
16523             'Test2::API::Breakage' => '1.302164',
16524             'Test2::API::Context' => '1.302164',
16525             'Test2::API::Instance' => '1.302164',
16526             'Test2::API::Stack' => '1.302164',
16527             'Test2::Event' => '1.302164',
16528             'Test2::Event::Bail' => '1.302164',
16529             'Test2::Event::Diag' => '1.302164',
16530             'Test2::Event::Encoding'=> '1.302164',
16531             'Test2::Event::Exception'=> '1.302164',
16532             'Test2::Event::Fail' => '1.302164',
16533             'Test2::Event::Generic' => '1.302164',
16534             'Test2::Event::Note' => '1.302164',
16535             'Test2::Event::Ok' => '1.302164',
16536             'Test2::Event::Pass' => '1.302164',
16537             'Test2::Event::Plan' => '1.302164',
16538             'Test2::Event::Skip' => '1.302164',
16539             'Test2::Event::Subtest' => '1.302164',
16540             'Test2::Event::TAP::Version'=> '1.302164',
16541             'Test2::Event::V2' => '1.302164',
16542             'Test2::Event::Waiting' => '1.302164',
16543             'Test2::EventFacet' => '1.302164',
16544             'Test2::EventFacet::About'=> '1.302164',
16545             'Test2::EventFacet::Amnesty'=> '1.302164',
16546             'Test2::EventFacet::Assert'=> '1.302164',
16547             'Test2::EventFacet::Control'=> '1.302164',
16548             'Test2::EventFacet::Error'=> '1.302164',
16549             'Test2::EventFacet::Hub'=> '1.302164',
16550             'Test2::EventFacet::Info'=> '1.302164',
16551             'Test2::EventFacet::Info::Table'=> '1.302164',
16552             'Test2::EventFacet::Meta'=> '1.302164',
16553             'Test2::EventFacet::Parent'=> '1.302164',
16554             'Test2::EventFacet::Plan'=> '1.302164',
16555             'Test2::EventFacet::Render'=> '1.302164',
16556             'Test2::EventFacet::Trace'=> '1.302164',
16557             'Test2::Formatter' => '1.302164',
16558             'Test2::Formatter::TAP' => '1.302164',
16559             'Test2::Hub' => '1.302164',
16560             'Test2::Hub::Interceptor'=> '1.302164',
16561             'Test2::Hub::Interceptor::Terminator'=> '1.302164',
16562             'Test2::Hub::Subtest' => '1.302164',
16563             'Test2::IPC' => '1.302164',
16564             'Test2::IPC::Driver' => '1.302164',
16565             'Test2::IPC::Driver::Files'=> '1.302164',
16566             'Test2::Tools::Tiny' => '1.302164',
16567             'Test2::Util' => '1.302164',
16568             'Test2::Util::ExternalMeta'=> '1.302164',
16569             'Test2::Util::Facets2Legacy'=> '1.302164',
16570             'Test2::Util::HashBase' => '1.302164',
16571             'Test2::Util::Trace' => '1.302164',
16572             'Test::Builder' => '1.302164',
16573             'Test::Builder::Formatter'=> '1.302164',
16574             'Test::Builder::Module' => '1.302164',
16575             'Test::Builder::Tester' => '1.302164',
16576             'Test::Builder::Tester::Color'=> '1.302164',
16577             'Test::Builder::TodoDiag'=> '1.302164',
16578             'Test::More' => '1.302164',
16579             'Test::Simple' => '1.302164',
16580             'Test::Tester' => '1.302164',
16581             'Test::Tester::Capture' => '1.302164',
16582             'Test::Tester::CaptureRunner'=> '1.302164',
16583             'Test::Tester::Delegate'=> '1.302164',
16584             'Test::use::ok' => '1.302164',
16585             'Tie::File' => '1.03',
16586             'Tie::Hash::NamedCapture'=> '0.11',
16587             'Time::HiRes' => '1.9761',
16588             'Unicode::Normalize' => '1.27',
16589             'Unicode::UCD' => '0.73',
16590             'XS::APItest' => '1.01',
16591             'ok' => '1.302164',
16592             'overload' => '1.31',
16593             'warnings' => '1.45',
16594             },
16595             removed => {
16596             'Pod::Find' => 1,
16597             'Pod::InputObjects' => 1,
16598             'Pod::ParseUtils' => 1,
16599             'Pod::Parser' => 1,
16600             'Pod::PlainText' => 1,
16601             'Pod::Select' => 1,
16602             }
16603             },
16604             5.031002 => {
16605             delta_from => 5.031001,
16606             changed => {
16607             'B::Op_private' => '5.031002',
16608             'Config' => '5.031002',
16609             'Devel::PPPort' => '3.54',
16610             'Exporter' => '5.74',
16611             'Exporter::Heavy' => '5.74',
16612             'IPC::Cmd' => '1.04',
16613             'JSON::PP' => '4.04',
16614             'JSON::PP::Boolean' => '4.04',
16615             'Module::CoreList' => '5.20190720',
16616             'Module::CoreList::Utils'=> '5.20190720',
16617             'Opcode' => '1.44',
16618             'PerlIO::encoding' => '0.28',
16619             'Pod::Simple' => '3.39',
16620             'Pod::Simple::BlackBox' => '3.39',
16621             'Pod::Simple::Checker' => '3.39',
16622             'Pod::Simple::Debug' => '3.39',
16623             'Pod::Simple::DumpAsText'=> '3.39',
16624             'Pod::Simple::DumpAsXML'=> '3.39',
16625             'Pod::Simple::HTML' => '3.39',
16626             'Pod::Simple::HTMLBatch'=> '3.39',
16627             'Pod::Simple::LinkSection'=> '3.39',
16628             'Pod::Simple::Methody' => '3.39',
16629             'Pod::Simple::Progress' => '3.39',
16630             'Pod::Simple::PullParser'=> '3.39',
16631             'Pod::Simple::PullParserEndToken'=> '3.39',
16632             'Pod::Simple::PullParserStartToken'=> '3.39',
16633             'Pod::Simple::PullParserTextToken'=> '3.39',
16634             'Pod::Simple::PullParserToken'=> '3.39',
16635             'Pod::Simple::RTF' => '3.39',
16636             'Pod::Simple::Search' => '3.39',
16637             'Pod::Simple::SimpleTree'=> '3.39',
16638             'Pod::Simple::Text' => '3.39',
16639             'Pod::Simple::TextContent'=> '3.39',
16640             'Pod::Simple::TiedOutFH'=> '3.39',
16641             'Pod::Simple::Transcode'=> '3.39',
16642             'Pod::Simple::TranscodeDumb'=> '3.39',
16643             'Pod::Simple::TranscodeSmart'=> '3.39',
16644             'Pod::Simple::XHTML' => '3.39',
16645             'Pod::Simple::XMLOutStream'=> '3.39',
16646             'threads::shared' => '1.61',
16647             },
16648             removed => {
16649             }
16650             },
16651             5.031003 => {
16652             delta_from => 5.031002,
16653             changed => {
16654             'B::Op_private' => '5.031003',
16655             'Compress::Raw::Bzip2' => '2.087',
16656             'Compress::Raw::Zlib' => '2.087',
16657             'Compress::Zlib' => '2.087',
16658             'Config' => '5.031003',
16659             'Devel::PPPort' => '3.55',
16660             'File::Find' => '1.37',
16661             'Getopt::Long' => '2.51',
16662             'I18N::LangTags::Detect'=> '1.08',
16663             'IO::Compress::Adapter::Bzip2'=> '2.087',
16664             'IO::Compress::Adapter::Deflate'=> '2.087',
16665             'IO::Compress::Adapter::Identity'=> '2.087',
16666             'IO::Compress::Base' => '2.087',
16667             'IO::Compress::Base::Common'=> '2.087',
16668             'IO::Compress::Bzip2' => '2.087',
16669             'IO::Compress::Deflate' => '2.087',
16670             'IO::Compress::Gzip' => '2.087',
16671             'IO::Compress::Gzip::Constants'=> '2.087',
16672             'IO::Compress::RawDeflate'=> '2.087',
16673             'IO::Compress::Zip' => '2.087',
16674             'IO::Compress::Zip::Constants'=> '2.087',
16675             'IO::Compress::Zlib::Constants'=> '2.087',
16676             'IO::Compress::Zlib::Extra'=> '2.087',
16677             'IO::Uncompress::Adapter::Bunzip2'=> '2.087',
16678             'IO::Uncompress::Adapter::Identity'=> '2.087',
16679             'IO::Uncompress::Adapter::Inflate'=> '2.087',
16680             'IO::Uncompress::AnyInflate'=> '2.087',
16681             'IO::Uncompress::AnyUncompress'=> '2.087',
16682             'IO::Uncompress::Base' => '2.087',
16683             'IO::Uncompress::Bunzip2'=> '2.087',
16684             'IO::Uncompress::Gunzip'=> '2.087',
16685             'IO::Uncompress::Inflate'=> '2.087',
16686             'IO::Uncompress::RawInflate'=> '2.087',
16687             'IO::Uncompress::Unzip' => '2.087',
16688             'Module::CoreList' => '5.20190820',
16689             'Module::CoreList::Utils'=> '5.20190820',
16690             'PerlIO::via' => '0.18',
16691             'Storable' => '3.17',
16692             'Test2' => '1.302166',
16693             'Test2::API' => '1.302166',
16694             'Test2::API::Breakage' => '1.302166',
16695             'Test2::API::Context' => '1.302166',
16696             'Test2::API::Instance' => '1.302166',
16697             'Test2::API::Stack' => '1.302166',
16698             'Test2::Event' => '1.302166',
16699             'Test2::Event::Bail' => '1.302166',
16700             'Test2::Event::Diag' => '1.302166',
16701             'Test2::Event::Encoding'=> '1.302166',
16702             'Test2::Event::Exception'=> '1.302166',
16703             'Test2::Event::Fail' => '1.302166',
16704             'Test2::Event::Generic' => '1.302166',
16705             'Test2::Event::Note' => '1.302166',
16706             'Test2::Event::Ok' => '1.302166',
16707             'Test2::Event::Pass' => '1.302166',
16708             'Test2::Event::Plan' => '1.302166',
16709             'Test2::Event::Skip' => '1.302166',
16710             'Test2::Event::Subtest' => '1.302166',
16711             'Test2::Event::TAP::Version'=> '1.302166',
16712             'Test2::Event::V2' => '1.302166',
16713             'Test2::Event::Waiting' => '1.302166',
16714             'Test2::EventFacet' => '1.302166',
16715             'Test2::EventFacet::About'=> '1.302166',
16716             'Test2::EventFacet::Amnesty'=> '1.302166',
16717             'Test2::EventFacet::Assert'=> '1.302166',
16718             'Test2::EventFacet::Control'=> '1.302166',
16719             'Test2::EventFacet::Error'=> '1.302166',
16720             'Test2::EventFacet::Hub'=> '1.302166',
16721             'Test2::EventFacet::Info'=> '1.302166',
16722             'Test2::EventFacet::Info::Table'=> '1.302166',
16723             'Test2::EventFacet::Meta'=> '1.302166',
16724             'Test2::EventFacet::Parent'=> '1.302166',
16725             'Test2::EventFacet::Plan'=> '1.302166',
16726             'Test2::EventFacet::Render'=> '1.302166',
16727             'Test2::EventFacet::Trace'=> '1.302166',
16728             'Test2::Formatter' => '1.302166',
16729             'Test2::Formatter::TAP' => '1.302166',
16730             'Test2::Hub' => '1.302166',
16731             'Test2::Hub::Interceptor'=> '1.302166',
16732             'Test2::Hub::Interceptor::Terminator'=> '1.302166',
16733             'Test2::Hub::Subtest' => '1.302166',
16734             'Test2::IPC' => '1.302166',
16735             'Test2::IPC::Driver' => '1.302166',
16736             'Test2::IPC::Driver::Files'=> '1.302166',
16737             'Test2::Tools::Tiny' => '1.302166',
16738             'Test2::Util' => '1.302166',
16739             'Test2::Util::ExternalMeta'=> '1.302166',
16740             'Test2::Util::Facets2Legacy'=> '1.302166',
16741             'Test2::Util::HashBase' => '1.302166',
16742             'Test2::Util::Trace' => '1.302166',
16743             'Test::Builder' => '1.302166',
16744             'Test::Builder::Formatter'=> '1.302166',
16745             'Test::Builder::Module' => '1.302166',
16746             'Test::Builder::Tester' => '1.302166',
16747             'Test::Builder::Tester::Color'=> '1.302166',
16748             'Test::Builder::TodoDiag'=> '1.302166',
16749             'Test::More' => '1.302166',
16750             'Test::Simple' => '1.302166',
16751             'Test::Tester' => '1.302166',
16752             'Test::Tester::Capture' => '1.302166',
16753             'Test::Tester::CaptureRunner'=> '1.302166',
16754             'Test::Tester::Delegate'=> '1.302166',
16755             'Test::use::ok' => '1.302166',
16756             'Thread' => '3.05',
16757             'Time::HiRes' => '1.9762',
16758             'Win32' => '0.53',
16759             'XS::APItest' => '1.02',
16760             'ok' => '1.302166',
16761             },
16762             removed => {
16763             }
16764             },
16765             5.031004 => {
16766             delta_from => 5.031003,
16767             changed => {
16768             'B::Op_private' => '5.031004',
16769             'Config' => '5.031004',
16770             'ExtUtils::Command' => '7.38',
16771             'ExtUtils::Command::MM' => '7.38',
16772             'ExtUtils::Liblist' => '7.38',
16773             'ExtUtils::Liblist::Kid'=> '7.38',
16774             'ExtUtils::MM' => '7.38',
16775             'ExtUtils::MM_AIX' => '7.38',
16776             'ExtUtils::MM_Any' => '7.38',
16777             'ExtUtils::MM_BeOS' => '7.38',
16778             'ExtUtils::MM_Cygwin' => '7.38',
16779             'ExtUtils::MM_DOS' => '7.38',
16780             'ExtUtils::MM_Darwin' => '7.38',
16781             'ExtUtils::MM_MacOS' => '7.38',
16782             'ExtUtils::MM_NW5' => '7.38',
16783             'ExtUtils::MM_OS2' => '7.38',
16784             'ExtUtils::MM_QNX' => '7.38',
16785             'ExtUtils::MM_UWIN' => '7.38',
16786             'ExtUtils::MM_Unix' => '7.38',
16787             'ExtUtils::MM_VMS' => '7.38',
16788             'ExtUtils::MM_VOS' => '7.38',
16789             'ExtUtils::MM_Win32' => '7.38',
16790             'ExtUtils::MM_Win95' => '7.38',
16791             'ExtUtils::MY' => '7.38',
16792             'ExtUtils::MakeMaker' => '7.38',
16793             'ExtUtils::MakeMaker::Config'=> '7.38',
16794             'ExtUtils::MakeMaker::Locale'=> '7.38',
16795             'ExtUtils::MakeMaker::version'=> '7.38',
16796             'ExtUtils::MakeMaker::version::regex'=> '7.38',
16797             'ExtUtils::Mkbootstrap' => '7.38',
16798             'ExtUtils::Mksymlists' => '7.38',
16799             'ExtUtils::testlib' => '7.38',
16800             'I18N::Langinfo' => '0.19',
16801             'List::Util' => '1.52',
16802             'List::Util::XS' => '1.52',
16803             'Module::CoreList' => '5.20190920',
16804             'Module::CoreList::Utils'=> '5.20190920',
16805             'Module::Metadata' => '1.000037',
16806             'Scalar::Util' => '1.52',
16807             'Sub::Util' => '1.52',
16808             'Test2' => '1.302168',
16809             'Test2::API' => '1.302168',
16810             'Test2::API::Breakage' => '1.302168',
16811             'Test2::API::Context' => '1.302168',
16812             'Test2::API::Instance' => '1.302168',
16813             'Test2::API::Stack' => '1.302168',
16814             'Test2::Event' => '1.302168',
16815             'Test2::Event::Bail' => '1.302168',
16816             'Test2::Event::Diag' => '1.302168',
16817             'Test2::Event::Encoding'=> '1.302168',
16818             'Test2::Event::Exception'=> '1.302168',
16819             'Test2::Event::Fail' => '1.302168',
16820             'Test2::Event::Generic' => '1.302168',
16821             'Test2::Event::Note' => '1.302168',
16822             'Test2::Event::Ok' => '1.302168',
16823             'Test2::Event::Pass' => '1.302168',
16824             'Test2::Event::Plan' => '1.302168',
16825             'Test2::Event::Skip' => '1.302168',
16826             'Test2::Event::Subtest' => '1.302168',
16827             'Test2::Event::TAP::Version'=> '1.302168',
16828             'Test2::Event::V2' => '1.302168',
16829             'Test2::Event::Waiting' => '1.302168',
16830             'Test2::EventFacet' => '1.302168',
16831             'Test2::EventFacet::About'=> '1.302168',
16832             'Test2::EventFacet::Amnesty'=> '1.302168',
16833             'Test2::EventFacet::Assert'=> '1.302168',
16834             'Test2::EventFacet::Control'=> '1.302168',
16835             'Test2::EventFacet::Error'=> '1.302168',
16836             'Test2::EventFacet::Hub'=> '1.302168',
16837             'Test2::EventFacet::Info'=> '1.302168',
16838             'Test2::EventFacet::Info::Table'=> '1.302168',
16839             'Test2::EventFacet::Meta'=> '1.302168',
16840             'Test2::EventFacet::Parent'=> '1.302168',
16841             'Test2::EventFacet::Plan'=> '1.302168',
16842             'Test2::EventFacet::Render'=> '1.302168',
16843             'Test2::EventFacet::Trace'=> '1.302168',
16844             'Test2::Formatter' => '1.302168',
16845             'Test2::Formatter::TAP' => '1.302168',
16846             'Test2::Hub' => '1.302168',
16847             'Test2::Hub::Interceptor'=> '1.302168',
16848             'Test2::Hub::Interceptor::Terminator'=> '1.302168',
16849             'Test2::Hub::Subtest' => '1.302168',
16850             'Test2::IPC' => '1.302168',
16851             'Test2::IPC::Driver' => '1.302168',
16852             'Test2::IPC::Driver::Files'=> '1.302168',
16853             'Test2::Tools::Tiny' => '1.302168',
16854             'Test2::Util' => '1.302168',
16855             'Test2::Util::ExternalMeta'=> '1.302168',
16856             'Test2::Util::Facets2Legacy'=> '1.302168',
16857             'Test2::Util::HashBase' => '1.302168',
16858             'Test2::Util::Trace' => '1.302168',
16859             'Test::Builder' => '1.302168',
16860             'Test::Builder::Formatter'=> '1.302168',
16861             'Test::Builder::Module' => '1.302168',
16862             'Test::Builder::Tester' => '1.302168',
16863             'Test::Builder::Tester::Color'=> '1.302168',
16864             'Test::Builder::TodoDiag'=> '1.302168',
16865             'Test::More' => '1.302168',
16866             'Test::Simple' => '1.302168',
16867             'Test::Tester' => '1.302168',
16868             'Test::Tester::Capture' => '1.302168',
16869             'Test::Tester::CaptureRunner'=> '1.302168',
16870             'Test::Tester::Delegate'=> '1.302168',
16871             'Test::use::ok' => '1.302168',
16872             'Time::HiRes' => '1.9763',
16873             'XS::APItest' => '1.03',
16874             'ok' => '1.302168',
16875             're' => '0.38',
16876             },
16877             removed => {
16878             }
16879             },
16880             5.031005 => {
16881             delta_from => 5.031004,
16882             changed => {
16883             'B' => '1.77',
16884             'B::Deparse' => '1.50',
16885             'B::Op_private' => '5.031005',
16886             'Config' => '5.031005',
16887             'Devel::PPPort' => '3.54',
16888             'Digest::MD5' => '2.55_01',
16889             'Dumpvalue' => '1.21',
16890             'ExtUtils::CBuilder' => '0.280233',
16891             'Math::BigFloat' => '1.999817_01',
16892             'Math::BigInt' => '1.999817_01',
16893             'Math::BigInt::Calc' => '1.999817_01',
16894             'Math::BigInt::FastCalc'=> '0.5009',
16895             'Math::BigInt::Lib' => '1.999817_01',
16896             'Module::CoreList' => '5.20191020',
16897             'Module::CoreList::Utils'=> '5.20191020',
16898             'Safe' => '2.41',
16899             'Time::HiRes' => '1.9764',
16900             'XS::APItest' => '1.04',
16901             'threads' => '2.23',
16902             },
16903             removed => {
16904             }
16905             },
16906             5.030001 => {
16907             delta_from => 5.030000,
16908             changed => {
16909             'B::Op_private' => '5.030001',
16910             'Config' => '5.030001',
16911             'Module::CoreList' => '5.20191110',
16912             'Module::CoreList::Utils'=> '5.20191110',
16913             },
16914             removed => {
16915             }
16916             },
16917             5.031006 => {
16918             delta_from => 5.031005,
16919             changed => {
16920             'B::Deparse' => '1.51',
16921             'B::Op_private' => '5.031006',
16922             'Compress::Raw::Bzip2' => '2.090',
16923             'Compress::Raw::Zlib' => '2.090',
16924             'Compress::Zlib' => '2.090',
16925             'Config' => '5.031006',
16926             'Devel::PPPort' => '3.55',
16927             'DynaLoader' => '1.46',
16928             'IO::Compress::Adapter::Bzip2'=> '2.090',
16929             'IO::Compress::Adapter::Deflate'=> '2.090',
16930             'IO::Compress::Adapter::Identity'=> '2.090',
16931             'IO::Compress::Base' => '2.090',
16932             'IO::Compress::Base::Common'=> '2.090',
16933             'IO::Compress::Bzip2' => '2.090',
16934             'IO::Compress::Deflate' => '2.090',
16935             'IO::Compress::Gzip' => '2.090',
16936             'IO::Compress::Gzip::Constants'=> '2.090',
16937             'IO::Compress::RawDeflate'=> '2.090',
16938             'IO::Compress::Zip' => '2.090',
16939             'IO::Compress::Zip::Constants'=> '2.090',
16940             'IO::Compress::Zlib::Constants'=> '2.090',
16941             'IO::Compress::Zlib::Extra'=> '2.090',
16942             'IO::Uncompress::Adapter::Bunzip2'=> '2.090',
16943             'IO::Uncompress::Adapter::Identity'=> '2.090',
16944             'IO::Uncompress::Adapter::Inflate'=> '2.090',
16945             'IO::Uncompress::AnyInflate'=> '2.090',
16946             'IO::Uncompress::AnyUncompress'=> '2.090',
16947             'IO::Uncompress::Base' => '2.090',
16948             'IO::Uncompress::Bunzip2'=> '2.090',
16949             'IO::Uncompress::Gunzip'=> '2.090',
16950             'IO::Uncompress::Inflate'=> '2.090',
16951             'IO::Uncompress::RawInflate'=> '2.090',
16952             'IO::Uncompress::Unzip' => '2.090',
16953             'List::Util' => '1.53',
16954             'List::Util::XS' => '1.53',
16955             'Math::BigFloat' => '1.999818',
16956             'Math::BigInt' => '1.999818',
16957             'Math::BigInt::Calc' => '1.999818',
16958             'Math::BigInt::Lib' => '1.999818',
16959             'Module::CoreList' => '5.20191120',
16960             'Module::CoreList::Utils'=> '5.20191120',
16961             'Module::Load::Conditional'=> '0.70',
16962             'POSIX' => '1.90',
16963             'Pod::Simple' => '3.40',
16964             'Pod::Simple::BlackBox' => '3.40',
16965             'Pod::Simple::Checker' => '3.40',
16966             'Pod::Simple::Debug' => '3.40',
16967             'Pod::Simple::DumpAsText'=> '3.40',
16968             'Pod::Simple::DumpAsXML'=> '3.40',
16969             'Pod::Simple::HTML' => '3.40',
16970             'Pod::Simple::HTMLBatch'=> '3.40',
16971             'Pod::Simple::LinkSection'=> '3.40',
16972             'Pod::Simple::Methody' => '3.40',
16973             'Pod::Simple::Progress' => '3.40',
16974             'Pod::Simple::PullParser'=> '3.40',
16975             'Pod::Simple::PullParserEndToken'=> '3.40',
16976             'Pod::Simple::PullParserStartToken'=> '3.40',
16977             'Pod::Simple::PullParserTextToken'=> '3.40',
16978             'Pod::Simple::PullParserToken'=> '3.40',
16979             'Pod::Simple::RTF' => '3.40',
16980             'Pod::Simple::Search' => '3.40',
16981             'Pod::Simple::SimpleTree'=> '3.40',
16982             'Pod::Simple::Text' => '3.40',
16983             'Pod::Simple::TextContent'=> '3.40',
16984             'Pod::Simple::TiedOutFH'=> '3.40',
16985             'Pod::Simple::Transcode'=> '3.40',
16986             'Pod::Simple::TranscodeDumb'=> '3.40',
16987             'Pod::Simple::TranscodeSmart'=> '3.40',
16988             'Pod::Simple::XHTML' => '3.40',
16989             'Pod::Simple::XMLOutStream'=> '3.40',
16990             'Scalar::Util' => '1.53',
16991             'Sub::Util' => '1.53',
16992             'Sys::Syslog' => '0.36',
16993             'Test2' => '1.302169',
16994             'Test2::API' => '1.302169',
16995             'Test2::API::Breakage' => '1.302169',
16996             'Test2::API::Context' => '1.302169',
16997             'Test2::API::Instance' => '1.302169',
16998             'Test2::API::Stack' => '1.302169',
16999             'Test2::Event' => '1.302169',
17000             'Test2::Event::Bail' => '1.302169',
17001             'Test2::Event::Diag' => '1.302169',
17002             'Test2::Event::Encoding'=> '1.302169',
17003             'Test2::Event::Exception'=> '1.302169',
17004             'Test2::Event::Fail' => '1.302169',
17005             'Test2::Event::Generic' => '1.302169',
17006             'Test2::Event::Note' => '1.302169',
17007             'Test2::Event::Ok' => '1.302169',
17008             'Test2::Event::Pass' => '1.302169',
17009             'Test2::Event::Plan' => '1.302169',
17010             'Test2::Event::Skip' => '1.302169',
17011             'Test2::Event::Subtest' => '1.302169',
17012             'Test2::Event::TAP::Version'=> '1.302169',
17013             'Test2::Event::V2' => '1.302169',
17014             'Test2::Event::Waiting' => '1.302169',
17015             'Test2::EventFacet' => '1.302169',
17016             'Test2::EventFacet::About'=> '1.302169',
17017             'Test2::EventFacet::Amnesty'=> '1.302169',
17018             'Test2::EventFacet::Assert'=> '1.302169',
17019             'Test2::EventFacet::Control'=> '1.302169',
17020             'Test2::EventFacet::Error'=> '1.302169',
17021             'Test2::EventFacet::Hub'=> '1.302169',
17022             'Test2::EventFacet::Info'=> '1.302169',
17023             'Test2::EventFacet::Info::Table'=> '1.302169',
17024             'Test2::EventFacet::Meta'=> '1.302169',
17025             'Test2::EventFacet::Parent'=> '1.302169',
17026             'Test2::EventFacet::Plan'=> '1.302169',
17027             'Test2::EventFacet::Render'=> '1.302169',
17028             'Test2::EventFacet::Trace'=> '1.302169',
17029             'Test2::Formatter' => '1.302169',
17030             'Test2::Formatter::TAP' => '1.302169',
17031             'Test2::Hub' => '1.302169',
17032             'Test2::Hub::Interceptor'=> '1.302169',
17033             'Test2::Hub::Interceptor::Terminator'=> '1.302169',
17034             'Test2::Hub::Subtest' => '1.302169',
17035             'Test2::IPC' => '1.302169',
17036             'Test2::IPC::Driver' => '1.302169',
17037             'Test2::IPC::Driver::Files'=> '1.302169',
17038             'Test2::Tools::Tiny' => '1.302169',
17039             'Test2::Util' => '1.302169',
17040             'Test2::Util::ExternalMeta'=> '1.302169',
17041             'Test2::Util::Facets2Legacy'=> '1.302169',
17042             'Test2::Util::HashBase' => '1.302169',
17043             'Test2::Util::Trace' => '1.302169',
17044             'Test::Builder' => '1.302169',
17045             'Test::Builder::Formatter'=> '1.302169',
17046             'Test::Builder::Module' => '1.302169',
17047             'Test::Builder::Tester' => '1.302169',
17048             'Test::Builder::Tester::Color'=> '1.302169',
17049             'Test::Builder::TodoDiag'=> '1.302169',
17050             'Test::More' => '1.302169',
17051             'Test::Simple' => '1.302169',
17052             'Test::Tester' => '1.302169',
17053             'Test::Tester::Capture' => '1.302169',
17054             'Test::Tester::CaptureRunner'=> '1.302169',
17055             'Test::Tester::Delegate'=> '1.302169',
17056             'Test::use::ok' => '1.302169',
17057             'Tie::StdHandle' => '4.6',
17058             'Unicode::UCD' => '0.74',
17059             'Win32API::File' => '0.1203_01',
17060             'feature' => '1.56',
17061             'mro' => '1.23',
17062             'ok' => '1.302169',
17063             'perlfaq' => '5.20191102',
17064             },
17065             removed => {
17066             }
17067             },
17068             5.031007 => {
17069             delta_from => 5.031006,
17070             changed => {
17071             'B' => '1.78',
17072             'B::Deparse' => '1.52',
17073             'B::Op_private' => '5.031007',
17074             'Compress::Raw::Bzip2' => '2.093',
17075             'Compress::Raw::Zlib' => '2.093',
17076             'Compress::Zlib' => '2.093',
17077             'Config' => '5.031007',
17078             'Devel::PPPort' => '3.56',
17079             'English' => '1.11',
17080             'ExtUtils::Command' => '7.42',
17081             'ExtUtils::Command::MM' => '7.42',
17082             'ExtUtils::Liblist' => '7.42',
17083             'ExtUtils::Liblist::Kid'=> '7.42',
17084             'ExtUtils::MM' => '7.42',
17085             'ExtUtils::MM_AIX' => '7.42',
17086             'ExtUtils::MM_Any' => '7.42',
17087             'ExtUtils::MM_BeOS' => '7.42',
17088             'ExtUtils::MM_Cygwin' => '7.42',
17089             'ExtUtils::MM_DOS' => '7.42',
17090             'ExtUtils::MM_Darwin' => '7.42',
17091             'ExtUtils::MM_MacOS' => '7.42',
17092             'ExtUtils::MM_NW5' => '7.42',
17093             'ExtUtils::MM_OS2' => '7.42',
17094             'ExtUtils::MM_QNX' => '7.42',
17095             'ExtUtils::MM_UWIN' => '7.42',
17096             'ExtUtils::MM_Unix' => '7.42',
17097             'ExtUtils::MM_VMS' => '7.42',
17098             'ExtUtils::MM_VOS' => '7.42',
17099             'ExtUtils::MM_Win32' => '7.42',
17100             'ExtUtils::MM_Win95' => '7.42',
17101             'ExtUtils::MY' => '7.42',
17102             'ExtUtils::MakeMaker' => '7.42',
17103             'ExtUtils::MakeMaker::Config'=> '7.42',
17104             'ExtUtils::MakeMaker::Locale'=> '7.42',
17105             'ExtUtils::MakeMaker::version'=> '7.42',
17106             'ExtUtils::MakeMaker::version::regex'=> '7.42',
17107             'ExtUtils::Mkbootstrap' => '7.42',
17108             'ExtUtils::Mksymlists' => '7.42',
17109             'ExtUtils::testlib' => '7.42',
17110             'File::stat' => '1.09',
17111             'Filter::Simple' => '0.96',
17112             'IO::Compress::Adapter::Bzip2'=> '2.093',
17113             'IO::Compress::Adapter::Deflate'=> '2.093',
17114             'IO::Compress::Adapter::Identity'=> '2.093',
17115             'IO::Compress::Base' => '2.093',
17116             'IO::Compress::Base::Common'=> '2.093',
17117             'IO::Compress::Bzip2' => '2.093',
17118             'IO::Compress::Deflate' => '2.093',
17119             'IO::Compress::Gzip' => '2.093',
17120             'IO::Compress::Gzip::Constants'=> '2.093',
17121             'IO::Compress::RawDeflate'=> '2.093',
17122             'IO::Compress::Zip' => '2.093',
17123             'IO::Compress::Zip::Constants'=> '2.093',
17124             'IO::Compress::Zlib::Constants'=> '2.093',
17125             'IO::Compress::Zlib::Extra'=> '2.093',
17126             'IO::Uncompress::Adapter::Bunzip2'=> '2.093',
17127             'IO::Uncompress::Adapter::Identity'=> '2.093',
17128             'IO::Uncompress::Adapter::Inflate'=> '2.093',
17129             'IO::Uncompress::AnyInflate'=> '2.093',
17130             'IO::Uncompress::AnyUncompress'=> '2.093',
17131             'IO::Uncompress::Base' => '2.093',
17132             'IO::Uncompress::Bunzip2'=> '2.093',
17133             'IO::Uncompress::Gunzip'=> '2.093',
17134             'IO::Uncompress::Inflate'=> '2.093',
17135             'IO::Uncompress::RawInflate'=> '2.093',
17136             'IO::Uncompress::Unzip' => '2.093',
17137             'Module::CoreList' => '5.20191220',
17138             'Module::CoreList::Utils'=> '5.20191220',
17139             'Net::Ping' => '2.72',
17140             'Opcode' => '1.45',
17141             'Storable' => '3.18',
17142             'Test2' => '1.302170',
17143             'Test2::API' => '1.302170',
17144             'Test2::API::Breakage' => '1.302170',
17145             'Test2::API::Context' => '1.302170',
17146             'Test2::API::Instance' => '1.302170',
17147             'Test2::API::Stack' => '1.302170',
17148             'Test2::Event' => '1.302170',
17149             'Test2::Event::Bail' => '1.302170',
17150             'Test2::Event::Diag' => '1.302170',
17151             'Test2::Event::Encoding'=> '1.302170',
17152             'Test2::Event::Exception'=> '1.302170',
17153             'Test2::Event::Fail' => '1.302170',
17154             'Test2::Event::Generic' => '1.302170',
17155             'Test2::Event::Note' => '1.302170',
17156             'Test2::Event::Ok' => '1.302170',
17157             'Test2::Event::Pass' => '1.302170',
17158             'Test2::Event::Plan' => '1.302170',
17159             'Test2::Event::Skip' => '1.302170',
17160             'Test2::Event::Subtest' => '1.302170',
17161             'Test2::Event::TAP::Version'=> '1.302170',
17162             'Test2::Event::V2' => '1.302170',
17163             'Test2::Event::Waiting' => '1.302170',
17164             'Test2::EventFacet' => '1.302170',
17165             'Test2::EventFacet::About'=> '1.302170',
17166             'Test2::EventFacet::Amnesty'=> '1.302170',
17167             'Test2::EventFacet::Assert'=> '1.302170',
17168             'Test2::EventFacet::Control'=> '1.302170',
17169             'Test2::EventFacet::Error'=> '1.302170',
17170             'Test2::EventFacet::Hub'=> '1.302170',
17171             'Test2::EventFacet::Info'=> '1.302170',
17172             'Test2::EventFacet::Info::Table'=> '1.302170',
17173             'Test2::EventFacet::Meta'=> '1.302170',
17174             'Test2::EventFacet::Parent'=> '1.302170',
17175             'Test2::EventFacet::Plan'=> '1.302170',
17176             'Test2::EventFacet::Render'=> '1.302170',
17177             'Test2::EventFacet::Trace'=> '1.302170',
17178             'Test2::Formatter' => '1.302170',
17179             'Test2::Formatter::TAP' => '1.302170',
17180             'Test2::Hub' => '1.302170',
17181             'Test2::Hub::Interceptor'=> '1.302170',
17182             'Test2::Hub::Interceptor::Terminator'=> '1.302170',
17183             'Test2::Hub::Subtest' => '1.302170',
17184             'Test2::IPC' => '1.302170',
17185             'Test2::IPC::Driver' => '1.302170',
17186             'Test2::IPC::Driver::Files'=> '1.302170',
17187             'Test2::Tools::Tiny' => '1.302170',
17188             'Test2::Util' => '1.302170',
17189             'Test2::Util::ExternalMeta'=> '1.302170',
17190             'Test2::Util::Facets2Legacy'=> '1.302170',
17191             'Test2::Util::HashBase' => '1.302170',
17192             'Test2::Util::Trace' => '1.302170',
17193             'Test::Builder' => '1.302170',
17194             'Test::Builder::Formatter'=> '1.302170',
17195             'Test::Builder::Module' => '1.302170',
17196             'Test::Builder::Tester' => '1.302170',
17197             'Test::Builder::Tester::Color'=> '1.302170',
17198             'Test::Builder::TodoDiag'=> '1.302170',
17199             'Test::More' => '1.302170',
17200             'Test::Simple' => '1.302170',
17201             'Test::Tester' => '1.302170',
17202             'Test::Tester::Capture' => '1.302170',
17203             'Test::Tester::CaptureRunner'=> '1.302170',
17204             'Test::Tester::Delegate'=> '1.302170',
17205             'Test::use::ok' => '1.302170',
17206             'Tie::Hash::NamedCapture'=> '0.13',
17207             'VMS::Stdio' => '2.45',
17208             'XS::APItest' => '1.05',
17209             'feature' => '1.57',
17210             'ok' => '1.302170',
17211             'warnings' => '1.46',
17212             },
17213             removed => {
17214             }
17215             },
17216             5.031008 => {
17217             delta_from => 5.031007,
17218             changed => {
17219             'B::Op_private' => '5.031008',
17220             'Config' => '5.031008',
17221             'DB_File' => '1.853',
17222             'Encode' => '3.02',
17223             'ExtUtils::Command' => '7.44',
17224             'ExtUtils::Command::MM' => '7.44',
17225             'ExtUtils::Liblist' => '7.44',
17226             'ExtUtils::Liblist::Kid'=> '7.44',
17227             'ExtUtils::MM' => '7.44',
17228             'ExtUtils::MM_AIX' => '7.44',
17229             'ExtUtils::MM_Any' => '7.44',
17230             'ExtUtils::MM_BeOS' => '7.44',
17231             'ExtUtils::MM_Cygwin' => '7.44',
17232             'ExtUtils::MM_DOS' => '7.44',
17233             'ExtUtils::MM_Darwin' => '7.44',
17234             'ExtUtils::MM_MacOS' => '7.44',
17235             'ExtUtils::MM_NW5' => '7.44',
17236             'ExtUtils::MM_OS2' => '7.44',
17237             'ExtUtils::MM_QNX' => '7.44',
17238             'ExtUtils::MM_UWIN' => '7.44',
17239             'ExtUtils::MM_Unix' => '7.44',
17240             'ExtUtils::MM_VMS' => '7.44',
17241             'ExtUtils::MM_VOS' => '7.44',
17242             'ExtUtils::MM_Win32' => '7.44',
17243             'ExtUtils::MM_Win95' => '7.44',
17244             'ExtUtils::MY' => '7.44',
17245             'ExtUtils::MakeMaker' => '7.44',
17246             'ExtUtils::MakeMaker::Config'=> '7.44',
17247             'ExtUtils::MakeMaker::Locale'=> '7.44',
17248             'ExtUtils::MakeMaker::version'=> '7.44',
17249             'ExtUtils::MakeMaker::version::regex'=> '7.44',
17250             'ExtUtils::Mkbootstrap' => '7.44',
17251             'ExtUtils::Mksymlists' => '7.44',
17252             'ExtUtils::testlib' => '7.44',
17253             'Fatal' => '2.32',
17254             'Hash::Util' => '0.23',
17255             'IO' => '1.42',
17256             'IO::Handle' => '1.42',
17257             'IO::Socket' => '1.42',
17258             'Module::CoreList' => '5.20200120',
17259             'Module::CoreList::Utils'=> '5.20200120',
17260             'POSIX' => '1.91',
17261             'Pod::Man' => '4.14',
17262             'Pod::ParseLink' => '4.14',
17263             'Pod::Text' => '4.14',
17264             'Pod::Text::Color' => '4.14',
17265             'Pod::Text::Overstrike' => '4.14',
17266             'Pod::Text::Termcap' => '4.14',
17267             'Term::ANSIColor' => '5.01',
17268             'Test2' => '1.302171',
17269             'Test2::API' => '1.302171',
17270             'Test2::API::Breakage' => '1.302171',
17271             'Test2::API::Context' => '1.302171',
17272             'Test2::API::Instance' => '1.302171',
17273             'Test2::API::Stack' => '1.302171',
17274             'Test2::Event' => '1.302171',
17275             'Test2::Event::Bail' => '1.302171',
17276             'Test2::Event::Diag' => '1.302171',
17277             'Test2::Event::Encoding'=> '1.302171',
17278             'Test2::Event::Exception'=> '1.302171',
17279             'Test2::Event::Fail' => '1.302171',
17280             'Test2::Event::Generic' => '1.302171',
17281             'Test2::Event::Note' => '1.302171',
17282             'Test2::Event::Ok' => '1.302171',
17283             'Test2::Event::Pass' => '1.302171',
17284             'Test2::Event::Plan' => '1.302171',
17285             'Test2::Event::Skip' => '1.302171',
17286             'Test2::Event::Subtest' => '1.302171',
17287             'Test2::Event::TAP::Version'=> '1.302171',
17288             'Test2::Event::V2' => '1.302171',
17289             'Test2::Event::Waiting' => '1.302171',
17290             'Test2::EventFacet' => '1.302171',
17291             'Test2::EventFacet::About'=> '1.302171',
17292             'Test2::EventFacet::Amnesty'=> '1.302171',
17293             'Test2::EventFacet::Assert'=> '1.302171',
17294             'Test2::EventFacet::Control'=> '1.302171',
17295             'Test2::EventFacet::Error'=> '1.302171',
17296             'Test2::EventFacet::Hub'=> '1.302171',
17297             'Test2::EventFacet::Info'=> '1.302171',
17298             'Test2::EventFacet::Info::Table'=> '1.302171',
17299             'Test2::EventFacet::Meta'=> '1.302171',
17300             'Test2::EventFacet::Parent'=> '1.302171',
17301             'Test2::EventFacet::Plan'=> '1.302171',
17302             'Test2::EventFacet::Render'=> '1.302171',
17303             'Test2::EventFacet::Trace'=> '1.302171',
17304             'Test2::Formatter' => '1.302171',
17305             'Test2::Formatter::TAP' => '1.302171',
17306             'Test2::Hub' => '1.302171',
17307             'Test2::Hub::Interceptor'=> '1.302171',
17308             'Test2::Hub::Interceptor::Terminator'=> '1.302171',
17309             'Test2::Hub::Subtest' => '1.302171',
17310             'Test2::IPC' => '1.302171',
17311             'Test2::IPC::Driver' => '1.302171',
17312             'Test2::IPC::Driver::Files'=> '1.302171',
17313             'Test2::Tools::Tiny' => '1.302171',
17314             'Test2::Util' => '1.302171',
17315             'Test2::Util::ExternalMeta'=> '1.302171',
17316             'Test2::Util::Facets2Legacy'=> '1.302171',
17317             'Test2::Util::HashBase' => '1.302171',
17318             'Test2::Util::Trace' => '1.302171',
17319             'Test::Builder' => '1.302171',
17320             'Test::Builder::Formatter'=> '1.302171',
17321             'Test::Builder::Module' => '1.302171',
17322             'Test::Builder::Tester' => '1.302171',
17323             'Test::Builder::Tester::Color'=> '1.302171',
17324             'Test::Builder::TodoDiag'=> '1.302171',
17325             'Test::More' => '1.302171',
17326             'Test::Simple' => '1.302171',
17327             'Test::Tester' => '1.302171',
17328             'Test::Tester::Capture' => '1.302171',
17329             'Test::Tester::CaptureRunner'=> '1.302171',
17330             'Test::Tester::Delegate'=> '1.302171',
17331             'Test::use::ok' => '1.302171',
17332             'XS::APItest' => '1.06',
17333             'autodie' => '2.32',
17334             'autodie::Scope::Guard' => '2.32',
17335             'autodie::Scope::GuardStack'=> '2.32',
17336             'autodie::Util' => '2.32',
17337             'autodie::exception' => '2.32',
17338             'autodie::exception::system'=> '2.32',
17339             'autodie::hints' => '2.32',
17340             'autodie::skip' => '2.32',
17341             'ok' => '1.302171',
17342             },
17343             removed => {
17344             }
17345             },
17346             5.031009 => {
17347             delta_from => 5.031008,
17348             changed => {
17349             'Archive::Tar' => '2.36',
17350             'Archive::Tar::Constant'=> '2.36',
17351             'Archive::Tar::File' => '2.36',
17352             'B' => '1.80',
17353             'B::Op_private' => '5.031009',
17354             'Config' => '5.031009',
17355             'Devel::PPPort' => '3.57',
17356             'Encode' => '3.03',
17357             'ExtUtils::CBuilder' => '0.280234',
17358             'ExtUtils::CBuilder::Base'=> '0.280234',
17359             'ExtUtils::CBuilder::Platform::Unix'=> '0.280234',
17360             'ExtUtils::CBuilder::Platform::VMS'=> '0.280234',
17361             'ExtUtils::CBuilder::Platform::Windows'=> '0.280234',
17362             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280234',
17363             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280234',
17364             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280234',
17365             'ExtUtils::CBuilder::Platform::aix'=> '0.280234',
17366             'ExtUtils::CBuilder::Platform::android'=> '0.280234',
17367             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280234',
17368             'ExtUtils::CBuilder::Platform::darwin'=> '0.280234',
17369             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280234',
17370             'ExtUtils::CBuilder::Platform::os2'=> '0.280234',
17371             'IO' => '1.43',
17372             'IO::Select' => '1.42',
17373             'IO::Socket' => '1.43',
17374             'Module::CoreList' => '5.20200220',
17375             'Module::CoreList::Utils'=> '5.20200220',
17376             'POSIX' => '1.92',
17377             'Pod::Html' => '1.25',
17378             'Storable' => '3.19',
17379             'Tie::File' => '1.06',
17380             'Unicode' => '13.0.0',
17381             'XS::APItest' => '1.07',
17382             '_charnames' => '1.46',
17383             'charnames' => '1.46',
17384             'diagnostics' => '1.37',
17385             'feature' => '1.58',
17386             'parent' => '0.238',
17387             'perlfaq' => '5.20200125',
17388             'threads' => '2.24',
17389             },
17390             removed => {
17391             }
17392             },
17393             5.030002 => {
17394             delta_from => 5.030001,
17395             changed => {
17396             'B::Op_private' => '5.030002',
17397             'Compress::Raw::Bzip2' => '2.089',
17398             'Config' => '5.030002',
17399             'Module::CoreList' => '5.20200314',
17400             'Module::CoreList::Utils'=> '5.20200314',
17401             },
17402             removed => {
17403             }
17404             },
17405             5.031010 => {
17406             delta_from => 5.031009,
17407             changed => {
17408             'B::Op_private' => '5.031010',
17409             'Config' => '5.03101',
17410             },
17411             removed => {
17412             }
17413             },
17414             5.031011 => {
17415             delta_from => 5.031010,
17416             changed => {
17417             'B::Deparse' => '1.53',
17418             'B::Op_private' => '5.031011',
17419             'Config' => '5.031011',
17420             'DynaLoader' => '1.47',
17421             'Encode' => '3.04',
17422             'IPC::Open2' => '1.05',
17423             'IPC::Open3' => '1.21',
17424             'Module::CoreList' => '5.20200428',
17425             'Module::CoreList::Utils'=> '5.20200428',
17426             'Opcode' => '1.47',
17427             'POSIX' => '1.93',
17428             'PerlIO' => '1.11',
17429             'Storable' => '3.20',
17430             'Test2' => '1.302175',
17431             'Test2::API' => '1.302175',
17432             'Test2::API::Breakage' => '1.302175',
17433             'Test2::API::Context' => '1.302175',
17434             'Test2::API::Instance' => '1.302175',
17435             'Test2::API::Stack' => '1.302175',
17436             'Test2::Event' => '1.302175',
17437             'Test2::Event::Bail' => '1.302175',
17438             'Test2::Event::Diag' => '1.302175',
17439             'Test2::Event::Encoding'=> '1.302175',
17440             'Test2::Event::Exception'=> '1.302175',
17441             'Test2::Event::Fail' => '1.302175',
17442             'Test2::Event::Generic' => '1.302175',
17443             'Test2::Event::Note' => '1.302175',
17444             'Test2::Event::Ok' => '1.302175',
17445             'Test2::Event::Pass' => '1.302175',
17446             'Test2::Event::Plan' => '1.302175',
17447             'Test2::Event::Skip' => '1.302175',
17448             'Test2::Event::Subtest' => '1.302175',
17449             'Test2::Event::TAP::Version'=> '1.302175',
17450             'Test2::Event::V2' => '1.302175',
17451             'Test2::Event::Waiting' => '1.302175',
17452             'Test2::EventFacet' => '1.302175',
17453             'Test2::EventFacet::About'=> '1.302175',
17454             'Test2::EventFacet::Amnesty'=> '1.302175',
17455             'Test2::EventFacet::Assert'=> '1.302175',
17456             'Test2::EventFacet::Control'=> '1.302175',
17457             'Test2::EventFacet::Error'=> '1.302175',
17458             'Test2::EventFacet::Hub'=> '1.302175',
17459             'Test2::EventFacet::Info'=> '1.302175',
17460             'Test2::EventFacet::Info::Table'=> '1.302175',
17461             'Test2::EventFacet::Meta'=> '1.302175',
17462             'Test2::EventFacet::Parent'=> '1.302175',
17463             'Test2::EventFacet::Plan'=> '1.302175',
17464             'Test2::EventFacet::Render'=> '1.302175',
17465             'Test2::EventFacet::Trace'=> '1.302175',
17466             'Test2::Formatter' => '1.302175',
17467             'Test2::Formatter::TAP' => '1.302175',
17468             'Test2::Hub' => '1.302175',
17469             'Test2::Hub::Interceptor'=> '1.302175',
17470             'Test2::Hub::Interceptor::Terminator'=> '1.302175',
17471             'Test2::Hub::Subtest' => '1.302175',
17472             'Test2::IPC' => '1.302175',
17473             'Test2::IPC::Driver' => '1.302175',
17474             'Test2::IPC::Driver::Files'=> '1.302175',
17475             'Test2::Tools::Tiny' => '1.302175',
17476             'Test2::Util' => '1.302175',
17477             'Test2::Util::ExternalMeta'=> '1.302175',
17478             'Test2::Util::Facets2Legacy'=> '1.302175',
17479             'Test2::Util::HashBase' => '1.302175',
17480             'Test2::Util::Trace' => '1.302175',
17481             'Test::Builder' => '1.302175',
17482             'Test::Builder::Formatter'=> '1.302175',
17483             'Test::Builder::Module' => '1.302175',
17484             'Test::Builder::Tester' => '1.302175',
17485             'Test::Builder::Tester::Color'=> '1.302175',
17486             'Test::Builder::TodoDiag'=> '1.302175',
17487             'Test::More' => '1.302175',
17488             'Test::Simple' => '1.302175',
17489             'Test::Tester' => '1.302175',
17490             'Test::Tester::Capture' => '1.302175',
17491             'Test::Tester::CaptureRunner'=> '1.302175',
17492             'Test::Tester::Delegate'=> '1.302175',
17493             'Test::use::ok' => '1.302175',
17494             'Time::Piece' => '1.3401',
17495             'Time::Seconds' => '1.3401',
17496             'Unicode::UCD' => '0.75',
17497             'XS::APItest' => '1.09',
17498             '_charnames' => '1.47',
17499             'charnames' => '1.47',
17500             'ok' => '1.302175',
17501             'open' => '1.12',
17502             're' => '0.39',
17503             'warnings' => '1.47',
17504             },
17505             removed => {
17506             }
17507             },
17508             5.028003 => {
17509             delta_from => 5.028002,
17510             changed => {
17511             'B::Op_private' => '5.028003',
17512             'Config' => '5.028003',
17513             'Module::CoreList' => '5.20200601_28',
17514             'Module::CoreList::Utils'=> '5.20200601_28',
17515             },
17516             removed => {
17517             }
17518             },
17519             5.030003 => {
17520             delta_from => 5.030002,
17521             changed => {
17522             'B::Op_private' => '5.030003',
17523             'Config' => '5.030003',
17524             'Module::CoreList' => '5.20200601_30',
17525             'Module::CoreList::Utils'=> '5.20200601_30',
17526             },
17527             removed => {
17528             }
17529             },
17530             5.032000 => {
17531             delta_from => 5.031011,
17532             changed => {
17533             'B::Deparse' => '1.54',
17534             'B::Op_private' => '5.032000',
17535             'Benchmark' => '1.23',
17536             'Config' => '5.032',
17537             'Encode' => '3.06',
17538             'Encode::Guess' => '2.08',
17539             'File::Glob' => '1.33',
17540             'List::Util' => '1.55',
17541             'List::Util::XS' => '1.55',
17542             'Module::CoreList' => '5.20200620',
17543             'Module::CoreList::Utils'=> '5.20200620',
17544             'POSIX' => '1.94',
17545             'Scalar::Util' => '1.55',
17546             'Storable' => '3.21',
17547             'Sub::Util' => '1.55',
17548             'Thread::Queue' => '3.14',
17549             'Tie::Scalar' => '1.05',
17550             '_charnames' => '1.48',
17551             'charnames' => '1.48',
17552             'encoding' => '3.00',
17553             'perlfaq' => '5.20200523',
17554             're' => '0.40',
17555             'threads' => '2.25',
17556             },
17557             removed => {
17558             }
17559             },
17560             5.033000 => {
17561             delta_from => 5.032000,
17562             changed => {
17563             'B::Op_private' => '5.033000',
17564             'Config' => '5.033',
17565             'Module::CoreList' => '5.20200717',
17566             'Module::CoreList::Utils'=> '5.20200717',
17567             'feature' => '1.59',
17568             },
17569             removed => {
17570             }
17571             },
17572             5.033001 => {
17573             delta_from => 5.033,
17574             changed => {
17575             'B' => '1.81',
17576             'B::Deparse' => '1.55',
17577             'B::Op_private' => '5.033001',
17578             'Config' => '5.033001',
17579             'Data::Dumper' => '2.175',
17580             'Devel::PPPort' => '3.60',
17581             'Devel::Peek' => '1.29',
17582             'DynaLoader' => '1.48',
17583             'Errno' => '1.31',
17584             'Exporter' => '5.75',
17585             'Exporter::Heavy' => '5.75',
17586             'ExtUtils::Miniperl' => '1.10',
17587             'ExtUtils::PL2Bat' => '0.002',
17588             'ExtUtils::ParseXS' => '3.41',
17589             'ExtUtils::ParseXS::Constants'=> '3.41',
17590             'ExtUtils::ParseXS::CountLines'=> '3.41',
17591             'ExtUtils::ParseXS::Eval'=> '3.41',
17592             'ExtUtils::ParseXS::Utilities'=> '3.41',
17593             'Fcntl' => '1.14',
17594             'File::Path' => '2.17',
17595             'Hash::Util' => '0.24',
17596             'Hash::Util::FieldHash' => '1.21',
17597             'IO' => '1.44',
17598             'IO::Socket' => '1.44',
17599             'IO::Socket::UNIX' => '1.42',
17600             'IPC::Msg' => '2.08',
17601             'IPC::Semaphore' => '2.08',
17602             'IPC::SharedMem' => '2.08',
17603             'IPC::SysV' => '2.08',
17604             'JSON::PP' => '4.05',
17605             'JSON::PP::Boolean' => '4.05',
17606             'Math::Complex' => '1.5902',
17607             'Module::CoreList' => '5.20200820',
17608             'Module::CoreList::Utils'=> '5.20200820',
17609             'Net::Ping' => '2.73_01',
17610             'POSIX' => '1.95',
17611             'PerlIO::mmap' => '0.017',
17612             'Pod::Usage' => '1.70',
17613             'Safe' => '2.42',
17614             'Socket' => '2.030',
17615             'Storable' => '3.22',
17616             'Time::HiRes' => '1.9765',
17617             'Unicode::Normalize' => '1.28',
17618             'XS::APItest' => '1.11',
17619             'XS::Typemap' => '0.18',
17620             'feature' => '1.60',
17621             'mro' => '1.24',
17622             'strict' => '1.12',
17623             'threads' => '2.26',
17624             'threads::shared' => '1.62',
17625             'warnings' => '1.48',
17626             },
17627             removed => {
17628             'Moped::Msg' => 1,
17629             }
17630             },
17631             5.033002 => {
17632             delta_from => 5.033001,
17633             changed => {
17634             'Archive::Tar' => '2.38',
17635             'Archive::Tar::Constant'=> '2.38',
17636             'Archive::Tar::File' => '2.38',
17637             'B::Op_private' => '5.033002',
17638             'Compress::Raw::Bzip2' => '2.096',
17639             'Compress::Raw::Zlib' => '2.096',
17640             'Compress::Zlib' => '2.096',
17641             'Config' => '5.033002',
17642             'DB_File' => '1.854',
17643             'Env' => '1.05',
17644             'Errno' => '1.32',
17645             'ExtUtils::Install' => '2.18',
17646             'ExtUtils::Installed' => '2.18',
17647             'ExtUtils::Packlist' => '2.18',
17648             'Filter::Util::Call' => '1.60',
17649             'IO::Compress::Adapter::Bzip2'=> '2.096',
17650             'IO::Compress::Adapter::Deflate'=> '2.096',
17651             'IO::Compress::Adapter::Identity'=> '2.096',
17652             'IO::Compress::Base' => '2.096',
17653             'IO::Compress::Base::Common'=> '2.096',
17654             'IO::Compress::Bzip2' => '2.096',
17655             'IO::Compress::Deflate' => '2.096',
17656             'IO::Compress::Gzip' => '2.096',
17657             'IO::Compress::Gzip::Constants'=> '2.096',
17658             'IO::Compress::RawDeflate'=> '2.096',
17659             'IO::Compress::Zip' => '2.096',
17660             'IO::Compress::Zip::Constants'=> '2.096',
17661             'IO::Compress::Zlib::Constants'=> '2.096',
17662             'IO::Compress::Zlib::Extra'=> '2.096',
17663             'IO::Socket::IP' => '0.41',
17664             'IO::Uncompress::Adapter::Bunzip2'=> '2.096',
17665             'IO::Uncompress::Adapter::Identity'=> '2.096',
17666             'IO::Uncompress::Adapter::Inflate'=> '2.096',
17667             'IO::Uncompress::AnyInflate'=> '2.096',
17668             'IO::Uncompress::AnyUncompress'=> '2.096',
17669             'IO::Uncompress::Base' => '2.096',
17670             'IO::Uncompress::Bunzip2'=> '2.096',
17671             'IO::Uncompress::Gunzip'=> '2.096',
17672             'IO::Uncompress::Inflate'=> '2.096',
17673             'IO::Uncompress::RawInflate'=> '2.096',
17674             'IO::Uncompress::Unzip' => '2.096',
17675             'IO::Zlib' => '1.11',
17676             'Module::CoreList' => '5.20200920',
17677             'Module::CoreList::Utils'=> '5.20200920',
17678             'Module::Load::Conditional'=> '0.74',
17679             'Opcode' => '1.48',
17680             'PerlIO::scalar' => '0.31',
17681             'Safe' => '2.43',
17682             'Test2' => '1.302181',
17683             'Test2::API' => '1.302181',
17684             'Test2::API::Breakage' => '1.302181',
17685             'Test2::API::Context' => '1.302181',
17686             'Test2::API::Instance' => '1.302181',
17687             'Test2::API::InterceptResult'=> '1.302181',
17688             'Test2::API::InterceptResult::Event'=> '1.302181',
17689             'Test2::API::InterceptResult::Facet'=> '1.302181',
17690             'Test2::API::InterceptResult::Hub'=> '1.302181',
17691             'Test2::API::InterceptResult::Squasher'=> '1.302181',
17692             'Test2::API::Stack' => '1.302181',
17693             'Test2::Event' => '1.302181',
17694             'Test2::Event::Bail' => '1.302181',
17695             'Test2::Event::Diag' => '1.302181',
17696             'Test2::Event::Encoding'=> '1.302181',
17697             'Test2::Event::Exception'=> '1.302181',
17698             'Test2::Event::Fail' => '1.302181',
17699             'Test2::Event::Generic' => '1.302181',
17700             'Test2::Event::Note' => '1.302181',
17701             'Test2::Event::Ok' => '1.302181',
17702             'Test2::Event::Pass' => '1.302181',
17703             'Test2::Event::Plan' => '1.302181',
17704             'Test2::Event::Skip' => '1.302181',
17705             'Test2::Event::Subtest' => '1.302181',
17706             'Test2::Event::TAP::Version'=> '1.302181',
17707             'Test2::Event::V2' => '1.302181',
17708             'Test2::Event::Waiting' => '1.302181',
17709             'Test2::EventFacet' => '1.302181',
17710             'Test2::EventFacet::About'=> '1.302181',
17711             'Test2::EventFacet::Amnesty'=> '1.302181',
17712             'Test2::EventFacet::Assert'=> '1.302181',
17713             'Test2::EventFacet::Control'=> '1.302181',
17714             'Test2::EventFacet::Error'=> '1.302181',
17715             'Test2::EventFacet::Hub'=> '1.302181',
17716             'Test2::EventFacet::Info'=> '1.302181',
17717             'Test2::EventFacet::Info::Table'=> '1.302181',
17718             'Test2::EventFacet::Meta'=> '1.302181',
17719             'Test2::EventFacet::Parent'=> '1.302181',
17720             'Test2::EventFacet::Plan'=> '1.302181',
17721             'Test2::EventFacet::Render'=> '1.302181',
17722             'Test2::EventFacet::Trace'=> '1.302181',
17723             'Test2::Formatter' => '1.302181',
17724             'Test2::Formatter::TAP' => '1.302181',
17725             'Test2::Hub' => '1.302181',
17726             'Test2::Hub::Interceptor'=> '1.302181',
17727             'Test2::Hub::Interceptor::Terminator'=> '1.302181',
17728             'Test2::Hub::Subtest' => '1.302181',
17729             'Test2::IPC' => '1.302181',
17730             'Test2::IPC::Driver' => '1.302181',
17731             'Test2::IPC::Driver::Files'=> '1.302181',
17732             'Test2::Tools::Tiny' => '1.302181',
17733             'Test2::Util' => '1.302181',
17734             'Test2::Util::ExternalMeta'=> '1.302181',
17735             'Test2::Util::Facets2Legacy'=> '1.302181',
17736             'Test2::Util::HashBase' => '1.302181',
17737             'Test2::Util::Trace' => '1.302181',
17738             'Test::Builder' => '1.302181',
17739             'Test::Builder::Formatter'=> '1.302181',
17740             'Test::Builder::Module' => '1.302181',
17741             'Test::Builder::Tester' => '1.302181',
17742             'Test::Builder::Tester::Color'=> '1.302181',
17743             'Test::Builder::TodoDiag'=> '1.302181',
17744             'Test::More' => '1.302181',
17745             'Test::Simple' => '1.302181',
17746             'Test::Tester' => '1.302181',
17747             'Test::Tester::Capture' => '1.302181',
17748             'Test::Tester::CaptureRunner'=> '1.302181',
17749             'Test::Tester::Delegate'=> '1.302181',
17750             'Test::use::ok' => '1.302181',
17751             'ok' => '1.302181',
17752             'overload' => '1.32',
17753             },
17754             removed => {
17755             }
17756             },
17757             5.033003 => {
17758             delta_from => 5.033002,
17759             changed => {
17760             'Amiga::ARexx' => '0.05',
17761             'App::Cpan' => '1.676',
17762             'B::Op_private' => '5.033003',
17763             'CPAN' => '2.28',
17764             'CPAN::FTP' => '5.5013',
17765             'CPAN::FirstTime' => '5.5315',
17766             'Config' => '5.033003',
17767             'DB_File' => '1.855',
17768             'Data::Dumper' => '2.176',
17769             'Devel::PPPort' => '3.62',
17770             'Devel::Peek' => '1.30',
17771             'Digest' => '1.19',
17772             'Digest::MD5' => '2.58',
17773             'Digest::base' => '1.19',
17774             'Digest::file' => '1.19',
17775             'Encode' => '3.07',
17776             'Encode::GSM0338' => '2.08',
17777             'Errno' => '1.33',
17778             'Exporter' => '5.76',
17779             'Exporter::Heavy' => '5.76',
17780             'ExtUtils::Command' => '7.48',
17781             'ExtUtils::Command::MM' => '7.48',
17782             'ExtUtils::Liblist' => '7.48',
17783             'ExtUtils::Liblist::Kid'=> '7.48',
17784             'ExtUtils::MM' => '7.48',
17785             'ExtUtils::MM_AIX' => '7.48',
17786             'ExtUtils::MM_Any' => '7.48',
17787             'ExtUtils::MM_BeOS' => '7.48',
17788             'ExtUtils::MM_Cygwin' => '7.48',
17789             'ExtUtils::MM_DOS' => '7.48',
17790             'ExtUtils::MM_Darwin' => '7.48',
17791             'ExtUtils::MM_MacOS' => '7.48',
17792             'ExtUtils::MM_NW5' => '7.48',
17793             'ExtUtils::MM_OS2' => '7.48',
17794             'ExtUtils::MM_OS390' => '7.48',
17795             'ExtUtils::MM_QNX' => '7.48',
17796             'ExtUtils::MM_UWIN' => '7.48',
17797             'ExtUtils::MM_Unix' => '7.48',
17798             'ExtUtils::MM_VMS' => '7.48',
17799             'ExtUtils::MM_VOS' => '7.48',
17800             'ExtUtils::MM_Win32' => '7.48',
17801             'ExtUtils::MM_Win95' => '7.48',
17802             'ExtUtils::MY' => '7.48',
17803             'ExtUtils::MakeMaker' => '7.48',
17804             'ExtUtils::MakeMaker::Config'=> '7.48',
17805             'ExtUtils::MakeMaker::Locale'=> '7.48',
17806             'ExtUtils::MakeMaker::version'=> '7.48',
17807             'ExtUtils::MakeMaker::version::regex'=> '7.48',
17808             'ExtUtils::Mkbootstrap' => '7.48',
17809             'ExtUtils::Mksymlists' => '7.48',
17810             'ExtUtils::PL2Bat' => '0.003',
17811             'ExtUtils::testlib' => '7.48',
17812             'File::Temp' => '0.2311',
17813             'FindBin' => '1.52',
17814             'Getopt::Long' => '2.52',
17815             'Getopt::Std' => '1.13',
17816             'I18N::LangTags' => '0.45',
17817             'MIME::Base64' => '3.16',
17818             'MIME::QuotedPrint' => '3.16',
17819             'Module::CoreList' => '5.20201020',
17820             'Module::CoreList::Utils'=> '5.20201020',
17821             'Module::Load' => '0.36',
17822             'Pod::Checker' => '1.74',
17823             'Pod::Simple' => '3.41',
17824             'Pod::Simple::BlackBox' => '3.41',
17825             'Pod::Simple::Checker' => '3.41',
17826             'Pod::Simple::Debug' => '3.41',
17827             'Pod::Simple::DumpAsText'=> '3.41',
17828             'Pod::Simple::DumpAsXML'=> '3.41',
17829             'Pod::Simple::HTML' => '3.41',
17830             'Pod::Simple::HTMLBatch'=> '3.41',
17831             'Pod::Simple::LinkSection'=> '3.41',
17832             'Pod::Simple::Methody' => '3.41',
17833             'Pod::Simple::Progress' => '3.41',
17834             'Pod::Simple::PullParser'=> '3.41',
17835             'Pod::Simple::PullParserEndToken'=> '3.41',
17836             'Pod::Simple::PullParserStartToken'=> '3.41',
17837             'Pod::Simple::PullParserTextToken'=> '3.41',
17838             'Pod::Simple::PullParserToken'=> '3.41',
17839             'Pod::Simple::RTF' => '3.41',
17840             'Pod::Simple::Search' => '3.41',
17841             'Pod::Simple::SimpleTree'=> '3.41',
17842             'Pod::Simple::Text' => '3.41',
17843             'Pod::Simple::TextContent'=> '3.41',
17844             'Pod::Simple::TiedOutFH'=> '3.41',
17845             'Pod::Simple::Transcode'=> '3.41',
17846             'Pod::Simple::TranscodeDumb'=> '3.41',
17847             'Pod::Simple::TranscodeSmart'=> '3.41',
17848             'Pod::Simple::XHTML' => '3.41',
17849             'Pod::Simple::XMLOutStream'=> '3.41',
17850             'Pod::Usage' => '2.01',
17851             'Storable' => '3.23',
17852             'Symbol' => '1.09',
17853             'Test2' => '1.302182',
17854             'Test2::API' => '1.302182',
17855             'Test2::API::Breakage' => '1.302182',
17856             'Test2::API::Context' => '1.302182',
17857             'Test2::API::Instance' => '1.302182',
17858             'Test2::API::InterceptResult'=> '1.302182',
17859             'Test2::API::InterceptResult::Event'=> '1.302182',
17860             'Test2::API::InterceptResult::Facet'=> '1.302182',
17861             'Test2::API::InterceptResult::Hub'=> '1.302182',
17862             'Test2::API::InterceptResult::Squasher'=> '1.302182',
17863             'Test2::API::Stack' => '1.302182',
17864             'Test2::Event' => '1.302182',
17865             'Test2::Event::Bail' => '1.302182',
17866             'Test2::Event::Diag' => '1.302182',
17867             'Test2::Event::Encoding'=> '1.302182',
17868             'Test2::Event::Exception'=> '1.302182',
17869             'Test2::Event::Fail' => '1.302182',
17870             'Test2::Event::Generic' => '1.302182',
17871             'Test2::Event::Note' => '1.302182',
17872             'Test2::Event::Ok' => '1.302182',
17873             'Test2::Event::Pass' => '1.302182',
17874             'Test2::Event::Plan' => '1.302182',
17875             'Test2::Event::Skip' => '1.302182',
17876             'Test2::Event::Subtest' => '1.302182',
17877             'Test2::Event::TAP::Version'=> '1.302182',
17878             'Test2::Event::V2' => '1.302182',
17879             'Test2::Event::Waiting' => '1.302182',
17880             'Test2::EventFacet' => '1.302182',
17881             'Test2::EventFacet::About'=> '1.302182',
17882             'Test2::EventFacet::Amnesty'=> '1.302182',
17883             'Test2::EventFacet::Assert'=> '1.302182',
17884             'Test2::EventFacet::Control'=> '1.302182',
17885             'Test2::EventFacet::Error'=> '1.302182',
17886             'Test2::EventFacet::Hub'=> '1.302182',
17887             'Test2::EventFacet::Info'=> '1.302182',
17888             'Test2::EventFacet::Info::Table'=> '1.302182',
17889             'Test2::EventFacet::Meta'=> '1.302182',
17890             'Test2::EventFacet::Parent'=> '1.302182',
17891             'Test2::EventFacet::Plan'=> '1.302182',
17892             'Test2::EventFacet::Render'=> '1.302182',
17893             'Test2::EventFacet::Trace'=> '1.302182',
17894             'Test2::Formatter' => '1.302182',
17895             'Test2::Formatter::TAP' => '1.302182',
17896             'Test2::Hub' => '1.302182',
17897             'Test2::Hub::Interceptor'=> '1.302182',
17898             'Test2::Hub::Interceptor::Terminator'=> '1.302182',
17899             'Test2::Hub::Subtest' => '1.302182',
17900             'Test2::IPC' => '1.302182',
17901             'Test2::IPC::Driver' => '1.302182',
17902             'Test2::IPC::Driver::Files'=> '1.302182',
17903             'Test2::Tools::Tiny' => '1.302182',
17904             'Test2::Util' => '1.302182',
17905             'Test2::Util::ExternalMeta'=> '1.302182',
17906             'Test2::Util::Facets2Legacy'=> '1.302182',
17907             'Test2::Util::HashBase' => '1.302182',
17908             'Test2::Util::Trace' => '1.302182',
17909             'Test::Builder' => '1.302182',
17910             'Test::Builder::Formatter'=> '1.302182',
17911             'Test::Builder::Module' => '1.302182',
17912             'Test::Builder::Tester' => '1.302182',
17913             'Test::Builder::Tester::Color'=> '1.302182',
17914             'Test::Builder::TodoDiag'=> '1.302182',
17915             'Test::More' => '1.302182',
17916             'Test::Simple' => '1.302182',
17917             'Test::Tester' => '1.302182',
17918             'Test::Tester::Capture' => '1.302182',
17919             'Test::Tester::CaptureRunner'=> '1.302182',
17920             'Test::Tester::Delegate'=> '1.302182',
17921             'Test::use::ok' => '1.302182',
17922             'Tie::RefHash' => '1.40',
17923             'Time::Local' => '1.30',
17924             'Unicode::Collate' => '1.29',
17925             'Unicode::Collate::CJK::Big5'=> '1.29',
17926             'Unicode::Collate::CJK::GB2312'=> '1.29',
17927             'Unicode::Collate::CJK::JISX0208'=> '1.29',
17928             'Unicode::Collate::CJK::Korean'=> '1.29',
17929             'Unicode::Collate::CJK::Pinyin'=> '1.29',
17930             'Unicode::Collate::CJK::Stroke'=> '1.29',
17931             'Unicode::Collate::CJK::Zhuyin'=> '1.29',
17932             'Unicode::Collate::Locale'=> '1.29',
17933             'Win32' => '0.54',
17934             'XS::APItest' => '1.12',
17935             'bytes' => '1.08',
17936             'experimental' => '0.022',
17937             'feature' => '1.61',
17938             'if' => '0.0609',
17939             'locale' => '1.10',
17940             'mro' => '1.25',
17941             'ok' => '1.302182',
17942             'overload' => '1.33',
17943             're' => '0.41',
17944             'subs' => '1.04',
17945             'utf8' => '1.24',
17946             'version' => '0.9928',
17947             'version::regex' => '0.9928',
17948             },
17949             removed => {
17950             }
17951             },
17952             5.033004 => {
17953             delta_from => 5.033003,
17954             changed => {
17955             'B' => '1.82',
17956             'B::Op_private' => '5.033004',
17957             'Config' => '5.033004',
17958             'Cwd' => '3.79',
17959             'ExtUtils::CBuilder' => '0.280235',
17960             'ExtUtils::CBuilder::Base'=> '0.280235',
17961             'ExtUtils::CBuilder::Platform::Unix'=> '0.280235',
17962             'ExtUtils::CBuilder::Platform::VMS'=> '0.280235',
17963             'ExtUtils::CBuilder::Platform::Windows'=> '0.280235',
17964             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280235',
17965             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280235',
17966             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280235',
17967             'ExtUtils::CBuilder::Platform::aix'=> '0.280235',
17968             'ExtUtils::CBuilder::Platform::android'=> '0.280235',
17969             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280235',
17970             'ExtUtils::CBuilder::Platform::darwin'=> '0.280235',
17971             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280235',
17972             'ExtUtils::CBuilder::Platform::os2'=> '0.280235',
17973             'ExtUtils::Command' => '7.56',
17974             'ExtUtils::Command::MM' => '7.56',
17975             'ExtUtils::Liblist' => '7.56',
17976             'ExtUtils::Liblist::Kid'=> '7.56',
17977             'ExtUtils::MM' => '7.56',
17978             'ExtUtils::MM_AIX' => '7.56',
17979             'ExtUtils::MM_Any' => '7.56',
17980             'ExtUtils::MM_BeOS' => '7.56',
17981             'ExtUtils::MM_Cygwin' => '7.56',
17982             'ExtUtils::MM_DOS' => '7.56',
17983             'ExtUtils::MM_Darwin' => '7.56',
17984             'ExtUtils::MM_MacOS' => '7.56',
17985             'ExtUtils::MM_NW5' => '7.56',
17986             'ExtUtils::MM_OS2' => '7.56',
17987             'ExtUtils::MM_OS390' => '7.56',
17988             'ExtUtils::MM_QNX' => '7.56',
17989             'ExtUtils::MM_UWIN' => '7.56',
17990             'ExtUtils::MM_Unix' => '7.56',
17991             'ExtUtils::MM_VMS' => '7.56',
17992             'ExtUtils::MM_VOS' => '7.56',
17993             'ExtUtils::MM_Win32' => '7.56',
17994             'ExtUtils::MM_Win95' => '7.56',
17995             'ExtUtils::MY' => '7.56',
17996             'ExtUtils::MakeMaker' => '7.56',
17997             'ExtUtils::MakeMaker::Config'=> '7.56',
17998             'ExtUtils::MakeMaker::Locale'=> '7.56',
17999             'ExtUtils::MakeMaker::version'=> '7.56',
18000             'ExtUtils::MakeMaker::version::regex'=> '7.56',
18001             'ExtUtils::Mkbootstrap' => '7.56',
18002             'ExtUtils::Mksymlists' => '7.56',
18003             'ExtUtils::testlib' => '7.56',
18004             'File::Fetch' => '1.00',
18005             'File::Path' => '2.18',
18006             'File::Spec' => '3.79',
18007             'File::Spec::AmigaOS' => '3.79',
18008             'File::Spec::Cygwin' => '3.79',
18009             'File::Spec::Epoc' => '3.79',
18010             'File::Spec::Functions' => '3.79',
18011             'File::Spec::Mac' => '3.79',
18012             'File::Spec::OS2' => '3.79',
18013             'File::Spec::Unix' => '3.79',
18014             'File::Spec::VMS' => '3.79',
18015             'IPC::Msg' => '2.09',
18016             'IPC::Semaphore' => '2.09',
18017             'IPC::SharedMem' => '2.09',
18018             'IPC::SysV' => '2.09',
18019             'Module::CoreList' => '5.20201120',
18020             'Module::CoreList::Utils'=> '5.20201120',
18021             'Net::Ping' => '2.74',
18022             'Pod::Html' => '1.26',
18023             'Pod::Simple' => '3.42',
18024             'Pod::Simple::BlackBox' => '3.42',
18025             'Pod::Simple::Checker' => '3.42',
18026             'Pod::Simple::Debug' => '3.42',
18027             'Pod::Simple::DumpAsText'=> '3.42',
18028             'Pod::Simple::DumpAsXML'=> '3.42',
18029             'Pod::Simple::HTML' => '3.42',
18030             'Pod::Simple::HTMLBatch'=> '3.42',
18031             'Pod::Simple::LinkSection'=> '3.42',
18032             'Pod::Simple::Methody' => '3.42',
18033             'Pod::Simple::Progress' => '3.42',
18034             'Pod::Simple::PullParser'=> '3.42',
18035             'Pod::Simple::PullParserEndToken'=> '3.42',
18036             'Pod::Simple::PullParserStartToken'=> '3.42',
18037             'Pod::Simple::PullParserTextToken'=> '3.42',
18038             'Pod::Simple::PullParserToken'=> '3.42',
18039             'Pod::Simple::RTF' => '3.42',
18040             'Pod::Simple::Search' => '3.42',
18041             'Pod::Simple::SimpleTree'=> '3.42',
18042             'Pod::Simple::Text' => '3.42',
18043             'Pod::Simple::TextContent'=> '3.42',
18044             'Pod::Simple::TiedOutFH'=> '3.42',
18045             'Pod::Simple::Transcode'=> '3.42',
18046             'Pod::Simple::TranscodeDumb'=> '3.42',
18047             'Pod::Simple::TranscodeSmart'=> '3.42',
18048             'Pod::Simple::XHTML' => '3.42',
18049             'Pod::Simple::XMLOutStream'=> '3.42',
18050             'Test2' => '1.302183',
18051             'Test2::API' => '1.302183',
18052             'Test2::API::Breakage' => '1.302183',
18053             'Test2::API::Context' => '1.302183',
18054             'Test2::API::Instance' => '1.302183',
18055             'Test2::API::InterceptResult'=> '1.302183',
18056             'Test2::API::InterceptResult::Event'=> '1.302183',
18057             'Test2::API::InterceptResult::Facet'=> '1.302183',
18058             'Test2::API::InterceptResult::Hub'=> '1.302183',
18059             'Test2::API::InterceptResult::Squasher'=> '1.302183',
18060             'Test2::API::Stack' => '1.302183',
18061             'Test2::Event' => '1.302183',
18062             'Test2::Event::Bail' => '1.302183',
18063             'Test2::Event::Diag' => '1.302183',
18064             'Test2::Event::Encoding'=> '1.302183',
18065             'Test2::Event::Exception'=> '1.302183',
18066             'Test2::Event::Fail' => '1.302183',
18067             'Test2::Event::Generic' => '1.302183',
18068             'Test2::Event::Note' => '1.302183',
18069             'Test2::Event::Ok' => '1.302183',
18070             'Test2::Event::Pass' => '1.302183',
18071             'Test2::Event::Plan' => '1.302183',
18072             'Test2::Event::Skip' => '1.302183',
18073             'Test2::Event::Subtest' => '1.302183',
18074             'Test2::Event::TAP::Version'=> '1.302183',
18075             'Test2::Event::V2' => '1.302183',
18076             'Test2::Event::Waiting' => '1.302183',
18077             'Test2::EventFacet' => '1.302183',
18078             'Test2::EventFacet::About'=> '1.302183',
18079             'Test2::EventFacet::Amnesty'=> '1.302183',
18080             'Test2::EventFacet::Assert'=> '1.302183',
18081             'Test2::EventFacet::Control'=> '1.302183',
18082             'Test2::EventFacet::Error'=> '1.302183',
18083             'Test2::EventFacet::Hub'=> '1.302183',
18084             'Test2::EventFacet::Info'=> '1.302183',
18085             'Test2::EventFacet::Info::Table'=> '1.302183',
18086             'Test2::EventFacet::Meta'=> '1.302183',
18087             'Test2::EventFacet::Parent'=> '1.302183',
18088             'Test2::EventFacet::Plan'=> '1.302183',
18089             'Test2::EventFacet::Render'=> '1.302183',
18090             'Test2::EventFacet::Trace'=> '1.302183',
18091             'Test2::Formatter' => '1.302183',
18092             'Test2::Formatter::TAP' => '1.302183',
18093             'Test2::Hub' => '1.302183',
18094             'Test2::Hub::Interceptor'=> '1.302183',
18095             'Test2::Hub::Interceptor::Terminator'=> '1.302183',
18096             'Test2::Hub::Subtest' => '1.302183',
18097             'Test2::IPC' => '1.302183',
18098             'Test2::IPC::Driver' => '1.302183',
18099             'Test2::IPC::Driver::Files'=> '1.302183',
18100             'Test2::Tools::Tiny' => '1.302183',
18101             'Test2::Util' => '1.302183',
18102             'Test2::Util::ExternalMeta'=> '1.302183',
18103             'Test2::Util::Facets2Legacy'=> '1.302183',
18104             'Test2::Util::HashBase' => '1.302183',
18105             'Test2::Util::Trace' => '1.302183',
18106             'Test::Builder' => '1.302183',
18107             'Test::Builder::Formatter'=> '1.302183',
18108             'Test::Builder::Module' => '1.302183',
18109             'Test::Builder::Tester' => '1.302183',
18110             'Test::Builder::Tester::Color'=> '1.302183',
18111             'Test::Builder::TodoDiag'=> '1.302183',
18112             'Test::More' => '1.302183',
18113             'Test::Simple' => '1.302183',
18114             'Test::Tester' => '1.302183',
18115             'Test::Tester::Capture' => '1.302183',
18116             'Test::Tester::CaptureRunner'=> '1.302183',
18117             'Test::Tester::Delegate'=> '1.302183',
18118             'Test::use::ok' => '1.302183',
18119             'XS::APItest' => '1.13',
18120             'ok' => '1.302183',
18121             'perlfaq' => '5.20201107',
18122             },
18123             removed => {
18124             }
18125             },
18126             5.033005 => {
18127             delta_from => 5.033004,
18128             changed => {
18129             'App::Prove' => '3.43',
18130             'App::Prove::State' => '3.43',
18131             'App::Prove::State::Result'=> '3.43',
18132             'App::Prove::State::Result::Test'=> '3.43',
18133             'B::Op_private' => '5.033005',
18134             'Carp' => '1.51',
18135             'Carp::Heavy' => '1.51',
18136             'Config' => '5.033005',
18137             'Config::Perl::V' => '0.33',
18138             'Cwd' => '3.80',
18139             'DynaLoader' => '1.49',
18140             'Encode' => '3.08',
18141             'Encode::GSM0338' => '2.09',
18142             'ExtUtils::Install' => '2.20',
18143             'ExtUtils::Installed' => '2.20',
18144             'ExtUtils::Packlist' => '2.20',
18145             'ExtUtils::ParseXS' => '3.42',
18146             'ExtUtils::ParseXS::Constants'=> '3.42',
18147             'ExtUtils::ParseXS::CountLines'=> '3.42',
18148             'ExtUtils::ParseXS::Eval'=> '3.42',
18149             'ExtUtils::ParseXS::Utilities'=> '3.42',
18150             'File::Copy' => '2.35',
18151             'File::Find' => '1.38',
18152             'File::Spec' => '3.80',
18153             'File::Spec::AmigaOS' => '3.80',
18154             'File::Spec::Cygwin' => '3.80',
18155             'File::Spec::Epoc' => '3.80',
18156             'File::Spec::Functions' => '3.80',
18157             'File::Spec::Mac' => '3.80',
18158             'File::Spec::OS2' => '3.80',
18159             'File::Spec::Unix' => '3.80',
18160             'File::Spec::VMS' => '3.80',
18161             'File::Spec::Win32' => '3.80',
18162             'Module::CoreList' => '5.20201220',
18163             'Module::CoreList::Utils'=> '5.20201220',
18164             'Net::Cmd' => '3.12',
18165             'Net::Config' => '3.12',
18166             'Net::Domain' => '3.12',
18167             'Net::FTP' => '3.12',
18168             'Net::FTP::A' => '3.12',
18169             'Net::FTP::E' => '3.12',
18170             'Net::FTP::I' => '3.12',
18171             'Net::FTP::L' => '3.12',
18172             'Net::FTP::dataconn' => '3.12',
18173             'Net::NNTP' => '3.12',
18174             'Net::Netrc' => '3.12',
18175             'Net::POP3' => '3.12',
18176             'Net::SMTP' => '3.12',
18177             'Net::Time' => '3.12',
18178             'ODBM_File' => '1.17',
18179             'Opcode' => '1.49',
18180             'POSIX' => '1.96',
18181             'PerlIO::via::QuotedPrint'=> '0.09',
18182             'TAP::Base' => '3.43',
18183             'TAP::Formatter::Base' => '3.43',
18184             'TAP::Formatter::Color' => '3.43',
18185             'TAP::Formatter::Console'=> '3.43',
18186             'TAP::Formatter::Console::ParallelSession'=> '3.43',
18187             'TAP::Formatter::Console::Session'=> '3.43',
18188             'TAP::Formatter::File' => '3.43',
18189             'TAP::Formatter::File::Session'=> '3.43',
18190             'TAP::Formatter::Session'=> '3.43',
18191             'TAP::Harness' => '3.43',
18192             'TAP::Harness::Env' => '3.43',
18193             'TAP::Object' => '3.43',
18194             'TAP::Parser' => '3.43',
18195             'TAP::Parser::Aggregator'=> '3.43',
18196             'TAP::Parser::Grammar' => '3.43',
18197             'TAP::Parser::Iterator' => '3.43',
18198             'TAP::Parser::Iterator::Array'=> '3.43',
18199             'TAP::Parser::Iterator::Process'=> '3.43',
18200             'TAP::Parser::Iterator::Stream'=> '3.43',
18201             'TAP::Parser::IteratorFactory'=> '3.43',
18202             'TAP::Parser::Multiplexer'=> '3.43',
18203             'TAP::Parser::Result' => '3.43',
18204             'TAP::Parser::Result::Bailout'=> '3.43',
18205             'TAP::Parser::Result::Comment'=> '3.43',
18206             'TAP::Parser::Result::Plan'=> '3.43',
18207             'TAP::Parser::Result::Pragma'=> '3.43',
18208             'TAP::Parser::Result::Test'=> '3.43',
18209             'TAP::Parser::Result::Unknown'=> '3.43',
18210             'TAP::Parser::Result::Version'=> '3.43',
18211             'TAP::Parser::Result::YAML'=> '3.43',
18212             'TAP::Parser::ResultFactory'=> '3.43',
18213             'TAP::Parser::Scheduler'=> '3.43',
18214             'TAP::Parser::Scheduler::Job'=> '3.43',
18215             'TAP::Parser::Scheduler::Spinner'=> '3.43',
18216             'TAP::Parser::Source' => '3.43',
18217             'TAP::Parser::SourceHandler'=> '3.43',
18218             'TAP::Parser::SourceHandler::Executable'=> '3.43',
18219             'TAP::Parser::SourceHandler::File'=> '3.43',
18220             'TAP::Parser::SourceHandler::Handle'=> '3.43',
18221             'TAP::Parser::SourceHandler::Perl'=> '3.43',
18222             'TAP::Parser::SourceHandler::RawTAP'=> '3.43',
18223             'TAP::Parser::YAMLish::Reader'=> '3.43',
18224             'TAP::Parser::YAMLish::Writer'=> '3.43',
18225             'Test::Harness' => '3.43',
18226             'Text::Balanced' => '2.04',
18227             'Time::HiRes' => '1.9766',
18228             'XS::APItest' => '1.14',
18229             'warnings' => '1.49',
18230             },
18231             removed => {
18232             }
18233             },
18234             5.033006 => {
18235             delta_from => 5.033005,
18236             changed => {
18237             'B::Op_private' => '5.033006',
18238             'Carp' => '1.52',
18239             'Carp::Heavy' => '1.52',
18240             'Compress::Raw::Bzip2' => '2.100',
18241             'Compress::Raw::Zlib' => '2.100',
18242             'Compress::Zlib' => '2.100',
18243             'Config' => '5.033006',
18244             'DynaLoader' => '1.50',
18245             'ExtUtils::Command' => '7.58',
18246             'ExtUtils::Command::MM' => '7.58',
18247             'ExtUtils::Liblist' => '7.58',
18248             'ExtUtils::Liblist::Kid'=> '7.58',
18249             'ExtUtils::MM' => '7.58',
18250             'ExtUtils::MM_AIX' => '7.58',
18251             'ExtUtils::MM_Any' => '7.58',
18252             'ExtUtils::MM_BeOS' => '7.58',
18253             'ExtUtils::MM_Cygwin' => '7.58',
18254             'ExtUtils::MM_DOS' => '7.58',
18255             'ExtUtils::MM_Darwin' => '7.58',
18256             'ExtUtils::MM_MacOS' => '7.58',
18257             'ExtUtils::MM_NW5' => '7.58',
18258             'ExtUtils::MM_OS2' => '7.58',
18259             'ExtUtils::MM_OS390' => '7.58',
18260             'ExtUtils::MM_QNX' => '7.58',
18261             'ExtUtils::MM_UWIN' => '7.58',
18262             'ExtUtils::MM_Unix' => '7.58',
18263             'ExtUtils::MM_VMS' => '7.58',
18264             'ExtUtils::MM_VOS' => '7.58',
18265             'ExtUtils::MM_Win32' => '7.58',
18266             'ExtUtils::MM_Win95' => '7.58',
18267             'ExtUtils::MY' => '7.58',
18268             'ExtUtils::MakeMaker' => '7.58',
18269             'ExtUtils::MakeMaker::Config'=> '7.58',
18270             'ExtUtils::MakeMaker::Locale'=> '7.58',
18271             'ExtUtils::MakeMaker::version'=> '7.58',
18272             'ExtUtils::MakeMaker::version::regex'=> '7.58',
18273             'ExtUtils::Manifest' => '1.73',
18274             'ExtUtils::Mkbootstrap' => '7.58',
18275             'ExtUtils::Mksymlists' => '7.58',
18276             'ExtUtils::testlib' => '7.58',
18277             'GDBM_File' => '1.19',
18278             'IO' => '1.45',
18279             'IO::Compress::Adapter::Bzip2'=> '2.100',
18280             'IO::Compress::Adapter::Deflate'=> '2.100',
18281             'IO::Compress::Adapter::Identity'=> '2.100',
18282             'IO::Compress::Base' => '2.100',
18283             'IO::Compress::Base::Common'=> '2.100',
18284             'IO::Compress::Bzip2' => '2.100',
18285             'IO::Compress::Deflate' => '2.100',
18286             'IO::Compress::Gzip' => '2.100',
18287             'IO::Compress::Gzip::Constants'=> '2.100',
18288             'IO::Compress::RawDeflate'=> '2.100',
18289             'IO::Compress::Zip' => '2.100',
18290             'IO::Compress::Zip::Constants'=> '2.100',
18291             'IO::Compress::Zlib::Constants'=> '2.100',
18292             'IO::Compress::Zlib::Extra'=> '2.100',
18293             'IO::Dir' => '1.45',
18294             'IO::File' => '1.45',
18295             'IO::Handle' => '1.45',
18296             'IO::Pipe' => '1.45',
18297             'IO::Poll' => '1.45',
18298             'IO::Seekable' => '1.45',
18299             'IO::Select' => '1.45',
18300             'IO::Socket' => '1.45',
18301             'IO::Socket::INET' => '1.45',
18302             'IO::Socket::UNIX' => '1.45',
18303             'IO::Uncompress::Adapter::Bunzip2'=> '2.100',
18304             'IO::Uncompress::Adapter::Identity'=> '2.100',
18305             'IO::Uncompress::Adapter::Inflate'=> '2.100',
18306             'IO::Uncompress::AnyInflate'=> '2.100',
18307             'IO::Uncompress::AnyUncompress'=> '2.100',
18308             'IO::Uncompress::Base' => '2.100',
18309             'IO::Uncompress::Bunzip2'=> '2.100',
18310             'IO::Uncompress::Gunzip'=> '2.100',
18311             'IO::Uncompress::Inflate'=> '2.100',
18312             'IO::Uncompress::RawInflate'=> '2.100',
18313             'IO::Uncompress::Unzip' => '2.100',
18314             'Module::CoreList' => '5.20210120',
18315             'Module::CoreList::Utils'=> '5.20210120',
18316             'Net::Cmd' => '3.13',
18317             'Net::Config' => '3.13',
18318             'Net::Domain' => '3.13',
18319             'Net::FTP' => '3.13',
18320             'Net::FTP::A' => '3.13',
18321             'Net::FTP::E' => '3.13',
18322             'Net::FTP::I' => '3.13',
18323             'Net::FTP::L' => '3.13',
18324             'Net::FTP::dataconn' => '3.13',
18325             'Net::NNTP' => '3.13',
18326             'Net::Netrc' => '3.13',
18327             'Net::POP3' => '3.13',
18328             'Net::SMTP' => '3.13',
18329             'Net::Time' => '3.13',
18330             'POSIX' => '1.97',
18331             'Socket' => '2.031',
18332             'XS::APItest' => '1.15',
18333             'feature' => '1.62',
18334             'warnings' => '1.50',
18335             },
18336             removed => {
18337             }
18338             },
18339             5.032001 => {
18340             delta_from => 5.032000,
18341             changed => {
18342             'B::Op_private' => '5.032001',
18343             'Config' => '5.032001',
18344             'Data::Dumper' => '2.174_01',
18345             'DynaLoader' => '1.47_01',
18346             'ExtUtils::Liblist::Kid'=> '7.44_01',
18347             'Module::CoreList' => '5.20210123',
18348             'Module::CoreList::Utils'=> '5.20210123',
18349             'Opcode' => '1.48',
18350             'Safe' => '2.41_01',
18351             'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
18352             },
18353             removed => {
18354             }
18355             },
18356             5.033007 => {
18357             delta_from => 5.033006,
18358             changed => {
18359             'B::Deparse' => '1.56',
18360             'B::Op_private' => '5.033007',
18361             'Config' => '5.033007',
18362             'ExtUtils::CBuilder' => '0.280236',
18363             'ExtUtils::CBuilder::Base'=> '0.280236',
18364             'ExtUtils::CBuilder::Platform::Unix'=> '0.280236',
18365             'ExtUtils::CBuilder::Platform::VMS'=> '0.280236',
18366             'ExtUtils::CBuilder::Platform::Windows'=> '0.280236',
18367             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280236',
18368             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280236',
18369             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280236',
18370             'ExtUtils::CBuilder::Platform::aix'=> '0.280236',
18371             'ExtUtils::CBuilder::Platform::android'=> '0.280236',
18372             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280236',
18373             'ExtUtils::CBuilder::Platform::darwin'=> '0.280236',
18374             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280236',
18375             'ExtUtils::CBuilder::Platform::os2'=> '0.280236',
18376             'ExtUtils::Command' => '7.60',
18377             'ExtUtils::Command::MM' => '7.60',
18378             'ExtUtils::Liblist' => '7.60',
18379             'ExtUtils::Liblist::Kid'=> '7.60',
18380             'ExtUtils::MM' => '7.60',
18381             'ExtUtils::MM_AIX' => '7.60',
18382             'ExtUtils::MM_Any' => '7.60',
18383             'ExtUtils::MM_BeOS' => '7.60',
18384             'ExtUtils::MM_Cygwin' => '7.60',
18385             'ExtUtils::MM_DOS' => '7.60',
18386             'ExtUtils::MM_Darwin' => '7.60',
18387             'ExtUtils::MM_MacOS' => '7.60',
18388             'ExtUtils::MM_NW5' => '7.60',
18389             'ExtUtils::MM_OS2' => '7.60',
18390             'ExtUtils::MM_OS390' => '7.60',
18391             'ExtUtils::MM_QNX' => '7.60',
18392             'ExtUtils::MM_UWIN' => '7.60',
18393             'ExtUtils::MM_Unix' => '7.60',
18394             'ExtUtils::MM_VMS' => '7.60',
18395             'ExtUtils::MM_VOS' => '7.60',
18396             'ExtUtils::MM_Win32' => '7.60',
18397             'ExtUtils::MM_Win95' => '7.60',
18398             'ExtUtils::MY' => '7.60',
18399             'ExtUtils::MakeMaker' => '7.60',
18400             'ExtUtils::MakeMaker::Config'=> '7.60',
18401             'ExtUtils::MakeMaker::Locale'=> '7.60',
18402             'ExtUtils::MakeMaker::version'=> '7.60',
18403             'ExtUtils::MakeMaker::version::regex'=> '7.60',
18404             'ExtUtils::Mkbootstrap' => '7.60',
18405             'ExtUtils::Mksymlists' => '7.60',
18406             'ExtUtils::PL2Bat' => '0.004',
18407             'ExtUtils::testlib' => '7.60',
18408             'Fatal' => '2.34',
18409             'File::Find' => '1.39',
18410             'Hash::Util' => '0.25',
18411             'IO' => '1.46',
18412             'IO::Dir' => '1.46',
18413             'IO::File' => '1.46',
18414             'IO::Handle' => '1.46',
18415             'IO::Pipe' => '1.46',
18416             'IO::Poll' => '1.46',
18417             'IO::Seekable' => '1.46',
18418             'IO::Select' => '1.46',
18419             'IO::Socket' => '1.46',
18420             'IO::Socket::INET' => '1.46',
18421             'IO::Socket::UNIX' => '1.46',
18422             'JSON::PP' => '4.06',
18423             'JSON::PP::Boolean' => '4.06',
18424             'Module::CoreList' => '5.20210220',
18425             'Module::CoreList::Utils'=> '5.20210220',
18426             'Opcode' => '1.50',
18427             'PerlIO::encoding' => '0.30',
18428             'Time::HiRes' => '1.9767',
18429             'autodie' => '2.34',
18430             'autodie::Scope::Guard' => '2.34',
18431             'autodie::Scope::GuardStack'=> '2.34',
18432             'autodie::Util' => '2.34',
18433             'autodie::exception' => '2.34',
18434             'autodie::exception::system'=> '2.34',
18435             'autodie::hints' => '2.34',
18436             'autodie::skip' => '2.34',
18437             'feature' => '1.63',
18438             'mro' => '1.25_001',
18439             'warnings' => '1.51',
18440             },
18441             removed => {
18442             }
18443             },
18444             5.033008 => {
18445             delta_from => 5.033007,
18446             changed => {
18447             'B::Op_private' => '5.033008',
18448             'Compress::Raw::Bzip2' => '2.101',
18449             'Compress::Raw::Zlib' => '2.101',
18450             'Compress::Zlib' => '2.102',
18451             'Config' => '5.033008',
18452             'Data::Dumper' => '2.177',
18453             'IO::Compress::Adapter::Bzip2'=> '2.102',
18454             'IO::Compress::Adapter::Deflate'=> '2.102',
18455             'IO::Compress::Adapter::Identity'=> '2.102',
18456             'IO::Compress::Base' => '2.102',
18457             'IO::Compress::Base::Common'=> '2.102',
18458             'IO::Compress::Bzip2' => '2.102',
18459             'IO::Compress::Deflate' => '2.102',
18460             'IO::Compress::Gzip' => '2.102',
18461             'IO::Compress::Gzip::Constants'=> '2.102',
18462             'IO::Compress::RawDeflate'=> '2.102',
18463             'IO::Compress::Zip' => '2.102',
18464             'IO::Compress::Zip::Constants'=> '2.102',
18465             'IO::Compress::Zlib::Constants'=> '2.102',
18466             'IO::Compress::Zlib::Extra'=> '2.102',
18467             'IO::Uncompress::Adapter::Bunzip2'=> '2.102',
18468             'IO::Uncompress::Adapter::Identity'=> '2.102',
18469             'IO::Uncompress::Adapter::Inflate'=> '2.102',
18470             'IO::Uncompress::AnyInflate'=> '2.102',
18471             'IO::Uncompress::AnyUncompress'=> '2.102',
18472             'IO::Uncompress::Base' => '2.102',
18473             'IO::Uncompress::Bunzip2'=> '2.102',
18474             'IO::Uncompress::Gunzip'=> '2.102',
18475             'IO::Uncompress::Inflate'=> '2.102',
18476             'IO::Uncompress::RawInflate'=> '2.102',
18477             'IO::Uncompress::Unzip' => '2.102',
18478             'Module::CoreList' => '5.20210320',
18479             'Module::CoreList::Utils'=> '5.20210320',
18480             'Pod::Html' => '1.27',
18481             'Win32' => '0.57',
18482             },
18483             removed => {
18484             }
18485             },
18486             5.033009 => {
18487             delta_from => 5.033008,
18488             changed => {
18489             'B::Op_private' => '5.033009',
18490             'Config' => '5.033009',
18491             'Data::Dumper' => '2.178',
18492             'ExtUtils::Command' => '7.62',
18493             'ExtUtils::Command::MM' => '7.62',
18494             'ExtUtils::Liblist' => '7.62',
18495             'ExtUtils::Liblist::Kid'=> '7.62',
18496             'ExtUtils::MM' => '7.62',
18497             'ExtUtils::MM_AIX' => '7.62',
18498             'ExtUtils::MM_Any' => '7.62',
18499             'ExtUtils::MM_BeOS' => '7.62',
18500             'ExtUtils::MM_Cygwin' => '7.62',
18501             'ExtUtils::MM_DOS' => '7.62',
18502             'ExtUtils::MM_Darwin' => '7.62',
18503             'ExtUtils::MM_MacOS' => '7.62',
18504             'ExtUtils::MM_NW5' => '7.62',
18505             'ExtUtils::MM_OS2' => '7.62',
18506             'ExtUtils::MM_OS390' => '7.62',
18507             'ExtUtils::MM_QNX' => '7.62',
18508             'ExtUtils::MM_UWIN' => '7.62',
18509             'ExtUtils::MM_Unix' => '7.62',
18510             'ExtUtils::MM_VMS' => '7.62',
18511             'ExtUtils::MM_VOS' => '7.62',
18512             'ExtUtils::MM_Win32' => '7.62',
18513             'ExtUtils::MM_Win95' => '7.62',
18514             'ExtUtils::MY' => '7.62',
18515             'ExtUtils::MakeMaker' => '7.62',
18516             'ExtUtils::MakeMaker::Config'=> '7.62',
18517             'ExtUtils::MakeMaker::Locale'=> '7.62',
18518             'ExtUtils::MakeMaker::version'=> '7.62',
18519             'ExtUtils::MakeMaker::version::regex'=> '7.62',
18520             'ExtUtils::Mkbootstrap' => '7.62',
18521             'ExtUtils::Mksymlists' => '7.62',
18522             'ExtUtils::ParseXS' => '3.43',
18523             'ExtUtils::ParseXS::Constants'=> '3.43',
18524             'ExtUtils::ParseXS::CountLines'=> '3.43',
18525             'ExtUtils::ParseXS::Eval'=> '3.43',
18526             'ExtUtils::ParseXS::Utilities'=> '3.43',
18527             'ExtUtils::Typemaps' => '3.43',
18528             'ExtUtils::Typemaps::Cmd'=> '3.43',
18529             'ExtUtils::Typemaps::InputMap'=> '3.43',
18530             'ExtUtils::Typemaps::OutputMap'=> '3.43',
18531             'ExtUtils::Typemaps::Type'=> '3.43',
18532             'ExtUtils::testlib' => '7.62',
18533             'Module::CoreList' => '5.20210420',
18534             'Module::CoreList::Utils'=> '5.20210420',
18535             'NEXT' => '0.68',
18536             'XS::APItest' => '1.16',
18537             'feature' => '1.64',
18538             'perlfaq' => '5.20210411',
18539             },
18540             removed => {
18541             }
18542             },
18543             5.034000 => {
18544             delta_from => 5.033009,
18545             changed => {
18546             'B::Op_private' => '5.034000',
18547             'Config' => '5.034',
18548             'Data::Dumper' => '2.179',
18549             'Module::CoreList' => '5.20210520',
18550             'Module::CoreList::Utils'=> '5.20210520',
18551             'experimental' => '0.024',
18552             },
18553             removed => {
18554             }
18555             },
18556             5.035000 => {
18557             delta_from => 5.034,
18558             changed => {
18559             'B::Op_private' => '5.035000',
18560             'Config' => '5.035',
18561             'Module::CoreList' => '5.20210521',
18562             'Module::CoreList::Utils'=> '5.20210521',
18563             'feature' => '1.65',
18564             },
18565             removed => {
18566             }
18567             },
18568             5.035001 => {
18569             delta_from => 5.035000,
18570             changed => {
18571             'B::Deparse' => '1.57',
18572             'B::Op_private' => '5.035001',
18573             'Config' => '5.035001',
18574             'Cwd' => '3.81',
18575             'Data::Dumper' => '2.181',
18576             'File::Copy' => '2.36',
18577             'File::Glob' => '1.35',
18578             'File::Spec' => '3.81',
18579             'File::Spec::AmigaOS' => '3.81',
18580             'File::Spec::Cygwin' => '3.81',
18581             'File::Spec::Epoc' => '3.81',
18582             'File::Spec::Functions' => '3.81',
18583             'File::Spec::Mac' => '3.81',
18584             'File::Spec::OS2' => '3.81',
18585             'File::Spec::Unix' => '3.81',
18586             'File::Spec::VMS' => '3.81',
18587             'File::Spec::Win32' => '3.81',
18588             'File::stat' => '1.10',
18589             'IO' => '1.47',
18590             'IO::Dir' => '1.47',
18591             'IO::File' => '1.47',
18592             'IO::Handle' => '1.47',
18593             'IO::Pipe' => '1.47',
18594             'IO::Poll' => '1.47',
18595             'IO::Seekable' => '1.47',
18596             'IO::Select' => '1.47',
18597             'IO::Socket' => '1.47',
18598             'IO::Socket::INET' => '1.47',
18599             'IO::Socket::UNIX' => '1.47',
18600             'List::Util' => '1.56',
18601             'List::Util::XS' => '1.56',
18602             'Module::CoreList' => '5.20210620',
18603             'Module::CoreList::Utils'=> '5.20210620',
18604             'Opcode' => '1.51',
18605             'POSIX' => '1.98',
18606             'Scalar::Util' => '1.56',
18607             'Socket' => '2.032',
18608             'Sub::Util' => '1.56',
18609             'Test2' => '1.302185',
18610             'Test2::API' => '1.302185',
18611             'Test2::API::Breakage' => '1.302185',
18612             'Test2::API::Context' => '1.302185',
18613             'Test2::API::Instance' => '1.302185',
18614             'Test2::API::InterceptResult'=> '1.302185',
18615             'Test2::API::InterceptResult::Event'=> '1.302185',
18616             'Test2::API::InterceptResult::Facet'=> '1.302185',
18617             'Test2::API::InterceptResult::Hub'=> '1.302185',
18618             'Test2::API::InterceptResult::Squasher'=> '1.302185',
18619             'Test2::API::Stack' => '1.302185',
18620             'Test2::Event' => '1.302185',
18621             'Test2::Event::Bail' => '1.302185',
18622             'Test2::Event::Diag' => '1.302185',
18623             'Test2::Event::Encoding'=> '1.302185',
18624             'Test2::Event::Exception'=> '1.302185',
18625             'Test2::Event::Fail' => '1.302185',
18626             'Test2::Event::Generic' => '1.302185',
18627             'Test2::Event::Note' => '1.302185',
18628             'Test2::Event::Ok' => '1.302185',
18629             'Test2::Event::Pass' => '1.302185',
18630             'Test2::Event::Plan' => '1.302185',
18631             'Test2::Event::Skip' => '1.302185',
18632             'Test2::Event::Subtest' => '1.302185',
18633             'Test2::Event::TAP::Version'=> '1.302185',
18634             'Test2::Event::V2' => '1.302185',
18635             'Test2::Event::Waiting' => '1.302185',
18636             'Test2::EventFacet' => '1.302185',
18637             'Test2::EventFacet::About'=> '1.302185',
18638             'Test2::EventFacet::Amnesty'=> '1.302185',
18639             'Test2::EventFacet::Assert'=> '1.302185',
18640             'Test2::EventFacet::Control'=> '1.302185',
18641             'Test2::EventFacet::Error'=> '1.302185',
18642             'Test2::EventFacet::Hub'=> '1.302185',
18643             'Test2::EventFacet::Info'=> '1.302185',
18644             'Test2::EventFacet::Info::Table'=> '1.302185',
18645             'Test2::EventFacet::Meta'=> '1.302185',
18646             'Test2::EventFacet::Parent'=> '1.302185',
18647             'Test2::EventFacet::Plan'=> '1.302185',
18648             'Test2::EventFacet::Render'=> '1.302185',
18649             'Test2::EventFacet::Trace'=> '1.302185',
18650             'Test2::Formatter' => '1.302185',
18651             'Test2::Formatter::TAP' => '1.302185',
18652             'Test2::Hub' => '1.302185',
18653             'Test2::Hub::Interceptor'=> '1.302185',
18654             'Test2::Hub::Interceptor::Terminator'=> '1.302185',
18655             'Test2::Hub::Subtest' => '1.302185',
18656             'Test2::IPC' => '1.302185',
18657             'Test2::IPC::Driver' => '1.302185',
18658             'Test2::IPC::Driver::Files'=> '1.302185',
18659             'Test2::Tools::Tiny' => '1.302185',
18660             'Test2::Util' => '1.302185',
18661             'Test2::Util::ExternalMeta'=> '1.302185',
18662             'Test2::Util::Facets2Legacy'=> '1.302185',
18663             'Test2::Util::HashBase' => '1.302185',
18664             'Test2::Util::Trace' => '1.302185',
18665             'Test::Builder' => '1.302185',
18666             'Test::Builder::Formatter'=> '1.302185',
18667             'Test::Builder::Module' => '1.302185',
18668             'Test::Builder::Tester' => '1.302185',
18669             'Test::Builder::Tester::Color'=> '1.302185',
18670             'Test::Builder::TodoDiag'=> '1.302185',
18671             'Test::More' => '1.302185',
18672             'Test::Simple' => '1.302185',
18673             'Test::Tester' => '1.302185',
18674             'Test::Tester::Capture' => '1.302185',
18675             'Test::Tester::CaptureRunner'=> '1.302185',
18676             'Test::Tester::Delegate'=> '1.302185',
18677             'Test::use::ok' => '1.302185',
18678             'Unicode::Collate' => '1.30',
18679             'Unicode::Collate::CJK::Big5'=> '1.30',
18680             'Unicode::Collate::CJK::GB2312'=> '1.30',
18681             'Unicode::Collate::CJK::JISX0208'=> '1.30',
18682             'Unicode::Collate::CJK::Korean'=> '1.30',
18683             'Unicode::Collate::CJK::Pinyin'=> '1.30',
18684             'Unicode::Collate::CJK::Stroke'=> '1.30',
18685             'Unicode::Collate::CJK::Zhuyin'=> '1.30',
18686             'Unicode::Collate::Locale'=> '1.30',
18687             'Unicode::UCD' => '0.76',
18688             'XS::APItest' => '1.17',
18689             'feature' => '1.66',
18690             'ok' => '1.302185',
18691             'open' => '1.13',
18692             'perlfaq' => '5.20210520',
18693             'version' => '0.9929',
18694             'version::regex' => '0.9929',
18695             },
18696             removed => {
18697             }
18698             },
18699             5.035002 => {
18700             delta_from => 5.035001,
18701             changed => {
18702             'Amiga::ARexx' => '0.06',
18703             'Amiga::Exec' => '0.03',
18704             'B::Concise' => '1.005',
18705             'B::Op_private' => '5.035002',
18706             'Config' => '5.035002',
18707             'Cwd' => '3.82',
18708             'DB_File' => '1.856',
18709             'Data::Dumper' => '2.183',
18710             'Devel::PPPort' => '3.63',
18711             'Devel::Peek' => '1.31',
18712             'DynaLoader' => '1.51',
18713             'Encode' => '3.10',
18714             'Encode::JP' => '2.05',
18715             'Errno' => '1.34',
18716             'ExtUtils::Miniperl' => '1.11',
18717             'Fcntl' => '1.15',
18718             'File::Find' => '1.39_01',
18719             'File::Glob' => '1.36',
18720             'File::stat' => '1.11',
18721             'GDBM_File' => '1.20',
18722             'Hash::Util' => '0.26',
18723             'Hash::Util::FieldHash' => '1.22',
18724             'I18N::Langinfo' => '0.20',
18725             'IPC::Open2' => '1.06',
18726             'IPC::Open3' => '1.22',
18727             'Math::BigFloat' => '1.999823',
18728             'Math::BigFloat::Trace' => '0.53',
18729             'Math::BigInt' => '1.999823',
18730             'Math::BigInt::Calc' => '1.999823',
18731             'Math::BigInt::FastCalc'=> '0.5010',
18732             'Math::BigInt::Lib' => '1.999823',
18733             'Math::BigInt::Trace' => '0.53',
18734             'Math::BigRat' => '0.2617',
18735             'Module::CoreList' => '5.20210723',
18736             'Module::CoreList::Utils'=> '5.20210723',
18737             'Opcode' => '1.52',
18738             'PerlIO' => '1.12',
18739             'Pod::Functions' => '1.14',
18740             'Pod::Functions::Functions'=> '1.14',
18741             'Pod::Html' => '1.31',
18742             'Pod::Html::Util' => '1.31',
18743             'Pod::Simple' => '3.43',
18744             'Pod::Simple::BlackBox' => '3.43',
18745             'Pod::Simple::Checker' => '3.43',
18746             'Pod::Simple::Debug' => '3.43',
18747             'Pod::Simple::DumpAsText'=> '3.43',
18748             'Pod::Simple::DumpAsXML'=> '3.43',
18749             'Pod::Simple::HTML' => '3.43',
18750             'Pod::Simple::HTMLBatch'=> '3.43',
18751             'Pod::Simple::LinkSection'=> '3.43',
18752             'Pod::Simple::Methody' => '3.43',
18753             'Pod::Simple::Progress' => '3.43',
18754             'Pod::Simple::PullParser'=> '3.43',
18755             'Pod::Simple::PullParserEndToken'=> '3.43',
18756             'Pod::Simple::PullParserStartToken'=> '3.43',
18757             'Pod::Simple::PullParserTextToken'=> '3.43',
18758             'Pod::Simple::PullParserToken'=> '3.43',
18759             'Pod::Simple::RTF' => '3.43',
18760             'Pod::Simple::Search' => '3.43',
18761             'Pod::Simple::SimpleTree'=> '3.43',
18762             'Pod::Simple::Text' => '3.43',
18763             'Pod::Simple::TextContent'=> '3.43',
18764             'Pod::Simple::TiedOutFH'=> '3.43',
18765             'Pod::Simple::Transcode'=> '3.43',
18766             'Pod::Simple::TranscodeDumb'=> '3.43',
18767             'Pod::Simple::TranscodeSmart'=> '3.43',
18768             'Pod::Simple::XHTML' => '3.43',
18769             'Pod::Simple::XMLOutStream'=> '3.43',
18770             'Sys::Hostname' => '1.24',
18771             'Text::Tabs' => '2021.0717',
18772             'Text::Wrap' => '2021.0717',
18773             'Time::HiRes' => '1.9768',
18774             'Unicode::UCD' => '0.77',
18775             'VMS::Filespec' => '1.13',
18776             'VMS::Stdio' => '2.46',
18777             'XSLoader' => '0.31',
18778             'bigint' => '0.53',
18779             'bignum' => '0.53',
18780             'bigrat' => '0.53',
18781             'if' => '0.0610',
18782             'threads' => '2.27',
18783             'warnings' => '1.52',
18784             },
18785             removed => {
18786             }
18787             },
18788             5.035003 => {
18789             delta_from => 5.035002,
18790             changed => {
18791             'Archive::Tar' => '2.40',
18792             'Archive::Tar::Constant'=> '2.40',
18793             'Archive::Tar::File' => '2.40',
18794             'B::Op_private' => '5.035003',
18795             'Config' => '5.035003',
18796             'Encode' => '3.12',
18797             'Encode::GSM0338' => '2.10',
18798             'Encode::Unicode' => '2.19',
18799             'Module::CoreList' => '5.20210820',
18800             'Module::CoreList::Utils'=> '5.20210820',
18801             'Net::hostent' => '1.03',
18802             'Opcode' => '1.53',
18803             'POSIX' => '1.99',
18804             'Pod::Html' => '1.32',
18805             'Pod::Html::Util' => '1.32',
18806             'Storable' => '3.24',
18807             'Text::Tabs' => '2021.0804',
18808             'Text::Wrap' => '2021.0804',
18809             'Time::HiRes' => '1.9769',
18810             'Unicode::Normalize' => '1.30',
18811             'XS::APItest' => '1.18',
18812             'diagnostics' => '1.38',
18813             'feature' => '1.67',
18814             'sort' => '2.05',
18815             'threads::shared' => '1.63',
18816             'warnings' => '1.53',
18817             },
18818             removed => {
18819             }
18820             },
18821             5.035004 => {
18822             delta_from => 5.035003,
18823             changed => {
18824             'B' => '1.83',
18825             'B::Deparse' => '1.58',
18826             'B::Op_private' => '5.035004',
18827             'Config' => '5.035004',
18828             'Devel::Peek' => '1.32',
18829             'Exporter' => '5.77',
18830             'Exporter::Heavy' => '5.77',
18831             'ExtUtils::ParseXS' => '3.44',
18832             'ExtUtils::ParseXS::Constants'=> '3.44',
18833             'ExtUtils::ParseXS::CountLines'=> '3.44',
18834             'ExtUtils::ParseXS::Eval'=> '3.44',
18835             'ExtUtils::ParseXS::Utilities'=> '3.44',
18836             'ExtUtils::Typemaps' => '3.44',
18837             'ExtUtils::Typemaps::Cmd'=> '3.44',
18838             'ExtUtils::Typemaps::InputMap'=> '3.44',
18839             'ExtUtils::Typemaps::OutputMap'=> '3.44',
18840             'ExtUtils::Typemaps::Type'=> '3.44',
18841             'Hash::Util::FieldHash' => '1.23',
18842             'IO' => '1.48',
18843             'IO::Dir' => '1.48',
18844             'IO::File' => '1.48',
18845             'IO::Handle' => '1.48',
18846             'IO::Pipe' => '1.48',
18847             'IO::Poll' => '1.48',
18848             'IO::Seekable' => '1.48',
18849             'IO::Select' => '1.48',
18850             'IO::Socket' => '1.48',
18851             'IO::Socket::INET' => '1.48',
18852             'IO::Socket::UNIX' => '1.48',
18853             'List::Util' => '1.56_001',
18854             'List::Util::XS' => '1.56_001',
18855             'Module::CoreList' => '5.20210920',
18856             'Module::CoreList::Utils'=> '5.20210920',
18857             'Opcode' => '1.54',
18858             'Pod::Html' => '1.33',
18859             'Pod::Html::Util' => '1.33',
18860             'Scalar::Util' => '1.56_001',
18861             'Storable' => '3.25',
18862             'Sub::Util' => '1.56_001',
18863             'Text::Tabs' => '2021.0814',
18864             'Text::Wrap' => '2021.0814',
18865             'UNIVERSAL' => '1.14',
18866             'Unicode' => '14.0.0',
18867             'Unicode::Collate' => '1.31',
18868             'Unicode::Collate::CJK::Big5'=> '1.31',
18869             'Unicode::Collate::CJK::GB2312'=> '1.31',
18870             'Unicode::Collate::CJK::JISX0208'=> '1.31',
18871             'Unicode::Collate::CJK::Korean'=> '1.31',
18872             'Unicode::Collate::CJK::Pinyin'=> '1.31',
18873             'Unicode::Collate::CJK::Stroke'=> '1.31',
18874             'Unicode::Collate::CJK::Zhuyin'=> '1.31',
18875             'Unicode::Collate::Locale'=> '1.31',
18876             'Unicode::UCD' => '0.78',
18877             'XS::APItest' => '1.19',
18878             'XS::Typemap' => '0.19',
18879             'attributes' => '0.34',
18880             'feature' => '1.68',
18881             'mro' => '1.26',
18882             'threads::shared' => '1.64',
18883             'warnings' => '1.54',
18884             },
18885             removed => {
18886             }
18887             },
18888             5.035005 => {
18889             delta_from => 5.035004,
18890             changed => {
18891             'B::Concise' => '1.006',
18892             'B::Deparse' => '1.59',
18893             'B::Op_private' => '5.035005',
18894             'Config' => '5.035005',
18895             'Digest' => '1.20',
18896             'Digest::base' => '1.20',
18897             'Digest::file' => '1.20',
18898             'DynaLoader' => '1.52',
18899             'Encode' => '3.16',
18900             'Errno' => '1.35',
18901             'File::Copy' => '2.37',
18902             'File::Spec::Unix' => '3.82',
18903             'FindBin' => '1.53',
18904             'GDBM_File' => '1.21',
18905             'HTTP::Tiny' => '0.078',
18906             'I18N::Langinfo' => '0.21',
18907             'IO::Dir' => '1.49',
18908             'IO::Pipe' => '1.49',
18909             'IO::Poll' => '1.49',
18910             'IO::Select' => '1.49',
18911             'IO::Socket' => '1.49',
18912             'IO::Socket::INET' => '1.49',
18913             'IO::Socket::UNIX' => '1.49',
18914             'List::Util' => '1.60',
18915             'List::Util::XS' => '1.60',
18916             'Math::BigRat::Trace' => '0.63',
18917             'Module::CoreList' => '5.20211020',
18918             'Module::CoreList::Utils'=> '5.20211020',
18919             'POSIX' => '2.01',
18920             'Scalar::Util' => '1.60',
18921             'Sub::Util' => '1.60',
18922             'Test2' => '1.302188',
18923             'Test2::API' => '1.302188',
18924             'Test2::API::Breakage' => '1.302188',
18925             'Test2::API::Context' => '1.302188',
18926             'Test2::API::Instance' => '1.302188',
18927             'Test2::API::InterceptResult'=> '1.302188',
18928             'Test2::API::InterceptResult::Event'=> '1.302188',
18929             'Test2::API::InterceptResult::Facet'=> '1.302188',
18930             'Test2::API::InterceptResult::Hub'=> '1.302188',
18931             'Test2::API::InterceptResult::Squasher'=> '1.302188',
18932             'Test2::API::Stack' => '1.302188',
18933             'Test2::Event' => '1.302188',
18934             'Test2::Event::Bail' => '1.302188',
18935             'Test2::Event::Diag' => '1.302188',
18936             'Test2::Event::Encoding'=> '1.302188',
18937             'Test2::Event::Exception'=> '1.302188',
18938             'Test2::Event::Fail' => '1.302188',
18939             'Test2::Event::Generic' => '1.302188',
18940             'Test2::Event::Note' => '1.302188',
18941             'Test2::Event::Ok' => '1.302188',
18942             'Test2::Event::Pass' => '1.302188',
18943             'Test2::Event::Plan' => '1.302188',
18944             'Test2::Event::Skip' => '1.302188',
18945             'Test2::Event::Subtest' => '1.302188',
18946             'Test2::Event::TAP::Version'=> '1.302188',
18947             'Test2::Event::V2' => '1.302188',
18948             'Test2::Event::Waiting' => '1.302188',
18949             'Test2::EventFacet' => '1.302188',
18950             'Test2::EventFacet::About'=> '1.302188',
18951             'Test2::EventFacet::Amnesty'=> '1.302188',
18952             'Test2::EventFacet::Assert'=> '1.302188',
18953             'Test2::EventFacet::Control'=> '1.302188',
18954             'Test2::EventFacet::Error'=> '1.302188',
18955             'Test2::EventFacet::Hub'=> '1.302188',
18956             'Test2::EventFacet::Info'=> '1.302188',
18957             'Test2::EventFacet::Info::Table'=> '1.302188',
18958             'Test2::EventFacet::Meta'=> '1.302188',
18959             'Test2::EventFacet::Parent'=> '1.302188',
18960             'Test2::EventFacet::Plan'=> '1.302188',
18961             'Test2::EventFacet::Render'=> '1.302188',
18962             'Test2::EventFacet::Trace'=> '1.302188',
18963             'Test2::Formatter' => '1.302188',
18964             'Test2::Formatter::TAP' => '1.302188',
18965             'Test2::Hub' => '1.302188',
18966             'Test2::Hub::Interceptor'=> '1.302188',
18967             'Test2::Hub::Interceptor::Terminator'=> '1.302188',
18968             'Test2::Hub::Subtest' => '1.302188',
18969             'Test2::IPC' => '1.302188',
18970             'Test2::IPC::Driver' => '1.302188',
18971             'Test2::IPC::Driver::Files'=> '1.302188',
18972             'Test2::Tools::Tiny' => '1.302188',
18973             'Test2::Util' => '1.302188',
18974             'Test2::Util::ExternalMeta'=> '1.302188',
18975             'Test2::Util::Facets2Legacy'=> '1.302188',
18976             'Test2::Util::HashBase' => '1.302188',
18977             'Test2::Util::Trace' => '1.302188',
18978             'Test::Builder' => '1.302188',
18979             'Test::Builder::Formatter'=> '1.302188',
18980             'Test::Builder::Module' => '1.302188',
18981             'Test::Builder::Tester' => '1.302188',
18982             'Test::Builder::Tester::Color'=> '1.302188',
18983             'Test::Builder::TodoDiag'=> '1.302188',
18984             'Test::More' => '1.302188',
18985             'Test::Simple' => '1.302188',
18986             'Test::Tester' => '1.302188',
18987             'Test::Tester::Capture' => '1.302188',
18988             'Test::Tester::CaptureRunner'=> '1.302188',
18989             'Test::Tester::Delegate'=> '1.302188',
18990             'Test::use::ok' => '1.302188',
18991             'Tie::Handle' => '4.3',
18992             'Tie::Hash' => '1.06',
18993             'Tie::Scalar' => '1.06',
18994             'XS::APItest' => '1.20',
18995             'experimental' => '0.025',
18996             'ok' => '1.302188',
18997             'warnings' => '1.55',
18998             },
18999             removed => {
19000             }
19001             },
19002             5.035006 => {
19003             delta_from => 5.035005,
19004             changed => {
19005             'B::Op_private' => '5.035006',
19006             'Config' => '5.035006',
19007             'File::Glob' => '1.37',
19008             'File::stat' => '1.12',
19009             'GDBM_File' => '1.22',
19010             'HTTP::Tiny' => '0.080',
19011             'Math::BigFloat' => '1.999827',
19012             'Math::BigFloat::Trace' => '0.63',
19013             'Math::BigInt' => '1.999827',
19014             'Math::BigInt::Calc' => '1.999827',
19015             'Math::BigInt::FastCalc'=> '0.5012',
19016             'Math::BigInt::Lib' => '1.999827',
19017             'Math::BigInt::Trace' => '0.63',
19018             'Math::BigRat' => '0.2620',
19019             'Module::CoreList' => '5.20211120',
19020             'Module::CoreList::Utils'=> '5.20211120',
19021             'POSIX' => '2.02',
19022             'bigint' => '0.63',
19023             'bignum' => '0.63',
19024             'bigrat' => '0.63',
19025             'diagnostics' => '1.39',
19026             'feature' => '1.69',
19027             'warnings' => '1.56',
19028             },
19029             removed => {
19030             }
19031             },
19032             5.035007 => {
19033             delta_from => 5.035006,
19034             changed => {
19035             'B::Deparse' => '1.60',
19036             'B::Op_private' => '5.035007',
19037             'CPAN' => '2.29',
19038             'CPAN::Distribution' => '2.29',
19039             'CPAN::FTP' => '5.5014',
19040             'CPAN::FirstTime' => '5.5316',
19041             'CPAN::HandleConfig' => '5.5012',
19042             'CPAN::Index' => '2.29',
19043             'Config' => '5.035007',
19044             'Cwd' => '3.83',
19045             'ExtUtils::Command' => '7.64',
19046             'ExtUtils::Command::MM' => '7.64',
19047             'ExtUtils::Liblist' => '7.64',
19048             'ExtUtils::Liblist::Kid'=> '7.64',
19049             'ExtUtils::MM' => '7.64',
19050             'ExtUtils::MM_AIX' => '7.64',
19051             'ExtUtils::MM_Any' => '7.64',
19052             'ExtUtils::MM_BeOS' => '7.64',
19053             'ExtUtils::MM_Cygwin' => '7.64',
19054             'ExtUtils::MM_DOS' => '7.64',
19055             'ExtUtils::MM_Darwin' => '7.64',
19056             'ExtUtils::MM_MacOS' => '7.64',
19057             'ExtUtils::MM_NW5' => '7.64',
19058             'ExtUtils::MM_OS2' => '7.64',
19059             'ExtUtils::MM_OS390' => '7.64',
19060             'ExtUtils::MM_QNX' => '7.64',
19061             'ExtUtils::MM_UWIN' => '7.64',
19062             'ExtUtils::MM_Unix' => '7.64',
19063             'ExtUtils::MM_VMS' => '7.64',
19064             'ExtUtils::MM_VOS' => '7.64',
19065             'ExtUtils::MM_Win32' => '7.64',
19066             'ExtUtils::MM_Win95' => '7.64',
19067             'ExtUtils::MY' => '7.64',
19068             'ExtUtils::MakeMaker' => '7.64',
19069             'ExtUtils::MakeMaker::Config'=> '7.64',
19070             'ExtUtils::MakeMaker::Locale'=> '7.64',
19071             'ExtUtils::MakeMaker::version'=> '7.64',
19072             'ExtUtils::MakeMaker::version::regex'=> '7.64',
19073             'ExtUtils::Mkbootstrap' => '7.64',
19074             'ExtUtils::Mksymlists' => '7.64',
19075             'ExtUtils::testlib' => '7.64',
19076             'File::Compare' => '1.1007',
19077             'File::Copy' => '2.38',
19078             'File::Spec' => '3.83',
19079             'File::Spec::AmigaOS' => '3.83',
19080             'File::Spec::Cygwin' => '3.83',
19081             'File::Spec::Epoc' => '3.83',
19082             'File::Spec::Functions' => '3.83',
19083             'File::Spec::Mac' => '3.83',
19084             'File::Spec::OS2' => '3.83',
19085             'File::Spec::Unix' => '3.83',
19086             'File::Spec::VMS' => '3.83',
19087             'File::Spec::Win32' => '3.83',
19088             'Hash::Util' => '0.27',
19089             'Hash::Util::FieldHash' => '1.24',
19090             'IO' => '1.49',
19091             'JSON::PP' => '4.07',
19092             'JSON::PP::Boolean' => '4.07',
19093             'Math::BigFloat' => '1.999828',
19094             'Math::BigInt' => '1.999828',
19095             'Math::BigInt::Calc' => '1.999828',
19096             'Math::BigInt::Lib' => '1.999828',
19097             'Module::CoreList' => '5.20211220',
19098             'Module::CoreList::Utils'=> '5.20211220',
19099             'Opcode' => '1.55',
19100             'builtin' => '0.001',
19101             'overload' => '1.34',
19102             },
19103             removed => {
19104             }
19105             },
19106             5.035008 => {
19107             delta_from => 5.035007,
19108             changed => {
19109             'B::Deparse' => '1.61',
19110             'B::Op_private' => '5.035008',
19111             'Config' => '5.035008',
19112             'Data::Dumper' => '2.184',
19113             'Errno' => '1.36',
19114             'File::Fetch' => '1.04',
19115             'File::Find' => '1.40',
19116             'Hash::Util::FieldHash' => '1.25',
19117             'Locale::Maketext' => '1.30',
19118             'Math::BigFloat' => '1.999829',
19119             'Math::BigFloat::Trace' => '0.64',
19120             'Math::BigInt' => '1.999829',
19121             'Math::BigInt::Calc' => '1.999829',
19122             'Math::BigInt::Lib' => '1.999829',
19123             'Math::BigInt::Trace' => '0.64',
19124             'Math::BigRat::Trace' => '0.64',
19125             'Module::CoreList' => '5.20220120',
19126             'Module::CoreList::Utils'=> '5.20220120',
19127             'NEXT' => '0.69',
19128             'POSIX' => '2.03',
19129             'Win32' => '0.58',
19130             '_charnames' => '1.49',
19131             'bigint' => '0.64',
19132             'bignum' => '0.64',
19133             'bigrat' => '0.64',
19134             'charnames' => '1.49',
19135             },
19136             removed => {
19137             }
19138             },
19139             5.035009 => {
19140             delta_from => 5.035008,
19141             changed => {
19142             'App::Cpan' => '1.678',
19143             'B::Deparse' => '1.62',
19144             'B::Op_private' => '5.035009',
19145             'CPAN' => '2.33',
19146             'CPAN::Distribution' => '2.33',
19147             'CPAN::FTP' => '5.5016',
19148             'CPAN::FirstTime' => '5.5317',
19149             'Config' => '5.035009',
19150             'Devel::PPPort' => '3.64',
19151             'File::Copy' => '2.39',
19152             'Hash::Util' => '0.28',
19153             'Hash::Util::FieldHash' => '1.26',
19154             'List::Util' => '1.61',
19155             'List::Util::XS' => '1.61',
19156             'Module::CoreList' => '5.20220220',
19157             'Module::CoreList::Utils'=> '5.20220220',
19158             'Opcode' => '1.56',
19159             'Scalar::Util' => '1.61',
19160             'Sub::Util' => '1.61',
19161             'Tie::SubstrHash' => '1.01',
19162             'XS::APItest' => '1.21',
19163             '_charnames' => '1.50',
19164             'builtin' => '0.002',
19165             'charnames' => '1.50',
19166             'experimental' => '0.027',
19167             'feature' => '1.70',
19168             'overload' => '1.35',
19169             're' => '0.42',
19170             'sigtrap' => '1.10',
19171             'warnings' => '1.57',
19172             },
19173             removed => {
19174             }
19175             },
19176             5.034001 => {
19177             delta_from => 5.034000,
19178             changed => {
19179             'B::Deparse' => '1.57',
19180             'B::Op_private' => '5.034001',
19181             'Config' => '5.034001',
19182             'Encode' => '3.08_01',
19183             'GDBM_File' => '1.19_01',
19184             'Module::CoreList' => '5.20220313',
19185             'Module::CoreList::Utils'=> '5.20220313',
19186             },
19187             removed => {
19188             }
19189             },
19190             5.035010 => {
19191             delta_from => 5.035009,
19192             changed => {
19193             'Attribute::Handlers' => '1.02',
19194             'B::Deparse' => '1.63',
19195             'B::Op_private' => '5.035010',
19196             'Config' => '5.03501',
19197             'Cwd' => '3.84',
19198             'DB_File' => '1.857',
19199             'Devel::PPPort' => '3.68',
19200             'ExtUtils::ParseXS' => '3.45',
19201             'ExtUtils::ParseXS::Constants'=> '3.45',
19202             'ExtUtils::ParseXS::CountLines'=> '3.45',
19203             'ExtUtils::ParseXS::Eval'=> '3.45',
19204             'ExtUtils::ParseXS::Utilities'=> '3.45',
19205             'ExtUtils::Typemaps' => '3.45',
19206             'ExtUtils::Typemaps::Cmd'=> '3.45',
19207             'ExtUtils::Typemaps::InputMap'=> '3.45',
19208             'ExtUtils::Typemaps::OutputMap'=> '3.45',
19209             'ExtUtils::Typemaps::Type'=> '3.45',
19210             'File::Spec' => '3.84',
19211             'File::Spec::AmigaOS' => '3.84',
19212             'File::Spec::Cygwin' => '3.84',
19213             'File::Spec::Epoc' => '3.84',
19214             'File::Spec::Functions' => '3.84',
19215             'File::Spec::Mac' => '3.84',
19216             'File::Spec::OS2' => '3.84',
19217             'File::Spec::Unix' => '3.84',
19218             'File::Spec::VMS' => '3.84',
19219             'File::Spec::Win32' => '3.84',
19220             'GDBM_File' => '1.23',
19221             'List::Util' => '1.62',
19222             'List::Util::XS' => '1.62',
19223             'Module::CoreList' => '5.20220320',
19224             'Module::CoreList::Utils'=> '5.20220320',
19225             'Opcode' => '1.57',
19226             'Scalar::Util' => '1.62',
19227             'Sub::Util' => '1.62',
19228             'Test2' => '1.302190',
19229             'Test2::API' => '1.302190',
19230             'Test2::API::Breakage' => '1.302190',
19231             'Test2::API::Context' => '1.302190',
19232             'Test2::API::Instance' => '1.302190',
19233             'Test2::API::InterceptResult'=> '1.302190',
19234             'Test2::API::InterceptResult::Event'=> '1.302190',
19235             'Test2::API::InterceptResult::Facet'=> '1.302190',
19236             'Test2::API::InterceptResult::Hub'=> '1.302190',
19237             'Test2::API::InterceptResult::Squasher'=> '1.302190',
19238             'Test2::API::Stack' => '1.302190',
19239             'Test2::Event' => '1.302190',
19240             'Test2::Event::Bail' => '1.302190',
19241             'Test2::Event::Diag' => '1.302190',
19242             'Test2::Event::Encoding'=> '1.302190',
19243             'Test2::Event::Exception'=> '1.302190',
19244             'Test2::Event::Fail' => '1.302190',
19245             'Test2::Event::Generic' => '1.302190',
19246             'Test2::Event::Note' => '1.302190',
19247             'Test2::Event::Ok' => '1.302190',
19248             'Test2::Event::Pass' => '1.302190',
19249             'Test2::Event::Plan' => '1.302190',
19250             'Test2::Event::Skip' => '1.302190',
19251             'Test2::Event::Subtest' => '1.302190',
19252             'Test2::Event::TAP::Version'=> '1.302190',
19253             'Test2::Event::V2' => '1.302190',
19254             'Test2::Event::Waiting' => '1.302190',
19255             'Test2::EventFacet' => '1.302190',
19256             'Test2::EventFacet::About'=> '1.302190',
19257             'Test2::EventFacet::Amnesty'=> '1.302190',
19258             'Test2::EventFacet::Assert'=> '1.302190',
19259             'Test2::EventFacet::Control'=> '1.302190',
19260             'Test2::EventFacet::Error'=> '1.302190',
19261             'Test2::EventFacet::Hub'=> '1.302190',
19262             'Test2::EventFacet::Info'=> '1.302190',
19263             'Test2::EventFacet::Info::Table'=> '1.302190',
19264             'Test2::EventFacet::Meta'=> '1.302190',
19265             'Test2::EventFacet::Parent'=> '1.302190',
19266             'Test2::EventFacet::Plan'=> '1.302190',
19267             'Test2::EventFacet::Render'=> '1.302190',
19268             'Test2::EventFacet::Trace'=> '1.302190',
19269             'Test2::Formatter' => '1.302190',
19270             'Test2::Formatter::TAP' => '1.302190',
19271             'Test2::Hub' => '1.302190',
19272             'Test2::Hub::Interceptor'=> '1.302190',
19273             'Test2::Hub::Interceptor::Terminator'=> '1.302190',
19274             'Test2::Hub::Subtest' => '1.302190',
19275             'Test2::IPC' => '1.302190',
19276             'Test2::IPC::Driver' => '1.302190',
19277             'Test2::IPC::Driver::Files'=> '1.302190',
19278             'Test2::Tools::Tiny' => '1.302190',
19279             'Test2::Util' => '1.302190',
19280             'Test2::Util::ExternalMeta'=> '1.302190',
19281             'Test2::Util::Facets2Legacy'=> '1.302190',
19282             'Test2::Util::HashBase' => '1.302190',
19283             'Test2::Util::Trace' => '1.302190',
19284             'Test::Builder' => '1.302190',
19285             'Test::Builder::Formatter'=> '1.302190',
19286             'Test::Builder::Module' => '1.302190',
19287             'Test::Builder::Tester' => '1.302190',
19288             'Test::Builder::Tester::Color'=> '1.302190',
19289             'Test::Builder::TodoDiag'=> '1.302190',
19290             'Test::More' => '1.302190',
19291             'Test::Simple' => '1.302190',
19292             'Test::Tester' => '1.302190',
19293             'Test::Tester::Capture' => '1.302190',
19294             'Test::Tester::CaptureRunner'=> '1.302190',
19295             'Test::Tester::Delegate'=> '1.302190',
19296             'Test::use::ok' => '1.302190',
19297             'XS::APItest' => '1.22',
19298             'builtin' => '0.004',
19299             'experimental' => '0.028',
19300             'feature' => '1.71',
19301             'ok' => '1.302190',
19302             'warnings' => '1.58',
19303             },
19304             removed => {
19305             }
19306             },
19307             5.035011 => {
19308             delta_from => 5.03501,
19309             changed => {
19310             'App::Prove' => '3.44',
19311             'App::Prove::State' => '3.44',
19312             'App::Prove::State::Result'=> '3.44',
19313             'App::Prove::State::Result::Test'=> '3.44',
19314             'B::Deparse' => '1.64',
19315             'B::Op_private' => '5.035011',
19316             'Compress::Raw::Bzip2' => '2.103',
19317             'Compress::Raw::Zlib' => '2.103',
19318             'Compress::Zlib' => '2.106',
19319             'Config' => '5.035011',
19320             'Encode' => '3.17',
19321             'Encode::Unicode' => '2.20',
19322             'ExtUtils::Constant::Base'=> '0.07',
19323             'IO' => '1.49_01',
19324             'IO::Compress::Adapter::Bzip2'=> '2.106',
19325             'IO::Compress::Adapter::Deflate'=> '2.106',
19326             'IO::Compress::Adapter::Identity'=> '2.106',
19327             'IO::Compress::Base' => '2.106',
19328             'IO::Compress::Base::Common'=> '2.106',
19329             'IO::Compress::Bzip2' => '2.106',
19330             'IO::Compress::Deflate' => '2.106',
19331             'IO::Compress::Gzip' => '2.106',
19332             'IO::Compress::Gzip::Constants'=> '2.106',
19333             'IO::Compress::RawDeflate'=> '2.106',
19334             'IO::Compress::Zip' => '2.106',
19335             'IO::Compress::Zip::Constants'=> '2.106',
19336             'IO::Compress::Zlib::Constants'=> '2.106',
19337             'IO::Compress::Zlib::Extra'=> '2.106',
19338             'IO::Uncompress::Adapter::Bunzip2'=> '2.106',
19339             'IO::Uncompress::Adapter::Identity'=> '2.106',
19340             'IO::Uncompress::Adapter::Inflate'=> '2.106',
19341             'IO::Uncompress::AnyInflate'=> '2.106',
19342             'IO::Uncompress::AnyUncompress'=> '2.106',
19343             'IO::Uncompress::Base' => '2.106',
19344             'IO::Uncompress::Bunzip2'=> '2.106',
19345             'IO::Uncompress::Gunzip'=> '2.106',
19346             'IO::Uncompress::Inflate'=> '2.106',
19347             'IO::Uncompress::RawInflate'=> '2.106',
19348             'IO::Uncompress::Unzip' => '2.106',
19349             'Locale::Maketext' => '1.31',
19350             'Math::BigFloat' => '1.999830',
19351             'Math::BigFloat::Trace' => '0.65',
19352             'Math::BigInt' => '1.999830',
19353             'Math::BigInt::Calc' => '1.999830',
19354             'Math::BigInt::Lib' => '1.999830',
19355             'Math::BigInt::Trace' => '0.65',
19356             'Math::BigRat' => '0.2621',
19357             'Math::BigRat::Trace' => '0.65',
19358             'Module::CoreList' => '5.20220420',
19359             'Module::CoreList::Utils'=> '5.20220420',
19360             'Net::Cmd' => '3.14',
19361             'Net::Config' => '3.14',
19362             'Net::Domain' => '3.14',
19363             'Net::FTP' => '3.14',
19364             'Net::FTP::A' => '3.14',
19365             'Net::FTP::E' => '3.14',
19366             'Net::FTP::I' => '3.14',
19367             'Net::FTP::L' => '3.14',
19368             'Net::FTP::dataconn' => '3.14',
19369             'Net::NNTP' => '3.14',
19370             'Net::Netrc' => '3.14',
19371             'Net::POP3' => '3.14',
19372             'Net::SMTP' => '3.14',
19373             'Net::Time' => '3.14',
19374             'Socket' => '2.033',
19375             'Storable' => '3.26',
19376             'TAP::Base' => '3.44',
19377             'TAP::Formatter::Base' => '3.44',
19378             'TAP::Formatter::Color' => '3.44',
19379             'TAP::Formatter::Console'=> '3.44',
19380             'TAP::Formatter::Console::ParallelSession'=> '3.44',
19381             'TAP::Formatter::Console::Session'=> '3.44',
19382             'TAP::Formatter::File' => '3.44',
19383             'TAP::Formatter::File::Session'=> '3.44',
19384             'TAP::Formatter::Session'=> '3.44',
19385             'TAP::Harness' => '3.44',
19386             'TAP::Harness::Env' => '3.44',
19387             'TAP::Object' => '3.44',
19388             'TAP::Parser' => '3.44',
19389             'TAP::Parser::Aggregator'=> '3.44',
19390             'TAP::Parser::Grammar' => '3.44',
19391             'TAP::Parser::Iterator' => '3.44',
19392             'TAP::Parser::Iterator::Array'=> '3.44',
19393             'TAP::Parser::Iterator::Process'=> '3.44',
19394             'TAP::Parser::Iterator::Stream'=> '3.44',
19395             'TAP::Parser::IteratorFactory'=> '3.44',
19396             'TAP::Parser::Multiplexer'=> '3.44',
19397             'TAP::Parser::Result' => '3.44',
19398             'TAP::Parser::Result::Bailout'=> '3.44',
19399             'TAP::Parser::Result::Comment'=> '3.44',
19400             'TAP::Parser::Result::Plan'=> '3.44',
19401             'TAP::Parser::Result::Pragma'=> '3.44',
19402             'TAP::Parser::Result::Test'=> '3.44',
19403             'TAP::Parser::Result::Unknown'=> '3.44',
19404             'TAP::Parser::Result::Version'=> '3.44',
19405             'TAP::Parser::Result::YAML'=> '3.44',
19406             'TAP::Parser::ResultFactory'=> '3.44',
19407             'TAP::Parser::Scheduler'=> '3.44',
19408             'TAP::Parser::Scheduler::Job'=> '3.44',
19409             'TAP::Parser::Scheduler::Spinner'=> '3.44',
19410             'TAP::Parser::Source' => '3.44',
19411             'TAP::Parser::SourceHandler'=> '3.44',
19412             'TAP::Parser::SourceHandler::Executable'=> '3.44',
19413             'TAP::Parser::SourceHandler::File'=> '3.44',
19414             'TAP::Parser::SourceHandler::Handle'=> '3.44',
19415             'TAP::Parser::SourceHandler::Perl'=> '3.44',
19416             'TAP::Parser::SourceHandler::RawTAP'=> '3.44',
19417             'TAP::Parser::YAMLish::Reader'=> '3.44',
19418             'TAP::Parser::YAMLish::Writer'=> '3.44',
19419             'Test::Harness' => '3.44',
19420             'Text::ParseWords' => '3.31',
19421             'Time::HiRes' => '1.9770',
19422             'Unicode::Normalize' => '1.31',
19423             'bigfloat' => '0.65',
19424             'bigint' => '0.65',
19425             'bignum' => '0.65',
19426             'bigrat' => '0.65',
19427             'builtin' => '0.005',
19428             're' => '0.43',
19429             },
19430             removed => {
19431             }
19432             },
19433             5.036000 => {
19434             delta_from => 5.035011,
19435             changed => {
19436             'Amiga::Exec' => '0.04',
19437             'B::Op_private' => '5.036000',
19438             'Compress::Raw::Zlib' => '2.105',
19439             'Config' => '5.036',
19440             'IO' => '1.50',
19441             'Module::CoreList' => '5.20220520',
19442             'Module::CoreList::Utils'=> '5.20220520',
19443             'Win32' => '0.59',
19444             'builtin' => '0.006',
19445             'feature' => '1.72',
19446             },
19447             removed => {
19448             }
19449             },
19450             5.037000 => {
19451             delta_from => 5.036000,
19452             changed => {
19453             'feature' => '1.73',
19454             'Module::CoreList' => '5.20220527',
19455             'Module::CoreList::Utils'=> '5.20220527',
19456             },
19457             removed => {
19458             }
19459             },
19460             5.037001 => {
19461             delta_from => 5.037000,
19462             changed => {
19463             'B' => '1.84',
19464             'B::Op_private' => '5.037001',
19465             'Carp' => '1.53',
19466             'Carp::Heavy' => '1.53',
19467             'Config' => '5.037001',
19468             'Cwd' => '3.85',
19469             'Data::Dumper' => '2.185',
19470             'ExtUtils::CBuilder' => '0.280237',
19471             'ExtUtils::CBuilder::Base'=> '0.280237',
19472             'ExtUtils::CBuilder::Platform::Unix'=> '0.280237',
19473             'ExtUtils::CBuilder::Platform::VMS'=> '0.280237',
19474             'ExtUtils::CBuilder::Platform::Windows'=> '0.280237',
19475             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280237',
19476             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280237',
19477             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280237',
19478             'ExtUtils::CBuilder::Platform::aix'=> '0.280237',
19479             'ExtUtils::CBuilder::Platform::android'=> '0.280237',
19480             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280237',
19481             'ExtUtils::CBuilder::Platform::darwin'=> '0.280237',
19482             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280237',
19483             'ExtUtils::CBuilder::Platform::os2'=> '0.280237',
19484             'ExtUtils::Miniperl' => '1.12',
19485             'File::Spec' => '3.85',
19486             'File::Spec::AmigaOS' => '3.85',
19487             'File::Spec::Cygwin' => '3.85',
19488             'File::Spec::Epoc' => '3.85',
19489             'File::Spec::Functions' => '3.85',
19490             'File::Spec::Mac' => '3.85',
19491             'File::Spec::OS2' => '3.85',
19492             'File::Spec::Unix' => '3.85',
19493             'File::Spec::VMS' => '3.85',
19494             'File::Spec::Win32' => '3.85',
19495             'FileHandle' => '2.04',
19496             'GDBM_File' => '1.24',
19497             'IO::Handle' => '1.49',
19498             'IO::Pipe' => '1.50',
19499             'IO::Socket::INET' => '1.50',
19500             'IO::Socket::UNIX' => '1.50',
19501             'Module::CoreList' => '5.20220620',
19502             'Module::CoreList::Utils'=> '5.20220620',
19503             'ODBM_File' => '1.18',
19504             'OS2::REXX' => '1.06',
19505             'Opcode' => '1.58',
19506             'POSIX' => '2.04',
19507             'SDBM_File' => '1.16',
19508             'Unicode::Normalize' => '1.32',
19509             'XS::APItest' => '1.23',
19510             'builtin' => '0.007',
19511             'encoding::warnings' => '0.14',
19512             'feature' => '1.74',
19513             'threads' => '2.28',
19514             },
19515             removed => {
19516             }
19517             },
19518             5.037002 => {
19519             delta_from => 5.037001,
19520             changed => {
19521             'B' => '1.85',
19522             'B::Concise' => '1.007',
19523             'B::Deparse' => '1.65',
19524             'B::Op_private' => '5.037002',
19525             'CPAN' => '2.34',
19526             'CPAN::Distribution' => '2.34',
19527             'Compress::Raw::Bzip2' => '2.201',
19528             'Compress::Raw::Zlib' => '2.202',
19529             'Compress::Zlib' => '2.201',
19530             'Config' => '5.037002',
19531             'Cwd' => '3.86',
19532             'DB_File' => '1.858',
19533             'Data::Dumper' => '2.186',
19534             'Encode' => '3.18',
19535             'Encode::MIME::Header' => '2.29',
19536             'File::Glob' => '1.38',
19537             'File::Spec' => '3.86',
19538             'File::Spec::AmigaOS' => '3.86',
19539             'File::Spec::Cygwin' => '3.86',
19540             'File::Spec::Epoc' => '3.86',
19541             'File::Spec::Functions' => '3.86',
19542             'File::Spec::Mac' => '3.86',
19543             'File::Spec::OS2' => '3.86',
19544             'File::Spec::Unix' => '3.86',
19545             'File::Spec::VMS' => '3.86',
19546             'File::Spec::Win32' => '3.86',
19547             'Filter::Util::Call' => '1.61',
19548             'Hash::Util' => '0.29',
19549             'I18N::LangTags::List' => '0.41',
19550             'IO::Compress::Adapter::Bzip2'=> '2.201',
19551             'IO::Compress::Adapter::Deflate'=> '2.201',
19552             'IO::Compress::Adapter::Identity'=> '2.201',
19553             'IO::Compress::Base' => '2.201',
19554             'IO::Compress::Base::Common'=> '2.201',
19555             'IO::Compress::Bzip2' => '2.201',
19556             'IO::Compress::Deflate' => '2.201',
19557             'IO::Compress::Gzip' => '2.201',
19558             'IO::Compress::Gzip::Constants'=> '2.201',
19559             'IO::Compress::RawDeflate'=> '2.201',
19560             'IO::Compress::Zip' => '2.201',
19561             'IO::Compress::Zip::Constants'=> '2.201',
19562             'IO::Compress::Zlib::Constants'=> '2.201',
19563             'IO::Compress::Zlib::Extra'=> '2.201',
19564             'IO::Uncompress::Adapter::Bunzip2'=> '2.201',
19565             'IO::Uncompress::Adapter::Identity'=> '2.201',
19566             'IO::Uncompress::Adapter::Inflate'=> '2.201',
19567             'IO::Uncompress::AnyInflate'=> '2.201',
19568             'IO::Uncompress::AnyUncompress'=> '2.201',
19569             'IO::Uncompress::Base' => '2.201',
19570             'IO::Uncompress::Bunzip2'=> '2.201',
19571             'IO::Uncompress::Gunzip'=> '2.201',
19572             'IO::Uncompress::Inflate'=> '2.201',
19573             'IO::Uncompress::RawInflate'=> '2.201',
19574             'IO::Uncompress::Unzip' => '2.201',
19575             'JSON::PP' => '4.10',
19576             'JSON::PP::Boolean' => '4.10',
19577             'Math::BigFloat' => '1.999837',
19578             'Math::BigFloat::Trace' => '0.66',
19579             'Math::BigInt' => '1.999837',
19580             'Math::BigInt::Calc' => '1.999837',
19581             'Math::BigInt::FastCalc'=> '0.5013',
19582             'Math::BigInt::Lib' => '1.999837',
19583             'Math::BigInt::Trace' => '0.66',
19584             'Math::BigRat' => '0.2624',
19585             'Math::BigRat::Trace' => '0.66',
19586             'Module::CoreList' => '5.20220720',
19587             'Module::CoreList::Utils'=> '5.20220720',
19588             'Opcode' => '1.59',
19589             'PerlIO::via::QuotedPrint'=> '0.10',
19590             'Pod::Checker' => '1.75',
19591             'Pod::Usage' => '2.03',
19592             'Socket' => '2.035',
19593             'Storable' => '3.27',
19594             'Test2' => '1.302191',
19595             'Test2::API' => '1.302191',
19596             'Test2::API::Breakage' => '1.302191',
19597             'Test2::API::Context' => '1.302191',
19598             'Test2::API::Instance' => '1.302191',
19599             'Test2::API::InterceptResult'=> '1.302191',
19600             'Test2::API::InterceptResult::Event'=> '1.302191',
19601             'Test2::API::InterceptResult::Facet'=> '1.302191',
19602             'Test2::API::InterceptResult::Hub'=> '1.302191',
19603             'Test2::API::InterceptResult::Squasher'=> '1.302191',
19604             'Test2::API::Stack' => '1.302191',
19605             'Test2::Event' => '1.302191',
19606             'Test2::Event::Bail' => '1.302191',
19607             'Test2::Event::Diag' => '1.302191',
19608             'Test2::Event::Encoding'=> '1.302191',
19609             'Test2::Event::Exception'=> '1.302191',
19610             'Test2::Event::Fail' => '1.302191',
19611             'Test2::Event::Generic' => '1.302191',
19612             'Test2::Event::Note' => '1.302191',
19613             'Test2::Event::Ok' => '1.302191',
19614             'Test2::Event::Pass' => '1.302191',
19615             'Test2::Event::Plan' => '1.302191',
19616             'Test2::Event::Skip' => '1.302191',
19617             'Test2::Event::Subtest' => '1.302191',
19618             'Test2::Event::TAP::Version'=> '1.302191',
19619             'Test2::Event::V2' => '1.302191',
19620             'Test2::Event::Waiting' => '1.302191',
19621             'Test2::EventFacet' => '1.302191',
19622             'Test2::EventFacet::About'=> '1.302191',
19623             'Test2::EventFacet::Amnesty'=> '1.302191',
19624             'Test2::EventFacet::Assert'=> '1.302191',
19625             'Test2::EventFacet::Control'=> '1.302191',
19626             'Test2::EventFacet::Error'=> '1.302191',
19627             'Test2::EventFacet::Hub'=> '1.302191',
19628             'Test2::EventFacet::Info'=> '1.302191',
19629             'Test2::EventFacet::Info::Table'=> '1.302191',
19630             'Test2::EventFacet::Meta'=> '1.302191',
19631             'Test2::EventFacet::Parent'=> '1.302191',
19632             'Test2::EventFacet::Plan'=> '1.302191',
19633             'Test2::EventFacet::Render'=> '1.302191',
19634             'Test2::EventFacet::Trace'=> '1.302191',
19635             'Test2::Formatter' => '1.302191',
19636             'Test2::Formatter::TAP' => '1.302191',
19637             'Test2::Hub' => '1.302191',
19638             'Test2::Hub::Interceptor'=> '1.302191',
19639             'Test2::Hub::Interceptor::Terminator'=> '1.302191',
19640             'Test2::Hub::Subtest' => '1.302191',
19641             'Test2::IPC' => '1.302191',
19642             'Test2::IPC::Driver' => '1.302191',
19643             'Test2::IPC::Driver::Files'=> '1.302191',
19644             'Test2::Tools::Tiny' => '1.302191',
19645             'Test2::Util' => '1.302191',
19646             'Test2::Util::ExternalMeta'=> '1.302191',
19647             'Test2::Util::Facets2Legacy'=> '1.302191',
19648             'Test2::Util::HashBase' => '1.302191',
19649             'Test2::Util::Trace' => '1.302191',
19650             'Test::Builder' => '1.302191',
19651             'Test::Builder::Formatter'=> '1.302191',
19652             'Test::Builder::Module' => '1.302191',
19653             'Test::Builder::Tester' => '1.302191',
19654             'Test::Builder::Tester::Color'=> '1.302191',
19655             'Test::Builder::TodoDiag'=> '1.302191',
19656             'Test::More' => '1.302191',
19657             'Test::Simple' => '1.302191',
19658             'Test::Tester' => '1.302191',
19659             'Test::Tester::Capture' => '1.302191',
19660             'Test::Tester::CaptureRunner'=> '1.302191',
19661             'Test::Tester::Delegate'=> '1.302191',
19662             'Test::use::ok' => '1.302191',
19663             'Text::Balanced' => '2.06',
19664             'XS::APItest' => '1.24',
19665             'bigfloat' => '0.66',
19666             'bigint' => '0.66',
19667             'bignum' => '0.66',
19668             'bigrat' => '0.66',
19669             'builtin' => '0.008',
19670             'feature' => '1.75',
19671             'ok' => '1.302191',
19672             'threads::shared' => '1.65',
19673             },
19674             removed => {
19675             }
19676             },
19677             5.037003 => {
19678             delta_from => 5.037002,
19679             changed => {
19680             'B' => '1.86',
19681             'B::Deparse' => '1.68',
19682             'B::Op_private' => '5.037003',
19683             'Config' => '5.037003',
19684             'Digest::SHA' => '6.03',
19685             'DynaLoader' => '1.53',
19686             'Encode' => '3.19',
19687             'Encode::Alias' => '2.25',
19688             'ExtUtils::PL2Bat' => '0.005',
19689             'File::Find' => '1.41',
19690             'Filter::Util::Call' => '1.64',
19691             'HTTP::Tiny' => '0.082',
19692             'JSON::PP' => '4.11',
19693             'JSON::PP::Boolean' => '4.11',
19694             'List::Util' => '1.63',
19695             'List::Util::XS' => '1.63',
19696             'Memoize' => '1.10',
19697             'Memoize::AnyDBM_File' => '1.10',
19698             'Memoize::Expire' => '1.10',
19699             'Memoize::NDBM_File' => '1.10',
19700             'Memoize::SDBM_File' => '1.10',
19701             'Memoize::Storable' => '1.10',
19702             'Module::CoreList' => '5.20220820',
19703             'Module::CoreList::Utils'=> '5.20220820',
19704             'NDBM_File' => '1.16',
19705             'Opcode' => '1.60',
19706             'Scalar::Util' => '1.63',
19707             'Socket' => '2.036',
19708             'Sub::Util' => '1.63',
19709             'XS::APItest' => '1.25',
19710             'attributes' => '0.35',
19711             'threads' => '2.29',
19712             },
19713             removed => {
19714             'Memoize::ExpireFile' => 1,
19715             'Memoize::ExpireTest' => 1,
19716             }
19717             },
19718             5.037004 => {
19719             delta_from => 5.037003,
19720             changed => {
19721             'B::Deparse' => '1.69',
19722             'B::Op_private' => '5.037004',
19723             'Carp' => '1.54',
19724             'Carp::Heavy' => '1.54',
19725             'Class::Struct' => '0.67',
19726             'Config' => '5.037004',
19727             'Config::Perl::V' => '0.34',
19728             'Errno' => '1.37',
19729             'ExtUtils::ParseXS' => '3.46',
19730             'ExtUtils::ParseXS::Constants'=> '3.46',
19731             'ExtUtils::ParseXS::CountLines'=> '3.46',
19732             'ExtUtils::ParseXS::Eval'=> '3.46',
19733             'ExtUtils::ParseXS::Utilities'=> '3.46',
19734             'ExtUtils::Typemaps' => '3.46',
19735             'ExtUtils::Typemaps::Cmd'=> '3.46',
19736             'ExtUtils::Typemaps::InputMap'=> '3.46',
19737             'ExtUtils::Typemaps::OutputMap'=> '3.46',
19738             'ExtUtils::Typemaps::Type'=> '3.46',
19739             'File::Basename' => '2.86',
19740             'File::Copy' => '2.40',
19741             'File::Spec' => '3.87',
19742             'File::stat' => '1.13',
19743             'FileHandle' => '2.05',
19744             'Hash::Util' => '0.30',
19745             'I18N::Langinfo' => '0.22',
19746             'IO' => '1.51',
19747             'IO::Dir' => '1.51',
19748             'IO::File' => '1.51',
19749             'IO::Handle' => '1.51',
19750             'IO::Pipe' => '1.51',
19751             'IO::Poll' => '1.51',
19752             'IO::Seekable' => '1.51',
19753             'IO::Select' => '1.51',
19754             'IO::Socket' => '1.51',
19755             'IO::Socket::INET' => '1.51',
19756             'IO::Socket::UNIX' => '1.51',
19757             'Locale::Maketext' => '1.32',
19758             'Module::CoreList' => '5.20220920',
19759             'Module::CoreList::Utils'=> '5.20220920',
19760             'Net::protoent' => '1.02',
19761             'Net::servent' => '1.03',
19762             'Opcode' => '1.61',
19763             'POSIX' => '2.06',
19764             'Safe' => '2.44',
19765             'Sys::Hostname' => '1.25',
19766             'Time::HiRes' => '1.9771',
19767             'User::grent' => '1.04',
19768             'User::pwent' => '1.02',
19769             'XS::APItest' => '1.26',
19770             'XSLoader' => '0.32',
19771             'feature' => '1.76',
19772             },
19773             removed => {
19774             }
19775             },
19776             5.037005 => {
19777             delta_from => 5.037004,
19778             changed => {
19779             'B::Deparse' => '1.70',
19780             'B::Op_private' => '5.037005',
19781             'Config' => '5.037005',
19782             'JSON::PP' => '4.12',
19783             'JSON::PP::Boolean' => '4.12',
19784             'Math::Complex' => '1.5903',
19785             'Math::Trig' => '1.2301',
19786             'Memoize' => '1.14',
19787             'Memoize::AnyDBM_File' => '1.14',
19788             'Memoize::Expire' => '1.14',
19789             'Memoize::NDBM_File' => '1.14',
19790             'Memoize::SDBM_File' => '1.14',
19791             'Memoize::Storable' => '1.14',
19792             'Module::CoreList' => '5.20221020',
19793             'Module::CoreList::Utils'=> '5.20221020',
19794             'Net::Ping' => '2.75',
19795             'POSIX' => '2.07',
19796             'Unicode' => '15.0.0',
19797             'threads' => '2.31',
19798             'warnings' => '1.59',
19799             },
19800             removed => {
19801             }
19802             },
19803             5.037006 => {
19804             delta_from => 5.037005,
19805             changed => {
19806             'Attribute::Handlers' => '1.03',
19807             'B' => '1.87',
19808             'B::Deparse' => '1.71',
19809             'B::Op_private' => '5.037006',
19810             'Config' => '5.037006',
19811             'Data::Dumper' => '2.187',
19812             'Devel::PPPort' => '3.69',
19813             'ExtUtils::CBuilder' => '0.280238',
19814             'ExtUtils::CBuilder::Base'=> '0.280238',
19815             'ExtUtils::CBuilder::Platform::Unix'=> '0.280238',
19816             'ExtUtils::CBuilder::Platform::VMS'=> '0.280238',
19817             'ExtUtils::CBuilder::Platform::Windows'=> '0.280238',
19818             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280238',
19819             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280238',
19820             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280238',
19821             'ExtUtils::CBuilder::Platform::aix'=> '0.280238',
19822             'ExtUtils::CBuilder::Platform::android'=> '0.280238',
19823             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280238',
19824             'ExtUtils::CBuilder::Platform::darwin'=> '0.280238',
19825             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280238',
19826             'ExtUtils::CBuilder::Platform::os2'=> '0.280238',
19827             'ExtUtils::ParseXS' => '3.48',
19828             'ExtUtils::ParseXS::Constants'=> '3.48',
19829             'ExtUtils::ParseXS::CountLines'=> '3.48',
19830             'ExtUtils::ParseXS::Eval'=> '3.48',
19831             'ExtUtils::ParseXS::Utilities'=> '3.48',
19832             'ExtUtils::Typemaps' => '3.48',
19833             'ExtUtils::Typemaps::Cmd'=> '3.48',
19834             'ExtUtils::Typemaps::InputMap'=> '3.48',
19835             'ExtUtils::Typemaps::OutputMap'=> '3.48',
19836             'ExtUtils::Typemaps::Type'=> '3.48',
19837             'Getopt::Long' => '2.54',
19838             'Memoize' => '1.15',
19839             'Memoize::AnyDBM_File' => '1.15',
19840             'Memoize::Expire' => '1.15',
19841             'Memoize::NDBM_File' => '1.15',
19842             'Memoize::SDBM_File' => '1.15',
19843             'Memoize::Storable' => '1.15',
19844             'Module::CoreList' => '5.20221120',
19845             'Module::CoreList::Utils'=> '5.20221120',
19846             'Opcode' => '1.62',
19847             'POSIX' => '2.08',
19848             'Storable' => '3.28',
19849             'Time::HiRes' => '1.9772',
19850             'XS::APItest' => '1.27',
19851             'experimental' => '0.029',
19852             'feature' => '1.77',
19853             'overload' => '1.36',
19854             'threads' => '2.32',
19855             'utf8' => '1.25',
19856             'warnings' => '1.61',
19857             },
19858             removed => {
19859             }
19860             },
19861             5.037007 => {
19862             delta_from => 5.037006,
19863             changed => {
19864             'B::Deparse' => '1.72',
19865             'B::Op_private' => '5.037007',
19866             'Config' => '5.037007',
19867             'Cwd' => '3.88',
19868             'ExtUtils::Miniperl' => '1.13',
19869             'ExtUtils::ParseXS' => '3.49',
19870             'ExtUtils::ParseXS::Constants'=> '3.49',
19871             'ExtUtils::ParseXS::CountLines'=> '3.49',
19872             'ExtUtils::ParseXS::Eval'=> '3.49',
19873             'ExtUtils::ParseXS::Utilities'=> '3.49',
19874             'ExtUtils::Typemaps' => '3.49',
19875             'ExtUtils::Typemaps::Cmd'=> '3.49',
19876             'ExtUtils::Typemaps::InputMap'=> '3.49',
19877             'ExtUtils::Typemaps::OutputMap'=> '3.49',
19878             'ExtUtils::Typemaps::Type'=> '3.49',
19879             'File::Glob' => '1.39',
19880             'File::Spec' => '3.88',
19881             'File::Spec::AmigaOS' => '3.88',
19882             'File::Spec::Cygwin' => '3.88',
19883             'File::Spec::Epoc' => '3.88',
19884             'File::Spec::Functions' => '3.88',
19885             'File::Spec::Mac' => '3.88',
19886             'File::Spec::OS2' => '3.88',
19887             'File::Spec::Unix' => '3.88',
19888             'File::Spec::VMS' => '3.88',
19889             'File::Spec::Win32' => '3.88',
19890             'Module::CoreList' => '5.20221220',
19891             'Module::CoreList::Utils'=> '5.20221220',
19892             'Opcode' => '1.63',
19893             'POSIX' => '2.10',
19894             'Pod::Html' => '1.34',
19895             'Pod::Html::Util' => '1.34',
19896             'Pod::Man' => '5.00',
19897             'Pod::ParseLink' => '5.00',
19898             'Pod::Text' => '5.00',
19899             'Pod::Text::Color' => '5.00',
19900             'Pod::Text::Overstrike' => '5.00',
19901             'Pod::Text::Termcap' => '5.00',
19902             'XS::APItest' => '1.28',
19903             'experimental' => '0.030',
19904             'feature' => '1.78',
19905             'parent' => '0.239',
19906             'threads' => '2.33',
19907             },
19908             removed => {
19909             }
19910             },
19911             5.037008 => {
19912             delta_from => 5.037007,
19913             changed => {
19914             'B::Op_private' => '5.037008',
19915             'Config' => '5.037008',
19916             'Config::Perl::V' => '0.35',
19917             'ExtUtils::Command' => '7.66',
19918             'ExtUtils::Command::MM' => '7.66',
19919             'ExtUtils::Install' => '2.22',
19920             'ExtUtils::Installed' => '2.22',
19921             'ExtUtils::Liblist' => '7.66',
19922             'ExtUtils::Liblist::Kid'=> '7.66',
19923             'ExtUtils::MM' => '7.66',
19924             'ExtUtils::MM_AIX' => '7.66',
19925             'ExtUtils::MM_Any' => '7.66',
19926             'ExtUtils::MM_BeOS' => '7.66',
19927             'ExtUtils::MM_Cygwin' => '7.66',
19928             'ExtUtils::MM_DOS' => '7.66',
19929             'ExtUtils::MM_Darwin' => '7.66',
19930             'ExtUtils::MM_MacOS' => '7.66',
19931             'ExtUtils::MM_NW5' => '7.66',
19932             'ExtUtils::MM_OS2' => '7.66',
19933             'ExtUtils::MM_OS390' => '7.66',
19934             'ExtUtils::MM_QNX' => '7.66',
19935             'ExtUtils::MM_UWIN' => '7.66',
19936             'ExtUtils::MM_Unix' => '7.66',
19937             'ExtUtils::MM_VMS' => '7.66',
19938             'ExtUtils::MM_VOS' => '7.66',
19939             'ExtUtils::MM_Win32' => '7.66',
19940             'ExtUtils::MM_Win95' => '7.66',
19941             'ExtUtils::MY' => '7.66',
19942             'ExtUtils::MakeMaker' => '7.66',
19943             'ExtUtils::MakeMaker::Config'=> '7.66',
19944             'ExtUtils::MakeMaker::Locale'=> '7.66',
19945             'ExtUtils::MakeMaker::version'=> '7.66',
19946             'ExtUtils::MakeMaker::version::regex'=> '7.66',
19947             'ExtUtils::Mkbootstrap' => '7.66',
19948             'ExtUtils::Mksymlists' => '7.66',
19949             'ExtUtils::Packlist' => '2.22',
19950             'ExtUtils::testlib' => '7.66',
19951             'File::Find' => '1.42',
19952             'IO::Zlib' => '1.14',
19953             'JSON::PP' => '4.16',
19954             'JSON::PP::Boolean' => '4.16',
19955             'Math::Complex' => '1.6',
19956             'Math::Trig' => '1.6',
19957             'Module::CoreList' => '5.20230120',
19958             'Module::CoreList::Utils'=> '5.20230120',
19959             'POSIX' => '2.11',
19960             'Pod::Man' => '5.01',
19961             'Pod::ParseLink' => '5.01',
19962             'Pod::Text' => '5.01',
19963             'Pod::Text::Color' => '5.01',
19964             'Pod::Text::Overstrike' => '5.01',
19965             'Pod::Text::Termcap' => '5.01',
19966             'Storable' => '3.29',
19967             'XS::APItest' => '1.30',
19968             'feature' => '1.79',
19969             're' => '0.44',
19970             'threads' => '2.34',
19971             },
19972             removed => {
19973             }
19974             },
19975             5.037009 => {
19976             delta_from => 5.037008,
19977             changed => {
19978             'B' => '1.88',
19979             'B::Op_private' => '5.037009',
19980             'Compress::Raw::Bzip2' => '2.204',
19981             'Compress::Raw::Zlib' => '2.204',
19982             'Compress::Zlib' => '2.204',
19983             'Config' => '5.037009',
19984             'Devel::PPPort' => '3.70',
19985             'Devel::Peek' => '1.33',
19986             'Fatal' => '2.36',
19987             'File::Find' => '1.43',
19988             'IO::Compress::Adapter::Bzip2'=> '2.204',
19989             'IO::Compress::Adapter::Deflate'=> '2.204',
19990             'IO::Compress::Adapter::Identity'=> '2.204',
19991             'IO::Compress::Base' => '2.204',
19992             'IO::Compress::Base::Common'=> '2.204',
19993             'IO::Compress::Bzip2' => '2.204',
19994             'IO::Compress::Deflate' => '2.204',
19995             'IO::Compress::Gzip' => '2.204',
19996             'IO::Compress::Gzip::Constants'=> '2.204',
19997             'IO::Compress::RawDeflate'=> '2.204',
19998             'IO::Compress::Zip' => '2.204',
19999             'IO::Compress::Zip::Constants'=> '2.204',
20000             'IO::Compress::Zlib::Constants'=> '2.204',
20001             'IO::Compress::Zlib::Extra'=> '2.204',
20002             'IO::Uncompress::Adapter::Bunzip2'=> '2.204',
20003             'IO::Uncompress::Adapter::Identity'=> '2.204',
20004             'IO::Uncompress::Adapter::Inflate'=> '2.204',
20005             'IO::Uncompress::AnyInflate'=> '2.204',
20006             'IO::Uncompress::AnyUncompress'=> '2.204',
20007             'IO::Uncompress::Base' => '2.204',
20008             'IO::Uncompress::Bunzip2'=> '2.204',
20009             'IO::Uncompress::Gunzip'=> '2.204',
20010             'IO::Uncompress::Inflate'=> '2.204',
20011             'IO::Uncompress::RawInflate'=> '2.204',
20012             'IO::Uncompress::Unzip' => '2.204',
20013             'Math::Complex' => '1.61',
20014             'Math::Trig' => '1.61',
20015             'Memoize' => '1.16',
20016             'Memoize::AnyDBM_File' => '1.16',
20017             'Memoize::Expire' => '1.16',
20018             'Memoize::NDBM_File' => '1.16',
20019             'Memoize::SDBM_File' => '1.16',
20020             'Memoize::Storable' => '1.16',
20021             'Module::CoreList' => '5.20230220',
20022             'Module::CoreList::Utils'=> '5.20230220',
20023             'Opcode' => '1.64',
20024             'Term::Cap' => '1.18',
20025             'Test2' => '1.302192',
20026             'Test2::API' => '1.302192',
20027             'Test2::API::Breakage' => '1.302192',
20028             'Test2::API::Context' => '1.302192',
20029             'Test2::API::Instance' => '1.302192',
20030             'Test2::API::InterceptResult'=> '1.302192',
20031             'Test2::API::InterceptResult::Event'=> '1.302192',
20032             'Test2::API::InterceptResult::Facet'=> '1.302192',
20033             'Test2::API::InterceptResult::Hub'=> '1.302192',
20034             'Test2::API::InterceptResult::Squasher'=> '1.302192',
20035             'Test2::API::Stack' => '1.302192',
20036             'Test2::Event' => '1.302192',
20037             'Test2::Event::Bail' => '1.302192',
20038             'Test2::Event::Diag' => '1.302192',
20039             'Test2::Event::Encoding'=> '1.302192',
20040             'Test2::Event::Exception'=> '1.302192',
20041             'Test2::Event::Fail' => '1.302192',
20042             'Test2::Event::Generic' => '1.302192',
20043             'Test2::Event::Note' => '1.302192',
20044             'Test2::Event::Ok' => '1.302192',
20045             'Test2::Event::Pass' => '1.302192',
20046             'Test2::Event::Plan' => '1.302192',
20047             'Test2::Event::Skip' => '1.302192',
20048             'Test2::Event::Subtest' => '1.302192',
20049             'Test2::Event::TAP::Version'=> '1.302192',
20050             'Test2::Event::V2' => '1.302192',
20051             'Test2::Event::Waiting' => '1.302192',
20052             'Test2::EventFacet' => '1.302192',
20053             'Test2::EventFacet::About'=> '1.302192',
20054             'Test2::EventFacet::Amnesty'=> '1.302192',
20055             'Test2::EventFacet::Assert'=> '1.302192',
20056             'Test2::EventFacet::Control'=> '1.302192',
20057             'Test2::EventFacet::Error'=> '1.302192',
20058             'Test2::EventFacet::Hub'=> '1.302192',
20059             'Test2::EventFacet::Info'=> '1.302192',
20060             'Test2::EventFacet::Info::Table'=> '1.302192',
20061             'Test2::EventFacet::Meta'=> '1.302192',
20062             'Test2::EventFacet::Parent'=> '1.302192',
20063             'Test2::EventFacet::Plan'=> '1.302192',
20064             'Test2::EventFacet::Render'=> '1.302192',
20065             'Test2::EventFacet::Trace'=> '1.302192',
20066             'Test2::Formatter' => '1.302192',
20067             'Test2::Formatter::TAP' => '1.302192',
20068             'Test2::Hub' => '1.302192',
20069             'Test2::Hub::Interceptor'=> '1.302192',
20070             'Test2::Hub::Interceptor::Terminator'=> '1.302192',
20071             'Test2::Hub::Subtest' => '1.302192',
20072             'Test2::IPC' => '1.302192',
20073             'Test2::IPC::Driver' => '1.302192',
20074             'Test2::IPC::Driver::Files'=> '1.302192',
20075             'Test2::Tools::Tiny' => '1.302192',
20076             'Test2::Util' => '1.302192',
20077             'Test2::Util::ExternalMeta'=> '1.302192',
20078             'Test2::Util::Facets2Legacy'=> '1.302192',
20079             'Test2::Util::HashBase' => '1.302192',
20080             'Test2::Util::Trace' => '1.302192',
20081             'Test::Builder' => '1.302192',
20082             'Test::Builder::Formatter'=> '1.302192',
20083             'Test::Builder::Module' => '1.302192',
20084             'Test::Builder::Tester' => '1.302192',
20085             'Test::Builder::Tester::Color'=> '1.302192',
20086             'Test::Builder::TodoDiag'=> '1.302192',
20087             'Test::More' => '1.302192',
20088             'Test::Simple' => '1.302192',
20089             'Test::Tester' => '1.302192',
20090             'Test::Tester::Capture' => '1.302192',
20091             'Test::Tester::CaptureRunner'=> '1.302192',
20092             'Test::Tester::Delegate'=> '1.302192',
20093             'Test::use::ok' => '1.302192',
20094             'Tie::File' => '1.07',
20095             'UNIVERSAL' => '1.15',
20096             'autodie' => '2.36',
20097             'autodie::Scope::Guard' => '2.36',
20098             'autodie::Scope::GuardStack'=> '2.36',
20099             'autodie::Util' => '2.36',
20100             'autodie::exception' => '2.36',
20101             'autodie::exception::system'=> '2.36',
20102             'autodie::hints' => '2.36',
20103             'autodie::skip' => '2.36',
20104             'experimental' => '0.031',
20105             'feature' => '1.80',
20106             'mro' => '1.28',
20107             'ok' => '1.302192',
20108             'parent' => '0.241',
20109             'stable' => '0.031',
20110             'warnings' => '1.62',
20111             },
20112             removed => {
20113             }
20114             },
20115             5.037010 => {
20116             delta_from => 5.037009,
20117             changed => {
20118             'B::Op_private' => '5.037010',
20119             'Benchmark' => '1.24',
20120             'Class::Struct' => '0.68',
20121             'Config' => '5.03701',
20122             'Config::Perl::V' => '0.36',
20123             'Cwd' => '3.89',
20124             'Data::Dumper' => '2.188',
20125             'Digest::SHA' => '6.04',
20126             'Env' => '1.06',
20127             'Math::Complex' => '1.62',
20128             'Math::Trig' => '1.62',
20129             'Module::CoreList' => '5.20230320',
20130             'Module::CoreList::Utils'=> '5.20230320',
20131             'Net::Cmd' => '3.15',
20132             'Net::Config' => '3.15',
20133             'Net::Domain' => '3.15',
20134             'Net::FTP' => '3.15',
20135             'Net::FTP::A' => '3.15',
20136             'Net::FTP::E' => '3.15',
20137             'Net::FTP::I' => '3.15',
20138             'Net::FTP::L' => '3.15',
20139             'Net::FTP::dataconn' => '3.15',
20140             'Net::NNTP' => '3.15',
20141             'Net::Netrc' => '3.15',
20142             'Net::POP3' => '3.15',
20143             'Net::SMTP' => '3.15',
20144             'Net::Time' => '3.15',
20145             'POSIX' => '2.12',
20146             'Storable' => '3.31',
20147             'Test2' => '1.302194',
20148             'Test2::API' => '1.302194',
20149             'Test2::API::Breakage' => '1.302194',
20150             'Test2::API::Context' => '1.302194',
20151             'Test2::API::Instance' => '1.302194',
20152             'Test2::API::InterceptResult'=> '1.302194',
20153             'Test2::API::InterceptResult::Event'=> '1.302194',
20154             'Test2::API::InterceptResult::Facet'=> '1.302194',
20155             'Test2::API::InterceptResult::Hub'=> '1.302194',
20156             'Test2::API::InterceptResult::Squasher'=> '1.302194',
20157             'Test2::API::Stack' => '1.302194',
20158             'Test2::Event' => '1.302194',
20159             'Test2::Event::Bail' => '1.302194',
20160             'Test2::Event::Diag' => '1.302194',
20161             'Test2::Event::Encoding'=> '1.302194',
20162             'Test2::Event::Exception'=> '1.302194',
20163             'Test2::Event::Fail' => '1.302194',
20164             'Test2::Event::Generic' => '1.302194',
20165             'Test2::Event::Note' => '1.302194',
20166             'Test2::Event::Ok' => '1.302194',
20167             'Test2::Event::Pass' => '1.302194',
20168             'Test2::Event::Plan' => '1.302194',
20169             'Test2::Event::Skip' => '1.302194',
20170             'Test2::Event::Subtest' => '1.302194',
20171             'Test2::Event::TAP::Version'=> '1.302194',
20172             'Test2::Event::V2' => '1.302194',
20173             'Test2::Event::Waiting' => '1.302194',
20174             'Test2::EventFacet' => '1.302194',
20175             'Test2::EventFacet::About'=> '1.302194',
20176             'Test2::EventFacet::Amnesty'=> '1.302194',
20177             'Test2::EventFacet::Assert'=> '1.302194',
20178             'Test2::EventFacet::Control'=> '1.302194',
20179             'Test2::EventFacet::Error'=> '1.302194',
20180             'Test2::EventFacet::Hub'=> '1.302194',
20181             'Test2::EventFacet::Info'=> '1.302194',
20182             'Test2::EventFacet::Info::Table'=> '1.302194',
20183             'Test2::EventFacet::Meta'=> '1.302194',
20184             'Test2::EventFacet::Parent'=> '1.302194',
20185             'Test2::EventFacet::Plan'=> '1.302194',
20186             'Test2::EventFacet::Render'=> '1.302194',
20187             'Test2::EventFacet::Trace'=> '1.302194',
20188             'Test2::Formatter' => '1.302194',
20189             'Test2::Formatter::TAP' => '1.302194',
20190             'Test2::Hub' => '1.302194',
20191             'Test2::Hub::Interceptor'=> '1.302194',
20192             'Test2::Hub::Interceptor::Terminator'=> '1.302194',
20193             'Test2::Hub::Subtest' => '1.302194',
20194             'Test2::IPC' => '1.302194',
20195             'Test2::IPC::Driver' => '1.302194',
20196             'Test2::IPC::Driver::Files'=> '1.302194',
20197             'Test2::Tools::Tiny' => '1.302194',
20198             'Test2::Util' => '1.302194',
20199             'Test2::Util::ExternalMeta'=> '1.302194',
20200             'Test2::Util::Facets2Legacy'=> '1.302194',
20201             'Test2::Util::HashBase' => '1.302194',
20202             'Test2::Util::Trace' => '1.302194',
20203             'Test::Builder' => '1.302194',
20204             'Test::Builder::Formatter'=> '1.302194',
20205             'Test::Builder::Module' => '1.302194',
20206             'Test::Builder::Tester' => '1.302194',
20207             'Test::Builder::Tester::Color'=> '1.302194',
20208             'Test::Builder::TodoDiag'=> '1.302194',
20209             'Test::More' => '1.302194',
20210             'Test::Simple' => '1.302194',
20211             'Test::Tester' => '1.302194',
20212             'Test::Tester::Capture' => '1.302194',
20213             'Test::Tester::CaptureRunner'=> '1.302194',
20214             'Test::Tester::Delegate'=> '1.302194',
20215             'Test::use::ok' => '1.302194',
20216             'Time::HiRes' => '1.9774',
20217             'XS::APItest' => '1.32',
20218             'feature' => '1.81',
20219             'ok' => '1.302194',
20220             'overload' => '1.37',
20221             'threads' => '2.35',
20222             'threads::shared' => '1.67',
20223             'warnings' => '1.63',
20224             'warnings::register' => '1.05',
20225             },
20226             removed => {
20227             }
20228             },
20229             5.037011 => {
20230             delta_from => 5.037010,
20231             changed => {
20232             'B::Deparse' => '1.73',
20233             'B::Op_private' => '5.037011',
20234             'Config' => '5.037011',
20235             'Devel::PPPort' => '3.71',
20236             'ExtUtils::Command' => '7.70',
20237             'ExtUtils::Command::MM' => '7.70',
20238             'ExtUtils::Liblist' => '7.70',
20239             'ExtUtils::Liblist::Kid'=> '7.70',
20240             'ExtUtils::MM' => '7.70',
20241             'ExtUtils::MM_AIX' => '7.70',
20242             'ExtUtils::MM_Any' => '7.70',
20243             'ExtUtils::MM_BeOS' => '7.70',
20244             'ExtUtils::MM_Cygwin' => '7.70',
20245             'ExtUtils::MM_DOS' => '7.70',
20246             'ExtUtils::MM_Darwin' => '7.70',
20247             'ExtUtils::MM_MacOS' => '7.70',
20248             'ExtUtils::MM_NW5' => '7.70',
20249             'ExtUtils::MM_OS2' => '7.70',
20250             'ExtUtils::MM_OS390' => '7.70',
20251             'ExtUtils::MM_QNX' => '7.70',
20252             'ExtUtils::MM_UWIN' => '7.70',
20253             'ExtUtils::MM_Unix' => '7.70',
20254             'ExtUtils::MM_VMS' => '7.70',
20255             'ExtUtils::MM_VOS' => '7.70',
20256             'ExtUtils::MM_Win32' => '7.70',
20257             'ExtUtils::MM_Win95' => '7.70',
20258             'ExtUtils::MY' => '7.70',
20259             'ExtUtils::MakeMaker' => '7.70',
20260             'ExtUtils::MakeMaker::Config'=> '7.70',
20261             'ExtUtils::MakeMaker::Locale'=> '7.70',
20262             'ExtUtils::MakeMaker::version'=> '7.70',
20263             'ExtUtils::MakeMaker::version::regex'=> '7.70',
20264             'ExtUtils::Mkbootstrap' => '7.70',
20265             'ExtUtils::Mksymlists' => '7.70',
20266             'ExtUtils::ParseXS' => '3.50',
20267             'ExtUtils::ParseXS::Constants'=> '3.50',
20268             'ExtUtils::ParseXS::CountLines'=> '3.50',
20269             'ExtUtils::ParseXS::Eval'=> '3.50',
20270             'ExtUtils::ParseXS::Utilities'=> '3.50',
20271             'ExtUtils::testlib' => '7.70',
20272             'File::Copy' => '2.41',
20273             'Locale::Maketext' => '1.33',
20274             'Module::CoreList' => '5.20230420',
20275             'Module::CoreList::Utils'=> '5.20230420',
20276             'Net::Ping' => '2.76',
20277             'feature' => '1.82',
20278             'threads' => '2.36',
20279             'threads::shared' => '1.68',
20280             'warnings' => '1.64',
20281             },
20282             removed => {
20283             }
20284             },
20285             5.036001 => {
20286             delta_from => 5.036000,
20287             changed => {
20288             'B::Op_private' => '5.036001',
20289             'Config' => '5.036001',
20290             'Module::CoreList' => '5.20230423',
20291             'Module::CoreList::Utils'=> '5.20230423',
20292             },
20293             removed => {
20294             }
20295             },
20296             5.038000 => {
20297             delta_from => 5.037011,
20298             changed => {
20299             'B::Deparse' => '1.74',
20300             'B::Op_private' => '5.038000',
20301             'CPAN' => '2.36',
20302             'CPAN::HTTP::Client' => '1.9602',
20303             'Compress::Raw::Bzip2' => '2.204_001',
20304             'Compress::Raw::Zlib' => '2.204_001',
20305             'Config' => '5.038',
20306             'Digest::MD5' => '2.58_01',
20307             'DynaLoader' => '1.54',
20308             'ExtUtils::ParseXS' => '3.51',
20309             'ExtUtils::ParseXS::Constants'=> '3.51',
20310             'ExtUtils::ParseXS::CountLines'=> '3.51',
20311             'ExtUtils::ParseXS::Eval'=> '3.51',
20312             'ExtUtils::ParseXS::Utilities'=> '3.51',
20313             'ExtUtils::Typemaps' => '3.51',
20314             'ExtUtils::Typemaps::Cmd'=> '3.51',
20315             'ExtUtils::Typemaps::InputMap'=> '3.51',
20316             'ExtUtils::Typemaps::OutputMap'=> '3.51',
20317             'ExtUtils::Typemaps::Type'=> '3.51',
20318             'File::Glob' => '1.40',
20319             'HTTP::Tiny' => '0.086',
20320             'IO' => '1.52',
20321             'IO::Dir' => '1.52',
20322             'IO::File' => '1.52',
20323             'IO::Handle' => '1.52',
20324             'IO::Pipe' => '1.52',
20325             'IO::Poll' => '1.52',
20326             'IO::Seekable' => '1.52',
20327             'IO::Select' => '1.52',
20328             'IO::Socket' => '1.52',
20329             'IO::Socket::INET' => '1.52',
20330             'IO::Socket::IP' => '0.41_01',
20331             'IO::Socket::UNIX' => '1.52',
20332             'MIME::Base64' => '3.16_01',
20333             'MIME::QuotedPrint' => '3.16_01',
20334             'Module::CoreList' => '5.20230520',
20335             'Module::CoreList::Utils'=> '5.20230520',
20336             'POSIX' => '2.13',
20337             'SDBM_File' => '1.17',
20338             'Storable' => '3.32',
20339             'Time::HiRes' => '1.9775',
20340             'Time::Piece' => '1.3401_01',
20341             'warnings' => '1.65',
20342             },
20343             removed => {
20344             }
20345             },
20346             5.039001 => {
20347             delta_from => 5.038000,
20348             changed => {
20349             'B::Op_private' => '5.039001',
20350             'CPAN::Meta::Requirements'=> '2.143',
20351             'CPAN::Meta::Requirements::Range'=> '2.143',
20352             'Compress::Raw::Bzip2' => '2.205',
20353             'Compress::Raw::Zlib' => '2.205',
20354             'Compress::Zlib' => '2.205',
20355             'Config' => '5.039001',
20356             'Errno' => '1.38',
20357             'ExtUtils::CBuilder' => '0.280239',
20358             'ExtUtils::CBuilder::Base'=> '0.280239',
20359             'ExtUtils::CBuilder::Platform::Unix'=> '0.280239',
20360             'ExtUtils::CBuilder::Platform::VMS'=> '0.280239',
20361             'ExtUtils::CBuilder::Platform::Windows'=> '0.280239',
20362             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280239',
20363             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280239',
20364             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280239',
20365             'ExtUtils::CBuilder::Platform::aix'=> '0.280239',
20366             'ExtUtils::CBuilder::Platform::android'=> '0.280239',
20367             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280239',
20368             'ExtUtils::CBuilder::Platform::darwin'=> '0.280239',
20369             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280239',
20370             'ExtUtils::CBuilder::Platform::os2'=> '0.280239',
20371             'ExtUtils::Manifest' => '1.75',
20372             'IO::Compress::Adapter::Bzip2'=> '2.205',
20373             'IO::Compress::Adapter::Deflate'=> '2.205',
20374             'IO::Compress::Adapter::Identity'=> '2.205',
20375             'IO::Compress::Base' => '2.205',
20376             'IO::Compress::Base::Common'=> '2.205',
20377             'IO::Compress::Bzip2' => '2.205',
20378             'IO::Compress::Deflate' => '2.205',
20379             'IO::Compress::Gzip' => '2.205',
20380             'IO::Compress::Gzip::Constants'=> '2.205',
20381             'IO::Compress::RawDeflate'=> '2.205',
20382             'IO::Compress::Zip' => '2.205',
20383             'IO::Compress::Zip::Constants'=> '2.205',
20384             'IO::Compress::Zlib::Constants'=> '2.205',
20385             'IO::Compress::Zlib::Extra'=> '2.205',
20386             'IO::Uncompress::Adapter::Bunzip2'=> '2.205',
20387             'IO::Uncompress::Adapter::Identity'=> '2.205',
20388             'IO::Uncompress::Adapter::Inflate'=> '2.205',
20389             'IO::Uncompress::AnyInflate'=> '2.205',
20390             'IO::Uncompress::AnyUncompress'=> '2.205',
20391             'IO::Uncompress::Base' => '2.205',
20392             'IO::Uncompress::Bunzip2'=> '2.205',
20393             'IO::Uncompress::Gunzip'=> '2.205',
20394             'IO::Uncompress::Inflate'=> '2.205',
20395             'IO::Uncompress::RawInflate'=> '2.205',
20396             'IO::Uncompress::Unzip' => '2.205',
20397             'Math::BigFloat' => '1.999839',
20398             'Math::BigInt' => '1.999839',
20399             'Math::BigInt::Calc' => '1.999839',
20400             'Math::BigInt::FastCalc'=> '0.5014',
20401             'Math::BigInt::Lib' => '1.999839',
20402             'Module::CoreList' => '5.20230720',
20403             'Module::CoreList::Utils'=> '5.20230720',
20404             'Module::Metadata' => '1.000038',
20405             'POSIX' => '2.14',
20406             'Socket' => '2.037',
20407             'Test2' => '1.302195',
20408             'Test2::API' => '1.302195',
20409             'Test2::API::Breakage' => '1.302195',
20410             'Test2::API::Context' => '1.302195',
20411             'Test2::API::Instance' => '1.302195',
20412             'Test2::API::InterceptResult'=> '1.302195',
20413             'Test2::API::InterceptResult::Event'=> '1.302195',
20414             'Test2::API::InterceptResult::Facet'=> '1.302195',
20415             'Test2::API::InterceptResult::Hub'=> '1.302195',
20416             'Test2::API::InterceptResult::Squasher'=> '1.302195',
20417             'Test2::API::Stack' => '1.302195',
20418             'Test2::Event' => '1.302195',
20419             'Test2::Event::Bail' => '1.302195',
20420             'Test2::Event::Diag' => '1.302195',
20421             'Test2::Event::Encoding'=> '1.302195',
20422             'Test2::Event::Exception'=> '1.302195',
20423             'Test2::Event::Fail' => '1.302195',
20424             'Test2::Event::Generic' => '1.302195',
20425             'Test2::Event::Note' => '1.302195',
20426             'Test2::Event::Ok' => '1.302195',
20427             'Test2::Event::Pass' => '1.302195',
20428             'Test2::Event::Plan' => '1.302195',
20429             'Test2::Event::Skip' => '1.302195',
20430             'Test2::Event::Subtest' => '1.302195',
20431             'Test2::Event::TAP::Version'=> '1.302195',
20432             'Test2::Event::V2' => '1.302195',
20433             'Test2::Event::Waiting' => '1.302195',
20434             'Test2::EventFacet' => '1.302195',
20435             'Test2::EventFacet::About'=> '1.302195',
20436             'Test2::EventFacet::Amnesty'=> '1.302195',
20437             'Test2::EventFacet::Assert'=> '1.302195',
20438             'Test2::EventFacet::Control'=> '1.302195',
20439             'Test2::EventFacet::Error'=> '1.302195',
20440             'Test2::EventFacet::Hub'=> '1.302195',
20441             'Test2::EventFacet::Info'=> '1.302195',
20442             'Test2::EventFacet::Info::Table'=> '1.302195',
20443             'Test2::EventFacet::Meta'=> '1.302195',
20444             'Test2::EventFacet::Parent'=> '1.302195',
20445             'Test2::EventFacet::Plan'=> '1.302195',
20446             'Test2::EventFacet::Render'=> '1.302195',
20447             'Test2::EventFacet::Trace'=> '1.302195',
20448             'Test2::Formatter' => '1.302195',
20449             'Test2::Formatter::TAP' => '1.302195',
20450             'Test2::Hub' => '1.302195',
20451             'Test2::Hub::Interceptor'=> '1.302195',
20452             'Test2::Hub::Interceptor::Terminator'=> '1.302195',
20453             'Test2::Hub::Subtest' => '1.302195',
20454             'Test2::IPC' => '1.302195',
20455             'Test2::IPC::Driver' => '1.302195',
20456             'Test2::IPC::Driver::Files'=> '1.302195',
20457             'Test2::Tools::Tiny' => '1.302195',
20458             'Test2::Util' => '1.302195',
20459             'Test2::Util::ExternalMeta'=> '1.302195',
20460             'Test2::Util::Facets2Legacy'=> '1.302195',
20461             'Test2::Util::HashBase' => '1.302195',
20462             'Test2::Util::Trace' => '1.302195',
20463             'Test::Builder' => '1.302195',
20464             'Test::Builder::Formatter'=> '1.302195',
20465             'Test::Builder::Module' => '1.302195',
20466             'Test::Builder::Tester' => '1.302195',
20467             'Test::Builder::Tester::Color'=> '1.302195',
20468             'Test::Builder::TodoDiag'=> '1.302195',
20469             'Test::More' => '1.302195',
20470             'Test::Simple' => '1.302195',
20471             'Test::Tester' => '1.302195',
20472             'Test::Tester::Capture' => '1.302195',
20473             'Test::Tester::CaptureRunner'=> '1.302195',
20474             'Test::Tester::Delegate'=> '1.302195',
20475             'Test::use::ok' => '1.302195',
20476             'Text::Tabs' => '2023.0511',
20477             'Text::Wrap' => '2023.0511',
20478             'Time::HiRes' => '1.9776',
20479             'Time::Local' => '1.35',
20480             'UNIVERSAL' => '1.16',
20481             'feature' => '1.83',
20482             'ok' => '1.302195',
20483             'perlfaq' => '5.20230701',
20484             'threads' => '2.37',
20485             'warnings' => '1.66',
20486             'warnings::register' => '1.06',
20487             },
20488             removed => {
20489             }
20490             },
20491             5.039002 => {
20492             delta_from => 5.039001,
20493             changed => {
20494             'App::Prove' => '3.47',
20495             'App::Prove::State' => '3.47',
20496             'App::Prove::State::Result'=> '3.47',
20497             'App::Prove::State::Result::Test'=> '3.47',
20498             'B::Op_private' => '5.039002',
20499             'Compress::Raw::Bzip2' => '2.206',
20500             'Compress::Raw::Zlib' => '2.206',
20501             'Compress::Zlib' => '2.206',
20502             'Config' => '5.039002',
20503             'Cwd' => '3.90',
20504             'Devel::Peek' => '1.34',
20505             'ExtUtils::Miniperl' => '1.14',
20506             'File::Spec' => '3.90',
20507             'File::Spec::AmigaOS' => '3.90',
20508             'File::Spec::Cygwin' => '3.90',
20509             'File::Spec::Epoc' => '3.90',
20510             'File::Spec::Functions' => '3.90',
20511             'File::Spec::Mac' => '3.90',
20512             'File::Spec::OS2' => '3.90',
20513             'File::Spec::Unix' => '3.90',
20514             'File::Spec::VMS' => '3.90',
20515             'File::Spec::Win32' => '3.90',
20516             'HTTP::Tiny' => '0.088',
20517             'IO::Compress::Adapter::Bzip2'=> '2.206',
20518             'IO::Compress::Adapter::Deflate'=> '2.206',
20519             'IO::Compress::Adapter::Identity'=> '2.206',
20520             'IO::Compress::Base' => '2.206',
20521             'IO::Compress::Base::Common'=> '2.206',
20522             'IO::Compress::Bzip2' => '2.206',
20523             'IO::Compress::Deflate' => '2.206',
20524             'IO::Compress::Gzip' => '2.206',
20525             'IO::Compress::Gzip::Constants'=> '2.206',
20526             'IO::Compress::RawDeflate'=> '2.206',
20527             'IO::Compress::Zip' => '2.206',
20528             'IO::Compress::Zip::Constants'=> '2.206',
20529             'IO::Compress::Zlib::Constants'=> '2.206',
20530             'IO::Compress::Zlib::Extra'=> '2.206',
20531             'IO::Socket::IP' => '0.42',
20532             'IO::Uncompress::Adapter::Bunzip2'=> '2.206',
20533             'IO::Uncompress::Adapter::Identity'=> '2.206',
20534             'IO::Uncompress::Adapter::Inflate'=> '2.206',
20535             'IO::Uncompress::AnyInflate'=> '2.206',
20536             'IO::Uncompress::AnyUncompress'=> '2.206',
20537             'IO::Uncompress::Base' => '2.206',
20538             'IO::Uncompress::Bunzip2'=> '2.206',
20539             'IO::Uncompress::Gunzip'=> '2.206',
20540             'IO::Uncompress::Inflate'=> '2.206',
20541             'IO::Uncompress::RawInflate'=> '2.206',
20542             'IO::Uncompress::Unzip' => '2.206',
20543             'Module::CoreList' => '5.20230820',
20544             'Module::CoreList::Utils'=> '5.20230820',
20545             'NDBM_File' => '1.17',
20546             'Opcode' => '1.65',
20547             'POSIX' => '2.15',
20548             'PerlIO::scalar' => '0.32',
20549             'PerlIO::via' => '0.19',
20550             'Pod::Html' => '1.35',
20551             'Pod::Html::Util' => '1.35',
20552             'Pod::Simple' => '3.45',
20553             'Pod::Simple::BlackBox' => '3.45',
20554             'Pod::Simple::Checker' => '3.45',
20555             'Pod::Simple::Debug' => '3.45',
20556             'Pod::Simple::DumpAsText'=> '3.45',
20557             'Pod::Simple::DumpAsXML'=> '3.45',
20558             'Pod::Simple::HTML' => '3.45',
20559             'Pod::Simple::HTMLBatch'=> '3.45',
20560             'Pod::Simple::HTMLLegacy'=> '5.02',
20561             'Pod::Simple::LinkSection'=> '3.45',
20562             'Pod::Simple::Methody' => '3.45',
20563             'Pod::Simple::Progress' => '3.45',
20564             'Pod::Simple::PullParser'=> '3.45',
20565             'Pod::Simple::PullParserEndToken'=> '3.45',
20566             'Pod::Simple::PullParserStartToken'=> '3.45',
20567             'Pod::Simple::PullParserTextToken'=> '3.45',
20568             'Pod::Simple::PullParserToken'=> '3.45',
20569             'Pod::Simple::RTF' => '3.45',
20570             'Pod::Simple::Search' => '3.45',
20571             'Pod::Simple::SimpleTree'=> '3.45',
20572             'Pod::Simple::Text' => '3.45',
20573             'Pod::Simple::TextContent'=> '3.45',
20574             'Pod::Simple::TiedOutFH'=> '3.45',
20575             'Pod::Simple::Transcode'=> '3.45',
20576             'Pod::Simple::TranscodeDumb'=> '3.45',
20577             'Pod::Simple::TranscodeSmart'=> '3.45',
20578             'Pod::Simple::XHTML' => '3.45',
20579             'Pod::Simple::XMLOutStream'=> '3.45',
20580             'Safe' => '2.45',
20581             'TAP::Base' => '3.47',
20582             'TAP::Formatter::Base' => '3.47',
20583             'TAP::Formatter::Color' => '3.47',
20584             'TAP::Formatter::Console'=> '3.47',
20585             'TAP::Formatter::Console::ParallelSession'=> '3.47',
20586             'TAP::Formatter::Console::Session'=> '3.47',
20587             'TAP::Formatter::File' => '3.47',
20588             'TAP::Formatter::File::Session'=> '3.47',
20589             'TAP::Formatter::Session'=> '3.47',
20590             'TAP::Harness' => '3.47',
20591             'TAP::Harness::Env' => '3.47',
20592             'TAP::Object' => '3.47',
20593             'TAP::Parser' => '3.47',
20594             'TAP::Parser::Aggregator'=> '3.47',
20595             'TAP::Parser::Grammar' => '3.47',
20596             'TAP::Parser::Iterator' => '3.47',
20597             'TAP::Parser::Iterator::Array'=> '3.47',
20598             'TAP::Parser::Iterator::Process'=> '3.47',
20599             'TAP::Parser::Iterator::Stream'=> '3.47',
20600             'TAP::Parser::IteratorFactory'=> '3.47',
20601             'TAP::Parser::Multiplexer'=> '3.47',
20602             'TAP::Parser::Result' => '3.47',
20603             'TAP::Parser::Result::Bailout'=> '3.47',
20604             'TAP::Parser::Result::Comment'=> '3.47',
20605             'TAP::Parser::Result::Plan'=> '3.47',
20606             'TAP::Parser::Result::Pragma'=> '3.47',
20607             'TAP::Parser::Result::Test'=> '3.47',
20608             'TAP::Parser::Result::Unknown'=> '3.47',
20609             'TAP::Parser::Result::Version'=> '3.47',
20610             'TAP::Parser::Result::YAML'=> '3.47',
20611             'TAP::Parser::ResultFactory'=> '3.47',
20612             'TAP::Parser::Scheduler'=> '3.47',
20613             'TAP::Parser::Scheduler::Job'=> '3.47',
20614             'TAP::Parser::Scheduler::Spinner'=> '3.47',
20615             'TAP::Parser::Source' => '3.47',
20616             'TAP::Parser::SourceHandler'=> '3.47',
20617             'TAP::Parser::SourceHandler::Executable'=> '3.47',
20618             'TAP::Parser::SourceHandler::File'=> '3.47',
20619             'TAP::Parser::SourceHandler::Handle'=> '3.47',
20620             'TAP::Parser::SourceHandler::Perl'=> '3.47',
20621             'TAP::Parser::SourceHandler::RawTAP'=> '3.47',
20622             'TAP::Parser::YAMLish::Reader'=> '3.47',
20623             'TAP::Parser::YAMLish::Writer'=> '3.47',
20624             'Test::Harness' => '3.47',
20625             'XS::APItest' => '1.33',
20626             'builtin' => '0.009',
20627             'feature' => '1.84',
20628             'perlfaq' => '5.20230812',
20629             'strict' => '1.13',
20630             'threads' => '2.38',
20631             'warnings' => '1.67',
20632             },
20633             removed => {
20634             }
20635             },
20636             5.039003 => {
20637             delta_from => 5.039002,
20638             changed => {
20639             'B' => '1.89',
20640             'B::Op_private' => '5.039003',
20641             'Config' => '5.039003',
20642             'DB_File' => '1.859',
20643             'Data::Dumper' => '2.189',
20644             'Devel::PPPort' => '3.72',
20645             'ExtUtils::CBuilder' => '0.280240',
20646             'ExtUtils::CBuilder::Base'=> '0.280240',
20647             'ExtUtils::CBuilder::Platform::Unix'=> '0.280240',
20648             'ExtUtils::CBuilder::Platform::VMS'=> '0.280240',
20649             'ExtUtils::CBuilder::Platform::Windows'=> '0.280240',
20650             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280240',
20651             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280240',
20652             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280240',
20653             'ExtUtils::CBuilder::Platform::aix'=> '0.280240',
20654             'ExtUtils::CBuilder::Platform::android'=> '0.280240',
20655             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280240',
20656             'ExtUtils::CBuilder::Platform::darwin'=> '0.280240',
20657             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280240',
20658             'ExtUtils::CBuilder::Platform::os2'=> '0.280240',
20659             'File::Compare' => '1.1008',
20660             'File::Spec::AmigaOS' => '3.91',
20661             'File::Spec::Cygwin' => '3.91',
20662             'File::Spec::Epoc' => '3.91',
20663             'File::Spec::Functions' => '3.91',
20664             'File::Spec::Mac' => '3.91',
20665             'File::Spec::OS2' => '3.91',
20666             'File::Spec::Unix' => '3.91',
20667             'File::Spec::VMS' => '3.91',
20668             'File::Spec::Win32' => '3.91',
20669             'FindBin' => '1.54',
20670             'Getopt::Std' => '1.14',
20671             'IO' => '1.53',
20672             'IO::Dir' => '1.53',
20673             'IO::File' => '1.53',
20674             'IO::Handle' => '1.53',
20675             'IO::Pipe' => '1.53',
20676             'IO::Poll' => '1.53',
20677             'IO::Seekable' => '1.53',
20678             'IO::Select' => '1.53',
20679             'IO::Socket' => '1.53',
20680             'IO::Socket::INET' => '1.53',
20681             'IO::Socket::UNIX' => '1.53',
20682             'Module::CoreList' => '5.20230920',
20683             'Module::CoreList::Utils'=> '5.20230920',
20684             'builtin' => '0.010',
20685             'fields' => '2.25',
20686             'threads' => '2.39',
20687             'threads::shared' => '1.69',
20688             },
20689             removed => {
20690             }
20691             },
20692             );
20693              
20694             sub is_core
20695             {
20696 43 100 66 43 1 390 shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0];
      100        
20697 43         83 my $module = shift;
20698 43 100       109 my $module_version = @_ > 0 ? shift : undef;
20699 43 100       105 my $perl_version = @_ > 0 ? shift : $];
20700              
20701 43         100 my $first_release = first_release($module);
20702              
20703 43 100 100     389 return 0 if !defined($first_release) || $first_release > $perl_version;
20704              
20705 32         88 my $final_release = removed_from($module);
20706              
20707 32 100 100     170 return 0 if defined($final_release) && $perl_version >= $final_release;
20708              
20709             # If a minimum version of the module was specified:
20710             # Step through all perl releases ($prn)
20711             # so we can find what version of the module
20712             # was included in the specified version of perl.
20713             # On the way if we pass the required module version, we can
20714             # short-circuit and return true
20715 28 100       60 if (defined($module_version)) {
20716 21         36 my $module_version_object = eval { version->parse($module_version) };
  21         187  
20717 21 100       61 if (!defined($module_version_object)) {
20718 1         15 (my $err = $@) =~ s/^Invalid version format\b/Invalid version '$module_version' specified/;
20719 1         9 die $err;
20720             }
20721             # The Perl releases aren't a linear sequence, but a tree. We need to build the path
20722             # of releases from 5 to the specified release, and follow the module's version(s)
20723             # along that path.
20724 20         67 my @releases = ($perl_version);
20725 20         34 my $rel = $perl_version;
20726 20         42 while (defined($rel)) {
20727             # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
20728 498   66     1438 my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
20729 498         907 $rel = $this_delta->{delta_from};
20730 498 100       1150 unshift(@releases, $rel) if defined($rel);
20731             }
20732             RELEASE:
20733 20         40 foreach my $prn (@releases) {
20734 382 100       687 next RELEASE if $prn < $first_release;
20735 291 50       506 last RELEASE if $prn > $perl_version;
20736             next unless defined(my $next_module_version
20737 291 100       1308 = $delta{$prn}->{changed}->{$module});
20738 56 100       79 return 1 if eval { version->parse($next_module_version) >= $module_version_object };
  56         641  
20739             }
20740 4         54 return 0;
20741             }
20742              
20743 7 100       65 return 1 if !defined($final_release);
20744              
20745 2         18 return $perl_version <= $final_release;
20746             }
20747              
20748             %version = _undelta(\%delta);
20749              
20750             %deprecated = (
20751             5.011 => {
20752             changed => { map { $_ => 1 } qw/
20753             Class::ISA
20754             Pod::Plainer
20755             Shell
20756             Switch
20757             /},
20758             },
20759             5.011001 => { delta_from => 5.011 },
20760             5.011002 => { delta_from => 5.011001 },
20761             5.011003 => { delta_from => 5.011002 },
20762             5.011004 => { delta_from => 5.011003 },
20763             5.011005 => { delta_from => 5.011004 },
20764              
20765             5.012 => { delta_from => 5.011005 },
20766             5.012001 => { delta_from => 5.012 },
20767             5.012002 => { delta_from => 5.012001 },
20768             5.012003 => { delta_from => 5.012002 },
20769             5.012004 => { delta_from => 5.012003 },
20770             5.012005 => { delta_from => 5.012004 },
20771              
20772             5.013 => { delta_from => 5.012005 },
20773             5.013001 => {
20774             delta_from => 5.013,
20775             removed => { map { $_ => 1 } qw/
20776             Class::ISA
20777             Pod::Plainer
20778             Switch
20779             /},
20780             },
20781             5.013002 => { delta_from => 5.013001 },
20782             5.013003 => { delta_from => 5.013002 },
20783             5.013004 => { delta_from => 5.013003 },
20784             5.013005 => { delta_from => 5.013004 },
20785             5.013006 => { delta_from => 5.013005 },
20786             5.013007 => { delta_from => 5.013006 },
20787             5.013008 => { delta_from => 5.013007 },
20788             5.013009 => { delta_from => 5.013008 },
20789             5.01301 => { delta_from => 5.013009 },
20790             5.013011 => { delta_from => 5.01301 },
20791              
20792             5.014 => { delta_from => 5.013011 },
20793             5.014001 => { delta_from => 5.014 },
20794             5.014002 => { delta_from => 5.014001 },
20795             5.014003 => { delta_from => 5.014002 },
20796             5.014004 => { delta_from => 5.014003 },
20797              
20798             5.015 => {
20799             delta_from => 5.014004,
20800             removed => { Shell => 1 },
20801             },
20802             5.015001 => { delta_from => 5.015 },
20803             5.015002 => { delta_from => 5.015001 },
20804             5.015003 => { delta_from => 5.015002 },
20805             5.015004 => { delta_from => 5.015003 },
20806             5.015005 => { delta_from => 5.015004 },
20807             5.015006 => { delta_from => 5.015005 },
20808             5.015007 => { delta_from => 5.015006 },
20809             5.015008 => { delta_from => 5.015007 },
20810             5.015009 => { delta_from => 5.015008 },
20811              
20812             5.016 => { delta_from => 5.015009 },
20813             5.016001 => { delta_from => 5.016 },
20814             5.016002 => { delta_from => 5.016001 },
20815             5.016003 => { delta_from => 5.016002 },
20816              
20817             5.017 => { delta_from => 5.016003 },
20818             5.017001 => { delta_from => 5.017 },
20819             5.017002 => { delta_from => 5.017001 },
20820             5.017003 => { delta_from => 5.017002 },
20821             5.017004 => { delta_from => 5.017003 },
20822             5.017005 => { delta_from => 5.017004 },
20823             5.017006 => { delta_from => 5.017005 },
20824             5.017007 => { delta_from => 5.017006 },
20825             5.017008 => {
20826             delta_from => 5.017007,
20827             changed => { 'Pod::LaTeX' => 1 },
20828             },
20829             5.017009 => {
20830             delta_from => 5.017008,
20831             changed => { map { $_ => 1 } qw/
20832             Archive::Extract
20833             B::Lint
20834             B::Lint::Debug
20835             CPANPLUS
20836             CPANPLUS::Backend
20837             CPANPLUS::Backend::RV
20838             CPANPLUS::Config
20839             CPANPLUS::Config::HomeEnv
20840             CPANPLUS::Configure
20841             CPANPLUS::Configure::Setup
20842             CPANPLUS::Dist
20843             CPANPLUS::Dist::Autobundle
20844             CPANPLUS::Dist::Base
20845             CPANPLUS::Dist::Build
20846             CPANPLUS::Dist::Build::Constants
20847             CPANPLUS::Dist::MM
20848             CPANPLUS::Dist::Sample
20849             CPANPLUS::Error
20850             CPANPLUS::Internals
20851             CPANPLUS::Internals::Constants
20852             CPANPLUS::Internals::Constants::Report
20853             CPANPLUS::Internals::Extract
20854             CPANPLUS::Internals::Fetch
20855             CPANPLUS::Internals::Report
20856             CPANPLUS::Internals::Search
20857             CPANPLUS::Internals::Source
20858             CPANPLUS::Internals::Source::Memory
20859             CPANPLUS::Internals::Source::SQLite
20860             CPANPLUS::Internals::Source::SQLite::Tie
20861             CPANPLUS::Internals::Utils
20862             CPANPLUS::Internals::Utils::Autoflush
20863             CPANPLUS::Module
20864             CPANPLUS::Module::Author
20865             CPANPLUS::Module::Author::Fake
20866             CPANPLUS::Module::Checksums
20867             CPANPLUS::Module::Fake
20868             CPANPLUS::Module::Signature
20869             CPANPLUS::Selfupdate
20870             CPANPLUS::Shell
20871             CPANPLUS::Shell::Classic
20872             CPANPLUS::Shell::Default
20873             CPANPLUS::Shell::Default::Plugins::CustomSource
20874             CPANPLUS::Shell::Default::Plugins::Remote
20875             CPANPLUS::Shell::Default::Plugins::Source
20876             Devel::InnerPackage
20877             File::CheckTree
20878             Log::Message
20879             Log::Message::Config
20880             Log::Message::Handlers
20881             Log::Message::Item
20882             Log::Message::Simple
20883             Module::Pluggable
20884             Module::Pluggable::Object
20885             Object::Accessor
20886             Term::UI
20887             Term::UI::History
20888             Text::Soundex
20889             /},
20890             },
20891             5.01701 => { delta_from => 5.017009 },
20892             5.017011 => { delta_from => 5.01701 },
20893              
20894             5.018 => { delta_from => 5.017011 },
20895             5.018001 => {
20896             delta_from => 5.018,
20897             changed => {
20898             },
20899             removed => {
20900             }
20901             },
20902             5.018002 => {
20903             delta_from => 5.018001,
20904             changed => {
20905             },
20906             removed => {
20907             }
20908             },
20909             5.018003 => {
20910             delta_from => 5.018,
20911             changed => {
20912             },
20913             removed => {
20914             }
20915             },
20916             5.018004 => {
20917             delta_from => 5.018,
20918             changed => {
20919             },
20920             removed => {
20921             }
20922             },
20923              
20924             5.019 => {
20925             delta_from => 5.018,
20926             changed => { 'Module::Build' => 1 },
20927             removed => { map { $_ => 1 } qw/
20928             Archive::Extract
20929             B::Lint
20930             B::Lint::Debug
20931             CPANPLUS
20932             CPANPLUS::Backend
20933             CPANPLUS::Backend::RV
20934             CPANPLUS::Config
20935             CPANPLUS::Config::HomeEnv
20936             CPANPLUS::Configure
20937             CPANPLUS::Configure::Setup
20938             CPANPLUS::Dist
20939             CPANPLUS::Dist::Autobundle
20940             CPANPLUS::Dist::Base
20941             CPANPLUS::Dist::Build
20942             CPANPLUS::Dist::Build::Constants
20943             CPANPLUS::Dist::MM
20944             CPANPLUS::Dist::Sample
20945             CPANPLUS::Error
20946             CPANPLUS::Internals
20947             CPANPLUS::Internals::Constants
20948             CPANPLUS::Internals::Constants::Report
20949             CPANPLUS::Internals::Extract
20950             CPANPLUS::Internals::Fetch
20951             CPANPLUS::Internals::Report
20952             CPANPLUS::Internals::Search
20953             CPANPLUS::Internals::Source
20954             CPANPLUS::Internals::Source::Memory
20955             CPANPLUS::Internals::Source::SQLite
20956             CPANPLUS::Internals::Source::SQLite::Tie
20957             CPANPLUS::Internals::Utils
20958             CPANPLUS::Internals::Utils::Autoflush
20959             CPANPLUS::Module
20960             CPANPLUS::Module::Author
20961             CPANPLUS::Module::Author::Fake
20962             CPANPLUS::Module::Checksums
20963             CPANPLUS::Module::Fake
20964             CPANPLUS::Module::Signature
20965             CPANPLUS::Selfupdate
20966             CPANPLUS::Shell
20967             CPANPLUS::Shell::Classic
20968             CPANPLUS::Shell::Default
20969             CPANPLUS::Shell::Default::Plugins::CustomSource
20970             CPANPLUS::Shell::Default::Plugins::Remote
20971             CPANPLUS::Shell::Default::Plugins::Source
20972             Devel::InnerPackage
20973             File::CheckTree
20974             Log::Message
20975             Log::Message::Config
20976             Log::Message::Handlers
20977             Log::Message::Item
20978             Log::Message::Simple
20979             Module::Pluggable
20980             Module::Pluggable::Object
20981             Object::Accessor
20982             Pod::LaTeX
20983             Term::UI
20984             Term::UI::History
20985             Text::Soundex
20986             /}
20987             },
20988             5.019001 => {
20989             delta_from => 5.019,
20990             changed => {
20991             },
20992             removed => {
20993             }
20994             },
20995             5.019002 => {
20996             delta_from => 5.019001,
20997             changed => {
20998             },
20999             removed => {
21000             }
21001             },
21002             5.019003 => {
21003             delta_from => 5.019002,
21004             changed => {
21005             },
21006             removed => {
21007             }
21008             },
21009             5.019004 => {
21010             delta_from => 5.019003,
21011             changed => {
21012             'Module::Build::Base' => '1',
21013             'Module::Build::Compat' => '1',
21014             'Module::Build::Config' => '1',
21015             'Module::Build::ConfigData'=> '1',
21016             'Module::Build::Cookbook'=> '1',
21017             'Module::Build::Dumper' => '1',
21018             'Module::Build::ModuleInfo'=> '1',
21019             'Module::Build::Notes' => '1',
21020             'Module::Build::PPMMaker'=> '1',
21021             'Module::Build::Platform::Default'=> '1',
21022             'Module::Build::Platform::MacOS'=> '1',
21023             'Module::Build::Platform::Unix'=> '1',
21024             'Module::Build::Platform::VMS'=> '1',
21025             'Module::Build::Platform::VOS'=> '1',
21026             'Module::Build::Platform::Windows'=> '1',
21027             'Module::Build::Platform::aix'=> '1',
21028             'Module::Build::Platform::cygwin'=> '1',
21029             'Module::Build::Platform::darwin'=> '1',
21030             'Module::Build::Platform::os2'=> '1',
21031             'Module::Build::PodParser'=> '1',
21032             'Module::Build::Version'=> '1',
21033             'Module::Build::YAML' => '1',
21034             'inc::latest' => '1',
21035             },
21036             removed => {
21037             }
21038             },
21039             5.019005 => {
21040             delta_from => 5.019004,
21041             changed => {
21042             },
21043             removed => {
21044             }
21045             },
21046             5.019006 => {
21047             delta_from => 5.019005,
21048             changed => {
21049             'Package::Constants' => '1',
21050             },
21051             removed => {
21052             }
21053             },
21054             5.019007 => {
21055             delta_from => 5.019006,
21056             changed => {
21057             'CGI' => '1',
21058             'CGI::Apache' => '1',
21059             'CGI::Carp' => '1',
21060             'CGI::Cookie' => '1',
21061             'CGI::Fast' => '1',
21062             'CGI::Pretty' => '1',
21063             'CGI::Push' => '1',
21064             'CGI::Switch' => '1',
21065             'CGI::Util' => '1',
21066             },
21067             removed => {
21068             }
21069             },
21070             5.019008 => {
21071             delta_from => 5.019007,
21072             changed => {
21073             },
21074             removed => {
21075             }
21076             },
21077             5.019009 => {
21078             delta_from => 5.019008,
21079             changed => {
21080             },
21081             removed => {
21082             }
21083             },
21084             5.01901 => {
21085             delta_from => 5.019009,
21086             changed => {
21087             },
21088             removed => {
21089             }
21090             },
21091             5.019011 => {
21092             delta_from => 5.019010,
21093             changed => {
21094             },
21095             removed => {
21096             }
21097             },
21098             5.020000 => {
21099             delta_from => 5.019011,
21100             changed => {
21101             },
21102             removed => {
21103             }
21104             },
21105             5.021000 => {
21106             delta_from => 5.020000,
21107             changed => {
21108             },
21109             removed => {
21110             'CGI' => 1,
21111             'CGI::Apache' => 1,
21112             'CGI::Carp' => 1,
21113             'CGI::Cookie' => 1,
21114             'CGI::Fast' => 1,
21115             'CGI::Pretty' => 1,
21116             'CGI::Push' => 1,
21117             'CGI::Switch' => 1,
21118             'CGI::Util' => 1,
21119             'Module::Build' => 1,
21120             'Module::Build::Base' => 1,
21121             'Module::Build::Compat' => 1,
21122             'Module::Build::Config' => 1,
21123             'Module::Build::ConfigData'=> 1,
21124             'Module::Build::Cookbook'=> 1,
21125             'Module::Build::Dumper' => 1,
21126             'Module::Build::ModuleInfo'=> 1,
21127             'Module::Build::Notes' => 1,
21128             'Module::Build::PPMMaker'=> 1,
21129             'Module::Build::Platform::Default'=> 1,
21130             'Module::Build::Platform::MacOS'=> 1,
21131             'Module::Build::Platform::Unix'=> 1,
21132             'Module::Build::Platform::VMS'=> 1,
21133             'Module::Build::Platform::VOS'=> 1,
21134             'Module::Build::Platform::Windows'=> 1,
21135             'Module::Build::Platform::aix'=> 1,
21136             'Module::Build::Platform::cygwin'=> 1,
21137             'Module::Build::Platform::darwin'=> 1,
21138             'Module::Build::Platform::os2'=> 1,
21139             'Module::Build::PodParser'=> 1,
21140             'Module::Build::Version'=> 1,
21141             'Module::Build::YAML' => 1,
21142             'Package::Constants' => 1,
21143             'inc::latest' => 1,
21144             }
21145             },
21146             5.021001 => {
21147             delta_from => 5.021000,
21148             changed => {
21149             },
21150             removed => {
21151             }
21152             },
21153             5.021002 => {
21154             delta_from => 5.021001,
21155             changed => {
21156             },
21157             removed => {
21158             }
21159             },
21160             5.021003 => {
21161             delta_from => 5.021002,
21162             changed => {
21163             },
21164             removed => {
21165             }
21166             },
21167             5.020001 => {
21168             delta_from => 5.020000,
21169             changed => {
21170             },
21171             removed => {
21172             }
21173             },
21174             5.021004 => {
21175             delta_from => 5.021003,
21176             changed => {
21177             },
21178             removed => {
21179             }
21180             },
21181             5.021005 => {
21182             delta_from => 5.021004,
21183             changed => {
21184             },
21185             removed => {
21186             }
21187             },
21188             5.021006 => {
21189             delta_from => 5.021005,
21190             changed => {
21191             },
21192             removed => {
21193             }
21194             },
21195             5.021007 => {
21196             delta_from => 5.021006,
21197             changed => {
21198             },
21199             removed => {
21200             }
21201             },
21202             5.021008 => {
21203             delta_from => 5.021007,
21204             changed => {
21205             },
21206             removed => {
21207             }
21208             },
21209             5.020002 => {
21210             delta_from => 5.020001,
21211             changed => {
21212             },
21213             removed => {
21214             }
21215             },
21216             5.021009 => {
21217             delta_from => 5.021008,
21218             changed => {
21219             },
21220             removed => {
21221             }
21222             },
21223             5.021010 => {
21224             delta_from => 5.021009,
21225             changed => {
21226             },
21227             removed => {
21228             }
21229             },
21230             5.021011 => {
21231             delta_from => 5.02101,
21232             changed => {
21233             },
21234             removed => {
21235             }
21236             },
21237             5.022000 => {
21238             delta_from => 5.021011,
21239             changed => {
21240             },
21241             removed => {
21242             }
21243             },
21244             5.023000 => {
21245             delta_from => 5.022000,
21246             changed => {
21247             },
21248             removed => {
21249             }
21250             },
21251             5.023001 => {
21252             delta_from => 5.023000,
21253             changed => {
21254             },
21255             removed => {
21256             }
21257             },
21258             5.023002 => {
21259             delta_from => 5.023001,
21260             changed => {
21261             },
21262             removed => {
21263             }
21264             },
21265             5.020003 => {
21266             delta_from => 5.020002,
21267             changed => {
21268             },
21269             removed => {
21270             }
21271             },
21272             5.023003 => {
21273             delta_from => 5.023002,
21274             changed => {
21275             },
21276             removed => {
21277             }
21278             },
21279             5.023004 => {
21280             delta_from => 5.023003,
21281             changed => {
21282             },
21283             removed => {
21284             }
21285             },
21286             5.023005 => {
21287             delta_from => 5.023004,
21288             changed => {
21289             },
21290             removed => {
21291             }
21292             },
21293             5.022001 => {
21294             delta_from => 5.022,
21295             changed => {
21296             },
21297             removed => {
21298             }
21299             },
21300             5.023006 => {
21301             delta_from => 5.023005,
21302             changed => {
21303             },
21304             removed => {
21305             }
21306             },
21307             5.023007 => {
21308             delta_from => 5.023006,
21309             changed => {
21310             },
21311             removed => {
21312             }
21313             },
21314             5.023008 => {
21315             delta_from => 5.023007,
21316             changed => {
21317             },
21318             removed => {
21319             }
21320             },
21321             5.023009 => {
21322             delta_from => 5.023008,
21323             changed => {
21324             },
21325             removed => {
21326             }
21327             },
21328             5.022002 => {
21329             delta_from => 5.022001,
21330             changed => {
21331             },
21332             removed => {
21333             }
21334             },
21335             5.024000 => {
21336             delta_from => 5.023009,
21337             changed => {
21338             },
21339             removed => {
21340             }
21341             },
21342             5.025000 => {
21343             delta_from => 5.024,
21344             changed => {
21345             },
21346             removed => {
21347             }
21348             },
21349             5.025001 => {
21350             delta_from => 5.025,
21351             changed => {
21352             },
21353             removed => {
21354             }
21355             },
21356             5.025002 => {
21357             delta_from => 5.025001,
21358             changed => {
21359             },
21360             removed => {
21361             }
21362             },
21363             5.025003 => {
21364             delta_from => 5.025002,
21365             changed => {
21366             },
21367             removed => {
21368             }
21369             },
21370             5.025004 => {
21371             delta_from => 5.025003,
21372             changed => {
21373             },
21374             removed => {
21375             }
21376             },
21377             5.025005 => {
21378             delta_from => 5.025004,
21379             changed => {
21380             },
21381             removed => {
21382             }
21383             },
21384             5.025006 => {
21385             delta_from => 5.025005,
21386             changed => {
21387             },
21388             removed => {
21389             }
21390             },
21391             5.025007 => {
21392             delta_from => 5.025006,
21393             changed => {
21394             },
21395             removed => {
21396             }
21397             },
21398             5.025008 => {
21399             delta_from => 5.025007,
21400             changed => {
21401             },
21402             removed => {
21403             }
21404             },
21405             5.022003 => {
21406             delta_from => 5.022002,
21407             changed => {
21408             },
21409             removed => {
21410             }
21411             },
21412             5.024001 => {
21413             delta_from => 5.024000,
21414             changed => {
21415             },
21416             removed => {
21417             }
21418             },
21419             5.025009 => {
21420             delta_from => 5.025008,
21421             changed => {
21422             },
21423             removed => {
21424             }
21425             },
21426             5.025010 => {
21427             delta_from => 5.025009,
21428             changed => {
21429             },
21430             removed => {
21431             }
21432             },
21433             5.025011 => {
21434             delta_from => 5.025010,
21435             changed => {
21436             },
21437             removed => {
21438             }
21439             },
21440             5.025012 => {
21441             delta_from => 5.025011,
21442             changed => {
21443             },
21444             removed => {
21445             }
21446             },
21447             5.026000 => {
21448             delta_from => 5.025012,
21449             changed => {
21450             },
21451             removed => {
21452             }
21453             },
21454             5.027000 => {
21455             delta_from => 5.026,
21456             changed => {
21457             },
21458             removed => {
21459             }
21460             },
21461             5.027001 => {
21462             delta_from => 5.027,
21463             changed => {
21464             },
21465             removed => {
21466             }
21467             },
21468             5.022004 => {
21469             delta_from => 5.022003,
21470             changed => {
21471             },
21472             removed => {
21473             }
21474             },
21475             5.024002 => {
21476             delta_from => 5.024001,
21477             changed => {
21478             },
21479             removed => {
21480             }
21481             },
21482             5.027002 => {
21483             delta_from => 5.027001,
21484             changed => {
21485             },
21486             removed => {
21487             }
21488             },
21489             5.027003 => {
21490             delta_from => 5.027002,
21491             changed => {
21492             'B::Debug' => '1',
21493             },
21494             removed => {
21495             }
21496             },
21497             5.027004 => {
21498             delta_from => 5.027003,
21499             changed => {
21500             },
21501             removed => {
21502             }
21503             },
21504             5.024003 => {
21505             delta_from => 5.024002,
21506             changed => {
21507             },
21508             removed => {
21509             }
21510             },
21511             5.026001 => {
21512             delta_from => 5.026000,
21513             changed => {
21514             },
21515             removed => {
21516             }
21517             },
21518             5.027005 => {
21519             delta_from => 5.027004,
21520             changed => {
21521             },
21522             removed => {
21523             }
21524             },
21525             5.027006 => {
21526             delta_from => 5.027005,
21527             changed => {
21528             },
21529             removed => {
21530             }
21531             },
21532             5.027007 => {
21533             delta_from => 5.027006,
21534             changed => {
21535             },
21536             removed => {
21537             }
21538             },
21539             5.027008 => {
21540             delta_from => 5.027007,
21541             changed => {
21542             },
21543             removed => {
21544             }
21545             },
21546             5.027009 => {
21547             delta_from => 5.027008,
21548             changed => {
21549             },
21550             removed => {
21551             }
21552             },
21553             5.027010 => {
21554             delta_from => 5.027009,
21555             changed => {
21556             },
21557             removed => {
21558             }
21559             },
21560             5.024004 => {
21561             delta_from => 5.024003,
21562             changed => {
21563             },
21564             removed => {
21565             }
21566             },
21567             5.026002 => {
21568             delta_from => 5.026001,
21569             changed => {
21570             },
21571             removed => {
21572             }
21573             },
21574             5.027011 => {
21575             delta_from => 5.02701,
21576             changed => {
21577             },
21578             removed => {
21579             }
21580             },
21581             5.028000 => {
21582             delta_from => 5.027011,
21583             changed => {
21584             },
21585             removed => {
21586             }
21587             },
21588             5.029000 => {
21589             delta_from => 5.028,
21590             changed => {
21591             },
21592             removed => {
21593             }
21594             },
21595             5.029001 => {
21596             delta_from => 5.029,
21597             changed => {
21598             },
21599             removed => {
21600             }
21601             },
21602             5.029002 => {
21603             delta_from => 5.029001,
21604             changed => {
21605             },
21606             removed => {
21607             }
21608             },
21609             5.029003 => {
21610             delta_from => 5.029002,
21611             changed => {
21612             },
21613             removed => {
21614             }
21615             },
21616             5.029004 => {
21617             delta_from => 5.029003,
21618             changed => {
21619             },
21620             removed => {
21621             arybase => '1',
21622             }
21623             },
21624             5.029005 => {
21625             delta_from => 5.027002,
21626             changed => {
21627             },
21628             removed => {
21629             }
21630             },
21631             5.026003 => {
21632             delta_from => 5.026002,
21633             changed => {
21634             },
21635             removed => {
21636             }
21637             },
21638             5.028001 => {
21639             delta_from => 5.028000,
21640             changed => {
21641             },
21642             removed => {
21643             }
21644             },
21645             5.029006 => {
21646             delta_from => 5.029005,
21647             changed => {
21648             },
21649             removed => {
21650             }
21651             },
21652             5.029007 => {
21653             delta_from => 5.029006,
21654             changed => {
21655             },
21656             removed => {
21657             }
21658             },
21659             5.029008 => {
21660             delta_from => 5.029007,
21661             changed => {
21662             },
21663             removed => {
21664             }
21665             },
21666             5.029009 => {
21667             delta_from => 5.029008,
21668             changed => {
21669             },
21670             removed => {
21671             }
21672             },
21673             5.028002 => {
21674             delta_from => 5.028001,
21675             changed => {
21676             },
21677             removed => {
21678             }
21679             },
21680             5.029010 => {
21681             delta_from => 5.029009,
21682             changed => {
21683             },
21684             removed => {
21685             }
21686             },
21687             5.030000 => {
21688             delta_from => 5.02901,
21689             changed => {
21690             },
21691             removed => {
21692             }
21693             },
21694             5.031000 => {
21695             delta_from => 5.030000,
21696             changed => {
21697             },
21698             removed => {
21699             }
21700             },
21701             5.031001 => {
21702             delta_from => 5.031000,
21703             changed => {
21704             },
21705             removed => {
21706             }
21707             },
21708             5.031002 => {
21709             delta_from => 5.031001,
21710             changed => {
21711             },
21712             removed => {
21713             }
21714             },
21715             5.031003 => {
21716             delta_from => 5.031002,
21717             changed => {
21718             },
21719             removed => {
21720             }
21721             },
21722             5.031004 => {
21723             delta_from => 5.031003,
21724             changed => {
21725             },
21726             removed => {
21727             }
21728             },
21729             5.031005 => {
21730             delta_from => 5.031004,
21731             changed => {
21732             },
21733             removed => {
21734             }
21735             },
21736             5.030001 => {
21737             delta_from => 5.030000,
21738             changed => {
21739             },
21740             removed => {
21741             }
21742             },
21743             5.031006 => {
21744             delta_from => 5.031005,
21745             changed => {
21746             },
21747             removed => {
21748             }
21749             },
21750             5.031007 => {
21751             delta_from => 5.031006,
21752             changed => {
21753             },
21754             removed => {
21755             }
21756             },
21757             5.031008 => {
21758             delta_from => 5.031007,
21759             changed => {
21760             },
21761             removed => {
21762             }
21763             },
21764             5.031009 => {
21765             delta_from => 5.031008,
21766             changed => {
21767             },
21768             removed => {
21769             }
21770             },
21771             5.030002 => {
21772             delta_from => 5.030001,
21773             changed => {
21774             },
21775             removed => {
21776             }
21777             },
21778             5.031010 => {
21779             delta_from => 5.031009,
21780             changed => {
21781             },
21782             removed => {
21783             }
21784             },
21785             5.031011 => {
21786             delta_from => 5.03101,
21787             changed => {
21788             },
21789             removed => {
21790             }
21791             },
21792             5.028003 => {
21793             delta_from => 5.028002,
21794             changed => {
21795             },
21796             removed => {
21797             }
21798             },
21799             5.030003 => {
21800             delta_from => 5.030002,
21801             changed => {
21802             },
21803             removed => {
21804             }
21805             },
21806             5.032000 => {
21807             delta_from => 5.031011,
21808             changed => {
21809             },
21810             removed => {
21811             }
21812             },
21813             5.033000 => {
21814             delta_from => 5.032,
21815             changed => {
21816             },
21817             removed => {
21818             }
21819             },
21820             5.033001 => {
21821             delta_from => 5.033000,
21822             changed => {
21823             },
21824             removed => {
21825             }
21826             },
21827             5.033002 => {
21828             delta_from => 5.033001,
21829             changed => {
21830             },
21831             removed => {
21832             }
21833             },
21834             5.033003 => {
21835             delta_from => 5.033002,
21836             changed => {
21837             },
21838             removed => {
21839             }
21840             },
21841             5.033004 => {
21842             delta_from => 5.033003,
21843             changed => {
21844             },
21845             removed => {
21846             }
21847             },
21848             5.033005 => {
21849             delta_from => 5.033004,
21850             changed => {
21851             },
21852             removed => {
21853             }
21854             },
21855             5.033006 => {
21856             delta_from => 5.033005,
21857             changed => {
21858             },
21859             removed => {
21860             }
21861             },
21862             5.032001 => {
21863             delta_from => 5.032,
21864             changed => {
21865             },
21866             removed => {
21867             }
21868             },
21869             5.033007 => {
21870             delta_from => 5.033006,
21871             changed => {
21872             },
21873             removed => {
21874             }
21875             },
21876             5.033008 => {
21877             delta_from => 5.033007,
21878             changed => {
21879             },
21880             removed => {
21881             }
21882             },
21883             5.033009 => {
21884             delta_from => 5.033008,
21885             changed => {
21886             },
21887             removed => {
21888             }
21889             },
21890             5.034000 => {
21891             delta_from => 5.033009,
21892             changed => {
21893             },
21894             removed => {
21895             }
21896             },
21897             5.035000 => {
21898             delta_from => 5.034,
21899             changed => {
21900             },
21901             removed => {
21902             }
21903             },
21904             5.035001 => {
21905             delta_from => 5.035,
21906             changed => {
21907             },
21908             removed => {
21909             }
21910             },
21911             5.035002 => {
21912             delta_from => 5.035001,
21913             changed => {
21914             },
21915             removed => {
21916             }
21917             },
21918             5.035003 => {
21919             delta_from => 5.035002,
21920             changed => {
21921             },
21922             removed => {
21923             }
21924             },
21925             5.035004 => {
21926             delta_from => 5.035003,
21927             changed => {
21928             },
21929             removed => {
21930             }
21931             },
21932             5.035005 => {
21933             delta_from => 5.035004,
21934             changed => {
21935             },
21936             removed => {
21937             }
21938             },
21939             5.035006 => {
21940             delta_from => 5.035005,
21941             changed => {
21942             },
21943             removed => {
21944             }
21945             },
21946             5.035007 => {
21947             delta_from => 5.035006,
21948             changed => {
21949             },
21950             removed => {
21951             }
21952             },
21953             5.035008 => {
21954             delta_from => 5.035007,
21955             changed => {
21956             },
21957             removed => {
21958             }
21959             },
21960             5.035009 => {
21961             delta_from => 5.035008,
21962             changed => {
21963             },
21964             removed => {
21965             }
21966             },
21967             5.034001 => {
21968             delta_from => 5.034000,
21969             changed => {
21970             },
21971             removed => {
21972             }
21973             },
21974             5.035010 => {
21975             delta_from => 5.035009,
21976             changed => {
21977             },
21978             removed => {
21979             }
21980             },
21981             5.035011 => {
21982             delta_from => 5.035010,
21983             changed => {
21984             },
21985             removed => {
21986             }
21987             },
21988             5.036000 => {
21989             delta_from => 5.035011,
21990             changed => {
21991             },
21992             removed => {
21993             }
21994             },
21995             5.037000 => {
21996             delta_from => 5.036000,
21997             changed => {
21998             },
21999             removed => {
22000             }
22001             },
22002             5.037001 => {
22003             delta_from => 5.037000,
22004             changed => {
22005             },
22006             removed => {
22007             }
22008             },
22009             5.037002 => {
22010             delta_from => 5.037001,
22011             changed => {
22012             },
22013             removed => {
22014             }
22015             },
22016             5.037003 => {
22017             delta_from => 5.037002,
22018             changed => {
22019             },
22020             removed => {
22021             }
22022             },
22023             5.037004 => {
22024             delta_from => 5.037003,
22025             changed => {
22026             },
22027             removed => {
22028             }
22029             },
22030             5.037005 => {
22031             delta_from => 5.037004,
22032             changed => {
22033             },
22034             removed => {
22035             }
22036             },
22037             5.037006 => {
22038             delta_from => 5.037005,
22039             changed => {
22040             },
22041             removed => {
22042             }
22043             },
22044             5.037007 => {
22045             delta_from => 5.037006,
22046             changed => {
22047             },
22048             removed => {
22049             }
22050             },
22051             5.037008 => {
22052             delta_from => 5.037007,
22053             changed => {
22054             },
22055             removed => {
22056             }
22057             },
22058             5.037009 => {
22059             delta_from => 5.037008,
22060             changed => {
22061             },
22062             removed => {
22063             }
22064             },
22065             5.037010 => {
22066             delta_from => 5.037009,
22067             changed => {
22068             },
22069             removed => {
22070             }
22071             },
22072             5.037011 => {
22073             delta_from => 5.037010,
22074             changed => {
22075             },
22076             removed => {
22077             }
22078             },
22079             5.036001 => {
22080             delta_from => 5.036,
22081             changed => {
22082             },
22083             removed => {
22084             }
22085             },
22086             5.038000 => {
22087             delta_from => 5.037011,
22088             changed => {
22089             },
22090             removed => {
22091             }
22092             },
22093             5.039001 => {
22094             delta_from => 5.038,
22095             changed => {
22096             },
22097             removed => {
22098             }
22099             },
22100             5.039002 => {
22101             delta_from => 5.039001,
22102             changed => {
22103             },
22104             removed => {
22105             }
22106             },
22107             5.039003 => {
22108             delta_from => 5.039002,
22109             changed => {
22110             },
22111             removed => {
22112             }
22113             },
22114             );
22115              
22116             %deprecated = _undelta(\%deprecated);
22117              
22118             %upstream = (
22119             'App::Cpan' => 'cpan',
22120             'App::Prove' => 'cpan',
22121             'App::Prove::State' => 'cpan',
22122             'App::Prove::State::Result'=> 'cpan',
22123             'App::Prove::State::Result::Test'=> 'cpan',
22124             'Archive::Tar' => 'cpan',
22125             'Archive::Tar::Constant'=> 'cpan',
22126             'Archive::Tar::File' => 'cpan',
22127             'AutoLoader' => 'cpan',
22128             'AutoSplit' => 'cpan',
22129             'CPAN' => 'cpan',
22130             'CPAN::Author' => 'cpan',
22131             'CPAN::Bundle' => 'cpan',
22132             'CPAN::CacheMgr' => 'cpan',
22133             'CPAN::Complete' => 'cpan',
22134             'CPAN::Debug' => 'cpan',
22135             'CPAN::DeferredCode' => 'cpan',
22136             'CPAN::Distribution' => 'cpan',
22137             'CPAN::Distroprefs' => 'cpan',
22138             'CPAN::Distrostatus' => 'cpan',
22139             'CPAN::Exception::RecursiveDependency'=> 'cpan',
22140             'CPAN::Exception::blocked_urllist'=> 'cpan',
22141             'CPAN::Exception::yaml_not_installed'=> 'cpan',
22142             'CPAN::Exception::yaml_process_error'=> 'cpan',
22143             'CPAN::FTP' => 'cpan',
22144             'CPAN::FTP::netrc' => 'cpan',
22145             'CPAN::FirstTime' => 'cpan',
22146             'CPAN::HTTP::Client' => 'cpan',
22147             'CPAN::HTTP::Credentials'=> 'cpan',
22148             'CPAN::HandleConfig' => 'cpan',
22149             'CPAN::Index' => 'cpan',
22150             'CPAN::InfoObj' => 'cpan',
22151             'CPAN::Kwalify' => 'cpan',
22152             'CPAN::LWP::UserAgent' => 'cpan',
22153             'CPAN::Meta' => 'cpan',
22154             'CPAN::Meta::Converter' => 'cpan',
22155             'CPAN::Meta::Feature' => 'cpan',
22156             'CPAN::Meta::History' => 'cpan',
22157             'CPAN::Meta::Merge' => 'cpan',
22158             'CPAN::Meta::Prereqs' => 'cpan',
22159             'CPAN::Meta::Requirements'=> 'cpan',
22160             'CPAN::Meta::Requirements::Range'=> 'cpan',
22161             'CPAN::Meta::Spec' => 'cpan',
22162             'CPAN::Meta::Validator' => 'cpan',
22163             'CPAN::Meta::YAML' => 'cpan',
22164             'CPAN::Mirrors' => 'cpan',
22165             'CPAN::Module' => 'cpan',
22166             'CPAN::Nox' => 'cpan',
22167             'CPAN::Plugin' => 'cpan',
22168             'CPAN::Plugin::Specfile'=> 'cpan',
22169             'CPAN::Prompt' => 'cpan',
22170             'CPAN::Queue' => 'cpan',
22171             'CPAN::Shell' => 'cpan',
22172             'CPAN::Tarzip' => 'cpan',
22173             'CPAN::URL' => 'cpan',
22174             'CPAN::Version' => 'cpan',
22175             'Compress::Raw::Bzip2' => 'cpan',
22176             'Compress::Raw::Zlib' => 'cpan',
22177             'Compress::Zlib' => 'cpan',
22178             'Config::Perl::V' => 'cpan',
22179             'DB_File' => 'cpan',
22180             'Digest' => 'cpan',
22181             'Digest::MD5' => 'cpan',
22182             'Digest::SHA' => 'cpan',
22183             'Digest::base' => 'cpan',
22184             'Digest::file' => 'cpan',
22185             'Encode' => 'cpan',
22186             'Encode::Alias' => 'cpan',
22187             'Encode::Byte' => 'cpan',
22188             'Encode::CJKConstants' => 'cpan',
22189             'Encode::CN' => 'cpan',
22190             'Encode::CN::HZ' => 'cpan',
22191             'Encode::Config' => 'cpan',
22192             'Encode::EBCDIC' => 'cpan',
22193             'Encode::Encoder' => 'cpan',
22194             'Encode::Encoding' => 'cpan',
22195             'Encode::GSM0338' => 'cpan',
22196             'Encode::Guess' => 'cpan',
22197             'Encode::JP' => 'cpan',
22198             'Encode::JP::H2Z' => 'cpan',
22199             'Encode::JP::JIS7' => 'cpan',
22200             'Encode::KR' => 'cpan',
22201             'Encode::KR::2022_KR' => 'cpan',
22202             'Encode::MIME::Header' => 'cpan',
22203             'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
22204             'Encode::MIME::Name' => 'cpan',
22205             'Encode::Symbol' => 'cpan',
22206             'Encode::TW' => 'cpan',
22207             'Encode::Unicode' => 'cpan',
22208             'Encode::Unicode::UTF7' => 'cpan',
22209             'ExtUtils::Command' => 'cpan',
22210             'ExtUtils::Command::MM' => 'cpan',
22211             'ExtUtils::Constant' => 'cpan',
22212             'ExtUtils::Constant::Base'=> 'cpan',
22213             'ExtUtils::Constant::ProxySubs'=> 'cpan',
22214             'ExtUtils::Constant::Utils'=> 'cpan',
22215             'ExtUtils::Constant::XS'=> 'cpan',
22216             'ExtUtils::Install' => 'cpan',
22217             'ExtUtils::Installed' => 'cpan',
22218             'ExtUtils::Liblist' => 'cpan',
22219             'ExtUtils::Liblist::Kid'=> 'cpan',
22220             'ExtUtils::MM' => 'cpan',
22221             'ExtUtils::MM_AIX' => 'cpan',
22222             'ExtUtils::MM_Any' => 'cpan',
22223             'ExtUtils::MM_BeOS' => 'cpan',
22224             'ExtUtils::MM_Cygwin' => 'cpan',
22225             'ExtUtils::MM_DOS' => 'cpan',
22226             'ExtUtils::MM_Darwin' => 'cpan',
22227             'ExtUtils::MM_MacOS' => 'cpan',
22228             'ExtUtils::MM_NW5' => 'cpan',
22229             'ExtUtils::MM_OS2' => 'cpan',
22230             'ExtUtils::MM_OS390' => 'cpan',
22231             'ExtUtils::MM_QNX' => 'cpan',
22232             'ExtUtils::MM_UWIN' => 'cpan',
22233             'ExtUtils::MM_Unix' => 'cpan',
22234             'ExtUtils::MM_VMS' => 'cpan',
22235             'ExtUtils::MM_VOS' => 'cpan',
22236             'ExtUtils::MM_Win32' => 'cpan',
22237             'ExtUtils::MM_Win95' => 'cpan',
22238             'ExtUtils::MY' => 'cpan',
22239             'ExtUtils::MakeMaker' => 'cpan',
22240             'ExtUtils::MakeMaker::Config'=> 'cpan',
22241             'ExtUtils::MakeMaker::Locale'=> 'cpan',
22242             'ExtUtils::MakeMaker::version'=> 'cpan',
22243             'ExtUtils::MakeMaker::version::regex'=> 'cpan',
22244             'ExtUtils::Manifest' => 'cpan',
22245             'ExtUtils::Mkbootstrap' => 'cpan',
22246             'ExtUtils::Mksymlists' => 'cpan',
22247             'ExtUtils::PL2Bat' => 'cpan',
22248             'ExtUtils::Packlist' => 'cpan',
22249             'ExtUtils::testlib' => 'cpan',
22250             'Fatal' => 'cpan',
22251             'File::Fetch' => 'cpan',
22252             'File::GlobMapper' => 'cpan',
22253             'File::Path' => 'cpan',
22254             'File::Temp' => 'cpan',
22255             'Filter::Util::Call' => 'cpan',
22256             'Getopt::Long' => 'cpan',
22257             'HTTP::Tiny' => 'cpan',
22258             'IO::Compress::Adapter::Bzip2'=> 'cpan',
22259             'IO::Compress::Adapter::Deflate'=> 'cpan',
22260             'IO::Compress::Adapter::Identity'=> 'cpan',
22261             'IO::Compress::Base' => 'cpan',
22262             'IO::Compress::Base::Common'=> 'cpan',
22263             'IO::Compress::Bzip2' => 'cpan',
22264             'IO::Compress::Deflate' => 'cpan',
22265             'IO::Compress::Gzip' => 'cpan',
22266             'IO::Compress::Gzip::Constants'=> 'cpan',
22267             'IO::Compress::RawDeflate'=> 'cpan',
22268             'IO::Compress::Zip' => 'cpan',
22269             'IO::Compress::Zip::Constants'=> 'cpan',
22270             'IO::Compress::Zlib::Constants'=> 'cpan',
22271             'IO::Compress::Zlib::Extra'=> 'cpan',
22272             'IO::Socket::IP' => 'cpan',
22273             'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
22274             'IO::Uncompress::Adapter::Identity'=> 'cpan',
22275             'IO::Uncompress::Adapter::Inflate'=> 'cpan',
22276             'IO::Uncompress::AnyInflate'=> 'cpan',
22277             'IO::Uncompress::AnyUncompress'=> 'cpan',
22278             'IO::Uncompress::Base' => 'cpan',
22279             'IO::Uncompress::Bunzip2'=> 'cpan',
22280             'IO::Uncompress::Gunzip'=> 'cpan',
22281             'IO::Uncompress::Inflate'=> 'cpan',
22282             'IO::Uncompress::RawInflate'=> 'cpan',
22283             'IO::Uncompress::Unzip' => 'cpan',
22284             'IO::Zlib' => 'cpan',
22285             'IPC::Cmd' => 'cpan',
22286             'IPC::Msg' => 'cpan',
22287             'IPC::Semaphore' => 'cpan',
22288             'IPC::SharedMem' => 'cpan',
22289             'IPC::SysV' => 'cpan',
22290             'JSON::PP' => 'cpan',
22291             'JSON::PP::Boolean' => 'cpan',
22292             'List::Util' => 'cpan',
22293             'List::Util::XS' => 'cpan',
22294             'Locale::Maketext::Simple'=> 'cpan',
22295             'MIME::Base64' => 'cpan',
22296             'MIME::QuotedPrint' => 'cpan',
22297             'Math::BigFloat' => 'cpan',
22298             'Math::BigFloat::Trace' => 'cpan',
22299             'Math::BigInt' => 'cpan',
22300             'Math::BigInt::Calc' => 'cpan',
22301             'Math::BigInt::FastCalc'=> 'cpan',
22302             'Math::BigInt::Lib' => 'cpan',
22303             'Math::BigInt::Trace' => 'cpan',
22304             'Math::BigRat' => 'cpan',
22305             'Math::BigRat::Trace' => 'cpan',
22306             'Memoize' => 'cpan',
22307             'Memoize::AnyDBM_File' => 'cpan',
22308             'Memoize::Expire' => 'cpan',
22309             'Memoize::NDBM_File' => 'cpan',
22310             'Memoize::SDBM_File' => 'cpan',
22311             'Memoize::Storable' => 'cpan',
22312             'Module::Load' => 'cpan',
22313             'Module::Load::Conditional'=> 'cpan',
22314             'Module::Loaded' => 'cpan',
22315             'Module::Metadata' => 'cpan',
22316             'NEXT' => 'cpan',
22317             'Net::Cmd' => 'cpan',
22318             'Net::Config' => 'cpan',
22319             'Net::Domain' => 'cpan',
22320             'Net::FTP' => 'cpan',
22321             'Net::FTP::A' => 'cpan',
22322             'Net::FTP::E' => 'cpan',
22323             'Net::FTP::I' => 'cpan',
22324             'Net::FTP::L' => 'cpan',
22325             'Net::FTP::dataconn' => 'cpan',
22326             'Net::NNTP' => 'cpan',
22327             'Net::Netrc' => 'cpan',
22328             'Net::POP3' => 'cpan',
22329             'Net::SMTP' => 'cpan',
22330             'Net::Time' => 'cpan',
22331             'Params::Check' => 'cpan',
22332             'Parse::CPAN::Meta' => 'cpan',
22333             'Perl::OSType' => 'cpan',
22334             'PerlIO::via::QuotedPrint'=> 'cpan',
22335             'Pod::Checker' => 'cpan',
22336             'Pod::Escapes' => 'cpan',
22337             'Pod::Man' => 'cpan',
22338             'Pod::ParseLink' => 'cpan',
22339             'Pod::Perldoc' => 'cpan',
22340             'Pod::Perldoc::BaseTo' => 'cpan',
22341             'Pod::Perldoc::GetOptsOO'=> 'cpan',
22342             'Pod::Perldoc::ToANSI' => 'cpan',
22343             'Pod::Perldoc::ToChecker'=> 'cpan',
22344             'Pod::Perldoc::ToMan' => 'cpan',
22345             'Pod::Perldoc::ToNroff' => 'cpan',
22346             'Pod::Perldoc::ToPod' => 'cpan',
22347             'Pod::Perldoc::ToRtf' => 'cpan',
22348             'Pod::Perldoc::ToTerm' => 'cpan',
22349             'Pod::Perldoc::ToText' => 'cpan',
22350             'Pod::Perldoc::ToTk' => 'cpan',
22351             'Pod::Perldoc::ToXml' => 'cpan',
22352             'Pod::Simple' => 'cpan',
22353             'Pod::Simple::BlackBox' => 'cpan',
22354             'Pod::Simple::Checker' => 'cpan',
22355             'Pod::Simple::Debug' => 'cpan',
22356             'Pod::Simple::DumpAsText'=> 'cpan',
22357             'Pod::Simple::DumpAsXML'=> 'cpan',
22358             'Pod::Simple::HTML' => 'cpan',
22359             'Pod::Simple::HTMLBatch'=> 'cpan',
22360             'Pod::Simple::HTMLLegacy'=> 'cpan',
22361             'Pod::Simple::JustPod' => 'cpan',
22362             'Pod::Simple::LinkSection'=> 'cpan',
22363             'Pod::Simple::Methody' => 'cpan',
22364             'Pod::Simple::Progress' => 'cpan',
22365             'Pod::Simple::PullParser'=> 'cpan',
22366             'Pod::Simple::PullParserEndToken'=> 'cpan',
22367             'Pod::Simple::PullParserStartToken'=> 'cpan',
22368             'Pod::Simple::PullParserTextToken'=> 'cpan',
22369             'Pod::Simple::PullParserToken'=> 'cpan',
22370             'Pod::Simple::RTF' => 'cpan',
22371             'Pod::Simple::Search' => 'cpan',
22372             'Pod::Simple::SimpleTree'=> 'cpan',
22373             'Pod::Simple::Text' => 'cpan',
22374             'Pod::Simple::TextContent'=> 'cpan',
22375             'Pod::Simple::TiedOutFH'=> 'cpan',
22376             'Pod::Simple::Transcode'=> 'cpan',
22377             'Pod::Simple::TranscodeDumb'=> 'cpan',
22378             'Pod::Simple::TranscodeSmart'=> 'cpan',
22379             'Pod::Simple::XHTML' => 'cpan',
22380             'Pod::Simple::XMLOutStream'=> 'cpan',
22381             'Pod::Text' => 'cpan',
22382             'Pod::Text::Color' => 'cpan',
22383             'Pod::Text::Overstrike' => 'cpan',
22384             'Pod::Text::Termcap' => 'cpan',
22385             'Pod::Usage' => 'cpan',
22386             'Scalar::Util' => 'cpan',
22387             'Socket' => 'cpan',
22388             'Sub::Util' => 'cpan',
22389             'Sys::Syslog' => 'cpan',
22390             'Sys::Syslog::Win32' => 'cpan',
22391             'TAP::Base' => 'cpan',
22392             'TAP::Formatter::Base' => 'cpan',
22393             'TAP::Formatter::Color' => 'cpan',
22394             'TAP::Formatter::Console'=> 'cpan',
22395             'TAP::Formatter::Console::ParallelSession'=> 'cpan',
22396             'TAP::Formatter::Console::Session'=> 'cpan',
22397             'TAP::Formatter::File' => 'cpan',
22398             'TAP::Formatter::File::Session'=> 'cpan',
22399             'TAP::Formatter::Session'=> 'cpan',
22400             'TAP::Harness' => 'cpan',
22401             'TAP::Harness::Env' => 'cpan',
22402             'TAP::Object' => 'cpan',
22403             'TAP::Parser' => 'cpan',
22404             'TAP::Parser::Aggregator'=> 'cpan',
22405             'TAP::Parser::Grammar' => 'cpan',
22406             'TAP::Parser::Iterator' => 'cpan',
22407             'TAP::Parser::Iterator::Array'=> 'cpan',
22408             'TAP::Parser::Iterator::Process'=> 'cpan',
22409             'TAP::Parser::Iterator::Stream'=> 'cpan',
22410             'TAP::Parser::IteratorFactory'=> 'cpan',
22411             'TAP::Parser::Multiplexer'=> 'cpan',
22412             'TAP::Parser::Result' => 'cpan',
22413             'TAP::Parser::Result::Bailout'=> 'cpan',
22414             'TAP::Parser::Result::Comment'=> 'cpan',
22415             'TAP::Parser::Result::Plan'=> 'cpan',
22416             'TAP::Parser::Result::Pragma'=> 'cpan',
22417             'TAP::Parser::Result::Test'=> 'cpan',
22418             'TAP::Parser::Result::Unknown'=> 'cpan',
22419             'TAP::Parser::Result::Version'=> 'cpan',
22420             'TAP::Parser::Result::YAML'=> 'cpan',
22421             'TAP::Parser::ResultFactory'=> 'cpan',
22422             'TAP::Parser::Scheduler'=> 'cpan',
22423             'TAP::Parser::Scheduler::Job'=> 'cpan',
22424             'TAP::Parser::Scheduler::Spinner'=> 'cpan',
22425             'TAP::Parser::Source' => 'cpan',
22426             'TAP::Parser::SourceHandler'=> 'cpan',
22427             'TAP::Parser::SourceHandler::Executable'=> 'cpan',
22428             'TAP::Parser::SourceHandler::File'=> 'cpan',
22429             'TAP::Parser::SourceHandler::Handle'=> 'cpan',
22430             'TAP::Parser::SourceHandler::Perl'=> 'cpan',
22431             'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
22432             'TAP::Parser::YAMLish::Reader'=> 'cpan',
22433             'TAP::Parser::YAMLish::Writer'=> 'cpan',
22434             'Term::ANSIColor' => 'cpan',
22435             'Term::Cap' => 'cpan',
22436             'Test2' => 'cpan',
22437             'Test2::API' => 'cpan',
22438             'Test2::API::Breakage' => 'cpan',
22439             'Test2::API::Context' => 'cpan',
22440             'Test2::API::Instance' => 'cpan',
22441             'Test2::API::InterceptResult'=> 'cpan',
22442             'Test2::API::InterceptResult::Event'=> 'cpan',
22443             'Test2::API::InterceptResult::Facet'=> 'cpan',
22444             'Test2::API::InterceptResult::Hub'=> 'cpan',
22445             'Test2::API::InterceptResult::Squasher'=> 'cpan',
22446             'Test2::API::Stack' => 'cpan',
22447             'Test2::Event' => 'cpan',
22448             'Test2::Event::Bail' => 'cpan',
22449             'Test2::Event::Diag' => 'cpan',
22450             'Test2::Event::Encoding'=> 'cpan',
22451             'Test2::Event::Exception'=> 'cpan',
22452             'Test2::Event::Fail' => 'cpan',
22453             'Test2::Event::Generic' => 'cpan',
22454             'Test2::Event::Note' => 'cpan',
22455             'Test2::Event::Ok' => 'cpan',
22456             'Test2::Event::Pass' => 'cpan',
22457             'Test2::Event::Plan' => 'cpan',
22458             'Test2::Event::Skip' => 'cpan',
22459             'Test2::Event::Subtest' => 'cpan',
22460             'Test2::Event::TAP::Version'=> 'cpan',
22461             'Test2::Event::V2' => 'cpan',
22462             'Test2::Event::Waiting' => 'cpan',
22463             'Test2::EventFacet' => 'cpan',
22464             'Test2::EventFacet::About'=> 'cpan',
22465             'Test2::EventFacet::Amnesty'=> 'cpan',
22466             'Test2::EventFacet::Assert'=> 'cpan',
22467             'Test2::EventFacet::Control'=> 'cpan',
22468             'Test2::EventFacet::Error'=> 'cpan',
22469             'Test2::EventFacet::Hub'=> 'cpan',
22470             'Test2::EventFacet::Info'=> 'cpan',
22471             'Test2::EventFacet::Info::Table'=> 'cpan',
22472             'Test2::EventFacet::Meta'=> 'cpan',
22473             'Test2::EventFacet::Parent'=> 'cpan',
22474             'Test2::EventFacet::Plan'=> 'cpan',
22475             'Test2::EventFacet::Render'=> 'cpan',
22476             'Test2::EventFacet::Trace'=> 'cpan',
22477             'Test2::Formatter' => 'cpan',
22478             'Test2::Formatter::TAP' => 'cpan',
22479             'Test2::Hub' => 'cpan',
22480             'Test2::Hub::Interceptor'=> 'cpan',
22481             'Test2::Hub::Interceptor::Terminator'=> 'cpan',
22482             'Test2::Hub::Subtest' => 'cpan',
22483             'Test2::IPC' => 'cpan',
22484             'Test2::IPC::Driver' => 'cpan',
22485             'Test2::IPC::Driver::Files'=> 'cpan',
22486             'Test2::Tools::Tiny' => 'cpan',
22487             'Test2::Util' => 'cpan',
22488             'Test2::Util::ExternalMeta'=> 'cpan',
22489             'Test2::Util::Facets2Legacy'=> 'cpan',
22490             'Test2::Util::HashBase' => 'cpan',
22491             'Test2::Util::Trace' => 'cpan',
22492             'Test::Builder' => 'cpan',
22493             'Test::Builder::Formatter'=> 'cpan',
22494             'Test::Builder::IO::Scalar'=> 'cpan',
22495             'Test::Builder::Module' => 'cpan',
22496             'Test::Builder::Tester' => 'cpan',
22497             'Test::Builder::Tester::Color'=> 'cpan',
22498             'Test::Builder::TodoDiag'=> 'cpan',
22499             'Test::Harness' => 'cpan',
22500             'Test::More' => 'cpan',
22501             'Test::Simple' => 'cpan',
22502             'Test::Tester' => 'cpan',
22503             'Test::Tester::Capture' => 'cpan',
22504             'Test::Tester::CaptureRunner'=> 'cpan',
22505             'Test::Tester::Delegate'=> 'cpan',
22506             'Test::use::ok' => 'cpan',
22507             'Text::Balanced' => 'cpan',
22508             'Text::ParseWords' => 'cpan',
22509             'Text::Tabs' => 'cpan',
22510             'Text::Wrap' => 'cpan',
22511             'Tie::RefHash' => 'cpan',
22512             'Time::Local' => 'cpan',
22513             'Time::Piece' => 'cpan',
22514             'Time::Seconds' => 'cpan',
22515             'Unicode::Collate' => 'cpan',
22516             'Unicode::Collate::CJK::Big5'=> 'cpan',
22517             'Unicode::Collate::CJK::GB2312'=> 'cpan',
22518             'Unicode::Collate::CJK::JISX0208'=> 'cpan',
22519             'Unicode::Collate::CJK::Korean'=> 'cpan',
22520             'Unicode::Collate::CJK::Pinyin'=> 'cpan',
22521             'Unicode::Collate::CJK::Stroke'=> 'cpan',
22522             'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
22523             'Unicode::Collate::Locale'=> 'cpan',
22524             'Win32' => 'cpan',
22525             'Win32API::File' => 'cpan',
22526             'autodie' => 'cpan',
22527             'autodie::Scope::Guard' => 'cpan',
22528             'autodie::Scope::GuardStack'=> 'cpan',
22529             'autodie::Util' => 'cpan',
22530             'autodie::exception' => 'cpan',
22531             'autodie::exception::system'=> 'cpan',
22532             'autodie::hints' => 'cpan',
22533             'autodie::skip' => 'cpan',
22534             'bigfloat' => 'cpan',
22535             'bigint' => 'cpan',
22536             'bignum' => 'cpan',
22537             'bigrat' => 'cpan',
22538             'encoding' => 'cpan',
22539             'experimental' => 'cpan',
22540             'ok' => 'cpan',
22541             'parent' => 'cpan',
22542             'perlfaq' => 'cpan',
22543             'stable' => 'cpan',
22544             'version' => 'cpan',
22545             'version::regex' => 'cpan',
22546             );
22547              
22548             %bug_tracker = (
22549             'App::Cpan' => undef,
22550             'App::Prove' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22551             'App::Prove::State' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22552             'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22553             'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22554             'Archive::Tar' => undef,
22555             'Archive::Tar::Constant'=> undef,
22556             'Archive::Tar::File' => undef,
22557             'CPAN' => undef,
22558             'CPAN::Author' => undef,
22559             'CPAN::Bundle' => undef,
22560             'CPAN::CacheMgr' => undef,
22561             'CPAN::Complete' => undef,
22562             'CPAN::Debug' => undef,
22563             'CPAN::DeferredCode' => undef,
22564             'CPAN::Distribution' => undef,
22565             'CPAN::Distroprefs' => undef,
22566             'CPAN::Distrostatus' => undef,
22567             'CPAN::Exception::RecursiveDependency'=> undef,
22568             'CPAN::Exception::blocked_urllist'=> undef,
22569             'CPAN::Exception::yaml_not_installed'=> undef,
22570             'CPAN::Exception::yaml_process_error'=> undef,
22571             'CPAN::FTP' => undef,
22572             'CPAN::FTP::netrc' => undef,
22573             'CPAN::FirstTime' => undef,
22574             'CPAN::HTTP::Client' => undef,
22575             'CPAN::HTTP::Credentials'=> undef,
22576             'CPAN::HandleConfig' => undef,
22577             'CPAN::Index' => undef,
22578             'CPAN::InfoObj' => undef,
22579             'CPAN::Kwalify' => undef,
22580             'CPAN::LWP::UserAgent' => undef,
22581             'CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22582             'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22583             'CPAN::Meta::Feature' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22584             'CPAN::Meta::History' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22585             'CPAN::Meta::Merge' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22586             'CPAN::Meta::Prereqs' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22587             'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
22588             'CPAN::Meta::Requirements::Range'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
22589             'CPAN::Meta::Spec' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22590             'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22591             'CPAN::Meta::YAML' => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
22592             'CPAN::Mirrors' => undef,
22593             'CPAN::Module' => undef,
22594             'CPAN::Nox' => undef,
22595             'CPAN::Plugin' => undef,
22596             'CPAN::Plugin::Specfile'=> undef,
22597             'CPAN::Prompt' => undef,
22598             'CPAN::Queue' => undef,
22599             'CPAN::Shell' => undef,
22600             'CPAN::Tarzip' => undef,
22601             'CPAN::URL' => undef,
22602             'CPAN::Version' => undef,
22603             'Compress::Raw::Bzip2' => 'https://github.com/pmqs/Compress-Raw-Bzip2/issues',
22604             'Compress::Raw::Zlib' => 'https://github.com/pmqs/Compress-Raw-Zlib/issues',
22605             'Compress::Zlib' => 'https://github.com/pmqs/IO-Compress/issues',
22606             'Config::Perl::V' => 'https://github.com/Tux/Config-Perl-V/issues',
22607             'DB_File' => 'https://github.com/pmqs/DB_File/issues',
22608             'Digest' => 'https://github.com/Dual-Life/digest/issues',
22609             'Digest::MD5' => 'https://github.com/Dual-Life/digest-md5/issues',
22610             'Digest::SHA' => undef,
22611             'Digest::base' => 'https://github.com/Dual-Life/digest/issues',
22612             'Digest::file' => 'https://github.com/Dual-Life/digest/issues',
22613             'Encode' => undef,
22614             'Encode::Alias' => undef,
22615             'Encode::Byte' => undef,
22616             'Encode::CJKConstants' => undef,
22617             'Encode::CN' => undef,
22618             'Encode::CN::HZ' => undef,
22619             'Encode::Config' => undef,
22620             'Encode::EBCDIC' => undef,
22621             'Encode::Encoder' => undef,
22622             'Encode::Encoding' => undef,
22623             'Encode::GSM0338' => undef,
22624             'Encode::Guess' => undef,
22625             'Encode::JP' => undef,
22626             'Encode::JP::H2Z' => undef,
22627             'Encode::JP::JIS7' => undef,
22628             'Encode::KR' => undef,
22629             'Encode::KR::2022_KR' => undef,
22630             'Encode::MIME::Header' => undef,
22631             'Encode::MIME::Header::ISO_2022_JP'=> undef,
22632             'Encode::MIME::Name' => undef,
22633             'Encode::Symbol' => undef,
22634             'Encode::TW' => undef,
22635             'Encode::Unicode' => undef,
22636             'Encode::Unicode::UTF7' => undef,
22637             'ExtUtils::Command' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22638             'ExtUtils::Command::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22639             'ExtUtils::Constant' => undef,
22640             'ExtUtils::Constant::Base'=> undef,
22641             'ExtUtils::Constant::ProxySubs'=> undef,
22642             'ExtUtils::Constant::Utils'=> undef,
22643             'ExtUtils::Constant::XS'=> undef,
22644             'ExtUtils::Install' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
22645             'ExtUtils::Installed' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
22646             'ExtUtils::Liblist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22647             'ExtUtils::Liblist::Kid'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22648             'ExtUtils::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22649             'ExtUtils::MM_AIX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22650             'ExtUtils::MM_Any' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22651             'ExtUtils::MM_BeOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22652             'ExtUtils::MM_Cygwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22653             'ExtUtils::MM_DOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22654             'ExtUtils::MM_Darwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22655             'ExtUtils::MM_MacOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22656             'ExtUtils::MM_NW5' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22657             'ExtUtils::MM_OS2' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22658             'ExtUtils::MM_OS390' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22659             'ExtUtils::MM_QNX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22660             'ExtUtils::MM_UWIN' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22661             'ExtUtils::MM_Unix' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22662             'ExtUtils::MM_VMS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22663             'ExtUtils::MM_VOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22664             'ExtUtils::MM_Win32' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22665             'ExtUtils::MM_Win95' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22666             'ExtUtils::MY' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22667             'ExtUtils::MakeMaker' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22668             'ExtUtils::MakeMaker::Config'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22669             'ExtUtils::MakeMaker::Locale'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22670             'ExtUtils::MakeMaker::version'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22671             'ExtUtils::MakeMaker::version::regex'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22672             'ExtUtils::Manifest' => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
22673             'ExtUtils::Mkbootstrap' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22674             'ExtUtils::Mksymlists' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22675             'ExtUtils::PL2Bat' => 'https://github.com/Perl-Toolchain-Gang/extutils-pl2bat/issues',
22676             'ExtUtils::Packlist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
22677             'ExtUtils::testlib' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
22678             'Fatal' => 'https://github.com/pjf/autodie/issues',
22679             'File::Fetch' => undef,
22680             'File::GlobMapper' => 'https://github.com/pmqs/IO-Compress/issues',
22681             'File::Path' => undef,
22682             'File::Temp' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
22683             'Filter::Util::Call' => undef,
22684             'Getopt::Long' => undef,
22685             'HTTP::Tiny' => 'https://github.com/Perl-Toolchain-Gang/HTTP-Tiny/issues',
22686             'IO::Compress::Adapter::Bzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
22687             'IO::Compress::Adapter::Deflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22688             'IO::Compress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
22689             'IO::Compress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
22690             'IO::Compress::Base::Common'=> 'https://github.com/pmqs/IO-Compress/issues',
22691             'IO::Compress::Bzip2' => 'https://github.com/pmqs/IO-Compress/issues',
22692             'IO::Compress::Deflate' => 'https://github.com/pmqs/IO-Compress/issues',
22693             'IO::Compress::Gzip' => 'https://github.com/pmqs/IO-Compress/issues',
22694             'IO::Compress::Gzip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
22695             'IO::Compress::RawDeflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22696             'IO::Compress::Zip' => 'https://github.com/pmqs/IO-Compress/issues',
22697             'IO::Compress::Zip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
22698             'IO::Compress::Zlib::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
22699             'IO::Compress::Zlib::Extra'=> 'https://github.com/pmqs/IO-Compress/issues',
22700             'IO::Socket::IP' => undef,
22701             'IO::Uncompress::Adapter::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
22702             'IO::Uncompress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
22703             'IO::Uncompress::Adapter::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22704             'IO::Uncompress::AnyInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22705             'IO::Uncompress::AnyUncompress'=> 'https://github.com/pmqs/IO-Compress/issues',
22706             'IO::Uncompress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
22707             'IO::Uncompress::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
22708             'IO::Uncompress::Gunzip'=> 'https://github.com/pmqs/IO-Compress/issues',
22709             'IO::Uncompress::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22710             'IO::Uncompress::RawInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
22711             'IO::Uncompress::Unzip' => 'https://github.com/pmqs/IO-Compress/issues',
22712             'IO::Zlib' => 'https://github.com/tomhughes/IO-Zlib/issues',
22713             'IPC::Cmd' => undef,
22714             'IPC::Msg' => undef,
22715             'IPC::Semaphore' => undef,
22716             'IPC::SharedMem' => undef,
22717             'IPC::SysV' => undef,
22718             'JSON::PP' => 'https://github.com/makamaka/JSON-PP/issues',
22719             'JSON::PP::Boolean' => 'https://github.com/makamaka/JSON-PP/issues',
22720             'List::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
22721             'List::Util::XS' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
22722             'Locale::Maketext::Simple'=> undef,
22723             'MIME::Base64' => 'https://github.com/Dual-Life/mime-base64/issues',
22724             'MIME::QuotedPrint' => 'https://github.com/Dual-Life/mime-base64/issues',
22725             'Math::BigFloat' => undef,
22726             'Math::BigFloat::Trace' => undef,
22727             'Math::BigInt' => undef,
22728             'Math::BigInt::Calc' => undef,
22729             'Math::BigInt::FastCalc'=> undef,
22730             'Math::BigInt::Lib' => undef,
22731             'Math::BigInt::Trace' => undef,
22732             'Math::BigRat' => undef,
22733             'Math::BigRat::Trace' => undef,
22734             'Memoize' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22735             'Memoize::AnyDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22736             'Memoize::Expire' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22737             'Memoize::NDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22738             'Memoize::SDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22739             'Memoize::Storable' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
22740             'Module::Load' => undef,
22741             'Module::Load::Conditional'=> undef,
22742             'Module::Loaded' => undef,
22743             'Module::Metadata' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
22744             'NEXT' => undef,
22745             'Net::Cmd' => undef,
22746             'Net::Config' => undef,
22747             'Net::Domain' => undef,
22748             'Net::FTP' => undef,
22749             'Net::FTP::A' => undef,
22750             'Net::FTP::E' => undef,
22751             'Net::FTP::I' => undef,
22752             'Net::FTP::L' => undef,
22753             'Net::FTP::dataconn' => undef,
22754             'Net::NNTP' => undef,
22755             'Net::Netrc' => undef,
22756             'Net::POP3' => undef,
22757             'Net::SMTP' => undef,
22758             'Net::Time' => undef,
22759             'Params::Check' => undef,
22760             'Parse::CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
22761             'Perl::OSType' => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
22762             'PerlIO::via::QuotedPrint'=> undef,
22763             'Pod::Checker' => undef,
22764             'Pod::Escapes' => undef,
22765             'Pod::Man' => 'https://github.com/rra/podlators/issues',
22766             'Pod::ParseLink' => 'https://github.com/rra/podlators/issues',
22767             'Pod::Perldoc' => undef,
22768             'Pod::Perldoc::BaseTo' => undef,
22769             'Pod::Perldoc::GetOptsOO'=> undef,
22770             'Pod::Perldoc::ToANSI' => undef,
22771             'Pod::Perldoc::ToChecker'=> undef,
22772             'Pod::Perldoc::ToMan' => undef,
22773             'Pod::Perldoc::ToNroff' => undef,
22774             'Pod::Perldoc::ToPod' => undef,
22775             'Pod::Perldoc::ToRtf' => undef,
22776             'Pod::Perldoc::ToTerm' => undef,
22777             'Pod::Perldoc::ToText' => undef,
22778             'Pod::Perldoc::ToTk' => undef,
22779             'Pod::Perldoc::ToXml' => undef,
22780             'Pod::Simple' => 'https://github.com/perl-pod/pod-simple/issues',
22781             'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
22782             'Pod::Simple::Checker' => 'https://github.com/perl-pod/pod-simple/issues',
22783             'Pod::Simple::Debug' => 'https://github.com/perl-pod/pod-simple/issues',
22784             'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
22785             'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
22786             'Pod::Simple::HTML' => 'https://github.com/perl-pod/pod-simple/issues',
22787             'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
22788             'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
22789             'Pod::Simple::JustPod' => 'https://github.com/perl-pod/pod-simple/issues',
22790             'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
22791             'Pod::Simple::Methody' => 'https://github.com/perl-pod/pod-simple/issues',
22792             'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
22793             'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
22794             'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
22795             'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
22796             'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
22797             'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
22798             'Pod::Simple::RTF' => 'https://github.com/perl-pod/pod-simple/issues',
22799             'Pod::Simple::Search' => 'https://github.com/perl-pod/pod-simple/issues',
22800             'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
22801             'Pod::Simple::Text' => 'https://github.com/perl-pod/pod-simple/issues',
22802             'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
22803             'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
22804             'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
22805             'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
22806             'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
22807             'Pod::Simple::XHTML' => 'https://github.com/perl-pod/pod-simple/issues',
22808             'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
22809             'Pod::Text' => 'https://github.com/rra/podlators/issues',
22810             'Pod::Text::Color' => 'https://github.com/rra/podlators/issues',
22811             'Pod::Text::Overstrike' => 'https://github.com/rra/podlators/issues',
22812             'Pod::Text::Termcap' => 'https://github.com/rra/podlators/issues',
22813             'Pod::Usage' => 'https://github.com/Dual-Life/Pod-Usage/issues',
22814             'Scalar::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
22815             'Socket' => undef,
22816             'Sub::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
22817             'Sys::Syslog' => undef,
22818             'Sys::Syslog::Win32' => undef,
22819             'TAP::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22820             'TAP::Formatter::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22821             'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22822             'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22823             'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22824             'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22825             'TAP::Formatter::File' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22826             'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22827             'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22828             'TAP::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22829             'TAP::Harness::Env' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22830             'TAP::Object' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22831             'TAP::Parser' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22832             'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22833             'TAP::Parser::Grammar' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22834             'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22835             'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22836             'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22837             'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22838             'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22839             'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22840             'TAP::Parser::Result' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22841             'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22842             'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22843             'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22844             'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22845             'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22846             'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22847             'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22848             'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22849             'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22850             'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22851             'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22852             'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22853             'TAP::Parser::Source' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22854             'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22855             'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22856             'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22857             'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22858             'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22859             'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22860             'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22861             'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22862             'Term::ANSIColor' => 'https://rt.cpan.org/Dist/Display.html?Name=Term-ANSIColor',
22863             'Term::Cap' => undef,
22864             'Test2' => 'http://github.com/Test-More/test-more/issues',
22865             'Test2::API' => 'http://github.com/Test-More/test-more/issues',
22866             'Test2::API::Breakage' => 'http://github.com/Test-More/test-more/issues',
22867             'Test2::API::Context' => 'http://github.com/Test-More/test-more/issues',
22868             'Test2::API::Instance' => 'http://github.com/Test-More/test-more/issues',
22869             'Test2::API::InterceptResult'=> 'http://github.com/Test-More/test-more/issues',
22870             'Test2::API::InterceptResult::Event'=> 'http://github.com/Test-More/test-more/issues',
22871             'Test2::API::InterceptResult::Facet'=> 'http://github.com/Test-More/test-more/issues',
22872             'Test2::API::InterceptResult::Hub'=> 'http://github.com/Test-More/test-more/issues',
22873             'Test2::API::InterceptResult::Squasher'=> 'http://github.com/Test-More/test-more/issues',
22874             'Test2::API::Stack' => 'http://github.com/Test-More/test-more/issues',
22875             'Test2::Event' => 'http://github.com/Test-More/test-more/issues',
22876             'Test2::Event::Bail' => 'http://github.com/Test-More/test-more/issues',
22877             'Test2::Event::Diag' => 'http://github.com/Test-More/test-more/issues',
22878             'Test2::Event::Encoding'=> 'http://github.com/Test-More/test-more/issues',
22879             'Test2::Event::Exception'=> 'http://github.com/Test-More/test-more/issues',
22880             'Test2::Event::Fail' => 'http://github.com/Test-More/test-more/issues',
22881             'Test2::Event::Generic' => 'http://github.com/Test-More/test-more/issues',
22882             'Test2::Event::Note' => 'http://github.com/Test-More/test-more/issues',
22883             'Test2::Event::Ok' => 'http://github.com/Test-More/test-more/issues',
22884             'Test2::Event::Pass' => 'http://github.com/Test-More/test-more/issues',
22885             'Test2::Event::Plan' => 'http://github.com/Test-More/test-more/issues',
22886             'Test2::Event::Skip' => 'http://github.com/Test-More/test-more/issues',
22887             'Test2::Event::Subtest' => 'http://github.com/Test-More/test-more/issues',
22888             'Test2::Event::TAP::Version'=> 'http://github.com/Test-More/test-more/issues',
22889             'Test2::Event::V2' => 'http://github.com/Test-More/test-more/issues',
22890             'Test2::Event::Waiting' => 'http://github.com/Test-More/test-more/issues',
22891             'Test2::EventFacet' => 'http://github.com/Test-More/test-more/issues',
22892             'Test2::EventFacet::About'=> 'http://github.com/Test-More/test-more/issues',
22893             'Test2::EventFacet::Amnesty'=> 'http://github.com/Test-More/test-more/issues',
22894             'Test2::EventFacet::Assert'=> 'http://github.com/Test-More/test-more/issues',
22895             'Test2::EventFacet::Control'=> 'http://github.com/Test-More/test-more/issues',
22896             'Test2::EventFacet::Error'=> 'http://github.com/Test-More/test-more/issues',
22897             'Test2::EventFacet::Hub'=> 'http://github.com/Test-More/test-more/issues',
22898             'Test2::EventFacet::Info'=> 'http://github.com/Test-More/test-more/issues',
22899             'Test2::EventFacet::Info::Table'=> 'http://github.com/Test-More/test-more/issues',
22900             'Test2::EventFacet::Meta'=> 'http://github.com/Test-More/test-more/issues',
22901             'Test2::EventFacet::Parent'=> 'http://github.com/Test-More/test-more/issues',
22902             'Test2::EventFacet::Plan'=> 'http://github.com/Test-More/test-more/issues',
22903             'Test2::EventFacet::Render'=> 'http://github.com/Test-More/test-more/issues',
22904             'Test2::EventFacet::Trace'=> 'http://github.com/Test-More/test-more/issues',
22905             'Test2::Formatter' => 'http://github.com/Test-More/test-more/issues',
22906             'Test2::Formatter::TAP' => 'http://github.com/Test-More/test-more/issues',
22907             'Test2::Hub' => 'http://github.com/Test-More/test-more/issues',
22908             'Test2::Hub::Interceptor'=> 'http://github.com/Test-More/test-more/issues',
22909             'Test2::Hub::Interceptor::Terminator'=> 'http://github.com/Test-More/test-more/issues',
22910             'Test2::Hub::Subtest' => 'http://github.com/Test-More/test-more/issues',
22911             'Test2::IPC' => 'http://github.com/Test-More/test-more/issues',
22912             'Test2::IPC::Driver' => 'http://github.com/Test-More/test-more/issues',
22913             'Test2::IPC::Driver::Files'=> 'http://github.com/Test-More/test-more/issues',
22914             'Test2::Tools::Tiny' => 'http://github.com/Test-More/test-more/issues',
22915             'Test2::Util' => 'http://github.com/Test-More/test-more/issues',
22916             'Test2::Util::ExternalMeta'=> 'http://github.com/Test-More/test-more/issues',
22917             'Test2::Util::Facets2Legacy'=> 'http://github.com/Test-More/test-more/issues',
22918             'Test2::Util::HashBase' => 'http://github.com/Test-More/test-more/issues',
22919             'Test2::Util::Trace' => 'http://github.com/Test-More/test-more/issues',
22920             'Test::Builder' => 'http://github.com/Test-More/test-more/issues',
22921             'Test::Builder::Formatter'=> 'http://github.com/Test-More/test-more/issues',
22922             'Test::Builder::IO::Scalar'=> 'http://github.com/Test-More/test-more/issues',
22923             'Test::Builder::Module' => 'http://github.com/Test-More/test-more/issues',
22924             'Test::Builder::Tester' => 'http://github.com/Test-More/test-more/issues',
22925             'Test::Builder::Tester::Color'=> 'http://github.com/Test-More/test-more/issues',
22926             'Test::Builder::TodoDiag'=> 'http://github.com/Test-More/test-more/issues',
22927             'Test::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
22928             'Test::More' => 'http://github.com/Test-More/test-more/issues',
22929             'Test::Simple' => 'http://github.com/Test-More/test-more/issues',
22930             'Test::Tester' => 'http://github.com/Test-More/test-more/issues',
22931             'Test::Tester::Capture' => 'http://github.com/Test-More/test-more/issues',
22932             'Test::Tester::CaptureRunner'=> 'http://github.com/Test-More/test-more/issues',
22933             'Test::Tester::Delegate'=> 'http://github.com/Test-More/test-more/issues',
22934             'Test::use::ok' => 'http://github.com/Test-More/test-more/issues',
22935             'Text::Balanced' => undef,
22936             'Text::ParseWords' => undef,
22937             'Text::Tabs' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
22938             'Text::Wrap' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
22939             'Tie::RefHash' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Tie-RefHash',
22940             'Time::Local' => 'https://github.com/houseabsolute/Time-Local/issues',
22941             'Time::Piece' => undef,
22942             'Time::Seconds' => undef,
22943             'Unicode::Collate' => undef,
22944             'Unicode::Collate::CJK::Big5'=> undef,
22945             'Unicode::Collate::CJK::GB2312'=> undef,
22946             'Unicode::Collate::CJK::JISX0208'=> undef,
22947             'Unicode::Collate::CJK::Korean'=> undef,
22948             'Unicode::Collate::CJK::Pinyin'=> undef,
22949             'Unicode::Collate::CJK::Stroke'=> undef,
22950             'Unicode::Collate::CJK::Zhuyin'=> undef,
22951             'Unicode::Collate::Locale'=> undef,
22952             'Win32' => 'https://github.com/perl-libwin32/win32/issues',
22953             'Win32API::File' => undef,
22954             'autodie' => 'https://github.com/pjf/autodie/issues',
22955             'autodie::Scope::Guard' => 'https://github.com/pjf/autodie/issues',
22956             'autodie::Scope::GuardStack'=> 'https://github.com/pjf/autodie/issues',
22957             'autodie::Util' => 'https://github.com/pjf/autodie/issues',
22958             'autodie::exception' => 'https://github.com/pjf/autodie/issues',
22959             'autodie::exception::system'=> 'https://github.com/pjf/autodie/issues',
22960             'autodie::hints' => 'https://github.com/pjf/autodie/issues',
22961             'autodie::skip' => 'https://github.com/pjf/autodie/issues',
22962             'bigfloat' => undef,
22963             'bigint' => undef,
22964             'bignum' => undef,
22965             'bigrat' => undef,
22966             'encoding' => undef,
22967             'experimental' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
22968             'ok' => 'http://github.com/Test-More/test-more/issues',
22969             'parent' => undef,
22970             'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues',
22971             'stable' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
22972             'version' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
22973             'version::regex' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
22974             );
22975              
22976             # Create aliases with trailing zeros for $] use
22977              
22978             $released{'5.000'} = $released{5};
22979             $version{'5.000'} = $version{5};
22980              
22981             _create_aliases(\%delta);
22982             _create_aliases(\%released);
22983             _create_aliases(\%version);
22984             _create_aliases(\%deprecated);
22985              
22986             sub _create_aliases {
22987 20     20   49 my ($hash) = @_;
22988              
22989 20         623 for my $version (keys %$hash) {
22990 4715 100       10148 next unless $version >= 5.006;
22991              
22992 4570         11412 my $padded = sprintf "%0.6f", $version;
22993              
22994             # If the version in string form isn't the same as the numeric version,
22995             # alias it.
22996 4570 100 66     11087 if ($padded ne $version && $version == $padded) {
22997 820         2397 $hash->{$padded} = $hash->{$version};
22998             }
22999             }
23000             }
23001              
23002             1;
23003             __END__