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   359758 use strict;
  5         12  
  5         527  
3              
4             our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
5              
6 5     5   2240 use version;
  5         9762  
  5         45  
7             our $VERSION = '5.20260420';
8              
9             sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
10 42     42   92 sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
  42         88  
  42         461  
11              
12             sub _undelta {
13 11     11   39 my ($delta) = @_;
14 11         25 my (%expanded, $delta_from, $base, $changed, $removed);
15 11         1449 for my $v (sort keys %$delta) {
16 3052         3992 ($delta_from, $changed, $removed) = @{$delta->{$v}}{qw( delta_from changed removed )};
  3052         8143  
17 3052 100       10039 $base = $delta_from ? $expanded{$delta_from} : {};
18 3052 100       97619 my %full = ( %$base, %{$changed || {}} );
  3052         475982  
19 3052         63128 delete @full{ keys %$removed };
20 3052         9548 $expanded{$v} = \%full;
21             }
22 11         3365 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 9320 0   9320   16279 : $released{$a} cmp $released{$b} )
    50          
    50          
33             }
34              
35             my $dumpinc = 0;
36             sub import {
37 4     4   62 my $self = shift;
38 4   50     30 my $what = shift || '';
39 4 50       9718 if ($what eq 'dumpinc') {
40 0         0 $dumpinc = 1;
41             }
42             }
43              
44             END {
45 5 50   5   1261 print "---INC---\n", join "\n" => keys %INC
46             if $dumpinc;
47             }
48              
49              
50             sub first_release_raw {
51 91 100 100 91 0 400 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
52 91         149 my $module = shift;
53 91         168 my $version = shift;
54              
55             my @perls = $version
56             ? grep { defined $version{$_}{ $module } &&
57 1710 100       6679 $version{$_}{ $module } ge $version } keys %version
58 91 100       13190 : grep { exists $version{$_}{ $module } } keys %version;
  29412         62959  
59              
60 91         4237 return @perls;
61             }
62              
63             sub first_release_by_date {
64 4     4 1 340560 my @perls = &first_release_raw;
65 4 50       20 return unless @perls;
66 4         78 return (sort _released_order @perls)[0];
67             }
68              
69             sub first_release {
70 53     53 1 148 my @perls = &first_release_raw;
71 53 100       267 return unless @perls;
72 49         552 return (sort { $a cmp $b } @perls)[0];
  89011         110425  
73             }
74              
75             sub find_modules {
76 5 100   5 1 236749 shift if _looks_like_invocant $_[0];
77 5         6 my $regex = shift;
78 5 100       478 my @perls = @_ ? @_ : keys %version;
79              
80 5         9 my %mods;
81 5         11 foreach (@perls) {
82 1029         1593 while (my ($k, $v) = each %{$version{$_}}) {
  645976         1659710  
83 644947 100       1941432 $mods{$k}++ if $k =~ $regex;
84             }
85             }
86 5         353 return sort keys %mods
87             }
88              
89             sub find_version {
90 3 50   3 1 499 shift if _looks_like_invocant $_[0];
91 3         5 my $v = shift;
92 3 100 66     33 return $version{$v} if defined $v and defined $version{$v};
93 1         4 return;
94             }
95              
96             sub is_deprecated {
97 3 50 66 3 1 3119 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      33        
98 3         6 my $module = shift;
99 3   66     2573 my $perl_version = shift || $];
100 3 50 33     32 return unless $module && exists $deprecated{$perl_version}{$module};
101 0         0 return $deprecated{$perl_version}{$module};
102             }
103              
104             sub deprecated_in {
105 2 0 33 2 1 9 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      33        
106 2 50       8 my $module = shift or return;
107 2         121 my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
  610         1026  
108 2 100       38 return unless @perls;
109 1         16 require List::Util;
110 1         18 return List::Util::minstr(@perls);
111             }
112              
113             sub removed_from {
114 34     34 1 99 my @perls = &removed_raw;
115 34         320 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 173 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
125 34         93 my $mod = shift;
126 34 50       119 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
  51791         67874  
127 34         446 my $last = pop @perls;
128 34         2595 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
  11628         27327  
  83386         109004  
129 34         1638 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             5.039004 => '2023-10-25',
413             5.039005 => '2023-11-20',
414             5.034002 => '2023-11-25',
415             5.036002 => '2023-11-25',
416             5.038001 => '2023-11-25',
417             5.034003 => '2023-11-29',
418             5.036003 => '2023-11-29',
419             5.038002 => '2023-11-29',
420             5.039006 => '2023-12-30',
421             5.039007 => '2024-01-20',
422             5.039008 => '2024-02-23',
423             5.039009 => '2024-03-20',
424             5.039010 => '2024-04-27',
425             5.040000 => '2024-06-09',
426             5.041000 => '2024-06-10',
427             5.041001 => '2024-07-02',
428             5.041002 => '2024-07-20',
429             5.041003 => '2024-08-29',
430             5.041004 => '2024-09-20',
431             5.041005 => '2024-10-20',
432             5.041006 => '2024-11-20',
433             5.041007 => '2024-12-20',
434             5.038003 => '2025-01-18',
435             5.040001 => '2025-01-18',
436             5.041008 => '2025-01-20',
437             5.041009 => '2025-02-24',
438             5.041010 => '2025-03-21',
439             5.038004 => '2025-04-13',
440             5.040002 => '2025-04-13',
441             5.041011 => '2025-04-20',
442             5.041012 => '2025-04-21',
443             5.041013 => '2025-05-28',
444             5.042000 => '2025-07-02',
445             5.043000 => '2025-07-03',
446             5.043001 => '2025-07-20',
447             5.038005 => '2025-08-03',
448             5.040003 => '2025-08-03',
449             5.043002 => '2025-08-20',
450             5.043003 => '2025-09-23',
451             5.043004 => '2025-10-22',
452             5.043005 => '2025-11-20',
453             5.043006 => '2025-12-20',
454             5.043007 => '2026-01-19',
455             5.043008 => '2026-02-20',
456             5.042001 => '2026-03-08',
457             5.043009 => '2026-03-20',
458             5.040004 => '2026-03-29',
459             5.042002 => '2026-03-29',
460             5.043010 => '2026-04-20',
461             );
462              
463             for my $version ( sort { $a <=> $b } keys %released ) {
464             my $family = int ($version * 1000) / 1000;
465             push @{ $families{ $family }} , $version;
466             }
467              
468             %delta = (
469             5 => {
470             changed => {
471             'AnyDBM_File' => undef,
472             'AutoLoader' => undef,
473             'AutoSplit' => undef,
474             'Benchmark' => undef,
475             'Carp' => undef,
476             'Cwd' => undef,
477             'DB_File' => undef,
478             'DynaLoader' => undef,
479             'English' => undef,
480             'Env' => undef,
481             'Exporter' => undef,
482             'ExtUtils::MakeMaker' => undef,
483             'Fcntl' => undef,
484             'File::Basename' => undef,
485             'File::CheckTree' => undef,
486             'File::Find' => undef,
487             'FileHandle' => undef,
488             'GDBM_File' => undef,
489             'Getopt::Long' => undef,
490             'Getopt::Std' => undef,
491             'I18N::Collate' => undef,
492             'IPC::Open2' => undef,
493             'IPC::Open3' => undef,
494             'Math::BigFloat' => undef,
495             'Math::BigInt' => undef,
496             'Math::Complex' => undef,
497             'NDBM_File' => undef,
498             'Net::Ping' => undef,
499             'ODBM_File' => undef,
500             'POSIX' => undef,
501             'SDBM_File' => undef,
502             'Search::Dict' => undef,
503             'Shell' => undef,
504             'Socket' => undef,
505             'Sys::Hostname' => undef,
506             'Sys::Syslog' => undef,
507             'Term::Cap' => undef,
508             'Term::Complete' => undef,
509             'Test::Harness' => undef,
510             'Text::Abbrev' => undef,
511             'Text::ParseWords' => undef,
512             'Text::Soundex' => undef,
513             'Text::Tabs' => undef,
514             'TieHash' => undef,
515             'Time::Local' => undef,
516             'integer' => undef,
517             'less' => undef,
518             'sigtrap' => undef,
519             'strict' => undef,
520             'subs' => undef,
521             },
522             removed => {
523             }
524             },
525             5.001 => {
526             delta_from => 5,
527             changed => {
528             'ExtUtils::Liblist' => undef,
529             'ExtUtils::Manifest' => undef,
530             'ExtUtils::Mkbootstrap' => undef,
531             'File::Path' => undef,
532             'SubstrHash' => undef,
533             'lib' => undef,
534             },
535             removed => {
536             }
537             },
538             5.002 => {
539             delta_from => 5.001,
540             changed => {
541             'DB_File' => '1.01',
542             'Devel::SelfStubber' => '1.01',
543             'DirHandle' => undef,
544             'DynaLoader' => '1.00',
545             'ExtUtils::Install' => undef,
546             'ExtUtils::MM_OS2' => undef,
547             'ExtUtils::MM_Unix' => undef,
548             'ExtUtils::MM_VMS' => undef,
549             'ExtUtils::MakeMaker' => '5.21',
550             'ExtUtils::Manifest' => '1.22',
551             'ExtUtils::Mksymlists' => '1.00',
552             'Fcntl' => '1.00',
553             'File::Copy' => '1.5',
554             'File::Path' => '1.01',
555             'FileCache' => undef,
556             'FileHandle' => '1.00',
557             'GDBM_File' => '1.00',
558             'Getopt::Long' => '2.01',
559             'NDBM_File' => '1.00',
560             'Net::Ping' => '1',
561             'ODBM_File' => '1.00',
562             'POSIX' => '1.00',
563             'Pod::Functions' => undef,
564             'Pod::Text' => undef,
565             'SDBM_File' => '1.00',
566             'Safe' => '1.00',
567             'SelectSaver' => undef,
568             'SelfLoader' => '1.06',
569             'Socket' => '1.5',
570             'Symbol' => undef,
571             'Term::ReadLine' => undef,
572             'Test::Harness' => '1.07',
573             'Text::Wrap' => undef,
574             'Tie::Hash' => undef,
575             'Tie::Scalar' => undef,
576             'Tie::SubstrHash' => undef,
577             'diagnostics' => undef,
578             'overload' => undef,
579             'vars' => undef,
580             },
581             removed => {
582             'SubstrHash' => 1,
583             'TieHash' => 1,
584             }
585             },
586             5.00307 => {
587             delta_from => 5.002,
588             changed => {
589             'Config' => undef,
590             'DB_File' => '1.03',
591             'ExtUtils::Embed' => '1.18',
592             'ExtUtils::Install' => '1.15',
593             'ExtUtils::Liblist' => '1.20',
594             'ExtUtils::MM_Unix' => '1.107',
595             'ExtUtils::MakeMaker' => '5.38',
596             'ExtUtils::Manifest' => '1.27',
597             'ExtUtils::Mkbootstrap' => '1.13',
598             'ExtUtils::Mksymlists' => '1.12',
599             'ExtUtils::testlib' => '1.11',
600             'Fatal' => undef,
601             'File::Basename' => '2.4',
602             'FindBin' => '1.04',
603             'Getopt::Long' => '2.04',
604             'IO' => undef,
605             'IO::File' => '1.05',
606             'IO::Handle' => '1.12',
607             'IO::Pipe' => '1.07',
608             'IO::Seekable' => '1.05',
609             'IO::Select' => '1.09',
610             'IO::Socket' => '1.13',
611             'Net::Ping' => '1.01',
612             'OS2::ExtAttr' => '0.01',
613             'OS2::PrfDB' => '0.02',
614             'OS2::Process' => undef,
615             'OS2::REXX' => undef,
616             'Opcode' => '1.01',
617             'Safe' => '2.06',
618             'Test::Harness' => '1.13',
619             'Text::Tabs' => '96.051501',
620             'Text::Wrap' => '96.041801',
621             'UNIVERSAL' => undef,
622             'VMS::Filespec' => undef,
623             'VMS::Stdio' => '2.0',
624             'ops' => undef,
625             'sigtrap' => '1.01',
626             },
627             removed => {
628             }
629             },
630             5.004 => {
631             delta_from => 5.00307,
632             changed => {
633             'Bundle::CPAN' => '0.02',
634             'CGI' => '2.36',
635             'CGI::Apache' => '1.01',
636             'CGI::Carp' => '1.06',
637             'CGI::Fast' => '1.00a',
638             'CGI::Push' => '1.00',
639             'CGI::Switch' => '0.05',
640             'CPAN' => '1.2401',
641             'CPAN::FirstTime' => '1.18',
642             'CPAN::Nox' => undef,
643             'Class::Struct' => undef,
644             'Cwd' => '2.00',
645             'DB_File' => '1.14',
646             'DynaLoader' => '1.02',
647             'ExtUtils::Command' => '1.00',
648             'ExtUtils::Embed' => '1.2501',
649             'ExtUtils::Install' => '1.16',
650             'ExtUtils::Liblist' => '1.2201',
651             'ExtUtils::MM_Unix' => '1.114',
652             'ExtUtils::MM_Win32' => undef,
653             'ExtUtils::MakeMaker' => '5.4002',
654             'ExtUtils::Manifest' => '1.33',
655             'ExtUtils::Mksymlists' => '1.13',
656             'ExtUtils::XSSymSet' => '1.0',
657             'Fcntl' => '1.03',
658             'File::Basename' => '2.5',
659             'File::Compare' => '1.1001',
660             'File::Copy' => '2.02',
661             'File::Path' => '1.04',
662             'File::stat' => undef,
663             'FileHandle' => '2.00',
664             'Getopt::Long' => '2.10',
665             'IO::File' => '1.0602',
666             'IO::Handle' => '1.1504',
667             'IO::Pipe' => '1.0901',
668             'IO::Seekable' => '1.06',
669             'IO::Select' => '1.10',
670             'IO::Socket' => '1.1602',
671             'IPC::Open2' => '1.01',
672             'IPC::Open3' => '1.0101',
673             'Math::Complex' => '1.01',
674             'Math::Trig' => '1',
675             'Net::Ping' => '2.02',
676             'Net::hostent' => undef,
677             'Net::netent' => undef,
678             'Net::protoent' => undef,
679             'Net::servent' => undef,
680             'Opcode' => '1.04',
681             'POSIX' => '1.02',
682             'Pod::Html' => undef,
683             'Pod::Text' => '1.0203',
684             'SelfLoader' => '1.07',
685             'Socket' => '1.6',
686             'Symbol' => '1.02',
687             'Test::Harness' => '1.1502',
688             'Text::Tabs' => '96.121201',
689             'Text::Wrap' => '97.011701',
690             'Tie::RefHash' => undef,
691             'Time::gmtime' => '1.01',
692             'Time::localtime' => '1.01',
693             'Time::tm' => undef,
694             'User::grent' => undef,
695             'User::pwent' => undef,
696             'VMS::DCLsym' => '1.01',
697             'VMS::Stdio' => '2.02',
698             'autouse' => '1.01',
699             'blib' => undef,
700             'constant' => '1.00',
701             'locale' => undef,
702             'sigtrap' => '1.02',
703             'vmsish' => undef,
704             },
705             removed => {
706             'Fatal' => 1,
707             }
708             },
709             5.00405 => {
710             delta_from => 5.004,
711             changed => {
712             'AutoLoader' => '5.56',
713             'AutoSplit' => '1.0303',
714             'Bundle::CPAN' => '0.03',
715             'CGI' => '2.42',
716             'CGI::Apache' => '1.1',
717             'CGI::Carp' => '1.10',
718             'CGI::Cookie' => '1.06',
719             'CGI::Push' => '1.01',
720             'CGI::Switch' => '0.06',
721             'CPAN' => '1.40',
722             'CPAN::FirstTime' => '1.30',
723             'Cwd' => '2.01',
724             'DB_File' => '1.15',
725             'DynaLoader' => '1.03',
726             'ExtUtils::Command' => '1.01',
727             'ExtUtils::Embed' => '1.2505',
728             'ExtUtils::Install' => '1.28',
729             'ExtUtils::Liblist' => '1.25',
730             'ExtUtils::MM_Unix' => '1.118',
731             'ExtUtils::MakeMaker' => '5.42',
732             'ExtUtils::Mkbootstrap' => '1.14',
733             'ExtUtils::Mksymlists' => '1.16',
734             'File::Basename' => '2.6',
735             'File::DosGlob' => undef,
736             'File::Path' => '1.0402',
737             'File::Spec' => '0.6',
738             'File::Spec::Mac' => '1.0',
739             'File::Spec::OS2' => undef,
740             'File::Spec::Unix' => undef,
741             'File::Spec::VMS' => undef,
742             'File::Spec::Win32' => undef,
743             'FindBin' => '1.41',
744             'Getopt::Long' => '2.19',
745             'IO::File' => '1.06021',
746             'IO::Socket' => '1.1603',
747             'IPC::Open3' => '1.0103',
748             'Math::Complex' => '1.25',
749             'NDBM_File' => '1.01',
750             'Pod::Html' => '1.0101',
751             'Pod::Text' => '1.0204',
752             'SelfLoader' => '1.08',
753             'Socket' => '1.7',
754             'Test' => '1.04',
755             'Test::Harness' => '1.1602',
756             'Text::ParseWords' => '3.1001',
757             'Text::Wrap' => '98.112902',
758             'Tie::Handle' => undef,
759             'attrs' => '0.1',
760             'base' => undef,
761             'blib' => '1.00',
762             're' => undef,
763             'strict' => '1.01',
764             },
765             removed => {
766             }
767             },
768             5.005 => {
769             delta_from => 5.00405,
770             changed => {
771             'AutoLoader' => undef,
772             'AutoSplit' => '1.0302',
773             'B' => undef,
774             'B::Asmdata' => undef,
775             'B::Assembler' => undef,
776             'B::Bblock' => undef,
777             'B::Bytecode' => undef,
778             'B::C' => undef,
779             'B::CC' => undef,
780             'B::Debug' => undef,
781             'B::Deparse' => '0.56',
782             'B::Disassembler' => undef,
783             'B::Lint' => undef,
784             'B::Showlex' => undef,
785             'B::Stackobj' => undef,
786             'B::Terse' => undef,
787             'B::Xref' => undef,
788             'CGI::Carp' => '1.101',
789             'CPAN' => '1.3901',
790             'CPAN::FirstTime' => '1.29',
791             'DB_File' => '1.60',
792             'Data::Dumper' => '2.09',
793             'Errno' => '1.09',
794             'ExtUtils::Installed' => '0.02',
795             'ExtUtils::MM_Unix' => '1.12601',
796             'ExtUtils::MakeMaker' => '5.4301',
797             'ExtUtils::Mkbootstrap' => '1.13',
798             'ExtUtils::Mksymlists' => '1.17',
799             'ExtUtils::Packlist' => '0.03',
800             'Fatal' => '1.02',
801             'File::Path' => '1.0401',
802             'Getopt::Long' => '2.17',
803             'IO::Handle' => '1.1505',
804             'IPC::Msg' => '1.00',
805             'IPC::Open3' => '1.0102',
806             'IPC::Semaphore' => '1.00',
807             'IPC::SysV' => '1.03',
808             'O' => undef,
809             'OS2::Process' => '0.2',
810             'Pod::Html' => '1.01',
811             'Pod::Text' => '1.0203',
812             'Text::ParseWords' => '3.1',
813             'Text::Wrap' => '97.02',
814             'Thread' => '1.0',
815             'Thread::Queue' => undef,
816             'Thread::Semaphore' => undef,
817             'Thread::Signal' => undef,
818             'Thread::Specific' => undef,
819             'Tie::Array' => '1.00',
820             'VMS::Stdio' => '2.1',
821             'attrs' => '1.0',
822             'fields' => '0.02',
823             're' => '0.02',
824             },
825             removed => {
826             'Bundle::CPAN' => 1,
827             }
828             },
829             5.00503 => {
830             delta_from => 5.005,
831             changed => {
832             'AutoSplit' => '1.0303',
833             'CGI' => '2.46',
834             'CGI::Carp' => '1.13',
835             'CGI::Fast' => '1.01',
836             'CPAN' => '1.48',
837             'CPAN::FirstTime' => '1.36',
838             'CPAN::Nox' => '1.00',
839             'DB_File' => '1.65',
840             'Data::Dumper' => '2.101',
841             'Dumpvalue' => undef,
842             'Errno' => '1.111',
843             'ExtUtils::Install' => '1.28',
844             'ExtUtils::Liblist' => '1.25',
845             'ExtUtils::MM_Unix' => '1.12602',
846             'ExtUtils::MakeMaker' => '5.4302',
847             'ExtUtils::Manifest' => '1.33',
848             'ExtUtils::Mkbootstrap' => '1.14',
849             'ExtUtils::Mksymlists' => '1.17',
850             'ExtUtils::testlib' => '1.11',
851             'FindBin' => '1.42',
852             'Getopt::Long' => '2.19',
853             'Getopt::Std' => '1.01',
854             'IO::Pipe' => '1.0902',
855             'IPC::Open3' => '1.0103',
856             'Math::Complex' => '1.26',
857             'Test' => '1.122',
858             'Text::Wrap' => '98.112902',
859             },
860             removed => {
861             }
862             },
863             5.00504 => {
864             delta_from => 5.00503,
865             changed => {
866             'CPAN::FirstTime' => '1.36',
867             'DB_File' => '1.807',
868             'ExtUtils::Install' => '1.28',
869             'ExtUtils::Liblist' => '1.25',
870             'ExtUtils::MM_Unix' => '1.12602',
871             'ExtUtils::Manifest' => '1.33',
872             'ExtUtils::Miniperl' => undef,
873             'ExtUtils::Mkbootstrap' => '1.14',
874             'ExtUtils::Mksymlists' => '1.17',
875             'ExtUtils::testlib' => '1.11',
876             'File::Compare' => '1.1002',
877             'File::Spec' => '0.8',
878             'File::Spec::Functions' => undef,
879             'File::Spec::Mac' => undef,
880             'Getopt::Long' => '2.20',
881             'Pod::Html' => '1.02',
882             },
883             removed => {
884             }
885             },
886             5.006 => {
887             delta_from => 5.00504,
888             changed => {
889             'AutoLoader' => '5.57',
890             'AutoSplit' => '1.0305',
891             'B::Deparse' => '0.59',
892             'B::Stash' => undef,
893             'Benchmark' => '1',
894             'ByteLoader' => '0.03',
895             'CGI' => '2.56',
896             'CGI::Apache' => undef,
897             'CGI::Carp' => '1.14',
898             'CGI::Cookie' => '1.12',
899             'CGI::Fast' => '1.02',
900             'CGI::Pretty' => '1.03',
901             'CGI::Switch' => undef,
902             'CPAN' => '1.52',
903             'CPAN::FirstTime' => '1.38',
904             'Carp::Heavy' => undef,
905             'Class::Struct' => '0.58',
906             'Cwd' => '2.02',
907             'DB' => '1.0',
908             'DB_File' => '1.72',
909             'Devel::DProf' => '20000000.00_00',
910             'Devel::Peek' => '1.00_01',
911             'DynaLoader' => '1.04',
912             'Exporter' => '5.562',
913             'Exporter::Heavy' => undef,
914             'ExtUtils::MM_Cygwin' => undef,
915             'ExtUtils::MM_Unix' => '1.12603',
916             'ExtUtils::MakeMaker' => '5.45',
917             'File::Copy' => '2.03',
918             'File::Glob' => '0.991',
919             'File::Path' => '1.0403',
920             'GDBM_File' => '1.03',
921             'Getopt::Long' => '2.23',
922             'Getopt::Std' => '1.02',
923             'IO' => '1.20',
924             'IO::Dir' => '1.03',
925             'IO::File' => '1.08',
926             'IO::Handle' => '1.21',
927             'IO::Pipe' => '1.121',
928             'IO::Poll' => '0.01',
929             'IO::Seekable' => '1.08',
930             'IO::Select' => '1.14',
931             'IO::Socket' => '1.26',
932             'IO::Socket::INET' => '1.25',
933             'IO::Socket::UNIX' => '1.20',
934             'JNI' => '0.01',
935             'JPL::AutoLoader' => undef,
936             'JPL::Class' => undef,
937             'JPL::Compile' => undef,
938             'NDBM_File' => '1.03',
939             'ODBM_File' => '1.02',
940             'OS2::DLL' => undef,
941             'POSIX' => '1.03',
942             'Pod::Checker' => '1.098',
943             'Pod::Find' => '0.12',
944             'Pod::Html' => '1.03',
945             'Pod::InputObjects' => '1.12',
946             'Pod::Man' => '1.02',
947             'Pod::ParseUtils' => '0.2',
948             'Pod::Parser' => '1.12',
949             'Pod::Plainer' => '0.01',
950             'Pod::Select' => '1.12',
951             'Pod::Text' => '2.03',
952             'Pod::Text::Color' => '0.05',
953             'Pod::Text::Termcap' => '0.04',
954             'Pod::Usage' => '1.12',
955             'SDBM_File' => '1.02',
956             'SelfLoader' => '1.0901',
957             'Shell' => '0.2',
958             'Socket' => '1.72',
959             'Sys::Hostname' => '1.1',
960             'Sys::Syslog' => '0.01',
961             'Term::ANSIColor' => '1.01',
962             'Test' => '1.13',
963             'Test::Harness' => '1.1604',
964             'Text::ParseWords' => '3.2',
965             'Text::Soundex' => '1.0',
966             'Text::Tabs' => '98.112801',
967             'Tie::Array' => '1.01',
968             'Tie::Handle' => '1.0',
969             'VMS::Stdio' => '2.2',
970             'XSLoader' => '0.01',
971             'attributes' => '0.03',
972             'autouse' => '1.02',
973             'base' => '1.01',
974             'bytes' => undef,
975             'charnames' => undef,
976             'constant' => '1.02',
977             'diagnostics' => '1.0',
978             'fields' => '1.01',
979             'filetest' => undef,
980             'lib' => '0.5564',
981             'open' => undef,
982             'utf8' => undef,
983             'warnings' => undef,
984             'warnings::register' => undef,
985             },
986             removed => {
987             }
988             },
989             5.006001 => {
990             delta_from => 5.006,
991             changed => {
992             'AutoLoader' => '5.58',
993             'B::Assembler' => '0.02',
994             'B::Concise' => '0.51',
995             'B::Deparse' => '0.6',
996             'ByteLoader' => '0.04',
997             'CGI' => '2.752',
998             'CGI::Carp' => '1.20',
999             'CGI::Cookie' => '1.18',
1000             'CGI::Pretty' => '1.05',
1001             'CGI::Push' => '1.04',
1002             'CGI::Util' => '1.1',
1003             'CPAN' => '1.59_54',
1004             'CPAN::FirstTime' => '1.53',
1005             'Class::Struct' => '0.59',
1006             'Cwd' => '2.04',
1007             'DB_File' => '1.75',
1008             'Data::Dumper' => '2.102',
1009             'ExtUtils::Install' => '1.28',
1010             'ExtUtils::Liblist' => '1.26',
1011             'ExtUtils::MM_Unix' => '1.12603',
1012             'ExtUtils::Manifest' => '1.33',
1013             'ExtUtils::Mkbootstrap' => '1.14',
1014             'ExtUtils::Mksymlists' => '1.17',
1015             'ExtUtils::testlib' => '1.11',
1016             'File::Path' => '1.0404',
1017             'File::Spec' => '0.82',
1018             'File::Spec::Epoc' => undef,
1019             'File::Spec::Functions' => '1.1',
1020             'File::Spec::Mac' => '1.2',
1021             'File::Spec::OS2' => '1.1',
1022             'File::Spec::Unix' => '1.2',
1023             'File::Spec::VMS' => '1.1',
1024             'File::Spec::Win32' => '1.2',
1025             'File::Temp' => '0.12',
1026             'GDBM_File' => '1.05',
1027             'Getopt::Long' => '2.25',
1028             'IO::Poll' => '0.05',
1029             'JNI' => '0.1',
1030             'Math::BigFloat' => '0.02',
1031             'Math::BigInt' => '0.01',
1032             'Math::Complex' => '1.31',
1033             'NDBM_File' => '1.04',
1034             'ODBM_File' => '1.03',
1035             'OS2::REXX' => '1.00',
1036             'Pod::Checker' => '1.2',
1037             'Pod::Find' => '0.21',
1038             'Pod::InputObjects' => '1.13',
1039             'Pod::LaTeX' => '0.53',
1040             'Pod::Man' => '1.15',
1041             'Pod::ParseUtils' => '0.22',
1042             'Pod::Parser' => '1.13',
1043             'Pod::Select' => '1.13',
1044             'Pod::Text' => '2.08',
1045             'Pod::Text::Color' => '0.06',
1046             'Pod::Text::Overstrike' => '1.01',
1047             'Pod::Text::Termcap' => '1',
1048             'Pod::Usage' => '1.14',
1049             'SDBM_File' => '1.03',
1050             'SelfLoader' => '1.0902',
1051             'Shell' => '0.3',
1052             'Term::ANSIColor' => '1.03',
1053             'Test' => '1.15',
1054             'Text::Wrap' => '2001.0131',
1055             'Tie::Handle' => '4.0',
1056             'Tie::RefHash' => '1.3',
1057             },
1058             removed => {
1059             }
1060             },
1061             5.006002 => {
1062             delta_from => 5.006001,
1063             changed => {
1064             'CPAN::FirstTime' => '1.53',
1065             'DB_File' => '1.806',
1066             'Data::Dumper' => '2.121',
1067             'ExtUtils::Command' => '1.05',
1068             'ExtUtils::Command::MM' => '0.03',
1069             'ExtUtils::Install' => '1.32',
1070             'ExtUtils::Installed' => '0.08',
1071             'ExtUtils::Liblist' => '1.01',
1072             'ExtUtils::Liblist::Kid'=> '1.3',
1073             'ExtUtils::MM' => '0.04',
1074             'ExtUtils::MM_Any' => '0.07',
1075             'ExtUtils::MM_BeOS' => '1.04',
1076             'ExtUtils::MM_Cygwin' => '1.06',
1077             'ExtUtils::MM_DOS' => '0.02',
1078             'ExtUtils::MM_MacOS' => '1.07',
1079             'ExtUtils::MM_NW5' => '2.06',
1080             'ExtUtils::MM_OS2' => '1.04',
1081             'ExtUtils::MM_UWIN' => '0.02',
1082             'ExtUtils::MM_Unix' => '1.42',
1083             'ExtUtils::MM_VMS' => '5.70',
1084             'ExtUtils::MM_Win32' => '1.09',
1085             'ExtUtils::MM_Win95' => '0.03',
1086             'ExtUtils::MY' => '0.01',
1087             'ExtUtils::MakeMaker' => '6.17',
1088             'ExtUtils::MakeMaker::bytes'=> '0.01',
1089             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1090             'ExtUtils::Manifest' => '1.42',
1091             'ExtUtils::Mkbootstrap' => '1.15',
1092             'ExtUtils::Mksymlists' => '1.19',
1093             'ExtUtils::Packlist' => '0.04',
1094             'ExtUtils::testlib' => '1.15',
1095             'File::Spec' => '0.86',
1096             'File::Spec::Cygwin' => '1.1',
1097             'File::Spec::Epoc' => '1.1',
1098             'File::Spec::Functions' => '1.3',
1099             'File::Spec::Mac' => '1.4',
1100             'File::Spec::OS2' => '1.2',
1101             'File::Spec::Unix' => '1.5',
1102             'File::Spec::VMS' => '1.4',
1103             'File::Spec::Win32' => '1.4',
1104             'File::Temp' => '0.14',
1105             'Safe' => '2.10',
1106             'Test' => '1.24',
1107             'Test::Builder' => '0.17',
1108             'Test::Harness' => '2.30',
1109             'Test::Harness::Assert' => '0.01',
1110             'Test::Harness::Iterator'=> '0.01',
1111             'Test::Harness::Straps' => '0.15',
1112             'Test::More' => '0.47',
1113             'Test::Simple' => '0.47',
1114             'Unicode' => '3.0.1',
1115             'if' => '0.03',
1116             'ops' => '1.00',
1117             },
1118             removed => {
1119             }
1120             },
1121             5.007003 => {
1122             delta_from => 5.006001,
1123             changed => {
1124             'AnyDBM_File' => '1.00',
1125             'Attribute::Handlers' => '0.76',
1126             'AutoLoader' => '5.59',
1127             'AutoSplit' => '1.0307',
1128             'B' => '1.00',
1129             'B::Asmdata' => '1.00',
1130             'B::Assembler' => '0.04',
1131             'B::Bblock' => '1.00',
1132             'B::Bytecode' => '1.00',
1133             'B::C' => '1.01',
1134             'B::CC' => '1.00',
1135             'B::Concise' => '0.52',
1136             'B::Debug' => '1.00',
1137             'B::Deparse' => '0.63',
1138             'B::Disassembler' => '1.01',
1139             'B::Lint' => '1.00',
1140             'B::Showlex' => '1.00',
1141             'B::Stackobj' => '1.00',
1142             'B::Stash' => '1.00',
1143             'B::Terse' => '1.00',
1144             'B::Xref' => '1.00',
1145             'Benchmark' => '1.04',
1146             'CGI' => '2.80',
1147             'CGI::Apache' => '1.00',
1148             'CGI::Carp' => '1.22',
1149             'CGI::Cookie' => '1.20',
1150             'CGI::Fast' => '1.04',
1151             'CGI::Pretty' => '1.05_00',
1152             'CGI::Switch' => '1.00',
1153             'CGI::Util' => '1.3',
1154             'CPAN' => '1.59_56',
1155             'CPAN::FirstTime' => '1.54',
1156             'CPAN::Nox' => '1.00_01',
1157             'Carp' => '1.01',
1158             'Carp::Heavy' => '1.01',
1159             'Class::ISA' => '0.32',
1160             'Class::Struct' => '0.61',
1161             'Cwd' => '2.06',
1162             'DB_File' => '1.804',
1163             'Data::Dumper' => '2.12',
1164             'Devel::DProf' => '20000000.00_01',
1165             'Devel::PPPort' => '2.0002',
1166             'Devel::Peek' => '1.00_03',
1167             'Devel::SelfStubber' => '1.03',
1168             'Digest' => '1.00',
1169             'Digest::MD5' => '2.16',
1170             'DirHandle' => '1.00',
1171             'Dumpvalue' => '1.10',
1172             'Encode' => '0.40',
1173             'Encode::CN' => '0.02',
1174             'Encode::CN::HZ' => undef,
1175             'Encode::Encoding' => '0.02',
1176             'Encode::Internal' => '0.30',
1177             'Encode::JP' => '0.02',
1178             'Encode::JP::Constants' => '1.02',
1179             'Encode::JP::H2Z' => '0.77',
1180             'Encode::JP::ISO_2022_JP'=> undef,
1181             'Encode::JP::JIS' => undef,
1182             'Encode::JP::Tr' => '0.77',
1183             'Encode::KR' => '0.02',
1184             'Encode::TW' => '0.02',
1185             'Encode::Tcl' => '1.01',
1186             'Encode::Tcl::Escape' => '1.01',
1187             'Encode::Tcl::Extended' => '1.01',
1188             'Encode::Tcl::HanZi' => '1.01',
1189             'Encode::Tcl::Table' => '1.01',
1190             'Encode::Unicode' => '0.30',
1191             'Encode::XS' => '0.40',
1192             'Encode::iso10646_1' => '0.30',
1193             'Encode::usc2_le' => '0.30',
1194             'Encode::utf8' => '0.30',
1195             'English' => '1.00',
1196             'Env' => '1.00',
1197             'Exporter' => '5.566',
1198             'Exporter::Heavy' => '5.562',
1199             'ExtUtils::Command' => '1.02',
1200             'ExtUtils::Constant' => '0.11',
1201             'ExtUtils::Embed' => '1.250601',
1202             'ExtUtils::Install' => '1.29',
1203             'ExtUtils::Installed' => '0.04',
1204             'ExtUtils::Liblist' => '1.2701',
1205             'ExtUtils::MM_BeOS' => '1.00',
1206             'ExtUtils::MM_Cygwin' => '1.00',
1207             'ExtUtils::MM_OS2' => '1.00',
1208             'ExtUtils::MM_Unix' => '1.12607',
1209             'ExtUtils::MM_VMS' => '5.56',
1210             'ExtUtils::MM_Win32' => '1.00_02',
1211             'ExtUtils::MakeMaker' => '5.48_03',
1212             'ExtUtils::Manifest' => '1.35',
1213             'ExtUtils::Mkbootstrap' => '1.1401',
1214             'ExtUtils::Mksymlists' => '1.18',
1215             'ExtUtils::Packlist' => '0.04',
1216             'ExtUtils::testlib' => '1.1201',
1217             'Fatal' => '1.03',
1218             'Fcntl' => '1.04',
1219             'File::Basename' => '2.71',
1220             'File::CheckTree' => '4.1',
1221             'File::Compare' => '1.1003',
1222             'File::Copy' => '2.05',
1223             'File::DosGlob' => '1.00',
1224             'File::Find' => '1.04',
1225             'File::Glob' => '1.01',
1226             'File::Path' => '1.05',
1227             'File::Spec' => '0.83',
1228             'File::Spec::Cygwin' => '1.0',
1229             'File::Spec::Epoc' => '1.00',
1230             'File::Spec::Functions' => '1.2',
1231             'File::Spec::Mac' => '1.3',
1232             'File::Spec::Unix' => '1.4',
1233             'File::Spec::VMS' => '1.2',
1234             'File::Spec::Win32' => '1.3',
1235             'File::Temp' => '0.13',
1236             'File::stat' => '1.00',
1237             'FileCache' => '1.00',
1238             'FileHandle' => '2.01',
1239             'Filter::Simple' => '0.77',
1240             'Filter::Util::Call' => '1.06',
1241             'FindBin' => '1.43',
1242             'GDBM_File' => '1.06',
1243             'Getopt::Long' => '2.28',
1244             'Getopt::Std' => '1.03',
1245             'I18N::Collate' => '1.00',
1246             'I18N::LangTags' => '0.27',
1247             'I18N::LangTags::List' => '0.25',
1248             'I18N::Langinfo' => '0.01',
1249             'IO::Dir' => '1.03_00',
1250             'IO::File' => '1.09',
1251             'IO::Handle' => '1.21_00',
1252             'IO::Pipe' => '1.122',
1253             'IO::Poll' => '0.06',
1254             'IO::Seekable' => '1.08_00',
1255             'IO::Select' => '1.15',
1256             'IO::Socket' => '1.27',
1257             'IO::Socket::INET' => '1.26',
1258             'IO::Socket::UNIX' => '1.20_00',
1259             'IPC::Msg' => '1.00_00',
1260             'IPC::Open3' => '1.0104',
1261             'IPC::Semaphore' => '1.00_00',
1262             'IPC::SysV' => '1.03_00',
1263             'List::Util' => '1.06_00',
1264             'Locale::Constants' => '2.01',
1265             'Locale::Country' => '2.01',
1266             'Locale::Currency' => '2.01',
1267             'Locale::Language' => '2.01',
1268             'Locale::Maketext' => '1.03',
1269             'Locale::Script' => '2.01',
1270             'MIME::Base64' => '2.12',
1271             'MIME::QuotedPrint' => '2.03',
1272             'Math::BigFloat' => '1.30',
1273             'Math::BigInt' => '1.54',
1274             'Math::BigInt::Calc' => '0.25',
1275             'Math::Complex' => '1.34',
1276             'Math::Trig' => '1.01',
1277             'Memoize' => '0.66',
1278             'Memoize::AnyDBM_File' => '0.65',
1279             'Memoize::Expire' => '0.66',
1280             'Memoize::ExpireFile' => '0.65',
1281             'Memoize::ExpireTest' => '0.65',
1282             'Memoize::NDBM_File' => '0.65',
1283             'Memoize::SDBM_File' => '0.65',
1284             'Memoize::Storable' => '0.65',
1285             'NEXT' => '0.50',
1286             'Net::Cmd' => '2.21',
1287             'Net::Config' => '1.10',
1288             'Net::Domain' => '2.17',
1289             'Net::FTP' => '2.64',
1290             'Net::FTP::A' => '1.15',
1291             'Net::FTP::E' => '0.01',
1292             'Net::FTP::I' => '1.12',
1293             'Net::FTP::L' => '0.01',
1294             'Net::FTP::dataconn' => '0.10',
1295             'Net::NNTP' => '2.21',
1296             'Net::Netrc' => '2.12',
1297             'Net::POP3' => '2.23',
1298             'Net::Ping' => '2.12',
1299             'Net::SMTP' => '2.21',
1300             'Net::Time' => '2.09',
1301             'Net::hostent' => '1.00',
1302             'Net::netent' => '1.00',
1303             'Net::protoent' => '1.00',
1304             'Net::servent' => '1.00',
1305             'O' => '1.00',
1306             'OS2::DLL' => '1.00',
1307             'OS2::Process' => '1.0',
1308             'OS2::REXX' => '1.01',
1309             'Opcode' => '1.05',
1310             'POSIX' => '1.05',
1311             'PerlIO' => '1.00',
1312             'PerlIO::Scalar' => '0.01',
1313             'PerlIO::Via' => '0.01',
1314             'Pod::Checker' => '1.3',
1315             'Pod::Find' => '0.22',
1316             'Pod::Functions' => '1.01',
1317             'Pod::Html' => '1.04',
1318             'Pod::LaTeX' => '0.54',
1319             'Pod::Man' => '1.32',
1320             'Pod::ParseLink' => '1.05',
1321             'Pod::Text' => '2.18',
1322             'Pod::Text::Color' => '1.03',
1323             'Pod::Text::Overstrike' => '1.08',
1324             'Pod::Text::Termcap' => '1.09',
1325             'Safe' => '2.07',
1326             'Scalar::Util' => '1.06_00',
1327             'Search::Dict' => '1.02',
1328             'SelectSaver' => '1.00',
1329             'SelfLoader' => '1.0903',
1330             'Shell' => '0.4',
1331             'Socket' => '1.75',
1332             'Storable' => '1.015',
1333             'Switch' => '2.06',
1334             'Symbol' => '1.04',
1335             'Sys::Syslog' => '0.02',
1336             'Term::ANSIColor' => '1.04',
1337             'Term::Cap' => '1.07',
1338             'Term::Complete' => '1.4',
1339             'Term::ReadLine' => '1.00',
1340             'Test' => '1.18',
1341             'Test::Builder' => '0.11',
1342             'Test::Harness' => '2.01',
1343             'Test::Harness::Assert' => '0.01',
1344             'Test::Harness::Iterator'=> '0.01',
1345             'Test::Harness::Straps' => '0.08',
1346             'Test::More' => '0.41',
1347             'Test::Simple' => '0.41',
1348             'Text::Abbrev' => '1.00',
1349             'Text::Balanced' => '1.89',
1350             'Text::ParseWords' => '3.21',
1351             'Text::Soundex' => '1.01',
1352             'Text::Wrap' => '2001.0929',
1353             'Thread' => '2.00',
1354             'Thread::Queue' => '1.00',
1355             'Thread::Semaphore' => '1.00',
1356             'Thread::Signal' => '1.00',
1357             'Thread::Specific' => '1.00',
1358             'Tie::Array' => '1.02',
1359             'Tie::File' => '0.17',
1360             'Tie::Handle' => '4.1',
1361             'Tie::Hash' => '1.00',
1362             'Tie::Memoize' => '1.0',
1363             'Tie::RefHash' => '1.3_00',
1364             'Tie::Scalar' => '1.00',
1365             'Tie::SubstrHash' => '1.00',
1366             'Time::HiRes' => '1.20_00',
1367             'Time::Local' => '1.04',
1368             'Time::gmtime' => '1.02',
1369             'Time::localtime' => '1.02',
1370             'Time::tm' => '1.00',
1371             'UNIVERSAL' => '1.00',
1372             'Unicode::Collate' => '0.10',
1373             'Unicode::Normalize' => '0.14',
1374             'Unicode::UCD' => '0.2',
1375             'User::grent' => '1.00',
1376             'User::pwent' => '1.00',
1377             'VMS::DCLsym' => '1.02',
1378             'VMS::Filespec' => '1.1',
1379             'VMS::Stdio' => '2.3',
1380             'XS::Typemap' => '0.01',
1381             'attributes' => '0.04_01',
1382             'attrs' => '1.01',
1383             'autouse' => '1.03',
1384             'base' => '1.02',
1385             'blib' => '1.01',
1386             'bytes' => '1.00',
1387             'charnames' => '1.01',
1388             'constant' => '1.04',
1389             'diagnostics' => '1.1',
1390             'encoding' => '1.00',
1391             'fields' => '1.02',
1392             'filetest' => '1.00',
1393             'if' => '0.01',
1394             'integer' => '1.00',
1395             'less' => '0.01',
1396             'locale' => '1.00',
1397             'open' => '1.01',
1398             'ops' => '1.00',
1399             'overload' => '1.00',
1400             're' => '0.03',
1401             'sort' => '1.00',
1402             'strict' => '1.02',
1403             'subs' => '1.00',
1404             'threads' => '0.05',
1405             'threads::shared' => '0.90',
1406             'utf8' => '1.00',
1407             'vars' => '1.01',
1408             'vmsish' => '1.00',
1409             'warnings' => '1.00',
1410             'warnings::register' => '1.00',
1411             },
1412             removed => {
1413             }
1414             },
1415             5.008 => {
1416             delta_from => 5.007003,
1417             changed => {
1418             'Attribute::Handlers' => '0.77',
1419             'B' => '1.01',
1420             'B::Lint' => '1.01',
1421             'B::Xref' => '1.01',
1422             'CGI' => '2.81',
1423             'CGI::Carp' => '1.23',
1424             'CPAN' => '1.61',
1425             'CPAN::FirstTime' => '1.56',
1426             'CPAN::Nox' => '1.02',
1427             'Digest::MD5' => '2.20',
1428             'Dumpvalue' => '1.11',
1429             'Encode' => '1.75',
1430             'Encode::Alias' => '1.32',
1431             'Encode::Byte' => '1.22',
1432             'Encode::CJKConstants' => '1.00',
1433             'Encode::CN' => '1.24',
1434             'Encode::CN::HZ' => '1.04',
1435             'Encode::Config' => '1.06',
1436             'Encode::EBCDIC' => '1.21',
1437             'Encode::Encoder' => '0.05',
1438             'Encode::Encoding' => '1.30',
1439             'Encode::Guess' => '1.06',
1440             'Encode::JP' => '1.25',
1441             'Encode::JP::H2Z' => '1.02',
1442             'Encode::JP::JIS7' => '1.08',
1443             'Encode::KR' => '1.22',
1444             'Encode::KR::2022_KR' => '1.05',
1445             'Encode::MIME::Header' => '1.05',
1446             'Encode::Symbol' => '1.22',
1447             'Encode::TW' => '1.26',
1448             'Encode::Unicode' => '1.37',
1449             'Exporter::Heavy' => '5.566',
1450             'ExtUtils::Command' => '1.04',
1451             'ExtUtils::Command::MM' => '0.01',
1452             'ExtUtils::Constant' => '0.12',
1453             'ExtUtils::Installed' => '0.06',
1454             'ExtUtils::Liblist' => '1.00',
1455             'ExtUtils::Liblist::Kid'=> '1.29',
1456             'ExtUtils::MM' => '0.04',
1457             'ExtUtils::MM_Any' => '0.04',
1458             'ExtUtils::MM_BeOS' => '1.03',
1459             'ExtUtils::MM_Cygwin' => '1.04',
1460             'ExtUtils::MM_DOS' => '0.01',
1461             'ExtUtils::MM_MacOS' => '1.03',
1462             'ExtUtils::MM_NW5' => '2.05',
1463             'ExtUtils::MM_OS2' => '1.03',
1464             'ExtUtils::MM_UWIN' => '0.01',
1465             'ExtUtils::MM_Unix' => '1.33',
1466             'ExtUtils::MM_VMS' => '5.65',
1467             'ExtUtils::MM_Win32' => '1.05',
1468             'ExtUtils::MM_Win95' => '0.02',
1469             'ExtUtils::MY' => '0.01',
1470             'ExtUtils::MakeMaker' => '6.03',
1471             'ExtUtils::Manifest' => '1.38',
1472             'ExtUtils::Mkbootstrap' => '1.15',
1473             'ExtUtils::Mksymlists' => '1.19',
1474             'ExtUtils::testlib' => '1.15',
1475             'File::CheckTree' => '4.2',
1476             'FileCache' => '1.021',
1477             'Filter::Simple' => '0.78',
1478             'Getopt::Long' => '2.32',
1479             'Hash::Util' => '0.04',
1480             'List::Util' => '1.07_00',
1481             'Locale::Country' => '2.04',
1482             'Math::BigFloat' => '1.35',
1483             'Math::BigFloat::Trace' => '0.01',
1484             'Math::BigInt' => '1.60',
1485             'Math::BigInt::Calc' => '0.30',
1486             'Math::BigInt::Trace' => '0.01',
1487             'Math::BigRat' => '0.07',
1488             'Memoize' => '1.01',
1489             'Memoize::Expire' => '1.00',
1490             'Memoize::ExpireFile' => '1.01',
1491             'Net::FTP' => '2.65',
1492             'Net::FTP::dataconn' => '0.11',
1493             'Net::Ping' => '2.19',
1494             'Net::SMTP' => '2.24',
1495             'PerlIO' => '1.01',
1496             'PerlIO::encoding' => '0.06',
1497             'PerlIO::scalar' => '0.01',
1498             'PerlIO::via' => '0.01',
1499             'PerlIO::via::QuotedPrint'=> '0.04',
1500             'Pod::Man' => '1.33',
1501             'Pod::Text' => '2.19',
1502             'Scalar::Util' => '1.07_00',
1503             'Storable' => '2.04',
1504             'Switch' => '2.09',
1505             'Sys::Syslog' => '0.03',
1506             'Test' => '1.20',
1507             'Test::Builder' => '0.15',
1508             'Test::Harness' => '2.26',
1509             'Test::Harness::Straps' => '0.14',
1510             'Test::More' => '0.45',
1511             'Test::Simple' => '0.45',
1512             'Thread::Queue' => '2.00',
1513             'Thread::Semaphore' => '2.00',
1514             'Tie::File' => '0.93',
1515             'Tie::RefHash' => '1.30',
1516             'Unicode' => '3.2.0',
1517             'Unicode::Collate' => '0.12',
1518             'Unicode::Normalize' => '0.17',
1519             'XS::APItest' => '0.01',
1520             'attributes' => '0.05',
1521             'base' => '1.03',
1522             'bigint' => '0.02',
1523             'bignum' => '0.11',
1524             'bigrat' => '0.04',
1525             'blib' => '1.02',
1526             'encoding' => '1.35',
1527             'sort' => '1.01',
1528             'threads' => '0.99',
1529             },
1530             removed => {
1531             'Encode::Internal' => 1,
1532             'Encode::JP::Constants' => 1,
1533             'Encode::JP::ISO_2022_JP'=> 1,
1534             'Encode::JP::JIS' => 1,
1535             'Encode::JP::Tr' => 1,
1536             'Encode::Tcl' => 1,
1537             'Encode::Tcl::Escape' => 1,
1538             'Encode::Tcl::Extended' => 1,
1539             'Encode::Tcl::HanZi' => 1,
1540             'Encode::Tcl::Table' => 1,
1541             'Encode::XS' => 1,
1542             'Encode::iso10646_1' => 1,
1543             'Encode::usc2_le' => 1,
1544             'Encode::utf8' => 1,
1545             'PerlIO::Scalar' => 1,
1546             'PerlIO::Via' => 1,
1547             }
1548             },
1549             5.008001 => {
1550             delta_from => 5.008,
1551             changed => {
1552             'Attribute::Handlers' => '0.78',
1553             'AutoLoader' => '5.60',
1554             'AutoSplit' => '1.04',
1555             'B' => '1.02',
1556             'B::Asmdata' => '1.01',
1557             'B::Assembler' => '0.06',
1558             'B::Bblock' => '1.02',
1559             'B::Bytecode' => '1.01',
1560             'B::C' => '1.02',
1561             'B::Concise' => '0.56',
1562             'B::Debug' => '1.01',
1563             'B::Deparse' => '0.64',
1564             'B::Disassembler' => '1.03',
1565             'B::Lint' => '1.02',
1566             'B::Terse' => '1.02',
1567             'Benchmark' => '1.051',
1568             'ByteLoader' => '0.05',
1569             'CGI' => '3.00',
1570             'CGI::Carp' => '1.26',
1571             'CGI::Cookie' => '1.24',
1572             'CGI::Fast' => '1.041',
1573             'CGI::Pretty' => '1.07_00',
1574             'CGI::Util' => '1.31',
1575             'CPAN' => '1.76_01',
1576             'CPAN::FirstTime' => '1.60',
1577             'CPAN::Nox' => '1.03',
1578             'Class::Struct' => '0.63',
1579             'Cwd' => '2.08',
1580             'DB_File' => '1.806',
1581             'Data::Dumper' => '2.121',
1582             'Devel::DProf' => '20030813.00',
1583             'Devel::PPPort' => '2.007',
1584             'Devel::Peek' => '1.01',
1585             'Digest' => '1.02',
1586             'Digest::MD5' => '2.27',
1587             'Encode' => '1.9801',
1588             'Encode::Alias' => '1.38',
1589             'Encode::Byte' => '1.23',
1590             'Encode::CJKConstants' => '1.02',
1591             'Encode::CN::HZ' => '1.05',
1592             'Encode::Config' => '1.07',
1593             'Encode::Encoder' => '0.07',
1594             'Encode::Encoding' => '1.33',
1595             'Encode::Guess' => '1.09',
1596             'Encode::JP::JIS7' => '1.12',
1597             'Encode::KR' => '1.23',
1598             'Encode::KR::2022_KR' => '1.06',
1599             'Encode::MIME::Header' => '1.09',
1600             'Encode::Unicode' => '1.40',
1601             'Encode::Unicode::UTF7' => '0.02',
1602             'English' => '1.01',
1603             'Errno' => '1.09_00',
1604             'Exporter' => '5.567',
1605             'Exporter::Heavy' => '5.567',
1606             'ExtUtils::Command' => '1.05',
1607             'ExtUtils::Command::MM' => '0.03',
1608             'ExtUtils::Constant' => '0.14',
1609             'ExtUtils::Install' => '1.32',
1610             'ExtUtils::Installed' => '0.08',
1611             'ExtUtils::Liblist' => '1.01',
1612             'ExtUtils::Liblist::Kid'=> '1.3',
1613             'ExtUtils::MM_Any' => '0.07',
1614             'ExtUtils::MM_BeOS' => '1.04',
1615             'ExtUtils::MM_Cygwin' => '1.06',
1616             'ExtUtils::MM_DOS' => '0.02',
1617             'ExtUtils::MM_MacOS' => '1.07',
1618             'ExtUtils::MM_NW5' => '2.06',
1619             'ExtUtils::MM_OS2' => '1.04',
1620             'ExtUtils::MM_UWIN' => '0.02',
1621             'ExtUtils::MM_Unix' => '1.42',
1622             'ExtUtils::MM_VMS' => '5.70',
1623             'ExtUtils::MM_Win32' => '1.09',
1624             'ExtUtils::MM_Win95' => '0.03',
1625             'ExtUtils::MakeMaker' => '6.17',
1626             'ExtUtils::MakeMaker::bytes'=> '0.01',
1627             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1628             'ExtUtils::Manifest' => '1.42',
1629             'Fcntl' => '1.05',
1630             'File::Basename' => '2.72',
1631             'File::Copy' => '2.06',
1632             'File::Find' => '1.05',
1633             'File::Glob' => '1.02',
1634             'File::Path' => '1.06',
1635             'File::Spec' => '0.86',
1636             'File::Spec::Cygwin' => '1.1',
1637             'File::Spec::Epoc' => '1.1',
1638             'File::Spec::Functions' => '1.3',
1639             'File::Spec::Mac' => '1.4',
1640             'File::Spec::OS2' => '1.2',
1641             'File::Spec::Unix' => '1.5',
1642             'File::Spec::VMS' => '1.4',
1643             'File::Spec::Win32' => '1.4',
1644             'File::Temp' => '0.14',
1645             'FileCache' => '1.03',
1646             'Filter::Util::Call' => '1.0601',
1647             'GDBM_File' => '1.07',
1648             'Getopt::Long' => '2.34',
1649             'Getopt::Std' => '1.04',
1650             'Hash::Util' => '0.05',
1651             'I18N::LangTags' => '0.28',
1652             'I18N::LangTags::List' => '0.26',
1653             'I18N::Langinfo' => '0.02',
1654             'IO' => '1.21',
1655             'IO::Dir' => '1.04',
1656             'IO::File' => '1.10',
1657             'IO::Handle' => '1.23',
1658             'IO::Seekable' => '1.09',
1659             'IO::Select' => '1.16',
1660             'IO::Socket' => '1.28',
1661             'IO::Socket::INET' => '1.27',
1662             'IO::Socket::UNIX' => '1.21',
1663             'IPC::Msg' => '1.02',
1664             'IPC::Open3' => '1.0105',
1665             'IPC::Semaphore' => '1.02',
1666             'IPC::SysV' => '1.04',
1667             'JNI' => '0.2',
1668             'List::Util' => '1.13',
1669             'Locale::Country' => '2.61',
1670             'Locale::Currency' => '2.21',
1671             'Locale::Language' => '2.21',
1672             'Locale::Maketext' => '1.06',
1673             'Locale::Maketext::Guts'=> undef,
1674             'Locale::Maketext::GutsLoader'=> undef,
1675             'Locale::Script' => '2.21',
1676             'MIME::Base64' => '2.20',
1677             'MIME::QuotedPrint' => '2.20',
1678             'Math::BigFloat' => '1.40',
1679             'Math::BigInt' => '1.66',
1680             'Math::BigInt::Calc' => '0.36',
1681             'Math::BigInt::Scalar' => '0.11',
1682             'Math::BigRat' => '0.10',
1683             'Math::Trig' => '1.02',
1684             'NDBM_File' => '1.05',
1685             'NEXT' => '0.60',
1686             'Net::Cmd' => '2.24',
1687             'Net::Domain' => '2.18',
1688             'Net::FTP' => '2.71',
1689             'Net::FTP::A' => '1.16',
1690             'Net::NNTP' => '2.22',
1691             'Net::POP3' => '2.24',
1692             'Net::Ping' => '2.31',
1693             'Net::SMTP' => '2.26',
1694             'Net::hostent' => '1.01',
1695             'Net::servent' => '1.01',
1696             'ODBM_File' => '1.04',
1697             'OS2::DLL' => '1.01',
1698             'OS2::ExtAttr' => '0.02',
1699             'OS2::PrfDB' => '0.03',
1700             'OS2::Process' => '1.01',
1701             'OS2::REXX' => '1.02',
1702             'POSIX' => '1.06',
1703             'PerlIO' => '1.02',
1704             'PerlIO::encoding' => '0.07',
1705             'PerlIO::scalar' => '0.02',
1706             'PerlIO::via' => '0.02',
1707             'PerlIO::via::QuotedPrint'=> '0.05',
1708             'Pod::Checker' => '1.41',
1709             'Pod::Find' => '0.24',
1710             'Pod::Functions' => '1.02',
1711             'Pod::Html' => '1.0501',
1712             'Pod::InputObjects' => '1.14',
1713             'Pod::LaTeX' => '0.55',
1714             'Pod::Man' => '1.37',
1715             'Pod::ParseLink' => '1.06',
1716             'Pod::ParseUtils' => '0.3',
1717             'Pod::Perldoc' => '3.10',
1718             'Pod::Perldoc::BaseTo' => undef,
1719             'Pod::Perldoc::GetOptsOO'=> undef,
1720             'Pod::Perldoc::ToChecker'=> undef,
1721             'Pod::Perldoc::ToMan' => undef,
1722             'Pod::Perldoc::ToNroff' => undef,
1723             'Pod::Perldoc::ToPod' => undef,
1724             'Pod::Perldoc::ToRtf' => undef,
1725             'Pod::Perldoc::ToText' => undef,
1726             'Pod::Perldoc::ToTk' => undef,
1727             'Pod::Perldoc::ToXml' => undef,
1728             'Pod::PlainText' => '2.01',
1729             'Pod::Text' => '2.21',
1730             'Pod::Text::Color' => '1.04',
1731             'Pod::Text::Overstrike' => '1.1',
1732             'Pod::Text::Termcap' => '1.11',
1733             'Pod::Usage' => '1.16',
1734             'SDBM_File' => '1.04',
1735             'Safe' => '2.10',
1736             'Scalar::Util' => '1.13',
1737             'SelfLoader' => '1.0904',
1738             'Shell' => '0.5',
1739             'Socket' => '1.76',
1740             'Storable' => '2.08',
1741             'Switch' => '2.10',
1742             'Symbol' => '1.05',
1743             'Sys::Hostname' => '1.11',
1744             'Sys::Syslog' => '0.04',
1745             'Term::ANSIColor' => '1.07',
1746             'Term::Cap' => '1.08',
1747             'Term::Complete' => '1.401',
1748             'Term::ReadLine' => '1.01',
1749             'Test' => '1.24',
1750             'Test::Builder' => '0.17',
1751             'Test::Harness' => '2.30',
1752             'Test::Harness::Straps' => '0.15',
1753             'Test::More' => '0.47',
1754             'Test::Simple' => '0.47',
1755             'Text::Abbrev' => '1.01',
1756             'Text::Balanced' => '1.95',
1757             'Text::Wrap' => '2001.09291',
1758             'Thread::Semaphore' => '2.01',
1759             'Tie::Array' => '1.03',
1760             'Tie::File' => '0.97',
1761             'Tie::RefHash' => '1.31',
1762             'Time::HiRes' => '1.51',
1763             'Time::Local' => '1.07',
1764             'UNIVERSAL' => '1.01',
1765             'Unicode' => '4.0.0',
1766             'Unicode::Collate' => '0.28',
1767             'Unicode::Normalize' => '0.23',
1768             'Unicode::UCD' => '0.21',
1769             'VMS::Filespec' => '1.11',
1770             'XS::APItest' => '0.02',
1771             'XSLoader' => '0.02',
1772             'attributes' => '0.06',
1773             'base' => '2.03',
1774             'bigint' => '0.04',
1775             'bignum' => '0.14',
1776             'bigrat' => '0.06',
1777             'bytes' => '1.01',
1778             'charnames' => '1.02',
1779             'diagnostics' => '1.11',
1780             'encoding' => '1.47',
1781             'fields' => '2.03',
1782             'filetest' => '1.01',
1783             'if' => '0.03',
1784             'lib' => '0.5565',
1785             'open' => '1.02',
1786             'overload' => '1.01',
1787             're' => '0.04',
1788             'sort' => '1.02',
1789             'strict' => '1.03',
1790             'threads' => '1.00',
1791             'threads::shared' => '0.91',
1792             'utf8' => '1.02',
1793             'vmsish' => '1.01',
1794             'warnings' => '1.03',
1795             },
1796             removed => {
1797             }
1798             },
1799             5.008002 => {
1800             delta_from => 5.008001,
1801             changed => {
1802             'DB_File' => '1.807',
1803             'Devel::PPPort' => '2.009',
1804             'Digest::MD5' => '2.30',
1805             'I18N::LangTags' => '0.29',
1806             'I18N::LangTags::List' => '0.29',
1807             'MIME::Base64' => '2.21',
1808             'MIME::QuotedPrint' => '2.21',
1809             'Net::Domain' => '2.19',
1810             'Net::FTP' => '2.72',
1811             'Pod::Perldoc' => '3.11',
1812             'Time::HiRes' => '1.52',
1813             'Unicode::Collate' => '0.30',
1814             'Unicode::Normalize' => '0.25',
1815             },
1816             removed => {
1817             }
1818             },
1819             5.008003 => {
1820             delta_from => 5.008002,
1821             changed => {
1822             'Benchmark' => '1.052',
1823             'CGI' => '3.01',
1824             'CGI::Carp' => '1.27',
1825             'CGI::Fast' => '1.05',
1826             'CGI::Pretty' => '1.08',
1827             'CGI::Util' => '1.4',
1828             'Cwd' => '2.12',
1829             'DB_File' => '1.808',
1830             'Devel::PPPort' => '2.011',
1831             'Digest' => '1.05',
1832             'Digest::MD5' => '2.33',
1833             'Digest::base' => '1.00',
1834             'Encode' => '1.99',
1835             'Exporter' => '5.57',
1836             'File::CheckTree' => '4.3',
1837             'File::Copy' => '2.07',
1838             'File::Find' => '1.06',
1839             'File::Spec' => '0.87',
1840             'FindBin' => '1.44',
1841             'Getopt::Std' => '1.05',
1842             'Math::BigFloat' => '1.42',
1843             'Math::BigInt' => '1.68',
1844             'Math::BigInt::Calc' => '0.38',
1845             'Math::BigInt::CalcEmu' => '0.02',
1846             'OS2::DLL' => '1.02',
1847             'POSIX' => '1.07',
1848             'PerlIO' => '1.03',
1849             'PerlIO::via::QuotedPrint'=> '0.06',
1850             'Pod::Html' => '1.0502',
1851             'Pod::Parser' => '1.14',
1852             'Pod::Perldoc' => '3.12',
1853             'Pod::PlainText' => '2.02',
1854             'Storable' => '2.09',
1855             'Test::Harness' => '2.40',
1856             'Test::Harness::Assert' => '0.02',
1857             'Test::Harness::Iterator'=> '0.02',
1858             'Test::Harness::Straps' => '0.19',
1859             'Tie::Hash' => '1.01',
1860             'Unicode::Collate' => '0.33',
1861             'Unicode::Normalize' => '0.28',
1862             'XS::APItest' => '0.03',
1863             'base' => '2.04',
1864             'diagnostics' => '1.12',
1865             'encoding' => '1.48',
1866             'threads' => '1.01',
1867             'threads::shared' => '0.92',
1868             },
1869             removed => {
1870             'Math::BigInt::Scalar' => 1,
1871             }
1872             },
1873             5.008004 => {
1874             delta_from => 5.008003,
1875             changed => {
1876             'Attribute::Handlers' => '0.78_01',
1877             'B::Assembler' => '0.07',
1878             'B::Concise' => '0.60',
1879             'B::Deparse' => '0.66',
1880             'Benchmark' => '1.06',
1881             'CGI' => '3.04',
1882             'Carp' => '1.02',
1883             'Cwd' => '2.17',
1884             'DBM_Filter' => '0.01',
1885             'DBM_Filter::compress' => '0.01',
1886             'DBM_Filter::encode' => '0.01',
1887             'DBM_Filter::int32' => '0.01',
1888             'DBM_Filter::null' => '0.01',
1889             'DBM_Filter::utf8' => '0.01',
1890             'Digest' => '1.06',
1891             'DynaLoader' => '1.05',
1892             'Encode' => '1.99_01',
1893             'Encode::CN::HZ' => '1.0501',
1894             'Exporter' => '5.58',
1895             'Exporter::Heavy' => '5.57',
1896             'ExtUtils::Liblist::Kid'=> '1.3001',
1897             'ExtUtils::MM_NW5' => '2.07_02',
1898             'ExtUtils::MM_Win95' => '0.0301',
1899             'File::Find' => '1.07',
1900             'IO::Handle' => '1.24',
1901             'IO::Pipe' => '1.123',
1902             'IPC::Open3' => '1.0106',
1903             'Locale::Maketext' => '1.08',
1904             'MIME::Base64' => '3.01',
1905             'MIME::QuotedPrint' => '3.01',
1906             'Math::BigFloat' => '1.44',
1907             'Math::BigInt' => '1.70',
1908             'Math::BigInt::Calc' => '0.40',
1909             'Math::BigInt::CalcEmu' => '0.04',
1910             'Math::BigRat' => '0.12',
1911             'ODBM_File' => '1.05',
1912             'POSIX' => '1.08',
1913             'Shell' => '0.5.2',
1914             'Socket' => '1.77',
1915             'Storable' => '2.12',
1916             'Sys::Syslog' => '0.05',
1917             'Term::ANSIColor' => '1.08',
1918             'Time::HiRes' => '1.59',
1919             'Unicode' => '4.0.1',
1920             'Unicode::UCD' => '0.22',
1921             'Win32' => '0.23',
1922             'base' => '2.05',
1923             'bigint' => '0.05',
1924             'bignum' => '0.15',
1925             'charnames' => '1.03',
1926             'open' => '1.03',
1927             'threads' => '1.03',
1928             'utf8' => '1.03',
1929             },
1930             removed => {
1931             }
1932             },
1933             5.008005 => {
1934             delta_from => 5.008004,
1935             changed => {
1936             'B::Concise' => '0.61',
1937             'B::Deparse' => '0.67',
1938             'CGI' => '3.05',
1939             'CGI::Carp' => '1.28',
1940             'CGI::Util' => '1.5',
1941             'Carp' => '1.03',
1942             'Carp::Heavy' => '1.03',
1943             'Cwd' => '2.19',
1944             'DB_File' => '1.809',
1945             'Digest' => '1.08',
1946             'Encode' => '2.01',
1947             'Encode::Alias' => '2.00',
1948             'Encode::Byte' => '2.00',
1949             'Encode::CJKConstants' => '2.00',
1950             'Encode::CN' => '2.00',
1951             'Encode::CN::HZ' => '2.01',
1952             'Encode::Config' => '2.00',
1953             'Encode::EBCDIC' => '2.00',
1954             'Encode::Encoder' => '2.00',
1955             'Encode::Encoding' => '2.00',
1956             'Encode::Guess' => '2.00',
1957             'Encode::JP' => '2.00',
1958             'Encode::JP::H2Z' => '2.00',
1959             'Encode::JP::JIS7' => '2.00',
1960             'Encode::KR' => '2.00',
1961             'Encode::KR::2022_KR' => '2.00',
1962             'Encode::MIME::Header' => '2.00',
1963             'Encode::Symbol' => '2.00',
1964             'Encode::TW' => '2.00',
1965             'Encode::Unicode' => '2.00',
1966             'Encode::Unicode::UTF7' => '2.01',
1967             'File::Basename' => '2.73',
1968             'File::Copy' => '2.08',
1969             'File::Glob' => '1.03',
1970             'FileCache' => '1.04_01',
1971             'I18N::LangTags' => '0.33',
1972             'I18N::LangTags::Detect'=> '1.03',
1973             'List::Util' => '1.14',
1974             'Locale::Constants' => '2.07',
1975             'Locale::Country' => '2.07',
1976             'Locale::Currency' => '2.07',
1977             'Locale::Language' => '2.07',
1978             'Locale::Maketext' => '1.09',
1979             'Locale::Script' => '2.07',
1980             'Net::Cmd' => '2.26',
1981             'Net::FTP' => '2.75',
1982             'Net::NNTP' => '2.23',
1983             'Net::POP3' => '2.28',
1984             'Net::SMTP' => '2.29',
1985             'Net::Time' => '2.10',
1986             'Pod::Checker' => '1.42',
1987             'Pod::Find' => '0.2401',
1988             'Pod::LaTeX' => '0.56',
1989             'Pod::ParseUtils' => '1.2',
1990             'Pod::Perldoc' => '3.13',
1991             'Safe' => '2.11',
1992             'Scalar::Util' => '1.14',
1993             'Shell' => '0.6',
1994             'Storable' => '2.13',
1995             'Term::Cap' => '1.09',
1996             'Test' => '1.25',
1997             'Test::Harness' => '2.42',
1998             'Text::ParseWords' => '3.22',
1999             'Text::Wrap' => '2001.09292',
2000             'Time::Local' => '1.10',
2001             'Unicode::Collate' => '0.40',
2002             'Unicode::Normalize' => '0.30',
2003             'XS::APItest' => '0.04',
2004             'autouse' => '1.04',
2005             'base' => '2.06',
2006             'charnames' => '1.04',
2007             'diagnostics' => '1.13',
2008             'encoding' => '2.00',
2009             'threads' => '1.05',
2010             'utf8' => '1.04',
2011             },
2012             removed => {
2013             }
2014             },
2015             5.008006 => {
2016             delta_from => 5.008005,
2017             changed => {
2018             'B' => '1.07',
2019             'B::C' => '1.04',
2020             'B::Concise' => '0.64',
2021             'B::Debug' => '1.02',
2022             'B::Deparse' => '0.69',
2023             'B::Lint' => '1.03',
2024             'B::Showlex' => '1.02',
2025             'Cwd' => '3.01',
2026             'DB_File' => '1.810',
2027             'Data::Dumper' => '2.121_02',
2028             'Devel::PPPort' => '3.03',
2029             'Devel::Peek' => '1.02',
2030             'Encode' => '2.08',
2031             'Encode::Alias' => '2.02',
2032             'Encode::Encoding' => '2.02',
2033             'Encode::JP' => '2.01',
2034             'Encode::Unicode' => '2.02',
2035             'Exporter::Heavy' => '5.58',
2036             'ExtUtils::Constant' => '0.1401',
2037             'File::Spec' => '3.01',
2038             'File::Spec::Win32' => '1.5',
2039             'I18N::LangTags' => '0.35',
2040             'I18N::LangTags::List' => '0.35',
2041             'MIME::Base64' => '3.05',
2042             'MIME::QuotedPrint' => '3.03',
2043             'Math::BigFloat' => '1.47',
2044             'Math::BigInt' => '1.73',
2045             'Math::BigInt::Calc' => '0.43',
2046             'Math::BigRat' => '0.13',
2047             'Text::ParseWords' => '3.23',
2048             'Time::HiRes' => '1.65',
2049             'XS::APItest' => '0.05',
2050             'diagnostics' => '1.14',
2051             'encoding' => '2.01',
2052             'open' => '1.04',
2053             'overload' => '1.02',
2054             },
2055             removed => {
2056             }
2057             },
2058             5.008007 => {
2059             delta_from => 5.008006,
2060             changed => {
2061             'B' => '1.09',
2062             'B::Concise' => '0.65',
2063             'B::Deparse' => '0.7',
2064             'B::Disassembler' => '1.04',
2065             'B::Terse' => '1.03',
2066             'Benchmark' => '1.07',
2067             'CGI' => '3.10',
2068             'CGI::Carp' => '1.29',
2069             'CGI::Cookie' => '1.25',
2070             'Carp' => '1.04',
2071             'Carp::Heavy' => '1.04',
2072             'Class::ISA' => '0.33',
2073             'Cwd' => '3.05',
2074             'DB_File' => '1.811',
2075             'Data::Dumper' => '2.121_04',
2076             'Devel::DProf' => '20050310.00',
2077             'Devel::PPPort' => '3.06',
2078             'Digest' => '1.10',
2079             'Digest::file' => '0.01',
2080             'Encode' => '2.10',
2081             'Encode::Alias' => '2.03',
2082             'Errno' => '1.09_01',
2083             'ExtUtils::Constant' => '0.16',
2084             'ExtUtils::Constant::Base'=> '0.01',
2085             'ExtUtils::Constant::Utils'=> '0.01',
2086             'ExtUtils::Constant::XS'=> '0.01',
2087             'File::Find' => '1.09',
2088             'File::Glob' => '1.04',
2089             'File::Path' => '1.07',
2090             'File::Spec' => '3.05',
2091             'File::Temp' => '0.16',
2092             'FileCache' => '1.05',
2093             'IO::File' => '1.11',
2094             'IO::Socket::INET' => '1.28',
2095             'Math::BigFloat' => '1.51',
2096             'Math::BigInt' => '1.77',
2097             'Math::BigInt::Calc' => '0.47',
2098             'Math::BigInt::CalcEmu' => '0.05',
2099             'Math::BigRat' => '0.15',
2100             'Pod::Find' => '1.3',
2101             'Pod::Html' => '1.0503',
2102             'Pod::InputObjects' => '1.3',
2103             'Pod::LaTeX' => '0.58',
2104             'Pod::ParseUtils' => '1.3',
2105             'Pod::Parser' => '1.3',
2106             'Pod::Perldoc' => '3.14',
2107             'Pod::Select' => '1.3',
2108             'Pod::Usage' => '1.3',
2109             'SelectSaver' => '1.01',
2110             'Symbol' => '1.06',
2111             'Sys::Syslog' => '0.06',
2112             'Term::ANSIColor' => '1.09',
2113             'Term::Complete' => '1.402',
2114             'Test::Builder' => '0.22',
2115             'Test::Harness' => '2.48',
2116             'Test::Harness::Point' => '0.01',
2117             'Test::Harness::Straps' => '0.23',
2118             'Test::More' => '0.54',
2119             'Test::Simple' => '0.54',
2120             'Text::ParseWords' => '3.24',
2121             'Text::Wrap' => '2001.09293',
2122             'Tie::RefHash' => '1.32',
2123             'Time::HiRes' => '1.66',
2124             'Time::Local' => '1.11',
2125             'Unicode' => '4.1.0',
2126             'Unicode::Normalize' => '0.32',
2127             'Unicode::UCD' => '0.23',
2128             'Win32' => '0.24',
2129             'XS::APItest' => '0.06',
2130             'base' => '2.07',
2131             'bigint' => '0.07',
2132             'bignum' => '0.17',
2133             'bigrat' => '0.08',
2134             'bytes' => '1.02',
2135             'constant' => '1.05',
2136             'overload' => '1.03',
2137             'threads::shared' => '0.93',
2138             'utf8' => '1.05',
2139             },
2140             removed => {
2141             'JNI' => 1,
2142             'JPL::AutoLoader' => 1,
2143             'JPL::Class' => 1,
2144             'JPL::Compile' => 1,
2145             }
2146             },
2147             5.008008 => {
2148             delta_from => 5.008007,
2149             changed => {
2150             'Attribute::Handlers' => '0.78_02',
2151             'B' => '1.09_01',
2152             'B::Bblock' => '1.02_01',
2153             'B::Bytecode' => '1.01_01',
2154             'B::C' => '1.04_01',
2155             'B::CC' => '1.00_01',
2156             'B::Concise' => '0.66',
2157             'B::Debug' => '1.02_01',
2158             'B::Deparse' => '0.71',
2159             'B::Disassembler' => '1.05',
2160             'B::Terse' => '1.03_01',
2161             'ByteLoader' => '0.06',
2162             'CGI' => '3.15',
2163             'CGI::Cookie' => '1.26',
2164             'CPAN' => '1.76_02',
2165             'Cwd' => '3.12',
2166             'DB' => '1.01',
2167             'DB_File' => '1.814',
2168             'Data::Dumper' => '2.121_08',
2169             'Devel::DProf' => '20050603.00',
2170             'Devel::PPPort' => '3.06_01',
2171             'Devel::Peek' => '1.03',
2172             'Digest' => '1.14',
2173             'Digest::MD5' => '2.36',
2174             'Digest::file' => '1.00',
2175             'Dumpvalue' => '1.12',
2176             'Encode' => '2.12',
2177             'Encode::Alias' => '2.04',
2178             'Encode::Config' => '2.01',
2179             'Encode::MIME::Header' => '2.01',
2180             'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2181             'English' => '1.02',
2182             'ExtUtils::Command' => '1.09',
2183             'ExtUtils::Command::MM' => '0.05',
2184             'ExtUtils::Constant' => '0.17',
2185             'ExtUtils::Embed' => '1.26',
2186             'ExtUtils::Install' => '1.33',
2187             'ExtUtils::Liblist::Kid'=> '1.3',
2188             'ExtUtils::MM' => '0.05',
2189             'ExtUtils::MM_AIX' => '0.03',
2190             'ExtUtils::MM_Any' => '0.13',
2191             'ExtUtils::MM_BeOS' => '1.05',
2192             'ExtUtils::MM_Cygwin' => '1.08',
2193             'ExtUtils::MM_MacOS' => '1.08',
2194             'ExtUtils::MM_NW5' => '2.08',
2195             'ExtUtils::MM_OS2' => '1.05',
2196             'ExtUtils::MM_QNX' => '0.02',
2197             'ExtUtils::MM_Unix' => '1.50',
2198             'ExtUtils::MM_VMS' => '5.73',
2199             'ExtUtils::MM_VOS' => '0.02',
2200             'ExtUtils::MM_Win32' => '1.12',
2201             'ExtUtils::MM_Win95' => '0.04',
2202             'ExtUtils::MakeMaker' => '6.30',
2203             'ExtUtils::MakeMaker::Config'=> '0.02',
2204             'ExtUtils::Manifest' => '1.46',
2205             'File::Basename' => '2.74',
2206             'File::Copy' => '2.09',
2207             'File::Find' => '1.10',
2208             'File::Glob' => '1.05',
2209             'File::Path' => '1.08',
2210             'File::Spec' => '3.12',
2211             'File::Spec::Win32' => '1.6',
2212             'FileCache' => '1.06',
2213             'Filter::Simple' => '0.82',
2214             'FindBin' => '1.47',
2215             'GDBM_File' => '1.08',
2216             'Getopt::Long' => '2.35',
2217             'IO' => '1.22',
2218             'IO::Dir' => '1.05',
2219             'IO::File' => '1.13',
2220             'IO::Handle' => '1.25',
2221             'IO::Pipe' => '1.13',
2222             'IO::Poll' => '0.07',
2223             'IO::Seekable' => '1.10',
2224             'IO::Select' => '1.17',
2225             'IO::Socket' => '1.29',
2226             'IO::Socket::INET' => '1.29',
2227             'IO::Socket::UNIX' => '1.22',
2228             'IPC::Open2' => '1.02',
2229             'IPC::Open3' => '1.02',
2230             'List::Util' => '1.18',
2231             'MIME::Base64' => '3.07',
2232             'MIME::QuotedPrint' => '3.07',
2233             'Math::Complex' => '1.35',
2234             'Math::Trig' => '1.03',
2235             'NDBM_File' => '1.06',
2236             'ODBM_File' => '1.06',
2237             'OS2::PrfDB' => '0.04',
2238             'OS2::Process' => '1.02',
2239             'OS2::REXX' => '1.03',
2240             'Opcode' => '1.06',
2241             'POSIX' => '1.09',
2242             'PerlIO' => '1.04',
2243             'PerlIO::encoding' => '0.09',
2244             'PerlIO::scalar' => '0.04',
2245             'PerlIO::via' => '0.03',
2246             'Pod::Checker' => '1.43',
2247             'Pod::Find' => '1.34',
2248             'Pod::Functions' => '1.03',
2249             'Pod::Html' => '1.0504',
2250             'Pod::ParseUtils' => '1.33',
2251             'Pod::Parser' => '1.32',
2252             'Pod::Usage' => '1.33',
2253             'SDBM_File' => '1.05',
2254             'Safe' => '2.12',
2255             'Scalar::Util' => '1.18',
2256             'Socket' => '1.78',
2257             'Storable' => '2.15',
2258             'Switch' => '2.10_01',
2259             'Sys::Syslog' => '0.13',
2260             'Term::ANSIColor' => '1.10',
2261             'Term::ReadLine' => '1.02',
2262             'Test::Builder' => '0.32',
2263             'Test::Builder::Module' => '0.02',
2264             'Test::Builder::Tester' => '1.02',
2265             'Test::Builder::Tester::Color'=> undef,
2266             'Test::Harness' => '2.56',
2267             'Test::Harness::Straps' => '0.26',
2268             'Test::More' => '0.62',
2269             'Test::Simple' => '0.62',
2270             'Text::Tabs' => '2005.0824',
2271             'Text::Wrap' => '2005.082401',
2272             'Tie::Hash' => '1.02',
2273             'Time::HiRes' => '1.86',
2274             'Unicode::Collate' => '0.52',
2275             'Unicode::UCD' => '0.24',
2276             'User::grent' => '1.01',
2277             'Win32' => '0.2601',
2278             'XS::APItest' => '0.08',
2279             'XS::Typemap' => '0.02',
2280             'XSLoader' => '0.06',
2281             'attrs' => '1.02',
2282             'autouse' => '1.05',
2283             'blib' => '1.03',
2284             'charnames' => '1.05',
2285             'diagnostics' => '1.15',
2286             'encoding' => '2.02',
2287             'if' => '0.05',
2288             'open' => '1.05',
2289             'ops' => '1.01',
2290             'overload' => '1.04',
2291             're' => '0.05',
2292             'threads' => '1.07',
2293             'threads::shared' => '0.94',
2294             'utf8' => '1.06',
2295             'vmsish' => '1.02',
2296             'warnings' => '1.05',
2297             'warnings::register' => '1.01',
2298             },
2299             removed => {
2300             }
2301             },
2302             5.008009 => {
2303             delta_from => 5.008008,
2304             changed => {
2305             'Attribute::Handlers' => '0.78_03',
2306             'AutoLoader' => '5.67',
2307             'AutoSplit' => '1.06',
2308             'B' => '1.19',
2309             'B::Asmdata' => '1.02',
2310             'B::Assembler' => '0.08',
2311             'B::C' => '1.05',
2312             'B::Concise' => '0.76',
2313             'B::Debug' => '1.05',
2314             'B::Deparse' => '0.87',
2315             'B::Lint' => '1.11',
2316             'B::Lint::Debug' => undef,
2317             'B::Terse' => '1.05',
2318             'Benchmark' => '1.1',
2319             'CGI' => '3.42',
2320             'CGI::Carp' => '1.30_01',
2321             'CGI::Cookie' => '1.29',
2322             'CGI::Fast' => '1.07',
2323             'CGI::Util' => '1.5_01',
2324             'CPAN' => '1.9301',
2325             'CPAN::Debug' => '5.5',
2326             'CPAN::DeferedCode' => '5.50',
2327             'CPAN::Distroprefs' => '6',
2328             'CPAN::FirstTime' => '5.5_01',
2329             'CPAN::HandleConfig' => '5.5',
2330             'CPAN::Kwalify' => '5.50',
2331             'CPAN::Nox' => '5.50',
2332             'CPAN::Queue' => '5.5',
2333             'CPAN::Tarzip' => '5.5',
2334             'CPAN::Version' => '5.5',
2335             'Carp' => '1.10',
2336             'Carp::Heavy' => '1.10',
2337             'Cwd' => '3.29',
2338             'DBM_Filter' => '0.02',
2339             'DBM_Filter::compress' => '0.02',
2340             'DBM_Filter::encode' => '0.02',
2341             'DBM_Filter::int32' => '0.02',
2342             'DBM_Filter::null' => '0.02',
2343             'DBM_Filter::utf8' => '0.02',
2344             'DB_File' => '1.817',
2345             'Data::Dumper' => '2.121_17',
2346             'Devel::DProf' => '20080331.00',
2347             'Devel::InnerPackage' => '0.3',
2348             'Devel::PPPort' => '3.14',
2349             'Devel::Peek' => '1.04',
2350             'Digest' => '1.15',
2351             'Digest::MD5' => '2.37',
2352             'DirHandle' => '1.02',
2353             'DynaLoader' => '1.09',
2354             'Encode' => '2.26',
2355             'Encode::Alias' => '2.10',
2356             'Encode::Byte' => '2.03',
2357             'Encode::CJKConstants' => '2.02',
2358             'Encode::CN' => '2.02',
2359             'Encode::CN::HZ' => '2.05',
2360             'Encode::Config' => '2.05',
2361             'Encode::EBCDIC' => '2.02',
2362             'Encode::Encoder' => '2.01',
2363             'Encode::Encoding' => '2.05',
2364             'Encode::GSM0338' => '2.01',
2365             'Encode::Guess' => '2.02',
2366             'Encode::JP' => '2.03',
2367             'Encode::JP::H2Z' => '2.02',
2368             'Encode::JP::JIS7' => '2.04',
2369             'Encode::KR' => '2.02',
2370             'Encode::KR::2022_KR' => '2.02',
2371             'Encode::MIME::Header' => '2.05',
2372             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2373             'Encode::MIME::Name' => '1.01',
2374             'Encode::Symbol' => '2.02',
2375             'Encode::TW' => '2.02',
2376             'Encode::Unicode' => '2.05',
2377             'Encode::Unicode::UTF7' => '2.04',
2378             'English' => '1.03',
2379             'Errno' => '1.10',
2380             'Exporter' => '5.63',
2381             'Exporter::Heavy' => '5.63',
2382             'ExtUtils::Command' => '1.15',
2383             'ExtUtils::Command::MM' => '6.48',
2384             'ExtUtils::Constant' => '0.21',
2385             'ExtUtils::Constant::Base'=> '0.04',
2386             'ExtUtils::Constant::ProxySubs'=> '0.06',
2387             'ExtUtils::Constant::Utils'=> '0.02',
2388             'ExtUtils::Constant::XS'=> '0.02',
2389             'ExtUtils::Embed' => '1.28',
2390             'ExtUtils::Install' => '1.50_01',
2391             'ExtUtils::Installed' => '1.43',
2392             'ExtUtils::Liblist' => '6.48',
2393             'ExtUtils::Liblist::Kid'=> '6.48',
2394             'ExtUtils::MM' => '6.48',
2395             'ExtUtils::MM_AIX' => '6.48',
2396             'ExtUtils::MM_Any' => '6.48',
2397             'ExtUtils::MM_BeOS' => '6.48',
2398             'ExtUtils::MM_Cygwin' => '6.48',
2399             'ExtUtils::MM_DOS' => '6.48',
2400             'ExtUtils::MM_Darwin' => '6.48',
2401             'ExtUtils::MM_MacOS' => '6.48',
2402             'ExtUtils::MM_NW5' => '6.48',
2403             'ExtUtils::MM_OS2' => '6.48',
2404             'ExtUtils::MM_QNX' => '6.48',
2405             'ExtUtils::MM_UWIN' => '6.48',
2406             'ExtUtils::MM_Unix' => '6.48',
2407             'ExtUtils::MM_VMS' => '6.48',
2408             'ExtUtils::MM_VOS' => '6.48',
2409             'ExtUtils::MM_Win32' => '6.48',
2410             'ExtUtils::MM_Win95' => '6.48',
2411             'ExtUtils::MY' => '6.48',
2412             'ExtUtils::MakeMaker' => '6.48',
2413             'ExtUtils::MakeMaker::Config'=> '6.48',
2414             'ExtUtils::MakeMaker::bytes'=> '6.48',
2415             'ExtUtils::MakeMaker::vmsish'=> '6.48',
2416             'ExtUtils::Manifest' => '1.55',
2417             'ExtUtils::Mkbootstrap' => '6.48',
2418             'ExtUtils::Mksymlists' => '6.48',
2419             'ExtUtils::Packlist' => '1.43',
2420             'ExtUtils::ParseXS' => '2.19',
2421             'ExtUtils::XSSymSet' => '1.1',
2422             'ExtUtils::testlib' => '6.48',
2423             'Fatal' => '1.06',
2424             'Fcntl' => '1.06',
2425             'File::Basename' => '2.77',
2426             'File::CheckTree' => '4.4',
2427             'File::Compare' => '1.1005',
2428             'File::Copy' => '2.13',
2429             'File::DosGlob' => '1.01',
2430             'File::Find' => '1.13',
2431             'File::Glob' => '1.06',
2432             'File::Path' => '2.07_02',
2433             'File::Spec' => '3.29',
2434             'File::Spec::Cygwin' => '3.29',
2435             'File::Spec::Epoc' => '3.29',
2436             'File::Spec::Functions' => '3.29',
2437             'File::Spec::Mac' => '3.29',
2438             'File::Spec::OS2' => '3.29',
2439             'File::Spec::Unix' => '3.29',
2440             'File::Spec::VMS' => '3.29',
2441             'File::Spec::Win32' => '3.29',
2442             'File::Temp' => '0.20',
2443             'File::stat' => '1.01',
2444             'FileCache' => '1.07',
2445             'Filter::Simple' => '0.83',
2446             'Filter::Util::Call' => '1.07',
2447             'FindBin' => '1.49',
2448             'GDBM_File' => '1.09',
2449             'Getopt::Long' => '2.37',
2450             'Getopt::Std' => '1.06',
2451             'Hash::Util' => '0.06',
2452             'IO' => '1.23',
2453             'IO::Dir' => '1.06',
2454             'IO::File' => '1.14',
2455             'IO::Handle' => '1.27',
2456             'IO::Socket' => '1.30',
2457             'IO::Socket::INET' => '1.31',
2458             'IO::Socket::UNIX' => '1.23',
2459             'IPC::Msg' => '2.00',
2460             'IPC::Open2' => '1.03',
2461             'IPC::Open3' => '1.03',
2462             'IPC::Semaphore' => '2.00',
2463             'IPC::SharedMem' => '2.00',
2464             'IPC::SysV' => '2.00',
2465             'List::Util' => '1.19',
2466             'Locale::Maketext' => '1.13',
2467             'Locale::Maketext::Guts'=> '1.13',
2468             'Locale::Maketext::GutsLoader'=> '1.13',
2469             'Math::BigFloat' => '1.60',
2470             'Math::BigInt' => '1.89',
2471             'Math::BigInt::Calc' => '0.52',
2472             'Math::BigRat' => '0.22',
2473             'Math::Complex' => '1.54',
2474             'Math::Trig' => '1.18',
2475             'Module::CoreList' => '2.17',
2476             'Module::Pluggable' => '3.8',
2477             'Module::Pluggable::Object'=> '3.6',
2478             'NDBM_File' => '1.07',
2479             'NEXT' => '0.61',
2480             'Net::Cmd' => '2.29',
2481             'Net::Config' => '1.11',
2482             'Net::Domain' => '2.20',
2483             'Net::FTP' => '2.77',
2484             'Net::FTP::A' => '1.18',
2485             'Net::NNTP' => '2.24',
2486             'Net::POP3' => '2.29',
2487             'Net::Ping' => '2.35',
2488             'Net::SMTP' => '2.31',
2489             'O' => '1.01',
2490             'ODBM_File' => '1.07',
2491             'OS2::DLL' => '1.03',
2492             'OS2::Process' => '1.03',
2493             'Opcode' => '1.0601',
2494             'POSIX' => '1.15',
2495             'PerlIO' => '1.05',
2496             'PerlIO::encoding' => '0.11',
2497             'PerlIO::scalar' => '0.06',
2498             'PerlIO::via' => '0.05',
2499             'Pod::Html' => '1.09',
2500             'Pod::ParseUtils' => '1.35',
2501             'Pod::Parser' => '1.35',
2502             'Pod::Select' => '1.35',
2503             'Pod::Usage' => '1.35',
2504             'SDBM_File' => '1.06',
2505             'Safe' => '2.16',
2506             'Scalar::Util' => '1.19',
2507             'SelfLoader' => '1.17',
2508             'Shell' => '0.72',
2509             'Socket' => '1.81',
2510             'Storable' => '2.19',
2511             'Switch' => '2.13',
2512             'Sys::Syslog' => '0.27',
2513             'Sys::Syslog::win32::Win32'=> undef,
2514             'Term::ANSIColor' => '1.12',
2515             'Term::Cap' => '1.12',
2516             'Term::ReadLine' => '1.03',
2517             'Test::Builder' => '0.80',
2518             'Test::Builder::Module' => '0.80',
2519             'Test::Builder::Tester' => '1.13',
2520             'Test::Harness' => '2.64',
2521             'Test::Harness::Results'=> '0.01_01',
2522             'Test::Harness::Straps' => '0.26_01',
2523             'Test::Harness::Util' => '0.01',
2524             'Test::More' => '0.80',
2525             'Test::Simple' => '0.80',
2526             'Text::Balanced' => '1.98',
2527             'Text::ParseWords' => '3.27',
2528             'Text::Soundex' => '3.03',
2529             'Text::Tabs' => '2007.1117',
2530             'Text::Wrap' => '2006.1117',
2531             'Thread' => '2.01',
2532             'Thread::Queue' => '2.11',
2533             'Thread::Semaphore' => '2.09',
2534             'Tie::Handle' => '4.2',
2535             'Tie::Hash' => '1.03',
2536             'Tie::Memoize' => '1.1',
2537             'Tie::RefHash' => '1.38',
2538             'Tie::Scalar' => '1.01',
2539             'Tie::StdHandle' => '4.2',
2540             'Time::HiRes' => '1.9715',
2541             'Time::Local' => '1.1901',
2542             'Time::gmtime' => '1.03',
2543             'Unicode' => '5.1.0',
2544             'Unicode::Normalize' => '1.02',
2545             'Unicode::UCD' => '0.25',
2546             'VMS::DCLsym' => '1.03',
2547             'VMS::Stdio' => '2.4',
2548             'Win32' => '0.38',
2549             'Win32API::File' => '0.1001_01',
2550             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2551             'Win32CORE' => '0.02',
2552             'XS::APItest' => '0.15',
2553             'XS::Typemap' => '0.03',
2554             'XSLoader' => '0.10',
2555             'attributes' => '0.09',
2556             'autouse' => '1.06',
2557             'base' => '2.13',
2558             'bigint' => '0.23',
2559             'bignum' => '0.23',
2560             'bigrat' => '0.23',
2561             'blib' => '1.04',
2562             'charnames' => '1.06',
2563             'constant' => '1.17',
2564             'diagnostics' => '1.16',
2565             'encoding' => '2.6_01',
2566             'fields' => '2.12',
2567             'filetest' => '1.02',
2568             'lib' => '0.61',
2569             'open' => '1.06',
2570             'ops' => '1.02',
2571             'overload' => '1.06',
2572             're' => '0.0601',
2573             'sigtrap' => '1.04',
2574             'threads' => '1.71',
2575             'threads::shared' => '1.27',
2576             'utf8' => '1.07',
2577             'warnings' => '1.05_01',
2578             },
2579             removed => {
2580             }
2581             },
2582             5.009 => {
2583             delta_from => 5.008002,
2584             changed => {
2585             'B' => '1.03',
2586             'B::C' => '1.03',
2587             'B::Concise' => '0.57',
2588             'B::Deparse' => '0.65',
2589             'DB_File' => '1.806',
2590             'Devel::PPPort' => '2.008',
2591             'English' => '1.02',
2592             'Fatal' => '1.04',
2593             'OS2::DLL' => '1.02',
2594             'Opcode' => '1.06',
2595             'Time::HiRes' => '1.51',
2596             'Unicode::Collate' => '0.28',
2597             'Unicode::Normalize' => '0.23',
2598             'XSLoader' => '0.03',
2599             'assertions' => '0.01',
2600             'assertions::activate' => '0.01',
2601             'overload' => '1.02',
2602             'version' => '0.29',
2603             },
2604             removed => {
2605             }
2606             },
2607             5.009001 => {
2608             delta_from => 5.008004,
2609             changed => {
2610             'B' => '1.05',
2611             'B::Assembler' => '0.06',
2612             'B::C' => '1.04',
2613             'B::Concise' => '0.59',
2614             'B::Debug' => '1.02',
2615             'B::Deparse' => '0.65',
2616             'DB_File' => '1.808_01',
2617             'Devel::PPPort' => '2.011_01',
2618             'Digest' => '1.05',
2619             'DynaLoader' => '1.04',
2620             'English' => '1.02',
2621             'Exporter::Heavy' => '5.567',
2622             'ExtUtils::Command' => '1.07',
2623             'ExtUtils::Liblist::Kid'=> '1.3',
2624             'ExtUtils::MM_Any' => '0.0901',
2625             'ExtUtils::MM_Cygwin' => '1.07',
2626             'ExtUtils::MM_NW5' => '2.07_01',
2627             'ExtUtils::MM_Unix' => '1.45_01',
2628             'ExtUtils::MM_VMS' => '5.71_01',
2629             'ExtUtils::MM_Win32' => '1.10_01',
2630             'ExtUtils::MM_Win95' => '0.03',
2631             'ExtUtils::MakeMaker' => '6.21_02',
2632             'ExtUtils::Manifest' => '1.43',
2633             'Fatal' => '1.04',
2634             'Getopt::Long' => '2.3401',
2635             'IO::Handle' => '1.23',
2636             'IO::Pipe' => '1.122',
2637             'IPC::Open3' => '1.0105',
2638             'MIME::Base64' => '3.00_01',
2639             'MIME::QuotedPrint' => '3.00',
2640             'Memoize' => '1.01_01',
2641             'ODBM_File' => '1.04',
2642             'Opcode' => '1.06',
2643             'POSIX' => '1.07',
2644             'Storable' => '2.11',
2645             'Time::HiRes' => '1.56',
2646             'Time::Local' => '1.07_94',
2647             'UNIVERSAL' => '1.02',
2648             'Unicode' => '4.0.0',
2649             'Unicode::UCD' => '0.21',
2650             'XSLoader' => '0.03',
2651             'assertions' => '0.01',
2652             'assertions::activate' => '0.01',
2653             'base' => '2.04',
2654             'if' => '0.0401',
2655             'open' => '1.02',
2656             'overload' => '1.02',
2657             'threads' => '1.02',
2658             'utf8' => '1.02',
2659             'version' => '0.36',
2660             },
2661             removed => {
2662             }
2663             },
2664             5.009002 => {
2665             delta_from => 5.008007,
2666             changed => {
2667             'B' => '1.07',
2668             'B::Concise' => '0.64',
2669             'B::Deparse' => '0.69',
2670             'B::Disassembler' => '1.03',
2671             'B::Terse' => '1.02',
2672             'CGI' => '3.07',
2673             'Config::Extensions' => '0.01',
2674             'Devel::DProf' => '20030813.00',
2675             'DynaLoader' => '1.07',
2676             'Encode' => '2.09',
2677             'Encode::Alias' => '2.02',
2678             'English' => '1.03',
2679             'Exporter' => '5.59',
2680             'Exporter::Heavy' => '5.59',
2681             'ExtUtils::Command' => '1.07',
2682             'ExtUtils::Command::MM' => '0.03_01',
2683             'ExtUtils::Embed' => '1.26',
2684             'ExtUtils::Liblist::Kid'=> '1.3',
2685             'ExtUtils::MM_Any' => '0.10',
2686             'ExtUtils::MM_Cygwin' => '1.07',
2687             'ExtUtils::MM_MacOS' => '1.08',
2688             'ExtUtils::MM_NW5' => '2.07',
2689             'ExtUtils::MM_Unix' => '1.46_01',
2690             'ExtUtils::MM_VMS' => '5.71',
2691             'ExtUtils::MM_Win32' => '1.10',
2692             'ExtUtils::MM_Win95' => '0.03',
2693             'ExtUtils::MakeMaker' => '6.25',
2694             'ExtUtils::Manifest' => '1.44',
2695             'Fatal' => '1.04',
2696             'File::Path' => '1.06',
2697             'FileCache' => '1.04_01',
2698             'Getopt::Long' => '2.3401',
2699             'IO::File' => '1.10',
2700             'IO::Socket::INET' => '1.27',
2701             'Math::BigFloat' => '1.49',
2702             'Math::BigInt' => '1.75',
2703             'Math::BigInt::Calc' => '0.45',
2704             'Math::BigRat' => '0.14',
2705             'Memoize' => '1.01_01',
2706             'Module::CoreList' => '1.99',
2707             'NEXT' => '0.60_01',
2708             'Opcode' => '1.06',
2709             'Pod::Html' => '1.0502',
2710             'Scalar::Util' => '1.14_1',
2711             'Storable' => '2.14',
2712             'Symbol' => '1.05',
2713             'Test::Harness' => '2.46',
2714             'Test::Harness::Straps' => '0.20_01',
2715             'Text::Balanced' => '1.95_01',
2716             'Text::Wrap' => '2001.09292',
2717             'UNIVERSAL' => '1.02',
2718             'Unicode' => '4.0.1',
2719             'Unicode::Normalize' => '0.30',
2720             'Unicode::UCD' => '0.22',
2721             'Win32' => '0.23',
2722             'XS::APItest' => '0.05',
2723             'XSLoader' => '0.03',
2724             'assertions' => '0.01',
2725             'assertions::activate' => '0.01',
2726             'base' => '2.06',
2727             'bigint' => '0.06',
2728             'bignum' => '0.16',
2729             'bigrat' => '0.07',
2730             'bytes' => '1.01',
2731             'encoding::warnings' => '0.05',
2732             'if' => '0.0401',
2733             're' => '0.05',
2734             'threads::shared' => '0.92',
2735             'utf8' => '1.04',
2736             'version' => '0.42',
2737             'warnings' => '1.04',
2738             },
2739             removed => {
2740             'Test::Harness::Point' => 1,
2741             }
2742             },
2743             5.009003 => {
2744             delta_from => 5.008008,
2745             changed => {
2746             'Archive::Tar' => '1.26_01',
2747             'Archive::Tar::Constant'=> '0.02',
2748             'Archive::Tar::File' => '0.02',
2749             'AutoSplit' => '1.04_01',
2750             'B' => '1.10',
2751             'B::Bblock' => '1.02',
2752             'B::Bytecode' => '1.01',
2753             'B::C' => '1.04',
2754             'B::CC' => '1.00',
2755             'B::Concise' => '0.67',
2756             'B::Debug' => '1.02',
2757             'B::Deparse' => '0.73',
2758             'B::Lint' => '1.04',
2759             'B::Terse' => '1.03',
2760             'CGI' => '3.15_01',
2761             'CPAN' => '1.83_58',
2762             'CPAN::Debug' => '4.44',
2763             'CPAN::FirstTime' => '4.50',
2764             'CPAN::HandleConfig' => '4.31',
2765             'CPAN::Nox' => '2.31',
2766             'CPAN::Tarzip' => '3.36',
2767             'CPAN::Version' => '2.55',
2768             'Carp' => '1.05',
2769             'Carp::Heavy' => '1.05',
2770             'Compress::Zlib' => '2.000_07',
2771             'Compress::Zlib::Common'=> '2.000_07',
2772             'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2773             'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2774             'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2775             'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2776             'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2777             'Compress::Zlib::FileConstants'=> '2.000_07',
2778             'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2779             'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2780             'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2781             'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2782             'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2783             'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2784             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2785             'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2786             'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2787             'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2788             'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2789             'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2790             'Compress::Zlib::ParseParameters'=> '2.000_07',
2791             'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2792             'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2793             'Config::Extensions' => '0.01',
2794             'Cwd' => '3.15',
2795             'Devel::PPPort' => '3.08',
2796             'Digest::SHA' => '5.32',
2797             'DirHandle' => '1.01',
2798             'DynaLoader' => '1.07',
2799             'Encode' => '2.14',
2800             'Encode::CN::HZ' => '2.02',
2801             'Encode::MIME::Header' => '2.02',
2802             'English' => '1.04',
2803             'Exporter' => '5.59',
2804             'Exporter::Heavy' => '5.59',
2805             'ExtUtils::CBuilder' => '0.15',
2806             'ExtUtils::CBuilder::Base'=> '0.12',
2807             'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2808             'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2809             'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2810             'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2811             'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2812             'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2813             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2814             'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2815             'ExtUtils::Command::MM' => '0.05_01',
2816             'ExtUtils::Constant' => '0.2',
2817             'ExtUtils::Constant::Base'=> '0.02',
2818             'ExtUtils::Constant::ProxySubs'=> '0.01',
2819             'ExtUtils::Constant::XS'=> '0.02',
2820             'ExtUtils::MM_Any' => '0.13_01',
2821             'ExtUtils::MM_Unix' => '1.50_01',
2822             'ExtUtils::MakeMaker' => '6.30_01',
2823             'ExtUtils::ParseXS' => '2.15_02',
2824             'Fatal' => '1.04',
2825             'File::Compare' => '1.1005',
2826             'File::Spec' => '3.15',
2827             'File::Temp' => '0.16_01',
2828             'IO::File' => '1.13_01',
2829             'IO::Handle' => '1.26',
2830             'IO::Socket' => '1.29_01',
2831             'IO::Socket::INET' => '1.29_02',
2832             'IO::Socket::UNIX' => '1.22_01',
2833             'IO::Zlib' => '1.04_02',
2834             'Locale::Maketext' => '1.10_01',
2835             'Math::BigInt::FastCalc'=> '0.10',
2836             'Memoize' => '1.01_01',
2837             'Module::CoreList' => '2.02',
2838             'Moped::Msg' => '0.01',
2839             'NEXT' => '0.60_01',
2840             'Net::Cmd' => '2.26_01',
2841             'Net::Domain' => '2.19_01',
2842             'Net::Ping' => '2.31_04',
2843             'Opcode' => '1.08',
2844             'POSIX' => '1.10',
2845             'Pod::Escapes' => '1.04',
2846             'Pod::Man' => '2.04',
2847             'Pod::Perldoc' => '3.14_01',
2848             'Pod::Simple' => '3.04',
2849             'Pod::Simple::BlackBox' => undef,
2850             'Pod::Simple::Checker' => '2.02',
2851             'Pod::Simple::Debug' => undef,
2852             'Pod::Simple::DumpAsText'=> '2.02',
2853             'Pod::Simple::DumpAsXML'=> '2.02',
2854             'Pod::Simple::HTML' => '3.03',
2855             'Pod::Simple::HTMLBatch'=> '3.02',
2856             'Pod::Simple::HTMLLegacy'=> '5.01',
2857             'Pod::Simple::LinkSection'=> undef,
2858             'Pod::Simple::Methody' => '2.02',
2859             'Pod::Simple::Progress' => '1.01',
2860             'Pod::Simple::PullParser'=> '2.02',
2861             'Pod::Simple::PullParserEndToken'=> undef,
2862             'Pod::Simple::PullParserStartToken'=> undef,
2863             'Pod::Simple::PullParserTextToken'=> undef,
2864             'Pod::Simple::PullParserToken'=> '2.02',
2865             'Pod::Simple::RTF' => '2.02',
2866             'Pod::Simple::Search' => '3.04',
2867             'Pod::Simple::SimpleTree'=> '2.02',
2868             'Pod::Simple::Text' => '2.02',
2869             'Pod::Simple::TextContent'=> '2.02',
2870             'Pod::Simple::TiedOutFH'=> undef,
2871             'Pod::Simple::Transcode'=> undef,
2872             'Pod::Simple::TranscodeDumb'=> '2.02',
2873             'Pod::Simple::TranscodeSmart'=> undef,
2874             'Pod::Simple::XMLOutStream'=> '2.02',
2875             'Pod::Text' => '3.01',
2876             'Pod::Text::Color' => '2.01',
2877             'Pod::Text::Overstrike' => '2',
2878             'Pod::Text::Termcap' => '2.01',
2879             'Pod::Usage' => '1.33_01',
2880             'SelfLoader' => '1.0905',
2881             'Storable' => '2.15_02',
2882             'Test::Builder::Module' => '0.03',
2883             'Text::Balanced' => '1.95_01',
2884             'Tie::File' => '0.97_01',
2885             'UNIVERSAL' => '1.03',
2886             'XS::APItest' => '0.09',
2887             'assertions' => '0.02',
2888             'assertions::activate' => '0.02',
2889             'assertions::compat' => undef,
2890             'constant' => '1.07',
2891             'encoding::warnings' => '0.05',
2892             'feature' => '1.00',
2893             're' => '0.06',
2894             'sort' => '2.00',
2895             'version' => '0.53',
2896             },
2897             removed => {
2898             }
2899             },
2900             5.009004 => {
2901             delta_from => 5.009003,
2902             changed => {
2903             'Archive::Tar' => '1.30_01',
2904             'AutoLoader' => '5.61',
2905             'B' => '1.11',
2906             'B::Bytecode' => '1.02',
2907             'B::C' => '1.05',
2908             'B::Concise' => '0.69',
2909             'B::Deparse' => '0.76',
2910             'B::Lint' => '1.08',
2911             'Benchmark' => '1.08',
2912             'CGI' => '3.20',
2913             'CGI::Cookie' => '1.27',
2914             'CGI::Fast' => '1.07',
2915             'CPAN' => '1.87_55',
2916             'CPAN::Debug' => '5.400561',
2917             'CPAN::FirstTime' => '5.400742',
2918             'CPAN::HandleConfig' => '5.400740',
2919             'CPAN::Nox' => '5.400561',
2920             'CPAN::Tarzip' => '5.400714',
2921             'CPAN::Version' => '5.400561',
2922             'Compress::Raw::Zlib' => '2.000_13',
2923             'Compress::Zlib' => '2.000_13',
2924             'Cwd' => '3.19',
2925             'Devel::PPPort' => '3.10',
2926             'Digest' => '1.15',
2927             'Digest::SHA' => '5.43',
2928             'Encode' => '2.18_01',
2929             'Encode::Alias' => '2.06',
2930             'Encode::Byte' => '2.02',
2931             'Encode::CJKConstants' => '2.02',
2932             'Encode::CN' => '2.02',
2933             'Encode::CN::HZ' => '2.04',
2934             'Encode::Config' => '2.03',
2935             'Encode::EBCDIC' => '2.02',
2936             'Encode::Encoder' => '2.01',
2937             'Encode::Encoding' => '2.04',
2938             'Encode::Guess' => '2.02',
2939             'Encode::JP' => '2.03',
2940             'Encode::JP::H2Z' => '2.02',
2941             'Encode::JP::JIS7' => '2.02',
2942             'Encode::KR' => '2.02',
2943             'Encode::KR::2022_KR' => '2.02',
2944             'Encode::MIME::Header' => '2.04',
2945             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2946             'Encode::Symbol' => '2.02',
2947             'Encode::TW' => '2.02',
2948             'Encode::Unicode' => '2.03',
2949             'Encode::Unicode::UTF7' => '2.04',
2950             'ExtUtils::CBuilder' => '0.18',
2951             'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2952             'ExtUtils::Constant::Base'=> '0.03',
2953             'ExtUtils::Constant::ProxySubs'=> '0.03',
2954             'ExtUtils::Install' => '1.41',
2955             'ExtUtils::Installed' => '1.41',
2956             'ExtUtils::MM_Any' => '0.13_02',
2957             'ExtUtils::MM_NW5' => '2.08_01',
2958             'ExtUtils::MM_Unix' => '1.5003',
2959             'ExtUtils::MM_VMS' => '5.73_03',
2960             'ExtUtils::MM_Win32' => '1.12_02',
2961             'ExtUtils::MM_Win95' => '0.04_01',
2962             'ExtUtils::MakeMaker' => '6.30_02',
2963             'ExtUtils::Manifest' => '1.46_01',
2964             'ExtUtils::Mkbootstrap' => '1.15_01',
2965             'ExtUtils::Mksymlists' => '1.19_01',
2966             'ExtUtils::Packlist' => '1.41',
2967             'File::Basename' => '2.75',
2968             'File::Find' => '1.11',
2969             'File::GlobMapper' => '0.000_02',
2970             'File::Spec' => '3.19',
2971             'FileCache' => '1.07',
2972             'Getopt::Long' => '2.3501',
2973             'Hash::Util' => '0.07',
2974             'Hash::Util::FieldHash' => '0.01',
2975             'IO' => '1.23_01',
2976             'IO::Compress::Adapter::Deflate'=> '2.000_13',
2977             'IO::Compress::Adapter::Identity'=> '2.000_13',
2978             'IO::Compress::Base' => '2.000_13',
2979             'IO::Compress::Base::Common'=> '2.000_13',
2980             'IO::Compress::Deflate' => '2.000_13',
2981             'IO::Compress::Gzip' => '2.000_13',
2982             'IO::Compress::Gzip::Constants'=> '2.000_13',
2983             'IO::Compress::RawDeflate'=> '2.000_13',
2984             'IO::Compress::Zip' => '2.000_13',
2985             'IO::Compress::Zip::Constants'=> '2.000_13',
2986             'IO::Compress::Zlib::Constants'=> '2.000_13',
2987             'IO::Compress::Zlib::Extra'=> '2.000_13',
2988             'IO::Dir' => '1.06',
2989             'IO::File' => '1.14',
2990             'IO::Handle' => '1.27',
2991             'IO::Socket' => '1.30_01',
2992             'IO::Socket::INET' => '1.31',
2993             'IO::Socket::UNIX' => '1.23',
2994             'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2995             'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2996             'IO::Uncompress::AnyInflate'=> '2.000_13',
2997             'IO::Uncompress::AnyUncompress'=> '2.000_13',
2998             'IO::Uncompress::Base' => '2.000_13',
2999             'IO::Uncompress::Gunzip'=> '2.000_13',
3000             'IO::Uncompress::Inflate'=> '2.000_13',
3001             'IO::Uncompress::RawInflate'=> '2.000_13',
3002             'IO::Uncompress::Unzip' => '2.000_13',
3003             'MIME::Base64' => '3.07_01',
3004             'Math::Complex' => '1.36',
3005             'Math::Trig' => '1.04',
3006             'Module::Build' => '0.2805',
3007             'Module::Build::Base' => undef,
3008             'Module::Build::Compat' => '0.03',
3009             'Module::Build::ConfigData'=> undef,
3010             'Module::Build::Cookbook'=> undef,
3011             'Module::Build::ModuleInfo'=> undef,
3012             'Module::Build::Notes' => undef,
3013             'Module::Build::PPMMaker'=> undef,
3014             'Module::Build::Platform::Amiga'=> undef,
3015             'Module::Build::Platform::Default'=> undef,
3016             'Module::Build::Platform::EBCDIC'=> undef,
3017             'Module::Build::Platform::MPEiX'=> undef,
3018             'Module::Build::Platform::MacOS'=> undef,
3019             'Module::Build::Platform::RiscOS'=> undef,
3020             'Module::Build::Platform::Unix'=> undef,
3021             'Module::Build::Platform::VMS'=> undef,
3022             'Module::Build::Platform::VOS'=> undef,
3023             'Module::Build::Platform::Windows'=> undef,
3024             'Module::Build::Platform::aix'=> undef,
3025             'Module::Build::Platform::cygwin'=> undef,
3026             'Module::Build::Platform::darwin'=> undef,
3027             'Module::Build::Platform::os2'=> undef,
3028             'Module::Build::PodParser'=> undef,
3029             'Module::Build::Version'=> '0',
3030             'Module::Build::YAML' => '0.50',
3031             'Module::CoreList' => '2.08',
3032             'Module::Load' => '0.10',
3033             'Module::Loaded' => '0.01',
3034             'Package::Constants' => '0.01',
3035             'Pod::Html' => '1.07',
3036             'Pod::Man' => '2.09',
3037             'Pod::Text' => '3.07',
3038             'Pod::Text::Color' => '2.03',
3039             'Pod::Text::Termcap' => '2.03',
3040             'SDBM_File' => '1.06',
3041             'Shell' => '0.7',
3042             'Sys::Syslog' => '0.17',
3043             'Term::ANSIColor' => '1.11',
3044             'Test::Builder' => '0.33',
3045             'Test::Builder::Tester' => '1.04',
3046             'Test::Harness' => '2.62',
3047             'Test::Harness::Util' => '0.01',
3048             'Test::More' => '0.64',
3049             'Test::Simple' => '0.64',
3050             'Text::Balanced' => '1.98_01',
3051             'Text::ParseWords' => '3.25',
3052             'Text::Tabs' => '2007.071101',
3053             'Text::Wrap' => '2006.0711',
3054             'Tie::RefHash' => '1.34_01',
3055             'Time::HiRes' => '1.87',
3056             'Time::Local' => '1.13',
3057             'Time::gmtime' => '1.03',
3058             'UNIVERSAL' => '1.04',
3059             'Unicode::Normalize' => '1.01',
3060             'Win32API::File' => '0.1001',
3061             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
3062             'assertions' => '0.03',
3063             'assertions::compat' => '0.02',
3064             'autouse' => '1.06',
3065             'diagnostics' => '1.16',
3066             'encoding' => '2.04',
3067             'encoding::warnings' => '0.10',
3068             'feature' => '1.01',
3069             're' => '0.0601',
3070             'threads' => '1.38',
3071             'threads::shared' => '0.94_01',
3072             'version' => '0.67',
3073             },
3074             removed => {
3075             'Compress::Zlib::Common'=> 1,
3076             'Compress::Zlib::Compress::Gzip::Constants'=> 1,
3077             'Compress::Zlib::Compress::Zip::Constants'=> 1,
3078             'Compress::Zlib::CompressPlugin::Deflate'=> 1,
3079             'Compress::Zlib::CompressPlugin::Identity'=> 1,
3080             'Compress::Zlib::File::GlobMapper'=> 1,
3081             'Compress::Zlib::FileConstants'=> 1,
3082             'Compress::Zlib::IO::Compress::Base'=> 1,
3083             'Compress::Zlib::IO::Compress::Deflate'=> 1,
3084             'Compress::Zlib::IO::Compress::Gzip'=> 1,
3085             'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
3086             'Compress::Zlib::IO::Compress::Zip'=> 1,
3087             'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
3088             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
3089             'Compress::Zlib::IO::Uncompress::Base'=> 1,
3090             'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
3091             'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
3092             'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
3093             'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
3094             'Compress::Zlib::ParseParameters'=> 1,
3095             'Compress::Zlib::UncompressPlugin::Identity'=> 1,
3096             'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
3097             }
3098             },
3099             5.009005 => {
3100             delta_from => 5.009004,
3101             changed => {
3102             'Archive::Extract' => '0.22_01',
3103             'Archive::Tar' => '1.32',
3104             'Attribute::Handlers' => '0.78_06',
3105             'AutoLoader' => '5.63',
3106             'AutoSplit' => '1.05',
3107             'B' => '1.16',
3108             'B::Concise' => '0.72',
3109             'B::Debug' => '1.05',
3110             'B::Deparse' => '0.82',
3111             'B::Lint' => '1.09',
3112             'B::Terse' => '1.05',
3113             'Benchmark' => '1.1',
3114             'CGI' => '3.29',
3115             'CGI::Cookie' => '1.28',
3116             'CGI::Util' => '1.5_01',
3117             'CPAN' => '1.9102',
3118             'CPAN::Debug' => '5.400955',
3119             'CPAN::FirstTime' => '5.401669',
3120             'CPAN::HandleConfig' => '5.401744',
3121             'CPAN::Kwalify' => '5.401418',
3122             'CPAN::Nox' => '5.400844',
3123             'CPAN::Queue' => '5.401704',
3124             'CPAN::Tarzip' => '5.401717',
3125             'CPAN::Version' => '5.401387',
3126             'CPANPLUS' => '0.81_01',
3127             'CPANPLUS::Backend' => undef,
3128             'CPANPLUS::Backend::RV' => undef,
3129             'CPANPLUS::Config' => undef,
3130             'CPANPLUS::Configure' => undef,
3131             'CPANPLUS::Configure::Setup'=> undef,
3132             'CPANPLUS::Dist' => undef,
3133             'CPANPLUS::Dist::Base' => '0.01',
3134             'CPANPLUS::Dist::Build' => '0.06_01',
3135             'CPANPLUS::Dist::Build::Constants'=> '0.01',
3136             'CPANPLUS::Dist::MM' => undef,
3137             'CPANPLUS::Dist::Sample'=> undef,
3138             'CPANPLUS::Error' => undef,
3139             'CPANPLUS::Internals' => '0.81_01',
3140             'CPANPLUS::Internals::Constants'=> '0.01',
3141             'CPANPLUS::Internals::Constants::Report'=> '0.01',
3142             'CPANPLUS::Internals::Extract'=> undef,
3143             'CPANPLUS::Internals::Fetch'=> undef,
3144             'CPANPLUS::Internals::Report'=> undef,
3145             'CPANPLUS::Internals::Search'=> undef,
3146             'CPANPLUS::Internals::Source'=> undef,
3147             'CPANPLUS::Internals::Utils'=> undef,
3148             'CPANPLUS::Internals::Utils::Autoflush'=> undef,
3149             'CPANPLUS::Module' => undef,
3150             'CPANPLUS::Module::Author'=> undef,
3151             'CPANPLUS::Module::Author::Fake'=> undef,
3152             'CPANPLUS::Module::Checksums'=> undef,
3153             'CPANPLUS::Module::Fake'=> undef,
3154             'CPANPLUS::Module::Signature'=> undef,
3155             'CPANPLUS::Selfupdate' => undef,
3156             'CPANPLUS::Shell' => undef,
3157             'CPANPLUS::Shell::Classic'=> '0.0562',
3158             'CPANPLUS::Shell::Default'=> '0.81_01',
3159             'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
3160             'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
3161             'CPANPLUS::inc' => undef,
3162             'Carp' => '1.07',
3163             'Carp::Heavy' => '1.07',
3164             'Compress::Raw::Zlib' => '2.005',
3165             'Compress::Zlib' => '2.005',
3166             'Cwd' => '3.25',
3167             'DBM_Filter' => '0.02',
3168             'DB_File' => '1.815',
3169             'Data::Dumper' => '2.121_13',
3170             'Devel::InnerPackage' => '0.3',
3171             'Devel::PPPort' => '3.11_01',
3172             'Digest::MD5' => '2.36_01',
3173             'Digest::SHA' => '5.44',
3174             'DynaLoader' => '1.08',
3175             'Encode' => '2.23',
3176             'Encode::Alias' => '2.07',
3177             'Encode::Byte' => '2.03',
3178             'Encode::Config' => '2.04',
3179             'Encode::Encoding' => '2.05',
3180             'Encode::GSM0338' => '2.00',
3181             'Encode::JP::JIS7' => '2.03',
3182             'Encode::MIME::Header' => '2.05',
3183             'Encode::MIME::Name' => '1.01',
3184             'Encode::Unicode' => '2.05',
3185             'Errno' => '1.10',
3186             'Exporter' => '5.60',
3187             'Exporter::Heavy' => '5.60',
3188             'ExtUtils::CBuilder' => '0.19',
3189             'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3190             'ExtUtils::Command' => '1.13',
3191             'ExtUtils::Command::MM' => '0.07',
3192             'ExtUtils::Constant::Base'=> '0.04',
3193             'ExtUtils::Install' => '1.41_01',
3194             'ExtUtils::Liblist' => '1.03',
3195             'ExtUtils::Liblist::Kid'=> '1.33',
3196             'ExtUtils::MM' => '0.07',
3197             'ExtUtils::MM_AIX' => '0.05',
3198             'ExtUtils::MM_Any' => '0.15',
3199             'ExtUtils::MM_BeOS' => '1.07',
3200             'ExtUtils::MM_Cygwin' => '1.1',
3201             'ExtUtils::MM_DOS' => '0.04',
3202             'ExtUtils::MM_MacOS' => '1.1',
3203             'ExtUtils::MM_NW5' => '2.1',
3204             'ExtUtils::MM_OS2' => '1.07',
3205             'ExtUtils::MM_QNX' => '0.04',
3206             'ExtUtils::MM_UWIN' => '0.04',
3207             'ExtUtils::MM_Unix' => '1.54_01',
3208             'ExtUtils::MM_VMS' => '5.76',
3209             'ExtUtils::MM_VOS' => '0.04',
3210             'ExtUtils::MM_Win32' => '1.15',
3211             'ExtUtils::MM_Win95' => '0.06',
3212             'ExtUtils::MY' => '0.03',
3213             'ExtUtils::MakeMaker' => '6.36',
3214             'ExtUtils::MakeMaker::Config'=> '0.04',
3215             'ExtUtils::MakeMaker::bytes'=> '0.03',
3216             'ExtUtils::MakeMaker::vmsish'=> '0.03',
3217             'ExtUtils::Manifest' => '1.51_01',
3218             'ExtUtils::Mkbootstrap' => '1.17',
3219             'ExtUtils::Mksymlists' => '1.21',
3220             'ExtUtils::ParseXS' => '2.18',
3221             'ExtUtils::XSSymSet' => '1.1',
3222             'ExtUtils::testlib' => '1.17',
3223             'Fatal' => '1.05',
3224             'Fcntl' => '1.06',
3225             'File::Basename' => '2.76',
3226             'File::Copy' => '2.10',
3227             'File::Fetch' => '0.10',
3228             'File::Glob' => '1.06',
3229             'File::Path' => '2.01',
3230             'File::Spec' => '3.25',
3231             'File::Spec::Cygwin' => '1.1_01',
3232             'File::Spec::VMS' => '1.4_01',
3233             'File::Temp' => '0.18',
3234             'Filter::Util::Call' => '1.0602',
3235             'FindBin' => '1.49',
3236             'Getopt::Long' => '2.36',
3237             'Hash::Util::FieldHash' => '1.01',
3238             'IO::Compress::Adapter::Deflate'=> '2.005',
3239             'IO::Compress::Adapter::Identity'=> '2.005',
3240             'IO::Compress::Base' => '2.005',
3241             'IO::Compress::Base::Common'=> '2.005',
3242             'IO::Compress::Deflate' => '2.005',
3243             'IO::Compress::Gzip' => '2.005',
3244             'IO::Compress::Gzip::Constants'=> '2.005',
3245             'IO::Compress::RawDeflate'=> '2.005',
3246             'IO::Compress::Zip' => '2.005',
3247             'IO::Compress::Zip::Constants'=> '2.005',
3248             'IO::Compress::Zlib::Constants'=> '2.005',
3249             'IO::Compress::Zlib::Extra'=> '2.005',
3250             'IO::Uncompress::Adapter::Identity'=> '2.005',
3251             'IO::Uncompress::Adapter::Inflate'=> '2.005',
3252             'IO::Uncompress::AnyInflate'=> '2.005',
3253             'IO::Uncompress::AnyUncompress'=> '2.005',
3254             'IO::Uncompress::Base' => '2.005',
3255             'IO::Uncompress::Gunzip'=> '2.005',
3256             'IO::Uncompress::Inflate'=> '2.005',
3257             'IO::Uncompress::RawInflate'=> '2.005',
3258             'IO::Uncompress::Unzip' => '2.005',
3259             'IO::Zlib' => '1.05_01',
3260             'IPC::Cmd' => '0.36_01',
3261             'List::Util' => '1.19',
3262             'Locale::Maketext::Simple'=> '0.18',
3263             'Log::Message' => '0.01',
3264             'Log::Message::Config' => '0.01',
3265             'Log::Message::Handlers'=> undef,
3266             'Log::Message::Item' => undef,
3267             'Log::Message::Simple' => '0.0201',
3268             'Math::BigFloat' => '1.58',
3269             'Math::BigInt' => '1.87',
3270             'Math::BigInt::Calc' => '0.51',
3271             'Math::BigInt::FastCalc'=> '0.15_01',
3272             'Math::BigRat' => '0.19',
3273             'Math::Complex' => '1.37',
3274             'Memoize' => '1.01_02',
3275             'Module::Build' => '0.2808',
3276             'Module::Build::Config' => undef,
3277             'Module::Build::Version'=> '0.7203',
3278             'Module::CoreList' => '2.12',
3279             'Module::Load::Conditional'=> '0.16',
3280             'Module::Pluggable' => '3.6',
3281             'Module::Pluggable::Object'=> '3.6',
3282             'NDBM_File' => '1.07',
3283             'Net::Cmd' => '2.28',
3284             'Net::Config' => '1.11',
3285             'Net::Domain' => '2.20',
3286             'Net::FTP' => '2.77',
3287             'Net::FTP::A' => '1.18',
3288             'Net::NNTP' => '2.24',
3289             'Net::POP3' => '2.29',
3290             'Net::SMTP' => '2.31',
3291             'ODBM_File' => '1.07',
3292             'OS2::DLL' => '1.03',
3293             'Object::Accessor' => '0.32',
3294             'Opcode' => '1.09',
3295             'POSIX' => '1.13',
3296             'Params::Check' => '0.26',
3297             'PerlIO::encoding' => '0.10',
3298             'PerlIO::scalar' => '0.05',
3299             'PerlIO::via' => '0.04',
3300             'Pod::Html' => '1.08',
3301             'Pod::Man' => '2.12',
3302             'Pod::ParseUtils' => '1.35',
3303             'Pod::Parser' => '1.35',
3304             'Pod::Select' => '1.35',
3305             'Pod::Simple' => '3.05',
3306             'Pod::Text' => '3.08',
3307             'Pod::Usage' => '1.35',
3308             'Scalar::Util' => '1.19',
3309             'SelfLoader' => '1.11',
3310             'Shell' => '0.72_01',
3311             'Socket' => '1.79',
3312             'Storable' => '2.16',
3313             'Switch' => '2.13',
3314             'Sys::Syslog' => '0.18_01',
3315             'Term::ANSIColor' => '1.12',
3316             'Term::UI' => '0.14_01',
3317             'Term::UI::History' => undef,
3318             'Test::Builder' => '0.70',
3319             'Test::Builder::Module' => '0.68',
3320             'Test::Builder::Tester' => '1.07',
3321             'Test::Harness' => '2.64',
3322             'Test::Harness::Results'=> '0.01',
3323             'Test::More' => '0.70',
3324             'Test::Simple' => '0.70',
3325             'Text::Balanced' => '2.0.0',
3326             'Text::Soundex' => '3.02',
3327             'Text::Tabs' => '2007.1117',
3328             'Text::Wrap' => '2006.1117',
3329             'Thread' => '3.02',
3330             'Tie::File' => '0.97_02',
3331             'Tie::Hash::NamedCapture'=> '0.06',
3332             'Tie::Memoize' => '1.1',
3333             'Tie::RefHash' => '1.37',
3334             'Time::HiRes' => '1.9707',
3335             'Time::Local' => '1.17',
3336             'Time::Piece' => '1.11_02',
3337             'Time::Seconds' => undef,
3338             'Unicode' => '5.0.0',
3339             'Unicode::Normalize' => '1.02',
3340             'Unicode::UCD' => '0.25',
3341             'VMS::DCLsym' => '1.03',
3342             'Win32' => '0.30',
3343             'Win32API::File' => '0.1001_01',
3344             'Win32CORE' => '0.02',
3345             'XS::APItest' => '0.12',
3346             'XSLoader' => '0.08',
3347             'attributes' => '0.08',
3348             'base' => '2.12',
3349             'bigint' => '0.22',
3350             'bignum' => '0.22',
3351             'bigrat' => '0.22',
3352             'bytes' => '1.03',
3353             'charnames' => '1.06',
3354             'constant' => '1.10',
3355             'diagnostics' => '1.17',
3356             'encoding' => '2.06',
3357             'encoding::warnings' => '0.11',
3358             'feature' => '1.10',
3359             'fields' => '2.12',
3360             'less' => '0.02',
3361             'mro' => '1.00',
3362             'overload' => '1.06',
3363             're' => '0.08',
3364             'sigtrap' => '1.04',
3365             'sort' => '2.01',
3366             'strict' => '1.04',
3367             'threads' => '1.63',
3368             'threads::shared' => '1.12',
3369             'utf8' => '1.07',
3370             'version' => '0.7203',
3371             'warnings' => '1.06',
3372             },
3373             removed => {
3374             'B::Asmdata' => 1,
3375             'B::Assembler' => 1,
3376             'B::Bblock' => 1,
3377             'B::Bytecode' => 1,
3378             'B::C' => 1,
3379             'B::CC' => 1,
3380             'B::Disassembler' => 1,
3381             'B::Stackobj' => 1,
3382             'B::Stash' => 1,
3383             'ByteLoader' => 1,
3384             'Thread::Signal' => 1,
3385             'Thread::Specific' => 1,
3386             'assertions' => 1,
3387             'assertions::activate' => 1,
3388             'assertions::compat' => 1,
3389             }
3390             },
3391             5.01 => {
3392             delta_from => 5.009005,
3393             changed => {
3394             'Archive::Extract' => '0.24',
3395             'Archive::Tar' => '1.38',
3396             'Attribute::Handlers' => '0.79',
3397             'B' => '1.17',
3398             'B::Concise' => '0.74',
3399             'B::Deparse' => '0.83',
3400             'CPAN' => '1.9205',
3401             'CPAN::API::HOWTO' => undef,
3402             'CPAN::Debug' => '5.402212',
3403             'CPAN::DeferedCode' => '5.50',
3404             'CPAN::FirstTime' => '5.402229',
3405             'CPAN::HandleConfig' => '5.402212',
3406             'CPAN::Nox' => '5.402411',
3407             'CPAN::Queue' => '5.402212',
3408             'CPAN::Tarzip' => '5.402213',
3409             'CPAN::Version' => '5.5',
3410             'CPANPLUS' => '0.84',
3411             'CPANPLUS::Dist::Build' => '0.06_02',
3412             'CPANPLUS::Internals' => '0.84',
3413             'CPANPLUS::Shell::Default'=> '0.84',
3414             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3415             'Carp' => '1.08',
3416             'Carp::Heavy' => '1.08',
3417             'Compress::Raw::Zlib' => '2.008',
3418             'Compress::Zlib' => '2.008',
3419             'Cwd' => '3.2501',
3420             'DB_File' => '1.816_1',
3421             'Data::Dumper' => '2.121_14',
3422             'Devel::PPPort' => '3.13',
3423             'Digest::SHA' => '5.45',
3424             'Exporter' => '5.62',
3425             'Exporter::Heavy' => '5.62',
3426             'ExtUtils::CBuilder' => '0.21',
3427             'ExtUtils::CBuilder::Base'=> '0.21',
3428             'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3429             'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3430             'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3431             'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3432             'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3433             'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3434             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3435             'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3436             'ExtUtils::Command::MM' => '6.42',
3437             'ExtUtils::Constant::ProxySubs'=> '0.05',
3438             'ExtUtils::Embed' => '1.27',
3439             'ExtUtils::Install' => '1.44',
3440             'ExtUtils::Installed' => '1.43',
3441             'ExtUtils::Liblist' => '6.42',
3442             'ExtUtils::Liblist::Kid'=> '6.42',
3443             'ExtUtils::MM' => '6.42',
3444             'ExtUtils::MM_AIX' => '6.42',
3445             'ExtUtils::MM_Any' => '6.42',
3446             'ExtUtils::MM_BeOS' => '6.42',
3447             'ExtUtils::MM_Cygwin' => '6.42',
3448             'ExtUtils::MM_DOS' => '6.42',
3449             'ExtUtils::MM_MacOS' => '6.42',
3450             'ExtUtils::MM_NW5' => '6.42',
3451             'ExtUtils::MM_OS2' => '6.42',
3452             'ExtUtils::MM_QNX' => '6.42',
3453             'ExtUtils::MM_UWIN' => '6.42',
3454             'ExtUtils::MM_Unix' => '6.42',
3455             'ExtUtils::MM_VMS' => '6.42',
3456             'ExtUtils::MM_VOS' => '6.42',
3457             'ExtUtils::MM_Win32' => '6.42',
3458             'ExtUtils::MM_Win95' => '6.42',
3459             'ExtUtils::MY' => '6.42',
3460             'ExtUtils::MakeMaker' => '6.42',
3461             'ExtUtils::MakeMaker::Config'=> '6.42',
3462             'ExtUtils::MakeMaker::bytes'=> '6.42',
3463             'ExtUtils::MakeMaker::vmsish'=> '6.42',
3464             'ExtUtils::Mkbootstrap' => '6.42',
3465             'ExtUtils::Mksymlists' => '6.42',
3466             'ExtUtils::Packlist' => '1.43',
3467             'ExtUtils::ParseXS' => '2.18_02',
3468             'ExtUtils::testlib' => '6.42',
3469             'File::Copy' => '2.11',
3470             'File::Fetch' => '0.14',
3471             'File::Find' => '1.12',
3472             'File::Path' => '2.04',
3473             'File::Spec' => '3.2501',
3474             'File::Spec::Cygwin' => '3.2501',
3475             'File::Spec::Epoc' => '3.2501',
3476             'File::Spec::Functions' => '3.2501',
3477             'File::Spec::Mac' => '3.2501',
3478             'File::Spec::OS2' => '3.2501',
3479             'File::Spec::Unix' => '3.2501',
3480             'File::Spec::VMS' => '3.2501',
3481             'File::Spec::Win32' => '3.2501',
3482             'Filter::Util::Call' => '1.07',
3483             'Getopt::Long' => '2.37',
3484             'Hash::Util::FieldHash' => '1.03',
3485             'IO::Compress::Adapter::Deflate'=> '2.008',
3486             'IO::Compress::Adapter::Identity'=> '2.008',
3487             'IO::Compress::Base' => '2.008',
3488             'IO::Compress::Base::Common'=> '2.008',
3489             'IO::Compress::Deflate' => '2.008',
3490             'IO::Compress::Gzip' => '2.008',
3491             'IO::Compress::Gzip::Constants'=> '2.008',
3492             'IO::Compress::RawDeflate'=> '2.008',
3493             'IO::Compress::Zip' => '2.008',
3494             'IO::Compress::Zip::Constants'=> '2.008',
3495             'IO::Compress::Zlib::Constants'=> '2.008',
3496             'IO::Compress::Zlib::Extra'=> '2.008',
3497             'IO::Uncompress::Adapter::Identity'=> '2.008',
3498             'IO::Uncompress::Adapter::Inflate'=> '2.008',
3499             'IO::Uncompress::AnyInflate'=> '2.008',
3500             'IO::Uncompress::AnyUncompress'=> '2.008',
3501             'IO::Uncompress::Base' => '2.008',
3502             'IO::Uncompress::Gunzip'=> '2.008',
3503             'IO::Uncompress::Inflate'=> '2.008',
3504             'IO::Uncompress::RawInflate'=> '2.008',
3505             'IO::Uncompress::Unzip' => '2.008',
3506             'IO::Zlib' => '1.07',
3507             'IPC::Cmd' => '0.40_1',
3508             'IPC::SysV' => '1.05',
3509             'Locale::Maketext' => '1.12',
3510             'Log::Message::Simple' => '0.04',
3511             'Math::BigFloat' => '1.59',
3512             'Math::BigInt' => '1.88',
3513             'Math::BigInt::Calc' => '0.52',
3514             'Math::BigInt::FastCalc'=> '0.16',
3515             'Math::BigRat' => '0.21',
3516             'Module::Build' => '0.2808_01',
3517             'Module::Build::Base' => '0.2808_01',
3518             'Module::Build::Compat' => '0.2808_01',
3519             'Module::Build::Config' => '0.2808_01',
3520             'Module::Build::Dumper' => undef,
3521             'Module::Build::ModuleInfo'=> '0.2808_01',
3522             'Module::Build::Notes' => '0.2808_01',
3523             'Module::Build::PPMMaker'=> '0.2808_01',
3524             'Module::Build::Platform::Amiga'=> '0.2808_01',
3525             'Module::Build::Platform::Default'=> '0.2808_01',
3526             'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3527             'Module::Build::Platform::MPEiX'=> '0.2808_01',
3528             'Module::Build::Platform::MacOS'=> '0.2808_01',
3529             'Module::Build::Platform::RiscOS'=> '0.2808_01',
3530             'Module::Build::Platform::Unix'=> '0.2808_01',
3531             'Module::Build::Platform::VMS'=> '0.2808_01',
3532             'Module::Build::Platform::VOS'=> '0.2808_01',
3533             'Module::Build::Platform::Windows'=> '0.2808_01',
3534             'Module::Build::Platform::aix'=> '0.2808_01',
3535             'Module::Build::Platform::cygwin'=> '0.2808_01',
3536             'Module::Build::Platform::darwin'=> '0.2808_01',
3537             'Module::Build::Platform::os2'=> '0.2808_01',
3538             'Module::Build::PodParser'=> '0.2808_01',
3539             'Module::CoreList' => '2.13',
3540             'Module::Load' => '0.12',
3541             'Module::Load::Conditional'=> '0.22',
3542             'Net::Cmd' => '2.29',
3543             'Net::Ping' => '2.33',
3544             'Opcode' => '1.11',
3545             'Pod::Checker' => '1.43_01',
3546             'Pod::Man' => '2.16',
3547             'Pod::Perldoc' => '3.14_02',
3548             'Socket' => '1.80',
3549             'Storable' => '2.18',
3550             'Sys::Syslog' => '0.22',
3551             'Sys::Syslog::win32::Win32'=> undef,
3552             'Term::Cap' => '1.12',
3553             'Term::ReadLine' => '1.03',
3554             'Term::UI' => '0.18',
3555             'Test::Builder' => '0.72',
3556             'Test::Builder::Module' => '0.72',
3557             'Test::Builder::Tester' => '1.09',
3558             'Test::Harness::Straps' => '0.26_01',
3559             'Test::More' => '0.72',
3560             'Test::Simple' => '0.72',
3561             'Text::ParseWords' => '3.26',
3562             'Text::Soundex' => '3.03',
3563             'Tie::StdHandle' => undef,
3564             'Time::HiRes' => '1.9711',
3565             'Time::Local' => '1.18',
3566             'Time::Piece' => '1.12',
3567             'VMS::Filespec' => '1.12',
3568             'Win32' => '0.34',
3569             'base' => '2.13',
3570             'constant' => '1.13',
3571             'feature' => '1.11',
3572             'fields' => '2.13',
3573             'filetest' => '1.02',
3574             'open' => '1.06',
3575             'threads' => '1.67',
3576             'threads::shared' => '1.14',
3577             'version' => '0.74',
3578             },
3579             removed => {
3580             }
3581             },
3582             5.010001 => {
3583             delta_from => 5.01,
3584             changed => {
3585             'App::Prove' => '3.17',
3586             'App::Prove::State' => '3.17',
3587             'App::Prove::State::Result'=> '3.17',
3588             'App::Prove::State::Result::Test'=> '3.17',
3589             'Archive::Extract' => '0.34',
3590             'Archive::Tar' => '1.52',
3591             'Attribute::Handlers' => '0.85',
3592             'AutoLoader' => '5.68',
3593             'AutoSplit' => '1.06',
3594             'B' => '1.22',
3595             'B::Concise' => '0.76',
3596             'B::Debug' => '1.11',
3597             'B::Deparse' => '0.89',
3598             'B::Lint' => '1.11',
3599             'B::Lint::Debug' => undef,
3600             'B::Xref' => '1.02',
3601             'Benchmark' => '1.11',
3602             'CGI' => '3.43',
3603             'CGI::Carp' => '1.30_01',
3604             'CGI::Cookie' => '1.29',
3605             'CPAN' => '1.9402',
3606             'CPAN::Author' => '5.5',
3607             'CPAN::Bundle' => '5.5',
3608             'CPAN::CacheMgr' => '5.5',
3609             'CPAN::Complete' => '5.5',
3610             'CPAN::Debug' => '5.5',
3611             'CPAN::DeferredCode' => '5.50',
3612             'CPAN::Distribution' => '1.93',
3613             'CPAN::Distroprefs' => '6',
3614             'CPAN::Distrostatus' => '5.5',
3615             'CPAN::Exception::RecursiveDependency'=> '5.5',
3616             'CPAN::Exception::blocked_urllist'=> '1.0',
3617             'CPAN::Exception::yaml_not_installed'=> '5.5',
3618             'CPAN::FTP' => '5.5001',
3619             'CPAN::FTP::netrc' => '1.00',
3620             'CPAN::FirstTime' => '5.53',
3621             'CPAN::HandleConfig' => '5.5',
3622             'CPAN::Index' => '1.93',
3623             'CPAN::InfoObj' => '5.5',
3624             'CPAN::Kwalify' => '5.50',
3625             'CPAN::LWP::UserAgent' => '1.00',
3626             'CPAN::Module' => '5.5',
3627             'CPAN::Nox' => '5.50',
3628             'CPAN::Prompt' => '5.5',
3629             'CPAN::Queue' => '5.5',
3630             'CPAN::Shell' => '5.5',
3631             'CPAN::Tarzip' => '5.501',
3632             'CPAN::URL' => '5.5',
3633             'CPANPLUS' => '0.88',
3634             'CPANPLUS::Dist::Autobundle'=> undef,
3635             'CPANPLUS::Dist::Base' => undef,
3636             'CPANPLUS::Dist::Build' => '0.36',
3637             'CPANPLUS::Dist::Build::Constants'=> '0.36',
3638             'CPANPLUS::Internals' => '0.88',
3639             'CPANPLUS::Internals::Constants'=> undef,
3640             'CPANPLUS::Internals::Constants::Report'=> undef,
3641             'CPANPLUS::Internals::Source::Memory'=> undef,
3642             'CPANPLUS::Internals::Source::SQLite'=> undef,
3643             'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3644             'CPANPLUS::Shell::Default'=> '0.88',
3645             'Carp' => '1.11',
3646             'Carp::Heavy' => '1.11',
3647             'Compress::Raw::Bzip2' => '2.020',
3648             'Compress::Raw::Zlib' => '2.020',
3649             'Compress::Zlib' => '2.020',
3650             'Cwd' => '3.30',
3651             'DB' => '1.02',
3652             'DBM_Filter::compress' => '0.02',
3653             'DBM_Filter::encode' => '0.02',
3654             'DBM_Filter::int32' => '0.02',
3655             'DBM_Filter::null' => '0.02',
3656             'DBM_Filter::utf8' => '0.02',
3657             'DB_File' => '1.820',
3658             'Data::Dumper' => '2.124',
3659             'Devel::DProf' => '20080331.00',
3660             'Devel::PPPort' => '3.19',
3661             'Devel::Peek' => '1.04',
3662             'Digest' => '1.16',
3663             'Digest::MD5' => '2.39',
3664             'Digest::SHA' => '5.47',
3665             'Digest::base' => '1.16',
3666             'Digest::file' => '1.16',
3667             'DirHandle' => '1.03',
3668             'Dumpvalue' => '1.13',
3669             'DynaLoader' => '1.10',
3670             'Encode' => '2.35',
3671             'Encode::Alias' => '2.12',
3672             'Encode::CN::HZ' => '2.05',
3673             'Encode::Config' => '2.05',
3674             'Encode::GSM0338' => '2.01',
3675             'Encode::Guess' => '2.03',
3676             'Encode::JP::JIS7' => '2.04',
3677             'Encode::MIME::Header' => '2.11',
3678             'Encode::Unicode' => '2.06',
3679             'Errno' => '1.11',
3680             'Exporter' => '5.63',
3681             'Exporter::Heavy' => '5.63',
3682             'ExtUtils::CBuilder' => '0.2602',
3683             'ExtUtils::CBuilder::Base'=> '0.2602',
3684             'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3685             'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3686             'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3687             'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3688             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3689             'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3690             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3691             'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3692             'ExtUtils::Command' => '1.16',
3693             'ExtUtils::Command::MM' => '6.55_02',
3694             'ExtUtils::Constant' => '0.22',
3695             'ExtUtils::Constant::ProxySubs'=> '0.06',
3696             'ExtUtils::Constant::Utils'=> '0.02',
3697             'ExtUtils::Constant::XS'=> '0.03',
3698             'ExtUtils::Embed' => '1.28',
3699             'ExtUtils::Install' => '1.54',
3700             'ExtUtils::Installed' => '1.999_001',
3701             'ExtUtils::Liblist' => '6.55_02',
3702             'ExtUtils::Liblist::Kid'=> '6.5502',
3703             'ExtUtils::MM' => '6.55_02',
3704             'ExtUtils::MM_AIX' => '6.55_02',
3705             'ExtUtils::MM_Any' => '6.55_02',
3706             'ExtUtils::MM_BeOS' => '6.55_02',
3707             'ExtUtils::MM_Cygwin' => '6.55_02',
3708             'ExtUtils::MM_DOS' => '6.5502',
3709             'ExtUtils::MM_Darwin' => '6.55_02',
3710             'ExtUtils::MM_MacOS' => '6.5502',
3711             'ExtUtils::MM_NW5' => '6.55_02',
3712             'ExtUtils::MM_OS2' => '6.55_02',
3713             'ExtUtils::MM_QNX' => '6.55_02',
3714             'ExtUtils::MM_UWIN' => '6.5502',
3715             'ExtUtils::MM_Unix' => '6.55_02',
3716             'ExtUtils::MM_VMS' => '6.55_02',
3717             'ExtUtils::MM_VOS' => '6.55_02',
3718             'ExtUtils::MM_Win32' => '6.55_02',
3719             'ExtUtils::MM_Win95' => '6.55_02',
3720             'ExtUtils::MY' => '6.5502',
3721             'ExtUtils::MakeMaker' => '6.55_02',
3722             'ExtUtils::MakeMaker::Config'=> '6.55_02',
3723             'ExtUtils::Manifest' => '1.56',
3724             'ExtUtils::Mkbootstrap' => '6.55_02',
3725             'ExtUtils::Mksymlists' => '6.55_02',
3726             'ExtUtils::ParseXS' => '2.2002',
3727             'ExtUtils::testlib' => '6.5502',
3728             'Fatal' => '2.06_01',
3729             'File::Basename' => '2.77',
3730             'File::CheckTree' => '4.4',
3731             'File::Compare' => '1.1006',
3732             'File::Copy' => '2.14',
3733             'File::DosGlob' => '1.01',
3734             'File::Fetch' => '0.20',
3735             'File::Find' => '1.14',
3736             'File::GlobMapper' => '1.000',
3737             'File::Path' => '2.07_03',
3738             'File::Spec' => '3.30',
3739             'File::Spec::Cygwin' => '3.30',
3740             'File::Spec::Epoc' => '3.30',
3741             'File::Spec::Functions' => '3.30',
3742             'File::Spec::Mac' => '3.30',
3743             'File::Spec::OS2' => '3.30',
3744             'File::Spec::Unix' => '3.30',
3745             'File::Spec::VMS' => '3.30',
3746             'File::Spec::Win32' => '3.30',
3747             'File::Temp' => '0.22',
3748             'File::stat' => '1.01',
3749             'FileCache' => '1.08',
3750             'FileHandle' => '2.02',
3751             'Filter::Simple' => '0.84',
3752             'Filter::Util::Call' => '1.08',
3753             'FindBin' => '1.50',
3754             'GDBM_File' => '1.09',
3755             'Getopt::Long' => '2.38',
3756             'Getopt::Std' => '1.06',
3757             'Hash::Util::FieldHash' => '1.04',
3758             'I18N::Collate' => '1.01',
3759             'IO' => '1.25',
3760             'IO::Compress::Adapter::Bzip2'=> '2.020',
3761             'IO::Compress::Adapter::Deflate'=> '2.020',
3762             'IO::Compress::Adapter::Identity'=> '2.020',
3763             'IO::Compress::Base' => '2.020',
3764             'IO::Compress::Base::Common'=> '2.020',
3765             'IO::Compress::Bzip2' => '2.020',
3766             'IO::Compress::Deflate' => '2.020',
3767             'IO::Compress::Gzip' => '2.020',
3768             'IO::Compress::Gzip::Constants'=> '2.020',
3769             'IO::Compress::RawDeflate'=> '2.020',
3770             'IO::Compress::Zip' => '2.020',
3771             'IO::Compress::Zip::Constants'=> '2.020',
3772             'IO::Compress::Zlib::Constants'=> '2.020',
3773             'IO::Compress::Zlib::Extra'=> '2.020',
3774             'IO::Dir' => '1.07',
3775             'IO::Handle' => '1.28',
3776             'IO::Socket' => '1.31',
3777             'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3778             'IO::Uncompress::Adapter::Identity'=> '2.020',
3779             'IO::Uncompress::Adapter::Inflate'=> '2.020',
3780             'IO::Uncompress::AnyInflate'=> '2.020',
3781             'IO::Uncompress::AnyUncompress'=> '2.020',
3782             'IO::Uncompress::Base' => '2.020',
3783             'IO::Uncompress::Bunzip2'=> '2.020',
3784             'IO::Uncompress::Gunzip'=> '2.020',
3785             'IO::Uncompress::Inflate'=> '2.020',
3786             'IO::Uncompress::RawInflate'=> '2.020',
3787             'IO::Uncompress::Unzip' => '2.020',
3788             'IO::Zlib' => '1.09',
3789             'IPC::Cmd' => '0.46',
3790             'IPC::Msg' => '2.01',
3791             'IPC::Open2' => '1.03',
3792             'IPC::Open3' => '1.04',
3793             'IPC::Semaphore' => '2.01',
3794             'IPC::SharedMem' => '2.01',
3795             'IPC::SysV' => '2.01',
3796             'List::Util' => '1.21',
3797             'List::Util::PP' => '1.21',
3798             'List::Util::XS' => '1.21',
3799             'Locale::Maketext' => '1.13',
3800             'Locale::Maketext::Guts'=> '1.13',
3801             'Locale::Maketext::GutsLoader'=> '1.13',
3802             'Log::Message' => '0.02',
3803             'MIME::Base64' => '3.08',
3804             'MIME::QuotedPrint' => '3.08',
3805             'Math::BigFloat' => '1.60',
3806             'Math::BigInt' => '1.89',
3807             'Math::BigInt::FastCalc'=> '0.19',
3808             'Math::BigRat' => '0.22',
3809             'Math::Complex' => '1.56',
3810             'Math::Trig' => '1.2',
3811             'Memoize' => '1.01_03',
3812             'Module::Build' => '0.340201',
3813             'Module::Build::Base' => '0.340201',
3814             'Module::Build::Compat' => '0.340201',
3815             'Module::Build::Config' => '0.340201',
3816             'Module::Build::Cookbook'=> '0.340201',
3817             'Module::Build::Dumper' => '0.340201',
3818             'Module::Build::ModuleInfo'=> '0.340201',
3819             'Module::Build::Notes' => '0.340201',
3820             'Module::Build::PPMMaker'=> '0.340201',
3821             'Module::Build::Platform::Amiga'=> '0.340201',
3822             'Module::Build::Platform::Default'=> '0.340201',
3823             'Module::Build::Platform::EBCDIC'=> '0.340201',
3824             'Module::Build::Platform::MPEiX'=> '0.340201',
3825             'Module::Build::Platform::MacOS'=> '0.340201',
3826             'Module::Build::Platform::RiscOS'=> '0.340201',
3827             'Module::Build::Platform::Unix'=> '0.340201',
3828             'Module::Build::Platform::VMS'=> '0.340201',
3829             'Module::Build::Platform::VOS'=> '0.340201',
3830             'Module::Build::Platform::Windows'=> '0.340201',
3831             'Module::Build::Platform::aix'=> '0.340201',
3832             'Module::Build::Platform::cygwin'=> '0.340201',
3833             'Module::Build::Platform::darwin'=> '0.340201',
3834             'Module::Build::Platform::os2'=> '0.340201',
3835             'Module::Build::PodParser'=> '0.340201',
3836             'Module::Build::Version'=> '0.77',
3837             'Module::CoreList' => '2.18',
3838             'Module::Load' => '0.16',
3839             'Module::Load::Conditional'=> '0.30',
3840             'Module::Loaded' => '0.02',
3841             'Module::Pluggable' => '3.9',
3842             'Module::Pluggable::Object'=> '3.9',
3843             'NDBM_File' => '1.08',
3844             'NEXT' => '0.64',
3845             'Net::Ping' => '2.36',
3846             'O' => '1.01',
3847             'OS2::Process' => '1.03',
3848             'OS2::REXX' => '1.04',
3849             'Object::Accessor' => '0.34',
3850             'POSIX' => '1.17',
3851             'Package::Constants' => '0.02',
3852             'Parse::CPAN::Meta' => '1.39',
3853             'PerlIO' => '1.06',
3854             'PerlIO::encoding' => '0.11',
3855             'PerlIO::scalar' => '0.07',
3856             'PerlIO::via' => '0.07',
3857             'Pod::Checker' => '1.45',
3858             'Pod::Find' => '1.35',
3859             'Pod::Html' => '1.09',
3860             'Pod::InputObjects' => '1.31',
3861             'Pod::Man' => '2.22',
3862             'Pod::ParseLink' => '1.09',
3863             'Pod::ParseUtils' => '1.36',
3864             'Pod::Parser' => '1.37',
3865             'Pod::Perldoc' => '3.14_04',
3866             'Pod::PlainText' => '2.04',
3867             'Pod::Select' => '1.36',
3868             'Pod::Simple' => '3.07',
3869             'Pod::Simple::XHTML' => '3.04',
3870             'Pod::Text' => '3.13',
3871             'Pod::Text::Color' => '2.05',
3872             'Pod::Text::Overstrike' => '2.03',
3873             'Pod::Text::Termcap' => '2.05',
3874             'Pod::Usage' => '1.36',
3875             'Safe' => '2.18',
3876             'Scalar::Util' => '1.21',
3877             'Scalar::Util::PP' => '1.21',
3878             'SelectSaver' => '1.02',
3879             'SelfLoader' => '1.17',
3880             'Socket' => '1.82',
3881             'Storable' => '2.20',
3882             'Switch' => '2.14',
3883             'Symbol' => '1.07',
3884             'Sys::Syslog' => '0.27',
3885             'TAP::Base' => '3.17',
3886             'TAP::Formatter::Base' => '3.17',
3887             'TAP::Formatter::Color' => '3.17',
3888             'TAP::Formatter::Console'=> '3.17',
3889             'TAP::Formatter::Console::ParallelSession'=> '3.17',
3890             'TAP::Formatter::Console::Session'=> '3.17',
3891             'TAP::Formatter::File' => '3.17',
3892             'TAP::Formatter::File::Session'=> '3.17',
3893             'TAP::Formatter::Session'=> '3.17',
3894             'TAP::Harness' => '3.17',
3895             'TAP::Object' => '3.17',
3896             'TAP::Parser' => '3.17',
3897             'TAP::Parser::Aggregator'=> '3.17',
3898             'TAP::Parser::Grammar' => '3.17',
3899             'TAP::Parser::Iterator' => '3.17',
3900             'TAP::Parser::Iterator::Array'=> '3.17',
3901             'TAP::Parser::Iterator::Process'=> '3.17',
3902             'TAP::Parser::Iterator::Stream'=> '3.17',
3903             'TAP::Parser::IteratorFactory'=> '3.17',
3904             'TAP::Parser::Multiplexer'=> '3.17',
3905             'TAP::Parser::Result' => '3.17',
3906             'TAP::Parser::Result::Bailout'=> '3.17',
3907             'TAP::Parser::Result::Comment'=> '3.17',
3908             'TAP::Parser::Result::Plan'=> '3.17',
3909             'TAP::Parser::Result::Pragma'=> '3.17',
3910             'TAP::Parser::Result::Test'=> '3.17',
3911             'TAP::Parser::Result::Unknown'=> '3.17',
3912             'TAP::Parser::Result::Version'=> '3.17',
3913             'TAP::Parser::Result::YAML'=> '3.17',
3914             'TAP::Parser::ResultFactory'=> '3.17',
3915             'TAP::Parser::Scheduler'=> '3.17',
3916             'TAP::Parser::Scheduler::Job'=> '3.17',
3917             'TAP::Parser::Scheduler::Spinner'=> '3.17',
3918             'TAP::Parser::Source' => '3.17',
3919             'TAP::Parser::Source::Perl'=> '3.17',
3920             'TAP::Parser::Utils' => '3.17',
3921             'TAP::Parser::YAMLish::Reader'=> '3.17',
3922             'TAP::Parser::YAMLish::Writer'=> '3.17',
3923             'Term::ANSIColor' => '2.00',
3924             'Term::ReadLine' => '1.04',
3925             'Term::UI' => '0.20',
3926             'Test' => '1.25_02',
3927             'Test::Builder' => '0.92',
3928             'Test::Builder::Module' => '0.92',
3929             'Test::Builder::Tester' => '1.18',
3930             'Test::Builder::Tester::Color'=> '1.18',
3931             'Test::Harness' => '3.17',
3932             'Test::More' => '0.92',
3933             'Test::Simple' => '0.92',
3934             'Text::ParseWords' => '3.27',
3935             'Text::Tabs' => '2009.0305',
3936             'Text::Wrap' => '2009.0305',
3937             'Thread::Queue' => '2.11',
3938             'Thread::Semaphore' => '2.09',
3939             'Tie::Handle' => '4.2',
3940             'Tie::Hash' => '1.03',
3941             'Tie::RefHash' => '1.38',
3942             'Tie::Scalar' => '1.01',
3943             'Tie::StdHandle' => '4.2',
3944             'Time::HiRes' => '1.9719',
3945             'Time::Local' => '1.1901',
3946             'Time::Piece' => '1.15',
3947             'UNIVERSAL' => '1.05',
3948             'Unicode' => '5.1.0',
3949             'Unicode::Normalize' => '1.03',
3950             'Unicode::UCD' => '0.27',
3951             'VMS::Stdio' => '2.4',
3952             'Win32' => '0.39',
3953             'Win32API::File' => '0.1101',
3954             'XS::APItest' => '0.15',
3955             'XS::Typemap' => '0.03',
3956             'XSLoader' => '0.10',
3957             'attributes' => '0.09',
3958             'attrs' => '1.03',
3959             'autodie' => '2.06_01',
3960             'autodie::exception' => '2.06_01',
3961             'autodie::exception::system'=> '2.06_01',
3962             'autodie::hints' => '2.06_01',
3963             'base' => '2.14',
3964             'bigint' => '0.23',
3965             'bignum' => '0.23',
3966             'bigrat' => '0.23',
3967             'blib' => '1.04',
3968             'charnames' => '1.07',
3969             'constant' => '1.17',
3970             'encoding' => '2.6_01',
3971             'feature' => '1.13',
3972             'fields' => '2.14',
3973             'lib' => '0.62',
3974             'mro' => '1.01',
3975             'open' => '1.07',
3976             'ops' => '1.02',
3977             'overload' => '1.07',
3978             'overload::numbers' => undef,
3979             'overloading' => '0.01',
3980             'parent' => '0.221',
3981             're' => '0.09',
3982             'threads' => '1.72',
3983             'threads::shared' => '1.29',
3984             'version' => '0.77',
3985             },
3986             removed => {
3987             'CPAN::API::HOWTO' => 1,
3988             'CPAN::DeferedCode' => 1,
3989             'CPANPLUS::inc' => 1,
3990             'ExtUtils::MakeMaker::bytes'=> 1,
3991             'ExtUtils::MakeMaker::vmsish'=> 1,
3992             'Test::Harness::Assert' => 1,
3993             'Test::Harness::Iterator'=> 1,
3994             'Test::Harness::Point' => 1,
3995             'Test::Harness::Results'=> 1,
3996             'Test::Harness::Straps' => 1,
3997             'Test::Harness::Util' => 1,
3998             }
3999             },
4000             5.011 => {
4001             delta_from => 5.010001,
4002             changed => {
4003             'Archive::Tar' => '1.54',
4004             'Attribute::Handlers' => '0.87',
4005             'AutoLoader' => '5.70',
4006             'B::Deparse' => '0.91',
4007             'B::Lint' => '1.11_01',
4008             'B::Lint::Debug' => '0.01',
4009             'CGI' => '3.45',
4010             'CGI::Apache' => '1.01',
4011             'CGI::Carp' => '3.45',
4012             'CGI::Pretty' => '3.44',
4013             'CGI::Switch' => '1.01',
4014             'CGI::Util' => '3.45',
4015             'CPAN' => '1.94_51',
4016             'CPAN::Distribution' => '1.94',
4017             'CPAN::FTP' => '5.5002',
4018             'CPAN::Index' => '1.94',
4019             'CPAN::LWP::UserAgent' => '1.94',
4020             'CPANPLUS::Dist::Build' => '0.40',
4021             'CPANPLUS::Dist::Build::Constants'=> '0.40',
4022             'Carp' => '1.12',
4023             'Carp::Heavy' => '1.12',
4024             'Class::ISA' => '0.36',
4025             'Compress::Raw::Bzip2' => '2.021',
4026             'Compress::Raw::Zlib' => '2.021',
4027             'Compress::Zlib' => '2.021',
4028             'Cwd' => '3.3002',
4029             'Data::Dumper' => '2.125',
4030             'Encode' => '2.37',
4031             'Exporter' => '5.64',
4032             'Exporter::Heavy' => '5.64',
4033             'ExtUtils::ParseXS' => '2.200403',
4034             'File::Basename' => '2.78',
4035             'File::Copy' => '2.16',
4036             'File::stat' => '1.02',
4037             'IO' => '1.25_01',
4038             'IO::Compress::Adapter::Bzip2'=> '2.021',
4039             'IO::Compress::Adapter::Deflate'=> '2.021',
4040             'IO::Compress::Adapter::Identity'=> '2.021',
4041             'IO::Compress::Base' => '2.021',
4042             'IO::Compress::Base::Common'=> '2.021',
4043             'IO::Compress::Bzip2' => '2.021',
4044             'IO::Compress::Deflate' => '2.021',
4045             'IO::Compress::Gzip' => '2.021',
4046             'IO::Compress::Gzip::Constants'=> '2.021',
4047             'IO::Compress::RawDeflate'=> '2.021',
4048             'IO::Compress::Zip' => '2.021',
4049             'IO::Compress::Zip::Constants'=> '2.021',
4050             'IO::Compress::Zlib::Constants'=> '2.021',
4051             'IO::Compress::Zlib::Extra'=> '2.021',
4052             'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
4053             'IO::Uncompress::Adapter::Identity'=> '2.021',
4054             'IO::Uncompress::Adapter::Inflate'=> '2.021',
4055             'IO::Uncompress::AnyInflate'=> '2.021',
4056             'IO::Uncompress::AnyUncompress'=> '2.021',
4057             'IO::Uncompress::Base' => '2.021',
4058             'IO::Uncompress::Bunzip2'=> '2.021',
4059             'IO::Uncompress::Gunzip'=> '2.021',
4060             'IO::Uncompress::Inflate'=> '2.021',
4061             'IO::Uncompress::RawInflate'=> '2.021',
4062             'IO::Uncompress::Unzip' => '2.021',
4063             'IO::Zlib' => '1.10',
4064             'IPC::Cmd' => '0.50',
4065             'IPC::Open3' => '1.05',
4066             'Locale::Maketext::Simple'=> '0.21',
4067             'Log::Message::Simple' => '0.06',
4068             'Math::BigInt' => '1.89_01',
4069             'Math::BigRat' => '0.24',
4070             'Module::Build' => '0.35',
4071             'Module::Build::Base' => '0.35',
4072             'Module::Build::Compat' => '0.35',
4073             'Module::Build::Config' => '0.35',
4074             'Module::Build::Cookbook'=> '0.35',
4075             'Module::Build::Dumper' => '0.35',
4076             'Module::Build::ModuleInfo'=> '0.35',
4077             'Module::Build::Notes' => '0.35',
4078             'Module::Build::PPMMaker'=> '0.35',
4079             'Module::Build::Platform::Amiga'=> '0.35',
4080             'Module::Build::Platform::Default'=> '0.35',
4081             'Module::Build::Platform::EBCDIC'=> '0.35',
4082             'Module::Build::Platform::MPEiX'=> '0.35',
4083             'Module::Build::Platform::MacOS'=> '0.35',
4084             'Module::Build::Platform::RiscOS'=> '0.35',
4085             'Module::Build::Platform::Unix'=> '0.35',
4086             'Module::Build::Platform::VMS'=> '0.35',
4087             'Module::Build::Platform::VOS'=> '0.35',
4088             'Module::Build::Platform::Windows'=> '0.35',
4089             'Module::Build::Platform::aix'=> '0.35',
4090             'Module::Build::Platform::cygwin'=> '0.35',
4091             'Module::Build::Platform::darwin'=> '0.35',
4092             'Module::Build::Platform::os2'=> '0.35',
4093             'Module::Build::PodParser'=> '0.35',
4094             'Module::CoreList' => '2.19',
4095             'Module::Loaded' => '0.06',
4096             'Opcode' => '1.13',
4097             'PerlIO::via' => '0.08',
4098             'Pod::Perldoc' => '3.15_01',
4099             'Pod::Plainer' => '1.01',
4100             'Safe' => '2.19',
4101             'Socket' => '1.84',
4102             'Switch' => '2.14_01',
4103             'Term::ANSIColor' => '2.02',
4104             'Term::ReadLine' => '1.05',
4105             'Text::Balanced' => '2.02',
4106             'Text::Soundex' => '3.03_01',
4107             'Time::Local' => '1.1901_01',
4108             'Unicode::Collate' => '0.52_01',
4109             'attributes' => '0.12',
4110             'constant' => '1.19',
4111             'deprecate' => '0.01',
4112             'overload' => '1.08',
4113             'parent' => '0.223',
4114             're' => '0.10',
4115             'threads' => '1.74',
4116             'threads::shared' => '1.31',
4117             'warnings' => '1.07',
4118             },
4119             removed => {
4120             'attrs' => 1,
4121             }
4122             },
4123             5.011001 => {
4124             delta_from => 5.011,
4125             changed => {
4126             'B' => '1.23',
4127             'B::Concise' => '0.77',
4128             'B::Deparse' => '0.92',
4129             'CGI' => '3.48',
4130             'CGI::Pretty' => '3.46',
4131             'CGI::Util' => '3.48',
4132             'CPANPLUS' => '0.89_03',
4133             'CPANPLUS::Internals' => '0.89_03',
4134             'CPANPLUS::Shell::Default'=> '0.89_03',
4135             'Carp' => '1.13',
4136             'Carp::Heavy' => '1.13',
4137             'ExtUtils::CBuilder' => '0.260301',
4138             'ExtUtils::CBuilder::Base'=> '0.260301',
4139             'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
4140             'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
4141             'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
4142             'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
4143             'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
4144             'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
4145             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
4146             'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
4147             'ExtUtils::Install' => '1.55',
4148             'ExtUtils::Manifest' => '1.57',
4149             'ExtUtils::Packlist' => '1.44',
4150             'ExtUtils::ParseXS' => '2.21',
4151             'File::Glob' => '1.07',
4152             'File::Path' => '2.08',
4153             'IO' => '1.25_02',
4154             'Module::CoreList' => '2.21',
4155             'OS2::DLL' => '1.04',
4156             'OS2::Process' => '1.04',
4157             'Object::Accessor' => '0.36',
4158             'Opcode' => '1.15',
4159             'POSIX' => '1.18',
4160             'Parse::CPAN::Meta' => '1.40',
4161             'PerlIO::via' => '0.09',
4162             'Pod::Simple' => '3.08',
4163             'Socket' => '1.85',
4164             'Storable' => '2.22',
4165             'Switch' => '2.15',
4166             'Test::Builder' => '0.94',
4167             'Test::Builder::Module' => '0.94',
4168             'Test::More' => '0.94',
4169             'Test::Simple' => '0.94',
4170             'XS::APItest' => '0.16',
4171             'mro' => '1.02',
4172             'overload' => '1.09',
4173             'threads::shared' => '1.32',
4174             },
4175             removed => {
4176             }
4177             },
4178             5.011002 => {
4179             delta_from => 5.011001,
4180             changed => {
4181             'B::Concise' => '0.78',
4182             'B::Deparse' => '0.93',
4183             'CPANPLUS' => '0.89_09',
4184             'CPANPLUS::Dist::Build' => '0.44',
4185             'CPANPLUS::Dist::Build::Constants'=> '0.44',
4186             'CPANPLUS::Internals' => '0.89_09',
4187             'CPANPLUS::Shell::Default'=> '0.89_09',
4188             'Carp' => '1.14',
4189             'Carp::Heavy' => '1.14',
4190             'Compress::Zlib' => '2.022',
4191             'DBM_Filter' => '0.03',
4192             'Encode' => '2.38',
4193             'Encode::Byte' => '2.04',
4194             'Encode::CN' => '2.03',
4195             'Encode::JP' => '2.04',
4196             'Encode::KR' => '2.03',
4197             'Encode::TW' => '2.03',
4198             'Encode::Unicode' => '2.07',
4199             'Env' => '1.01',
4200             'Exporter' => '5.64_01',
4201             'Exporter::Heavy' => '5.64_01',
4202             'ExtUtils::CBuilder' => '0.27',
4203             'ExtUtils::CBuilder::Base'=> '0.27',
4204             'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
4205             'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
4206             'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
4207             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
4208             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
4209             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
4210             'ExtUtils::CBuilder::Platform::aix'=> '0.27',
4211             'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
4212             'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
4213             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
4214             'ExtUtils::CBuilder::Platform::os2'=> '0.27',
4215             'File::Fetch' => '0.22',
4216             'I18N::LangTags::Detect'=> '1.04',
4217             'I18N::Langinfo' => '0.03',
4218             'IO::Compress::Adapter::Bzip2'=> '2.022',
4219             'IO::Compress::Adapter::Deflate'=> '2.022',
4220             'IO::Compress::Adapter::Identity'=> '2.022',
4221             'IO::Compress::Base' => '2.022',
4222             'IO::Compress::Base::Common'=> '2.022',
4223             'IO::Compress::Bzip2' => '2.022',
4224             'IO::Compress::Deflate' => '2.022',
4225             'IO::Compress::Gzip' => '2.022',
4226             'IO::Compress::Gzip::Constants'=> '2.022',
4227             'IO::Compress::RawDeflate'=> '2.022',
4228             'IO::Compress::Zip' => '2.022',
4229             'IO::Compress::Zip::Constants'=> '2.022',
4230             'IO::Compress::Zlib::Constants'=> '2.022',
4231             'IO::Compress::Zlib::Extra'=> '2.022',
4232             'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4233             'IO::Uncompress::Adapter::Identity'=> '2.022',
4234             'IO::Uncompress::Adapter::Inflate'=> '2.022',
4235             'IO::Uncompress::AnyInflate'=> '2.022',
4236             'IO::Uncompress::AnyUncompress'=> '2.022',
4237             'IO::Uncompress::Base' => '2.022',
4238             'IO::Uncompress::Bunzip2'=> '2.022',
4239             'IO::Uncompress::Gunzip'=> '2.022',
4240             'IO::Uncompress::Inflate'=> '2.022',
4241             'IO::Uncompress::RawInflate'=> '2.022',
4242             'IO::Uncompress::Unzip' => '2.022',
4243             'IPC::Cmd' => '0.54',
4244             'List::Util' => '1.22',
4245             'List::Util::PP' => '1.22',
4246             'List::Util::XS' => '1.22',
4247             'Locale::Maketext' => '1.14',
4248             'Module::Build' => '0.35_09',
4249             'Module::Build::Base' => '0.35_09',
4250             'Module::Build::Compat' => '0.35_09',
4251             'Module::Build::Config' => '0.35_09',
4252             'Module::Build::Cookbook'=> '0.35_09',
4253             'Module::Build::Dumper' => '0.35_09',
4254             'Module::Build::ModuleInfo'=> '0.35_09',
4255             'Module::Build::Notes' => '0.35_09',
4256             'Module::Build::PPMMaker'=> '0.35_09',
4257             'Module::Build::Platform::Amiga'=> '0.35_09',
4258             'Module::Build::Platform::Default'=> '0.35_09',
4259             'Module::Build::Platform::EBCDIC'=> '0.35_09',
4260             'Module::Build::Platform::MPEiX'=> '0.35_09',
4261             'Module::Build::Platform::MacOS'=> '0.35_09',
4262             'Module::Build::Platform::RiscOS'=> '0.35_09',
4263             'Module::Build::Platform::Unix'=> '0.35_09',
4264             'Module::Build::Platform::VMS'=> '0.35_09',
4265             'Module::Build::Platform::VOS'=> '0.35_09',
4266             'Module::Build::Platform::Windows'=> '0.35_09',
4267             'Module::Build::Platform::aix'=> '0.35_09',
4268             'Module::Build::Platform::cygwin'=> '0.35_09',
4269             'Module::Build::Platform::darwin'=> '0.35_09',
4270             'Module::Build::Platform::os2'=> '0.35_09',
4271             'Module::Build::PodParser'=> '0.35_09',
4272             'Module::Build::YAML' => '1.40',
4273             'Module::CoreList' => '2.23',
4274             'Module::Load::Conditional'=> '0.34',
4275             'Pod::Simple' => '3.10',
4276             'Pod::Simple::XHTML' => '3.10',
4277             'Scalar::Util' => '1.22',
4278             'Scalar::Util::PP' => '1.22',
4279             'Switch' => '2.16',
4280             'XS::APItest' => '0.17',
4281             'XS::APItest::KeywordRPN'=> '0.003',
4282             'base' => '2.15',
4283             'diagnostics' => '1.18',
4284             'fields' => '2.15',
4285             'inc::latest' => '0.35_09',
4286             'legacy' => '1.00',
4287             'overload' => '1.10',
4288             },
4289             removed => {
4290             }
4291             },
4292             5.011003 => {
4293             delta_from => 5.011002,
4294             changed => {
4295             'App::Cpan' => '1.570001',
4296             'Archive::Extract' => '0.36',
4297             'CPAN' => '1.94_5301',
4298             'CPAN::FTP' => '5.5004',
4299             'CPAN::FirstTime' => '5.530001',
4300             'CPAN::Mirrors' => '1.770001',
4301             'CPANPLUS' => '0.90',
4302             'CPANPLUS::Internals' => '0.90',
4303             'CPANPLUS::Shell::Default'=> '0.90',
4304             'Cwd' => '3.31',
4305             'Encode' => '2.39',
4306             'ExtUtils::Command::MM' => '6.56',
4307             'ExtUtils::Liblist' => '6.56',
4308             'ExtUtils::Liblist::Kid'=> '6.56',
4309             'ExtUtils::MM' => '6.56',
4310             'ExtUtils::MM_AIX' => '6.56',
4311             'ExtUtils::MM_Any' => '6.56',
4312             'ExtUtils::MM_BeOS' => '6.56',
4313             'ExtUtils::MM_Cygwin' => '6.56',
4314             'ExtUtils::MM_DOS' => '6.56',
4315             'ExtUtils::MM_Darwin' => '6.56',
4316             'ExtUtils::MM_MacOS' => '6.56',
4317             'ExtUtils::MM_NW5' => '6.56',
4318             'ExtUtils::MM_OS2' => '6.56',
4319             'ExtUtils::MM_QNX' => '6.56',
4320             'ExtUtils::MM_UWIN' => '6.56',
4321             'ExtUtils::MM_Unix' => '6.56',
4322             'ExtUtils::MM_VMS' => '6.56',
4323             'ExtUtils::MM_VOS' => '6.56',
4324             'ExtUtils::MM_Win32' => '6.56',
4325             'ExtUtils::MM_Win95' => '6.56',
4326             'ExtUtils::MY' => '6.56',
4327             'ExtUtils::MakeMaker' => '6.56',
4328             'ExtUtils::MakeMaker::Config'=> '6.56',
4329             'ExtUtils::Mkbootstrap' => '6.56',
4330             'ExtUtils::Mksymlists' => '6.56',
4331             'ExtUtils::testlib' => '6.56',
4332             'File::Find' => '1.15',
4333             'File::Path' => '2.08_01',
4334             'File::Spec' => '3.31',
4335             'Module::Build' => '0.36',
4336             'Module::Build::Base' => '0.36',
4337             'Module::Build::Compat' => '0.36',
4338             'Module::Build::Config' => '0.36',
4339             'Module::Build::Cookbook'=> '0.36',
4340             'Module::Build::Dumper' => '0.36',
4341             'Module::Build::ModuleInfo'=> '0.36',
4342             'Module::Build::Notes' => '0.36',
4343             'Module::Build::PPMMaker'=> '0.36',
4344             'Module::Build::Platform::Amiga'=> '0.36',
4345             'Module::Build::Platform::Default'=> '0.36',
4346             'Module::Build::Platform::EBCDIC'=> '0.36',
4347             'Module::Build::Platform::MPEiX'=> '0.36',
4348             'Module::Build::Platform::MacOS'=> '0.36',
4349             'Module::Build::Platform::RiscOS'=> '0.36',
4350             'Module::Build::Platform::Unix'=> '0.36',
4351             'Module::Build::Platform::VMS'=> '0.36',
4352             'Module::Build::Platform::VOS'=> '0.36',
4353             'Module::Build::Platform::Windows'=> '0.36',
4354             'Module::Build::Platform::aix'=> '0.36',
4355             'Module::Build::Platform::cygwin'=> '0.36',
4356             'Module::Build::Platform::darwin'=> '0.36',
4357             'Module::Build::Platform::os2'=> '0.36',
4358             'Module::Build::PodParser'=> '0.36',
4359             'Module::CoreList' => '2.24',
4360             'POSIX' => '1.19',
4361             'Pod::Simple' => '3.13',
4362             'Pod::Simple::BlackBox' => '3.13',
4363             'Pod::Simple::Checker' => '3.13',
4364             'Pod::Simple::Debug' => '3.13',
4365             'Pod::Simple::DumpAsText'=> '3.13',
4366             'Pod::Simple::DumpAsXML'=> '3.13',
4367             'Pod::Simple::HTML' => '3.13',
4368             'Pod::Simple::HTMLBatch'=> '3.13',
4369             'Pod::Simple::LinkSection'=> '3.13',
4370             'Pod::Simple::Methody' => '3.13',
4371             'Pod::Simple::Progress' => '3.13',
4372             'Pod::Simple::PullParser'=> '3.13',
4373             'Pod::Simple::PullParserEndToken'=> '3.13',
4374             'Pod::Simple::PullParserStartToken'=> '3.13',
4375             'Pod::Simple::PullParserTextToken'=> '3.13',
4376             'Pod::Simple::PullParserToken'=> '3.13',
4377             'Pod::Simple::RTF' => '3.13',
4378             'Pod::Simple::Search' => '3.13',
4379             'Pod::Simple::SimpleTree'=> '3.13',
4380             'Pod::Simple::Text' => '3.13',
4381             'Pod::Simple::TextContent'=> '3.13',
4382             'Pod::Simple::TiedOutFH'=> '3.13',
4383             'Pod::Simple::Transcode'=> '3.13',
4384             'Pod::Simple::TranscodeDumb'=> '3.13',
4385             'Pod::Simple::TranscodeSmart'=> '3.13',
4386             'Pod::Simple::XHTML' => '3.13',
4387             'Pod::Simple::XMLOutStream'=> '3.13',
4388             'Safe' => '2.20',
4389             'Unicode' => '5.2.0',
4390             'constant' => '1.20',
4391             'diagnostics' => '1.19',
4392             'feature' => '1.14',
4393             'inc::latest' => '0.36',
4394             'threads' => '1.75',
4395             'warnings' => '1.08',
4396             },
4397             removed => {
4398             'legacy' => 1,
4399             }
4400             },
4401             5.011004 => {
4402             delta_from => 5.011003,
4403             changed => {
4404             'App::Cpan' => '1.5701',
4405             'Archive::Extract' => '0.38',
4406             'B::Deparse' => '0.94',
4407             'CPAN' => '1.94_54',
4408             'CPAN::FirstTime' => '5.53',
4409             'CPAN::Mirrors' => '1.77',
4410             'Carp' => '1.15',
4411             'Carp::Heavy' => '1.15',
4412             'Compress::Raw::Bzip2' => '2.024',
4413             'Compress::Raw::Zlib' => '2.024',
4414             'Compress::Zlib' => '2.024',
4415             'File::Copy' => '2.17',
4416             'File::Fetch' => '0.24',
4417             'GDBM_File' => '1.10',
4418             'IO::Compress::Adapter::Bzip2'=> '2.024',
4419             'IO::Compress::Adapter::Deflate'=> '2.024',
4420             'IO::Compress::Adapter::Identity'=> '2.024',
4421             'IO::Compress::Base' => '2.024',
4422             'IO::Compress::Base::Common'=> '2.024',
4423             'IO::Compress::Bzip2' => '2.024',
4424             'IO::Compress::Deflate' => '2.024',
4425             'IO::Compress::Gzip' => '2.024',
4426             'IO::Compress::Gzip::Constants'=> '2.024',
4427             'IO::Compress::RawDeflate'=> '2.024',
4428             'IO::Compress::Zip' => '2.024',
4429             'IO::Compress::Zip::Constants'=> '2.024',
4430             'IO::Compress::Zlib::Constants'=> '2.024',
4431             'IO::Compress::Zlib::Extra'=> '2.024',
4432             'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4433             'IO::Uncompress::Adapter::Identity'=> '2.024',
4434             'IO::Uncompress::Adapter::Inflate'=> '2.024',
4435             'IO::Uncompress::AnyInflate'=> '2.024',
4436             'IO::Uncompress::AnyUncompress'=> '2.024',
4437             'IO::Uncompress::Base' => '2.024',
4438             'IO::Uncompress::Bunzip2'=> '2.024',
4439             'IO::Uncompress::Gunzip'=> '2.024',
4440             'IO::Uncompress::Inflate'=> '2.024',
4441             'IO::Uncompress::RawInflate'=> '2.024',
4442             'IO::Uncompress::Unzip' => '2.024',
4443             'Module::Build' => '0.3603',
4444             'Module::Build::Base' => '0.3603',
4445             'Module::Build::Compat' => '0.3603',
4446             'Module::Build::Config' => '0.3603',
4447             'Module::Build::Cookbook'=> '0.3603',
4448             'Module::Build::Dumper' => '0.3603',
4449             'Module::Build::ModuleInfo'=> '0.3603',
4450             'Module::Build::Notes' => '0.3603',
4451             'Module::Build::PPMMaker'=> '0.3603',
4452             'Module::Build::Platform::Amiga'=> '0.3603',
4453             'Module::Build::Platform::Default'=> '0.3603',
4454             'Module::Build::Platform::EBCDIC'=> '0.3603',
4455             'Module::Build::Platform::MPEiX'=> '0.3603',
4456             'Module::Build::Platform::MacOS'=> '0.3603',
4457             'Module::Build::Platform::RiscOS'=> '0.3603',
4458             'Module::Build::Platform::Unix'=> '0.3603',
4459             'Module::Build::Platform::VMS'=> '0.3603',
4460             'Module::Build::Platform::VOS'=> '0.3603',
4461             'Module::Build::Platform::Windows'=> '0.3603',
4462             'Module::Build::Platform::aix'=> '0.3603',
4463             'Module::Build::Platform::cygwin'=> '0.3603',
4464             'Module::Build::Platform::darwin'=> '0.3603',
4465             'Module::Build::Platform::os2'=> '0.3603',
4466             'Module::Build::PodParser'=> '0.3603',
4467             'Module::CoreList' => '2.25',
4468             'PerlIO::encoding' => '0.12',
4469             'Safe' => '2.21',
4470             'UNIVERSAL' => '1.06',
4471             'feature' => '1.15',
4472             'inc::latest' => '0.3603',
4473             'less' => '0.03',
4474             're' => '0.11',
4475             'version' => '0.81',
4476             'warnings' => '1.09',
4477             },
4478             removed => {
4479             }
4480             },
4481             5.011005 => {
4482             delta_from => 5.011004,
4483             changed => {
4484             'B::Debug' => '1.12',
4485             'CPAN' => '1.94_56',
4486             'CPAN::Debug' => '5.5001',
4487             'CPAN::Distribution' => '1.9456',
4488             'CPAN::FirstTime' => '5.5301',
4489             'CPAN::HandleConfig' => '5.5001',
4490             'CPAN::Shell' => '5.5001',
4491             'CPAN::Tarzip' => '5.5011',
4492             'CPANPLUS::Dist::Build' => '0.46',
4493             'CPANPLUS::Dist::Build::Constants'=> '0.46',
4494             'Module::CoreList' => '2.26',
4495             'Pod::Man' => '2.23',
4496             'Pod::ParseLink' => '1.10',
4497             'Pod::Perldoc' => '3.15_02',
4498             'Pod::Plainer' => '1.02',
4499             'Pod::Text' => '3.14',
4500             'Pod::Text::Color' => '2.06',
4501             'Pod::Text::Overstrike' => '2.04',
4502             'Pod::Text::Termcap' => '2.06',
4503             'Safe' => '2.22',
4504             'Socket' => '1.86',
4505             'version' => '0.82',
4506             },
4507             removed => {
4508             }
4509             },
4510             5.012 => {
4511             delta_from => 5.011005,
4512             changed => {
4513             'B::Deparse' => '0.96',
4514             'CPAN::Distribution' => '1.9456_01',
4515             'Module::CoreList' => '2.29',
4516             'Safe' => '2.25',
4517             'Socket' => '1.87',
4518             'Tie::Scalar' => '1.02',
4519             'Time::Piece' => '1.15_01',
4520             'bytes' => '1.04',
4521             'feature' => '1.16',
4522             'utf8' => '1.08',
4523             },
4524             removed => {
4525             }
4526             },
4527             5.012001 => {
4528             delta_from => 5.012,
4529             changed => {
4530             'B::Deparse' => '0.97',
4531             'CGI' => '3.49',
4532             'CGI::Fast' => '1.08',
4533             'Carp' => '1.16',
4534             'Carp::Heavy' => '1.16',
4535             'File::Copy' => '2.18',
4536             'Module::CoreList' => '2.32',
4537             'Pod::Functions' => '1.04',
4538             'Pod::Simple' => '3.14',
4539             'Pod::Simple::BlackBox' => '3.14',
4540             'Pod::Simple::Checker' => '3.14',
4541             'Pod::Simple::Debug' => '3.14',
4542             'Pod::Simple::DumpAsText'=> '3.14',
4543             'Pod::Simple::DumpAsXML'=> '3.14',
4544             'Pod::Simple::HTML' => '3.14',
4545             'Pod::Simple::HTMLBatch'=> '3.14',
4546             'Pod::Simple::LinkSection'=> '3.14',
4547             'Pod::Simple::Methody' => '3.14',
4548             'Pod::Simple::Progress' => '3.14',
4549             'Pod::Simple::PullParser'=> '3.14',
4550             'Pod::Simple::PullParserEndToken'=> '3.14',
4551             'Pod::Simple::PullParserStartToken'=> '3.14',
4552             'Pod::Simple::PullParserTextToken'=> '3.14',
4553             'Pod::Simple::PullParserToken'=> '3.14',
4554             'Pod::Simple::RTF' => '3.14',
4555             'Pod::Simple::Search' => '3.14',
4556             'Pod::Simple::SimpleTree'=> '3.14',
4557             'Pod::Simple::Text' => '3.14',
4558             'Pod::Simple::TextContent'=> '3.14',
4559             'Pod::Simple::TiedOutFH'=> '3.14',
4560             'Pod::Simple::Transcode'=> '3.14',
4561             'Pod::Simple::TranscodeDumb'=> '3.14',
4562             'Pod::Simple::TranscodeSmart'=> '3.14',
4563             'Pod::Simple::XHTML' => '3.14',
4564             'Pod::Simple::XMLOutStream'=> '3.14',
4565             'Safe' => '2.27',
4566             },
4567             removed => {
4568             }
4569             },
4570             5.012002 => {
4571             delta_from => 5.012001,
4572             changed => {
4573             'Carp' => '1.17',
4574             'Carp::Heavy' => '1.17',
4575             'File::Spec' => '3.31_01',
4576             'Module::CoreList' => '2.38',
4577             'Module::Load::Conditional'=> '0.38',
4578             'PerlIO::scalar' => '0.08',
4579             },
4580             removed => {
4581             }
4582             },
4583             5.012003 => {
4584             delta_from => 5.012002,
4585             changed => {
4586             'B::Deparse' => '0.9701',
4587             'Module::Build::Platform::cygwin'=> '0.360301',
4588             'Module::CoreList' => '2.43',
4589             'Socket' => '1.87_01',
4590             },
4591             removed => {
4592             }
4593             },
4594             5.012004 => {
4595             delta_from => 5.012003,
4596             changed => {
4597             'Module::CoreList' => '2.50',
4598             },
4599             removed => {
4600             }
4601             },
4602             5.012005 => {
4603             delta_from => 5.012004,
4604             changed => {
4605             'B::Concise' => '0.78_01',
4606             'Encode' => '2.39_01',
4607             'File::Glob' => '1.07_01',
4608             'Module::CoreList' => '2.50_02',
4609             'Unicode::UCD' => '0.29',
4610             'charnames' => '1.07_01',
4611             },
4612             removed => {
4613             }
4614             },
4615             5.013 => {
4616             delta_from => 5.012,
4617             changed => {
4618             'CGI' => '3.49',
4619             'CGI::Fast' => '1.08',
4620             'Data::Dumper' => '2.126',
4621             'ExtUtils::MM_Unix' => '6.5601',
4622             'ExtUtils::MakeMaker' => '6.5601',
4623             'File::Copy' => '2.18',
4624             'IPC::Open3' => '1.06',
4625             'MIME::Base64' => '3.09',
4626             'MIME::QuotedPrint' => '3.09',
4627             'Module::CoreList' => '2.31',
4628             'Pod::Functions' => '1.04',
4629             'XS::APItest' => '0.18',
4630             'XS::APItest::KeywordRPN'=> '0.004',
4631             'feature' => '1.17',
4632             'threads' => '1.77_01',
4633             'threads::shared' => '1.33',
4634             },
4635             removed => {
4636             }
4637             },
4638             5.013001 => {
4639             delta_from => 5.012001,
4640             changed => {
4641             'Data::Dumper' => '2.126',
4642             'Dumpvalue' => '1.14',
4643             'Errno' => '1.12',
4644             'ExtUtils::MM_Unix' => '6.5601',
4645             'ExtUtils::MakeMaker' => '6.5601',
4646             'ExtUtils::ParseXS' => '2.2205',
4647             'File::Find' => '1.16',
4648             'IPC::Cmd' => '0.58',
4649             'IPC::Open3' => '1.06',
4650             'List::Util' => '1.23',
4651             'List::Util::PP' => '1.23',
4652             'List::Util::XS' => '1.23',
4653             'Locale::Codes' => '3.12',
4654             'Locale::Codes::Country'=> '3.12',
4655             'Locale::Codes::Currency'=> '3.12',
4656             'Locale::Codes::Language'=> '3.12',
4657             'Locale::Codes::Script' => '3.12',
4658             'Locale::Constants' => '3.12',
4659             'Locale::Country' => '3.12',
4660             'Locale::Currency' => '3.12',
4661             'Locale::Language' => '3.12',
4662             'Locale::Script' => '3.12',
4663             'MIME::Base64' => '3.09',
4664             'MIME::QuotedPrint' => '3.09',
4665             'Module::Build::Platform::cygwin'=> '0.360301',
4666             'Module::CoreList' => '2.34',
4667             'Module::Load::Conditional'=> '0.38',
4668             'PerlIO::scalar' => '0.08',
4669             'Scalar::Util' => '1.23',
4670             'Scalar::Util::PP' => '1.23',
4671             'Socket' => '1.88',
4672             'Term::ReadLine' => '1.06',
4673             'Unicode::UCD' => '0.28',
4674             'XS::APItest' => '0.19',
4675             'XS::APItest::KeywordRPN'=> '0.004',
4676             'charnames' => '1.08',
4677             'feature' => '1.17',
4678             'threads' => '1.77_01',
4679             'threads::shared' => '1.33',
4680             },
4681             removed => {
4682             'Class::ISA' => 1,
4683             'Pod::Plainer' => 1,
4684             'Switch' => 1,
4685             }
4686             },
4687             5.013002 => {
4688             delta_from => 5.013001,
4689             changed => {
4690             'B::Concise' => '0.79',
4691             'B::Deparse' => '0.98',
4692             'CPAN' => '1.94_57',
4693             'CPAN::Distribution' => '1.9600',
4694             'Exporter' => '5.64_02',
4695             'Exporter::Heavy' => '5.64_02',
4696             'File::Copy' => '2.19',
4697             'Hash::Util' => '0.08',
4698             'IO::Socket' => '1.32',
4699             'Locale::Codes' => '3.13',
4700             'Locale::Codes::Country'=> '3.13',
4701             'Locale::Codes::Currency'=> '3.13',
4702             'Locale::Codes::Language'=> '3.13',
4703             'Locale::Codes::Script' => '3.13',
4704             'Locale::Constants' => '3.13',
4705             'Locale::Country' => '3.13',
4706             'Locale::Currency' => '3.13',
4707             'Locale::Language' => '3.13',
4708             'Locale::Script' => '3.13',
4709             'Search::Dict' => '1.03',
4710             'Socket' => '1.89',
4711             'Thread::Semaphore' => '2.11',
4712             'UNIVERSAL' => '1.07',
4713             'VMS::DCLsym' => '1.04',
4714             'mro' => '1.03',
4715             'threads' => '1.77_02',
4716             'threads::shared' => '1.33_01',
4717             },
4718             removed => {
4719             }
4720             },
4721             5.013003 => {
4722             delta_from => 5.013002,
4723             changed => {
4724             'App::Prove' => '3.21',
4725             'App::Prove::State' => '3.21',
4726             'App::Prove::State::Result'=> '3.21',
4727             'App::Prove::State::Result::Test'=> '3.21',
4728             'Archive::Extract' => '0.42',
4729             'Archive::Tar' => '1.64',
4730             'Archive::Tar::Constant'=> '1.64',
4731             'Archive::Tar::File' => '1.64',
4732             'Attribute::Handlers' => '0.88',
4733             'CPANPLUS' => '0.9007',
4734             'CPANPLUS::Internals' => '0.9007',
4735             'CPANPLUS::Shell::Default'=> '0.9007',
4736             'Compress::Raw::Bzip2' => '2.027',
4737             'Compress::Raw::Zlib' => '2.027_01',
4738             'Compress::Zlib' => '2.027',
4739             'DB' => '1.03',
4740             'Digest::MD5' => '2.40',
4741             'Digest::SHA' => '5.48',
4742             'Exporter' => '5.64_03',
4743             'Exporter::Heavy' => '5.64_03',
4744             'ExtUtils::CBuilder' => '0.2703',
4745             'ExtUtils::CBuilder::Base'=> '0.2703_01',
4746             'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4747             'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4748             'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4749             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4750             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4751             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4752             'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4753             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4754             'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4755             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4756             'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4757             'ExtUtils::Manifest' => '1.58',
4758             'ExtUtils::ParseXS' => '2.2206',
4759             'Fatal' => '2.10',
4760             'File::Basename' => '2.79',
4761             'File::Copy' => '2.20',
4762             'File::DosGlob' => '1.02',
4763             'File::Find' => '1.17',
4764             'File::Glob' => '1.08',
4765             'File::stat' => '1.03',
4766             'I18N::LangTags' => '0.35_01',
4767             'I18N::LangTags::List' => '0.35_01',
4768             'IO::Compress::Adapter::Bzip2'=> '2.027',
4769             'IO::Compress::Adapter::Deflate'=> '2.027',
4770             'IO::Compress::Adapter::Identity'=> '2.027',
4771             'IO::Compress::Base' => '2.027',
4772             'IO::Compress::Base::Common'=> '2.027',
4773             'IO::Compress::Bzip2' => '2.027',
4774             'IO::Compress::Deflate' => '2.027',
4775             'IO::Compress::Gzip' => '2.027',
4776             'IO::Compress::Gzip::Constants'=> '2.027',
4777             'IO::Compress::RawDeflate'=> '2.027',
4778             'IO::Compress::Zip' => '2.027',
4779             'IO::Compress::Zip::Constants'=> '2.027',
4780             'IO::Compress::Zlib::Constants'=> '2.027',
4781             'IO::Compress::Zlib::Extra'=> '2.027',
4782             'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4783             'IO::Uncompress::Adapter::Identity'=> '2.027',
4784             'IO::Uncompress::Adapter::Inflate'=> '2.027',
4785             'IO::Uncompress::AnyInflate'=> '2.027',
4786             'IO::Uncompress::AnyUncompress'=> '2.027',
4787             'IO::Uncompress::Base' => '2.027',
4788             'IO::Uncompress::Bunzip2'=> '2.027',
4789             'IO::Uncompress::Gunzip'=> '2.027',
4790             'IO::Uncompress::Inflate'=> '2.027',
4791             'IO::Uncompress::RawInflate'=> '2.027',
4792             'IO::Uncompress::Unzip' => '2.027',
4793             'IPC::Cmd' => '0.60',
4794             'IPC::Msg' => '2.03',
4795             'IPC::Semaphore' => '2.03',
4796             'IPC::SharedMem' => '2.03',
4797             'IPC::SysV' => '2.03',
4798             'Locale::Maketext' => '1.15',
4799             'Locale::Maketext::Guts'=> undef,
4800             'Locale::Maketext::GutsLoader'=> undef,
4801             'Module::Build' => '0.3607',
4802             'Module::Build::Base' => '0.3607',
4803             'Module::Build::Compat' => '0.3607',
4804             'Module::Build::Config' => '0.3607',
4805             'Module::Build::Cookbook'=> '0.3607',
4806             'Module::Build::Dumper' => '0.3607',
4807             'Module::Build::ModuleInfo'=> '0.3607',
4808             'Module::Build::Notes' => '0.3607',
4809             'Module::Build::PPMMaker'=> '0.3607',
4810             'Module::Build::Platform::Amiga'=> '0.3607',
4811             'Module::Build::Platform::Default'=> '0.3607',
4812             'Module::Build::Platform::EBCDIC'=> '0.3607',
4813             'Module::Build::Platform::MPEiX'=> '0.3607',
4814             'Module::Build::Platform::MacOS'=> '0.3607',
4815             'Module::Build::Platform::RiscOS'=> '0.3607',
4816             'Module::Build::Platform::Unix'=> '0.3607',
4817             'Module::Build::Platform::VMS'=> '0.3607',
4818             'Module::Build::Platform::VOS'=> '0.3607',
4819             'Module::Build::Platform::Windows'=> '0.3607',
4820             'Module::Build::Platform::aix'=> '0.3607',
4821             'Module::Build::Platform::cygwin'=> '0.3607',
4822             'Module::Build::Platform::darwin'=> '0.3607',
4823             'Module::Build::Platform::os2'=> '0.3607',
4824             'Module::Build::PodParser'=> '0.3607',
4825             'Module::CoreList' => '2.36',
4826             'Module::Load' => '0.18',
4827             'TAP::Base' => '3.21',
4828             'TAP::Formatter::Base' => '3.21',
4829             'TAP::Formatter::Color' => '3.21',
4830             'TAP::Formatter::Console'=> '3.21',
4831             'TAP::Formatter::Console::ParallelSession'=> '3.21',
4832             'TAP::Formatter::Console::Session'=> '3.21',
4833             'TAP::Formatter::File' => '3.21',
4834             'TAP::Formatter::File::Session'=> '3.21',
4835             'TAP::Formatter::Session'=> '3.21',
4836             'TAP::Harness' => '3.21',
4837             'TAP::Object' => '3.21',
4838             'TAP::Parser' => '3.21',
4839             'TAP::Parser::Aggregator'=> '3.21',
4840             'TAP::Parser::Grammar' => '3.21',
4841             'TAP::Parser::Iterator' => '3.21',
4842             'TAP::Parser::Iterator::Array'=> '3.21',
4843             'TAP::Parser::Iterator::Process'=> '3.21',
4844             'TAP::Parser::Iterator::Stream'=> '3.21',
4845             'TAP::Parser::IteratorFactory'=> '3.21',
4846             'TAP::Parser::Multiplexer'=> '3.21',
4847             'TAP::Parser::Result' => '3.21',
4848             'TAP::Parser::Result::Bailout'=> '3.21',
4849             'TAP::Parser::Result::Comment'=> '3.21',
4850             'TAP::Parser::Result::Plan'=> '3.21',
4851             'TAP::Parser::Result::Pragma'=> '3.21',
4852             'TAP::Parser::Result::Test'=> '3.21',
4853             'TAP::Parser::Result::Unknown'=> '3.21',
4854             'TAP::Parser::Result::Version'=> '3.21',
4855             'TAP::Parser::Result::YAML'=> '3.21',
4856             'TAP::Parser::ResultFactory'=> '3.21',
4857             'TAP::Parser::Scheduler'=> '3.21',
4858             'TAP::Parser::Scheduler::Job'=> '3.21',
4859             'TAP::Parser::Scheduler::Spinner'=> '3.21',
4860             'TAP::Parser::Source' => '3.21',
4861             'TAP::Parser::SourceHandler'=> '3.21',
4862             'TAP::Parser::SourceHandler::Executable'=> '3.21',
4863             'TAP::Parser::SourceHandler::File'=> '3.21',
4864             'TAP::Parser::SourceHandler::Handle'=> '3.21',
4865             'TAP::Parser::SourceHandler::Perl'=> '3.21',
4866             'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4867             'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4868             'TAP::Parser::Utils' => '3.21',
4869             'TAP::Parser::YAMLish::Reader'=> '3.21',
4870             'TAP::Parser::YAMLish::Writer'=> '3.21',
4871             'Term::ANSIColor' => '3.00',
4872             'Term::ReadLine' => '1.07',
4873             'Test::Harness' => '3.21',
4874             'Tie::Array' => '1.04',
4875             'Time::HiRes' => '1.9721',
4876             'Time::Piece' => '1.20_01',
4877             'Unicode::Collate' => '0.53',
4878             'Unicode::Normalize' => '1.06',
4879             'Unicode::UCD' => '0.29',
4880             'autodie' => '2.10',
4881             'autodie::exception' => '2.10',
4882             'autodie::exception::system'=> '2.10',
4883             'autodie::hints' => '2.10',
4884             'blib' => '1.05',
4885             'charnames' => '1.11',
4886             'diagnostics' => '1.20',
4887             'inc::latest' => '0.3607',
4888             'lib' => '0.63',
4889             're' => '0.12',
4890             'threads' => '1.77_03',
4891             'threads::shared' => '1.33_02',
4892             'vars' => '1.02',
4893             'warnings' => '1.10',
4894             },
4895             removed => {
4896             'TAP::Parser::Source::Perl'=> 1,
4897             }
4898             },
4899             5.013004 => {
4900             delta_from => 5.013003,
4901             changed => {
4902             'App::Prove' => '3.22',
4903             'App::Prove::State' => '3.22',
4904             'App::Prove::State::Result'=> '3.22',
4905             'App::Prove::State::Result::Test'=> '3.22',
4906             'Archive::Tar' => '1.68',
4907             'Archive::Tar::Constant'=> '1.68',
4908             'Archive::Tar::File' => '1.68',
4909             'B::Lint' => '1.12',
4910             'B::Lint::Debug' => '1.12',
4911             'Carp' => '1.18',
4912             'Carp::Heavy' => '1.18',
4913             'Compress::Raw::Bzip2' => '2.030',
4914             'Compress::Raw::Zlib' => '2.030',
4915             'Compress::Zlib' => '2.030',
4916             'ExtUtils::ParseXS' => '2.2207',
4917             'File::Spec' => '3.31_01',
4918             'I18N::Langinfo' => '0.04',
4919             'IO::Compress::Adapter::Bzip2'=> '2.030',
4920             'IO::Compress::Adapter::Deflate'=> '2.030',
4921             'IO::Compress::Adapter::Identity'=> '2.030',
4922             'IO::Compress::Base' => '2.030',
4923             'IO::Compress::Base::Common'=> '2.030',
4924             'IO::Compress::Bzip2' => '2.030',
4925             'IO::Compress::Deflate' => '2.030',
4926             'IO::Compress::Gzip' => '2.030',
4927             'IO::Compress::Gzip::Constants'=> '2.030',
4928             'IO::Compress::RawDeflate'=> '2.030',
4929             'IO::Compress::Zip' => '2.030',
4930             'IO::Compress::Zip::Constants'=> '2.030',
4931             'IO::Compress::Zlib::Constants'=> '2.030',
4932             'IO::Compress::Zlib::Extra'=> '2.030',
4933             'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4934             'IO::Uncompress::Adapter::Identity'=> '2.030',
4935             'IO::Uncompress::Adapter::Inflate'=> '2.030',
4936             'IO::Uncompress::AnyInflate'=> '2.030',
4937             'IO::Uncompress::AnyUncompress'=> '2.030',
4938             'IO::Uncompress::Base' => '2.030',
4939             'IO::Uncompress::Bunzip2'=> '2.030',
4940             'IO::Uncompress::Gunzip'=> '2.030',
4941             'IO::Uncompress::Inflate'=> '2.030',
4942             'IO::Uncompress::RawInflate'=> '2.030',
4943             'IO::Uncompress::Unzip' => '2.030',
4944             'Module::CoreList' => '2.37',
4945             'TAP::Base' => '3.22',
4946             'TAP::Formatter::Base' => '3.22',
4947             'TAP::Formatter::Color' => '3.22',
4948             'TAP::Formatter::Console'=> '3.22',
4949             'TAP::Formatter::Console::ParallelSession'=> '3.22',
4950             'TAP::Formatter::Console::Session'=> '3.22',
4951             'TAP::Formatter::File' => '3.22',
4952             'TAP::Formatter::File::Session'=> '3.22',
4953             'TAP::Formatter::Session'=> '3.22',
4954             'TAP::Harness' => '3.22',
4955             'TAP::Object' => '3.22',
4956             'TAP::Parser' => '3.22',
4957             'TAP::Parser::Aggregator'=> '3.22',
4958             'TAP::Parser::Grammar' => '3.22',
4959             'TAP::Parser::Iterator' => '3.22',
4960             'TAP::Parser::Iterator::Array'=> '3.22',
4961             'TAP::Parser::Iterator::Process'=> '3.22',
4962             'TAP::Parser::Iterator::Stream'=> '3.22',
4963             'TAP::Parser::IteratorFactory'=> '3.22',
4964             'TAP::Parser::Multiplexer'=> '3.22',
4965             'TAP::Parser::Result' => '3.22',
4966             'TAP::Parser::Result::Bailout'=> '3.22',
4967             'TAP::Parser::Result::Comment'=> '3.22',
4968             'TAP::Parser::Result::Plan'=> '3.22',
4969             'TAP::Parser::Result::Pragma'=> '3.22',
4970             'TAP::Parser::Result::Test'=> '3.22',
4971             'TAP::Parser::Result::Unknown'=> '3.22',
4972             'TAP::Parser::Result::Version'=> '3.22',
4973             'TAP::Parser::Result::YAML'=> '3.22',
4974             'TAP::Parser::ResultFactory'=> '3.22',
4975             'TAP::Parser::Scheduler'=> '3.22',
4976             'TAP::Parser::Scheduler::Job'=> '3.22',
4977             'TAP::Parser::Scheduler::Spinner'=> '3.22',
4978             'TAP::Parser::Source' => '3.22',
4979             'TAP::Parser::SourceHandler'=> '3.22',
4980             'TAP::Parser::SourceHandler::Executable'=> '3.22',
4981             'TAP::Parser::SourceHandler::File'=> '3.22',
4982             'TAP::Parser::SourceHandler::Handle'=> '3.22',
4983             'TAP::Parser::SourceHandler::Perl'=> '3.22',
4984             'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4985             'TAP::Parser::Utils' => '3.22',
4986             'TAP::Parser::YAMLish::Reader'=> '3.22',
4987             'TAP::Parser::YAMLish::Writer'=> '3.22',
4988             'Test::Builder' => '0.96',
4989             'Test::Builder::Module' => '0.96',
4990             'Test::Builder::Tester' => '1.20',
4991             'Test::Builder::Tester::Color'=> '1.20',
4992             'Test::Harness' => '3.22',
4993             'Test::More' => '0.96',
4994             'Test::Simple' => '0.96',
4995             'Unicode::Collate' => '0.56',
4996             'Unicode::Collate::Locale'=> '0.56',
4997             'XS::APItest' => '0.20',
4998             'charnames' => '1.15',
4999             'feature' => '1.18',
5000             },
5001             removed => {
5002             'TAP::Parser::SourceHandler::pgTAP'=> 1,
5003             }
5004             },
5005             5.013005 => {
5006             delta_from => 5.013004,
5007             changed => {
5008             'B::Debug' => '1.16',
5009             'CPANPLUS::Dist::Build' => '0.48',
5010             'CPANPLUS::Dist::Build::Constants'=> '0.48',
5011             'Data::Dumper' => '2.128',
5012             'Encode' => '2.40',
5013             'Encode::Guess' => '2.04',
5014             'Encode::MIME::Header' => '2.12',
5015             'Encode::Unicode::UTF7' => '2.05',
5016             'Errno' => '1.13',
5017             'ExtUtils::Command::MM' => '6.57_05',
5018             'ExtUtils::Liblist' => '6.57_05',
5019             'ExtUtils::Liblist::Kid'=> '6.5705',
5020             'ExtUtils::MM' => '6.57_05',
5021             'ExtUtils::MM_AIX' => '6.57_05',
5022             'ExtUtils::MM_Any' => '6.57_05',
5023             'ExtUtils::MM_BeOS' => '6.57_05',
5024             'ExtUtils::MM_Cygwin' => '6.57_05',
5025             'ExtUtils::MM_DOS' => '6.5705',
5026             'ExtUtils::MM_Darwin' => '6.57_05',
5027             'ExtUtils::MM_MacOS' => '6.5705',
5028             'ExtUtils::MM_NW5' => '6.57_05',
5029             'ExtUtils::MM_OS2' => '6.57_05',
5030             'ExtUtils::MM_QNX' => '6.57_05',
5031             'ExtUtils::MM_UWIN' => '6.5705',
5032             'ExtUtils::MM_Unix' => '6.57_05',
5033             'ExtUtils::MM_VMS' => '6.57_05',
5034             'ExtUtils::MM_VOS' => '6.57_05',
5035             'ExtUtils::MM_Win32' => '6.57_05',
5036             'ExtUtils::MM_Win95' => '6.57_05',
5037             'ExtUtils::MY' => '6.5705',
5038             'ExtUtils::MakeMaker' => '6.57_05',
5039             'ExtUtils::MakeMaker::Config'=> '6.57_05',
5040             'ExtUtils::MakeMaker::YAML'=> '1.44',
5041             'ExtUtils::Mkbootstrap' => '6.57_05',
5042             'ExtUtils::Mksymlists' => '6.57_05',
5043             'ExtUtils::testlib' => '6.5705',
5044             'Filter::Simple' => '0.85',
5045             'Hash::Util' => '0.09',
5046             'Math::BigFloat' => '1.62',
5047             'Math::BigInt' => '1.95',
5048             'Math::BigInt::Calc' => '0.54',
5049             'Math::BigInt::CalcEmu' => '0.06',
5050             'Math::BigInt::FastCalc'=> '0.22',
5051             'Math::BigRat' => '0.26',
5052             'Module::CoreList' => '2.39',
5053             'POSIX' => '1.20',
5054             'PerlIO::scalar' => '0.09',
5055             'Safe' => '2.28',
5056             'Test::Builder' => '0.97_01',
5057             'Test::Builder::Module' => '0.97_01',
5058             'Test::Builder::Tester' => '1.21_01',
5059             'Test::Builder::Tester::Color'=> '1.21_01',
5060             'Test::More' => '0.97_01',
5061             'Test::Simple' => '0.97_01',
5062             'Tie::Hash' => '1.04',
5063             'Unicode::Collate' => '0.59',
5064             'Unicode::Collate::Locale'=> '0.59',
5065             'XS::APItest' => '0.21',
5066             'XS::APItest::KeywordRPN'=> '0.005',
5067             'XSLoader' => '0.11',
5068             'bigint' => '0.25',
5069             'bignum' => '0.25',
5070             'bigrat' => '0.25',
5071             'blib' => '1.06',
5072             'open' => '1.08',
5073             'threads::shared' => '1.33_03',
5074             'warnings' => '1.11',
5075             'warnings::register' => '1.02',
5076             },
5077             removed => {
5078             }
5079             },
5080             5.013006 => {
5081             delta_from => 5.013005,
5082             changed => {
5083             'Archive::Extract' => '0.44',
5084             'B' => '1.24',
5085             'B::Deparse' => '0.99',
5086             'CPAN' => '1.94_61',
5087             'CPAN::FTP' => '5.5005',
5088             'CPAN::Queue' => '5.5001',
5089             'CPAN::Version' => '5.5001',
5090             'Carp' => '1.19',
5091             'Carp::Heavy' => '1.19',
5092             'Compress::Raw::Bzip2' => '2.031',
5093             'Cwd' => '3.34',
5094             'Data::Dumper' => '2.129',
5095             'Devel::Peek' => '1.05',
5096             'Digest::MD5' => '2.51',
5097             'ExtUtils::Constant::Base'=> '0.05',
5098             'ExtUtils::Constant::ProxySubs'=> '0.07',
5099             'ExtUtils::Embed' => '1.29',
5100             'ExtUtils::XSSymSet' => '1.2',
5101             'Fcntl' => '1.09',
5102             'File::DosGlob' => '1.03',
5103             'File::Find' => '1.18',
5104             'File::Glob' => '1.09',
5105             'File::Spec' => '3.33',
5106             'File::Spec::Cygwin' => '3.33',
5107             'File::Spec::Epoc' => '3.33',
5108             'File::Spec::Functions' => '3.33',
5109             'File::Spec::Mac' => '3.33',
5110             'File::Spec::OS2' => '3.33',
5111             'File::Spec::Unix' => '3.33',
5112             'File::Spec::VMS' => '3.33',
5113             'File::Spec::Win32' => '3.33',
5114             'GDBM_File' => '1.11',
5115             'Hash::Util::FieldHash' => '1.05',
5116             'I18N::Langinfo' => '0.06',
5117             'IPC::Cmd' => '0.64',
5118             'IPC::Open3' => '1.07',
5119             'Locale::Codes' => '3.14',
5120             'Locale::Codes::Country'=> '3.14',
5121             'Locale::Codes::Currency'=> '3.14',
5122             'Locale::Codes::Language'=> '3.14',
5123             'Locale::Codes::Script' => '3.14',
5124             'Locale::Constants' => '3.14',
5125             'Locale::Country' => '3.14',
5126             'Locale::Currency' => '3.14',
5127             'Locale::Language' => '3.14',
5128             'Locale::Maketext' => '1.16',
5129             'Locale::Script' => '3.14',
5130             'Math::BigFloat' => '1.63',
5131             'Math::BigInt' => '1.97',
5132             'Math::BigInt::Calc' => '0.55',
5133             'Math::BigInt::CalcEmu' => '0.07',
5134             'Module::CoreList' => '2.40',
5135             'NDBM_File' => '1.09',
5136             'NEXT' => '0.65',
5137             'ODBM_File' => '1.08',
5138             'Opcode' => '1.16',
5139             'POSIX' => '1.21',
5140             'PerlIO::encoding' => '0.13',
5141             'PerlIO::scalar' => '0.10',
5142             'PerlIO::via' => '0.10',
5143             'Pod::Man' => '2.25',
5144             'Pod::Text' => '3.15',
5145             'SDBM_File' => '1.07',
5146             'Socket' => '1.90',
5147             'Sys::Hostname' => '1.13',
5148             'Tie::Hash::NamedCapture'=> '0.07',
5149             'Unicode::Collate' => '0.63',
5150             'Unicode::Collate::Locale'=> '0.63',
5151             'Unicode::Normalize' => '1.07',
5152             'XS::APItest' => '0.23',
5153             'XSLoader' => '0.13',
5154             'attributes' => '0.13',
5155             'charnames' => '1.16',
5156             'if' => '0.06',
5157             'mro' => '1.04',
5158             'overload' => '1.11',
5159             're' => '0.13',
5160             'sigtrap' => '1.05',
5161             'threads' => '1.81_01',
5162             'threads::shared' => '1.34',
5163             },
5164             removed => {
5165             'XS::APItest::KeywordRPN'=> 1,
5166             }
5167             },
5168             5.013007 => {
5169             delta_from => 5.013006,
5170             changed => {
5171             'Archive::Extract' => '0.46',
5172             'Archive::Tar' => '1.72',
5173             'Archive::Tar::Constant'=> '1.72',
5174             'Archive::Tar::File' => '1.72',
5175             'AutoLoader' => '5.71',
5176             'B' => '1.26',
5177             'B::Concise' => '0.81',
5178             'B::Deparse' => '1.01',
5179             'CGI' => '3.50',
5180             'CPAN' => '1.94_62',
5181             'CPANPLUS' => '0.9010',
5182             'CPANPLUS::Dist::Build' => '0.50',
5183             'CPANPLUS::Dist::Build::Constants'=> '0.50',
5184             'CPANPLUS::Internals' => '0.9010',
5185             'CPANPLUS::Shell::Default'=> '0.9010',
5186             'Data::Dumper' => '2.130_01',
5187             'DynaLoader' => '1.11',
5188             'ExtUtils::Constant' => '0.23',
5189             'ExtUtils::Constant::ProxySubs'=> '0.08',
5190             'Fcntl' => '1.10',
5191             'File::Fetch' => '0.28',
5192             'File::Glob' => '1.10',
5193             'File::stat' => '1.04',
5194             'GDBM_File' => '1.12',
5195             'Hash::Util' => '0.10',
5196             'Hash::Util::FieldHash' => '1.06',
5197             'I18N::Langinfo' => '0.07',
5198             'Locale::Maketext' => '1.17',
5199             'Locale::Maketext::Guts'=> '1.17',
5200             'Locale::Maketext::GutsLoader'=> '1.17',
5201             'MIME::Base64' => '3.10',
5202             'MIME::QuotedPrint' => '3.10',
5203             'Math::BigFloat' => '1.99_01',
5204             'Math::BigInt' => '1.99_01',
5205             'Math::BigInt::Calc' => '1.99_01',
5206             'Math::BigInt::CalcEmu' => '1.99_01',
5207             'Math::BigInt::FastCalc'=> '0.24_01',
5208             'Math::BigRat' => '0.26_01',
5209             'Module::CoreList' => '2.41',
5210             'NDBM_File' => '1.10',
5211             'ODBM_File' => '1.09',
5212             'Opcode' => '1.17',
5213             'POSIX' => '1.22',
5214             'Pod::Simple' => '3.15',
5215             'Pod::Simple::BlackBox' => '3.15',
5216             'Pod::Simple::Checker' => '3.15',
5217             'Pod::Simple::Debug' => '3.15',
5218             'Pod::Simple::DumpAsText'=> '3.15',
5219             'Pod::Simple::DumpAsXML'=> '3.15',
5220             'Pod::Simple::HTML' => '3.15',
5221             'Pod::Simple::HTMLBatch'=> '3.15',
5222             'Pod::Simple::LinkSection'=> '3.15',
5223             'Pod::Simple::Methody' => '3.15',
5224             'Pod::Simple::Progress' => '3.15',
5225             'Pod::Simple::PullParser'=> '3.15',
5226             'Pod::Simple::PullParserEndToken'=> '3.15',
5227             'Pod::Simple::PullParserStartToken'=> '3.15',
5228             'Pod::Simple::PullParserTextToken'=> '3.15',
5229             'Pod::Simple::PullParserToken'=> '3.15',
5230             'Pod::Simple::RTF' => '3.15',
5231             'Pod::Simple::Search' => '3.15',
5232             'Pod::Simple::SimpleTree'=> '3.15',
5233             'Pod::Simple::Text' => '3.15',
5234             'Pod::Simple::TextContent'=> '3.15',
5235             'Pod::Simple::TiedOutFH'=> '3.15',
5236             'Pod::Simple::Transcode'=> '3.15',
5237             'Pod::Simple::TranscodeDumb'=> '3.15',
5238             'Pod::Simple::TranscodeSmart'=> '3.15',
5239             'Pod::Simple::XHTML' => '3.15',
5240             'Pod::Simple::XMLOutStream'=> '3.15',
5241             'SDBM_File' => '1.08',
5242             'Safe' => '2.29',
5243             'SelfLoader' => '1.18',
5244             'Socket' => '1.91',
5245             'Storable' => '2.24',
5246             'Sys::Hostname' => '1.14',
5247             'Unicode' => '6.0.0',
5248             'Unicode::Collate' => '0.67',
5249             'Unicode::Collate::CJK::Big5'=> '0.65',
5250             'Unicode::Collate::CJK::GB2312'=> '0.65',
5251             'Unicode::Collate::CJK::JISX0208'=> '0.64',
5252             'Unicode::Collate::CJK::Korean'=> '0.66',
5253             'Unicode::Collate::CJK::Pinyin'=> '0.65',
5254             'Unicode::Collate::CJK::Stroke'=> '0.65',
5255             'Unicode::Collate::Locale'=> '0.67',
5256             'XS::APItest' => '0.26',
5257             'XS::Typemap' => '0.04',
5258             'charnames' => '1.17',
5259             'mro' => '1.05',
5260             'parent' => '0.224',
5261             're' => '0.14',
5262             'threads' => '1.81_02',
5263             },
5264             removed => {
5265             }
5266             },
5267             5.013008 => {
5268             delta_from => 5.013007,
5269             changed => {
5270             'Archive::Tar' => '1.74',
5271             'Archive::Tar::Constant'=> '1.74',
5272             'Archive::Tar::File' => '1.74',
5273             'B' => '1.27',
5274             'B::Concise' => '0.82',
5275             'B::Deparse' => '1.02',
5276             'Carp::Heavy' => '1.17',
5277             'Cwd' => '3.35',
5278             'Data::Dumper' => '2.130_02',
5279             'Devel::Peek' => '1.06',
5280             'Devel::SelfStubber' => '1.05',
5281             'Digest::SHA' => '5.50',
5282             'Dumpvalue' => '1.15',
5283             'DynaLoader' => '1.12',
5284             'Env' => '1.02',
5285             'Exporter::Heavy' => '5.64_01',
5286             'ExtUtils::CBuilder' => '0.280201',
5287             'ExtUtils::CBuilder::Base'=> '0.280201',
5288             'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5289             'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5290             'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5291             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5292             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5293             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5294             'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5295             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5296             'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5297             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5298             'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5299             'ExtUtils::Constant::Utils'=> '0.03',
5300             'ExtUtils::Embed' => '1.30',
5301             'ExtUtils::ParseXS' => '2.2208',
5302             'Fatal' => '2.1001',
5303             'Fcntl' => '1.11',
5304             'File::CheckTree' => '4.41',
5305             'File::Glob' => '1.11',
5306             'GDBM_File' => '1.13',
5307             'Hash::Util::FieldHash' => '1.07',
5308             'I18N::Collate' => '1.02',
5309             'IO' => '1.25_03',
5310             'IPC::Cmd' => '0.66',
5311             'IPC::Open3' => '1.08',
5312             'Locale::Codes' => '3.15',
5313             'Locale::Codes::Country'=> '3.15',
5314             'Locale::Codes::Currency'=> '3.15',
5315             'Locale::Codes::Language'=> '3.15',
5316             'Locale::Codes::Script' => '3.15',
5317             'Locale::Constants' => '3.15',
5318             'Locale::Country' => '3.15',
5319             'Locale::Currency' => '3.15',
5320             'Locale::Language' => '3.15',
5321             'Locale::Script' => '3.15',
5322             'MIME::Base64' => '3.13',
5323             'MIME::QuotedPrint' => '3.13',
5324             'Math::BigFloat' => '1.99_02',
5325             'Math::BigInt' => '1.99_02',
5326             'Math::BigInt::Calc' => '1.99_02',
5327             'Math::BigInt::CalcEmu' => '1.99_02',
5328             'Memoize' => '1.02',
5329             'Memoize::AnyDBM_File' => '1.02',
5330             'Memoize::Expire' => '1.02',
5331             'Memoize::ExpireFile' => '1.02',
5332             'Memoize::ExpireTest' => '1.02',
5333             'Memoize::NDBM_File' => '1.02',
5334             'Memoize::SDBM_File' => '1.02',
5335             'Memoize::Storable' => '1.02',
5336             'Module::CoreList' => '2.43',
5337             'NDBM_File' => '1.11',
5338             'Net::Ping' => '2.37',
5339             'ODBM_File' => '1.10',
5340             'Opcode' => '1.18',
5341             'POSIX' => '1.23',
5342             'PerlIO::encoding' => '0.14',
5343             'PerlIO::scalar' => '0.11',
5344             'PerlIO::via' => '0.11',
5345             'SDBM_File' => '1.09',
5346             'Socket' => '1.92',
5347             'Storable' => '2.25',
5348             'Time::HiRes' => '1.9721_01',
5349             'Unicode::Collate' => '0.6801',
5350             'Unicode::Collate::Locale'=> '0.68',
5351             'Unicode::Normalize' => '1.08',
5352             'Unicode::UCD' => '0.30',
5353             'Win32' => '0.41',
5354             'XS::APItest' => '0.27',
5355             'autodie' => '2.1001',
5356             'autodie::exception' => '2.1001',
5357             'autodie::exception::system'=> '2.1001',
5358             'autodie::hints' => '2.1001',
5359             'feature' => '1.19',
5360             'if' => '0.0601',
5361             'mro' => '1.06',
5362             'overload' => '1.12',
5363             're' => '0.15',
5364             'threads' => '1.81_03',
5365             'threads::shared' => '1.35',
5366             'version' => '0.86',
5367             },
5368             removed => {
5369             }
5370             },
5371             5.013009 => {
5372             delta_from => 5.013008,
5373             changed => {
5374             'Archive::Extract' => '0.48',
5375             'Archive::Tar' => '1.76',
5376             'Archive::Tar::Constant'=> '1.76',
5377             'Archive::Tar::File' => '1.76',
5378             'B::Concise' => '0.83',
5379             'B::Deparse' => '1.03',
5380             'B::Lint' => '1.13',
5381             'Benchmark' => '1.12',
5382             'CGI' => '3.51',
5383             'CGI::Carp' => '3.51',
5384             'CGI::Cookie' => '1.30',
5385             'CGI::Push' => '1.05',
5386             'CGI::Util' => '3.51',
5387             'CPAN' => '1.94_63',
5388             'CPAN::HTTP::Client' => '1.94',
5389             'CPAN::HTTP::Credentials'=> '1.94',
5390             'CPAN::Meta::YAML' => '0.003',
5391             'CPANPLUS' => '0.9011',
5392             'CPANPLUS::Dist::Build' => '0.52',
5393             'CPANPLUS::Dist::Build::Constants'=> '0.52',
5394             'CPANPLUS::Internals' => '0.9011',
5395             'CPANPLUS::Shell::Default'=> '0.9011',
5396             'Carp::Heavy' => '1.19',
5397             'Compress::Raw::Bzip2' => '2.033',
5398             'Compress::Raw::Zlib' => '2.033',
5399             'Compress::Zlib' => '2.033',
5400             'Cwd' => '3.36',
5401             'DBM_Filter' => '0.04',
5402             'DB_File' => '1.821',
5403             'Devel::Peek' => '1.07',
5404             'DirHandle' => '1.04',
5405             'Dumpvalue' => '1.16',
5406             'Encode' => '2.42',
5407             'Encode::Alias' => '2.13',
5408             'Encode::MIME::Header' => '2.13',
5409             'Exporter::Heavy' => '5.64_03',
5410             'ExtUtils::Install' => '1.56',
5411             'ExtUtils::ParseXS' => '2.2209',
5412             'File::Basename' => '2.80',
5413             'File::Copy' => '2.21',
5414             'File::DosGlob' => '1.04',
5415             'File::Fetch' => '0.32',
5416             'File::Find' => '1.19',
5417             'File::Spec::Mac' => '3.34',
5418             'File::Spec::VMS' => '3.34',
5419             'File::stat' => '1.05',
5420             'HTTP::Tiny' => '0.009',
5421             'Hash::Util::FieldHash' => '1.08',
5422             'IO::Compress::Adapter::Bzip2'=> '2.033',
5423             'IO::Compress::Adapter::Deflate'=> '2.033',
5424             'IO::Compress::Adapter::Identity'=> '2.033',
5425             'IO::Compress::Base' => '2.033',
5426             'IO::Compress::Base::Common'=> '2.033',
5427             'IO::Compress::Bzip2' => '2.033',
5428             'IO::Compress::Deflate' => '2.033',
5429             'IO::Compress::Gzip' => '2.033',
5430             'IO::Compress::Gzip::Constants'=> '2.033',
5431             'IO::Compress::RawDeflate'=> '2.033',
5432             'IO::Compress::Zip' => '2.033',
5433             'IO::Compress::Zip::Constants'=> '2.033',
5434             'IO::Compress::Zlib::Constants'=> '2.033',
5435             'IO::Compress::Zlib::Extra'=> '2.033',
5436             'IO::Handle' => '1.29',
5437             'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5438             'IO::Uncompress::Adapter::Identity'=> '2.033',
5439             'IO::Uncompress::Adapter::Inflate'=> '2.033',
5440             'IO::Uncompress::AnyInflate'=> '2.033',
5441             'IO::Uncompress::AnyUncompress'=> '2.033',
5442             'IO::Uncompress::Base' => '2.033',
5443             'IO::Uncompress::Bunzip2'=> '2.033',
5444             'IO::Uncompress::Gunzip'=> '2.033',
5445             'IO::Uncompress::Inflate'=> '2.033',
5446             'IO::Uncompress::RawInflate'=> '2.033',
5447             'IO::Uncompress::Unzip' => '2.033',
5448             'IPC::Cmd' => '0.68',
5449             'IPC::Open3' => '1.09',
5450             'JSON::PP' => '2.27103',
5451             'JSON::PP::Boolean' => undef,
5452             'Locale::Maketext' => '1.18',
5453             'Log::Message' => '0.04',
5454             'Log::Message::Config' => '0.04',
5455             'Log::Message::Handlers'=> '0.04',
5456             'Log::Message::Item' => '0.04',
5457             'Log::Message::Simple' => '0.08',
5458             'Math::BigFloat' => '1.99_03',
5459             'Math::BigInt' => '1.99_03',
5460             'Math::BigInt::Calc' => '1.99_03',
5461             'Math::BigInt::FastCalc'=> '0.24_02',
5462             'Math::BigRat' => '0.26_02',
5463             'Module::CoreList' => '2.42_01',
5464             'Module::Load::Conditional'=> '0.40',
5465             'Module::Metadata' => '1.000003',
5466             'Net::Ping' => '2.38',
5467             'OS2::Process' => '1.05',
5468             'Object::Accessor' => '0.38',
5469             'POSIX' => '1.24',
5470             'Params::Check' => '0.28',
5471             'Perl::OSType' => '1.002',
5472             'Pod::LaTeX' => '0.59',
5473             'Pod::Perldoc' => '3.15_03',
5474             'Socket' => '1.93',
5475             'Storable' => '2.26',
5476             'Sys::Hostname' => '1.15',
5477             'Term::UI' => '0.24',
5478             'Thread::Queue' => '2.12',
5479             'Thread::Semaphore' => '2.12',
5480             'Time::Local' => '1.2000',
5481             'UNIVERSAL' => '1.08',
5482             'Unicode::Normalize' => '1.10',
5483             'Win32' => '0.44',
5484             'bigint' => '0.26',
5485             'bignum' => '0.26',
5486             'bigrat' => '0.26',
5487             'charnames' => '1.18',
5488             'diagnostics' => '1.21',
5489             're' => '0.16',
5490             'threads' => '1.83',
5491             'threads::shared' => '1.36',
5492             'version' => '0.88',
5493             },
5494             removed => {
5495             }
5496             },
5497             5.01301 => {
5498             delta_from => 5.013009,
5499             changed => {
5500             'Attribute::Handlers' => '0.89',
5501             'B' => '1.28',
5502             'B::Showlex' => '1.03',
5503             'CGI' => '3.52',
5504             'CPAN' => '1.94_65',
5505             'CPAN::Distribution' => '1.9601',
5506             'CPAN::FTP::netrc' => '1.01',
5507             'CPAN::FirstTime' => '5.5303',
5508             'CPAN::HandleConfig' => '5.5003',
5509             'CPAN::Meta' => '2.110440',
5510             'CPAN::Meta::Converter' => '2.110440',
5511             'CPAN::Meta::Feature' => '2.110440',
5512             'CPAN::Meta::History' => '2.110440',
5513             'CPAN::Meta::Prereqs' => '2.110440',
5514             'CPAN::Meta::Spec' => '2.110440',
5515             'CPAN::Meta::Validator' => '2.110440',
5516             'CPAN::Shell' => '5.5002',
5517             'CPANPLUS' => '0.9101',
5518             'CPANPLUS::Internals' => '0.9101',
5519             'CPANPLUS::Shell::Default'=> '0.9101',
5520             'Carp' => '1.20',
5521             'Carp::Heavy' => '1.20',
5522             'Cwd' => '3.37',
5523             'Devel::DProf' => '20110217.00',
5524             'DynaLoader' => '1.13',
5525             'ExtUtils::CBuilder' => '0.280202',
5526             'ExtUtils::CBuilder::Base'=> '0.280202',
5527             'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5528             'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5529             'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5530             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5531             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5532             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5533             'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5534             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5535             'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5536             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5537             'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5538             'File::Copy' => '2.22',
5539             'Filter::Simple' => '0.86',
5540             'HTTP::Tiny' => '0.010',
5541             'I18N::LangTags::Detect'=> '1.05',
5542             'IO::Select' => '1.18',
5543             'IPC::Cmd' => '0.70',
5544             'Locale::Maketext' => '1.19',
5545             'Math::BigFloat' => '1.992',
5546             'Math::BigInt' => '1.992',
5547             'Math::BigInt::Calc' => '1.992',
5548             'Math::BigInt::CalcEmu' => '1.992',
5549             'Module::Build' => '0.37_05',
5550             'Module::Build::Base' => '0.37_05',
5551             'Module::Build::Compat' => '0.37_05',
5552             'Module::Build::Config' => '0.37_05',
5553             'Module::Build::Cookbook'=> '0.37_05',
5554             'Module::Build::Dumper' => '0.37_05',
5555             'Module::Build::ModuleInfo'=> '0.37_05',
5556             'Module::Build::Notes' => '0.37_05',
5557             'Module::Build::PPMMaker'=> '0.37_05',
5558             'Module::Build::Platform::Amiga'=> '0.37_05',
5559             'Module::Build::Platform::Default'=> '0.37_05',
5560             'Module::Build::Platform::EBCDIC'=> '0.37_05',
5561             'Module::Build::Platform::MPEiX'=> '0.37_05',
5562             'Module::Build::Platform::MacOS'=> '0.37_05',
5563             'Module::Build::Platform::RiscOS'=> '0.37_05',
5564             'Module::Build::Platform::Unix'=> '0.37_05',
5565             'Module::Build::Platform::VMS'=> '0.37_05',
5566             'Module::Build::Platform::VOS'=> '0.37_05',
5567             'Module::Build::Platform::Windows'=> '0.37_05',
5568             'Module::Build::Platform::aix'=> '0.37_05',
5569             'Module::Build::Platform::cygwin'=> '0.37_05',
5570             'Module::Build::Platform::darwin'=> '0.37_05',
5571             'Module::Build::Platform::os2'=> '0.37_05',
5572             'Module::Build::PodParser'=> '0.37_05',
5573             'Module::Build::Version'=> '0.87',
5574             'Module::Build::YAML' => '1.41',
5575             'Module::CoreList' => '2.45',
5576             'Module::Load::Conditional'=> '0.44',
5577             'Module::Metadata' => '1.000004',
5578             'OS2::Process' => '1.06',
5579             'Parse::CPAN::Meta' => '1.4401',
5580             'Pod::Html' => '1.1',
5581             'Socket' => '1.94',
5582             'Term::UI' => '0.26',
5583             'Unicode::Collate' => '0.72',
5584             'Unicode::Collate::Locale'=> '0.71',
5585             'Unicode::UCD' => '0.31',
5586             'VMS::DCLsym' => '1.05',
5587             'Version::Requirements' => '0.101020',
5588             'bigrat' => '0.27',
5589             'deprecate' => '0.02',
5590             'diagnostics' => '1.22',
5591             'inc::latest' => '0.37_05',
5592             'overload' => '1.13',
5593             're' => '0.17',
5594             'utf8' => '1.09',
5595             'warnings' => '1.12',
5596             },
5597             removed => {
5598             }
5599             },
5600             5.013011 => {
5601             delta_from => 5.01301,
5602             changed => {
5603             'App::Prove' => '3.23',
5604             'App::Prove::State' => '3.23',
5605             'App::Prove::State::Result'=> '3.23',
5606             'App::Prove::State::Result::Test'=> '3.23',
5607             'B' => '1.29',
5608             'CPAN' => '1.9600',
5609             'CPAN::Author' => '5.5001',
5610             'CPAN::CacheMgr' => '5.5001',
5611             'CPAN::Distribution' => '1.9602',
5612             'CPAN::Exception::blocked_urllist'=> '1.001',
5613             'CPAN::HTTP::Client' => '1.9600',
5614             'CPAN::HTTP::Credentials'=> '1.9600',
5615             'CPAN::Index' => '1.9600',
5616             'CPAN::LWP::UserAgent' => '1.9600',
5617             'CPAN::Mirrors' => '1.9600',
5618             'CPAN::Module' => '5.5001',
5619             'CPANPLUS' => '0.9103',
5620             'CPANPLUS::Dist::Build' => '0.54',
5621             'CPANPLUS::Dist::Build::Constants'=> '0.54',
5622             'CPANPLUS::Internals' => '0.9103',
5623             'CPANPLUS::Shell::Default'=> '0.9103',
5624             'Cwd' => '3.36',
5625             'Devel::DProf' => '20110228.00',
5626             'Digest::SHA' => '5.61',
5627             'ExtUtils::Command' => '1.17',
5628             'File::Basename' => '2.81',
5629             'File::Copy' => '2.21',
5630             'File::Glob' => '1.12',
5631             'GDBM_File' => '1.14',
5632             'HTTP::Tiny' => '0.011',
5633             'Hash::Util' => '0.11',
5634             'Hash::Util::FieldHash' => '1.09',
5635             'I18N::Langinfo' => '0.08',
5636             'IO' => '1.25_04',
5637             'IO::Dir' => '1.08',
5638             'IO::File' => '1.15',
5639             'IO::Handle' => '1.30',
5640             'IO::Pipe' => '1.14',
5641             'IO::Poll' => '0.08',
5642             'IO::Select' => '1.20',
5643             'JSON::PP' => '2.27105',
5644             'Locale::Codes' => '3.16',
5645             'Locale::Codes::Country'=> '3.16',
5646             'Locale::Codes::Currency'=> '3.16',
5647             'Locale::Codes::Language'=> '3.16',
5648             'Locale::Codes::Script' => '3.16',
5649             'Locale::Constants' => '3.16',
5650             'Locale::Country' => '3.16',
5651             'Locale::Currency' => '3.16',
5652             'Locale::Language' => '3.16',
5653             'Locale::Script' => '3.16',
5654             'Math::BigFloat' => '1.993',
5655             'Math::BigInt' => '1.994',
5656             'Math::BigInt::Calc' => '1.993',
5657             'Math::BigInt::CalcEmu' => '1.993',
5658             'Math::BigInt::FastCalc'=> '0.28',
5659             'Module::Build' => '0.3800',
5660             'Module::Build::Base' => '0.3800',
5661             'Module::Build::Compat' => '0.3800',
5662             'Module::Build::Config' => '0.3800',
5663             'Module::Build::Cookbook'=> '0.3800',
5664             'Module::Build::Dumper' => '0.3800',
5665             'Module::Build::ModuleInfo'=> '0.3800',
5666             'Module::Build::Notes' => '0.3800',
5667             'Module::Build::PPMMaker'=> '0.3800',
5668             'Module::Build::Platform::Amiga'=> '0.3800',
5669             'Module::Build::Platform::Default'=> '0.3800',
5670             'Module::Build::Platform::EBCDIC'=> '0.3800',
5671             'Module::Build::Platform::MPEiX'=> '0.3800',
5672             'Module::Build::Platform::MacOS'=> '0.3800',
5673             'Module::Build::Platform::RiscOS'=> '0.3800',
5674             'Module::Build::Platform::Unix'=> '0.3800',
5675             'Module::Build::Platform::VMS'=> '0.3800',
5676             'Module::Build::Platform::VOS'=> '0.3800',
5677             'Module::Build::Platform::Windows'=> '0.3800',
5678             'Module::Build::Platform::aix'=> '0.3800',
5679             'Module::Build::Platform::cygwin'=> '0.3800',
5680             'Module::Build::Platform::darwin'=> '0.3800',
5681             'Module::Build::Platform::os2'=> '0.3800',
5682             'Module::Build::PodParser'=> '0.3800',
5683             'Module::CoreList' => '2.46',
5684             'NDBM_File' => '1.12',
5685             'Pod::Simple' => '3.16',
5686             'Pod::Simple::BlackBox' => '3.16',
5687             'Pod::Simple::Checker' => '3.16',
5688             'Pod::Simple::Debug' => '3.16',
5689             'Pod::Simple::DumpAsText'=> '3.16',
5690             'Pod::Simple::DumpAsXML'=> '3.16',
5691             'Pod::Simple::HTML' => '3.16',
5692             'Pod::Simple::HTMLBatch'=> '3.16',
5693             'Pod::Simple::LinkSection'=> '3.16',
5694             'Pod::Simple::Methody' => '3.16',
5695             'Pod::Simple::Progress' => '3.16',
5696             'Pod::Simple::PullParser'=> '3.16',
5697             'Pod::Simple::PullParserEndToken'=> '3.16',
5698             'Pod::Simple::PullParserStartToken'=> '3.16',
5699             'Pod::Simple::PullParserTextToken'=> '3.16',
5700             'Pod::Simple::PullParserToken'=> '3.16',
5701             'Pod::Simple::RTF' => '3.16',
5702             'Pod::Simple::Search' => '3.16',
5703             'Pod::Simple::SimpleTree'=> '3.16',
5704             'Pod::Simple::Text' => '3.16',
5705             'Pod::Simple::TextContent'=> '3.16',
5706             'Pod::Simple::TiedOutFH'=> '3.16',
5707             'Pod::Simple::Transcode'=> '3.16',
5708             'Pod::Simple::TranscodeDumb'=> '3.16',
5709             'Pod::Simple::TranscodeSmart'=> '3.16',
5710             'Pod::Simple::XHTML' => '3.16',
5711             'Pod::Simple::XMLOutStream'=> '3.16',
5712             'Storable' => '2.27',
5713             'Sys::Hostname' => '1.16',
5714             'TAP::Base' => '3.23',
5715             'TAP::Formatter::Base' => '3.23',
5716             'TAP::Formatter::Color' => '3.23',
5717             'TAP::Formatter::Console'=> '3.23',
5718             'TAP::Formatter::Console::ParallelSession'=> '3.23',
5719             'TAP::Formatter::Console::Session'=> '3.23',
5720             'TAP::Formatter::File' => '3.23',
5721             'TAP::Formatter::File::Session'=> '3.23',
5722             'TAP::Formatter::Session'=> '3.23',
5723             'TAP::Harness' => '3.23',
5724             'TAP::Object' => '3.23',
5725             'TAP::Parser' => '3.23',
5726             'TAP::Parser::Aggregator'=> '3.23',
5727             'TAP::Parser::Grammar' => '3.23',
5728             'TAP::Parser::Iterator' => '3.23',
5729             'TAP::Parser::Iterator::Array'=> '3.23',
5730             'TAP::Parser::Iterator::Process'=> '3.23',
5731             'TAP::Parser::Iterator::Stream'=> '3.23',
5732             'TAP::Parser::IteratorFactory'=> '3.23',
5733             'TAP::Parser::Multiplexer'=> '3.23',
5734             'TAP::Parser::Result' => '3.23',
5735             'TAP::Parser::Result::Bailout'=> '3.23',
5736             'TAP::Parser::Result::Comment'=> '3.23',
5737             'TAP::Parser::Result::Plan'=> '3.23',
5738             'TAP::Parser::Result::Pragma'=> '3.23',
5739             'TAP::Parser::Result::Test'=> '3.23',
5740             'TAP::Parser::Result::Unknown'=> '3.23',
5741             'TAP::Parser::Result::Version'=> '3.23',
5742             'TAP::Parser::Result::YAML'=> '3.23',
5743             'TAP::Parser::ResultFactory'=> '3.23',
5744             'TAP::Parser::Scheduler'=> '3.23',
5745             'TAP::Parser::Scheduler::Job'=> '3.23',
5746             'TAP::Parser::Scheduler::Spinner'=> '3.23',
5747             'TAP::Parser::Source' => '3.23',
5748             'TAP::Parser::SourceHandler'=> '3.23',
5749             'TAP::Parser::SourceHandler::Executable'=> '3.23',
5750             'TAP::Parser::SourceHandler::File'=> '3.23',
5751             'TAP::Parser::SourceHandler::Handle'=> '3.23',
5752             'TAP::Parser::SourceHandler::Perl'=> '3.23',
5753             'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5754             'TAP::Parser::Utils' => '3.23',
5755             'TAP::Parser::YAMLish::Reader'=> '3.23',
5756             'TAP::Parser::YAMLish::Writer'=> '3.23',
5757             'Test::Builder' => '0.98',
5758             'Test::Builder::Module' => '0.98',
5759             'Test::Builder::Tester' => '1.22',
5760             'Test::Builder::Tester::Color'=> '1.22',
5761             'Test::Harness' => '3.23',
5762             'Test::More' => '0.98',
5763             'Test::Simple' => '0.98',
5764             'Tie::Hash::NamedCapture'=> '0.08',
5765             'Tie::RefHash' => '1.39',
5766             'Unicode::Collate' => '0.73',
5767             'Unicode::Collate::Locale'=> '0.73',
5768             'Unicode::UCD' => '0.32',
5769             'XS::Typemap' => '0.05',
5770             'attributes' => '0.14',
5771             'base' => '2.16',
5772             'inc::latest' => '0.3800',
5773             'mro' => '1.07',
5774             'parent' => '0.225',
5775             },
5776             removed => {
5777             }
5778             },
5779             5.014 => {
5780             delta_from => 5.013011,
5781             changed => {
5782             'ExtUtils::CBuilder' => '0.280203',
5783             'ExtUtils::CBuilder::Base'=> '0.280203',
5784             'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5785             'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5786             'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5787             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5788             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5789             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5790             'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5791             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5792             'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5793             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5794             'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5795             'ExtUtils::ParseXS' => '2.2210',
5796             'File::Basename' => '2.82',
5797             'HTTP::Tiny' => '0.012',
5798             'IO::Handle' => '1.31',
5799             'Module::CoreList' => '2.49',
5800             'PerlIO' => '1.07',
5801             'Pod::Html' => '1.11',
5802             'XS::APItest' => '0.28',
5803             'bigint' => '0.27',
5804             'bignum' => '0.27',
5805             'bigrat' => '0.28',
5806             'constant' => '1.21',
5807             'feature' => '1.20',
5808             're' => '0.18',
5809             'threads::shared' => '1.37',
5810             },
5811             removed => {
5812             }
5813             },
5814             5.014001 => {
5815             delta_from => 5.014,
5816             changed => {
5817             'B::Deparse' => '1.04',
5818             'Module::CoreList' => '2.49_01',
5819             'Pod::Perldoc' => '3.15_04',
5820             },
5821             removed => {
5822             }
5823             },
5824             5.014002 => {
5825             delta_from => 5.014001,
5826             changed => {
5827             'CPAN' => '1.9600_01',
5828             'CPAN::Distribution' => '1.9602_01',
5829             'Devel::DProf::dprof::V'=> undef,
5830             'Encode' => '2.42_01',
5831             'File::Glob' => '1.13',
5832             'Module::CoreList' => '2.49_02',
5833             'PerlIO::scalar' => '0.11_01',
5834             'Time::Piece::Seconds' => undef,
5835             },
5836             removed => {
5837             }
5838             },
5839             5.014003 => {
5840             delta_from => 5.014002,
5841             changed => {
5842             'Digest' => '1.16_01',
5843             'IPC::Open3' => '1.09_01',
5844             'Module::CoreList' => '2.49_04',
5845             },
5846             removed => {
5847             }
5848             },
5849             5.014004 => {
5850             delta_from => 5.014003,
5851             changed => {
5852             'Encode' => '2.42_02',
5853             'IPC::Open3' => '1.0901',
5854             'Module::CoreList' => '2.49_06',
5855             },
5856             removed => {
5857             }
5858             },
5859             5.015 => {
5860             delta_from => 5.014001,
5861             changed => {
5862             'Archive::Extract' => '0.52',
5863             'Attribute::Handlers' => '0.91',
5864             'B' => '1.30',
5865             'B::Concise' => '0.84',
5866             'B::Deparse' => '1.05',
5867             'Benchmark' => '1.13',
5868             'CGI' => '3.54',
5869             'CGI::Util' => '3.53',
5870             'CPAN::Meta' => '2.110930',
5871             'CPAN::Meta::Converter' => '2.110930',
5872             'CPAN::Meta::Feature' => '2.110930',
5873             'CPAN::Meta::History' => '2.110930',
5874             'CPAN::Meta::Prereqs' => '2.110930',
5875             'CPAN::Meta::Spec' => '2.110930',
5876             'CPAN::Meta::Validator' => '2.110930',
5877             'CPANPLUS' => '0.9105',
5878             'CPANPLUS::Dist::Build' => '0.56',
5879             'CPANPLUS::Dist::Build::Constants'=> '0.56',
5880             'CPANPLUS::Internals' => '0.9105',
5881             'CPANPLUS::Shell::Default'=> '0.9105',
5882             'Compress::Raw::Bzip2' => '2.035',
5883             'Compress::Raw::Zlib' => '2.035',
5884             'Compress::Zlib' => '2.035',
5885             'DB_File' => '1.822',
5886             'Data::Dumper' => '2.131',
5887             'Devel::Peek' => '1.08',
5888             'Digest::SHA' => '5.62',
5889             'Encode' => '2.43',
5890             'Encode::Alias' => '2.14',
5891             'ExtUtils::CBuilder' => '0.280204',
5892             'ExtUtils::CBuilder::Base'=> '0.280204',
5893             'Fatal' => '2.10',
5894             'File::Spec::Win32' => '3.34',
5895             'Filter::Simple' => '0.87',
5896             'Filter::Util::Call' => '1.39',
5897             'FindBin' => '1.51',
5898             'Hash::Util::FieldHash' => '1.10',
5899             'I18N::LangTags' => '0.36',
5900             'IO::Compress::Adapter::Bzip2'=> '2.035',
5901             'IO::Compress::Adapter::Deflate'=> '2.035',
5902             'IO::Compress::Adapter::Identity'=> '2.035',
5903             'IO::Compress::Base' => '2.035',
5904             'IO::Compress::Base::Common'=> '2.035',
5905             'IO::Compress::Bzip2' => '2.035',
5906             'IO::Compress::Deflate' => '2.035',
5907             'IO::Compress::Gzip' => '2.035',
5908             'IO::Compress::Gzip::Constants'=> '2.035',
5909             'IO::Compress::RawDeflate'=> '2.035',
5910             'IO::Compress::Zip' => '2.035',
5911             'IO::Compress::Zip::Constants'=> '2.035',
5912             'IO::Compress::Zlib::Constants'=> '2.035',
5913             'IO::Compress::Zlib::Extra'=> '2.035',
5914             'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5915             'IO::Uncompress::Adapter::Identity'=> '2.035',
5916             'IO::Uncompress::Adapter::Inflate'=> '2.035',
5917             'IO::Uncompress::AnyInflate'=> '2.035',
5918             'IO::Uncompress::AnyUncompress'=> '2.035',
5919             'IO::Uncompress::Base' => '2.035',
5920             'IO::Uncompress::Bunzip2'=> '2.035',
5921             'IO::Uncompress::Gunzip'=> '2.035',
5922             'IO::Uncompress::Inflate'=> '2.035',
5923             'IO::Uncompress::RawInflate'=> '2.035',
5924             'IO::Uncompress::Unzip' => '2.035',
5925             'IPC::Open2' => '1.04',
5926             'IPC::Open3' => '1.11',
5927             'JSON::PP' => '2.27200',
5928             'Math::BigFloat' => '1.994',
5929             'Math::BigInt' => '1.995',
5930             'Math::Complex' => '1.57',
5931             'Math::Trig' => '1.21',
5932             'Module::CoreList' => '2.51',
5933             'ODBM_File' => '1.11',
5934             'Object::Accessor' => '0.42',
5935             'Opcode' => '1.19',
5936             'PerlIO::encoding' => '0.15',
5937             'PerlIO::scalar' => '0.12',
5938             'Pod::Perldoc' => '3.15_05',
5939             'Storable' => '2.28',
5940             'Sys::Syslog' => '0.29',
5941             'Time::HiRes' => '1.9722',
5942             'Unicode::Collate' => '0.76',
5943             'Unicode::Collate::CJK::Pinyin'=> '0.76',
5944             'Unicode::Collate::CJK::Stroke'=> '0.76',
5945             'Unicode::Collate::Locale'=> '0.76',
5946             'Unicode::Normalize' => '1.12',
5947             'XS::APItest' => '0.29',
5948             'XSLoader' => '0.15',
5949             'autodie' => '2.10',
5950             'autodie::exception' => '2.10',
5951             'autodie::exception::system'=> '2.10',
5952             'autodie::hints' => '2.10',
5953             'base' => '2.17',
5954             'charnames' => '1.22',
5955             'constant' => '1.22',
5956             'feature' => '1.21',
5957             'mro' => '1.08',
5958             'overload' => '1.14',
5959             'threads::shared' => '1.38',
5960             'vmsish' => '1.03',
5961             },
5962             removed => {
5963             'Devel::DProf' => 1,
5964             'Shell' => 1,
5965             }
5966             },
5967             5.015001 => {
5968             delta_from => 5.015,
5969             changed => {
5970             'B::Deparse' => '1.06',
5971             'CGI' => '3.55',
5972             'CPAN::Meta' => '2.110930001',
5973             'CPAN::Meta::Converter' => '2.110930001',
5974             'CPANPLUS' => '0.9108',
5975             'CPANPLUS::Internals' => '0.9108',
5976             'CPANPLUS::Shell::Default'=> '0.9108',
5977             'Carp' => '1.21',
5978             'Carp::Heavy' => '1.21',
5979             'Compress::Raw::Bzip2' => '2.037',
5980             'Compress::Raw::Zlib' => '2.037',
5981             'Compress::Zlib' => '2.037',
5982             'Cwd' => '3.37',
5983             'Env' => '1.03',
5984             'ExtUtils::Command::MM' => '6.58',
5985             'ExtUtils::Liblist' => '6.58',
5986             'ExtUtils::Liblist::Kid'=> '6.58',
5987             'ExtUtils::MM' => '6.58',
5988             'ExtUtils::MM_AIX' => '6.58',
5989             'ExtUtils::MM_Any' => '6.58',
5990             'ExtUtils::MM_BeOS' => '6.58',
5991             'ExtUtils::MM_Cygwin' => '6.58',
5992             'ExtUtils::MM_DOS' => '6.58',
5993             'ExtUtils::MM_Darwin' => '6.58',
5994             'ExtUtils::MM_MacOS' => '6.58',
5995             'ExtUtils::MM_NW5' => '6.58',
5996             'ExtUtils::MM_OS2' => '6.58',
5997             'ExtUtils::MM_QNX' => '6.58',
5998             'ExtUtils::MM_UWIN' => '6.58',
5999             'ExtUtils::MM_Unix' => '6.58',
6000             'ExtUtils::MM_VMS' => '6.58',
6001             'ExtUtils::MM_VOS' => '6.58',
6002             'ExtUtils::MM_Win32' => '6.58',
6003             'ExtUtils::MM_Win95' => '6.58',
6004             'ExtUtils::MY' => '6.58',
6005             'ExtUtils::MakeMaker' => '6.58',
6006             'ExtUtils::MakeMaker::Config'=> '6.58',
6007             'ExtUtils::Mkbootstrap' => '6.58',
6008             'ExtUtils::Mksymlists' => '6.58',
6009             'ExtUtils::ParseXS' => '3.00_01',
6010             'ExtUtils::ParseXS::Constants'=> undef,
6011             'ExtUtils::ParseXS::CountLines'=> undef,
6012             'ExtUtils::ParseXS::Utilities'=> undef,
6013             'ExtUtils::Typemaps' => '1.00',
6014             'ExtUtils::Typemaps::InputMap'=> undef,
6015             'ExtUtils::Typemaps::OutputMap'=> undef,
6016             'ExtUtils::Typemaps::Type'=> '0.05',
6017             'ExtUtils::testlib' => '6.58',
6018             'File::Basename' => '2.83',
6019             'File::Find' => '1.20',
6020             'HTTP::Tiny' => '0.013',
6021             'I18N::Langinfo' => '0.08_02',
6022             'IO::Compress::Adapter::Bzip2'=> '2.037',
6023             'IO::Compress::Adapter::Deflate'=> '2.037',
6024             'IO::Compress::Adapter::Identity'=> '2.037',
6025             'IO::Compress::Base' => '2.037',
6026             'IO::Compress::Base::Common'=> '2.037',
6027             'IO::Compress::Bzip2' => '2.037',
6028             'IO::Compress::Deflate' => '2.037',
6029             'IO::Compress::Gzip' => '2.037',
6030             'IO::Compress::Gzip::Constants'=> '2.037',
6031             'IO::Compress::RawDeflate'=> '2.037',
6032             'IO::Compress::Zip' => '2.037',
6033             'IO::Compress::Zip::Constants'=> '2.037',
6034             'IO::Compress::Zlib::Constants'=> '2.037',
6035             'IO::Compress::Zlib::Extra'=> '2.037',
6036             'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
6037             'IO::Uncompress::Adapter::Identity'=> '2.037',
6038             'IO::Uncompress::Adapter::Inflate'=> '2.037',
6039             'IO::Uncompress::AnyInflate'=> '2.037',
6040             'IO::Uncompress::AnyUncompress'=> '2.037',
6041             'IO::Uncompress::Base' => '2.037',
6042             'IO::Uncompress::Bunzip2'=> '2.037',
6043             'IO::Uncompress::Gunzip'=> '2.037',
6044             'IO::Uncompress::Inflate'=> '2.037',
6045             'IO::Uncompress::RawInflate'=> '2.037',
6046             'IO::Uncompress::Unzip' => '2.037',
6047             'IPC::Cmd' => '0.72',
6048             'Locale::Codes' => '3.17',
6049             'Locale::Codes::Constants'=> '3.17',
6050             'Locale::Codes::Country'=> '3.17',
6051             'Locale::Codes::Country_Codes'=> '3.17',
6052             'Locale::Codes::Currency'=> '3.17',
6053             'Locale::Codes::Currency_Codes'=> '3.17',
6054             'Locale::Codes::LangExt'=> '3.17',
6055             'Locale::Codes::LangExt_Codes'=> '3.17',
6056             'Locale::Codes::LangVar'=> '3.17',
6057             'Locale::Codes::LangVar_Codes'=> '3.17',
6058             'Locale::Codes::Language'=> '3.17',
6059             'Locale::Codes::Language_Codes'=> '3.17',
6060             'Locale::Codes::Script' => '3.17',
6061             'Locale::Codes::Script_Codes'=> '3.17',
6062             'Locale::Country' => '3.17',
6063             'Locale::Currency' => '3.17',
6064             'Locale::Language' => '3.17',
6065             'Locale::Script' => '3.17',
6066             'Math::BigFloat::Trace' => '0.28',
6067             'Math::BigInt::FastCalc'=> '0.29',
6068             'Math::BigInt::Trace' => '0.28',
6069             'Math::BigRat' => '0.2602',
6070             'Math::Complex' => '1.58',
6071             'Math::Trig' => '1.22',
6072             'Module::CoreList' => '2.54',
6073             'OS2::Process' => '1.07',
6074             'Pod::Perldoc' => '3.15_06',
6075             'Pod::Simple' => '3.18',
6076             'Pod::Simple::BlackBox' => '3.18',
6077             'Pod::Simple::Checker' => '3.18',
6078             'Pod::Simple::Debug' => '3.18',
6079             'Pod::Simple::DumpAsText'=> '3.18',
6080             'Pod::Simple::DumpAsXML'=> '3.18',
6081             'Pod::Simple::HTML' => '3.18',
6082             'Pod::Simple::HTMLBatch'=> '3.18',
6083             'Pod::Simple::LinkSection'=> '3.18',
6084             'Pod::Simple::Methody' => '3.18',
6085             'Pod::Simple::Progress' => '3.18',
6086             'Pod::Simple::PullParser'=> '3.18',
6087             'Pod::Simple::PullParserEndToken'=> '3.18',
6088             'Pod::Simple::PullParserStartToken'=> '3.18',
6089             'Pod::Simple::PullParserTextToken'=> '3.18',
6090             'Pod::Simple::PullParserToken'=> '3.18',
6091             'Pod::Simple::RTF' => '3.18',
6092             'Pod::Simple::Search' => '3.18',
6093             'Pod::Simple::SimpleTree'=> '3.18',
6094             'Pod::Simple::Text' => '3.18',
6095             'Pod::Simple::TextContent'=> '3.18',
6096             'Pod::Simple::TiedOutFH'=> '3.18',
6097             'Pod::Simple::Transcode'=> '3.18',
6098             'Pod::Simple::TranscodeDumb'=> '3.18',
6099             'Pod::Simple::TranscodeSmart'=> '3.18',
6100             'Pod::Simple::XHTML' => '3.18',
6101             'Pod::Simple::XMLOutStream'=> '3.18',
6102             'Storable' => '2.31',
6103             'Sys::Syslog::Win32' => undef,
6104             'Time::HiRes' => '1.9724',
6105             'Unicode::Collate' => '0.77',
6106             'Unicode::UCD' => '0.33',
6107             'Win32API::File' => '0.1200',
6108             'XS::APItest' => '0.30',
6109             'attributes' => '0.15',
6110             'bigint' => '0.28',
6111             'bignum' => '0.28',
6112             'charnames' => '1.23',
6113             'diagnostics' => '1.23',
6114             'feature' => '1.22',
6115             'overload' => '1.15',
6116             'perlfaq' => '5.015000',
6117             'threads' => '1.84',
6118             'version' => '0.93',
6119             },
6120             removed => {
6121             'ExtUtils::MakeMaker::YAML'=> 1,
6122             'Locale::Constants' => 1,
6123             'Sys::Syslog::win32::Win32'=> 1,
6124             }
6125             },
6126             5.015002 => {
6127             delta_from => 5.015001,
6128             changed => {
6129             'Attribute::Handlers' => '0.92',
6130             'B' => '1.31',
6131             'B::Concise' => '0.85',
6132             'B::Deparse' => '1.07',
6133             'B::Terse' => '1.06',
6134             'B::Xref' => '1.03',
6135             'CPAN' => '1.9800',
6136             'CPAN::Exception::yaml_process_error'=> '5.5',
6137             'CPAN::Meta' => '2.112150',
6138             'CPAN::Meta::Converter' => '2.112150',
6139             'CPAN::Meta::Feature' => '2.112150',
6140             'CPAN::Meta::History' => '2.112150',
6141             'CPAN::Meta::Prereqs' => '2.112150',
6142             'CPAN::Meta::Spec' => '2.112150',
6143             'CPAN::Meta::Validator' => '2.112150',
6144             'CPANPLUS' => '0.9109',
6145             'CPANPLUS::Internals' => '0.9109',
6146             'CPANPLUS::Shell::Default'=> '0.9109',
6147             'DB_File' => '1.824',
6148             'Data::Dumper' => '2.132',
6149             'Encode' => '2.44',
6150             'Encode::Alias' => '2.15',
6151             'Encode::Encoder' => '2.02',
6152             'Encode::Guess' => '2.05',
6153             'ExtUtils::Command::MM' => '6.59',
6154             'ExtUtils::Install' => '1.57',
6155             'ExtUtils::Installed' => '1.999002',
6156             'ExtUtils::Liblist' => '6.59',
6157             'ExtUtils::Liblist::Kid'=> '6.59',
6158             'ExtUtils::MM' => '6.59',
6159             'ExtUtils::MM_AIX' => '6.59',
6160             'ExtUtils::MM_Any' => '6.59',
6161             'ExtUtils::MM_BeOS' => '6.59',
6162             'ExtUtils::MM_Cygwin' => '6.59',
6163             'ExtUtils::MM_DOS' => '6.59',
6164             'ExtUtils::MM_Darwin' => '6.59',
6165             'ExtUtils::MM_MacOS' => '6.59',
6166             'ExtUtils::MM_NW5' => '6.59',
6167             'ExtUtils::MM_OS2' => '6.59',
6168             'ExtUtils::MM_QNX' => '6.59',
6169             'ExtUtils::MM_UWIN' => '6.59',
6170             'ExtUtils::MM_Unix' => '6.59',
6171             'ExtUtils::MM_VMS' => '6.59',
6172             'ExtUtils::MM_VOS' => '6.59',
6173             'ExtUtils::MM_Win32' => '6.59',
6174             'ExtUtils::MM_Win95' => '6.59',
6175             'ExtUtils::MY' => '6.59',
6176             'ExtUtils::MakeMaker' => '6.59',
6177             'ExtUtils::MakeMaker::Config'=> '6.59',
6178             'ExtUtils::Manifest' => '1.60',
6179             'ExtUtils::Mkbootstrap' => '6.59',
6180             'ExtUtils::Mksymlists' => '6.59',
6181             'ExtUtils::ParseXS' => '3.03_01',
6182             'ExtUtils::Typemaps' => '1.01',
6183             'ExtUtils::testlib' => '6.59',
6184             'File::Spec' => '3.34',
6185             'File::Spec::Mac' => '3.35',
6186             'File::Spec::Unix' => '3.34',
6187             'File::Spec::VMS' => '3.35',
6188             'File::Spec::Win32' => '3.35',
6189             'I18N::LangTags' => '0.37',
6190             'IO' => '1.25_05',
6191             'IO::Handle' => '1.32',
6192             'IO::Socket' => '1.33',
6193             'IO::Socket::INET' => '1.32',
6194             'IPC::Open3' => '1.12',
6195             'Math::BigFloat' => '1.995',
6196             'Math::BigFloat::Trace' => '0.29',
6197             'Math::BigInt' => '1.996',
6198             'Math::BigInt::Trace' => '0.29',
6199             'Module::Build' => '0.39_01',
6200             'Module::Build::Base' => '0.39_01',
6201             'Module::Build::Compat' => '0.39_01',
6202             'Module::Build::Config' => '0.39_01',
6203             'Module::Build::Cookbook'=> '0.39_01',
6204             'Module::Build::Dumper' => '0.39_01',
6205             'Module::Build::ModuleInfo'=> '0.39_01',
6206             'Module::Build::Notes' => '0.39_01',
6207             'Module::Build::PPMMaker'=> '0.39_01',
6208             'Module::Build::Platform::Amiga'=> '0.39_01',
6209             'Module::Build::Platform::Default'=> '0.39_01',
6210             'Module::Build::Platform::EBCDIC'=> '0.39_01',
6211             'Module::Build::Platform::MPEiX'=> '0.39_01',
6212             'Module::Build::Platform::MacOS'=> '0.39_01',
6213             'Module::Build::Platform::RiscOS'=> '0.39_01',
6214             'Module::Build::Platform::Unix'=> '0.39_01',
6215             'Module::Build::Platform::VMS'=> '0.39_01',
6216             'Module::Build::Platform::VOS'=> '0.39_01',
6217             'Module::Build::Platform::Windows'=> '0.39_01',
6218             'Module::Build::Platform::aix'=> '0.39_01',
6219             'Module::Build::Platform::cygwin'=> '0.39_01',
6220             'Module::Build::Platform::darwin'=> '0.39_01',
6221             'Module::Build::Platform::os2'=> '0.39_01',
6222             'Module::Build::PodParser'=> '0.39_01',
6223             'Module::CoreList' => '2.55',
6224             'Module::Load' => '0.20',
6225             'Module::Metadata' => '1.000005_01',
6226             'Opcode' => '1.20',
6227             'Params::Check' => '0.32',
6228             'PerlIO::via' => '0.12',
6229             'Term::ANSIColor' => '3.01',
6230             'Unicode::Collate' => '0.78',
6231             'Unicode::Normalize' => '1.13',
6232             'Unicode::UCD' => '0.34',
6233             'bigint' => '0.29',
6234             'bignum' => '0.29',
6235             'bigrat' => '0.29',
6236             'diagnostics' => '1.24',
6237             'fields' => '2.16',
6238             'inc::latest' => '0.39_01',
6239             },
6240             removed => {
6241             }
6242             },
6243             5.015003 => {
6244             delta_from => 5.015002,
6245             changed => {
6246             'AnyDBM_File' => '1.01',
6247             'Archive::Extract' => '0.56',
6248             'Archive::Tar' => '1.78',
6249             'Archive::Tar::Constant'=> '1.78',
6250             'Archive::Tar::File' => '1.78',
6251             'Attribute::Handlers' => '0.93',
6252             'B' => '1.32',
6253             'B::Concise' => '0.86',
6254             'B::Deparse' => '1.08',
6255             'CPAN::Meta' => '2.112621',
6256             'CPAN::Meta::Converter' => '2.112621',
6257             'CPAN::Meta::Feature' => '2.112621',
6258             'CPAN::Meta::History' => '2.112621',
6259             'CPAN::Meta::Prereqs' => '2.112621',
6260             'CPAN::Meta::Spec' => '2.112621',
6261             'CPAN::Meta::Validator' => '2.112621',
6262             'CPAN::Meta::YAML' => '0.004',
6263             'CPANPLUS' => '0.9111',
6264             'CPANPLUS::Dist::Build' => '0.58',
6265             'CPANPLUS::Dist::Build::Constants'=> '0.58',
6266             'CPANPLUS::Internals' => '0.9111',
6267             'CPANPLUS::Shell::Default'=> '0.9111',
6268             'Carp' => '1.23',
6269             'Carp::Heavy' => '1.23',
6270             'Data::Dumper' => '2.134',
6271             'Devel::PPPort' => '3.20',
6272             'Errno' => '1.14',
6273             'Exporter' => '5.65',
6274             'Exporter::Heavy' => '5.65',
6275             'ExtUtils::ParseXS' => '3.04_04',
6276             'ExtUtils::ParseXS::Constants'=> '3.04_04',
6277             'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6278             'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6279             'ExtUtils::Typemaps' => '1.02',
6280             'File::Glob' => '1.13',
6281             'Filter::Simple' => '0.88',
6282             'IO' => '1.25_06',
6283             'IO::Handle' => '1.33',
6284             'Locale::Codes' => '3.18',
6285             'Locale::Codes::Constants'=> '3.18',
6286             'Locale::Codes::Country'=> '3.18',
6287             'Locale::Codes::Country_Codes'=> '3.18',
6288             'Locale::Codes::Currency'=> '3.18',
6289             'Locale::Codes::Currency_Codes'=> '3.18',
6290             'Locale::Codes::LangExt'=> '3.18',
6291             'Locale::Codes::LangExt_Codes'=> '3.18',
6292             'Locale::Codes::LangVar'=> '3.18',
6293             'Locale::Codes::LangVar_Codes'=> '3.18',
6294             'Locale::Codes::Language'=> '3.18',
6295             'Locale::Codes::Language_Codes'=> '3.18',
6296             'Locale::Codes::Script' => '3.18',
6297             'Locale::Codes::Script_Codes'=> '3.18',
6298             'Locale::Country' => '3.18',
6299             'Locale::Currency' => '3.18',
6300             'Locale::Language' => '3.18',
6301             'Locale::Script' => '3.18',
6302             'Math::BigFloat' => '1.997',
6303             'Math::BigInt' => '1.997',
6304             'Math::BigInt::Calc' => '1.997',
6305             'Math::BigInt::CalcEmu' => '1.997',
6306             'Math::BigInt::FastCalc'=> '0.30',
6307             'Math::BigRat' => '0.2603',
6308             'Module::CoreList' => '2.56',
6309             'Module::Load::Conditional'=> '0.46',
6310             'Module::Metadata' => '1.000007',
6311             'ODBM_File' => '1.12',
6312             'POSIX' => '1.26',
6313             'Pod::Perldoc' => '3.15_07',
6314             'Pod::Simple' => '3.19',
6315             'Pod::Simple::BlackBox' => '3.19',
6316             'Pod::Simple::Checker' => '3.19',
6317             'Pod::Simple::Debug' => '3.19',
6318             'Pod::Simple::DumpAsText'=> '3.19',
6319             'Pod::Simple::DumpAsXML'=> '3.19',
6320             'Pod::Simple::HTML' => '3.19',
6321             'Pod::Simple::HTMLBatch'=> '3.19',
6322             'Pod::Simple::LinkSection'=> '3.19',
6323             'Pod::Simple::Methody' => '3.19',
6324             'Pod::Simple::Progress' => '3.19',
6325             'Pod::Simple::PullParser'=> '3.19',
6326             'Pod::Simple::PullParserEndToken'=> '3.19',
6327             'Pod::Simple::PullParserStartToken'=> '3.19',
6328             'Pod::Simple::PullParserTextToken'=> '3.19',
6329             'Pod::Simple::PullParserToken'=> '3.19',
6330             'Pod::Simple::RTF' => '3.19',
6331             'Pod::Simple::Search' => '3.19',
6332             'Pod::Simple::SimpleTree'=> '3.19',
6333             'Pod::Simple::Text' => '3.19',
6334             'Pod::Simple::TextContent'=> '3.19',
6335             'Pod::Simple::TiedOutFH'=> '3.19',
6336             'Pod::Simple::Transcode'=> '3.19',
6337             'Pod::Simple::TranscodeDumb'=> '3.19',
6338             'Pod::Simple::TranscodeSmart'=> '3.19',
6339             'Pod::Simple::XHTML' => '3.19',
6340             'Pod::Simple::XMLOutStream'=> '3.19',
6341             'Search::Dict' => '1.04',
6342             'Socket' => '1.94_01',
6343             'Storable' => '2.32',
6344             'Text::Abbrev' => '1.02',
6345             'Tie::Array' => '1.05',
6346             'UNIVERSAL' => '1.09',
6347             'Unicode::UCD' => '0.35',
6348             'XS::APItest' => '0.31',
6349             'XSLoader' => '0.16',
6350             'attributes' => '0.16',
6351             'diagnostics' => '1.25',
6352             'open' => '1.09',
6353             'perlfaq' => '5.0150034',
6354             'threads' => '1.85',
6355             'threads::shared' => '1.40',
6356             },
6357             removed => {
6358             }
6359             },
6360             5.015004 => {
6361             delta_from => 5.015003,
6362             changed => {
6363             'Archive::Tar' => '1.80',
6364             'Archive::Tar::Constant'=> '1.80',
6365             'Archive::Tar::File' => '1.80',
6366             'Digest' => '1.17',
6367             'DynaLoader' => '1.14',
6368             'ExtUtils::Command::MM' => '6.61_01',
6369             'ExtUtils::Liblist' => '6.61_01',
6370             'ExtUtils::Liblist::Kid'=> '6.61_01',
6371             'ExtUtils::MM' => '6.61_01',
6372             'ExtUtils::MM_AIX' => '6.61_01',
6373             'ExtUtils::MM_Any' => '6.61_01',
6374             'ExtUtils::MM_BeOS' => '6.61_01',
6375             'ExtUtils::MM_Cygwin' => '6.61_01',
6376             'ExtUtils::MM_DOS' => '6.61_01',
6377             'ExtUtils::MM_Darwin' => '6.61_01',
6378             'ExtUtils::MM_MacOS' => '6.61_01',
6379             'ExtUtils::MM_NW5' => '6.61_01',
6380             'ExtUtils::MM_OS2' => '6.61_01',
6381             'ExtUtils::MM_QNX' => '6.61_01',
6382             'ExtUtils::MM_UWIN' => '6.61_01',
6383             'ExtUtils::MM_Unix' => '6.61_01',
6384             'ExtUtils::MM_VMS' => '6.61_01',
6385             'ExtUtils::MM_VOS' => '6.61_01',
6386             'ExtUtils::MM_Win32' => '6.61_01',
6387             'ExtUtils::MM_Win95' => '6.61_01',
6388             'ExtUtils::MY' => '6.61_01',
6389             'ExtUtils::MakeMaker' => '6.61_01',
6390             'ExtUtils::MakeMaker::Config'=> '6.61_01',
6391             'ExtUtils::Mkbootstrap' => '6.61_01',
6392             'ExtUtils::Mksymlists' => '6.61_01',
6393             'ExtUtils::ParseXS' => '3.05',
6394             'ExtUtils::ParseXS::Constants'=> '3.05',
6395             'ExtUtils::ParseXS::CountLines'=> '3.05',
6396             'ExtUtils::ParseXS::Utilities'=> '3.05',
6397             'ExtUtils::testlib' => '6.61_01',
6398             'File::DosGlob' => '1.05',
6399             'Module::CoreList' => '2.57',
6400             'Module::Load' => '0.22',
6401             'Unicode::Collate' => '0.80',
6402             'Unicode::Collate::Locale'=> '0.80',
6403             'Unicode::UCD' => '0.36',
6404             'XS::APItest' => '0.32',
6405             'XS::Typemap' => '0.07',
6406             'attributes' => '0.17',
6407             'base' => '2.18',
6408             'constant' => '1.23',
6409             'mro' => '1.09',
6410             'open' => '1.10',
6411             'perlfaq' => '5.0150035',
6412             },
6413             removed => {
6414             }
6415             },
6416             5.015005 => {
6417             delta_from => 5.015004,
6418             changed => {
6419             'Archive::Extract' => '0.58',
6420             'B::Concise' => '0.87',
6421             'B::Deparse' => '1.09',
6422             'CGI' => '3.58',
6423             'CGI::Fast' => '1.09',
6424             'CPANPLUS' => '0.9112',
6425             'CPANPLUS::Dist::Build' => '0.60',
6426             'CPANPLUS::Dist::Build::Constants'=> '0.60',
6427             'CPANPLUS::Internals' => '0.9112',
6428             'CPANPLUS::Shell::Default'=> '0.9112',
6429             'Compress::Raw::Bzip2' => '2.042',
6430             'Compress::Raw::Zlib' => '2.042',
6431             'Compress::Zlib' => '2.042',
6432             'Digest::SHA' => '5.63',
6433             'Errno' => '1.15',
6434             'ExtUtils::Command::MM' => '6.63_02',
6435             'ExtUtils::Liblist' => '6.63_02',
6436             'ExtUtils::Liblist::Kid'=> '6.63_02',
6437             'ExtUtils::MM' => '6.63_02',
6438             'ExtUtils::MM_AIX' => '6.63_02',
6439             'ExtUtils::MM_Any' => '6.63_02',
6440             'ExtUtils::MM_BeOS' => '6.63_02',
6441             'ExtUtils::MM_Cygwin' => '6.63_02',
6442             'ExtUtils::MM_DOS' => '6.63_02',
6443             'ExtUtils::MM_Darwin' => '6.63_02',
6444             'ExtUtils::MM_MacOS' => '6.63_02',
6445             'ExtUtils::MM_NW5' => '6.63_02',
6446             'ExtUtils::MM_OS2' => '6.63_02',
6447             'ExtUtils::MM_QNX' => '6.63_02',
6448             'ExtUtils::MM_UWIN' => '6.63_02',
6449             'ExtUtils::MM_Unix' => '6.63_02',
6450             'ExtUtils::MM_VMS' => '6.63_02',
6451             'ExtUtils::MM_VOS' => '6.63_02',
6452             'ExtUtils::MM_Win32' => '6.63_02',
6453             'ExtUtils::MM_Win95' => '6.63_02',
6454             'ExtUtils::MY' => '6.63_02',
6455             'ExtUtils::MakeMaker' => '6.63_02',
6456             'ExtUtils::MakeMaker::Config'=> '6.63_02',
6457             'ExtUtils::Mkbootstrap' => '6.63_02',
6458             'ExtUtils::Mksymlists' => '6.63_02',
6459             'ExtUtils::testlib' => '6.63_02',
6460             'File::DosGlob' => '1.06',
6461             'File::Glob' => '1.14',
6462             'HTTP::Tiny' => '0.016',
6463             'IO::Compress::Adapter::Bzip2'=> '2.042',
6464             'IO::Compress::Adapter::Deflate'=> '2.042',
6465             'IO::Compress::Adapter::Identity'=> '2.042',
6466             'IO::Compress::Base' => '2.042',
6467             'IO::Compress::Base::Common'=> '2.042',
6468             'IO::Compress::Bzip2' => '2.042',
6469             'IO::Compress::Deflate' => '2.042',
6470             'IO::Compress::Gzip' => '2.042',
6471             'IO::Compress::Gzip::Constants'=> '2.042',
6472             'IO::Compress::RawDeflate'=> '2.042',
6473             'IO::Compress::Zip' => '2.042',
6474             'IO::Compress::Zip::Constants'=> '2.042',
6475             'IO::Compress::Zlib::Constants'=> '2.042',
6476             'IO::Compress::Zlib::Extra'=> '2.042',
6477             'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6478             'IO::Uncompress::Adapter::Identity'=> '2.042',
6479             'IO::Uncompress::Adapter::Inflate'=> '2.042',
6480             'IO::Uncompress::AnyInflate'=> '2.042',
6481             'IO::Uncompress::AnyUncompress'=> '2.042',
6482             'IO::Uncompress::Base' => '2.042',
6483             'IO::Uncompress::Bunzip2'=> '2.042',
6484             'IO::Uncompress::Gunzip'=> '2.042',
6485             'IO::Uncompress::Inflate'=> '2.042',
6486             'IO::Uncompress::RawInflate'=> '2.042',
6487             'IO::Uncompress::Unzip' => '2.042',
6488             'Locale::Maketext' => '1.20',
6489             'Locale::Maketext::Guts'=> '1.20',
6490             'Locale::Maketext::GutsLoader'=> '1.20',
6491             'Module::CoreList' => '2.58',
6492             'Opcode' => '1.21',
6493             'Socket' => '1.94_02',
6494             'Storable' => '2.33',
6495             'UNIVERSAL' => '1.10',
6496             'Unicode::Collate' => '0.85',
6497             'Unicode::Collate::CJK::Pinyin'=> '0.85',
6498             'Unicode::Collate::CJK::Stroke'=> '0.85',
6499             'Unicode::Collate::Locale'=> '0.85',
6500             'Unicode::UCD' => '0.37',
6501             'XS::APItest' => '0.33',
6502             'arybase' => '0.01',
6503             'charnames' => '1.24',
6504             'feature' => '1.23',
6505             'perlfaq' => '5.0150036',
6506             'strict' => '1.05',
6507             'unicore::Name' => undef,
6508             },
6509             removed => {
6510             }
6511             },
6512             5.015006 => {
6513             delta_from => 5.015005,
6514             changed => {
6515             'Archive::Tar' => '1.82',
6516             'Archive::Tar::Constant'=> '1.82',
6517             'Archive::Tar::File' => '1.82',
6518             'AutoLoader' => '5.72',
6519             'B::Concise' => '0.88',
6520             'B::Debug' => '1.17',
6521             'B::Deparse' => '1.10',
6522             'CPAN::Meta::YAML' => '0.005',
6523             'CPANPLUS' => '0.9113',
6524             'CPANPLUS::Internals' => '0.9113',
6525             'CPANPLUS::Shell::Default'=> '0.9113',
6526             'Carp' => '1.24',
6527             'Compress::Raw::Bzip2' => '2.045',
6528             'Compress::Raw::Zlib' => '2.045',
6529             'Compress::Zlib' => '2.045',
6530             'Cwd' => '3.38',
6531             'DB' => '1.04',
6532             'Data::Dumper' => '2.135_01',
6533             'Digest::SHA' => '5.70',
6534             'Dumpvalue' => '1.17',
6535             'Exporter' => '5.66',
6536             'Exporter::Heavy' => '5.66',
6537             'ExtUtils::CBuilder' => '0.280205',
6538             'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6539             'ExtUtils::Packlist' => '1.45',
6540             'ExtUtils::ParseXS' => '3.08',
6541             'ExtUtils::ParseXS::Constants'=> '3.08',
6542             'ExtUtils::ParseXS::CountLines'=> '3.08',
6543             'ExtUtils::ParseXS::Utilities'=> '3.08',
6544             'File::Basename' => '2.84',
6545             'File::Glob' => '1.15',
6546             'File::Spec::Unix' => '3.35',
6547             'Getopt::Std' => '1.07',
6548             'I18N::LangTags' => '0.38',
6549             'IO::Compress::Adapter::Bzip2'=> '2.045',
6550             'IO::Compress::Adapter::Deflate'=> '2.045',
6551             'IO::Compress::Adapter::Identity'=> '2.045',
6552             'IO::Compress::Base' => '2.046',
6553             'IO::Compress::Base::Common'=> '2.045',
6554             'IO::Compress::Bzip2' => '2.045',
6555             'IO::Compress::Deflate' => '2.045',
6556             'IO::Compress::Gzip' => '2.045',
6557             'IO::Compress::Gzip::Constants'=> '2.045',
6558             'IO::Compress::RawDeflate'=> '2.045',
6559             'IO::Compress::Zip' => '2.046',
6560             'IO::Compress::Zip::Constants'=> '2.045',
6561             'IO::Compress::Zlib::Constants'=> '2.045',
6562             'IO::Compress::Zlib::Extra'=> '2.045',
6563             'IO::Dir' => '1.09',
6564             'IO::File' => '1.16',
6565             'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6566             'IO::Uncompress::Adapter::Identity'=> '2.045',
6567             'IO::Uncompress::Adapter::Inflate'=> '2.045',
6568             'IO::Uncompress::AnyInflate'=> '2.045',
6569             'IO::Uncompress::AnyUncompress'=> '2.045',
6570             'IO::Uncompress::Base' => '2.046',
6571             'IO::Uncompress::Bunzip2'=> '2.045',
6572             'IO::Uncompress::Gunzip'=> '2.045',
6573             'IO::Uncompress::Inflate'=> '2.045',
6574             'IO::Uncompress::RawInflate'=> '2.045',
6575             'IO::Uncompress::Unzip' => '2.046',
6576             'Locale::Codes' => '3.20',
6577             'Locale::Codes::Constants'=> '3.20',
6578             'Locale::Codes::Country'=> '3.20',
6579             'Locale::Codes::Country_Codes'=> '3.20',
6580             'Locale::Codes::Country_Retired'=> '3.20',
6581             'Locale::Codes::Currency'=> '3.20',
6582             'Locale::Codes::Currency_Codes'=> '3.20',
6583             'Locale::Codes::Currency_Retired'=> '3.20',
6584             'Locale::Codes::LangExt'=> '3.20',
6585             'Locale::Codes::LangExt_Codes'=> '3.20',
6586             'Locale::Codes::LangExt_Retired'=> '3.20',
6587             'Locale::Codes::LangFam'=> '3.20',
6588             'Locale::Codes::LangFam_Codes'=> '3.20',
6589             'Locale::Codes::LangFam_Retired'=> '3.20',
6590             'Locale::Codes::LangVar'=> '3.20',
6591             'Locale::Codes::LangVar_Codes'=> '3.20',
6592             'Locale::Codes::LangVar_Retired'=> '3.20',
6593             'Locale::Codes::Language'=> '3.20',
6594             'Locale::Codes::Language_Codes'=> '3.20',
6595             'Locale::Codes::Language_Retired'=> '3.20',
6596             'Locale::Codes::Script' => '3.20',
6597             'Locale::Codes::Script_Codes'=> '3.20',
6598             'Locale::Codes::Script_Retired'=> '3.20',
6599             'Locale::Country' => '3.20',
6600             'Locale::Currency' => '3.20',
6601             'Locale::Language' => '3.20',
6602             'Locale::Maketext' => '1.21',
6603             'Locale::Script' => '3.20',
6604             'Module::CoreList' => '2.59',
6605             'Module::Loaded' => '0.08',
6606             'Opcode' => '1.22',
6607             'POSIX' => '1.27',
6608             'Pod::Html' => '1.12',
6609             'Pod::LaTeX' => '0.60',
6610             'Pod::Perldoc' => '3.15_08',
6611             'Safe' => '2.30',
6612             'SelfLoader' => '1.20',
6613             'Socket' => '1.97',
6614             'Storable' => '2.34',
6615             'UNIVERSAL' => '1.11',
6616             'Unicode::Collate' => '0.87',
6617             'Unicode::Collate::Locale'=> '0.87',
6618             'XS::APItest' => '0.34',
6619             'arybase' => '0.02',
6620             'charnames' => '1.27',
6621             'diagnostics' => '1.26',
6622             'feature' => '1.24',
6623             'if' => '0.0602',
6624             'overload' => '1.16',
6625             'sigtrap' => '1.06',
6626             'strict' => '1.06',
6627             'threads' => '1.86',
6628             'version' => '0.96',
6629             },
6630             removed => {
6631             }
6632             },
6633             5.015007 => {
6634             delta_from => 5.015006,
6635             changed => {
6636             'B' => '1.33',
6637             'B::Deparse' => '1.11',
6638             'CGI' => '3.59',
6639             'CPAN::Meta' => '2.113640',
6640             'CPAN::Meta::Converter' => '2.113640',
6641             'CPAN::Meta::Feature' => '2.113640',
6642             'CPAN::Meta::History' => '2.113640',
6643             'CPAN::Meta::Prereqs' => '2.113640',
6644             'CPAN::Meta::Requirements'=> '2.113640',
6645             'CPAN::Meta::Spec' => '2.113640',
6646             'CPAN::Meta::Validator' => '2.113640',
6647             'CPANPLUS' => '0.9116',
6648             'CPANPLUS::Internals' => '0.9116',
6649             'CPANPLUS::Shell::Default'=> '0.9116',
6650             'Cwd' => '3.39_01',
6651             'Data::Dumper' => '2.135_03',
6652             'Devel::InnerPackage' => '0.4',
6653             'ExtUtils::CBuilder::Base'=> '0.280205',
6654             'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6655             'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6656             'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6657             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6658             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6659             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6660             'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6661             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6662             'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6663             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6664             'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6665             'ExtUtils::Manifest' => '1.61',
6666             'ExtUtils::Packlist' => '1.46',
6667             'ExtUtils::ParseXS' => '3.12',
6668             'ExtUtils::ParseXS::Constants'=> '3.12',
6669             'ExtUtils::ParseXS::CountLines'=> '3.12',
6670             'ExtUtils::ParseXS::Utilities'=> '3.12',
6671             'ExtUtils::Typemaps' => '1.03',
6672             'ExtUtils::Typemaps::Cmd'=> undef,
6673             'ExtUtils::Typemaps::Type'=> '0.06',
6674             'File::Glob' => '1.16',
6675             'File::Spec' => '3.39_01',
6676             'File::Spec::Cygwin' => '3.39_01',
6677             'File::Spec::Epoc' => '3.39_01',
6678             'File::Spec::Functions' => '3.39_01',
6679             'File::Spec::Mac' => '3.39_01',
6680             'File::Spec::OS2' => '3.39_01',
6681             'File::Spec::Unix' => '3.39_01',
6682             'File::Spec::VMS' => '3.39_01',
6683             'File::Spec::Win32' => '3.39_01',
6684             'IO::Dir' => '1.10',
6685             'IO::Pipe' => '1.15',
6686             'IO::Poll' => '0.09',
6687             'IO::Select' => '1.21',
6688             'IO::Socket' => '1.34',
6689             'IO::Socket::INET' => '1.33',
6690             'IO::Socket::UNIX' => '1.24',
6691             'Locale::Maketext' => '1.22',
6692             'Math::BigInt' => '1.998',
6693             'Module::CoreList' => '2.60',
6694             'Module::Pluggable' => '4.0',
6695             'POSIX' => '1.28',
6696             'PerlIO::scalar' => '0.13',
6697             'Pod::Html' => '1.13',
6698             'Pod::Perldoc' => '3.15_15',
6699             'Pod::Perldoc::BaseTo' => '3.15_15',
6700             'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6701             'Pod::Perldoc::ToANSI' => '3.15_15',
6702             'Pod::Perldoc::ToChecker'=> '3.15_15',
6703             'Pod::Perldoc::ToMan' => '3.15_15',
6704             'Pod::Perldoc::ToNroff' => '3.15_15',
6705             'Pod::Perldoc::ToPod' => '3.15_15',
6706             'Pod::Perldoc::ToRtf' => '3.15_15',
6707             'Pod::Perldoc::ToTerm' => '3.15_15',
6708             'Pod::Perldoc::ToText' => '3.15_15',
6709             'Pod::Perldoc::ToTk' => '3.15_15',
6710             'Pod::Perldoc::ToXml' => '3.15_15',
6711             'Term::UI' => '0.30',
6712             'Tie::File' => '0.98',
6713             'Unicode::UCD' => '0.39',
6714             'Version::Requirements' => '0.101021',
6715             'XS::APItest' => '0.35',
6716             '_charnames' => '1.28',
6717             'arybase' => '0.03',
6718             'autouse' => '1.07',
6719             'charnames' => '1.28',
6720             'diagnostics' => '1.27',
6721             'feature' => '1.25',
6722             'overload' => '1.17',
6723             'overloading' => '0.02',
6724             'perlfaq' => '5.0150038',
6725             },
6726             removed => {
6727             }
6728             },
6729             5.015008 => {
6730             delta_from => 5.015007,
6731             changed => {
6732             'B' => '1.34',
6733             'B::Deparse' => '1.12',
6734             'CPAN::Meta' => '2.120351',
6735             'CPAN::Meta::Converter' => '2.120351',
6736             'CPAN::Meta::Feature' => '2.120351',
6737             'CPAN::Meta::History' => '2.120351',
6738             'CPAN::Meta::Prereqs' => '2.120351',
6739             'CPAN::Meta::Requirements'=> '2.120351',
6740             'CPAN::Meta::Spec' => '2.120351',
6741             'CPAN::Meta::Validator' => '2.120351',
6742             'CPAN::Meta::YAML' => '0.007',
6743             'CPANPLUS' => '0.9118',
6744             'CPANPLUS::Dist::Build' => '0.62',
6745             'CPANPLUS::Dist::Build::Constants'=> '0.62',
6746             'CPANPLUS::Internals' => '0.9118',
6747             'CPANPLUS::Shell::Default'=> '0.9118',
6748             'Carp' => '1.25',
6749             'Carp::Heavy' => '1.25',
6750             'Compress::Raw::Bzip2' => '2.048',
6751             'Compress::Raw::Zlib' => '2.048',
6752             'Compress::Zlib' => '2.048',
6753             'Cwd' => '3.39_02',
6754             'DB_File' => '1.826',
6755             'Data::Dumper' => '2.135_05',
6756             'English' => '1.05',
6757             'ExtUtils::Install' => '1.58',
6758             'ExtUtils::ParseXS' => '3.16',
6759             'ExtUtils::ParseXS::Constants'=> '3.16',
6760             'ExtUtils::ParseXS::CountLines'=> '3.16',
6761             'ExtUtils::ParseXS::Utilities'=> '3.16',
6762             'ExtUtils::Typemaps' => '3.16',
6763             'ExtUtils::Typemaps::Cmd'=> '3.16',
6764             'ExtUtils::Typemaps::InputMap'=> '3.16',
6765             'ExtUtils::Typemaps::OutputMap'=> '3.16',
6766             'ExtUtils::Typemaps::Type'=> '3.16',
6767             'File::Copy' => '2.23',
6768             'File::Glob' => '1.17',
6769             'File::Spec' => '3.39_02',
6770             'File::Spec::Cygwin' => '3.39_02',
6771             'File::Spec::Epoc' => '3.39_02',
6772             'File::Spec::Functions' => '3.39_02',
6773             'File::Spec::Mac' => '3.39_02',
6774             'File::Spec::OS2' => '3.39_02',
6775             'File::Spec::Unix' => '3.39_02',
6776             'File::Spec::VMS' => '3.39_02',
6777             'File::Spec::Win32' => '3.39_02',
6778             'Filter::Util::Call' => '1.40',
6779             'IO::Compress::Adapter::Bzip2'=> '2.048',
6780             'IO::Compress::Adapter::Deflate'=> '2.048',
6781             'IO::Compress::Adapter::Identity'=> '2.048',
6782             'IO::Compress::Base' => '2.048',
6783             'IO::Compress::Base::Common'=> '2.048',
6784             'IO::Compress::Bzip2' => '2.048',
6785             'IO::Compress::Deflate' => '2.048',
6786             'IO::Compress::Gzip' => '2.048',
6787             'IO::Compress::Gzip::Constants'=> '2.048',
6788             'IO::Compress::RawDeflate'=> '2.048',
6789             'IO::Compress::Zip' => '2.048',
6790             'IO::Compress::Zip::Constants'=> '2.048',
6791             'IO::Compress::Zlib::Constants'=> '2.048',
6792             'IO::Compress::Zlib::Extra'=> '2.048',
6793             'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6794             'IO::Uncompress::Adapter::Identity'=> '2.048',
6795             'IO::Uncompress::Adapter::Inflate'=> '2.048',
6796             'IO::Uncompress::AnyInflate'=> '2.048',
6797             'IO::Uncompress::AnyUncompress'=> '2.048',
6798             'IO::Uncompress::Base' => '2.048',
6799             'IO::Uncompress::Bunzip2'=> '2.048',
6800             'IO::Uncompress::Gunzip'=> '2.048',
6801             'IO::Uncompress::Inflate'=> '2.048',
6802             'IO::Uncompress::RawInflate'=> '2.048',
6803             'IO::Uncompress::Unzip' => '2.048',
6804             'IPC::Cmd' => '0.76',
6805             'Math::Complex' => '1.59',
6806             'Math::Trig' => '1.23',
6807             'Module::Metadata' => '1.000009',
6808             'Opcode' => '1.23',
6809             'POSIX' => '1.30',
6810             'Parse::CPAN::Meta' => '1.4402',
6811             'PerlIO::mmap' => '0.010',
6812             'Pod::Checker' => '1.51',
6813             'Pod::Find' => '1.51',
6814             'Pod::Functions' => '1.05',
6815             'Pod::Html' => '1.14',
6816             'Pod::InputObjects' => '1.51',
6817             'Pod::ParseUtils' => '1.51',
6818             'Pod::Parser' => '1.51',
6819             'Pod::PlainText' => '2.05',
6820             'Pod::Select' => '1.51',
6821             'Pod::Usage' => '1.51',
6822             'Safe' => '2.31',
6823             'Socket' => '1.98',
6824             'Term::Cap' => '1.13',
6825             'Term::ReadLine' => '1.08',
6826             'Time::HiRes' => '1.9725',
6827             'Unicode' => '6.1.0',
6828             'Unicode::UCD' => '0.41',
6829             'Version::Requirements' => '0.101022',
6830             'XS::APItest' => '0.36',
6831             'XS::Typemap' => '0.08',
6832             '_charnames' => '1.29',
6833             'arybase' => '0.04',
6834             'charnames' => '1.29',
6835             'diagnostics' => '1.28',
6836             'feature' => '1.26',
6837             'locale' => '1.01',
6838             'overload' => '1.18',
6839             'perlfaq' => '5.0150039',
6840             're' => '0.19',
6841             'subs' => '1.01',
6842             'warnings' => '1.13',
6843             },
6844             removed => {
6845             }
6846             },
6847             5.015009 => {
6848             delta_from => 5.015008,
6849             changed => {
6850             'B::Deparse' => '1.13',
6851             'B::Lint' => '1.14',
6852             'B::Lint::Debug' => '1.14',
6853             'CPAN::Meta' => '2.120630',
6854             'CPAN::Meta::Converter' => '2.120630',
6855             'CPAN::Meta::Feature' => '2.120630',
6856             'CPAN::Meta::History' => '2.120630',
6857             'CPAN::Meta::Prereqs' => '2.120630',
6858             'CPAN::Meta::Requirements'=> '2.120630',
6859             'CPAN::Meta::Spec' => '2.120630',
6860             'CPAN::Meta::Validator' => '2.120630',
6861             'CPANPLUS' => '0.9121',
6862             'CPANPLUS::Internals' => '0.9121',
6863             'CPANPLUS::Shell::Default'=> '0.9121',
6864             'Data::Dumper' => '2.135_06',
6865             'Digest::SHA' => '5.71',
6866             'ExtUtils::CBuilder' => '0.280206',
6867             'ExtUtils::CBuilder::Base'=> '0.280206',
6868             'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6869             'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6870             'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6871             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6872             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6873             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6874             'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6875             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6876             'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6877             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6878             'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6879             'HTTP::Tiny' => '0.017',
6880             'Locale::Codes' => '3.21',
6881             'Locale::Codes::Constants'=> '3.21',
6882             'Locale::Codes::Country'=> '3.21',
6883             'Locale::Codes::Country_Codes'=> '3.21',
6884             'Locale::Codes::Country_Retired'=> '3.21',
6885             'Locale::Codes::Currency'=> '3.21',
6886             'Locale::Codes::Currency_Codes'=> '3.21',
6887             'Locale::Codes::Currency_Retired'=> '3.21',
6888             'Locale::Codes::LangExt'=> '3.21',
6889             'Locale::Codes::LangExt_Codes'=> '3.21',
6890             'Locale::Codes::LangExt_Retired'=> '3.21',
6891             'Locale::Codes::LangFam'=> '3.21',
6892             'Locale::Codes::LangFam_Codes'=> '3.21',
6893             'Locale::Codes::LangFam_Retired'=> '3.21',
6894             'Locale::Codes::LangVar'=> '3.21',
6895             'Locale::Codes::LangVar_Codes'=> '3.21',
6896             'Locale::Codes::LangVar_Retired'=> '3.21',
6897             'Locale::Codes::Language'=> '3.21',
6898             'Locale::Codes::Language_Codes'=> '3.21',
6899             'Locale::Codes::Language_Retired'=> '3.21',
6900             'Locale::Codes::Script' => '3.21',
6901             'Locale::Codes::Script_Codes'=> '3.21',
6902             'Locale::Codes::Script_Retired'=> '3.21',
6903             'Locale::Country' => '3.21',
6904             'Locale::Currency' => '3.21',
6905             'Locale::Language' => '3.21',
6906             'Locale::Script' => '3.21',
6907             'Module::CoreList' => '2.65',
6908             'Pod::Html' => '1.1501',
6909             'Pod::Perldoc' => '3.17',
6910             'Pod::Perldoc::BaseTo' => '3.17',
6911             'Pod::Perldoc::GetOptsOO'=> '3.17',
6912             'Pod::Perldoc::ToANSI' => '3.17',
6913             'Pod::Perldoc::ToChecker'=> '3.17',
6914             'Pod::Perldoc::ToMan' => '3.17',
6915             'Pod::Perldoc::ToNroff' => '3.17',
6916             'Pod::Perldoc::ToPod' => '3.17',
6917             'Pod::Perldoc::ToRtf' => '3.17',
6918             'Pod::Perldoc::ToTerm' => '3.17',
6919             'Pod::Perldoc::ToText' => '3.17',
6920             'Pod::Perldoc::ToTk' => '3.17',
6921             'Pod::Perldoc::ToXml' => '3.17',
6922             'Pod::Simple' => '3.20',
6923             'Pod::Simple::BlackBox' => '3.20',
6924             'Pod::Simple::Checker' => '3.20',
6925             'Pod::Simple::Debug' => '3.20',
6926             'Pod::Simple::DumpAsText'=> '3.20',
6927             'Pod::Simple::DumpAsXML'=> '3.20',
6928             'Pod::Simple::HTML' => '3.20',
6929             'Pod::Simple::HTMLBatch'=> '3.20',
6930             'Pod::Simple::LinkSection'=> '3.20',
6931             'Pod::Simple::Methody' => '3.20',
6932             'Pod::Simple::Progress' => '3.20',
6933             'Pod::Simple::PullParser'=> '3.20',
6934             'Pod::Simple::PullParserEndToken'=> '3.20',
6935             'Pod::Simple::PullParserStartToken'=> '3.20',
6936             'Pod::Simple::PullParserTextToken'=> '3.20',
6937             'Pod::Simple::PullParserToken'=> '3.20',
6938             'Pod::Simple::RTF' => '3.20',
6939             'Pod::Simple::Search' => '3.20',
6940             'Pod::Simple::SimpleTree'=> '3.20',
6941             'Pod::Simple::Text' => '3.20',
6942             'Pod::Simple::TextContent'=> '3.20',
6943             'Pod::Simple::TiedOutFH'=> '3.20',
6944             'Pod::Simple::Transcode'=> '3.20',
6945             'Pod::Simple::TranscodeDumb'=> '3.20',
6946             'Pod::Simple::TranscodeSmart'=> '3.20',
6947             'Pod::Simple::XHTML' => '3.20',
6948             'Pod::Simple::XMLOutStream'=> '3.20',
6949             'Socket' => '2.000',
6950             'Term::ReadLine' => '1.09',
6951             'Unicode::Collate' => '0.89',
6952             'Unicode::Collate::CJK::Korean'=> '0.88',
6953             'Unicode::Collate::Locale'=> '0.89',
6954             'Unicode::Normalize' => '1.14',
6955             'Unicode::UCD' => '0.42',
6956             'XS::APItest' => '0.37',
6957             'arybase' => '0.05',
6958             'attributes' => '0.18',
6959             'charnames' => '1.30',
6960             'feature' => '1.27',
6961             },
6962             removed => {
6963             }
6964             },
6965             5.016 => {
6966             delta_from => 5.015009,
6967             changed => {
6968             'B::Concise' => '0.89',
6969             'B::Deparse' => '1.14',
6970             'Carp' => '1.26',
6971             'Carp::Heavy' => '1.26',
6972             'IO::Socket' => '1.35',
6973             'Module::CoreList' => '2.66',
6974             'PerlIO::scalar' => '0.14',
6975             'Pod::Html' => '1.1502',
6976             'Safe' => '2.31_01',
6977             'Socket' => '2.001',
6978             'Unicode::UCD' => '0.43',
6979             'XS::APItest' => '0.38',
6980             '_charnames' => '1.31',
6981             'attributes' => '0.19',
6982             'strict' => '1.07',
6983             'version' => '0.99',
6984             },
6985             removed => {
6986             }
6987             },
6988             5.016001 => {
6989             delta_from => 5.016,
6990             changed => {
6991             'B' => '1.35',
6992             'B::Deparse' => '1.14_01',
6993             'List::Util' => '1.25',
6994             'List::Util::PP' => '1.25',
6995             'List::Util::XS' => '1.25',
6996             'Module::CoreList' => '2.70',
6997             'PerlIO::scalar' => '0.14_01',
6998             'Scalar::Util' => '1.25',
6999             'Scalar::Util::PP' => '1.25',
7000             're' => '0.19_01',
7001             },
7002             removed => {
7003             }
7004             },
7005             5.016002 => {
7006             delta_from => 5.016001,
7007             changed => {
7008             'Module::CoreList' => '2.76',
7009             },
7010             removed => {
7011             }
7012             },
7013             5.016003 => {
7014             delta_from => 5.016002,
7015             changed => {
7016             'Encode' => '2.44_01',
7017             'Module::CoreList' => '2.76_02',
7018             'XS::APItest' => '0.39',
7019             },
7020             removed => {
7021             }
7022             },
7023             5.017 => {
7024             delta_from => 5.016,
7025             changed => {
7026             'B' => '1.35',
7027             'B::Concise' => '0.90',
7028             'ExtUtils::ParseXS' => '3.17',
7029             'ExtUtils::ParseXS::Utilities'=> '3.17',
7030             'File::DosGlob' => '1.07',
7031             'File::Find' => '1.21',
7032             'File::stat' => '1.06',
7033             'Hash::Util' => '0.12',
7034             'IO::Socket' => '1.34',
7035             'Module::CoreList' => '2.67',
7036             'Pod::Functions' => '1.06',
7037             'Storable' => '2.35',
7038             'XS::APItest' => '0.39',
7039             'diagnostics' => '1.29',
7040             'feature' => '1.28',
7041             'overload' => '1.19',
7042             'utf8' => '1.10',
7043             },
7044             removed => {
7045             'Version::Requirements' => 1,
7046             }
7047             },
7048             5.017001 => {
7049             delta_from => 5.017,
7050             changed => {
7051             'App::Prove' => '3.25',
7052             'App::Prove::State' => '3.25',
7053             'App::Prove::State::Result'=> '3.25',
7054             'App::Prove::State::Result::Test'=> '3.25',
7055             'Archive::Extract' => '0.60',
7056             'Archive::Tar' => '1.88',
7057             'Archive::Tar::Constant'=> '1.88',
7058             'Archive::Tar::File' => '1.88',
7059             'B' => '1.36',
7060             'B::Deparse' => '1.15',
7061             'CPAN::Meta' => '2.120921',
7062             'CPAN::Meta::Converter' => '2.120921',
7063             'CPAN::Meta::Feature' => '2.120921',
7064             'CPAN::Meta::History' => '2.120921',
7065             'CPAN::Meta::Prereqs' => '2.120921',
7066             'CPAN::Meta::Requirements'=> '2.122',
7067             'CPAN::Meta::Spec' => '2.120921',
7068             'CPAN::Meta::Validator' => '2.120921',
7069             'CPAN::Meta::YAML' => '0.008',
7070             'CPANPLUS' => '0.9130',
7071             'CPANPLUS::Config::HomeEnv'=> '0.04',
7072             'CPANPLUS::Internals' => '0.9130',
7073             'CPANPLUS::Shell::Default'=> '0.9130',
7074             'Class::Struct' => '0.64',
7075             'Compress::Raw::Bzip2' => '2.052',
7076             'Compress::Raw::Zlib' => '2.054',
7077             'Compress::Zlib' => '2.052',
7078             'Digest::MD5' => '2.52',
7079             'DynaLoader' => '1.15',
7080             'ExtUtils::CBuilder' => '0.280208',
7081             'ExtUtils::CBuilder::Base'=> '0.280208',
7082             'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
7083             'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
7084             'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
7085             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
7086             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
7087             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
7088             'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
7089             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
7090             'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
7091             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
7092             'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
7093             'Fatal' => '2.11',
7094             'File::DosGlob' => '1.08',
7095             'File::Fetch' => '0.34',
7096             'File::Spec::Unix' => '3.39_03',
7097             'Filter::Util::Call' => '1.45',
7098             'HTTP::Tiny' => '0.022',
7099             'IO' => '1.25_07',
7100             'IO::Compress::Adapter::Bzip2'=> '2.052',
7101             'IO::Compress::Adapter::Deflate'=> '2.052',
7102             'IO::Compress::Adapter::Identity'=> '2.052',
7103             'IO::Compress::Base' => '2.052',
7104             'IO::Compress::Base::Common'=> '2.052',
7105             'IO::Compress::Bzip2' => '2.052',
7106             'IO::Compress::Deflate' => '2.052',
7107             'IO::Compress::Gzip' => '2.052',
7108             'IO::Compress::Gzip::Constants'=> '2.052',
7109             'IO::Compress::RawDeflate'=> '2.052',
7110             'IO::Compress::Zip' => '2.052',
7111             'IO::Compress::Zip::Constants'=> '2.052',
7112             'IO::Compress::Zlib::Constants'=> '2.052',
7113             'IO::Compress::Zlib::Extra'=> '2.052',
7114             'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
7115             'IO::Uncompress::Adapter::Identity'=> '2.052',
7116             'IO::Uncompress::Adapter::Inflate'=> '2.052',
7117             'IO::Uncompress::AnyInflate'=> '2.052',
7118             'IO::Uncompress::AnyUncompress'=> '2.052',
7119             'IO::Uncompress::Base' => '2.052',
7120             'IO::Uncompress::Bunzip2'=> '2.052',
7121             'IO::Uncompress::Gunzip'=> '2.052',
7122             'IO::Uncompress::Inflate'=> '2.052',
7123             'IO::Uncompress::RawInflate'=> '2.052',
7124             'IO::Uncompress::Unzip' => '2.052',
7125             'IPC::Cmd' => '0.78',
7126             'List::Util' => '1.25',
7127             'List::Util::XS' => '1.25',
7128             'Locale::Codes' => '3.22',
7129             'Locale::Codes::Constants'=> '3.22',
7130             'Locale::Codes::Country'=> '3.22',
7131             'Locale::Codes::Country_Codes'=> '3.22',
7132             'Locale::Codes::Country_Retired'=> '3.22',
7133             'Locale::Codes::Currency'=> '3.22',
7134             'Locale::Codes::Currency_Codes'=> '3.22',
7135             'Locale::Codes::Currency_Retired'=> '3.22',
7136             'Locale::Codes::LangExt'=> '3.22',
7137             'Locale::Codes::LangExt_Codes'=> '3.22',
7138             'Locale::Codes::LangExt_Retired'=> '3.22',
7139             'Locale::Codes::LangFam'=> '3.22',
7140             'Locale::Codes::LangFam_Codes'=> '3.22',
7141             'Locale::Codes::LangFam_Retired'=> '3.22',
7142             'Locale::Codes::LangVar'=> '3.22',
7143             'Locale::Codes::LangVar_Codes'=> '3.22',
7144             'Locale::Codes::LangVar_Retired'=> '3.22',
7145             'Locale::Codes::Language'=> '3.22',
7146             'Locale::Codes::Language_Codes'=> '3.22',
7147             'Locale::Codes::Language_Retired'=> '3.22',
7148             'Locale::Codes::Script' => '3.22',
7149             'Locale::Codes::Script_Codes'=> '3.22',
7150             'Locale::Codes::Script_Retired'=> '3.22',
7151             'Locale::Country' => '3.22',
7152             'Locale::Currency' => '3.22',
7153             'Locale::Language' => '3.22',
7154             'Locale::Script' => '3.22',
7155             'Memoize' => '1.03',
7156             'Memoize::AnyDBM_File' => '1.03',
7157             'Memoize::Expire' => '1.03',
7158             'Memoize::ExpireFile' => '1.03',
7159             'Memoize::ExpireTest' => '1.03',
7160             'Memoize::NDBM_File' => '1.03',
7161             'Memoize::SDBM_File' => '1.03',
7162             'Memoize::Storable' => '1.03',
7163             'Module::Build' => '0.40',
7164             'Module::Build::Base' => '0.40',
7165             'Module::Build::Compat' => '0.40',
7166             'Module::Build::Config' => '0.40',
7167             'Module::Build::Cookbook'=> '0.40',
7168             'Module::Build::Dumper' => '0.40',
7169             'Module::Build::ModuleInfo'=> '0.40',
7170             'Module::Build::Notes' => '0.40',
7171             'Module::Build::PPMMaker'=> '0.40',
7172             'Module::Build::Platform::Amiga'=> '0.40',
7173             'Module::Build::Platform::Default'=> '0.40',
7174             'Module::Build::Platform::EBCDIC'=> '0.40',
7175             'Module::Build::Platform::MPEiX'=> '0.40',
7176             'Module::Build::Platform::MacOS'=> '0.40',
7177             'Module::Build::Platform::RiscOS'=> '0.40',
7178             'Module::Build::Platform::Unix'=> '0.40',
7179             'Module::Build::Platform::VMS'=> '0.40',
7180             'Module::Build::Platform::VOS'=> '0.40',
7181             'Module::Build::Platform::Windows'=> '0.40',
7182             'Module::Build::Platform::aix'=> '0.40',
7183             'Module::Build::Platform::cygwin'=> '0.40',
7184             'Module::Build::Platform::darwin'=> '0.40',
7185             'Module::Build::Platform::os2'=> '0.40',
7186             'Module::Build::PodParser'=> '0.40',
7187             'Module::CoreList' => '2.68',
7188             'Module::Load::Conditional'=> '0.50',
7189             'Object::Accessor' => '0.44',
7190             'POSIX' => '1.31',
7191             'Params::Check' => '0.36',
7192             'Parse::CPAN::Meta' => '1.4404',
7193             'PerlIO::mmap' => '0.011',
7194             'PerlIO::via::QuotedPrint'=> '0.07',
7195             'Pod::Html' => '1.16',
7196             'Pod::Man' => '2.26',
7197             'Pod::Text' => '3.16',
7198             'Safe' => '2.33_01',
7199             'Scalar::Util' => '1.25',
7200             'Search::Dict' => '1.07',
7201             'Storable' => '2.36',
7202             'TAP::Base' => '3.25',
7203             'TAP::Formatter::Base' => '3.25',
7204             'TAP::Formatter::Color' => '3.25',
7205             'TAP::Formatter::Console'=> '3.25',
7206             'TAP::Formatter::Console::ParallelSession'=> '3.25',
7207             'TAP::Formatter::Console::Session'=> '3.25',
7208             'TAP::Formatter::File' => '3.25',
7209             'TAP::Formatter::File::Session'=> '3.25',
7210             'TAP::Formatter::Session'=> '3.25',
7211             'TAP::Harness' => '3.25',
7212             'TAP::Object' => '3.25',
7213             'TAP::Parser' => '3.25',
7214             'TAP::Parser::Aggregator'=> '3.25',
7215             'TAP::Parser::Grammar' => '3.25',
7216             'TAP::Parser::Iterator' => '3.25',
7217             'TAP::Parser::Iterator::Array'=> '3.25',
7218             'TAP::Parser::Iterator::Process'=> '3.25',
7219             'TAP::Parser::Iterator::Stream'=> '3.25',
7220             'TAP::Parser::IteratorFactory'=> '3.25',
7221             'TAP::Parser::Multiplexer'=> '3.25',
7222             'TAP::Parser::Result' => '3.25',
7223             'TAP::Parser::Result::Bailout'=> '3.25',
7224             'TAP::Parser::Result::Comment'=> '3.25',
7225             'TAP::Parser::Result::Plan'=> '3.25',
7226             'TAP::Parser::Result::Pragma'=> '3.25',
7227             'TAP::Parser::Result::Test'=> '3.25',
7228             'TAP::Parser::Result::Unknown'=> '3.25',
7229             'TAP::Parser::Result::Version'=> '3.25',
7230             'TAP::Parser::Result::YAML'=> '3.25',
7231             'TAP::Parser::ResultFactory'=> '3.25',
7232             'TAP::Parser::Scheduler'=> '3.25',
7233             'TAP::Parser::Scheduler::Job'=> '3.25',
7234             'TAP::Parser::Scheduler::Spinner'=> '3.25',
7235             'TAP::Parser::Source' => '3.25',
7236             'TAP::Parser::SourceHandler'=> '3.25',
7237             'TAP::Parser::SourceHandler::Executable'=> '3.25',
7238             'TAP::Parser::SourceHandler::File'=> '3.25',
7239             'TAP::Parser::SourceHandler::Handle'=> '3.25',
7240             'TAP::Parser::SourceHandler::Perl'=> '3.25',
7241             'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7242             'TAP::Parser::Utils' => '3.25',
7243             'TAP::Parser::YAMLish::Reader'=> '3.25',
7244             'TAP::Parser::YAMLish::Writer'=> '3.25',
7245             'Term::ANSIColor' => '3.02',
7246             'Test::Harness' => '3.25',
7247             'Unicode' => '6.2.0',
7248             'Unicode::UCD' => '0.44',
7249             'XS::APItest' => '0.40',
7250             '_charnames' => '1.32',
7251             'attributes' => '0.2',
7252             'autodie' => '2.11',
7253             'autodie::exception' => '2.11',
7254             'autodie::exception::system'=> '2.11',
7255             'autodie::hints' => '2.11',
7256             'bigint' => '0.30',
7257             'charnames' => '1.32',
7258             'feature' => '1.29',
7259             'inc::latest' => '0.40',
7260             'perlfaq' => '5.0150040',
7261             're' => '0.20',
7262             },
7263             removed => {
7264             'List::Util::PP' => 1,
7265             'Scalar::Util::PP' => 1,
7266             }
7267             },
7268             5.017002 => {
7269             delta_from => 5.017001,
7270             changed => {
7271             'App::Prove' => '3.25_01',
7272             'App::Prove::State' => '3.25_01',
7273             'App::Prove::State::Result'=> '3.25_01',
7274             'App::Prove::State::Result::Test'=> '3.25_01',
7275             'B::Concise' => '0.91',
7276             'Compress::Raw::Bzip2' => '2.05201',
7277             'Compress::Raw::Zlib' => '2.05401',
7278             'Exporter' => '5.67',
7279             'Exporter::Heavy' => '5.67',
7280             'Fatal' => '2.12',
7281             'File::Fetch' => '0.36',
7282             'File::stat' => '1.07',
7283             'IO' => '1.25_08',
7284             'IO::Socket' => '1.35',
7285             'Module::CoreList' => '2.69',
7286             'PerlIO::scalar' => '0.15',
7287             'Socket' => '2.002',
7288             'Storable' => '2.37',
7289             'TAP::Base' => '3.25_01',
7290             'TAP::Formatter::Base' => '3.25_01',
7291             'TAP::Formatter::Color' => '3.25_01',
7292             'TAP::Formatter::Console'=> '3.25_01',
7293             'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7294             'TAP::Formatter::Console::Session'=> '3.25_01',
7295             'TAP::Formatter::File' => '3.25_01',
7296             'TAP::Formatter::File::Session'=> '3.25_01',
7297             'TAP::Formatter::Session'=> '3.25_01',
7298             'TAP::Harness' => '3.25_01',
7299             'TAP::Object' => '3.25_01',
7300             'TAP::Parser' => '3.25_01',
7301             'TAP::Parser::Aggregator'=> '3.25_01',
7302             'TAP::Parser::Grammar' => '3.25_01',
7303             'TAP::Parser::Iterator' => '3.25_01',
7304             'TAP::Parser::Iterator::Array'=> '3.25_01',
7305             'TAP::Parser::Iterator::Process'=> '3.25_01',
7306             'TAP::Parser::Iterator::Stream'=> '3.25_01',
7307             'TAP::Parser::IteratorFactory'=> '3.25_01',
7308             'TAP::Parser::Multiplexer'=> '3.25_01',
7309             'TAP::Parser::Result' => '3.25_01',
7310             'TAP::Parser::Result::Bailout'=> '3.25_01',
7311             'TAP::Parser::Result::Comment'=> '3.25_01',
7312             'TAP::Parser::Result::Plan'=> '3.25_01',
7313             'TAP::Parser::Result::Pragma'=> '3.25_01',
7314             'TAP::Parser::Result::Test'=> '3.25_01',
7315             'TAP::Parser::Result::Unknown'=> '3.25_01',
7316             'TAP::Parser::Result::Version'=> '3.25_01',
7317             'TAP::Parser::Result::YAML'=> '3.25_01',
7318             'TAP::Parser::ResultFactory'=> '3.25_01',
7319             'TAP::Parser::Scheduler'=> '3.25_01',
7320             'TAP::Parser::Scheduler::Job'=> '3.25_01',
7321             'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7322             'TAP::Parser::Source' => '3.25_01',
7323             'TAP::Parser::SourceHandler'=> '3.25_01',
7324             'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7325             'TAP::Parser::SourceHandler::File'=> '3.25_01',
7326             'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7327             'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7328             'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7329             'TAP::Parser::Utils' => '3.25_01',
7330             'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7331             'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7332             'Test::Harness' => '3.25_01',
7333             'Tie::StdHandle' => '4.3',
7334             'XS::APItest' => '0.41',
7335             'autodie' => '2.12',
7336             'autodie::exception' => '2.12',
7337             'autodie::exception::system'=> '2.12',
7338             'autodie::hints' => '2.12',
7339             'diagnostics' => '1.30',
7340             'overload' => '1.20',
7341             're' => '0.21',
7342             'vars' => '1.03',
7343             },
7344             removed => {
7345             }
7346             },
7347             5.017003 => {
7348             delta_from => 5.017002,
7349             changed => {
7350             'B' => '1.37',
7351             'B::Concise' => '0.92',
7352             'B::Debug' => '1.18',
7353             'B::Deparse' => '1.16',
7354             'CGI' => '3.60',
7355             'Compress::Raw::Bzip2' => '2.055',
7356             'Compress::Raw::Zlib' => '2.056',
7357             'Compress::Zlib' => '2.055',
7358             'Data::Dumper' => '2.135_07',
7359             'Devel::Peek' => '1.09',
7360             'Encode' => '2.47',
7361             'Encode::Alias' => '2.16',
7362             'Encode::GSM0338' => '2.02',
7363             'Encode::Unicode::UTF7' => '2.06',
7364             'IO::Compress::Adapter::Bzip2'=> '2.055',
7365             'IO::Compress::Adapter::Deflate'=> '2.055',
7366             'IO::Compress::Adapter::Identity'=> '2.055',
7367             'IO::Compress::Base' => '2.055',
7368             'IO::Compress::Base::Common'=> '2.055',
7369             'IO::Compress::Bzip2' => '2.055',
7370             'IO::Compress::Deflate' => '2.055',
7371             'IO::Compress::Gzip' => '2.055',
7372             'IO::Compress::Gzip::Constants'=> '2.055',
7373             'IO::Compress::RawDeflate'=> '2.055',
7374             'IO::Compress::Zip' => '2.055',
7375             'IO::Compress::Zip::Constants'=> '2.055',
7376             'IO::Compress::Zlib::Constants'=> '2.055',
7377             'IO::Compress::Zlib::Extra'=> '2.055',
7378             'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7379             'IO::Uncompress::Adapter::Identity'=> '2.055',
7380             'IO::Uncompress::Adapter::Inflate'=> '2.055',
7381             'IO::Uncompress::AnyInflate'=> '2.055',
7382             'IO::Uncompress::AnyUncompress'=> '2.055',
7383             'IO::Uncompress::Base' => '2.055',
7384             'IO::Uncompress::Bunzip2'=> '2.055',
7385             'IO::Uncompress::Gunzip'=> '2.055',
7386             'IO::Uncompress::Inflate'=> '2.055',
7387             'IO::Uncompress::RawInflate'=> '2.055',
7388             'IO::Uncompress::Unzip' => '2.055',
7389             'Module::Build' => '0.4003',
7390             'Module::Build::Base' => '0.4003',
7391             'Module::Build::Compat' => '0.4003',
7392             'Module::Build::Config' => '0.4003',
7393             'Module::Build::Cookbook'=> '0.4003',
7394             'Module::Build::Dumper' => '0.4003',
7395             'Module::Build::ModuleInfo'=> '0.4003',
7396             'Module::Build::Notes' => '0.4003',
7397             'Module::Build::PPMMaker'=> '0.4003',
7398             'Module::Build::Platform::Amiga'=> '0.4003',
7399             'Module::Build::Platform::Default'=> '0.4003',
7400             'Module::Build::Platform::EBCDIC'=> '0.4003',
7401             'Module::Build::Platform::MPEiX'=> '0.4003',
7402             'Module::Build::Platform::MacOS'=> '0.4003',
7403             'Module::Build::Platform::RiscOS'=> '0.4003',
7404             'Module::Build::Platform::Unix'=> '0.4003',
7405             'Module::Build::Platform::VMS'=> '0.4003',
7406             'Module::Build::Platform::VOS'=> '0.4003',
7407             'Module::Build::Platform::Windows'=> '0.4003',
7408             'Module::Build::Platform::aix'=> '0.4003',
7409             'Module::Build::Platform::cygwin'=> '0.4003',
7410             'Module::Build::Platform::darwin'=> '0.4003',
7411             'Module::Build::Platform::os2'=> '0.4003',
7412             'Module::Build::PodParser'=> '0.4003',
7413             'Module::CoreList' => '2.71',
7414             'Module::CoreList::TieHashDelta'=> '2.71',
7415             'Module::Load::Conditional'=> '0.54',
7416             'Module::Metadata' => '1.000011',
7417             'Module::Pluggable' => '4.3',
7418             'Module::Pluggable::Object'=> '4.3',
7419             'Pod::Simple' => '3.23',
7420             'Pod::Simple::BlackBox' => '3.23',
7421             'Pod::Simple::Checker' => '3.23',
7422             'Pod::Simple::Debug' => '3.23',
7423             'Pod::Simple::DumpAsText'=> '3.23',
7424             'Pod::Simple::DumpAsXML'=> '3.23',
7425             'Pod::Simple::HTML' => '3.23',
7426             'Pod::Simple::HTMLBatch'=> '3.23',
7427             'Pod::Simple::LinkSection'=> '3.23',
7428             'Pod::Simple::Methody' => '3.23',
7429             'Pod::Simple::Progress' => '3.23',
7430             'Pod::Simple::PullParser'=> '3.23',
7431             'Pod::Simple::PullParserEndToken'=> '3.23',
7432             'Pod::Simple::PullParserStartToken'=> '3.23',
7433             'Pod::Simple::PullParserTextToken'=> '3.23',
7434             'Pod::Simple::PullParserToken'=> '3.23',
7435             'Pod::Simple::RTF' => '3.23',
7436             'Pod::Simple::Search' => '3.23',
7437             'Pod::Simple::SimpleTree'=> '3.23',
7438             'Pod::Simple::Text' => '3.23',
7439             'Pod::Simple::TextContent'=> '3.23',
7440             'Pod::Simple::TiedOutFH'=> '3.23',
7441             'Pod::Simple::Transcode'=> '3.23',
7442             'Pod::Simple::TranscodeDumb'=> '3.23',
7443             'Pod::Simple::TranscodeSmart'=> '3.23',
7444             'Pod::Simple::XHTML' => '3.23',
7445             'Pod::Simple::XMLOutStream'=> '3.23',
7446             'Socket' => '2.004',
7447             'Storable' => '2.38',
7448             'Sys::Syslog' => '0.31',
7449             'Term::ReadLine' => '1.10',
7450             'Text::Tabs' => '2012.0818',
7451             'Text::Wrap' => '2012.0818',
7452             'Time::Local' => '1.2300',
7453             'Unicode::UCD' => '0.45',
7454             'Win32' => '0.45',
7455             'Win32CORE' => '0.03',
7456             'XS::APItest' => '0.42',
7457             'inc::latest' => '0.4003',
7458             'perlfaq' => '5.0150041',
7459             're' => '0.22',
7460             },
7461             removed => {
7462             }
7463             },
7464             5.017004 => {
7465             delta_from => 5.017003,
7466             changed => {
7467             'Archive::Tar' => '1.90',
7468             'Archive::Tar::Constant'=> '1.90',
7469             'Archive::Tar::File' => '1.90',
7470             'B' => '1.38',
7471             'B::Concise' => '0.93',
7472             'B::Deparse' => '1.17',
7473             'B::Xref' => '1.04',
7474             'CPANPLUS' => '0.9131',
7475             'CPANPLUS::Internals' => '0.9131',
7476             'CPANPLUS::Shell::Default'=> '0.9131',
7477             'DB_File' => '1.827',
7478             'Devel::Peek' => '1.10',
7479             'DynaLoader' => '1.16',
7480             'Errno' => '1.16',
7481             'ExtUtils::ParseXS' => '3.18',
7482             'ExtUtils::ParseXS::Constants'=> '3.18',
7483             'ExtUtils::ParseXS::CountLines'=> '3.18',
7484             'ExtUtils::ParseXS::Utilities'=> '3.18',
7485             'File::Copy' => '2.24',
7486             'File::Find' => '1.22',
7487             'IPC::Open3' => '1.13',
7488             'Locale::Codes' => '3.23',
7489             'Locale::Codes::Constants'=> '3.23',
7490             'Locale::Codes::Country'=> '3.23',
7491             'Locale::Codes::Country_Codes'=> '3.23',
7492             'Locale::Codes::Country_Retired'=> '3.23',
7493             'Locale::Codes::Currency'=> '3.23',
7494             'Locale::Codes::Currency_Codes'=> '3.23',
7495             'Locale::Codes::Currency_Retired'=> '3.23',
7496             'Locale::Codes::LangExt'=> '3.23',
7497             'Locale::Codes::LangExt_Codes'=> '3.23',
7498             'Locale::Codes::LangExt_Retired'=> '3.23',
7499             'Locale::Codes::LangFam'=> '3.23',
7500             'Locale::Codes::LangFam_Codes'=> '3.23',
7501             'Locale::Codes::LangFam_Retired'=> '3.23',
7502             'Locale::Codes::LangVar'=> '3.23',
7503             'Locale::Codes::LangVar_Codes'=> '3.23',
7504             'Locale::Codes::LangVar_Retired'=> '3.23',
7505             'Locale::Codes::Language'=> '3.23',
7506             'Locale::Codes::Language_Codes'=> '3.23',
7507             'Locale::Codes::Language_Retired'=> '3.23',
7508             'Locale::Codes::Script' => '3.23',
7509             'Locale::Codes::Script_Codes'=> '3.23',
7510             'Locale::Codes::Script_Retired'=> '3.23',
7511             'Locale::Country' => '3.23',
7512             'Locale::Currency' => '3.23',
7513             'Locale::Language' => '3.23',
7514             'Locale::Script' => '3.23',
7515             'Math::BigFloat::Trace' => '0.30',
7516             'Math::BigInt::Trace' => '0.30',
7517             'Module::CoreList' => '2.73',
7518             'Module::CoreList::TieHashDelta'=> '2.73',
7519             'Opcode' => '1.24',
7520             'Socket' => '2.006',
7521             'Storable' => '2.39',
7522             'Sys::Syslog' => '0.32',
7523             'Unicode::UCD' => '0.46',
7524             'XS::APItest' => '0.43',
7525             'bignum' => '0.30',
7526             'bigrat' => '0.30',
7527             'constant' => '1.24',
7528             'feature' => '1.30',
7529             'threads::shared' => '1.41',
7530             'version' => '0.9901',
7531             'warnings' => '1.14',
7532             },
7533             removed => {
7534             }
7535             },
7536             5.017005 => {
7537             delta_from => 5.017004,
7538             changed => {
7539             'AutoLoader' => '5.73',
7540             'B' => '1.39',
7541             'B::Deparse' => '1.18',
7542             'CPANPLUS' => '0.9133',
7543             'CPANPLUS::Internals' => '0.9133',
7544             'CPANPLUS::Shell::Default'=> '0.9133',
7545             'Carp' => '1.27',
7546             'Carp::Heavy' => '1.27',
7547             'Data::Dumper' => '2.136',
7548             'Digest::SHA' => '5.72',
7549             'ExtUtils::CBuilder' => '0.280209',
7550             'ExtUtils::CBuilder::Base'=> '0.280209',
7551             'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7552             'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7553             'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7554             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7555             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7556             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7557             'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7558             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7559             'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7560             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7561             'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7562             'File::Copy' => '2.25',
7563             'File::Glob' => '1.18',
7564             'HTTP::Tiny' => '0.024',
7565             'Module::CoreList' => '2.75',
7566             'Module::CoreList::TieHashDelta'=> '2.75',
7567             'PerlIO::encoding' => '0.16',
7568             'Unicode::Collate' => '0.90',
7569             'Unicode::Collate::Locale'=> '0.90',
7570             'Unicode::Normalize' => '1.15',
7571             'Win32CORE' => '0.04',
7572             'XS::APItest' => '0.44',
7573             'attributes' => '0.21',
7574             'bigint' => '0.31',
7575             'bignum' => '0.31',
7576             'bigrat' => '0.31',
7577             'feature' => '1.31',
7578             'threads::shared' => '1.42',
7579             'warnings' => '1.15',
7580             },
7581             removed => {
7582             }
7583             },
7584             5.017006 => {
7585             delta_from => 5.017005,
7586             changed => {
7587             'B' => '1.40',
7588             'B::Concise' => '0.94',
7589             'B::Deparse' => '1.19',
7590             'B::Xref' => '1.05',
7591             'CGI' => '3.63',
7592             'CGI::Util' => '3.62',
7593             'CPAN' => '1.99_51',
7594             'CPANPLUS::Dist::Build' => '0.64',
7595             'CPANPLUS::Dist::Build::Constants'=> '0.64',
7596             'Carp' => '1.28',
7597             'Carp::Heavy' => '1.28',
7598             'Compress::Raw::Bzip2' => '2.058',
7599             'Compress::Raw::Zlib' => '2.058',
7600             'Compress::Zlib' => '2.058',
7601             'Data::Dumper' => '2.137',
7602             'Digest::SHA' => '5.73',
7603             'DynaLoader' => '1.17',
7604             'Env' => '1.04',
7605             'Errno' => '1.17',
7606             'ExtUtils::Manifest' => '1.62',
7607             'ExtUtils::Typemaps' => '3.18',
7608             'ExtUtils::Typemaps::Cmd'=> '3.18',
7609             'ExtUtils::Typemaps::InputMap'=> '3.18',
7610             'ExtUtils::Typemaps::OutputMap'=> '3.18',
7611             'ExtUtils::Typemaps::Type'=> '3.18',
7612             'Fatal' => '2.13',
7613             'File::Find' => '1.23',
7614             'Hash::Util' => '0.13',
7615             'IO::Compress::Adapter::Bzip2'=> '2.058',
7616             'IO::Compress::Adapter::Deflate'=> '2.058',
7617             'IO::Compress::Adapter::Identity'=> '2.058',
7618             'IO::Compress::Base' => '2.058',
7619             'IO::Compress::Base::Common'=> '2.058',
7620             'IO::Compress::Bzip2' => '2.058',
7621             'IO::Compress::Deflate' => '2.058',
7622             'IO::Compress::Gzip' => '2.058',
7623             'IO::Compress::Gzip::Constants'=> '2.058',
7624             'IO::Compress::RawDeflate'=> '2.058',
7625             'IO::Compress::Zip' => '2.058',
7626             'IO::Compress::Zip::Constants'=> '2.058',
7627             'IO::Compress::Zlib::Constants'=> '2.058',
7628             'IO::Compress::Zlib::Extra'=> '2.058',
7629             'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7630             'IO::Uncompress::Adapter::Identity'=> '2.058',
7631             'IO::Uncompress::Adapter::Inflate'=> '2.058',
7632             'IO::Uncompress::AnyInflate'=> '2.058',
7633             'IO::Uncompress::AnyUncompress'=> '2.058',
7634             'IO::Uncompress::Base' => '2.058',
7635             'IO::Uncompress::Bunzip2'=> '2.058',
7636             'IO::Uncompress::Gunzip'=> '2.058',
7637             'IO::Uncompress::Inflate'=> '2.058',
7638             'IO::Uncompress::RawInflate'=> '2.058',
7639             'IO::Uncompress::Unzip' => '2.058',
7640             'Module::CoreList' => '2.78',
7641             'Module::CoreList::TieHashDelta'=> '2.77',
7642             'Module::Pluggable' => '4.5',
7643             'Module::Pluggable::Object'=> '4.5',
7644             'Opcode' => '1.25',
7645             'Sys::Hostname' => '1.17',
7646             'Term::UI' => '0.32',
7647             'Thread::Queue' => '3.01',
7648             'Tie::Hash::NamedCapture'=> '0.09',
7649             'Unicode::Collate' => '0.93',
7650             'Unicode::Collate::CJK::Korean'=> '0.93',
7651             'Unicode::Collate::Locale'=> '0.93',
7652             'Unicode::Normalize' => '1.16',
7653             'Unicode::UCD' => '0.47',
7654             'XS::APItest' => '0.46',
7655             '_charnames' => '1.33',
7656             'autodie' => '2.13',
7657             'autodie::exception' => '2.13',
7658             'autodie::exception::system'=> '2.13',
7659             'autodie::hints' => '2.13',
7660             'charnames' => '1.33',
7661             're' => '0.23',
7662             },
7663             removed => {
7664             }
7665             },
7666             5.017007 => {
7667             delta_from => 5.017006,
7668             changed => {
7669             'B' => '1.41',
7670             'CPANPLUS::Dist::Build' => '0.68',
7671             'CPANPLUS::Dist::Build::Constants'=> '0.68',
7672             'Compress::Raw::Bzip2' => '2.059',
7673             'Compress::Raw::Zlib' => '2.059',
7674             'Compress::Zlib' => '2.059',
7675             'Cwd' => '3.39_03',
7676             'Data::Dumper' => '2.139',
7677             'Devel::Peek' => '1.11',
7678             'Digest::SHA' => '5.80',
7679             'DynaLoader' => '1.18',
7680             'English' => '1.06',
7681             'Errno' => '1.18',
7682             'ExtUtils::Command::MM' => '6.64',
7683             'ExtUtils::Liblist' => '6.64',
7684             'ExtUtils::Liblist::Kid'=> '6.64',
7685             'ExtUtils::MM' => '6.64',
7686             'ExtUtils::MM_AIX' => '6.64',
7687             'ExtUtils::MM_Any' => '6.64',
7688             'ExtUtils::MM_BeOS' => '6.64',
7689             'ExtUtils::MM_Cygwin' => '6.64',
7690             'ExtUtils::MM_DOS' => '6.64',
7691             'ExtUtils::MM_Darwin' => '6.64',
7692             'ExtUtils::MM_MacOS' => '6.64',
7693             'ExtUtils::MM_NW5' => '6.64',
7694             'ExtUtils::MM_OS2' => '6.64',
7695             'ExtUtils::MM_QNX' => '6.64',
7696             'ExtUtils::MM_UWIN' => '6.64',
7697             'ExtUtils::MM_Unix' => '6.64',
7698             'ExtUtils::MM_VMS' => '6.64',
7699             'ExtUtils::MM_VOS' => '6.64',
7700             'ExtUtils::MM_Win32' => '6.64',
7701             'ExtUtils::MM_Win95' => '6.64',
7702             'ExtUtils::MY' => '6.64',
7703             'ExtUtils::MakeMaker' => '6.64',
7704             'ExtUtils::MakeMaker::Config'=> '6.64',
7705             'ExtUtils::Mkbootstrap' => '6.64',
7706             'ExtUtils::Mksymlists' => '6.64',
7707             'ExtUtils::testlib' => '6.64',
7708             'File::DosGlob' => '1.09',
7709             'File::Glob' => '1.19',
7710             'GDBM_File' => '1.15',
7711             'IO::Compress::Adapter::Bzip2'=> '2.059',
7712             'IO::Compress::Adapter::Deflate'=> '2.059',
7713             'IO::Compress::Adapter::Identity'=> '2.059',
7714             'IO::Compress::Base' => '2.059',
7715             'IO::Compress::Base::Common'=> '2.059',
7716             'IO::Compress::Bzip2' => '2.059',
7717             'IO::Compress::Deflate' => '2.059',
7718             'IO::Compress::Gzip' => '2.059',
7719             'IO::Compress::Gzip::Constants'=> '2.059',
7720             'IO::Compress::RawDeflate'=> '2.059',
7721             'IO::Compress::Zip' => '2.059',
7722             'IO::Compress::Zip::Constants'=> '2.059',
7723             'IO::Compress::Zlib::Constants'=> '2.059',
7724             'IO::Compress::Zlib::Extra'=> '2.059',
7725             'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7726             'IO::Uncompress::Adapter::Identity'=> '2.059',
7727             'IO::Uncompress::Adapter::Inflate'=> '2.059',
7728             'IO::Uncompress::AnyInflate'=> '2.059',
7729             'IO::Uncompress::AnyUncompress'=> '2.059',
7730             'IO::Uncompress::Base' => '2.059',
7731             'IO::Uncompress::Bunzip2'=> '2.059',
7732             'IO::Uncompress::Gunzip'=> '2.059',
7733             'IO::Uncompress::Inflate'=> '2.059',
7734             'IO::Uncompress::RawInflate'=> '2.059',
7735             'IO::Uncompress::Unzip' => '2.059',
7736             'List::Util' => '1.26',
7737             'List::Util::XS' => '1.26',
7738             'Locale::Codes' => '3.24',
7739             'Locale::Codes::Constants'=> '3.24',
7740             'Locale::Codes::Country'=> '3.24',
7741             'Locale::Codes::Country_Codes'=> '3.24',
7742             'Locale::Codes::Country_Retired'=> '3.24',
7743             'Locale::Codes::Currency'=> '3.24',
7744             'Locale::Codes::Currency_Codes'=> '3.24',
7745             'Locale::Codes::Currency_Retired'=> '3.24',
7746             'Locale::Codes::LangExt'=> '3.24',
7747             'Locale::Codes::LangExt_Codes'=> '3.24',
7748             'Locale::Codes::LangExt_Retired'=> '3.24',
7749             'Locale::Codes::LangFam'=> '3.24',
7750             'Locale::Codes::LangFam_Codes'=> '3.24',
7751             'Locale::Codes::LangFam_Retired'=> '3.24',
7752             'Locale::Codes::LangVar'=> '3.24',
7753             'Locale::Codes::LangVar_Codes'=> '3.24',
7754             'Locale::Codes::LangVar_Retired'=> '3.24',
7755             'Locale::Codes::Language'=> '3.24',
7756             'Locale::Codes::Language_Codes'=> '3.24',
7757             'Locale::Codes::Language_Retired'=> '3.24',
7758             'Locale::Codes::Script' => '3.24',
7759             'Locale::Codes::Script_Codes'=> '3.24',
7760             'Locale::Codes::Script_Retired'=> '3.24',
7761             'Locale::Country' => '3.24',
7762             'Locale::Currency' => '3.24',
7763             'Locale::Language' => '3.24',
7764             'Locale::Maketext' => '1.23',
7765             'Locale::Script' => '3.24',
7766             'Module::CoreList' => '2.79',
7767             'Module::CoreList::TieHashDelta'=> '2.79',
7768             'POSIX' => '1.32',
7769             'Scalar::Util' => '1.26',
7770             'Socket' => '2.006_001',
7771             'Storable' => '2.40',
7772             'Term::ReadLine' => '1.11',
7773             'Unicode::Collate' => '0.96',
7774             'Unicode::Collate::CJK::Stroke'=> '0.94',
7775             'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7776             'Unicode::Collate::Locale'=> '0.96',
7777             'XS::APItest' => '0.48',
7778             'XS::Typemap' => '0.09',
7779             '_charnames' => '1.34',
7780             'charnames' => '1.34',
7781             'feature' => '1.32',
7782             'mro' => '1.10',
7783             'sigtrap' => '1.07',
7784             'sort' => '2.02',
7785             },
7786             removed => {
7787             }
7788             },
7789             5.017008 => {
7790             delta_from => 5.017007,
7791             changed => {
7792             'Archive::Extract' => '0.62',
7793             'B' => '1.42',
7794             'B::Concise' => '0.95',
7795             'Compress::Raw::Bzip2' => '2.060',
7796             'Compress::Raw::Zlib' => '2.060',
7797             'Compress::Zlib' => '2.060',
7798             'Cwd' => '3.40',
7799             'Data::Dumper' => '2.141',
7800             'Digest::SHA' => '5.81',
7801             'ExtUtils::Install' => '1.59',
7802             'File::Fetch' => '0.38',
7803             'File::Path' => '2.09',
7804             'File::Spec' => '3.40',
7805             'File::Spec::Cygwin' => '3.40',
7806             'File::Spec::Epoc' => '3.40',
7807             'File::Spec::Functions' => '3.40',
7808             'File::Spec::Mac' => '3.40',
7809             'File::Spec::OS2' => '3.40',
7810             'File::Spec::Unix' => '3.40',
7811             'File::Spec::VMS' => '3.40',
7812             'File::Spec::Win32' => '3.40',
7813             'HTTP::Tiny' => '0.025',
7814             'Hash::Util' => '0.14',
7815             'I18N::LangTags' => '0.39',
7816             'I18N::LangTags::List' => '0.39',
7817             'I18N::Langinfo' => '0.09',
7818             'IO' => '1.26',
7819             'IO::Compress::Adapter::Bzip2'=> '2.060',
7820             'IO::Compress::Adapter::Deflate'=> '2.060',
7821             'IO::Compress::Adapter::Identity'=> '2.060',
7822             'IO::Compress::Base' => '2.060',
7823             'IO::Compress::Base::Common'=> '2.060',
7824             'IO::Compress::Bzip2' => '2.060',
7825             'IO::Compress::Deflate' => '2.060',
7826             'IO::Compress::Gzip' => '2.060',
7827             'IO::Compress::Gzip::Constants'=> '2.060',
7828             'IO::Compress::RawDeflate'=> '2.060',
7829             'IO::Compress::Zip' => '2.060',
7830             'IO::Compress::Zip::Constants'=> '2.060',
7831             'IO::Compress::Zlib::Constants'=> '2.060',
7832             'IO::Compress::Zlib::Extra'=> '2.060',
7833             'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7834             'IO::Uncompress::Adapter::Identity'=> '2.060',
7835             'IO::Uncompress::Adapter::Inflate'=> '2.060',
7836             'IO::Uncompress::AnyInflate'=> '2.060',
7837             'IO::Uncompress::AnyUncompress'=> '2.060',
7838             'IO::Uncompress::Base' => '2.060',
7839             'IO::Uncompress::Bunzip2'=> '2.060',
7840             'IO::Uncompress::Gunzip'=> '2.060',
7841             'IO::Uncompress::Inflate'=> '2.060',
7842             'IO::Uncompress::RawInflate'=> '2.060',
7843             'IO::Uncompress::Unzip' => '2.060',
7844             'List::Util' => '1.27',
7845             'List::Util::XS' => '1.27',
7846             'Module::CoreList' => '2.80',
7847             'Module::CoreList::TieHashDelta'=> '2.80',
7848             'Pod::Html' => '1.17',
7849             'Pod::LaTeX' => '0.61',
7850             'Pod::Man' => '2.27',
7851             'Pod::Text' => '3.17',
7852             'Pod::Text::Color' => '2.07',
7853             'Pod::Text::Overstrike' => '2.05',
7854             'Pod::Text::Termcap' => '2.07',
7855             'Safe' => '2.34',
7856             'Scalar::Util' => '1.27',
7857             'Socket' => '2.009',
7858             'Term::ANSIColor' => '4.02',
7859             'Test' => '1.26',
7860             'Unicode::Collate' => '0.97',
7861             'XS::APItest' => '0.51',
7862             'XS::Typemap' => '0.10',
7863             '_charnames' => '1.35',
7864             'charnames' => '1.35',
7865             'constant' => '1.25',
7866             'diagnostics' => '1.31',
7867             'threads::shared' => '1.43',
7868             'warnings' => '1.16',
7869             },
7870             removed => {
7871             }
7872             },
7873             5.017009 => {
7874             delta_from => 5.017008,
7875             changed => {
7876             'App::Cpan' => '1.60_02',
7877             'App::Prove' => '3.26',
7878             'App::Prove::State' => '3.26',
7879             'App::Prove::State::Result'=> '3.26',
7880             'App::Prove::State::Result::Test'=> '3.26',
7881             'Archive::Extract' => '0.68',
7882             'Attribute::Handlers' => '0.94',
7883             'B::Lint' => '1.17',
7884             'B::Lint::Debug' => '1.17',
7885             'Benchmark' => '1.14',
7886             'CPAN' => '2.00',
7887             'CPAN::Distribution' => '2.00',
7888             'CPAN::FirstTime' => '5.5304',
7889             'CPAN::Nox' => '5.5001',
7890             'CPANPLUS' => '0.9135',
7891             'CPANPLUS::Backend' => '0.9135',
7892             'CPANPLUS::Backend::RV' => '0.9135',
7893             'CPANPLUS::Config' => '0.9135',
7894             'CPANPLUS::Config::HomeEnv'=> '0.9135',
7895             'CPANPLUS::Configure' => '0.9135',
7896             'CPANPLUS::Configure::Setup'=> '0.9135',
7897             'CPANPLUS::Dist' => '0.9135',
7898             'CPANPLUS::Dist::Autobundle'=> '0.9135',
7899             'CPANPLUS::Dist::Base' => '0.9135',
7900             'CPANPLUS::Dist::Build' => '0.70',
7901             'CPANPLUS::Dist::Build::Constants'=> '0.70',
7902             'CPANPLUS::Dist::MM' => '0.9135',
7903             'CPANPLUS::Dist::Sample'=> '0.9135',
7904             'CPANPLUS::Error' => '0.9135',
7905             'CPANPLUS::Internals' => '0.9135',
7906             'CPANPLUS::Internals::Constants'=> '0.9135',
7907             'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7908             'CPANPLUS::Internals::Extract'=> '0.9135',
7909             'CPANPLUS::Internals::Fetch'=> '0.9135',
7910             'CPANPLUS::Internals::Report'=> '0.9135',
7911             'CPANPLUS::Internals::Search'=> '0.9135',
7912             'CPANPLUS::Internals::Source'=> '0.9135',
7913             'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7914             'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7915             'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7916             'CPANPLUS::Internals::Utils'=> '0.9135',
7917             'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7918             'CPANPLUS::Module' => '0.9135',
7919             'CPANPLUS::Module::Author'=> '0.9135',
7920             'CPANPLUS::Module::Author::Fake'=> '0.9135',
7921             'CPANPLUS::Module::Checksums'=> '0.9135',
7922             'CPANPLUS::Module::Fake'=> '0.9135',
7923             'CPANPLUS::Module::Signature'=> '0.9135',
7924             'CPANPLUS::Selfupdate' => '0.9135',
7925             'CPANPLUS::Shell' => '0.9135',
7926             'CPANPLUS::Shell::Classic'=> '0.9135',
7927             'CPANPLUS::Shell::Default'=> '0.9135',
7928             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7929             'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7930             'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
7931             'Config' => '5.017009',
7932             'Config::Perl::V' => '0.17',
7933             'DBM_Filter' => '0.05',
7934             'Data::Dumper' => '2.142',
7935             'Digest::SHA' => '5.82',
7936             'Encode' => '2.48',
7937             'ExtUtils::Installed' => '1.999003',
7938             'ExtUtils::Manifest' => '1.63',
7939             'ExtUtils::ParseXS::Utilities'=> '3.19',
7940             'ExtUtils::Typemaps' => '3.19',
7941             'File::CheckTree' => '4.42',
7942             'File::DosGlob' => '1.10',
7943             'File::Temp' => '0.22_90',
7944             'Filter::Simple' => '0.89',
7945             'IO' => '1.27',
7946             'Log::Message' => '0.06',
7947             'Log::Message::Config' => '0.06',
7948             'Log::Message::Handlers'=> '0.06',
7949             'Log::Message::Item' => '0.06',
7950             'Log::Message::Simple' => '0.10',
7951             'Math::BigInt' => '1.999',
7952             'Module::CoreList' => '2.82',
7953             'Module::CoreList::TieHashDelta'=> '2.82',
7954             'Module::Load' => '0.24',
7955             'Module::Pluggable' => '4.6',
7956             'Module::Pluggable::Object'=> '4.6',
7957             'OS2::DLL' => '1.05',
7958             'OS2::ExtAttr' => '0.03',
7959             'OS2::Process' => '1.08',
7960             'Object::Accessor' => '0.46',
7961             'PerlIO::scalar' => '0.16',
7962             'Pod::Checker' => '1.60',
7963             'Pod::Find' => '1.60',
7964             'Pod::Html' => '1.18',
7965             'Pod::InputObjects' => '1.60',
7966             'Pod::ParseUtils' => '1.60',
7967             'Pod::Parser' => '1.60',
7968             'Pod::Perldoc' => '3.19',
7969             'Pod::Perldoc::BaseTo' => '3.19',
7970             'Pod::Perldoc::GetOptsOO'=> '3.19',
7971             'Pod::Perldoc::ToANSI' => '3.19',
7972             'Pod::Perldoc::ToChecker'=> '3.19',
7973             'Pod::Perldoc::ToMan' => '3.19',
7974             'Pod::Perldoc::ToNroff' => '3.19',
7975             'Pod::Perldoc::ToPod' => '3.19',
7976             'Pod::Perldoc::ToRtf' => '3.19',
7977             'Pod::Perldoc::ToTerm' => '3.19',
7978             'Pod::Perldoc::ToText' => '3.19',
7979             'Pod::Perldoc::ToTk' => '3.19',
7980             'Pod::Perldoc::ToXml' => '3.19',
7981             'Pod::PlainText' => '2.06',
7982             'Pod::Select' => '1.60',
7983             'Pod::Usage' => '1.61',
7984             'SelfLoader' => '1.21',
7985             'TAP::Base' => '3.26',
7986             'TAP::Formatter::Base' => '3.26',
7987             'TAP::Formatter::Color' => '3.26',
7988             'TAP::Formatter::Console'=> '3.26',
7989             'TAP::Formatter::Console::ParallelSession'=> '3.26',
7990             'TAP::Formatter::Console::Session'=> '3.26',
7991             'TAP::Formatter::File' => '3.26',
7992             'TAP::Formatter::File::Session'=> '3.26',
7993             'TAP::Formatter::Session'=> '3.26',
7994             'TAP::Harness' => '3.26',
7995             'TAP::Object' => '3.26',
7996             'TAP::Parser' => '3.26',
7997             'TAP::Parser::Aggregator'=> '3.26',
7998             'TAP::Parser::Grammar' => '3.26',
7999             'TAP::Parser::Iterator' => '3.26',
8000             'TAP::Parser::Iterator::Array'=> '3.26',
8001             'TAP::Parser::Iterator::Process'=> '3.26',
8002             'TAP::Parser::Iterator::Stream'=> '3.26',
8003             'TAP::Parser::IteratorFactory'=> '3.26',
8004             'TAP::Parser::Multiplexer'=> '3.26',
8005             'TAP::Parser::Result' => '3.26',
8006             'TAP::Parser::Result::Bailout'=> '3.26',
8007             'TAP::Parser::Result::Comment'=> '3.26',
8008             'TAP::Parser::Result::Plan'=> '3.26',
8009             'TAP::Parser::Result::Pragma'=> '3.26',
8010             'TAP::Parser::Result::Test'=> '3.26',
8011             'TAP::Parser::Result::Unknown'=> '3.26',
8012             'TAP::Parser::Result::Version'=> '3.26',
8013             'TAP::Parser::Result::YAML'=> '3.26',
8014             'TAP::Parser::ResultFactory'=> '3.26',
8015             'TAP::Parser::Scheduler'=> '3.26',
8016             'TAP::Parser::Scheduler::Job'=> '3.26',
8017             'TAP::Parser::Scheduler::Spinner'=> '3.26',
8018             'TAP::Parser::Source' => '3.26',
8019             'TAP::Parser::SourceHandler'=> '3.26',
8020             'TAP::Parser::SourceHandler::Executable'=> '3.26',
8021             'TAP::Parser::SourceHandler::File'=> '3.26',
8022             'TAP::Parser::SourceHandler::Handle'=> '3.26',
8023             'TAP::Parser::SourceHandler::Perl'=> '3.26',
8024             'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
8025             'TAP::Parser::Utils' => '3.26',
8026             'TAP::Parser::YAMLish::Reader'=> '3.26',
8027             'TAP::Parser::YAMLish::Writer'=> '3.26',
8028             'Term::UI' => '0.34',
8029             'Test::Harness' => '3.26',
8030             'Text::Soundex' => '3.04',
8031             'Thread::Queue' => '3.02',
8032             'Unicode::UCD' => '0.50',
8033             'Win32' => '0.46',
8034             'Win32API::File' => '0.1201',
8035             '_charnames' => '1.36',
8036             'arybase' => '0.06',
8037             'bigint' => '0.32',
8038             'bignum' => '0.32',
8039             'charnames' => '1.36',
8040             'filetest' => '1.03',
8041             'locale' => '1.02',
8042             'overload' => '1.21',
8043             'warnings' => '1.17',
8044             },
8045             removed => {
8046             }
8047             },
8048             5.017010 => {
8049             delta_from => 5.017009,
8050             changed => {
8051             'Benchmark' => '1.15',
8052             'Config' => '5.017009',
8053             'Data::Dumper' => '2.145',
8054             'Digest::SHA' => '5.84',
8055             'Encode' => '2.49',
8056             'ExtUtils::Command::MM' => '6.65_01',
8057             'ExtUtils::Liblist' => '6.65_01',
8058             'ExtUtils::Liblist::Kid'=> '6.65_01',
8059             'ExtUtils::MM' => '6.65_01',
8060             'ExtUtils::MM_AIX' => '6.65_01',
8061             'ExtUtils::MM_Any' => '6.65_01',
8062             'ExtUtils::MM_BeOS' => '6.65_01',
8063             'ExtUtils::MM_Cygwin' => '6.65_01',
8064             'ExtUtils::MM_DOS' => '6.65_01',
8065             'ExtUtils::MM_Darwin' => '6.65_01',
8066             'ExtUtils::MM_MacOS' => '6.65_01',
8067             'ExtUtils::MM_NW5' => '6.65_01',
8068             'ExtUtils::MM_OS2' => '6.65_01',
8069             'ExtUtils::MM_QNX' => '6.65_01',
8070             'ExtUtils::MM_UWIN' => '6.65_01',
8071             'ExtUtils::MM_Unix' => '6.65_01',
8072             'ExtUtils::MM_VMS' => '6.65_01',
8073             'ExtUtils::MM_VOS' => '6.65_01',
8074             'ExtUtils::MM_Win32' => '6.65_01',
8075             'ExtUtils::MM_Win95' => '6.65_01',
8076             'ExtUtils::MY' => '6.65_01',
8077             'ExtUtils::MakeMaker' => '6.65_01',
8078             'ExtUtils::MakeMaker::Config'=> '6.65_01',
8079             'ExtUtils::Mkbootstrap' => '6.65_01',
8080             'ExtUtils::Mksymlists' => '6.65_01',
8081             'ExtUtils::testlib' => '6.65_01',
8082             'File::Copy' => '2.26',
8083             'File::Temp' => '0.23',
8084             'Getopt::Long' => '2.39',
8085             'Hash::Util' => '0.15',
8086             'I18N::Langinfo' => '0.10',
8087             'IPC::Cmd' => '0.80',
8088             'JSON::PP' => '2.27202',
8089             'Locale::Codes' => '3.25',
8090             'Locale::Codes::Constants'=> '3.25',
8091             'Locale::Codes::Country'=> '3.25',
8092             'Locale::Codes::Country_Codes'=> '3.25',
8093             'Locale::Codes::Country_Retired'=> '3.25',
8094             'Locale::Codes::Currency'=> '3.25',
8095             'Locale::Codes::Currency_Codes'=> '3.25',
8096             'Locale::Codes::Currency_Retired'=> '3.25',
8097             'Locale::Codes::LangExt'=> '3.25',
8098             'Locale::Codes::LangExt_Codes'=> '3.25',
8099             'Locale::Codes::LangExt_Retired'=> '3.25',
8100             'Locale::Codes::LangFam'=> '3.25',
8101             'Locale::Codes::LangFam_Codes'=> '3.25',
8102             'Locale::Codes::LangFam_Retired'=> '3.25',
8103             'Locale::Codes::LangVar'=> '3.25',
8104             'Locale::Codes::LangVar_Codes'=> '3.25',
8105             'Locale::Codes::LangVar_Retired'=> '3.25',
8106             'Locale::Codes::Language'=> '3.25',
8107             'Locale::Codes::Language_Codes'=> '3.25',
8108             'Locale::Codes::Language_Retired'=> '3.25',
8109             'Locale::Codes::Script' => '3.25',
8110             'Locale::Codes::Script_Codes'=> '3.25',
8111             'Locale::Codes::Script_Retired'=> '3.25',
8112             'Locale::Country' => '3.25',
8113             'Locale::Currency' => '3.25',
8114             'Locale::Language' => '3.25',
8115             'Locale::Script' => '3.25',
8116             'Math::BigFloat' => '1.998',
8117             'Math::BigFloat::Trace' => '0.32',
8118             'Math::BigInt' => '1.9991',
8119             'Math::BigInt::CalcEmu' => '1.998',
8120             'Math::BigInt::Trace' => '0.32',
8121             'Math::BigRat' => '0.2604',
8122             'Module::CoreList' => '2.84',
8123             'Module::CoreList::TieHashDelta'=> '2.84',
8124             'Module::Pluggable' => '4.7',
8125             'Net::Ping' => '2.41',
8126             'Perl::OSType' => '1.003',
8127             'Pod::Simple' => '3.26',
8128             'Pod::Simple::BlackBox' => '3.26',
8129             'Pod::Simple::Checker' => '3.26',
8130             'Pod::Simple::Debug' => '3.26',
8131             'Pod::Simple::DumpAsText'=> '3.26',
8132             'Pod::Simple::DumpAsXML'=> '3.26',
8133             'Pod::Simple::HTML' => '3.26',
8134             'Pod::Simple::HTMLBatch'=> '3.26',
8135             'Pod::Simple::LinkSection'=> '3.26',
8136             'Pod::Simple::Methody' => '3.26',
8137             'Pod::Simple::Progress' => '3.26',
8138             'Pod::Simple::PullParser'=> '3.26',
8139             'Pod::Simple::PullParserEndToken'=> '3.26',
8140             'Pod::Simple::PullParserStartToken'=> '3.26',
8141             'Pod::Simple::PullParserTextToken'=> '3.26',
8142             'Pod::Simple::PullParserToken'=> '3.26',
8143             'Pod::Simple::RTF' => '3.26',
8144             'Pod::Simple::Search' => '3.26',
8145             'Pod::Simple::SimpleTree'=> '3.26',
8146             'Pod::Simple::Text' => '3.26',
8147             'Pod::Simple::TextContent'=> '3.26',
8148             'Pod::Simple::TiedOutFH'=> '3.26',
8149             'Pod::Simple::Transcode'=> '3.26',
8150             'Pod::Simple::TranscodeDumb'=> '3.26',
8151             'Pod::Simple::TranscodeSmart'=> '3.26',
8152             'Pod::Simple::XHTML' => '3.26',
8153             'Pod::Simple::XMLOutStream'=> '3.26',
8154             'Safe' => '2.35',
8155             'Term::ReadLine' => '1.12',
8156             'Text::ParseWords' => '3.28',
8157             'Tie::File' => '0.99',
8158             'Unicode::UCD' => '0.51',
8159             'Win32' => '0.47',
8160             'bigint' => '0.33',
8161             'bignum' => '0.33',
8162             'bigrat' => '0.33',
8163             'constant' => '1.27',
8164             'perlfaq' => '5.0150042',
8165             'version' => '0.9902',
8166             },
8167             removed => {
8168             }
8169             },
8170             5.017011 => {
8171             delta_from => 5.017010,
8172             changed => {
8173             'App::Cpan' => '1.61',
8174             'B::Deparse' => '1.20',
8175             'Config' => '5.017009',
8176             'Exporter' => '5.68',
8177             'Exporter::Heavy' => '5.68',
8178             'ExtUtils::CBuilder' => '0.280210',
8179             'ExtUtils::Command::MM' => '6.66',
8180             'ExtUtils::Liblist' => '6.66',
8181             'ExtUtils::Liblist::Kid'=> '6.66',
8182             'ExtUtils::MM' => '6.66',
8183             'ExtUtils::MM_AIX' => '6.66',
8184             'ExtUtils::MM_Any' => '6.66',
8185             'ExtUtils::MM_BeOS' => '6.66',
8186             'ExtUtils::MM_Cygwin' => '6.66',
8187             'ExtUtils::MM_DOS' => '6.66',
8188             'ExtUtils::MM_Darwin' => '6.66',
8189             'ExtUtils::MM_MacOS' => '6.66',
8190             'ExtUtils::MM_NW5' => '6.66',
8191             'ExtUtils::MM_OS2' => '6.66',
8192             'ExtUtils::MM_QNX' => '6.66',
8193             'ExtUtils::MM_UWIN' => '6.66',
8194             'ExtUtils::MM_Unix' => '6.66',
8195             'ExtUtils::MM_VMS' => '6.66',
8196             'ExtUtils::MM_VOS' => '6.66',
8197             'ExtUtils::MM_Win32' => '6.66',
8198             'ExtUtils::MM_Win95' => '6.66',
8199             'ExtUtils::MY' => '6.66',
8200             'ExtUtils::MakeMaker' => '6.66',
8201             'ExtUtils::MakeMaker::Config'=> '6.66',
8202             'ExtUtils::Mkbootstrap' => '6.66',
8203             'ExtUtils::Mksymlists' => '6.66',
8204             'ExtUtils::testlib' => '6.66',
8205             'File::Glob' => '1.20',
8206             'IO' => '1.28',
8207             'Module::CoreList' => '2.87',
8208             'Module::CoreList::TieHashDelta'=> '2.87',
8209             'Storable' => '2.41',
8210             'bigint' => '0.34',
8211             'mro' => '1.11',
8212             'overload' => '1.22',
8213             'warnings' => '1.18',
8214             },
8215             removed => {
8216             }
8217             },
8218             5.018000 => {
8219             delta_from => 5.017011,
8220             changed => {
8221             'Carp' => '1.29',
8222             'Carp::Heavy' => '1.29',
8223             'Config' => '5.018000',
8224             'Hash::Util' => '0.16',
8225             'IO::Handle' => '1.34',
8226             'IO::Socket' => '1.36',
8227             'Module::CoreList' => '2.89',
8228             'Module::CoreList::TieHashDelta'=> '2.89',
8229             'Pod::Simple' => '3.28',
8230             'Pod::Simple::BlackBox' => '3.28',
8231             'Pod::Simple::Checker' => '3.28',
8232             'Pod::Simple::Debug' => '3.28',
8233             'Pod::Simple::DumpAsText'=> '3.28',
8234             'Pod::Simple::DumpAsXML'=> '3.28',
8235             'Pod::Simple::HTML' => '3.28',
8236             'Pod::Simple::HTMLBatch'=> '3.28',
8237             'Pod::Simple::LinkSection'=> '3.28',
8238             'Pod::Simple::Methody' => '3.28',
8239             'Pod::Simple::Progress' => '3.28',
8240             'Pod::Simple::PullParser'=> '3.28',
8241             'Pod::Simple::PullParserEndToken'=> '3.28',
8242             'Pod::Simple::PullParserStartToken'=> '3.28',
8243             'Pod::Simple::PullParserTextToken'=> '3.28',
8244             'Pod::Simple::PullParserToken'=> '3.28',
8245             'Pod::Simple::RTF' => '3.28',
8246             'Pod::Simple::Search' => '3.28',
8247             'Pod::Simple::SimpleTree'=> '3.28',
8248             'Pod::Simple::Text' => '3.28',
8249             'Pod::Simple::TextContent'=> '3.28',
8250             'Pod::Simple::TiedOutFH'=> '3.28',
8251             'Pod::Simple::Transcode'=> '3.28',
8252             'Pod::Simple::TranscodeDumb'=> '3.28',
8253             'Pod::Simple::TranscodeSmart'=> '3.28',
8254             'Pod::Simple::XHTML' => '3.28',
8255             'Pod::Simple::XMLOutStream'=> '3.28',
8256             },
8257             removed => {
8258             }
8259             },
8260             5.018001 => {
8261             delta_from => 5.018000,
8262             changed => {
8263             'B' => '1.42_01',
8264             'Config' => '5.018001',
8265             'Digest::SHA' => '5.84_01',
8266             'Module::CoreList' => '2.96',
8267             'Module::CoreList::TieHashDelta'=> '2.96',
8268             'Module::CoreList::Utils'=> '2.96',
8269             },
8270             removed => {
8271             'VMS::Filespec' => 1,
8272             }
8273             },
8274             5.018002 => {
8275             delta_from => 5.018001,
8276             changed => {
8277             'B' => '1.42_02',
8278             'B::Concise' => '0.95_01',
8279             'Config' => '5.018002',
8280             'File::Glob' => '1.20_01',
8281             'Module::CoreList' => '3.03',
8282             'Module::CoreList::TieHashDelta'=> '3.03',
8283             'Module::CoreList::Utils'=> '3.03',
8284             },
8285             },
8286             5.018003 => {
8287             delta_from => 5.018002,
8288             changed => {
8289             'Config' => '5.018003',
8290             'Digest::SHA' => '5.84_02',
8291             'Module::CoreList' => '3.12',
8292             'Module::CoreList::TieHashDelta'=> '3.12',
8293             'Module::CoreList::Utils'=> '3.12',
8294             },
8295             },
8296             5.018004 => {
8297             delta_from => 5.018003,
8298             changed => {
8299             'Config' => '5.018004',
8300             'Module::CoreList' => '3.13',
8301             'Module::CoreList::TieHashDelta'=> '3.13',
8302             'Module::CoreList::Utils'=> '3.13',
8303             },
8304             },
8305             5.019000 => {
8306             delta_from => 5.018000,
8307             changed => {
8308             'Config' => '5.019000',
8309             'Getopt::Std' => '1.08',
8310             'Module::CoreList' => '2.91',
8311             'Module::CoreList::TieHashDelta'=> '2.91',
8312             'Storable' => '2.42',
8313             'feature' => '1.33',
8314             'utf8' => '1.11',
8315             },
8316             removed => {
8317             'Archive::Extract' => 1,
8318             'B::Lint' => 1,
8319             'B::Lint::Debug' => 1,
8320             'CPANPLUS' => 1,
8321             'CPANPLUS::Backend' => 1,
8322             'CPANPLUS::Backend::RV' => 1,
8323             'CPANPLUS::Config' => 1,
8324             'CPANPLUS::Config::HomeEnv'=> 1,
8325             'CPANPLUS::Configure' => 1,
8326             'CPANPLUS::Configure::Setup'=> 1,
8327             'CPANPLUS::Dist' => 1,
8328             'CPANPLUS::Dist::Autobundle'=> 1,
8329             'CPANPLUS::Dist::Base' => 1,
8330             'CPANPLUS::Dist::Build' => 1,
8331             'CPANPLUS::Dist::Build::Constants'=> 1,
8332             'CPANPLUS::Dist::MM' => 1,
8333             'CPANPLUS::Dist::Sample'=> 1,
8334             'CPANPLUS::Error' => 1,
8335             'CPANPLUS::Internals' => 1,
8336             'CPANPLUS::Internals::Constants'=> 1,
8337             'CPANPLUS::Internals::Constants::Report'=> 1,
8338             'CPANPLUS::Internals::Extract'=> 1,
8339             'CPANPLUS::Internals::Fetch'=> 1,
8340             'CPANPLUS::Internals::Report'=> 1,
8341             'CPANPLUS::Internals::Search'=> 1,
8342             'CPANPLUS::Internals::Source'=> 1,
8343             'CPANPLUS::Internals::Source::Memory'=> 1,
8344             'CPANPLUS::Internals::Source::SQLite'=> 1,
8345             'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8346             'CPANPLUS::Internals::Utils'=> 1,
8347             'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8348             'CPANPLUS::Module' => 1,
8349             'CPANPLUS::Module::Author'=> 1,
8350             'CPANPLUS::Module::Author::Fake'=> 1,
8351             'CPANPLUS::Module::Checksums'=> 1,
8352             'CPANPLUS::Module::Fake'=> 1,
8353             'CPANPLUS::Module::Signature'=> 1,
8354             'CPANPLUS::Selfupdate' => 1,
8355             'CPANPLUS::Shell' => 1,
8356             'CPANPLUS::Shell::Classic'=> 1,
8357             'CPANPLUS::Shell::Default'=> 1,
8358             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8359             'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8360             'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8361             'Devel::InnerPackage' => 1,
8362             'File::CheckTree' => 1,
8363             'Log::Message' => 1,
8364             'Log::Message::Config' => 1,
8365             'Log::Message::Handlers'=> 1,
8366             'Log::Message::Item' => 1,
8367             'Log::Message::Simple' => 1,
8368             'Module::Pluggable' => 1,
8369             'Module::Pluggable::Object'=> 1,
8370             'Object::Accessor' => 1,
8371             'Pod::LaTeX' => 1,
8372             'Term::UI' => 1,
8373             'Term::UI::History' => 1,
8374             'Text::Soundex' => 1,
8375             }
8376             },
8377             5.019001 => {
8378             delta_from => 5.019000,
8379             changed => {
8380             'App::Prove' => '3.28',
8381             'App::Prove::State' => '3.28',
8382             'App::Prove::State::Result'=> '3.28',
8383             'App::Prove::State::Result::Test'=> '3.28',
8384             'Archive::Tar' => '1.92',
8385             'Archive::Tar::Constant'=> '1.92',
8386             'Archive::Tar::File' => '1.92',
8387             'Attribute::Handlers' => '0.95',
8388             'B' => '1.43',
8389             'B::Concise' => '0.96',
8390             'B::Deparse' => '1.21',
8391             'B::Showlex' => '1.04',
8392             'Benchmark' => '1.16',
8393             'CPAN::Meta' => '2.131560',
8394             'CPAN::Meta::Converter' => '2.131560',
8395             'CPAN::Meta::Feature' => '2.131560',
8396             'CPAN::Meta::History' => '2.131560',
8397             'CPAN::Meta::Prereqs' => '2.131560',
8398             'CPAN::Meta::Spec' => '2.131560',
8399             'CPAN::Meta::Validator' => '2.131560',
8400             'Carp' => '1.30',
8401             'Carp::Heavy' => '1.30',
8402             'Compress::Raw::Bzip2' => '2.061',
8403             'Compress::Raw::Zlib' => '2.061',
8404             'Compress::Zlib' => '2.061',
8405             'Config' => '5.019001',
8406             'Config::Perl::V' => '0.18',
8407             'Cwd' => '3.41',
8408             'DB' => '1.06',
8409             'DB_File' => '1.828',
8410             'Data::Dumper' => '2.146',
8411             'Encode' => '2.51',
8412             'Encode::CN::HZ' => '2.06',
8413             'Encode::GSM0338' => '2.03',
8414             'Encode::Unicode::UTF7' => '2.07',
8415             'ExtUtils::CBuilder::Base'=> '0.280210',
8416             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8417             'ExtUtils::Command::MM' => '6.68',
8418             'ExtUtils::Install' => '1.60',
8419             'ExtUtils::Liblist' => '6.68',
8420             'ExtUtils::Liblist::Kid'=> '6.68',
8421             'ExtUtils::MM' => '6.68',
8422             'ExtUtils::MM_AIX' => '6.68',
8423             'ExtUtils::MM_Any' => '6.68',
8424             'ExtUtils::MM_BeOS' => '6.68',
8425             'ExtUtils::MM_Cygwin' => '6.68',
8426             'ExtUtils::MM_DOS' => '6.68',
8427             'ExtUtils::MM_Darwin' => '6.68',
8428             'ExtUtils::MM_MacOS' => '6.68',
8429             'ExtUtils::MM_NW5' => '6.68',
8430             'ExtUtils::MM_OS2' => '6.68',
8431             'ExtUtils::MM_QNX' => '6.68',
8432             'ExtUtils::MM_UWIN' => '6.68',
8433             'ExtUtils::MM_Unix' => '6.68',
8434             'ExtUtils::MM_VMS' => '6.68',
8435             'ExtUtils::MM_VOS' => '6.68',
8436             'ExtUtils::MM_Win32' => '6.68',
8437             'ExtUtils::MM_Win95' => '6.68',
8438             'ExtUtils::MY' => '6.68',
8439             'ExtUtils::MakeMaker' => '6.68',
8440             'ExtUtils::MakeMaker::Config'=> '6.68',
8441             'ExtUtils::Mkbootstrap' => '6.68',
8442             'ExtUtils::Mksymlists' => '6.68',
8443             'ExtUtils::ParseXS' => '3.19',
8444             'ExtUtils::testlib' => '6.68',
8445             'Fatal' => '2.19',
8446             'File::Copy' => '2.27',
8447             'File::DosGlob' => '1.11',
8448             'File::Fetch' => '0.42',
8449             'File::Find' => '1.24',
8450             'File::Spec' => '3.41',
8451             'File::Spec::Cygwin' => '3.41',
8452             'File::Spec::Epoc' => '3.41',
8453             'File::Spec::Mac' => '3.41',
8454             'File::Spec::OS2' => '3.41',
8455             'File::Spec::Unix' => '3.41',
8456             'File::Spec::VMS' => '3.41',
8457             'File::Spec::Win32' => '3.41',
8458             'File::Temp' => '0.2301',
8459             'Filter::Simple' => '0.90',
8460             'Filter::Util::Call' => '1.49',
8461             'Getopt::Long' => '2.4',
8462             'HTTP::Tiny' => '0.031',
8463             'Hash::Util::FieldHash' => '1.11',
8464             'IO::Compress::Adapter::Bzip2'=> '2.061',
8465             'IO::Compress::Adapter::Deflate'=> '2.061',
8466             'IO::Compress::Adapter::Identity'=> '2.061',
8467             'IO::Compress::Base' => '2.061',
8468             'IO::Compress::Base::Common'=> '2.061',
8469             'IO::Compress::Bzip2' => '2.061',
8470             'IO::Compress::Deflate' => '2.061',
8471             'IO::Compress::Gzip' => '2.061',
8472             'IO::Compress::Gzip::Constants'=> '2.061',
8473             'IO::Compress::RawDeflate'=> '2.061',
8474             'IO::Compress::Zip' => '2.061',
8475             'IO::Compress::Zip::Constants'=> '2.061',
8476             'IO::Compress::Zlib::Constants'=> '2.061',
8477             'IO::Compress::Zlib::Extra'=> '2.061',
8478             'IO::Handle' => '1.35',
8479             'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8480             'IO::Uncompress::Adapter::Identity'=> '2.061',
8481             'IO::Uncompress::Adapter::Inflate'=> '2.061',
8482             'IO::Uncompress::AnyInflate'=> '2.061',
8483             'IO::Uncompress::AnyUncompress'=> '2.061',
8484             'IO::Uncompress::Base' => '2.061',
8485             'IO::Uncompress::Bunzip2'=> '2.061',
8486             'IO::Uncompress::Gunzip'=> '2.061',
8487             'IO::Uncompress::Inflate'=> '2.061',
8488             'IO::Uncompress::RawInflate'=> '2.061',
8489             'IO::Uncompress::Unzip' => '2.061',
8490             'IPC::Open3' => '1.14',
8491             'Locale::Codes' => '3.26',
8492             'Locale::Codes::Constants'=> '3.26',
8493             'Locale::Codes::Country'=> '3.26',
8494             'Locale::Codes::Country_Codes'=> '3.26',
8495             'Locale::Codes::Country_Retired'=> '3.26',
8496             'Locale::Codes::Currency'=> '3.26',
8497             'Locale::Codes::Currency_Codes'=> '3.26',
8498             'Locale::Codes::Currency_Retired'=> '3.26',
8499             'Locale::Codes::LangExt'=> '3.26',
8500             'Locale::Codes::LangExt_Codes'=> '3.26',
8501             'Locale::Codes::LangExt_Retired'=> '3.26',
8502             'Locale::Codes::LangFam'=> '3.26',
8503             'Locale::Codes::LangFam_Codes'=> '3.26',
8504             'Locale::Codes::LangFam_Retired'=> '3.26',
8505             'Locale::Codes::LangVar'=> '3.26',
8506             'Locale::Codes::LangVar_Codes'=> '3.26',
8507             'Locale::Codes::LangVar_Retired'=> '3.26',
8508             'Locale::Codes::Language'=> '3.26',
8509             'Locale::Codes::Language_Codes'=> '3.26',
8510             'Locale::Codes::Language_Retired'=> '3.26',
8511             'Locale::Codes::Script' => '3.26',
8512             'Locale::Codes::Script_Codes'=> '3.26',
8513             'Locale::Codes::Script_Retired'=> '3.26',
8514             'Locale::Country' => '3.26',
8515             'Locale::Currency' => '3.26',
8516             'Locale::Language' => '3.26',
8517             'Locale::Maketext' => '1.24',
8518             'Locale::Script' => '3.26',
8519             'Math::BigFloat' => '1.999',
8520             'Math::BigInt' => '1.9992',
8521             'Math::BigInt::Calc' => '1.998',
8522             'Math::BigInt::CalcEmu' => '1.9991',
8523             'Math::BigRat' => '0.2606',
8524             'Module::Build' => '0.4005',
8525             'Module::Build::Base' => '0.4005',
8526             'Module::Build::Compat' => '0.4005',
8527             'Module::Build::Config' => '0.4005',
8528             'Module::Build::Cookbook'=> '0.4005',
8529             'Module::Build::Dumper' => '0.4005',
8530             'Module::Build::ModuleInfo'=> '0.4005',
8531             'Module::Build::Notes' => '0.4005',
8532             'Module::Build::PPMMaker'=> '0.4005',
8533             'Module::Build::Platform::Amiga'=> '0.4005',
8534             'Module::Build::Platform::Default'=> '0.4005',
8535             'Module::Build::Platform::EBCDIC'=> '0.4005',
8536             'Module::Build::Platform::MPEiX'=> '0.4005',
8537             'Module::Build::Platform::MacOS'=> '0.4005',
8538             'Module::Build::Platform::RiscOS'=> '0.4005',
8539             'Module::Build::Platform::Unix'=> '0.4005',
8540             'Module::Build::Platform::VMS'=> '0.4005',
8541             'Module::Build::Platform::VOS'=> '0.4005',
8542             'Module::Build::Platform::Windows'=> '0.4005',
8543             'Module::Build::Platform::aix'=> '0.4005',
8544             'Module::Build::Platform::cygwin'=> '0.4005',
8545             'Module::Build::Platform::darwin'=> '0.4005',
8546             'Module::Build::Platform::os2'=> '0.4005',
8547             'Module::Build::PodParser'=> '0.4005',
8548             'Module::CoreList' => '2.92',
8549             'Module::CoreList::TieHashDelta'=> '2.92',
8550             'Module::CoreList::Utils'=> '2.92',
8551             'Module::Metadata' => '1.000014',
8552             'Net::Ping' => '2.42',
8553             'OS2::Process' => '1.09',
8554             'POSIX' => '1.33',
8555             'Pod::Find' => '1.61',
8556             'Pod::Html' => '1.19',
8557             'Pod::InputObjects' => '1.61',
8558             'Pod::ParseUtils' => '1.61',
8559             'Pod::Parser' => '1.61',
8560             'Pod::Perldoc' => '3.20',
8561             'Pod::Perldoc::BaseTo' => '3.20',
8562             'Pod::Perldoc::GetOptsOO'=> '3.20',
8563             'Pod::Perldoc::ToANSI' => '3.20',
8564             'Pod::Perldoc::ToChecker'=> '3.20',
8565             'Pod::Perldoc::ToMan' => '3.20',
8566             'Pod::Perldoc::ToNroff' => '3.20',
8567             'Pod::Perldoc::ToPod' => '3.20',
8568             'Pod::Perldoc::ToRtf' => '3.20',
8569             'Pod::Perldoc::ToTerm' => '3.20',
8570             'Pod::Perldoc::ToText' => '3.20',
8571             'Pod::Perldoc::ToTk' => '3.20',
8572             'Pod::Perldoc::ToXml' => '3.20',
8573             'Pod::Select' => '1.61',
8574             'Pod::Usage' => '1.63',
8575             'Safe' => '2.36',
8576             'Storable' => '2.43',
8577             'Sys::Hostname' => '1.18',
8578             'Sys::Syslog' => '0.33',
8579             'TAP::Base' => '3.28',
8580             'TAP::Formatter::Base' => '3.28',
8581             'TAP::Formatter::Color' => '3.28',
8582             'TAP::Formatter::Console'=> '3.28',
8583             'TAP::Formatter::Console::ParallelSession'=> '3.28',
8584             'TAP::Formatter::Console::Session'=> '3.28',
8585             'TAP::Formatter::File' => '3.28',
8586             'TAP::Formatter::File::Session'=> '3.28',
8587             'TAP::Formatter::Session'=> '3.28',
8588             'TAP::Harness' => '3.28',
8589             'TAP::Object' => '3.28',
8590             'TAP::Parser' => '3.28',
8591             'TAP::Parser::Aggregator'=> '3.28',
8592             'TAP::Parser::Grammar' => '3.28',
8593             'TAP::Parser::Iterator' => '3.28',
8594             'TAP::Parser::Iterator::Array'=> '3.28',
8595             'TAP::Parser::Iterator::Process'=> '3.28',
8596             'TAP::Parser::Iterator::Stream'=> '3.28',
8597             'TAP::Parser::IteratorFactory'=> '3.28',
8598             'TAP::Parser::Multiplexer'=> '3.28',
8599             'TAP::Parser::Result' => '3.28',
8600             'TAP::Parser::Result::Bailout'=> '3.28',
8601             'TAP::Parser::Result::Comment'=> '3.28',
8602             'TAP::Parser::Result::Plan'=> '3.28',
8603             'TAP::Parser::Result::Pragma'=> '3.28',
8604             'TAP::Parser::Result::Test'=> '3.28',
8605             'TAP::Parser::Result::Unknown'=> '3.28',
8606             'TAP::Parser::Result::Version'=> '3.28',
8607             'TAP::Parser::Result::YAML'=> '3.28',
8608             'TAP::Parser::ResultFactory'=> '3.28',
8609             'TAP::Parser::Scheduler'=> '3.28',
8610             'TAP::Parser::Scheduler::Job'=> '3.28',
8611             'TAP::Parser::Scheduler::Spinner'=> '3.28',
8612             'TAP::Parser::Source' => '3.28',
8613             'TAP::Parser::SourceHandler'=> '3.28',
8614             'TAP::Parser::SourceHandler::Executable'=> '3.28',
8615             'TAP::Parser::SourceHandler::File'=> '3.28',
8616             'TAP::Parser::SourceHandler::Handle'=> '3.28',
8617             'TAP::Parser::SourceHandler::Perl'=> '3.28',
8618             'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8619             'TAP::Parser::Utils' => '3.28',
8620             'TAP::Parser::YAMLish::Reader'=> '3.28',
8621             'TAP::Parser::YAMLish::Writer'=> '3.28',
8622             'Term::ReadLine' => '1.13',
8623             'Test::Harness' => '3.28',
8624             'Text::Tabs' => '2013.0523',
8625             'Text::Wrap' => '2013.0523',
8626             'Thread' => '3.04',
8627             'Tie::File' => '1.00',
8628             'Time::Piece' => '1.2002',
8629             'Unicode::Collate' => '0.98',
8630             'Unicode::UCD' => '0.53',
8631             'XS::APItest' => '0.53',
8632             '_charnames' => '1.37',
8633             'autodie' => '2.19',
8634             'autodie::exception' => '2.19',
8635             'autodie::exception::system'=> '2.19',
8636             'autodie::hints' => '2.19',
8637             'autodie::skip' => '2.19',
8638             'bigint' => '0.35',
8639             'charnames' => '1.38',
8640             'encoding' => '2.12',
8641             'inc::latest' => '0.4005',
8642             'mro' => '1.12',
8643             'perlfaq' => '5.0150043',
8644             're' => '0.25',
8645             'threads' => '1.87',
8646             'threads::shared' => '1.44',
8647             'utf8' => '1.12',
8648             },
8649             removed => {
8650             }
8651             },
8652             5.019002 => {
8653             delta_from => 5.019001,
8654             changed => {
8655             'B' => '1.44',
8656             'B::Concise' => '0.98',
8657             'B::Deparse' => '1.22',
8658             'Benchmark' => '1.17',
8659             'Class::Struct' => '0.65',
8660             'Config' => '5.019002',
8661             'DB' => '1.07',
8662             'DBM_Filter' => '0.06',
8663             'DBM_Filter::compress' => '0.03',
8664             'DBM_Filter::encode' => '0.03',
8665             'DBM_Filter::int32' => '0.03',
8666             'DBM_Filter::null' => '0.03',
8667             'DBM_Filter::utf8' => '0.03',
8668             'DB_File' => '1.829',
8669             'Data::Dumper' => '2.147',
8670             'Devel::Peek' => '1.12',
8671             'Digest::MD5' => '2.53',
8672             'Digest::SHA' => '5.85',
8673             'English' => '1.07',
8674             'Errno' => '1.19',
8675             'ExtUtils::Embed' => '1.31',
8676             'ExtUtils::Miniperl' => '1',
8677             'ExtUtils::ParseXS' => '3.21',
8678             'ExtUtils::ParseXS::Constants'=> '3.21',
8679             'ExtUtils::ParseXS::CountLines'=> '3.21',
8680             'ExtUtils::ParseXS::Eval'=> '3.19',
8681             'ExtUtils::ParseXS::Utilities'=> '3.21',
8682             'ExtUtils::Typemaps' => '3.21',
8683             'ExtUtils::Typemaps::Cmd'=> '3.21',
8684             'ExtUtils::Typemaps::InputMap'=> '3.21',
8685             'ExtUtils::Typemaps::OutputMap'=> '3.21',
8686             'ExtUtils::Typemaps::Type'=> '3.21',
8687             'ExtUtils::XSSymSet' => '1.3',
8688             'Fatal' => '2.20',
8689             'File::Basename' => '2.85',
8690             'File::Spec::VMS' => '3.43',
8691             'File::Spec::Win32' => '3.42',
8692             'Getopt::Long' => '2.41',
8693             'Getopt::Std' => '1.09',
8694             'HTTP::Tiny' => '0.034',
8695             'Hash::Util::FieldHash' => '1.12',
8696             'I18N::Langinfo' => '0.11',
8697             'IO::Socket::INET' => '1.34',
8698             'IO::Socket::UNIX' => '1.25',
8699             'IPC::Cmd' => '0.82',
8700             'MIME::Base64' => '3.14',
8701             'Module::CoreList' => '2.94',
8702             'Module::CoreList::TieHashDelta'=> '2.94',
8703             'Module::CoreList::Utils'=> '2.94',
8704             'POSIX' => '1.34',
8705             'Params::Check' => '0.38',
8706             'Parse::CPAN::Meta' => '1.4405',
8707             'Pod::Functions' => '1.07',
8708             'Pod::Html' => '1.2',
8709             'Safe' => '2.37',
8710             'Socket' => '2.010',
8711             'Storable' => '2.45',
8712             'Text::ParseWords' => '3.29',
8713             'Tie::Array' => '1.06',
8714             'Tie::Hash' => '1.05',
8715             'Tie::Scalar' => '1.03',
8716             'Time::Piece' => '1.21',
8717             'Time::Seconds' => '1.21',
8718             'XS::APItest' => '0.54',
8719             'autodie' => '2.20',
8720             'autodie::exception' => '2.20',
8721             'autodie::exception::system'=> '2.20',
8722             'autodie::hints' => '2.20',
8723             'autodie::skip' => '2.20',
8724             'base' => '2.19',
8725             'deprecate' => '0.03',
8726             'if' => '0.0603',
8727             'integer' => '1.01',
8728             'strict' => '1.08',
8729             'subs' => '1.02',
8730             'vmsish' => '1.04',
8731             },
8732             removed => {
8733             }
8734             },
8735             5.019003 => {
8736             delta_from => 5.019002,
8737             changed => {
8738             'B' => '1.45',
8739             'CPAN::Meta' => '2.132140',
8740             'CPAN::Meta::Converter' => '2.132140',
8741             'CPAN::Meta::Feature' => '2.132140',
8742             'CPAN::Meta::History' => '2.132140',
8743             'CPAN::Meta::Prereqs' => '2.132140',
8744             'CPAN::Meta::Spec' => '2.132140',
8745             'CPAN::Meta::Validator' => '2.132140',
8746             'Carp' => '1.31',
8747             'Carp::Heavy' => '1.31',
8748             'Compress::Raw::Bzip2' => '2.062',
8749             'Compress::Raw::Zlib' => '2.062',
8750             'Compress::Zlib' => '2.062',
8751             'Config' => '5.019003',
8752             'Config::Perl::V' => '0.19',
8753             'Cwd' => '3.44',
8754             'Data::Dumper' => '2.148',
8755             'Devel::PPPort' => '3.21',
8756             'Devel::Peek' => '1.13',
8757             'DynaLoader' => '1.19',
8758             'Encode' => '2.52',
8759             'Encode::Alias' => '2.17',
8760             'Encode::Encoding' => '2.06',
8761             'Encode::GSM0338' => '2.04',
8762             'Encode::MIME::Header' => '2.14',
8763             'Encode::Unicode' => '2.08',
8764             'English' => '1.08',
8765             'Exporter' => '5.69',
8766             'Exporter::Heavy' => '5.69',
8767             'ExtUtils::Command::MM' => '6.72',
8768             'ExtUtils::Liblist' => '6.72',
8769             'ExtUtils::Liblist::Kid'=> '6.72',
8770             'ExtUtils::MM' => '6.72',
8771             'ExtUtils::MM_AIX' => '6.72',
8772             'ExtUtils::MM_Any' => '6.72',
8773             'ExtUtils::MM_BeOS' => '6.72',
8774             'ExtUtils::MM_Cygwin' => '6.72',
8775             'ExtUtils::MM_DOS' => '6.72',
8776             'ExtUtils::MM_Darwin' => '6.72',
8777             'ExtUtils::MM_MacOS' => '6.72',
8778             'ExtUtils::MM_NW5' => '6.72',
8779             'ExtUtils::MM_OS2' => '6.72',
8780             'ExtUtils::MM_QNX' => '6.72',
8781             'ExtUtils::MM_UWIN' => '6.72',
8782             'ExtUtils::MM_Unix' => '6.72',
8783             'ExtUtils::MM_VMS' => '6.72',
8784             'ExtUtils::MM_VOS' => '6.72',
8785             'ExtUtils::MM_Win32' => '6.72',
8786             'ExtUtils::MM_Win95' => '6.72',
8787             'ExtUtils::MY' => '6.72',
8788             'ExtUtils::MakeMaker' => '6.72',
8789             'ExtUtils::MakeMaker::Config'=> '6.72',
8790             'ExtUtils::Mkbootstrap' => '6.72',
8791             'ExtUtils::Mksymlists' => '6.72',
8792             'ExtUtils::ParseXS::Eval'=> '3.21',
8793             'ExtUtils::testlib' => '6.72',
8794             'File::Spec' => '3.44',
8795             'File::Spec::Cygwin' => '3.44',
8796             'File::Spec::Epoc' => '3.44',
8797             'File::Spec::Functions' => '3.44',
8798             'File::Spec::Mac' => '3.44',
8799             'File::Spec::OS2' => '3.44',
8800             'File::Spec::Unix' => '3.44',
8801             'File::Spec::VMS' => '3.44',
8802             'File::Spec::Win32' => '3.44',
8803             'Getopt::Std' => '1.10',
8804             'IO::Compress::Adapter::Bzip2'=> '2.062',
8805             'IO::Compress::Adapter::Deflate'=> '2.062',
8806             'IO::Compress::Adapter::Identity'=> '2.062',
8807             'IO::Compress::Base' => '2.062',
8808             'IO::Compress::Base::Common'=> '2.062',
8809             'IO::Compress::Bzip2' => '2.062',
8810             'IO::Compress::Deflate' => '2.062',
8811             'IO::Compress::Gzip' => '2.062',
8812             'IO::Compress::Gzip::Constants'=> '2.062',
8813             'IO::Compress::RawDeflate'=> '2.062',
8814             'IO::Compress::Zip' => '2.062',
8815             'IO::Compress::Zip::Constants'=> '2.062',
8816             'IO::Compress::Zlib::Constants'=> '2.062',
8817             'IO::Compress::Zlib::Extra'=> '2.062',
8818             'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8819             'IO::Uncompress::Adapter::Identity'=> '2.062',
8820             'IO::Uncompress::Adapter::Inflate'=> '2.062',
8821             'IO::Uncompress::AnyInflate'=> '2.062',
8822             'IO::Uncompress::AnyUncompress'=> '2.062',
8823             'IO::Uncompress::Base' => '2.062',
8824             'IO::Uncompress::Bunzip2'=> '2.062',
8825             'IO::Uncompress::Gunzip'=> '2.062',
8826             'IO::Uncompress::Inflate'=> '2.062',
8827             'IO::Uncompress::RawInflate'=> '2.062',
8828             'IO::Uncompress::Unzip' => '2.062',
8829             'IPC::Cmd' => '0.84',
8830             'IPC::Msg' => '2.04',
8831             'IPC::Open3' => '1.15',
8832             'IPC::Semaphore' => '2.04',
8833             'IPC::SharedMem' => '2.04',
8834             'IPC::SysV' => '2.04',
8835             'List::Util' => '1.31',
8836             'List::Util::XS' => '1.31',
8837             'Math::BigFloat::Trace' => '0.36',
8838             'Math::BigInt::Trace' => '0.36',
8839             'Module::Build' => '0.4007',
8840             'Module::Build::Base' => '0.4007',
8841             'Module::Build::Compat' => '0.4007',
8842             'Module::Build::Config' => '0.4007',
8843             'Module::Build::Cookbook'=> '0.4007',
8844             'Module::Build::Dumper' => '0.4007',
8845             'Module::Build::ModuleInfo'=> '0.4007',
8846             'Module::Build::Notes' => '0.4007',
8847             'Module::Build::PPMMaker'=> '0.4007',
8848             'Module::Build::Platform::Default'=> '0.4007',
8849             'Module::Build::Platform::MacOS'=> '0.4007',
8850             'Module::Build::Platform::Unix'=> '0.4007',
8851             'Module::Build::Platform::VMS'=> '0.4007',
8852             'Module::Build::Platform::VOS'=> '0.4007',
8853             'Module::Build::Platform::Windows'=> '0.4007',
8854             'Module::Build::Platform::aix'=> '0.4007',
8855             'Module::Build::Platform::cygwin'=> '0.4007',
8856             'Module::Build::Platform::darwin'=> '0.4007',
8857             'Module::Build::Platform::os2'=> '0.4007',
8858             'Module::Build::PodParser'=> '0.4007',
8859             'Module::CoreList' => '2.97',
8860             'Module::CoreList::TieHashDelta'=> '2.97',
8861             'Module::CoreList::Utils'=> '2.97',
8862             'Net::Cmd' => '2.30',
8863             'Net::Config' => '1.12',
8864             'Net::Domain' => '2.22',
8865             'Net::FTP' => '2.78',
8866             'Net::FTP::dataconn' => '0.12',
8867             'Net::NNTP' => '2.25',
8868             'Net::Netrc' => '2.14',
8869             'Net::POP3' => '2.30',
8870             'Net::SMTP' => '2.32',
8871             'PerlIO' => '1.08',
8872             'Pod::Functions' => '1.08',
8873             'Scalar::Util' => '1.31',
8874             'Socket' => '2.011',
8875             'Storable' => '2.46',
8876             'Time::HiRes' => '1.9726',
8877             'Time::Piece' => '1.22',
8878             'Time::Seconds' => '1.22',
8879             'XS::APItest' => '0.55',
8880             'bigint' => '0.36',
8881             'bignum' => '0.36',
8882             'bigrat' => '0.36',
8883             'constant' => '1.28',
8884             'diagnostics' => '1.32',
8885             'inc::latest' => '0.4007',
8886             'mro' => '1.13',
8887             'parent' => '0.226',
8888             'utf8' => '1.13',
8889             'version' => '0.9903',
8890             },
8891             removed => {
8892             'Module::Build::Platform::Amiga'=> 1,
8893             'Module::Build::Platform::EBCDIC'=> 1,
8894             'Module::Build::Platform::MPEiX'=> 1,
8895             'Module::Build::Platform::RiscOS'=> 1,
8896             }
8897             },
8898             5.019004 => {
8899             delta_from => 5.019003,
8900             changed => {
8901             'B' => '1.46',
8902             'B::Concise' => '0.99',
8903             'B::Deparse' => '1.23',
8904             'CPAN' => '2.03',
8905             'CPAN::Meta' => '2.132620',
8906             'CPAN::Meta::Converter' => '2.132620',
8907             'CPAN::Meta::Feature' => '2.132620',
8908             'CPAN::Meta::History' => '2.132620',
8909             'CPAN::Meta::Prereqs' => '2.132620',
8910             'CPAN::Meta::Requirements'=> '2.123',
8911             'CPAN::Meta::Spec' => '2.132620',
8912             'CPAN::Meta::Validator' => '2.132620',
8913             'Carp' => '1.32',
8914             'Carp::Heavy' => '1.32',
8915             'Config' => '5.019004',
8916             'Data::Dumper' => '2.149',
8917             'Devel::Peek' => '1.14',
8918             'DynaLoader' => '1.20',
8919             'Encode' => '2.55',
8920             'Encode::Alias' => '2.18',
8921             'Encode::CN::HZ' => '2.07',
8922             'Encode::Encoder' => '2.03',
8923             'Encode::Encoding' => '2.07',
8924             'Encode::GSM0338' => '2.05',
8925             'Encode::Guess' => '2.06',
8926             'Encode::JP::JIS7' => '2.05',
8927             'Encode::KR::2022_KR' => '2.03',
8928             'Encode::MIME::Header' => '2.15',
8929             'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8930             'Encode::Unicode' => '2.09',
8931             'Encode::Unicode::UTF7' => '2.08',
8932             'Errno' => '1.20',
8933             'Exporter' => '5.70',
8934             'Exporter::Heavy' => '5.70',
8935             'ExtUtils::CBuilder' => '0.280212',
8936             'ExtUtils::CBuilder::Base'=> '0.280212',
8937             'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8938             'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8939             'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8940             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8941             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8942             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8943             'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8944             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8945             'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8946             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8947             'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8948             'ExtUtils::Command' => '1.18',
8949             'ExtUtils::Command::MM' => '6.76',
8950             'ExtUtils::Liblist' => '6.76',
8951             'ExtUtils::Liblist::Kid'=> '6.76',
8952             'ExtUtils::MM' => '6.76',
8953             'ExtUtils::MM_AIX' => '6.76',
8954             'ExtUtils::MM_Any' => '6.76',
8955             'ExtUtils::MM_BeOS' => '6.76',
8956             'ExtUtils::MM_Cygwin' => '6.76',
8957             'ExtUtils::MM_DOS' => '6.76',
8958             'ExtUtils::MM_Darwin' => '6.76',
8959             'ExtUtils::MM_MacOS' => '6.76',
8960             'ExtUtils::MM_NW5' => '6.76',
8961             'ExtUtils::MM_OS2' => '6.76',
8962             'ExtUtils::MM_QNX' => '6.76',
8963             'ExtUtils::MM_UWIN' => '6.76',
8964             'ExtUtils::MM_Unix' => '6.76',
8965             'ExtUtils::MM_VMS' => '6.76',
8966             'ExtUtils::MM_VOS' => '6.76',
8967             'ExtUtils::MM_Win32' => '6.76',
8968             'ExtUtils::MM_Win95' => '6.76',
8969             'ExtUtils::MY' => '6.76',
8970             'ExtUtils::MakeMaker' => '6.76',
8971             'ExtUtils::MakeMaker::Config'=> '6.76',
8972             'ExtUtils::Mkbootstrap' => '6.76',
8973             'ExtUtils::Mksymlists' => '6.76',
8974             'ExtUtils::ParseXS' => '3.23',
8975             'ExtUtils::ParseXS::Constants'=> '3.23',
8976             'ExtUtils::ParseXS::CountLines'=> '3.23',
8977             'ExtUtils::ParseXS::Eval'=> '3.23',
8978             'ExtUtils::ParseXS::Utilities'=> '3.23',
8979             'ExtUtils::Typemaps' => '3.23',
8980             'ExtUtils::Typemaps::Cmd'=> '3.23',
8981             'ExtUtils::Typemaps::InputMap'=> '3.23',
8982             'ExtUtils::Typemaps::OutputMap'=> '3.23',
8983             'ExtUtils::Typemaps::Type'=> '3.23',
8984             'ExtUtils::testlib' => '6.76',
8985             'Fatal' => '2.21',
8986             'File::Copy' => '2.28',
8987             'File::Find' => '1.25',
8988             'File::Glob' => '1.21',
8989             'FileCache' => '1.09',
8990             'HTTP::Tiny' => '0.035',
8991             'Hash::Util::FieldHash' => '1.13',
8992             'I18N::LangTags' => '0.40',
8993             'IO' => '1.29',
8994             'IO::Socket' => '1.37',
8995             'IPC::Open3' => '1.16',
8996             'JSON::PP' => '2.27202_01',
8997             'List::Util' => '1.32',
8998             'List::Util::XS' => '1.32',
8999             'Locale::Codes' => '3.27',
9000             'Locale::Codes::Constants'=> '3.27',
9001             'Locale::Codes::Country'=> '3.27',
9002             'Locale::Codes::Country_Codes'=> '3.27',
9003             'Locale::Codes::Country_Retired'=> '3.27',
9004             'Locale::Codes::Currency'=> '3.27',
9005             'Locale::Codes::Currency_Codes'=> '3.27',
9006             'Locale::Codes::Currency_Retired'=> '3.27',
9007             'Locale::Codes::LangExt'=> '3.27',
9008             'Locale::Codes::LangExt_Codes'=> '3.27',
9009             'Locale::Codes::LangExt_Retired'=> '3.27',
9010             'Locale::Codes::LangFam'=> '3.27',
9011             'Locale::Codes::LangFam_Codes'=> '3.27',
9012             'Locale::Codes::LangFam_Retired'=> '3.27',
9013             'Locale::Codes::LangVar'=> '3.27',
9014             'Locale::Codes::LangVar_Codes'=> '3.27',
9015             'Locale::Codes::LangVar_Retired'=> '3.27',
9016             'Locale::Codes::Language'=> '3.27',
9017             'Locale::Codes::Language_Codes'=> '3.27',
9018             'Locale::Codes::Language_Retired'=> '3.27',
9019             'Locale::Codes::Script' => '3.27',
9020             'Locale::Codes::Script_Codes'=> '3.27',
9021             'Locale::Codes::Script_Retired'=> '3.27',
9022             'Locale::Country' => '3.27',
9023             'Locale::Currency' => '3.27',
9024             'Locale::Language' => '3.27',
9025             'Locale::Script' => '3.27',
9026             'Math::BigFloat' => '1.9991',
9027             'Math::BigInt' => '1.9993',
9028             'Math::BigInt::FastCalc'=> '0.31',
9029             'Module::CoreList' => '2.99',
9030             'Module::CoreList::TieHashDelta'=> '2.99',
9031             'Module::CoreList::Utils'=> '2.99',
9032             'Module::Load::Conditional'=> '0.58',
9033             'Module::Metadata' => '1.000018',
9034             'Opcode' => '1.26',
9035             'POSIX' => '1.35',
9036             'Parse::CPAN::Meta' => '1.4407',
9037             'Perl::OSType' => '1.005',
9038             'Pod::Html' => '1.21',
9039             'Scalar::Util' => '1.32',
9040             'Socket' => '2.012',
9041             'Storable' => '2.47',
9042             'Term::ReadLine' => '1.14',
9043             'Test::Builder' => '0.98_06',
9044             'Test::Builder::Module' => '0.98_06',
9045             'Test::More' => '0.98_06',
9046             'Test::Simple' => '0.98_06',
9047             'Time::Piece' => '1.23',
9048             'Time::Seconds' => '1.23',
9049             'Unicode::Collate' => '0.99',
9050             'Unicode::UCD' => '0.54',
9051             'XS::APItest' => '0.56',
9052             'XS::Typemap' => '0.11',
9053             '_charnames' => '1.39',
9054             'autodie' => '2.21',
9055             'autodie::exception' => '2.21',
9056             'autodie::exception::system'=> '2.21',
9057             'autodie::hints' => '2.21',
9058             'autodie::skip' => '2.21',
9059             'charnames' => '1.39',
9060             'diagnostics' => '1.33',
9061             'mro' => '1.14',
9062             'parent' => '0.228',
9063             'perlfaq' => '5.0150044',
9064             're' => '0.26',
9065             'version' => '0.9904',
9066             'warnings' => '1.19',
9067             },
9068             removed => {
9069             }
9070             },
9071             5.019005 => {
9072             delta_from => 5.019004,
9073             changed => {
9074             'App::Prove' => '3.29',
9075             'App::Prove::State' => '3.29',
9076             'App::Prove::State::Result'=> '3.29',
9077             'App::Prove::State::Result::Test'=> '3.29',
9078             'CPAN::Meta' => '2.132830',
9079             'CPAN::Meta::Converter' => '2.132830',
9080             'CPAN::Meta::Feature' => '2.132830',
9081             'CPAN::Meta::History' => '2.132830',
9082             'CPAN::Meta::Prereqs' => '2.132830',
9083             'CPAN::Meta::Requirements'=> '2.125',
9084             'CPAN::Meta::Spec' => '2.132830',
9085             'CPAN::Meta::Validator' => '2.132830',
9086             'CPAN::Meta::YAML' => '0.010',
9087             'Config' => '5.019005',
9088             'Cwd' => '3.45',
9089             'ExtUtils::Command::MM' => '6.80',
9090             'ExtUtils::Install' => '1.61',
9091             'ExtUtils::Liblist' => '6.80',
9092             'ExtUtils::Liblist::Kid'=> '6.80',
9093             'ExtUtils::MM' => '6.80',
9094             'ExtUtils::MM_AIX' => '6.80',
9095             'ExtUtils::MM_Any' => '6.80',
9096             'ExtUtils::MM_BeOS' => '6.80',
9097             'ExtUtils::MM_Cygwin' => '6.80',
9098             'ExtUtils::MM_DOS' => '6.80',
9099             'ExtUtils::MM_Darwin' => '6.80',
9100             'ExtUtils::MM_MacOS' => '6.80',
9101             'ExtUtils::MM_NW5' => '6.80',
9102             'ExtUtils::MM_OS2' => '6.80',
9103             'ExtUtils::MM_QNX' => '6.80',
9104             'ExtUtils::MM_UWIN' => '6.80',
9105             'ExtUtils::MM_Unix' => '6.80',
9106             'ExtUtils::MM_VMS' => '6.80',
9107             'ExtUtils::MM_VOS' => '6.80',
9108             'ExtUtils::MM_Win32' => '6.80',
9109             'ExtUtils::MM_Win95' => '6.80',
9110             'ExtUtils::MY' => '6.80',
9111             'ExtUtils::MakeMaker' => '6.80',
9112             'ExtUtils::MakeMaker::Config'=> '6.80',
9113             'ExtUtils::Mkbootstrap' => '6.80',
9114             'ExtUtils::Mksymlists' => '6.80',
9115             'ExtUtils::testlib' => '6.80',
9116             'Fatal' => '2.22',
9117             'File::Fetch' => '0.44',
9118             'File::Glob' => '1.22',
9119             'File::Spec' => '3.45',
9120             'File::Spec::Cygwin' => '3.45',
9121             'File::Spec::Epoc' => '3.45',
9122             'File::Spec::Functions' => '3.45',
9123             'File::Spec::Mac' => '3.45',
9124             'File::Spec::OS2' => '3.45',
9125             'File::Spec::Unix' => '3.45',
9126             'File::Spec::VMS' => '3.45',
9127             'File::Spec::Win32' => '3.45',
9128             'File::Temp' => '0.2304',
9129             'Getopt::Long' => '2.42',
9130             'HTTP::Tiny' => '0.036',
9131             'IPC::Cmd' => '0.84_01',
9132             'JSON::PP' => '2.27203',
9133             'List::Util' => '1.35',
9134             'List::Util::XS' => '1.35',
9135             'Module::CoreList' => '3.00',
9136             'Module::CoreList::TieHashDelta'=> '3.00',
9137             'Module::CoreList::Utils'=> '3.00',
9138             'Module::Metadata' => '1.000019',
9139             'Parse::CPAN::Meta' => '1.4409',
9140             'Perl::OSType' => '1.006',
9141             'PerlIO::scalar' => '0.17',
9142             'Pod::Man' => '2.28',
9143             'Pod::Text' => '3.18',
9144             'Pod::Text::Termcap' => '2.08',
9145             'Scalar::Util' => '1.35',
9146             'TAP::Base' => '3.29',
9147             'TAP::Formatter::Base' => '3.29',
9148             'TAP::Formatter::Color' => '3.29',
9149             'TAP::Formatter::Console'=> '3.29',
9150             'TAP::Formatter::Console::ParallelSession'=> '3.29',
9151             'TAP::Formatter::Console::Session'=> '3.29',
9152             'TAP::Formatter::File' => '3.29',
9153             'TAP::Formatter::File::Session'=> '3.29',
9154             'TAP::Formatter::Session'=> '3.29',
9155             'TAP::Harness' => '3.29',
9156             'TAP::Harness::Env' => '3.29',
9157             'TAP::Object' => '3.29',
9158             'TAP::Parser' => '3.29',
9159             'TAP::Parser::Aggregator'=> '3.29',
9160             'TAP::Parser::Grammar' => '3.29',
9161             'TAP::Parser::Iterator' => '3.29',
9162             'TAP::Parser::Iterator::Array'=> '3.29',
9163             'TAP::Parser::Iterator::Process'=> '3.29',
9164             'TAP::Parser::Iterator::Stream'=> '3.29',
9165             'TAP::Parser::IteratorFactory'=> '3.29',
9166             'TAP::Parser::Multiplexer'=> '3.29',
9167             'TAP::Parser::Result' => '3.29',
9168             'TAP::Parser::Result::Bailout'=> '3.29',
9169             'TAP::Parser::Result::Comment'=> '3.29',
9170             'TAP::Parser::Result::Plan'=> '3.29',
9171             'TAP::Parser::Result::Pragma'=> '3.29',
9172             'TAP::Parser::Result::Test'=> '3.29',
9173             'TAP::Parser::Result::Unknown'=> '3.29',
9174             'TAP::Parser::Result::Version'=> '3.29',
9175             'TAP::Parser::Result::YAML'=> '3.29',
9176             'TAP::Parser::ResultFactory'=> '3.29',
9177             'TAP::Parser::Scheduler'=> '3.29',
9178             'TAP::Parser::Scheduler::Job'=> '3.29',
9179             'TAP::Parser::Scheduler::Spinner'=> '3.29',
9180             'TAP::Parser::Source' => '3.29',
9181             'TAP::Parser::SourceHandler'=> '3.29',
9182             'TAP::Parser::SourceHandler::Executable'=> '3.29',
9183             'TAP::Parser::SourceHandler::File'=> '3.29',
9184             'TAP::Parser::SourceHandler::Handle'=> '3.29',
9185             'TAP::Parser::SourceHandler::Perl'=> '3.29',
9186             'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
9187             'TAP::Parser::YAMLish::Reader'=> '3.29',
9188             'TAP::Parser::YAMLish::Writer'=> '3.29',
9189             'Test::Builder' => '0.99',
9190             'Test::Builder::Module' => '0.99',
9191             'Test::Builder::Tester' => '1.23_002',
9192             'Test::Builder::Tester::Color'=> '1.23_002',
9193             'Test::Harness' => '3.29',
9194             'Test::More' => '0.99',
9195             'Test::Simple' => '0.99',
9196             'Unicode' => '6.3.0',
9197             'Unicode::Normalize' => '1.17',
9198             'Unicode::UCD' => '0.55',
9199             'attributes' => '0.22',
9200             'autodie' => '2.22',
9201             'autodie::exception' => '2.22',
9202             'autodie::exception::system'=> '2.22',
9203             'autodie::hints' => '2.22',
9204             'autodie::skip' => '2.22',
9205             'feature' => '1.34',
9206             'threads' => '1.89',
9207             'warnings' => '1.20',
9208             },
9209             removed => {
9210             'TAP::Parser::Utils' => 1,
9211             }
9212             },
9213             5.019006 => {
9214             delta_from => 5.019005,
9215             changed => {
9216             'App::Prove' => '3.30',
9217             'App::Prove::State' => '3.30',
9218             'App::Prove::State::Result'=> '3.30',
9219             'App::Prove::State::Result::Test'=> '3.30',
9220             'Archive::Tar' => '1.96',
9221             'Archive::Tar::Constant'=> '1.96',
9222             'Archive::Tar::File' => '1.96',
9223             'AutoLoader' => '5.74',
9224             'B' => '1.47',
9225             'B::Concise' => '0.991',
9226             'B::Debug' => '1.19',
9227             'B::Deparse' => '1.24',
9228             'Benchmark' => '1.18',
9229             'Compress::Raw::Bzip2' => '2.063',
9230             'Compress::Raw::Zlib' => '2.063',
9231             'Compress::Zlib' => '2.063',
9232             'Config' => '5.019006',
9233             'DB_File' => '1.831',
9234             'Devel::Peek' => '1.15',
9235             'DynaLoader' => '1.21',
9236             'Errno' => '1.20_01',
9237             'ExtUtils::Command::MM' => '6.82',
9238             'ExtUtils::Liblist' => '6.82',
9239             'ExtUtils::Liblist::Kid'=> '6.82',
9240             'ExtUtils::MM' => '6.82',
9241             'ExtUtils::MM_AIX' => '6.82',
9242             'ExtUtils::MM_Any' => '6.82',
9243             'ExtUtils::MM_BeOS' => '6.82',
9244             'ExtUtils::MM_Cygwin' => '6.82',
9245             'ExtUtils::MM_DOS' => '6.82',
9246             'ExtUtils::MM_Darwin' => '6.82',
9247             'ExtUtils::MM_MacOS' => '6.82',
9248             'ExtUtils::MM_NW5' => '6.82',
9249             'ExtUtils::MM_OS2' => '6.82',
9250             'ExtUtils::MM_QNX' => '6.82',
9251             'ExtUtils::MM_UWIN' => '6.82',
9252             'ExtUtils::MM_Unix' => '6.82',
9253             'ExtUtils::MM_VMS' => '6.82',
9254             'ExtUtils::MM_VOS' => '6.82',
9255             'ExtUtils::MM_Win32' => '6.82',
9256             'ExtUtils::MM_Win95' => '6.82',
9257             'ExtUtils::MY' => '6.82',
9258             'ExtUtils::MakeMaker' => '6.82',
9259             'ExtUtils::MakeMaker::Config'=> '6.82',
9260             'ExtUtils::Mkbootstrap' => '6.82',
9261             'ExtUtils::Mksymlists' => '6.82',
9262             'ExtUtils::testlib' => '6.82',
9263             'File::DosGlob' => '1.12',
9264             'File::Find' => '1.26',
9265             'File::Glob' => '1.23',
9266             'HTTP::Tiny' => '0.038',
9267             'IO' => '1.30',
9268             'IO::Compress::Adapter::Bzip2'=> '2.063',
9269             'IO::Compress::Adapter::Deflate'=> '2.063',
9270             'IO::Compress::Adapter::Identity'=> '2.063',
9271             'IO::Compress::Base' => '2.063',
9272             'IO::Compress::Base::Common'=> '2.063',
9273             'IO::Compress::Bzip2' => '2.063',
9274             'IO::Compress::Deflate' => '2.063',
9275             'IO::Compress::Gzip' => '2.063',
9276             'IO::Compress::Gzip::Constants'=> '2.063',
9277             'IO::Compress::RawDeflate'=> '2.063',
9278             'IO::Compress::Zip' => '2.063',
9279             'IO::Compress::Zip::Constants'=> '2.063',
9280             'IO::Compress::Zlib::Constants'=> '2.063',
9281             'IO::Compress::Zlib::Extra'=> '2.063',
9282             'IO::Select' => '1.22',
9283             'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9284             'IO::Uncompress::Adapter::Identity'=> '2.063',
9285             'IO::Uncompress::Adapter::Inflate'=> '2.063',
9286             'IO::Uncompress::AnyInflate'=> '2.063',
9287             'IO::Uncompress::AnyUncompress'=> '2.063',
9288             'IO::Uncompress::Base' => '2.063',
9289             'IO::Uncompress::Bunzip2'=> '2.063',
9290             'IO::Uncompress::Gunzip'=> '2.063',
9291             'IO::Uncompress::Inflate'=> '2.063',
9292             'IO::Uncompress::RawInflate'=> '2.063',
9293             'IO::Uncompress::Unzip' => '2.063',
9294             'IPC::Cmd' => '0.90',
9295             'Locale::Maketext' => '1.25',
9296             'Module::Build' => '0.4202',
9297             'Module::Build::Base' => '0.4202',
9298             'Module::Build::Compat' => '0.4202',
9299             'Module::Build::Config' => '0.4202',
9300             'Module::Build::Cookbook'=> '0.4202',
9301             'Module::Build::Dumper' => '0.4202',
9302             'Module::Build::ModuleInfo'=> '0.4202',
9303             'Module::Build::Notes' => '0.4202',
9304             'Module::Build::PPMMaker'=> '0.4202',
9305             'Module::Build::Platform::Default'=> '0.4202',
9306             'Module::Build::Platform::MacOS'=> '0.4202',
9307             'Module::Build::Platform::Unix'=> '0.4202',
9308             'Module::Build::Platform::VMS'=> '0.4202',
9309             'Module::Build::Platform::VOS'=> '0.4202',
9310             'Module::Build::Platform::Windows'=> '0.4202',
9311             'Module::Build::Platform::aix'=> '0.4202',
9312             'Module::Build::Platform::cygwin'=> '0.4202',
9313             'Module::Build::Platform::darwin'=> '0.4202',
9314             'Module::Build::Platform::os2'=> '0.4202',
9315             'Module::Build::PodParser'=> '0.4202',
9316             'Module::CoreList' => '3.01',
9317             'Module::CoreList::TieHashDelta'=> '3.01',
9318             'Module::CoreList::Utils'=> '3.01',
9319             'Opcode' => '1.27',
9320             'POSIX' => '1.36',
9321             'Package::Constants' => '0.04',
9322             'PerlIO::scalar' => '0.18',
9323             'PerlIO::via' => '0.13',
9324             'SDBM_File' => '1.10',
9325             'Socket' => '2.013',
9326             'TAP::Base' => '3.30',
9327             'TAP::Formatter::Base' => '3.30',
9328             'TAP::Formatter::Color' => '3.30',
9329             'TAP::Formatter::Console'=> '3.30',
9330             'TAP::Formatter::Console::ParallelSession'=> '3.30',
9331             'TAP::Formatter::Console::Session'=> '3.30',
9332             'TAP::Formatter::File' => '3.30',
9333             'TAP::Formatter::File::Session'=> '3.30',
9334             'TAP::Formatter::Session'=> '3.30',
9335             'TAP::Harness' => '3.30',
9336             'TAP::Harness::Env' => '3.30',
9337             'TAP::Object' => '3.30',
9338             'TAP::Parser' => '3.30',
9339             'TAP::Parser::Aggregator'=> '3.30',
9340             'TAP::Parser::Grammar' => '3.30',
9341             'TAP::Parser::Iterator' => '3.30',
9342             'TAP::Parser::Iterator::Array'=> '3.30',
9343             'TAP::Parser::Iterator::Process'=> '3.30',
9344             'TAP::Parser::Iterator::Stream'=> '3.30',
9345             'TAP::Parser::IteratorFactory'=> '3.30',
9346             'TAP::Parser::Multiplexer'=> '3.30',
9347             'TAP::Parser::Result' => '3.30',
9348             'TAP::Parser::Result::Bailout'=> '3.30',
9349             'TAP::Parser::Result::Comment'=> '3.30',
9350             'TAP::Parser::Result::Plan'=> '3.30',
9351             'TAP::Parser::Result::Pragma'=> '3.30',
9352             'TAP::Parser::Result::Test'=> '3.30',
9353             'TAP::Parser::Result::Unknown'=> '3.30',
9354             'TAP::Parser::Result::Version'=> '3.30',
9355             'TAP::Parser::Result::YAML'=> '3.30',
9356             'TAP::Parser::ResultFactory'=> '3.30',
9357             'TAP::Parser::Scheduler'=> '3.30',
9358             'TAP::Parser::Scheduler::Job'=> '3.30',
9359             'TAP::Parser::Scheduler::Spinner'=> '3.30',
9360             'TAP::Parser::Source' => '3.30',
9361             'TAP::Parser::SourceHandler'=> '3.30',
9362             'TAP::Parser::SourceHandler::Executable'=> '3.30',
9363             'TAP::Parser::SourceHandler::File'=> '3.30',
9364             'TAP::Parser::SourceHandler::Handle'=> '3.30',
9365             'TAP::Parser::SourceHandler::Perl'=> '3.30',
9366             'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9367             'TAP::Parser::YAMLish::Reader'=> '3.30',
9368             'TAP::Parser::YAMLish::Writer'=> '3.30',
9369             'Term::Cap' => '1.15',
9370             'Test::Builder' => '1.001002',
9371             'Test::Builder::Module' => '1.001002',
9372             'Test::Harness' => '3.30',
9373             'Test::More' => '1.001002',
9374             'Test::Simple' => '1.001002',
9375             'Tie::StdHandle' => '4.4',
9376             'Unicode::Collate' => '1.02',
9377             'Unicode::Collate::CJK::Korean'=> '1.02',
9378             'Unicode::Collate::Locale'=> '1.02',
9379             'XS::APItest' => '0.57',
9380             'XS::Typemap' => '0.12',
9381             'arybase' => '0.07',
9382             'bignum' => '0.37',
9383             'constant' => '1.29',
9384             'fields' => '2.17',
9385             'inc::latest' => '0.4202',
9386             'threads' => '1.90',
9387             'threads::shared' => '1.45',
9388             },
9389             removed => {
9390             }
9391             },
9392             5.019007 => {
9393             delta_from => 5.019006,
9394             changed => {
9395             'CGI' => '3.64',
9396             'CGI::Apache' => '1.02',
9397             'CGI::Carp' => '3.64',
9398             'CGI::Cookie' => '1.31',
9399             'CGI::Fast' => '1.10',
9400             'CGI::Pretty' => '3.64',
9401             'CGI::Push' => '1.06',
9402             'CGI::Switch' => '1.02',
9403             'CGI::Util' => '3.64',
9404             'CPAN::Meta' => '2.133380',
9405             'CPAN::Meta::Converter' => '2.133380',
9406             'CPAN::Meta::Feature' => '2.133380',
9407             'CPAN::Meta::History' => '2.133380',
9408             'CPAN::Meta::Prereqs' => '2.133380',
9409             'CPAN::Meta::Spec' => '2.133380',
9410             'CPAN::Meta::Validator' => '2.133380',
9411             'Config' => '5.019007',
9412             'Data::Dumper' => '2.150',
9413             'DynaLoader' => '1.22',
9414             'ExtUtils::Command::MM' => '6.84',
9415             'ExtUtils::Liblist' => '6.84',
9416             'ExtUtils::Liblist::Kid'=> '6.84',
9417             'ExtUtils::MM' => '6.84',
9418             'ExtUtils::MM_AIX' => '6.84',
9419             'ExtUtils::MM_Any' => '6.84',
9420             'ExtUtils::MM_BeOS' => '6.84',
9421             'ExtUtils::MM_Cygwin' => '6.84',
9422             'ExtUtils::MM_DOS' => '6.84',
9423             'ExtUtils::MM_Darwin' => '6.84',
9424             'ExtUtils::MM_MacOS' => '6.84',
9425             'ExtUtils::MM_NW5' => '6.84',
9426             'ExtUtils::MM_OS2' => '6.84',
9427             'ExtUtils::MM_QNX' => '6.84',
9428             'ExtUtils::MM_UWIN' => '6.84',
9429             'ExtUtils::MM_Unix' => '6.84',
9430             'ExtUtils::MM_VMS' => '6.84',
9431             'ExtUtils::MM_VOS' => '6.84',
9432             'ExtUtils::MM_Win32' => '6.84',
9433             'ExtUtils::MM_Win95' => '6.84',
9434             'ExtUtils::MY' => '6.84',
9435             'ExtUtils::MakeMaker' => '6.84',
9436             'ExtUtils::MakeMaker::Config'=> '6.84',
9437             'ExtUtils::Mkbootstrap' => '6.84',
9438             'ExtUtils::Mksymlists' => '6.84',
9439             'ExtUtils::testlib' => '6.84',
9440             'File::Fetch' => '0.46',
9441             'HTTP::Tiny' => '0.039',
9442             'Locale::Codes' => '3.28',
9443             'Locale::Codes::Constants'=> '3.28',
9444             'Locale::Codes::Country'=> '3.28',
9445             'Locale::Codes::Country_Codes'=> '3.28',
9446             'Locale::Codes::Country_Retired'=> '3.28',
9447             'Locale::Codes::Currency'=> '3.28',
9448             'Locale::Codes::Currency_Codes'=> '3.28',
9449             'Locale::Codes::Currency_Retired'=> '3.28',
9450             'Locale::Codes::LangExt'=> '3.28',
9451             'Locale::Codes::LangExt_Codes'=> '3.28',
9452             'Locale::Codes::LangExt_Retired'=> '3.28',
9453             'Locale::Codes::LangFam'=> '3.28',
9454             'Locale::Codes::LangFam_Codes'=> '3.28',
9455             'Locale::Codes::LangFam_Retired'=> '3.28',
9456             'Locale::Codes::LangVar'=> '3.28',
9457             'Locale::Codes::LangVar_Codes'=> '3.28',
9458             'Locale::Codes::LangVar_Retired'=> '3.28',
9459             'Locale::Codes::Language'=> '3.28',
9460             'Locale::Codes::Language_Codes'=> '3.28',
9461             'Locale::Codes::Language_Retired'=> '3.28',
9462             'Locale::Codes::Script' => '3.28',
9463             'Locale::Codes::Script_Codes'=> '3.28',
9464             'Locale::Codes::Script_Retired'=> '3.28',
9465             'Locale::Country' => '3.28',
9466             'Locale::Currency' => '3.28',
9467             'Locale::Language' => '3.28',
9468             'Locale::Script' => '3.28',
9469             'Module::Build' => '0.4203',
9470             'Module::Build::Base' => '0.4203',
9471             'Module::Build::Compat' => '0.4203',
9472             'Module::Build::Config' => '0.4203',
9473             'Module::Build::Cookbook'=> '0.4203',
9474             'Module::Build::Dumper' => '0.4203',
9475             'Module::Build::ModuleInfo'=> '0.4203',
9476             'Module::Build::Notes' => '0.4203',
9477             'Module::Build::PPMMaker'=> '0.4203',
9478             'Module::Build::Platform::Default'=> '0.4203',
9479             'Module::Build::Platform::MacOS'=> '0.4203',
9480             'Module::Build::Platform::Unix'=> '0.4203',
9481             'Module::Build::Platform::VMS'=> '0.4203',
9482             'Module::Build::Platform::VOS'=> '0.4203',
9483             'Module::Build::Platform::Windows'=> '0.4203',
9484             'Module::Build::Platform::aix'=> '0.4203',
9485             'Module::Build::Platform::cygwin'=> '0.4203',
9486             'Module::Build::Platform::darwin'=> '0.4203',
9487             'Module::Build::Platform::os2'=> '0.4203',
9488             'Module::Build::PodParser'=> '0.4203',
9489             'Module::CoreList' => '3.02',
9490             'Module::CoreList::TieHashDelta'=> '3.02',
9491             'Module::CoreList::Utils'=> '3.02',
9492             'POSIX' => '1.37',
9493             'PerlIO::encoding' => '0.17',
9494             'PerlIO::via' => '0.14',
9495             'SDBM_File' => '1.11',
9496             'Storable' => '2.48',
9497             'Time::Piece' => '1.24',
9498             'Time::Seconds' => '1.24',
9499             'Unicode::Collate' => '1.04',
9500             'Win32' => '0.48',
9501             'XS::APItest' => '0.58',
9502             'base' => '2.20',
9503             'constant' => '1.30',
9504             'inc::latest' => '0.4203',
9505             'threads' => '1.91',
9506             },
9507             removed => {
9508             }
9509             },
9510             5.019008 => {
9511             delta_from => 5.019007,
9512             changed => {
9513             'Config' => '5.019008',
9514             'DynaLoader' => '1.24',
9515             'Encode' => '2.57',
9516             'Errno' => '1.20_02',
9517             'ExtUtils::CBuilder' => '0.280213',
9518             'ExtUtils::CBuilder::Base'=> '0.280213',
9519             'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9520             'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9521             'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9522             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9523             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9524             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9525             'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9526             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9527             'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9528             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9529             'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9530             'ExtUtils::Command::MM' => '6.86',
9531             'ExtUtils::Liblist' => '6.86',
9532             'ExtUtils::Liblist::Kid'=> '6.86',
9533             'ExtUtils::MM' => '6.86',
9534             'ExtUtils::MM_AIX' => '6.86',
9535             'ExtUtils::MM_Any' => '6.86',
9536             'ExtUtils::MM_BeOS' => '6.86',
9537             'ExtUtils::MM_Cygwin' => '6.86',
9538             'ExtUtils::MM_DOS' => '6.86',
9539             'ExtUtils::MM_Darwin' => '6.86',
9540             'ExtUtils::MM_MacOS' => '6.86',
9541             'ExtUtils::MM_NW5' => '6.86',
9542             'ExtUtils::MM_OS2' => '6.86',
9543             'ExtUtils::MM_QNX' => '6.86',
9544             'ExtUtils::MM_UWIN' => '6.86',
9545             'ExtUtils::MM_Unix' => '6.86',
9546             'ExtUtils::MM_VMS' => '6.86',
9547             'ExtUtils::MM_VOS' => '6.86',
9548             'ExtUtils::MM_Win32' => '6.86',
9549             'ExtUtils::MM_Win95' => '6.86',
9550             'ExtUtils::MY' => '6.86',
9551             'ExtUtils::MakeMaker' => '6.86',
9552             'ExtUtils::MakeMaker::Config'=> '6.86',
9553             'ExtUtils::Mkbootstrap' => '6.86',
9554             'ExtUtils::Mksymlists' => '6.86',
9555             'ExtUtils::testlib' => '6.86',
9556             'File::Copy' => '2.29',
9557             'Hash::Util::FieldHash' => '1.14',
9558             'IO::Socket::IP' => '0.26',
9559             'IO::Socket::UNIX' => '1.26',
9560             'List::Util' => '1.36',
9561             'List::Util::XS' => '1.36',
9562             'Module::Build' => '0.4204',
9563             'Module::Build::Base' => '0.4204',
9564             'Module::Build::Compat' => '0.4204',
9565             'Module::Build::Config' => '0.4204',
9566             'Module::Build::Cookbook'=> '0.4204',
9567             'Module::Build::Dumper' => '0.4204',
9568             'Module::Build::ModuleInfo'=> '0.4204',
9569             'Module::Build::Notes' => '0.4204',
9570             'Module::Build::PPMMaker'=> '0.4204',
9571             'Module::Build::Platform::Default'=> '0.4204',
9572             'Module::Build::Platform::MacOS'=> '0.4204',
9573             'Module::Build::Platform::Unix'=> '0.4204',
9574             'Module::Build::Platform::VMS'=> '0.4204',
9575             'Module::Build::Platform::VOS'=> '0.4204',
9576             'Module::Build::Platform::Windows'=> '0.4204',
9577             'Module::Build::Platform::aix'=> '0.4204',
9578             'Module::Build::Platform::cygwin'=> '0.4204',
9579             'Module::Build::Platform::darwin'=> '0.4204',
9580             'Module::Build::Platform::os2'=> '0.4204',
9581             'Module::Build::PodParser'=> '0.4204',
9582             'Module::CoreList' => '3.04',
9583             'Module::CoreList::TieHashDelta'=> '3.04',
9584             'Module::CoreList::Utils'=> '3.04',
9585             'Module::Load' => '0.28',
9586             'Module::Load::Conditional'=> '0.60',
9587             'Net::Config' => '1.13',
9588             'Net::FTP::A' => '1.19',
9589             'POSIX' => '1.38_01',
9590             'Perl::OSType' => '1.007',
9591             'PerlIO::encoding' => '0.18',
9592             'Pod::Perldoc' => '3.21',
9593             'Pod::Perldoc::BaseTo' => '3.21',
9594             'Pod::Perldoc::GetOptsOO'=> '3.21',
9595             'Pod::Perldoc::ToANSI' => '3.21',
9596             'Pod::Perldoc::ToChecker'=> '3.21',
9597             'Pod::Perldoc::ToMan' => '3.21',
9598             'Pod::Perldoc::ToNroff' => '3.21',
9599             'Pod::Perldoc::ToPod' => '3.21',
9600             'Pod::Perldoc::ToRtf' => '3.21',
9601             'Pod::Perldoc::ToTerm' => '3.21',
9602             'Pod::Perldoc::ToText' => '3.21',
9603             'Pod::Perldoc::ToTk' => '3.21',
9604             'Pod::Perldoc::ToXml' => '3.21',
9605             'Scalar::Util' => '1.36',
9606             'Time::Piece' => '1.27',
9607             'Time::Seconds' => '1.27',
9608             'Unicode::UCD' => '0.57',
9609             'XS::APItest' => '0.59',
9610             'XSLoader' => '0.17',
9611             'base' => '2.21',
9612             'constant' => '1.31',
9613             'inc::latest' => '0.4204',
9614             'threads::shared' => '1.46',
9615             'version' => '0.9907',
9616             'version::regex' => '0.9907',
9617             'version::vpp' => '0.9907',
9618             'warnings' => '1.21',
9619             },
9620             removed => {
9621             }
9622             },
9623             5.019009 => {
9624             delta_from => 5.019008,
9625             changed => {
9626             'B' => '1.48',
9627             'B::Concise' => '0.992',
9628             'B::Deparse' => '1.25',
9629             'CGI' => '3.65',
9630             'CPAN::Meta::YAML' => '0.011',
9631             'Compress::Raw::Bzip2' => '2.064',
9632             'Compress::Raw::Zlib' => '2.065',
9633             'Compress::Zlib' => '2.064',
9634             'Config' => '5.019009',
9635             'Config::Perl::V' => '0.20',
9636             'Cwd' => '3.47',
9637             'Devel::Peek' => '1.16',
9638             'Digest::SHA' => '5.87',
9639             'DynaLoader' => '1.25',
9640             'English' => '1.09',
9641             'ExtUtils::CBuilder' => '0.280216',
9642             'ExtUtils::CBuilder::Base'=> '0.280216',
9643             'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9644             'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9645             'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9646             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9647             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9648             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9649             'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9650             'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9651             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9652             'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9653             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9654             'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9655             'ExtUtils::Command::MM' => '6.88',
9656             'ExtUtils::Embed' => '1.32',
9657             'ExtUtils::Install' => '1.62',
9658             'ExtUtils::Installed' => '1.999004',
9659             'ExtUtils::Liblist' => '6.88',
9660             'ExtUtils::Liblist::Kid'=> '6.88',
9661             'ExtUtils::MM' => '6.88',
9662             'ExtUtils::MM_AIX' => '6.88',
9663             'ExtUtils::MM_Any' => '6.88',
9664             'ExtUtils::MM_BeOS' => '6.88',
9665             'ExtUtils::MM_Cygwin' => '6.88',
9666             'ExtUtils::MM_DOS' => '6.88',
9667             'ExtUtils::MM_Darwin' => '6.88',
9668             'ExtUtils::MM_MacOS' => '6.88',
9669             'ExtUtils::MM_NW5' => '6.88',
9670             'ExtUtils::MM_OS2' => '6.88',
9671             'ExtUtils::MM_QNX' => '6.88',
9672             'ExtUtils::MM_UWIN' => '6.88',
9673             'ExtUtils::MM_Unix' => '6.88',
9674             'ExtUtils::MM_VMS' => '6.88',
9675             'ExtUtils::MM_VOS' => '6.88',
9676             'ExtUtils::MM_Win32' => '6.88',
9677             'ExtUtils::MM_Win95' => '6.88',
9678             'ExtUtils::MY' => '6.88',
9679             'ExtUtils::MakeMaker' => '6.88',
9680             'ExtUtils::MakeMaker::Config'=> '6.88',
9681             'ExtUtils::Mkbootstrap' => '6.88',
9682             'ExtUtils::Mksymlists' => '6.88',
9683             'ExtUtils::Packlist' => '1.47',
9684             'ExtUtils::testlib' => '6.88',
9685             'Fatal' => '2.23',
9686             'File::Fetch' => '0.48',
9687             'File::Spec' => '3.47',
9688             'File::Spec::Cygwin' => '3.47',
9689             'File::Spec::Epoc' => '3.47',
9690             'File::Spec::Functions' => '3.47',
9691             'File::Spec::Mac' => '3.47',
9692             'File::Spec::OS2' => '3.47',
9693             'File::Spec::Unix' => '3.47',
9694             'File::Spec::VMS' => '3.47',
9695             'File::Spec::Win32' => '3.47',
9696             'HTTP::Tiny' => '0.042',
9697             'IO::Compress::Adapter::Bzip2'=> '2.064',
9698             'IO::Compress::Adapter::Deflate'=> '2.064',
9699             'IO::Compress::Adapter::Identity'=> '2.064',
9700             'IO::Compress::Base' => '2.064',
9701             'IO::Compress::Base::Common'=> '2.064',
9702             'IO::Compress::Bzip2' => '2.064',
9703             'IO::Compress::Deflate' => '2.064',
9704             'IO::Compress::Gzip' => '2.064',
9705             'IO::Compress::Gzip::Constants'=> '2.064',
9706             'IO::Compress::RawDeflate'=> '2.064',
9707             'IO::Compress::Zip' => '2.064',
9708             'IO::Compress::Zip::Constants'=> '2.064',
9709             'IO::Compress::Zlib::Constants'=> '2.064',
9710             'IO::Compress::Zlib::Extra'=> '2.064',
9711             'IO::Socket::INET' => '1.35',
9712             'IO::Socket::IP' => '0.28',
9713             'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9714             'IO::Uncompress::Adapter::Identity'=> '2.064',
9715             'IO::Uncompress::Adapter::Inflate'=> '2.064',
9716             'IO::Uncompress::AnyInflate'=> '2.064',
9717             'IO::Uncompress::AnyUncompress'=> '2.064',
9718             'IO::Uncompress::Base' => '2.064',
9719             'IO::Uncompress::Bunzip2'=> '2.064',
9720             'IO::Uncompress::Gunzip'=> '2.064',
9721             'IO::Uncompress::Inflate'=> '2.064',
9722             'IO::Uncompress::RawInflate'=> '2.064',
9723             'IO::Uncompress::Unzip' => '2.064',
9724             'IPC::Cmd' => '0.92',
9725             'List::Util' => '1.38',
9726             'List::Util::XS' => '1.38',
9727             'Locale::Codes' => '3.29',
9728             'Locale::Codes::Constants'=> '3.29',
9729             'Locale::Codes::Country'=> '3.29',
9730             'Locale::Codes::Country_Codes'=> '3.29',
9731             'Locale::Codes::Country_Retired'=> '3.29',
9732             'Locale::Codes::Currency'=> '3.29',
9733             'Locale::Codes::Currency_Codes'=> '3.29',
9734             'Locale::Codes::Currency_Retired'=> '3.29',
9735             'Locale::Codes::LangExt'=> '3.29',
9736             'Locale::Codes::LangExt_Codes'=> '3.29',
9737             'Locale::Codes::LangExt_Retired'=> '3.29',
9738             'Locale::Codes::LangFam'=> '3.29',
9739             'Locale::Codes::LangFam_Codes'=> '3.29',
9740             'Locale::Codes::LangFam_Retired'=> '3.29',
9741             'Locale::Codes::LangVar'=> '3.29',
9742             'Locale::Codes::LangVar_Codes'=> '3.29',
9743             'Locale::Codes::LangVar_Retired'=> '3.29',
9744             'Locale::Codes::Language'=> '3.29',
9745             'Locale::Codes::Language_Codes'=> '3.29',
9746             'Locale::Codes::Language_Retired'=> '3.29',
9747             'Locale::Codes::Script' => '3.29',
9748             'Locale::Codes::Script_Codes'=> '3.29',
9749             'Locale::Codes::Script_Retired'=> '3.29',
9750             'Locale::Country' => '3.29',
9751             'Locale::Currency' => '3.29',
9752             'Locale::Language' => '3.29',
9753             'Locale::Script' => '3.29',
9754             'Module::Build' => '0.4205',
9755             'Module::Build::Base' => '0.4205',
9756             'Module::Build::Compat' => '0.4205',
9757             'Module::Build::Config' => '0.4205',
9758             'Module::Build::Cookbook'=> '0.4205',
9759             'Module::Build::Dumper' => '0.4205',
9760             'Module::Build::ModuleInfo'=> '0.4205',
9761             'Module::Build::Notes' => '0.4205',
9762             'Module::Build::PPMMaker'=> '0.4205',
9763             'Module::Build::Platform::Default'=> '0.4205',
9764             'Module::Build::Platform::MacOS'=> '0.4205',
9765             'Module::Build::Platform::Unix'=> '0.4205',
9766             'Module::Build::Platform::VMS'=> '0.4205',
9767             'Module::Build::Platform::VOS'=> '0.4205',
9768             'Module::Build::Platform::Windows'=> '0.4205',
9769             'Module::Build::Platform::aix'=> '0.4205',
9770             'Module::Build::Platform::cygwin'=> '0.4205',
9771             'Module::Build::Platform::darwin'=> '0.4205',
9772             'Module::Build::Platform::os2'=> '0.4205',
9773             'Module::Build::PodParser'=> '0.4205',
9774             'Module::CoreList' => '3.06',
9775             'Module::CoreList::TieHashDelta'=> '3.06',
9776             'Module::CoreList::Utils'=> '3.06',
9777             'Module::Load' => '0.30',
9778             'Module::Load::Conditional'=> '0.62',
9779             'Net::Domain' => '2.23',
9780             'Net::FTP' => '2.79',
9781             'Net::NNTP' => '2.26',
9782             'Net::POP3' => '2.31',
9783             'Net::Ping' => '2.43',
9784             'Net::SMTP' => '2.33',
9785             'POSIX' => '1.38_02',
9786             'Parse::CPAN::Meta' => '1.4413',
9787             'Pod::Escapes' => '1.06',
9788             'Pod::Find' => '1.62',
9789             'Pod::InputObjects' => '1.62',
9790             'Pod::ParseUtils' => '1.62',
9791             'Pod::Parser' => '1.62',
9792             'Pod::Select' => '1.62',
9793             'Scalar::Util' => '1.38',
9794             'autodie' => '2.23',
9795             'autodie::exception' => '2.23',
9796             'autodie::exception::system'=> '2.23',
9797             'autodie::hints' => '2.23',
9798             'autodie::skip' => '2.23',
9799             'diagnostics' => '1.34',
9800             'feature' => '1.35',
9801             'inc::latest' => '0.4205',
9802             'locale' => '1.03',
9803             'mro' => '1.15',
9804             'threads' => '1.92',
9805             'version' => '0.9908',
9806             'version::regex' => '0.9908',
9807             'version::vpp' => '0.9908',
9808             'warnings' => '1.22',
9809             },
9810             removed => {
9811             }
9812             },
9813             5.01901 => {
9814             delta_from => 5.019009,
9815             changed => {
9816             'App::Cpan' => '1.62',
9817             'Attribute::Handlers' => '0.96',
9818             'B::Deparse' => '1.26',
9819             'CPAN' => '2.04',
9820             'CPAN::Bundle' => '5.5001',
9821             'CPAN::Complete' => '5.5001',
9822             'CPAN::Distribution' => '2.01',
9823             'CPAN::Distroprefs' => '6.0001',
9824             'CPAN::FirstTime' => '5.5305',
9825             'CPAN::Meta' => '2.140640',
9826             'CPAN::Meta::Converter' => '2.140640',
9827             'CPAN::Meta::Feature' => '2.140640',
9828             'CPAN::Meta::History' => '2.140640',
9829             'CPAN::Meta::Prereqs' => '2.140640',
9830             'CPAN::Meta::Spec' => '2.140640',
9831             'CPAN::Meta::Validator' => '2.140640',
9832             'CPAN::Meta::YAML' => '0.012',
9833             'CPAN::Queue' => '5.5002',
9834             'CPAN::Shell' => '5.5003',
9835             'CPAN::Tarzip' => '5.5012',
9836             'CPAN::Version' => '5.5003',
9837             'Carp' => '1.33',
9838             'Carp::Heavy' => '1.33',
9839             'Config' => '5.019010',
9840             'Data::Dumper' => '2.151',
9841             'Devel::PPPort' => '3.22',
9842             'Digest::SHA' => '5.88',
9843             'ExtUtils::Command::MM' => '6.92',
9844             'ExtUtils::Install' => '1.63',
9845             'ExtUtils::Installed' => '1.999005',
9846             'ExtUtils::Liblist' => '6.92',
9847             'ExtUtils::Liblist::Kid'=> '6.92',
9848             'ExtUtils::MM' => '6.92',
9849             'ExtUtils::MM_AIX' => '6.92',
9850             'ExtUtils::MM_Any' => '6.92',
9851             'ExtUtils::MM_BeOS' => '6.92',
9852             'ExtUtils::MM_Cygwin' => '6.92',
9853             'ExtUtils::MM_DOS' => '6.92',
9854             'ExtUtils::MM_Darwin' => '6.92',
9855             'ExtUtils::MM_MacOS' => '6.92',
9856             'ExtUtils::MM_NW5' => '6.92',
9857             'ExtUtils::MM_OS2' => '6.92',
9858             'ExtUtils::MM_QNX' => '6.92',
9859             'ExtUtils::MM_UWIN' => '6.92',
9860             'ExtUtils::MM_Unix' => '6.92',
9861             'ExtUtils::MM_VMS' => '6.92',
9862             'ExtUtils::MM_VOS' => '6.92',
9863             'ExtUtils::MM_Win32' => '6.92',
9864             'ExtUtils::MM_Win95' => '6.92',
9865             'ExtUtils::MY' => '6.92',
9866             'ExtUtils::MakeMaker' => '6.92',
9867             'ExtUtils::MakeMaker::Config'=> '6.92',
9868             'ExtUtils::Mkbootstrap' => '6.92',
9869             'ExtUtils::Mksymlists' => '6.92',
9870             'ExtUtils::Packlist' => '1.48',
9871             'ExtUtils::ParseXS' => '3.24',
9872             'ExtUtils::ParseXS::Constants'=> '3.24',
9873             'ExtUtils::ParseXS::CountLines'=> '3.24',
9874             'ExtUtils::ParseXS::Eval'=> '3.24',
9875             'ExtUtils::ParseXS::Utilities'=> '3.24',
9876             'ExtUtils::Typemaps' => '3.24',
9877             'ExtUtils::Typemaps::Cmd'=> '3.24',
9878             'ExtUtils::Typemaps::InputMap'=> '3.24',
9879             'ExtUtils::Typemaps::OutputMap'=> '3.24',
9880             'ExtUtils::Typemaps::Type'=> '3.24',
9881             'ExtUtils::testlib' => '6.92',
9882             'File::Find' => '1.27',
9883             'Filter::Simple' => '0.91',
9884             'HTTP::Tiny' => '0.043',
9885             'Hash::Util::FieldHash' => '1.15',
9886             'IO' => '1.31',
9887             'IO::Socket::IP' => '0.29',
9888             'Locale::Codes' => '3.30',
9889             'Locale::Codes::Constants'=> '3.30',
9890             'Locale::Codes::Country'=> '3.30',
9891             'Locale::Codes::Country_Codes'=> '3.30',
9892             'Locale::Codes::Country_Retired'=> '3.30',
9893             'Locale::Codes::Currency'=> '3.30',
9894             'Locale::Codes::Currency_Codes'=> '3.30',
9895             'Locale::Codes::Currency_Retired'=> '3.30',
9896             'Locale::Codes::LangExt'=> '3.30',
9897             'Locale::Codes::LangExt_Codes'=> '3.30',
9898             'Locale::Codes::LangExt_Retired'=> '3.30',
9899             'Locale::Codes::LangFam'=> '3.30',
9900             'Locale::Codes::LangFam_Codes'=> '3.30',
9901             'Locale::Codes::LangFam_Retired'=> '3.30',
9902             'Locale::Codes::LangVar'=> '3.30',
9903             'Locale::Codes::LangVar_Codes'=> '3.30',
9904             'Locale::Codes::LangVar_Retired'=> '3.30',
9905             'Locale::Codes::Language'=> '3.30',
9906             'Locale::Codes::Language_Codes'=> '3.30',
9907             'Locale::Codes::Language_Retired'=> '3.30',
9908             'Locale::Codes::Script' => '3.30',
9909             'Locale::Codes::Script_Codes'=> '3.30',
9910             'Locale::Codes::Script_Retired'=> '3.30',
9911             'Locale::Country' => '3.30',
9912             'Locale::Currency' => '3.30',
9913             'Locale::Language' => '3.30',
9914             'Locale::Script' => '3.30',
9915             'Module::CoreList' => '3.09',
9916             'Module::CoreList::TieHashDelta'=> '3.09',
9917             'Module::CoreList::Utils'=> '3.09',
9918             'Module::Load' => '0.32',
9919             'POSIX' => '1.38_03',
9920             'Parse::CPAN::Meta' => '1.4414',
9921             'Pod::Perldoc' => '3.23',
9922             'Pod::Perldoc::BaseTo' => '3.23',
9923             'Pod::Perldoc::GetOptsOO'=> '3.23',
9924             'Pod::Perldoc::ToANSI' => '3.23',
9925             'Pod::Perldoc::ToChecker'=> '3.23',
9926             'Pod::Perldoc::ToMan' => '3.23',
9927             'Pod::Perldoc::ToNroff' => '3.23',
9928             'Pod::Perldoc::ToPod' => '3.23',
9929             'Pod::Perldoc::ToRtf' => '3.23',
9930             'Pod::Perldoc::ToTerm' => '3.23',
9931             'Pod::Perldoc::ToText' => '3.23',
9932             'Pod::Perldoc::ToTk' => '3.23',
9933             'Pod::Perldoc::ToXml' => '3.23',
9934             'Thread::Queue' => '3.05',
9935             'XS::APItest' => '0.60',
9936             'XS::Typemap' => '0.13',
9937             'autouse' => '1.08',
9938             'base' => '2.22',
9939             'charnames' => '1.40',
9940             'feature' => '1.36',
9941             'mro' => '1.16',
9942             'threads' => '1.93',
9943             'warnings' => '1.23',
9944             'warnings::register' => '1.03',
9945             },
9946             removed => {
9947             }
9948             },
9949             5.019011 => {
9950             delta_from => 5.01901,
9951             changed => {
9952             'CPAN' => '2.05',
9953             'CPAN::Distribution' => '2.02',
9954             'CPAN::FirstTime' => '5.5306',
9955             'CPAN::Shell' => '5.5004',
9956             'Carp' => '1.3301',
9957             'Carp::Heavy' => '1.3301',
9958             'Config' => '5.019011',
9959             'ExtUtils::Command::MM' => '6.94',
9960             'ExtUtils::Install' => '1.67',
9961             'ExtUtils::Liblist' => '6.94',
9962             'ExtUtils::Liblist::Kid'=> '6.94',
9963             'ExtUtils::MM' => '6.94',
9964             'ExtUtils::MM_AIX' => '6.94',
9965             'ExtUtils::MM_Any' => '6.94',
9966             'ExtUtils::MM_BeOS' => '6.94',
9967             'ExtUtils::MM_Cygwin' => '6.94',
9968             'ExtUtils::MM_DOS' => '6.94',
9969             'ExtUtils::MM_Darwin' => '6.94',
9970             'ExtUtils::MM_MacOS' => '6.94',
9971             'ExtUtils::MM_NW5' => '6.94',
9972             'ExtUtils::MM_OS2' => '6.94',
9973             'ExtUtils::MM_QNX' => '6.94',
9974             'ExtUtils::MM_UWIN' => '6.94',
9975             'ExtUtils::MM_Unix' => '6.94',
9976             'ExtUtils::MM_VMS' => '6.94',
9977             'ExtUtils::MM_VOS' => '6.94',
9978             'ExtUtils::MM_Win32' => '6.94',
9979             'ExtUtils::MM_Win95' => '6.94',
9980             'ExtUtils::MY' => '6.94',
9981             'ExtUtils::MakeMaker' => '6.94',
9982             'ExtUtils::MakeMaker::Config'=> '6.94',
9983             'ExtUtils::Mkbootstrap' => '6.94',
9984             'ExtUtils::Mksymlists' => '6.94',
9985             'ExtUtils::testlib' => '6.94',
9986             'Module::CoreList' => '3.10',
9987             'Module::CoreList::TieHashDelta'=> '3.10',
9988             'Module::CoreList::Utils'=> '3.10',
9989             'PerlIO' => '1.09',
9990             'Storable' => '2.49',
9991             'Win32' => '0.49',
9992             'experimental' => '0.007',
9993             },
9994             removed => {
9995             }
9996             },
9997             5.020000 => {
9998             delta_from => 5.019011,
9999             changed => {
10000             'Config' => '5.02',
10001             'Devel::PPPort' => '3.21',
10002             'Encode' => '2.60',
10003             'Errno' => '1.20_03',
10004             'ExtUtils::Command::MM' => '6.98',
10005             'ExtUtils::Liblist' => '6.98',
10006             'ExtUtils::Liblist::Kid'=> '6.98',
10007             'ExtUtils::MM' => '6.98',
10008             'ExtUtils::MM_AIX' => '6.98',
10009             'ExtUtils::MM_Any' => '6.98',
10010             'ExtUtils::MM_BeOS' => '6.98',
10011             'ExtUtils::MM_Cygwin' => '6.98',
10012             'ExtUtils::MM_DOS' => '6.98',
10013             'ExtUtils::MM_Darwin' => '6.98',
10014             'ExtUtils::MM_MacOS' => '6.98',
10015             'ExtUtils::MM_NW5' => '6.98',
10016             'ExtUtils::MM_OS2' => '6.98',
10017             'ExtUtils::MM_QNX' => '6.98',
10018             'ExtUtils::MM_UWIN' => '6.98',
10019             'ExtUtils::MM_Unix' => '6.98',
10020             'ExtUtils::MM_VMS' => '6.98',
10021             'ExtUtils::MM_VOS' => '6.98',
10022             'ExtUtils::MM_Win32' => '6.98',
10023             'ExtUtils::MM_Win95' => '6.98',
10024             'ExtUtils::MY' => '6.98',
10025             'ExtUtils::MakeMaker' => '6.98',
10026             'ExtUtils::MakeMaker::Config'=> '6.98',
10027             'ExtUtils::Miniperl' => '1.01',
10028             'ExtUtils::Mkbootstrap' => '6.98',
10029             'ExtUtils::Mksymlists' => '6.98',
10030             'ExtUtils::testlib' => '6.98',
10031             },
10032             removed => {
10033             }
10034             },
10035             5.021000 => {
10036             delta_from => 5.020000,
10037             changed => {
10038             'Module::CoreList' => '5.021001',
10039             'Module::CoreList::TieHashDelta'=> '5.021001',
10040             'Module::CoreList::Utils'=> '5.021001',
10041             'feature' => '1.37',
10042             },
10043             removed => {
10044             'CGI' => 1,
10045             'CGI::Apache' => 1,
10046             'CGI::Carp' => 1,
10047             'CGI::Cookie' => 1,
10048             'CGI::Fast' => 1,
10049             'CGI::Pretty' => 1,
10050             'CGI::Push' => 1,
10051             'CGI::Switch' => 1,
10052             'CGI::Util' => 1,
10053             'Module::Build' => 1,
10054             'Module::Build::Base' => 1,
10055             'Module::Build::Compat' => 1,
10056             'Module::Build::Config' => 1,
10057             'Module::Build::ConfigData'=> 1,
10058             'Module::Build::Cookbook'=> 1,
10059             'Module::Build::Dumper' => 1,
10060             'Module::Build::ModuleInfo'=> 1,
10061             'Module::Build::Notes' => 1,
10062             'Module::Build::PPMMaker'=> 1,
10063             'Module::Build::Platform::Default'=> 1,
10064             'Module::Build::Platform::MacOS'=> 1,
10065             'Module::Build::Platform::Unix'=> 1,
10066             'Module::Build::Platform::VMS'=> 1,
10067             'Module::Build::Platform::VOS'=> 1,
10068             'Module::Build::Platform::Windows'=> 1,
10069             'Module::Build::Platform::aix'=> 1,
10070             'Module::Build::Platform::cygwin'=> 1,
10071             'Module::Build::Platform::darwin'=> 1,
10072             'Module::Build::Platform::os2'=> 1,
10073             'Module::Build::PodParser'=> 1,
10074             'Module::Build::Version'=> 1,
10075             'Module::Build::YAML' => 1,
10076             'Package::Constants' => 1,
10077             'inc::latest' => 1,
10078             }
10079             },
10080             5.021001 => {
10081             delta_from => 5.021000,
10082             changed => {
10083             'App::Prove' => '3.32',
10084             'App::Prove::State' => '3.32',
10085             'App::Prove::State::Result'=> '3.32',
10086             'App::Prove::State::Result::Test'=> '3.32',
10087             'Archive::Tar' => '2.00',
10088             'Archive::Tar::Constant'=> '2.00',
10089             'Archive::Tar::File' => '2.00',
10090             'B' => '1.49',
10091             'B::Deparse' => '1.27',
10092             'Benchmark' => '1.19',
10093             'CPAN::Meta' => '2.141520',
10094             'CPAN::Meta::Converter' => '2.141520',
10095             'CPAN::Meta::Feature' => '2.141520',
10096             'CPAN::Meta::History' => '2.141520',
10097             'CPAN::Meta::Prereqs' => '2.141520',
10098             'CPAN::Meta::Spec' => '2.141520',
10099             'CPAN::Meta::Validator' => '2.141520',
10100             'Carp' => '1.34',
10101             'Carp::Heavy' => '1.34',
10102             'Config' => '5.021001',
10103             'Cwd' => '3.48',
10104             'Data::Dumper' => '2.152',
10105             'Devel::PPPort' => '3.24',
10106             'Devel::Peek' => '1.17',
10107             'Digest::SHA' => '5.92',
10108             'DynaLoader' => '1.26',
10109             'Encode' => '2.62',
10110             'Errno' => '1.20_04',
10111             'Exporter' => '5.71',
10112             'Exporter::Heavy' => '5.71',
10113             'ExtUtils::Install' => '1.68',
10114             'ExtUtils::Miniperl' => '1.02',
10115             'ExtUtils::ParseXS' => '3.25',
10116             'ExtUtils::ParseXS::Constants'=> '3.25',
10117             'ExtUtils::ParseXS::CountLines'=> '3.25',
10118             'ExtUtils::ParseXS::Eval'=> '3.25',
10119             'ExtUtils::ParseXS::Utilities'=> '3.25',
10120             'ExtUtils::Typemaps' => '3.25',
10121             'ExtUtils::Typemaps::Cmd'=> '3.25',
10122             'ExtUtils::Typemaps::InputMap'=> '3.25',
10123             'ExtUtils::Typemaps::OutputMap'=> '3.25',
10124             'ExtUtils::Typemaps::Type'=> '3.25',
10125             'Fatal' => '2.25',
10126             'File::Spec' => '3.48',
10127             'File::Spec::Cygwin' => '3.48',
10128             'File::Spec::Epoc' => '3.48',
10129             'File::Spec::Functions' => '3.48',
10130             'File::Spec::Mac' => '3.48',
10131             'File::Spec::OS2' => '3.48',
10132             'File::Spec::Unix' => '3.48',
10133             'File::Spec::VMS' => '3.48',
10134             'File::Spec::Win32' => '3.48',
10135             'Hash::Util' => '0.17',
10136             'IO' => '1.32',
10137             'List::Util' => '1.39',
10138             'List::Util::XS' => '1.39',
10139             'Locale::Codes' => '3.31',
10140             'Locale::Codes::Constants'=> '3.31',
10141             'Locale::Codes::Country'=> '3.31',
10142             'Locale::Codes::Country_Codes'=> '3.31',
10143             'Locale::Codes::Country_Retired'=> '3.31',
10144             'Locale::Codes::Currency'=> '3.31',
10145             'Locale::Codes::Currency_Codes'=> '3.31',
10146             'Locale::Codes::Currency_Retired'=> '3.31',
10147             'Locale::Codes::LangExt'=> '3.31',
10148             'Locale::Codes::LangExt_Codes'=> '3.31',
10149             'Locale::Codes::LangExt_Retired'=> '3.31',
10150             'Locale::Codes::LangFam'=> '3.31',
10151             'Locale::Codes::LangFam_Codes'=> '3.31',
10152             'Locale::Codes::LangFam_Retired'=> '3.31',
10153             'Locale::Codes::LangVar'=> '3.31',
10154             'Locale::Codes::LangVar_Codes'=> '3.31',
10155             'Locale::Codes::LangVar_Retired'=> '3.31',
10156             'Locale::Codes::Language'=> '3.31',
10157             'Locale::Codes::Language_Codes'=> '3.31',
10158             'Locale::Codes::Language_Retired'=> '3.31',
10159             'Locale::Codes::Script' => '3.31',
10160             'Locale::Codes::Script_Codes'=> '3.31',
10161             'Locale::Codes::Script_Retired'=> '3.31',
10162             'Locale::Country' => '3.31',
10163             'Locale::Currency' => '3.31',
10164             'Locale::Language' => '3.31',
10165             'Locale::Script' => '3.31',
10166             'Math::BigFloat' => '1.9994',
10167             'Math::BigInt' => '1.9995',
10168             'Math::BigInt::Calc' => '1.9994',
10169             'Math::BigInt::CalcEmu' => '1.9994',
10170             'Math::BigRat' => '0.2608',
10171             'Module::CoreList' => '5.021001_01',
10172             'Module::CoreList::TieHashDelta'=> '5.021001_01',
10173             'Module::CoreList::Utils'=> '5.021001_01',
10174             'Module::Metadata' => '1.000024',
10175             'NDBM_File' => '1.13',
10176             'Net::Config' => '1.14',
10177             'Net::SMTP' => '2.34',
10178             'Net::Time' => '2.11',
10179             'OS2::Process' => '1.10',
10180             'POSIX' => '1.40',
10181             'PerlIO::encoding' => '0.19',
10182             'PerlIO::mmap' => '0.013',
10183             'PerlIO::scalar' => '0.19',
10184             'PerlIO::via' => '0.15',
10185             'Pod::Html' => '1.22',
10186             'Scalar::Util' => '1.39',
10187             'SelfLoader' => '1.22',
10188             'Socket' => '2.014',
10189             'Storable' => '2.51',
10190             'TAP::Base' => '3.32',
10191             'TAP::Formatter::Base' => '3.32',
10192             'TAP::Formatter::Color' => '3.32',
10193             'TAP::Formatter::Console'=> '3.32',
10194             'TAP::Formatter::Console::ParallelSession'=> '3.32',
10195             'TAP::Formatter::Console::Session'=> '3.32',
10196             'TAP::Formatter::File' => '3.32',
10197             'TAP::Formatter::File::Session'=> '3.32',
10198             'TAP::Formatter::Session'=> '3.32',
10199             'TAP::Harness' => '3.32',
10200             'TAP::Harness::Env' => '3.32',
10201             'TAP::Object' => '3.32',
10202             'TAP::Parser' => '3.32',
10203             'TAP::Parser::Aggregator'=> '3.32',
10204             'TAP::Parser::Grammar' => '3.32',
10205             'TAP::Parser::Iterator' => '3.32',
10206             'TAP::Parser::Iterator::Array'=> '3.32',
10207             'TAP::Parser::Iterator::Process'=> '3.32',
10208             'TAP::Parser::Iterator::Stream'=> '3.32',
10209             'TAP::Parser::IteratorFactory'=> '3.32',
10210             'TAP::Parser::Multiplexer'=> '3.32',
10211             'TAP::Parser::Result' => '3.32',
10212             'TAP::Parser::Result::Bailout'=> '3.32',
10213             'TAP::Parser::Result::Comment'=> '3.32',
10214             'TAP::Parser::Result::Plan'=> '3.32',
10215             'TAP::Parser::Result::Pragma'=> '3.32',
10216             'TAP::Parser::Result::Test'=> '3.32',
10217             'TAP::Parser::Result::Unknown'=> '3.32',
10218             'TAP::Parser::Result::Version'=> '3.32',
10219             'TAP::Parser::Result::YAML'=> '3.32',
10220             'TAP::Parser::ResultFactory'=> '3.32',
10221             'TAP::Parser::Scheduler'=> '3.32',
10222             'TAP::Parser::Scheduler::Job'=> '3.32',
10223             'TAP::Parser::Scheduler::Spinner'=> '3.32',
10224             'TAP::Parser::Source' => '3.32',
10225             'TAP::Parser::SourceHandler'=> '3.32',
10226             'TAP::Parser::SourceHandler::Executable'=> '3.32',
10227             'TAP::Parser::SourceHandler::File'=> '3.32',
10228             'TAP::Parser::SourceHandler::Handle'=> '3.32',
10229             'TAP::Parser::SourceHandler::Perl'=> '3.32',
10230             'TAP::Parser::SourceHandler::RawTAP'=> '3.32',
10231             'TAP::Parser::YAMLish::Reader'=> '3.32',
10232             'TAP::Parser::YAMLish::Writer'=> '3.32',
10233             'Term::ANSIColor' => '4.03',
10234             'Test::Builder' => '1.001003',
10235             'Test::Builder::Module' => '1.001003',
10236             'Test::Builder::Tester' => '1.23_003',
10237             'Test::Harness' => '3.32',
10238             'Test::More' => '1.001003',
10239             'Test::Simple' => '1.001003',
10240             'Tie::File' => '1.01',
10241             'Unicode' => '7.0.0',
10242             'Unicode::Collate' => '1.07',
10243             'Unicode::Normalize' => '1.18',
10244             'Unicode::UCD' => '0.58',
10245             'XS::APItest' => '0.61',
10246             '_charnames' => '1.41',
10247             'autodie' => '2.25',
10248             'autodie::Scope::Guard' => '2.25',
10249             'autodie::Scope::GuardStack'=> '2.25',
10250             'autodie::ScopeUtil' => '2.25',
10251             'autodie::exception' => '2.25',
10252             'autodie::exception::system'=> '2.25',
10253             'autodie::hints' => '2.25',
10254             'autodie::skip' => '2.25',
10255             'charnames' => '1.41',
10256             'locale' => '1.04',
10257             'threads' => '1.94',
10258             'utf8' => '1.14',
10259             'warnings' => '1.24',
10260             },
10261             removed => {
10262             }
10263             },
10264             5.021002 => {
10265             delta_from => 5.021001,
10266             changed => {
10267             'B' => '1.50',
10268             'Config' => '5.021002',
10269             'Cwd' => '3.49',
10270             'Devel::Peek' => '1.18',
10271             'ExtUtils::Manifest' => '1.64',
10272             'File::Copy' => '2.30',
10273             'File::Spec' => '3.49',
10274             'File::Spec::Cygwin' => '3.49',
10275             'File::Spec::Epoc' => '3.49',
10276             'File::Spec::Functions' => '3.49',
10277             'File::Spec::Mac' => '3.49',
10278             'File::Spec::OS2' => '3.49',
10279             'File::Spec::Unix' => '3.49',
10280             'File::Spec::VMS' => '3.49',
10281             'File::Spec::Win32' => '3.49',
10282             'Filter::Simple' => '0.92',
10283             'Hash::Util' => '0.18',
10284             'IO' => '1.33',
10285             'IO::Socket::IP' => '0.31',
10286             'IPC::Open3' => '1.17',
10287             'Math::BigFloat' => '1.9996',
10288             'Math::BigInt' => '1.9996',
10289             'Math::BigInt::Calc' => '1.9996',
10290             'Math::BigInt::CalcEmu' => '1.9996',
10291             'Module::CoreList' => '5.021002',
10292             'Module::CoreList::TieHashDelta'=> '5.021002',
10293             'Module::CoreList::Utils'=> '5.021002',
10294             'POSIX' => '1.41',
10295             'Pod::Usage' => '1.64',
10296             'XS::APItest' => '0.62',
10297             'arybase' => '0.08',
10298             'experimental' => '0.008',
10299             'threads' => '1.95',
10300             'warnings' => '1.26',
10301             },
10302             removed => {
10303             }
10304             },
10305             5.021003 => {
10306             delta_from => 5.021002,
10307             changed => {
10308             'B::Debug' => '1.21',
10309             'CPAN::Meta' => '2.142060',
10310             'CPAN::Meta::Converter' => '2.142060',
10311             'CPAN::Meta::Feature' => '2.142060',
10312             'CPAN::Meta::History' => '2.142060',
10313             'CPAN::Meta::Merge' => '2.142060',
10314             'CPAN::Meta::Prereqs' => '2.142060',
10315             'CPAN::Meta::Requirements'=> '2.126',
10316             'CPAN::Meta::Spec' => '2.142060',
10317             'CPAN::Meta::Validator' => '2.142060',
10318             'Config' => '5.021003',
10319             'Config::Perl::V' => '0.22',
10320             'ExtUtils::CBuilder' => '0.280217',
10321             'ExtUtils::CBuilder::Base'=> '0.280217',
10322             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10323             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10324             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10325             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10326             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10327             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10328             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10329             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10330             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10331             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10332             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10333             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10334             'ExtUtils::Manifest' => '1.65',
10335             'HTTP::Tiny' => '0.047',
10336             'IPC::Open3' => '1.18',
10337             'Module::CoreList' => '5.021003',
10338             'Module::CoreList::TieHashDelta'=> '5.021003',
10339             'Module::CoreList::Utils'=> '5.021003',
10340             'Opcode' => '1.28',
10341             'POSIX' => '1.42',
10342             'Safe' => '2.38',
10343             'Socket' => '2.015',
10344             'Sys::Hostname' => '1.19',
10345             'UNIVERSAL' => '1.12',
10346             'XS::APItest' => '0.63',
10347             'perlfaq' => '5.0150045',
10348             },
10349             removed => {
10350             }
10351             },
10352             5.020001 => {
10353             delta_from => 5.020000,
10354             changed => {
10355             'Config' => '5.020001',
10356             'Config::Perl::V' => '0.22',
10357             'Cwd' => '3.48',
10358             'Exporter' => '5.71',
10359             'Exporter::Heavy' => '5.71',
10360             'ExtUtils::CBuilder' => '0.280217',
10361             'ExtUtils::CBuilder::Base'=> '0.280217',
10362             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10363             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10364             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10365             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10366             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10367             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10368             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10369             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10370             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10371             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10372             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10373             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10374             'File::Copy' => '2.30',
10375             'File::Spec' => '3.48',
10376             'File::Spec::Cygwin' => '3.48',
10377             'File::Spec::Epoc' => '3.48',
10378             'File::Spec::Functions' => '3.48',
10379             'File::Spec::Mac' => '3.48',
10380             'File::Spec::OS2' => '3.48',
10381             'File::Spec::Unix' => '3.48',
10382             'File::Spec::VMS' => '3.48',
10383             'File::Spec::Win32' => '3.48',
10384             'Module::CoreList' => '5.020001',
10385             'Module::CoreList::TieHashDelta'=> '5.020001',
10386             'Module::CoreList::Utils'=> '5.020001',
10387             'PerlIO::via' => '0.15',
10388             'Unicode::UCD' => '0.58',
10389             'XS::APItest' => '0.60_01',
10390             'utf8' => '1.13_01',
10391             'version' => '0.9909',
10392             'version::regex' => '0.9909',
10393             'version::vpp' => '0.9909',
10394             },
10395             removed => {
10396             }
10397             },
10398             5.021004 => {
10399             delta_from => 5.021003,
10400             changed => {
10401             'App::Prove' => '3.33',
10402             'App::Prove::State' => '3.33',
10403             'App::Prove::State::Result'=> '3.33',
10404             'App::Prove::State::Result::Test'=> '3.33',
10405             'Archive::Tar' => '2.02',
10406             'Archive::Tar::Constant'=> '2.02',
10407             'Archive::Tar::File' => '2.02',
10408             'Attribute::Handlers' => '0.97',
10409             'B' => '1.51',
10410             'B::Concise' => '0.993',
10411             'B::Deparse' => '1.28',
10412             'B::Op_private' => '5.021004',
10413             'CPAN::Meta::Requirements'=> '2.128',
10414             'Config' => '5.021004',
10415             'Cwd' => '3.50',
10416             'Data::Dumper' => '2.154',
10417             'ExtUtils::CBuilder' => '0.280219',
10418             'ExtUtils::CBuilder::Base'=> '0.280219',
10419             'ExtUtils::CBuilder::Platform::Unix'=> '0.280219',
10420             'ExtUtils::CBuilder::Platform::VMS'=> '0.280219',
10421             'ExtUtils::CBuilder::Platform::Windows'=> '0.280219',
10422             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219',
10423             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219',
10424             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219',
10425             'ExtUtils::CBuilder::Platform::aix'=> '0.280219',
10426             'ExtUtils::CBuilder::Platform::android'=> '0.280219',
10427             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219',
10428             'ExtUtils::CBuilder::Platform::darwin'=> '0.280219',
10429             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219',
10430             'ExtUtils::CBuilder::Platform::os2'=> '0.280219',
10431             'ExtUtils::Install' => '2.04',
10432             'ExtUtils::Installed' => '2.04',
10433             'ExtUtils::Liblist::Kid'=> '6.98_01',
10434             'ExtUtils::Manifest' => '1.68',
10435             'ExtUtils::Packlist' => '2.04',
10436             'File::Find' => '1.28',
10437             'File::Spec' => '3.50',
10438             'File::Spec::Cygwin' => '3.50',
10439             'File::Spec::Epoc' => '3.50',
10440             'File::Spec::Functions' => '3.50',
10441             'File::Spec::Mac' => '3.50',
10442             'File::Spec::OS2' => '3.50',
10443             'File::Spec::Unix' => '3.50',
10444             'File::Spec::VMS' => '3.50',
10445             'File::Spec::Win32' => '3.50',
10446             'Getopt::Std' => '1.11',
10447             'HTTP::Tiny' => '0.049',
10448             'IO' => '1.34',
10449             'IO::Socket::IP' => '0.32',
10450             'List::Util' => '1.41',
10451             'List::Util::XS' => '1.41',
10452             'Locale::Codes' => '3.32',
10453             'Locale::Codes::Constants'=> '3.32',
10454             'Locale::Codes::Country'=> '3.32',
10455             'Locale::Codes::Country_Codes'=> '3.32',
10456             'Locale::Codes::Country_Retired'=> '3.32',
10457             'Locale::Codes::Currency'=> '3.32',
10458             'Locale::Codes::Currency_Codes'=> '3.32',
10459             'Locale::Codes::Currency_Retired'=> '3.32',
10460             'Locale::Codes::LangExt'=> '3.32',
10461             'Locale::Codes::LangExt_Codes'=> '3.32',
10462             'Locale::Codes::LangExt_Retired'=> '3.32',
10463             'Locale::Codes::LangFam'=> '3.32',
10464             'Locale::Codes::LangFam_Codes'=> '3.32',
10465             'Locale::Codes::LangFam_Retired'=> '3.32',
10466             'Locale::Codes::LangVar'=> '3.32',
10467             'Locale::Codes::LangVar_Codes'=> '3.32',
10468             'Locale::Codes::LangVar_Retired'=> '3.32',
10469             'Locale::Codes::Language'=> '3.32',
10470             'Locale::Codes::Language_Codes'=> '3.32',
10471             'Locale::Codes::Language_Retired'=> '3.32',
10472             'Locale::Codes::Script' => '3.32',
10473             'Locale::Codes::Script_Codes'=> '3.32',
10474             'Locale::Codes::Script_Retired'=> '3.32',
10475             'Locale::Country' => '3.32',
10476             'Locale::Currency' => '3.32',
10477             'Locale::Language' => '3.32',
10478             'Locale::Script' => '3.32',
10479             'Math::BigFloat' => '1.9997',
10480             'Math::BigInt' => '1.9997',
10481             'Math::BigInt::Calc' => '1.9997',
10482             'Math::BigInt::CalcEmu' => '1.9997',
10483             'Module::CoreList' => '5.20140920',
10484             'Module::CoreList::TieHashDelta'=> '5.20140920',
10485             'Module::CoreList::Utils'=> '5.20140920',
10486             'POSIX' => '1.43',
10487             'Pod::Perldoc' => '3.24',
10488             'Pod::Perldoc::BaseTo' => '3.24',
10489             'Pod::Perldoc::GetOptsOO'=> '3.24',
10490             'Pod::Perldoc::ToANSI' => '3.24',
10491             'Pod::Perldoc::ToChecker'=> '3.24',
10492             'Pod::Perldoc::ToMan' => '3.24',
10493             'Pod::Perldoc::ToNroff' => '3.24',
10494             'Pod::Perldoc::ToPod' => '3.24',
10495             'Pod::Perldoc::ToRtf' => '3.24',
10496             'Pod::Perldoc::ToTerm' => '3.24',
10497             'Pod::Perldoc::ToText' => '3.24',
10498             'Pod::Perldoc::ToTk' => '3.24',
10499             'Pod::Perldoc::ToXml' => '3.24',
10500             'Scalar::Util' => '1.41',
10501             'Sub::Util' => '1.41',
10502             'TAP::Base' => '3.33',
10503             'TAP::Formatter::Base' => '3.33',
10504             'TAP::Formatter::Color' => '3.33',
10505             'TAP::Formatter::Console'=> '3.33',
10506             'TAP::Formatter::Console::ParallelSession'=> '3.33',
10507             'TAP::Formatter::Console::Session'=> '3.33',
10508             'TAP::Formatter::File' => '3.33',
10509             'TAP::Formatter::File::Session'=> '3.33',
10510             'TAP::Formatter::Session'=> '3.33',
10511             'TAP::Harness' => '3.33',
10512             'TAP::Harness::Env' => '3.33',
10513             'TAP::Object' => '3.33',
10514             'TAP::Parser' => '3.33',
10515             'TAP::Parser::Aggregator'=> '3.33',
10516             'TAP::Parser::Grammar' => '3.33',
10517             'TAP::Parser::Iterator' => '3.33',
10518             'TAP::Parser::Iterator::Array'=> '3.33',
10519             'TAP::Parser::Iterator::Process'=> '3.33',
10520             'TAP::Parser::Iterator::Stream'=> '3.33',
10521             'TAP::Parser::IteratorFactory'=> '3.33',
10522             'TAP::Parser::Multiplexer'=> '3.33',
10523             'TAP::Parser::Result' => '3.33',
10524             'TAP::Parser::Result::Bailout'=> '3.33',
10525             'TAP::Parser::Result::Comment'=> '3.33',
10526             'TAP::Parser::Result::Plan'=> '3.33',
10527             'TAP::Parser::Result::Pragma'=> '3.33',
10528             'TAP::Parser::Result::Test'=> '3.33',
10529             'TAP::Parser::Result::Unknown'=> '3.33',
10530             'TAP::Parser::Result::Version'=> '3.33',
10531             'TAP::Parser::Result::YAML'=> '3.33',
10532             'TAP::Parser::ResultFactory'=> '3.33',
10533             'TAP::Parser::Scheduler'=> '3.33',
10534             'TAP::Parser::Scheduler::Job'=> '3.33',
10535             'TAP::Parser::Scheduler::Spinner'=> '3.33',
10536             'TAP::Parser::Source' => '3.33',
10537             'TAP::Parser::SourceHandler'=> '3.33',
10538             'TAP::Parser::SourceHandler::Executable'=> '3.33',
10539             'TAP::Parser::SourceHandler::File'=> '3.33',
10540             'TAP::Parser::SourceHandler::Handle'=> '3.33',
10541             'TAP::Parser::SourceHandler::Perl'=> '3.33',
10542             'TAP::Parser::SourceHandler::RawTAP'=> '3.33',
10543             'TAP::Parser::YAMLish::Reader'=> '3.33',
10544             'TAP::Parser::YAMLish::Writer'=> '3.33',
10545             'Term::ReadLine' => '1.15',
10546             'Test::Builder' => '1.001006',
10547             'Test::Builder::Module' => '1.001006',
10548             'Test::Builder::Tester' => '1.24',
10549             'Test::Builder::Tester::Color'=> '1.24',
10550             'Test::Harness' => '3.33',
10551             'Test::More' => '1.001006',
10552             'Test::Simple' => '1.001006',
10553             'Time::Piece' => '1.29',
10554             'Time::Seconds' => '1.29',
10555             'XS::APItest' => '0.64',
10556             '_charnames' => '1.42',
10557             'attributes' => '0.23',
10558             'bigint' => '0.37',
10559             'bignum' => '0.38',
10560             'bigrat' => '0.37',
10561             'constant' => '1.32',
10562             'experimental' => '0.010',
10563             'overload' => '1.23',
10564             'threads' => '1.96',
10565             'version' => '0.9909',
10566             'version::regex' => '0.9909',
10567             'version::vpp' => '0.9909',
10568             },
10569             removed => {
10570             }
10571             },
10572             5.021005 => {
10573             delta_from => 5.021004,
10574             changed => {
10575             'B' => '1.52',
10576             'B::Concise' => '0.994',
10577             'B::Debug' => '1.22',
10578             'B::Deparse' => '1.29',
10579             'B::Op_private' => '5.021005',
10580             'CPAN::Meta' => '2.142690',
10581             'CPAN::Meta::Converter' => '2.142690',
10582             'CPAN::Meta::Feature' => '2.142690',
10583             'CPAN::Meta::History' => '2.142690',
10584             'CPAN::Meta::Merge' => '2.142690',
10585             'CPAN::Meta::Prereqs' => '2.142690',
10586             'CPAN::Meta::Spec' => '2.142690',
10587             'CPAN::Meta::Validator' => '2.142690',
10588             'Compress::Raw::Bzip2' => '2.066',
10589             'Compress::Raw::Zlib' => '2.066',
10590             'Compress::Zlib' => '2.066',
10591             'Config' => '5.021005',
10592             'Cwd' => '3.51',
10593             'DynaLoader' => '1.27',
10594             'Errno' => '1.21',
10595             'ExtUtils::CBuilder' => '0.280220',
10596             'ExtUtils::CBuilder::Base'=> '0.280220',
10597             'ExtUtils::CBuilder::Platform::Unix'=> '0.280220',
10598             'ExtUtils::CBuilder::Platform::VMS'=> '0.280220',
10599             'ExtUtils::CBuilder::Platform::Windows'=> '0.280220',
10600             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220',
10601             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220',
10602             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220',
10603             'ExtUtils::CBuilder::Platform::aix'=> '0.280220',
10604             'ExtUtils::CBuilder::Platform::android'=> '0.280220',
10605             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220',
10606             'ExtUtils::CBuilder::Platform::darwin'=> '0.280220',
10607             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220',
10608             'ExtUtils::CBuilder::Platform::os2'=> '0.280220',
10609             'ExtUtils::Miniperl' => '1.03',
10610             'Fcntl' => '1.13',
10611             'File::Find' => '1.29',
10612             'File::Spec' => '3.51',
10613             'File::Spec::Cygwin' => '3.51',
10614             'File::Spec::Epoc' => '3.51',
10615             'File::Spec::Functions' => '3.51',
10616             'File::Spec::Mac' => '3.51',
10617             'File::Spec::OS2' => '3.51',
10618             'File::Spec::Unix' => '3.51',
10619             'File::Spec::VMS' => '3.51',
10620             'File::Spec::Win32' => '3.51',
10621             'HTTP::Tiny' => '0.050',
10622             'IO::Compress::Adapter::Bzip2'=> '2.066',
10623             'IO::Compress::Adapter::Deflate'=> '2.066',
10624             'IO::Compress::Adapter::Identity'=> '2.066',
10625             'IO::Compress::Base' => '2.066',
10626             'IO::Compress::Base::Common'=> '2.066',
10627             'IO::Compress::Bzip2' => '2.066',
10628             'IO::Compress::Deflate' => '2.066',
10629             'IO::Compress::Gzip' => '2.066',
10630             'IO::Compress::Gzip::Constants'=> '2.066',
10631             'IO::Compress::RawDeflate'=> '2.066',
10632             'IO::Compress::Zip' => '2.066',
10633             'IO::Compress::Zip::Constants'=> '2.066',
10634             'IO::Compress::Zlib::Constants'=> '2.066',
10635             'IO::Compress::Zlib::Extra'=> '2.066',
10636             'IO::Uncompress::Adapter::Bunzip2'=> '2.066',
10637             'IO::Uncompress::Adapter::Identity'=> '2.066',
10638             'IO::Uncompress::Adapter::Inflate'=> '2.066',
10639             'IO::Uncompress::AnyInflate'=> '2.066',
10640             'IO::Uncompress::AnyUncompress'=> '2.066',
10641             'IO::Uncompress::Base' => '2.066',
10642             'IO::Uncompress::Bunzip2'=> '2.066',
10643             'IO::Uncompress::Gunzip'=> '2.066',
10644             'IO::Uncompress::Inflate'=> '2.066',
10645             'IO::Uncompress::RawInflate'=> '2.066',
10646             'IO::Uncompress::Unzip' => '2.066',
10647             'JSON::PP' => '2.27300',
10648             'Module::CoreList' => '5.20141020',
10649             'Module::CoreList::TieHashDelta'=> '5.20141020',
10650             'Module::CoreList::Utils'=> '5.20141020',
10651             'Net::Cmd' => '3.02',
10652             'Net::Config' => '3.02',
10653             'Net::Domain' => '3.02',
10654             'Net::FTP' => '3.02',
10655             'Net::FTP::A' => '3.02',
10656             'Net::FTP::E' => '3.02',
10657             'Net::FTP::I' => '3.02',
10658             'Net::FTP::L' => '3.02',
10659             'Net::FTP::dataconn' => '3.02',
10660             'Net::NNTP' => '3.02',
10661             'Net::Netrc' => '3.02',
10662             'Net::POP3' => '3.02',
10663             'Net::SMTP' => '3.02',
10664             'Net::Time' => '3.02',
10665             'Opcode' => '1.29',
10666             'POSIX' => '1.45',
10667             'Socket' => '2.016',
10668             'Test::Builder' => '1.001008',
10669             'Test::Builder::Module' => '1.001008',
10670             'Test::More' => '1.001008',
10671             'Test::Simple' => '1.001008',
10672             'XS::APItest' => '0.65',
10673             'XSLoader' => '0.18',
10674             'attributes' => '0.24',
10675             'experimental' => '0.012',
10676             'feature' => '1.38',
10677             'perlfaq' => '5.0150046',
10678             're' => '0.27',
10679             'threads::shared' => '1.47',
10680             'warnings' => '1.28',
10681             'warnings::register' => '1.04',
10682             },
10683             removed => {
10684             }
10685             },
10686             5.021006 => {
10687             delta_from => 5.021005,
10688             changed => {
10689             'App::Prove' => '3.34',
10690             'App::Prove::State' => '3.34',
10691             'App::Prove::State::Result'=> '3.34',
10692             'App::Prove::State::Result::Test'=> '3.34',
10693             'B' => '1.53',
10694             'B::Concise' => '0.995',
10695             'B::Deparse' => '1.30',
10696             'B::Op_private' => '5.021006',
10697             'CPAN::Meta' => '2.143240',
10698             'CPAN::Meta::Converter' => '2.143240',
10699             'CPAN::Meta::Feature' => '2.143240',
10700             'CPAN::Meta::History' => '2.143240',
10701             'CPAN::Meta::Merge' => '2.143240',
10702             'CPAN::Meta::Prereqs' => '2.143240',
10703             'CPAN::Meta::Requirements'=> '2.130',
10704             'CPAN::Meta::Spec' => '2.143240',
10705             'CPAN::Meta::Validator' => '2.143240',
10706             'Config' => '5.021006',
10707             'Devel::Peek' => '1.19',
10708             'Digest::SHA' => '5.93',
10709             'DynaLoader' => '1.28',
10710             'Encode' => '2.64',
10711             'Exporter' => '5.72',
10712             'Exporter::Heavy' => '5.72',
10713             'ExtUtils::Command::MM' => '7.02',
10714             'ExtUtils::Liblist' => '7.02',
10715             'ExtUtils::Liblist::Kid'=> '7.02',
10716             'ExtUtils::MM' => '7.02',
10717             'ExtUtils::MM_AIX' => '7.02',
10718             'ExtUtils::MM_Any' => '7.02',
10719             'ExtUtils::MM_BeOS' => '7.02',
10720             'ExtUtils::MM_Cygwin' => '7.02',
10721             'ExtUtils::MM_DOS' => '7.02',
10722             'ExtUtils::MM_Darwin' => '7.02',
10723             'ExtUtils::MM_MacOS' => '7.02',
10724             'ExtUtils::MM_NW5' => '7.02',
10725             'ExtUtils::MM_OS2' => '7.02',
10726             'ExtUtils::MM_QNX' => '7.02',
10727             'ExtUtils::MM_UWIN' => '7.02',
10728             'ExtUtils::MM_Unix' => '7.02',
10729             'ExtUtils::MM_VMS' => '7.02',
10730             'ExtUtils::MM_VOS' => '7.02',
10731             'ExtUtils::MM_Win32' => '7.02',
10732             'ExtUtils::MM_Win95' => '7.02',
10733             'ExtUtils::MY' => '7.02',
10734             'ExtUtils::MakeMaker' => '7.02',
10735             'ExtUtils::MakeMaker::Config'=> '7.02',
10736             'ExtUtils::MakeMaker::Locale'=> '7.02',
10737             'ExtUtils::MakeMaker::version'=> '7.02',
10738             'ExtUtils::MakeMaker::version::regex'=> '7.02',
10739             'ExtUtils::MakeMaker::version::vpp'=> '7.02',
10740             'ExtUtils::Manifest' => '1.69',
10741             'ExtUtils::Mkbootstrap' => '7.02',
10742             'ExtUtils::Mksymlists' => '7.02',
10743             'ExtUtils::ParseXS' => '3.26',
10744             'ExtUtils::ParseXS::Constants'=> '3.26',
10745             'ExtUtils::ParseXS::CountLines'=> '3.26',
10746             'ExtUtils::ParseXS::Eval'=> '3.26',
10747             'ExtUtils::ParseXS::Utilities'=> '3.26',
10748             'ExtUtils::testlib' => '7.02',
10749             'File::Spec::VMS' => '3.52',
10750             'HTTP::Tiny' => '0.051',
10751             'I18N::Langinfo' => '0.12',
10752             'IO::Socket' => '1.38',
10753             'Module::CoreList' => '5.20141120',
10754             'Module::CoreList::TieHashDelta'=> '5.20141120',
10755             'Module::CoreList::Utils'=> '5.20141120',
10756             'POSIX' => '1.46',
10757             'PerlIO::encoding' => '0.20',
10758             'PerlIO::scalar' => '0.20',
10759             'TAP::Base' => '3.34',
10760             'TAP::Formatter::Base' => '3.34',
10761             'TAP::Formatter::Color' => '3.34',
10762             'TAP::Formatter::Console'=> '3.34',
10763             'TAP::Formatter::Console::ParallelSession'=> '3.34',
10764             'TAP::Formatter::Console::Session'=> '3.34',
10765             'TAP::Formatter::File' => '3.34',
10766             'TAP::Formatter::File::Session'=> '3.34',
10767             'TAP::Formatter::Session'=> '3.34',
10768             'TAP::Harness' => '3.34',
10769             'TAP::Harness::Env' => '3.34',
10770             'TAP::Object' => '3.34',
10771             'TAP::Parser' => '3.34',
10772             'TAP::Parser::Aggregator'=> '3.34',
10773             'TAP::Parser::Grammar' => '3.34',
10774             'TAP::Parser::Iterator' => '3.34',
10775             'TAP::Parser::Iterator::Array'=> '3.34',
10776             'TAP::Parser::Iterator::Process'=> '3.34',
10777             'TAP::Parser::Iterator::Stream'=> '3.34',
10778             'TAP::Parser::IteratorFactory'=> '3.34',
10779             'TAP::Parser::Multiplexer'=> '3.34',
10780             'TAP::Parser::Result' => '3.34',
10781             'TAP::Parser::Result::Bailout'=> '3.34',
10782             'TAP::Parser::Result::Comment'=> '3.34',
10783             'TAP::Parser::Result::Plan'=> '3.34',
10784             'TAP::Parser::Result::Pragma'=> '3.34',
10785             'TAP::Parser::Result::Test'=> '3.34',
10786             'TAP::Parser::Result::Unknown'=> '3.34',
10787             'TAP::Parser::Result::Version'=> '3.34',
10788             'TAP::Parser::Result::YAML'=> '3.34',
10789             'TAP::Parser::ResultFactory'=> '3.34',
10790             'TAP::Parser::Scheduler'=> '3.34',
10791             'TAP::Parser::Scheduler::Job'=> '3.34',
10792             'TAP::Parser::Scheduler::Spinner'=> '3.34',
10793             'TAP::Parser::Source' => '3.34',
10794             'TAP::Parser::SourceHandler'=> '3.34',
10795             'TAP::Parser::SourceHandler::Executable'=> '3.34',
10796             'TAP::Parser::SourceHandler::File'=> '3.34',
10797             'TAP::Parser::SourceHandler::Handle'=> '3.34',
10798             'TAP::Parser::SourceHandler::Perl'=> '3.34',
10799             'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
10800             'TAP::Parser::YAMLish::Reader'=> '3.34',
10801             'TAP::Parser::YAMLish::Writer'=> '3.34',
10802             'Test::Builder' => '1.301001_075',
10803             'Test::Builder::Module' => '1.301001_075',
10804             'Test::Builder::Tester' => '1.301001_075',
10805             'Test::Builder::Tester::Color'=> '1.301001_075',
10806             'Test::Harness' => '3.34',
10807             'Test::More' => '1.301001_075',
10808             'Test::More::DeepCheck' => undef,
10809             'Test::More::DeepCheck::Strict'=> undef,
10810             'Test::More::DeepCheck::Tolerant'=> undef,
10811             'Test::More::Tools' => undef,
10812             'Test::MostlyLike' => undef,
10813             'Test::Simple' => '1.301001_075',
10814             'Test::Stream' => '1.301001_075',
10815             'Test::Stream::ArrayBase'=> undef,
10816             'Test::Stream::ArrayBase::Meta'=> undef,
10817             'Test::Stream::Carp' => undef,
10818             'Test::Stream::Context' => undef,
10819             'Test::Stream::Event' => undef,
10820             'Test::Stream::Event::Bail'=> undef,
10821             'Test::Stream::Event::Child'=> undef,
10822             'Test::Stream::Event::Diag'=> undef,
10823             'Test::Stream::Event::Finish'=> undef,
10824             'Test::Stream::Event::Note'=> undef,
10825             'Test::Stream::Event::Ok'=> undef,
10826             'Test::Stream::Event::Plan'=> undef,
10827             'Test::Stream::Event::Subtest'=> undef,
10828             'Test::Stream::ExitMagic'=> undef,
10829             'Test::Stream::ExitMagic::Context'=> undef,
10830             'Test::Stream::Exporter'=> undef,
10831             'Test::Stream::Exporter::Meta'=> undef,
10832             'Test::Stream::IOSets' => undef,
10833             'Test::Stream::Meta' => undef,
10834             'Test::Stream::PackageUtil'=> undef,
10835             'Test::Stream::Tester' => undef,
10836             'Test::Stream::Tester::Checks'=> undef,
10837             'Test::Stream::Tester::Checks::Event'=> undef,
10838             'Test::Stream::Tester::Events'=> undef,
10839             'Test::Stream::Tester::Events::Event'=> undef,
10840             'Test::Stream::Tester::Grab'=> undef,
10841             'Test::Stream::Threads' => undef,
10842             'Test::Stream::Toolset' => undef,
10843             'Test::Stream::Util' => undef,
10844             'Test::Tester' => '1.301001_075',
10845             'Test::Tester::Capture' => undef,
10846             'Test::use::ok' => '1.301001_075',
10847             'Unicode::UCD' => '0.59',
10848             'XS::APItest' => '0.68',
10849             'XSLoader' => '0.19',
10850             'experimental' => '0.013',
10851             'locale' => '1.05',
10852             'ok' => '1.301001_075',
10853             'overload' => '1.24',
10854             're' => '0.28',
10855             'warnings' => '1.29',
10856             },
10857             removed => {
10858             }
10859             },
10860             5.021007 => {
10861             delta_from => 5.021006,
10862             changed => {
10863             'Archive::Tar' => '2.04',
10864             'Archive::Tar::Constant'=> '2.04',
10865             'Archive::Tar::File' => '2.04',
10866             'B' => '1.54',
10867             'B::Concise' => '0.996',
10868             'B::Deparse' => '1.31',
10869             'B::Op_private' => '5.021007',
10870             'B::Showlex' => '1.05',
10871             'Compress::Raw::Bzip2' => '2.067',
10872             'Compress::Raw::Zlib' => '2.067',
10873             'Compress::Zlib' => '2.067',
10874             'Config' => '5.021007',
10875             'Cwd' => '3.54',
10876             'DB_File' => '1.834',
10877             'Data::Dumper' => '2.155',
10878             'Devel::PPPort' => '3.25',
10879             'Devel::Peek' => '1.20',
10880             'DynaLoader' => '1.29',
10881             'Encode' => '2.67',
10882             'Errno' => '1.22',
10883             'ExtUtils::CBuilder' => '0.280221',
10884             'ExtUtils::CBuilder::Base'=> '0.280221',
10885             'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
10886             'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
10887             'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
10888             'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
10889             'ExtUtils::CBuilder::Platform::android'=> '0.280221',
10890             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
10891             'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
10892             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
10893             'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
10894             'ExtUtils::Command::MM' => '7.04',
10895             'ExtUtils::Liblist' => '7.04',
10896             'ExtUtils::Liblist::Kid'=> '7.04',
10897             'ExtUtils::MM' => '7.04',
10898             'ExtUtils::MM_AIX' => '7.04',
10899             'ExtUtils::MM_Any' => '7.04',
10900             'ExtUtils::MM_BeOS' => '7.04',
10901             'ExtUtils::MM_Cygwin' => '7.04',
10902             'ExtUtils::MM_DOS' => '7.04',
10903             'ExtUtils::MM_Darwin' => '7.04',
10904             'ExtUtils::MM_MacOS' => '7.04',
10905             'ExtUtils::MM_NW5' => '7.04',
10906             'ExtUtils::MM_OS2' => '7.04',
10907             'ExtUtils::MM_QNX' => '7.04',
10908             'ExtUtils::MM_UWIN' => '7.04',
10909             'ExtUtils::MM_Unix' => '7.04',
10910             'ExtUtils::MM_VMS' => '7.04',
10911             'ExtUtils::MM_VOS' => '7.04',
10912             'ExtUtils::MM_Win32' => '7.04',
10913             'ExtUtils::MM_Win95' => '7.04',
10914             'ExtUtils::MY' => '7.04',
10915             'ExtUtils::MakeMaker' => '7.04',
10916             'ExtUtils::MakeMaker::Config'=> '7.04',
10917             'ExtUtils::MakeMaker::Locale'=> '7.04',
10918             'ExtUtils::MakeMaker::version'=> '7.04',
10919             'ExtUtils::MakeMaker::version::regex'=> '7.04',
10920             'ExtUtils::MakeMaker::version::vpp'=> '7.04',
10921             'ExtUtils::Mkbootstrap' => '7.04',
10922             'ExtUtils::Mksymlists' => '7.04',
10923             'ExtUtils::ParseXS' => '3.27',
10924             'ExtUtils::ParseXS::Constants'=> '3.27',
10925             'ExtUtils::ParseXS::CountLines'=> '3.27',
10926             'ExtUtils::ParseXS::Eval'=> '3.27',
10927             'ExtUtils::ParseXS::Utilities'=> '3.27',
10928             'ExtUtils::testlib' => '7.04',
10929             'File::Spec' => '3.53',
10930             'File::Spec::Cygwin' => '3.54',
10931             'File::Spec::Epoc' => '3.54',
10932             'File::Spec::Functions' => '3.54',
10933             'File::Spec::Mac' => '3.54',
10934             'File::Spec::OS2' => '3.54',
10935             'File::Spec::Unix' => '3.54',
10936             'File::Spec::VMS' => '3.54',
10937             'File::Spec::Win32' => '3.54',
10938             'Filter::Util::Call' => '1.51',
10939             'HTTP::Tiny' => '0.053',
10940             'IO' => '1.35',
10941             'IO::Compress::Adapter::Bzip2'=> '2.067',
10942             'IO::Compress::Adapter::Deflate'=> '2.067',
10943             'IO::Compress::Adapter::Identity'=> '2.067',
10944             'IO::Compress::Base' => '2.067',
10945             'IO::Compress::Base::Common'=> '2.067',
10946             'IO::Compress::Bzip2' => '2.067',
10947             'IO::Compress::Deflate' => '2.067',
10948             'IO::Compress::Gzip' => '2.067',
10949             'IO::Compress::Gzip::Constants'=> '2.067',
10950             'IO::Compress::RawDeflate'=> '2.067',
10951             'IO::Compress::Zip' => '2.067',
10952             'IO::Compress::Zip::Constants'=> '2.067',
10953             'IO::Compress::Zlib::Constants'=> '2.067',
10954             'IO::Compress::Zlib::Extra'=> '2.067',
10955             'IO::Socket::IP' => '0.34',
10956             'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
10957             'IO::Uncompress::Adapter::Identity'=> '2.067',
10958             'IO::Uncompress::Adapter::Inflate'=> '2.067',
10959             'IO::Uncompress::AnyInflate'=> '2.067',
10960             'IO::Uncompress::AnyUncompress'=> '2.067',
10961             'IO::Uncompress::Base' => '2.067',
10962             'IO::Uncompress::Bunzip2'=> '2.067',
10963             'IO::Uncompress::Gunzip'=> '2.067',
10964             'IO::Uncompress::Inflate'=> '2.067',
10965             'IO::Uncompress::RawInflate'=> '2.067',
10966             'IO::Uncompress::Unzip' => '2.067',
10967             'Locale::Codes' => '3.33',
10968             'Locale::Codes::Constants'=> '3.33',
10969             'Locale::Codes::Country'=> '3.33',
10970             'Locale::Codes::Country_Codes'=> '3.33',
10971             'Locale::Codes::Country_Retired'=> '3.33',
10972             'Locale::Codes::Currency'=> '3.33',
10973             'Locale::Codes::Currency_Codes'=> '3.33',
10974             'Locale::Codes::Currency_Retired'=> '3.33',
10975             'Locale::Codes::LangExt'=> '3.33',
10976             'Locale::Codes::LangExt_Codes'=> '3.33',
10977             'Locale::Codes::LangExt_Retired'=> '3.33',
10978             'Locale::Codes::LangFam'=> '3.33',
10979             'Locale::Codes::LangFam_Codes'=> '3.33',
10980             'Locale::Codes::LangFam_Retired'=> '3.33',
10981             'Locale::Codes::LangVar'=> '3.33',
10982             'Locale::Codes::LangVar_Codes'=> '3.33',
10983             'Locale::Codes::LangVar_Retired'=> '3.33',
10984             'Locale::Codes::Language'=> '3.33',
10985             'Locale::Codes::Language_Codes'=> '3.33',
10986             'Locale::Codes::Language_Retired'=> '3.33',
10987             'Locale::Codes::Script' => '3.33',
10988             'Locale::Codes::Script_Codes'=> '3.33',
10989             'Locale::Codes::Script_Retired'=> '3.33',
10990             'Locale::Country' => '3.33',
10991             'Locale::Currency' => '3.33',
10992             'Locale::Language' => '3.33',
10993             'Locale::Maketext' => '1.26',
10994             'Locale::Script' => '3.33',
10995             'Module::CoreList' => '5.20141220',
10996             'Module::CoreList::TieHashDelta'=> '5.20141220',
10997             'Module::CoreList::Utils'=> '5.20141220',
10998             'NDBM_File' => '1.14',
10999             'Net::Cmd' => '3.04',
11000             'Net::Config' => '3.04',
11001             'Net::Domain' => '3.04',
11002             'Net::FTP' => '3.04',
11003             'Net::FTP::A' => '3.04',
11004             'Net::FTP::E' => '3.04',
11005             'Net::FTP::I' => '3.04',
11006             'Net::FTP::L' => '3.04',
11007             'Net::FTP::dataconn' => '3.04',
11008             'Net::NNTP' => '3.04',
11009             'Net::Netrc' => '3.04',
11010             'Net::POP3' => '3.04',
11011             'Net::SMTP' => '3.04',
11012             'Net::Time' => '3.04',
11013             'Opcode' => '1.30',
11014             'POSIX' => '1.48',
11015             'PerlIO::scalar' => '0.21',
11016             'Pod::Escapes' => '1.07',
11017             'SDBM_File' => '1.12',
11018             'Storable' => '2.52',
11019             'Sys::Hostname' => '1.20',
11020             'Test::Builder' => '1.301001_090',
11021             'Test::Builder::Module' => '1.301001_090',
11022             'Test::Builder::Tester' => '1.301001_090',
11023             'Test::Builder::Tester::Color'=> '1.301001_090',
11024             'Test::CanFork' => undef,
11025             'Test::CanThread' => undef,
11026             'Test::More' => '1.301001_090',
11027             'Test::Simple' => '1.301001_090',
11028             'Test::Stream' => '1.301001_090',
11029             'Test::Stream::API' => undef,
11030             'Test::Stream::ForceExit'=> undef,
11031             'Test::Stream::Subtest' => undef,
11032             'Test::Tester' => '1.301001_090',
11033             'Test::use::ok' => '1.301001_090',
11034             'Unicode::Collate' => '1.09',
11035             'Unicode::Collate::CJK::Big5'=> '1.09',
11036             'Unicode::Collate::CJK::GB2312'=> '1.09',
11037             'Unicode::Collate::CJK::JISX0208'=> '1.09',
11038             'Unicode::Collate::CJK::Korean'=> '1.09',
11039             'Unicode::Collate::CJK::Pinyin'=> '1.09',
11040             'Unicode::Collate::CJK::Stroke'=> '1.09',
11041             'Unicode::Collate::CJK::Zhuyin'=> '1.09',
11042             'Unicode::Collate::Locale'=> '1.09',
11043             'XS::APItest' => '0.69',
11044             'XSLoader' => '0.20',
11045             '_charnames' => '1.43',
11046             'arybase' => '0.09',
11047             'charnames' => '1.43',
11048             'feature' => '1.39',
11049             'mro' => '1.17',
11050             'ok' => '1.301001_090',
11051             'strict' => '1.09',
11052             'threads' => '1.96_001',
11053             },
11054             removed => {
11055             }
11056             },
11057             5.021008 => {
11058             delta_from => 5.021007,
11059             changed => {
11060             'App::Prove' => '3.35',
11061             'App::Prove::State' => '3.35',
11062             'App::Prove::State::Result'=> '3.35',
11063             'App::Prove::State::Result::Test'=> '3.35',
11064             'B' => '1.55',
11065             'B::Deparse' => '1.32',
11066             'B::Op_private' => '5.021008',
11067             'CPAN::Meta::Requirements'=> '2.131',
11068             'Compress::Raw::Bzip2' => '2.068',
11069             'Compress::Raw::Zlib' => '2.068',
11070             'Compress::Zlib' => '2.068',
11071             'Config' => '5.021008',
11072             'DB_File' => '1.835',
11073             'Data::Dumper' => '2.156',
11074             'Devel::PPPort' => '3.28',
11075             'Devel::Peek' => '1.21',
11076             'Digest::MD5' => '2.54',
11077             'Digest::SHA' => '5.95',
11078             'DynaLoader' => '1.30',
11079             'ExtUtils::Command' => '1.20',
11080             'ExtUtils::Manifest' => '1.70',
11081             'Fatal' => '2.26',
11082             'File::Glob' => '1.24',
11083             'Filter::Util::Call' => '1.54',
11084             'Getopt::Long' => '2.43',
11085             'IO::Compress::Adapter::Bzip2'=> '2.068',
11086             'IO::Compress::Adapter::Deflate'=> '2.068',
11087             'IO::Compress::Adapter::Identity'=> '2.068',
11088             'IO::Compress::Base' => '2.068',
11089             'IO::Compress::Base::Common'=> '2.068',
11090             'IO::Compress::Bzip2' => '2.068',
11091             'IO::Compress::Deflate' => '2.068',
11092             'IO::Compress::Gzip' => '2.068',
11093             'IO::Compress::Gzip::Constants'=> '2.068',
11094             'IO::Compress::RawDeflate'=> '2.068',
11095             'IO::Compress::Zip' => '2.068',
11096             'IO::Compress::Zip::Constants'=> '2.068',
11097             'IO::Compress::Zlib::Constants'=> '2.068',
11098             'IO::Compress::Zlib::Extra'=> '2.068',
11099             'IO::Socket::IP' => '0.36',
11100             'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
11101             'IO::Uncompress::Adapter::Identity'=> '2.068',
11102             'IO::Uncompress::Adapter::Inflate'=> '2.068',
11103             'IO::Uncompress::AnyInflate'=> '2.068',
11104             'IO::Uncompress::AnyUncompress'=> '2.068',
11105             'IO::Uncompress::Base' => '2.068',
11106             'IO::Uncompress::Bunzip2'=> '2.068',
11107             'IO::Uncompress::Gunzip'=> '2.068',
11108             'IO::Uncompress::Inflate'=> '2.068',
11109             'IO::Uncompress::RawInflate'=> '2.068',
11110             'IO::Uncompress::Unzip' => '2.068',
11111             'MIME::Base64' => '3.15',
11112             'Module::CoreList' => '5.20150220',
11113             'Module::CoreList::TieHashDelta'=> '5.20150220',
11114             'Module::CoreList::Utils'=> '5.20150220',
11115             'Module::Load::Conditional'=> '0.64',
11116             'Module::Metadata' => '1.000026',
11117             'Net::Cmd' => '3.05',
11118             'Net::Config' => '3.05',
11119             'Net::Domain' => '3.05',
11120             'Net::FTP' => '3.05',
11121             'Net::FTP::A' => '3.05',
11122             'Net::FTP::E' => '3.05',
11123             'Net::FTP::I' => '3.05',
11124             'Net::FTP::L' => '3.05',
11125             'Net::FTP::dataconn' => '3.05',
11126             'Net::NNTP' => '3.05',
11127             'Net::Netrc' => '3.05',
11128             'Net::POP3' => '3.05',
11129             'Net::SMTP' => '3.05',
11130             'Net::Time' => '3.05',
11131             'Opcode' => '1.31',
11132             'POSIX' => '1.49',
11133             'PerlIO::encoding' => '0.21',
11134             'Pod::Simple' => '3.29',
11135             'Pod::Simple::BlackBox' => '3.29',
11136             'Pod::Simple::Checker' => '3.29',
11137             'Pod::Simple::Debug' => '3.29',
11138             'Pod::Simple::DumpAsText'=> '3.29',
11139             'Pod::Simple::DumpAsXML'=> '3.29',
11140             'Pod::Simple::HTML' => '3.29',
11141             'Pod::Simple::HTMLBatch'=> '3.29',
11142             'Pod::Simple::LinkSection'=> '3.29',
11143             'Pod::Simple::Methody' => '3.29',
11144             'Pod::Simple::Progress' => '3.29',
11145             'Pod::Simple::PullParser'=> '3.29',
11146             'Pod::Simple::PullParserEndToken'=> '3.29',
11147             'Pod::Simple::PullParserStartToken'=> '3.29',
11148             'Pod::Simple::PullParserTextToken'=> '3.29',
11149             'Pod::Simple::PullParserToken'=> '3.29',
11150             'Pod::Simple::RTF' => '3.29',
11151             'Pod::Simple::Search' => '3.29',
11152             'Pod::Simple::SimpleTree'=> '3.29',
11153             'Pod::Simple::Text' => '3.29',
11154             'Pod::Simple::TextContent'=> '3.29',
11155             'Pod::Simple::TiedOutFH'=> '3.29',
11156             'Pod::Simple::Transcode'=> '3.29',
11157             'Pod::Simple::TranscodeDumb'=> '3.29',
11158             'Pod::Simple::TranscodeSmart'=> '3.29',
11159             'Pod::Simple::XHTML' => '3.29',
11160             'Pod::Simple::XMLOutStream'=> '3.29',
11161             'SDBM_File' => '1.13',
11162             'Safe' => '2.39',
11163             'TAP::Base' => '3.35',
11164             'TAP::Formatter::Base' => '3.35',
11165             'TAP::Formatter::Color' => '3.35',
11166             'TAP::Formatter::Console'=> '3.35',
11167             'TAP::Formatter::Console::ParallelSession'=> '3.35',
11168             'TAP::Formatter::Console::Session'=> '3.35',
11169             'TAP::Formatter::File' => '3.35',
11170             'TAP::Formatter::File::Session'=> '3.35',
11171             'TAP::Formatter::Session'=> '3.35',
11172             'TAP::Harness' => '3.35',
11173             'TAP::Harness::Env' => '3.35',
11174             'TAP::Object' => '3.35',
11175             'TAP::Parser' => '3.35',
11176             'TAP::Parser::Aggregator'=> '3.35',
11177             'TAP::Parser::Grammar' => '3.35',
11178             'TAP::Parser::Iterator' => '3.35',
11179             'TAP::Parser::Iterator::Array'=> '3.35',
11180             'TAP::Parser::Iterator::Process'=> '3.35',
11181             'TAP::Parser::Iterator::Stream'=> '3.35',
11182             'TAP::Parser::IteratorFactory'=> '3.35',
11183             'TAP::Parser::Multiplexer'=> '3.35',
11184             'TAP::Parser::Result' => '3.35',
11185             'TAP::Parser::Result::Bailout'=> '3.35',
11186             'TAP::Parser::Result::Comment'=> '3.35',
11187             'TAP::Parser::Result::Plan'=> '3.35',
11188             'TAP::Parser::Result::Pragma'=> '3.35',
11189             'TAP::Parser::Result::Test'=> '3.35',
11190             'TAP::Parser::Result::Unknown'=> '3.35',
11191             'TAP::Parser::Result::Version'=> '3.35',
11192             'TAP::Parser::Result::YAML'=> '3.35',
11193             'TAP::Parser::ResultFactory'=> '3.35',
11194             'TAP::Parser::Scheduler'=> '3.35',
11195             'TAP::Parser::Scheduler::Job'=> '3.35',
11196             'TAP::Parser::Scheduler::Spinner'=> '3.35',
11197             'TAP::Parser::Source' => '3.35',
11198             'TAP::Parser::SourceHandler'=> '3.35',
11199             'TAP::Parser::SourceHandler::Executable'=> '3.35',
11200             'TAP::Parser::SourceHandler::File'=> '3.35',
11201             'TAP::Parser::SourceHandler::Handle'=> '3.35',
11202             'TAP::Parser::SourceHandler::Perl'=> '3.35',
11203             'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
11204             'TAP::Parser::YAMLish::Reader'=> '3.35',
11205             'TAP::Parser::YAMLish::Writer'=> '3.35',
11206             'Test::Builder' => '1.301001_097',
11207             'Test::Builder::Module' => '1.301001_097',
11208             'Test::Builder::Tester' => '1.301001_097',
11209             'Test::Builder::Tester::Color'=> '1.301001_097',
11210             'Test::Harness' => '3.35',
11211             'Test::More' => '1.301001_097',
11212             'Test::Simple' => '1.301001_097',
11213             'Test::Stream' => '1.301001_097',
11214             'Test::Stream::Block' => undef,
11215             'Test::Tester' => '1.301001_097',
11216             'Test::Tester::CaptureRunner'=> undef,
11217             'Test::Tester::Delegate'=> undef,
11218             'Test::use::ok' => '1.301001_097',
11219             'Unicode::Collate' => '1.10',
11220             'Unicode::Collate::CJK::Big5'=> '1.10',
11221             'Unicode::Collate::CJK::GB2312'=> '1.10',
11222             'Unicode::Collate::CJK::JISX0208'=> '1.10',
11223             'Unicode::Collate::CJK::Korean'=> '1.10',
11224             'Unicode::Collate::CJK::Pinyin'=> '1.10',
11225             'Unicode::Collate::CJK::Stroke'=> '1.10',
11226             'Unicode::Collate::CJK::Zhuyin'=> '1.10',
11227             'Unicode::Collate::Locale'=> '1.10',
11228             'VMS::DCLsym' => '1.06',
11229             'XS::APItest' => '0.70',
11230             'arybase' => '0.10',
11231             'attributes' => '0.25',
11232             'autodie' => '2.26',
11233             'autodie::Scope::Guard' => '2.26',
11234             'autodie::Scope::GuardStack'=> '2.26',
11235             'autodie::ScopeUtil' => '2.26',
11236             'autodie::exception' => '2.26',
11237             'autodie::exception::system'=> '2.26',
11238             'autodie::hints' => '2.26',
11239             'autodie::skip' => '2.26',
11240             'ok' => '1.301001_097',
11241             're' => '0.30',
11242             'warnings' => '1.30',
11243             },
11244             removed => {
11245             }
11246             },
11247             5.020002 => {
11248             delta_from => 5.020001,
11249             changed => {
11250             'CPAN::Author' => '5.5002',
11251             'CPAN::CacheMgr' => '5.5002',
11252             'CPAN::FTP' => '5.5006',
11253             'CPAN::HTTP::Client' => '1.9601',
11254             'CPAN::HandleConfig' => '5.5005',
11255             'CPAN::Index' => '1.9601',
11256             'CPAN::LWP::UserAgent' => '1.9601',
11257             'CPAN::Mirrors' => '1.9601',
11258             'Config' => '5.020002',
11259             'Cwd' => '3.48_01',
11260             'Data::Dumper' => '2.151_01',
11261             'Errno' => '1.20_05',
11262             'File::Spec' => '3.48_01',
11263             'File::Spec::Cygwin' => '3.48_01',
11264             'File::Spec::Epoc' => '3.48_01',
11265             'File::Spec::Functions' => '3.48_01',
11266             'File::Spec::Mac' => '3.48_01',
11267             'File::Spec::OS2' => '3.48_01',
11268             'File::Spec::Unix' => '3.48_01',
11269             'File::Spec::VMS' => '3.48_01',
11270             'File::Spec::Win32' => '3.48_01',
11271             'IO::Socket' => '1.38',
11272             'Module::CoreList' => '5.20150214',
11273             'Module::CoreList::TieHashDelta'=> '5.20150214',
11274             'Module::CoreList::Utils'=> '5.20150214',
11275             'PerlIO::scalar' => '0.18_01',
11276             'Pod::PlainText' => '2.07',
11277             'Storable' => '2.49_01',
11278             'VMS::DCLsym' => '1.05_01',
11279             'VMS::Stdio' => '2.41',
11280             'attributes' => '0.23',
11281             'feature' => '1.36_01',
11282             },
11283             removed => {
11284             }
11285             },
11286             5.021009 => {
11287             delta_from => 5.021008,
11288             changed => {
11289             'B' => '1.56',
11290             'B::Debug' => '1.23',
11291             'B::Deparse' => '1.33',
11292             'B::Op_private' => '5.021009',
11293             'Benchmark' => '1.20',
11294             'CPAN::Author' => '5.5002',
11295             'CPAN::CacheMgr' => '5.5002',
11296             'CPAN::FTP' => '5.5006',
11297             'CPAN::HTTP::Client' => '1.9601',
11298             'CPAN::HandleConfig' => '5.5005',
11299             'CPAN::Index' => '1.9601',
11300             'CPAN::LWP::UserAgent' => '1.9601',
11301             'CPAN::Meta::Requirements'=> '2.132',
11302             'CPAN::Mirrors' => '1.9601',
11303             'Carp' => '1.35',
11304             'Carp::Heavy' => '1.35',
11305             'Config' => '5.021009',
11306             'Config::Perl::V' => '0.23',
11307             'Data::Dumper' => '2.157',
11308             'Devel::Peek' => '1.22',
11309             'DynaLoader' => '1.31',
11310             'Encode' => '2.70',
11311             'Encode::MIME::Header' => '2.16',
11312             'Errno' => '1.23',
11313             'ExtUtils::Miniperl' => '1.04',
11314             'HTTP::Tiny' => '0.054',
11315             'Module::CoreList' => '5.20150220',
11316             'Module::CoreList::TieHashDelta'=> '5.20150220',
11317             'Module::CoreList::Utils'=> '5.20150220',
11318             'Opcode' => '1.32',
11319             'POSIX' => '1.51',
11320             'Perl::OSType' => '1.008',
11321             'PerlIO::scalar' => '0.22',
11322             'Pod::Find' => '1.63',
11323             'Pod::InputObjects' => '1.63',
11324             'Pod::ParseUtils' => '1.63',
11325             'Pod::Parser' => '1.63',
11326             'Pod::Perldoc' => '3.25',
11327             'Pod::Perldoc::BaseTo' => '3.25',
11328             'Pod::Perldoc::GetOptsOO'=> '3.25',
11329             'Pod::Perldoc::ToANSI' => '3.25',
11330             'Pod::Perldoc::ToChecker'=> '3.25',
11331             'Pod::Perldoc::ToMan' => '3.25',
11332             'Pod::Perldoc::ToNroff' => '3.25',
11333             'Pod::Perldoc::ToPod' => '3.25',
11334             'Pod::Perldoc::ToRtf' => '3.25',
11335             'Pod::Perldoc::ToTerm' => '3.25',
11336             'Pod::Perldoc::ToText' => '3.25',
11337             'Pod::Perldoc::ToTk' => '3.25',
11338             'Pod::Perldoc::ToXml' => '3.25',
11339             'Pod::PlainText' => '2.07',
11340             'Pod::Select' => '1.63',
11341             'Socket' => '2.018',
11342             'Storable' => '2.53',
11343             'Test::Builder' => '1.301001_098',
11344             'Test::Builder::Module' => '1.301001_098',
11345             'Test::Builder::Tester' => '1.301001_098',
11346             'Test::Builder::Tester::Color'=> '1.301001_098',
11347             'Test::More' => '1.301001_098',
11348             'Test::Simple' => '1.301001_098',
11349             'Test::Stream' => '1.301001_098',
11350             'Test::Tester' => '1.301001_098',
11351             'Test::use::ok' => '1.301001_098',
11352             'Unicode::Collate' => '1.11',
11353             'Unicode::Collate::CJK::Big5'=> '1.11',
11354             'Unicode::Collate::CJK::GB2312'=> '1.11',
11355             'Unicode::Collate::CJK::JISX0208'=> '1.11',
11356             'Unicode::Collate::CJK::Korean'=> '1.11',
11357             'Unicode::Collate::CJK::Pinyin'=> '1.11',
11358             'Unicode::Collate::CJK::Stroke'=> '1.11',
11359             'Unicode::Collate::CJK::Zhuyin'=> '1.11',
11360             'Unicode::Collate::Locale'=> '1.11',
11361             'Unicode::UCD' => '0.61',
11362             'VMS::Stdio' => '2.41',
11363             'Win32' => '0.51',
11364             'Win32API::File' => '0.1202',
11365             'attributes' => '0.26',
11366             'bigint' => '0.39',
11367             'bignum' => '0.39',
11368             'bigrat' => '0.39',
11369             'constant' => '1.33',
11370             'encoding' => '2.13',
11371             'feature' => '1.40',
11372             'ok' => '1.301001_098',
11373             'overload' => '1.25',
11374             'perlfaq' => '5.021009',
11375             're' => '0.31',
11376             'threads::shared' => '1.48',
11377             'warnings' => '1.31',
11378             },
11379             removed => {
11380             }
11381             },
11382             5.021010 => {
11383             delta_from => 5.021009,
11384             changed => {
11385             'App::Cpan' => '1.63',
11386             'B' => '1.57',
11387             'B::Deparse' => '1.34',
11388             'B::Op_private' => '5.021010',
11389             'Benchmark' => '1.2',
11390             'CPAN' => '2.10',
11391             'CPAN::Distribution' => '2.04',
11392             'CPAN::FirstTime' => '5.5307',
11393             'CPAN::HTTP::Credentials'=> '1.9601',
11394             'CPAN::HandleConfig' => '5.5006',
11395             'CPAN::Meta' => '2.150001',
11396             'CPAN::Meta::Converter' => '2.150001',
11397             'CPAN::Meta::Feature' => '2.150001',
11398             'CPAN::Meta::History' => '2.150001',
11399             'CPAN::Meta::Merge' => '2.150001',
11400             'CPAN::Meta::Prereqs' => '2.150001',
11401             'CPAN::Meta::Spec' => '2.150001',
11402             'CPAN::Meta::Validator' => '2.150001',
11403             'CPAN::Module' => '5.5002',
11404             'CPAN::Plugin' => '0.95',
11405             'CPAN::Plugin::Specfile'=> '0.01',
11406             'CPAN::Shell' => '5.5005',
11407             'Carp' => '1.36',
11408             'Carp::Heavy' => '1.36',
11409             'Config' => '5.02101',
11410             'Cwd' => '3.55',
11411             'DB' => '1.08',
11412             'Data::Dumper' => '2.158',
11413             'Devel::PPPort' => '3.31',
11414             'DynaLoader' => '1.32',
11415             'Encode' => '2.72',
11416             'Encode::Alias' => '2.19',
11417             'File::Spec' => '3.55',
11418             'File::Spec::Cygwin' => '3.55',
11419             'File::Spec::Epoc' => '3.55',
11420             'File::Spec::Functions' => '3.55',
11421             'File::Spec::Mac' => '3.55',
11422             'File::Spec::OS2' => '3.55',
11423             'File::Spec::Unix' => '3.55',
11424             'File::Spec::VMS' => '3.55',
11425             'File::Spec::Win32' => '3.55',
11426             'Getopt::Long' => '2.45',
11427             'Locale::Codes' => '3.34',
11428             'Locale::Codes::Constants'=> '3.34',
11429             'Locale::Codes::Country'=> '3.34',
11430             'Locale::Codes::Country_Codes'=> '3.34',
11431             'Locale::Codes::Country_Retired'=> '3.34',
11432             'Locale::Codes::Currency'=> '3.34',
11433             'Locale::Codes::Currency_Codes'=> '3.34',
11434             'Locale::Codes::Currency_Retired'=> '3.34',
11435             'Locale::Codes::LangExt'=> '3.34',
11436             'Locale::Codes::LangExt_Codes'=> '3.34',
11437             'Locale::Codes::LangExt_Retired'=> '3.34',
11438             'Locale::Codes::LangFam'=> '3.34',
11439             'Locale::Codes::LangFam_Codes'=> '3.34',
11440             'Locale::Codes::LangFam_Retired'=> '3.34',
11441             'Locale::Codes::LangVar'=> '3.34',
11442             'Locale::Codes::LangVar_Codes'=> '3.34',
11443             'Locale::Codes::LangVar_Retired'=> '3.34',
11444             'Locale::Codes::Language'=> '3.34',
11445             'Locale::Codes::Language_Codes'=> '3.34',
11446             'Locale::Codes::Language_Retired'=> '3.34',
11447             'Locale::Codes::Script' => '3.34',
11448             'Locale::Codes::Script_Codes'=> '3.34',
11449             'Locale::Codes::Script_Retired'=> '3.34',
11450             'Locale::Country' => '3.34',
11451             'Locale::Currency' => '3.34',
11452             'Locale::Language' => '3.34',
11453             'Locale::Script' => '3.34',
11454             'Module::CoreList' => '5.20150320',
11455             'Module::CoreList::TieHashDelta'=> '5.20150320',
11456             'Module::CoreList::Utils'=> '5.20150320',
11457             'POSIX' => '1.52',
11458             'Pod::Functions' => '1.09',
11459             'Term::Complete' => '1.403',
11460             'Test::Builder' => '1.001014',
11461             'Test::Builder::IO::Scalar'=> '2.113',
11462             'Test::Builder::Module' => '1.001014',
11463             'Test::Builder::Tester' => '1.28',
11464             'Test::Builder::Tester::Color'=> '1.290001',
11465             'Test::More' => '1.001014',
11466             'Test::Simple' => '1.001014',
11467             'Test::Tester' => '0.114',
11468             'Test::use::ok' => '0.16',
11469             'Text::Balanced' => '2.03',
11470             'Text::ParseWords' => '3.30',
11471             'Unicode::Collate' => '1.12',
11472             'Unicode::Collate::CJK::Big5'=> '1.12',
11473             'Unicode::Collate::CJK::GB2312'=> '1.12',
11474             'Unicode::Collate::CJK::JISX0208'=> '1.12',
11475             'Unicode::Collate::CJK::Korean'=> '1.12',
11476             'Unicode::Collate::CJK::Pinyin'=> '1.12',
11477             'Unicode::Collate::CJK::Stroke'=> '1.12',
11478             'Unicode::Collate::CJK::Zhuyin'=> '1.12',
11479             'Unicode::Collate::Locale'=> '1.12',
11480             'XS::APItest' => '0.71',
11481             'encoding' => '2.14',
11482             'locale' => '1.06',
11483             'meta_notation' => undef,
11484             'ok' => '0.16',
11485             'parent' => '0.232',
11486             're' => '0.32',
11487             'sigtrap' => '1.08',
11488             'threads' => '2.01',
11489             'utf8' => '1.15',
11490             },
11491             removed => {
11492             'Test::CanFork' => 1,
11493             'Test::CanThread' => 1,
11494             'Test::More::DeepCheck' => 1,
11495             'Test::More::DeepCheck::Strict'=> 1,
11496             'Test::More::DeepCheck::Tolerant'=> 1,
11497             'Test::More::Tools' => 1,
11498             'Test::MostlyLike' => 1,
11499             'Test::Stream' => 1,
11500             'Test::Stream::API' => 1,
11501             'Test::Stream::ArrayBase'=> 1,
11502             'Test::Stream::ArrayBase::Meta'=> 1,
11503             'Test::Stream::Block' => 1,
11504             'Test::Stream::Carp' => 1,
11505             'Test::Stream::Context' => 1,
11506             'Test::Stream::Event' => 1,
11507             'Test::Stream::Event::Bail'=> 1,
11508             'Test::Stream::Event::Child'=> 1,
11509             'Test::Stream::Event::Diag'=> 1,
11510             'Test::Stream::Event::Finish'=> 1,
11511             'Test::Stream::Event::Note'=> 1,
11512             'Test::Stream::Event::Ok'=> 1,
11513             'Test::Stream::Event::Plan'=> 1,
11514             'Test::Stream::Event::Subtest'=> 1,
11515             'Test::Stream::ExitMagic'=> 1,
11516             'Test::Stream::ExitMagic::Context'=> 1,
11517             'Test::Stream::Exporter'=> 1,
11518             'Test::Stream::Exporter::Meta'=> 1,
11519             'Test::Stream::ForceExit'=> 1,
11520             'Test::Stream::IOSets' => 1,
11521             'Test::Stream::Meta' => 1,
11522             'Test::Stream::PackageUtil'=> 1,
11523             'Test::Stream::Subtest' => 1,
11524             'Test::Stream::Tester' => 1,
11525             'Test::Stream::Tester::Checks'=> 1,
11526             'Test::Stream::Tester::Checks::Event'=> 1,
11527             'Test::Stream::Tester::Events'=> 1,
11528             'Test::Stream::Tester::Events::Event'=> 1,
11529             'Test::Stream::Tester::Grab'=> 1,
11530             'Test::Stream::Threads' => 1,
11531             'Test::Stream::Toolset' => 1,
11532             'Test::Stream::Util' => 1,
11533             }
11534             },
11535             5.021011 => {
11536             delta_from => 5.021010,
11537             changed => {
11538             'B' => '1.58',
11539             'B::Deparse' => '1.35',
11540             'B::Op_private' => '5.021011',
11541             'CPAN' => '2.11',
11542             'Config' => '5.021011',
11543             'Config::Perl::V' => '0.24',
11544             'Cwd' => '3.56',
11545             'ExtUtils::Miniperl' => '1.05',
11546             'ExtUtils::ParseXS' => '3.28',
11547             'ExtUtils::ParseXS::Constants'=> '3.28',
11548             'ExtUtils::ParseXS::CountLines'=> '3.28',
11549             'ExtUtils::ParseXS::Eval'=> '3.28',
11550             'ExtUtils::ParseXS::Utilities'=> '3.28',
11551             'ExtUtils::Typemaps' => '3.28',
11552             'ExtUtils::Typemaps::Cmd'=> '3.28',
11553             'ExtUtils::Typemaps::InputMap'=> '3.28',
11554             'ExtUtils::Typemaps::OutputMap'=> '3.28',
11555             'ExtUtils::Typemaps::Type'=> '3.28',
11556             'File::Spec' => '3.56',
11557             'File::Spec::Cygwin' => '3.56',
11558             'File::Spec::Epoc' => '3.56',
11559             'File::Spec::Functions' => '3.56',
11560             'File::Spec::Mac' => '3.56',
11561             'File::Spec::OS2' => '3.56',
11562             'File::Spec::Unix' => '3.56',
11563             'File::Spec::VMS' => '3.56',
11564             'File::Spec::Win32' => '3.56',
11565             'IO::Socket::IP' => '0.37',
11566             'Module::CoreList' => '5.20150420',
11567             'Module::CoreList::TieHashDelta'=> '5.20150420',
11568             'Module::CoreList::Utils'=> '5.20150420',
11569             'PerlIO::mmap' => '0.014',
11570             'XS::APItest' => '0.72',
11571             'attributes' => '0.27',
11572             'if' => '0.0604',
11573             'utf8' => '1.16',
11574             'warnings' => '1.32',
11575             },
11576             removed => {
11577             }
11578             },
11579             5.022000 => {
11580             delta_from => 5.021011,
11581             changed => {
11582             'B::Op_private' => '5.022000',
11583             'Config' => '5.022',
11584             'ExtUtils::Command::MM' => '7.04_01',
11585             'ExtUtils::Liblist' => '7.04_01',
11586             'ExtUtils::Liblist::Kid'=> '7.04_01',
11587             'ExtUtils::MM' => '7.04_01',
11588             'ExtUtils::MM_AIX' => '7.04_01',
11589             'ExtUtils::MM_Any' => '7.04_01',
11590             'ExtUtils::MM_BeOS' => '7.04_01',
11591             'ExtUtils::MM_Cygwin' => '7.04_01',
11592             'ExtUtils::MM_DOS' => '7.04_01',
11593             'ExtUtils::MM_Darwin' => '7.04_01',
11594             'ExtUtils::MM_MacOS' => '7.04_01',
11595             'ExtUtils::MM_NW5' => '7.04_01',
11596             'ExtUtils::MM_OS2' => '7.04_01',
11597             'ExtUtils::MM_QNX' => '7.04_01',
11598             'ExtUtils::MM_UWIN' => '7.04_01',
11599             'ExtUtils::MM_Unix' => '7.04_01',
11600             'ExtUtils::MM_VMS' => '7.04_01',
11601             'ExtUtils::MM_VOS' => '7.04_01',
11602             'ExtUtils::MM_Win32' => '7.04_01',
11603             'ExtUtils::MM_Win95' => '7.04_01',
11604             'ExtUtils::MY' => '7.04_01',
11605             'ExtUtils::MakeMaker' => '7.04_01',
11606             'ExtUtils::MakeMaker::Config'=> '7.04_01',
11607             'ExtUtils::MakeMaker::Locale'=> '7.04_01',
11608             'ExtUtils::MakeMaker::version'=> '7.04_01',
11609             'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
11610             'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
11611             'ExtUtils::Mkbootstrap' => '7.04_01',
11612             'ExtUtils::Mksymlists' => '7.04_01',
11613             'ExtUtils::testlib' => '7.04_01',
11614             'Module::CoreList' => '5.20150520',
11615             'Module::CoreList::TieHashDelta'=> '5.20150520',
11616             'Module::CoreList::Utils'=> '5.20150520',
11617             'POSIX' => '1.53',
11618             'PerlIO::via::QuotedPrint'=> '0.08',
11619             'overload' => '1.26',
11620             'utf8' => '1.17',
11621             },
11622             removed => {
11623             }
11624             },
11625             5.023000 => {
11626             delta_from => 5.022000,
11627             changed => {
11628             'B::Op_private' => '5.023000',
11629             'CPAN::Meta' => '2.150005',
11630             'CPAN::Meta::Converter' => '2.150005',
11631             'CPAN::Meta::Feature' => '2.150005',
11632             'CPAN::Meta::History' => '2.150005',
11633             'CPAN::Meta::Merge' => '2.150005',
11634             'CPAN::Meta::Prereqs' => '2.150005',
11635             'CPAN::Meta::Requirements'=> '2.133',
11636             'CPAN::Meta::Spec' => '2.150005',
11637             'CPAN::Meta::Validator' => '2.150005',
11638             'CPAN::Meta::YAML' => '0.016',
11639             'Config' => '5.023',
11640             'Encode' => '2.73',
11641             'ExtUtils::CBuilder' => '0.280223',
11642             'ExtUtils::CBuilder::Base'=> '0.280223',
11643             'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
11644             'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
11645             'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
11646             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
11647             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
11648             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
11649             'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
11650             'ExtUtils::CBuilder::Platform::android'=> '0.280223',
11651             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
11652             'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
11653             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
11654             'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
11655             'Fatal' => '2.27',
11656             'Getopt::Long' => '2.46',
11657             'HTTP::Tiny' => '0.056',
11658             'List::Util' => '1.42_01',
11659             'List::Util::XS' => '1.42_01',
11660             'Locale::Codes' => '3.35',
11661             'Locale::Codes::Constants'=> '3.35',
11662             'Locale::Codes::Country'=> '3.35',
11663             'Locale::Codes::Country_Codes'=> '3.35',
11664             'Locale::Codes::Country_Retired'=> '3.35',
11665             'Locale::Codes::Currency'=> '3.35',
11666             'Locale::Codes::Currency_Codes'=> '3.35',
11667             'Locale::Codes::Currency_Retired'=> '3.35',
11668             'Locale::Codes::LangExt'=> '3.35',
11669             'Locale::Codes::LangExt_Codes'=> '3.35',
11670             'Locale::Codes::LangExt_Retired'=> '3.35',
11671             'Locale::Codes::LangFam'=> '3.35',
11672             'Locale::Codes::LangFam_Codes'=> '3.35',
11673             'Locale::Codes::LangFam_Retired'=> '3.35',
11674             'Locale::Codes::LangVar'=> '3.35',
11675             'Locale::Codes::LangVar_Codes'=> '3.35',
11676             'Locale::Codes::LangVar_Retired'=> '3.35',
11677             'Locale::Codes::Language'=> '3.35',
11678             'Locale::Codes::Language_Codes'=> '3.35',
11679             'Locale::Codes::Language_Retired'=> '3.35',
11680             'Locale::Codes::Script' => '3.35',
11681             'Locale::Codes::Script_Codes'=> '3.35',
11682             'Locale::Codes::Script_Retired'=> '3.35',
11683             'Locale::Country' => '3.35',
11684             'Locale::Currency' => '3.35',
11685             'Locale::Language' => '3.35',
11686             'Locale::Script' => '3.35',
11687             'Math::BigFloat' => '1.999701',
11688             'Math::BigInt' => '1.999701',
11689             'Math::BigInt::Calc' => '1.999701',
11690             'Math::BigInt::CalcEmu' => '1.999701',
11691             'Math::BigRat' => '0.260801',
11692             'Module::CoreList' => '5.20150620',
11693             'Module::CoreList::TieHashDelta'=> '5.20150620',
11694             'Module::CoreList::Utils'=> '5.20150620',
11695             'Module::Metadata' => '1.000027',
11696             'Net::Cmd' => '3.06',
11697             'Net::Config' => '3.06',
11698             'Net::Domain' => '3.06',
11699             'Net::FTP' => '3.06',
11700             'Net::FTP::A' => '3.06',
11701             'Net::FTP::E' => '3.06',
11702             'Net::FTP::I' => '3.06',
11703             'Net::FTP::L' => '3.06',
11704             'Net::FTP::dataconn' => '3.06',
11705             'Net::NNTP' => '3.06',
11706             'Net::Netrc' => '3.06',
11707             'Net::POP3' => '3.06',
11708             'Net::SMTP' => '3.06',
11709             'Net::Time' => '3.06',
11710             'POSIX' => '1.54',
11711             'Parse::CPAN::Meta' => '1.4417',
11712             'Pod::Simple' => '3.30',
11713             'Pod::Simple::BlackBox' => '3.30',
11714             'Pod::Simple::Checker' => '3.30',
11715             'Pod::Simple::Debug' => '3.30',
11716             'Pod::Simple::DumpAsText'=> '3.30',
11717             'Pod::Simple::DumpAsXML'=> '3.30',
11718             'Pod::Simple::HTML' => '3.30',
11719             'Pod::Simple::HTMLBatch'=> '3.30',
11720             'Pod::Simple::LinkSection'=> '3.30',
11721             'Pod::Simple::Methody' => '3.30',
11722             'Pod::Simple::Progress' => '3.30',
11723             'Pod::Simple::PullParser'=> '3.30',
11724             'Pod::Simple::PullParserEndToken'=> '3.30',
11725             'Pod::Simple::PullParserStartToken'=> '3.30',
11726             'Pod::Simple::PullParserTextToken'=> '3.30',
11727             'Pod::Simple::PullParserToken'=> '3.30',
11728             'Pod::Simple::RTF' => '3.30',
11729             'Pod::Simple::Search' => '3.30',
11730             'Pod::Simple::SimpleTree'=> '3.30',
11731             'Pod::Simple::Text' => '3.30',
11732             'Pod::Simple::TextContent'=> '3.30',
11733             'Pod::Simple::TiedOutFH'=> '3.30',
11734             'Pod::Simple::Transcode'=> '3.30',
11735             'Pod::Simple::TranscodeDumb'=> '3.30',
11736             'Pod::Simple::TranscodeSmart'=> '3.30',
11737             'Pod::Simple::XHTML' => '3.30',
11738             'Pod::Simple::XMLOutStream'=> '3.30',
11739             'Pod::Usage' => '1.67',
11740             'Scalar::Util' => '1.42_01',
11741             'Socket' => '2.019',
11742             'Sub::Util' => '1.42_01',
11743             'Time::Piece' => '1.30',
11744             'Time::Seconds' => '1.30',
11745             'UNIVERSAL' => '1.13',
11746             'Unicode' => '8.0.0',
11747             'XS::APItest' => '0.73',
11748             'autodie' => '2.27',
11749             'autodie::Scope::Guard' => '2.27',
11750             'autodie::Scope::GuardStack'=> '2.27',
11751             'autodie::Util' => '2.27',
11752             'autodie::exception' => '2.27',
11753             'autodie::exception::system'=> '2.27',
11754             'autodie::hints' => '2.27',
11755             'autodie::skip' => '2.27',
11756             'encoding' => '2.15',
11757             'feature' => '1.41',
11758             'parent' => '0.234',
11759             'threads' => '2.02',
11760             },
11761             removed => {
11762             }
11763             },
11764             5.023001 => {
11765             delta_from => 5.023000,
11766             changed => {
11767             'B::Op_private' => '5.023001',
11768             'Config' => '5.023001',
11769             'DynaLoader' => '1.33',
11770             'Encode' => '2.75',
11771             'Encode::MIME::Header' => '2.17',
11772             'Encode::Unicode' => '2.13',
11773             'Fatal' => '2.29',
11774             'File::Path' => '2.11',
11775             'Getopt::Long' => '2.47',
11776             'I18N::Langinfo' => '0.13',
11777             'IPC::Open3' => '1.19',
11778             'Module::CoreList' => '5.20150720',
11779             'Module::CoreList::TieHashDelta'=> '5.20150720',
11780             'Module::CoreList::Utils'=> '5.20150720',
11781             'Net::Cmd' => '3.07',
11782             'Net::Config' => '3.07',
11783             'Net::Domain' => '3.07',
11784             'Net::FTP' => '3.07',
11785             'Net::FTP::A' => '3.07',
11786             'Net::FTP::E' => '3.07',
11787             'Net::FTP::I' => '3.07',
11788             'Net::FTP::L' => '3.07',
11789             'Net::FTP::dataconn' => '3.07',
11790             'Net::NNTP' => '3.07',
11791             'Net::Netrc' => '3.07',
11792             'Net::POP3' => '3.07',
11793             'Net::SMTP' => '3.07',
11794             'Net::Time' => '3.07',
11795             'Opcode' => '1.33',
11796             'POSIX' => '1.55',
11797             'PerlIO::scalar' => '0.23',
11798             'Socket' => '2.020',
11799             'Storable' => '2.54',
11800             'Unicode::Collate' => '1.14',
11801             'Unicode::Collate::CJK::Big5'=> '1.14',
11802             'Unicode::Collate::CJK::GB2312'=> '1.14',
11803             'Unicode::Collate::CJK::JISX0208'=> '1.14',
11804             'Unicode::Collate::CJK::Korean'=> '1.14',
11805             'Unicode::Collate::CJK::Pinyin'=> '1.14',
11806             'Unicode::Collate::CJK::Stroke'=> '1.14',
11807             'Unicode::Collate::CJK::Zhuyin'=> '1.14',
11808             'Unicode::Collate::Locale'=> '1.14',
11809             'Unicode::Normalize' => '1.19',
11810             'XS::APItest' => '0.74',
11811             'XS::Typemap' => '0.14',
11812             'autodie' => '2.29',
11813             'autodie::Scope::Guard' => '2.29',
11814             'autodie::Scope::GuardStack'=> '2.29',
11815             'autodie::Util' => '2.29',
11816             'autodie::exception' => '2.29',
11817             'autodie::exception::system'=> '2.29',
11818             'autodie::hints' => '2.29',
11819             'autodie::skip' => '2.29',
11820             'encoding' => '2.16',
11821             'feature' => '1.42',
11822             'warnings' => '1.33',
11823             },
11824             removed => {
11825             'autodie::ScopeUtil' => 1,
11826             }
11827             },
11828             5.023002 => {
11829             delta_from => 5.023001,
11830             changed => {
11831             'Attribute::Handlers' => '0.99',
11832             'B::Op_private' => '5.023002',
11833             'CPAN::Meta::YAML' => '0.017',
11834             'Config' => '5.023002',
11835             'Cwd' => '3.57',
11836             'Encode' => '2.76',
11837             'ExtUtils::ParseXS' => '3.29',
11838             'ExtUtils::ParseXS::Constants'=> '3.29',
11839             'ExtUtils::ParseXS::CountLines'=> '3.29',
11840             'ExtUtils::ParseXS::Eval'=> '3.29',
11841             'ExtUtils::ParseXS::Utilities'=> '3.29',
11842             'ExtUtils::Typemaps' => '3.29',
11843             'File::Find' => '1.30',
11844             'File::Spec' => '3.57',
11845             'File::Spec::Cygwin' => '3.57',
11846             'File::Spec::Epoc' => '3.57',
11847             'File::Spec::Functions' => '3.57',
11848             'File::Spec::Mac' => '3.57',
11849             'File::Spec::OS2' => '3.57',
11850             'File::Spec::Unix' => '3.57',
11851             'File::Spec::VMS' => '3.57',
11852             'File::Spec::Win32' => '3.57',
11853             'Filter::Util::Call' => '1.55',
11854             'Hash::Util' => '0.19',
11855             'Module::CoreList' => '5.20150820',
11856             'Module::CoreList::TieHashDelta'=> '5.20150820',
11857             'Module::CoreList::Utils'=> '5.20150820',
11858             'POSIX' => '1.56',
11859             'Term::Cap' => '1.17',
11860             'Unicode::UCD' => '0.62',
11861             'perlfaq' => '5.021010',
11862             },
11863             removed => {
11864             }
11865             },
11866             5.020003 => {
11867             delta_from => 5.020002,
11868             changed => {
11869             'Config' => '5.020003',
11870             'Errno' => '1.20_06',
11871             'Module::CoreList' => '5.20150912',
11872             'Module::CoreList::TieHashDelta'=> '5.20150912',
11873             'Module::CoreList::Utils'=> '5.20150912',
11874             },
11875             removed => {
11876             }
11877             },
11878             5.023003 => {
11879             delta_from => 5.023002,
11880             changed => {
11881             'Amiga::ARexx' => '0.02',
11882             'Amiga::Exec' => '0.01',
11883             'B' => '1.59',
11884             'B::Op_private' => '5.023003',
11885             'Carp' => '1.37',
11886             'Carp::Heavy' => '1.37',
11887             'Compress::Raw::Zlib' => '2.068_01',
11888             'Config' => '5.023003',
11889             'Cwd' => '3.58',
11890             'DynaLoader' => '1.34',
11891             'Encode' => '2.77',
11892             'Encode::Unicode' => '2.14',
11893             'English' => '1.10',
11894             'Errno' => '1.24',
11895             'ExtUtils::Command' => '7.10',
11896             'ExtUtils::Command::MM' => '7.10',
11897             'ExtUtils::Liblist' => '7.10',
11898             'ExtUtils::Liblist::Kid'=> '7.10',
11899             'ExtUtils::MM' => '7.10',
11900             'ExtUtils::MM_AIX' => '7.10',
11901             'ExtUtils::MM_Any' => '7.10',
11902             'ExtUtils::MM_BeOS' => '7.10',
11903             'ExtUtils::MM_Cygwin' => '7.10',
11904             'ExtUtils::MM_DOS' => '7.10',
11905             'ExtUtils::MM_Darwin' => '7.10',
11906             'ExtUtils::MM_MacOS' => '7.10',
11907             'ExtUtils::MM_NW5' => '7.10',
11908             'ExtUtils::MM_OS2' => '7.10',
11909             'ExtUtils::MM_QNX' => '7.10',
11910             'ExtUtils::MM_UWIN' => '7.10',
11911             'ExtUtils::MM_Unix' => '7.10',
11912             'ExtUtils::MM_VMS' => '7.10',
11913             'ExtUtils::MM_VOS' => '7.10',
11914             'ExtUtils::MM_Win32' => '7.10',
11915             'ExtUtils::MM_Win95' => '7.10',
11916             'ExtUtils::MY' => '7.10',
11917             'ExtUtils::MakeMaker' => '7.10',
11918             'ExtUtils::MakeMaker::Config'=> '7.10',
11919             'ExtUtils::MakeMaker::Locale'=> '7.10',
11920             'ExtUtils::MakeMaker::version'=> '7.10',
11921             'ExtUtils::MakeMaker::version::regex'=> '7.10',
11922             'ExtUtils::MakeMaker::version::vpp'=> '7.10',
11923             'ExtUtils::Mkbootstrap' => '7.10',
11924             'ExtUtils::Mksymlists' => '7.10',
11925             'ExtUtils::ParseXS' => '3.30',
11926             'ExtUtils::ParseXS::Constants'=> '3.30',
11927             'ExtUtils::ParseXS::CountLines'=> '3.30',
11928             'ExtUtils::ParseXS::Eval'=> '3.30',
11929             'ExtUtils::ParseXS::Utilities'=> '3.30',
11930             'ExtUtils::Typemaps' => '3.30',
11931             'ExtUtils::Typemaps::Cmd'=> '3.30',
11932             'ExtUtils::Typemaps::InputMap'=> '3.30',
11933             'ExtUtils::Typemaps::OutputMap'=> '3.30',
11934             'ExtUtils::Typemaps::Type'=> '3.30',
11935             'ExtUtils::testlib' => '7.10',
11936             'File::Find' => '1.31',
11937             'File::Glob' => '1.25',
11938             'File::Spec' => '3.58',
11939             'File::Spec::AmigaOS' => '3.58',
11940             'File::Spec::Cygwin' => '3.58',
11941             'File::Spec::Epoc' => '3.58',
11942             'File::Spec::Functions' => '3.58',
11943             'File::Spec::Mac' => '3.58',
11944             'File::Spec::OS2' => '3.58',
11945             'File::Spec::Unix' => '3.58',
11946             'File::Spec::VMS' => '3.58',
11947             'File::Spec::Win32' => '3.58',
11948             'Hash::Util::FieldHash' => '1.17',
11949             'Locale::Codes' => '3.36',
11950             'Locale::Codes::Constants'=> '3.36',
11951             'Locale::Codes::Country'=> '3.36',
11952             'Locale::Codes::Country_Codes'=> '3.36',
11953             'Locale::Codes::Country_Retired'=> '3.36',
11954             'Locale::Codes::Currency'=> '3.36',
11955             'Locale::Codes::Currency_Codes'=> '3.36',
11956             'Locale::Codes::Currency_Retired'=> '3.36',
11957             'Locale::Codes::LangExt'=> '3.36',
11958             'Locale::Codes::LangExt_Codes'=> '3.36',
11959             'Locale::Codes::LangExt_Retired'=> '3.36',
11960             'Locale::Codes::LangFam'=> '3.36',
11961             'Locale::Codes::LangFam_Codes'=> '3.36',
11962             'Locale::Codes::LangFam_Retired'=> '3.36',
11963             'Locale::Codes::LangVar'=> '3.36',
11964             'Locale::Codes::LangVar_Codes'=> '3.36',
11965             'Locale::Codes::LangVar_Retired'=> '3.36',
11966             'Locale::Codes::Language'=> '3.36',
11967             'Locale::Codes::Language_Codes'=> '3.36',
11968             'Locale::Codes::Language_Retired'=> '3.36',
11969             'Locale::Codes::Script' => '3.36',
11970             'Locale::Codes::Script_Codes'=> '3.36',
11971             'Locale::Codes::Script_Retired'=> '3.36',
11972             'Locale::Country' => '3.36',
11973             'Locale::Currency' => '3.36',
11974             'Locale::Language' => '3.36',
11975             'Locale::Script' => '3.36',
11976             'Math::BigFloat::Trace' => '0.40',
11977             'Math::BigInt::Trace' => '0.40',
11978             'Module::CoreList' => '5.20150920',
11979             'Module::CoreList::TieHashDelta'=> '5.20150920',
11980             'Module::CoreList::Utils'=> '5.20150920',
11981             'OS2::DLL' => '1.06',
11982             'OS2::ExtAttr' => '0.04',
11983             'OS2::Process' => '1.11',
11984             'OS2::REXX' => '1.05',
11985             'POSIX' => '1.57',
11986             'Pod::Perldoc' => '3.25_01',
11987             'Socket' => '2.020_01',
11988             'Test' => '1.27',
11989             'Thread::Queue' => '3.06',
11990             'Time::HiRes' => '1.9727_02',
11991             'Unicode::UCD' => '0.63',
11992             'Win32' => '0.52',
11993             'XS::APItest' => '0.75',
11994             'bigint' => '0.40',
11995             'bignum' => '0.40',
11996             'bigrat' => '0.40',
11997             'encoding' => '2.17',
11998             'experimental' => '0.014',
11999             'if' => '0.0605',
12000             'locale' => '1.07',
12001             'mro' => '1.18',
12002             'threads' => '2.03',
12003             },
12004             removed => {
12005             }
12006             },
12007             5.023004 => {
12008             delta_from => 5.023003,
12009             changed => {
12010             'B' => '1.60',
12011             'B::Op_private' => '5.023004',
12012             'Compress::Raw::Bzip2' => '2.069',
12013             'Compress::Raw::Zlib' => '2.069',
12014             'Compress::Zlib' => '2.069',
12015             'Config' => '5.023004',
12016             'Devel::PPPort' => '3.32',
12017             'DynaLoader' => '1.35',
12018             'Encode' => '2.78',
12019             'ExtUtils::CBuilder' => '0.280224',
12020             'ExtUtils::CBuilder::Base'=> '0.280224',
12021             'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
12022             'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
12023             'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
12024             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
12025             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
12026             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
12027             'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
12028             'ExtUtils::CBuilder::Platform::android'=> '0.280224',
12029             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
12030             'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
12031             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
12032             'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
12033             'File::Path' => '2.12',
12034             'IO' => '1.36',
12035             'IO::Compress::Adapter::Bzip2'=> '2.069',
12036             'IO::Compress::Adapter::Deflate'=> '2.069',
12037             'IO::Compress::Adapter::Identity'=> '2.069',
12038             'IO::Compress::Base' => '2.069',
12039             'IO::Compress::Base::Common'=> '2.069',
12040             'IO::Compress::Bzip2' => '2.069',
12041             'IO::Compress::Deflate' => '2.069',
12042             'IO::Compress::Gzip' => '2.069',
12043             'IO::Compress::Gzip::Constants'=> '2.069',
12044             'IO::Compress::RawDeflate'=> '2.069',
12045             'IO::Compress::Zip' => '2.069',
12046             'IO::Compress::Zip::Constants'=> '2.069',
12047             'IO::Compress::Zlib::Constants'=> '2.069',
12048             'IO::Compress::Zlib::Extra'=> '2.069',
12049             'IO::Poll' => '0.10',
12050             'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
12051             'IO::Uncompress::Adapter::Identity'=> '2.069',
12052             'IO::Uncompress::Adapter::Inflate'=> '2.069',
12053             'IO::Uncompress::AnyInflate'=> '2.069',
12054             'IO::Uncompress::AnyUncompress'=> '2.069',
12055             'IO::Uncompress::Base' => '2.069',
12056             'IO::Uncompress::Bunzip2'=> '2.069',
12057             'IO::Uncompress::Gunzip'=> '2.069',
12058             'IO::Uncompress::Inflate'=> '2.069',
12059             'IO::Uncompress::RawInflate'=> '2.069',
12060             'IO::Uncompress::Unzip' => '2.069',
12061             'Math::BigFloat' => '1.999704',
12062             'Math::BigFloat::Trace' => '0.41',
12063             'Math::BigInt' => '1.999704',
12064             'Math::BigInt::Calc' => '1.999704',
12065             'Math::BigInt::CalcEmu' => '1.999704',
12066             'Math::BigInt::FastCalc'=> '0.34',
12067             'Math::BigInt::Trace' => '0.41',
12068             'Module::CoreList' => '5.20151020',
12069             'Module::CoreList::TieHashDelta'=> '5.20151020',
12070             'Module::CoreList::Utils'=> '5.20151020',
12071             'Module::Metadata' => '1.000029',
12072             'POSIX' => '1.58',
12073             'Perl::OSType' => '1.009',
12074             'PerlIO::encoding' => '0.22',
12075             'Socket' => '2.020_02',
12076             'Unicode::Normalize' => '1.21',
12077             'XS::APItest' => '0.76',
12078             'bigint' => '0.41',
12079             'bignum' => '0.41',
12080             'bigrat' => '0.41',
12081             'experimental' => '0.016',
12082             'if' => '0.0606',
12083             'warnings' => '1.35',
12084             },
12085             removed => {
12086             }
12087             },
12088             5.023005 => {
12089             delta_from => 5.023004,
12090             changed => {
12091             'B' => '1.61',
12092             'B::Op_private' => '5.023005',
12093             'Carp' => '1.38',
12094             'Carp::Heavy' => '1.38',
12095             'Config' => '5.023005',
12096             'Config::Perl::V' => '0.25',
12097             'Cwd' => '3.59',
12098             'Devel::Peek' => '1.23',
12099             'Dumpvalue' => '1.18',
12100             'DynaLoader' => '1.36',
12101             'File::Find' => '1.32',
12102             'File::Spec' => '3.59',
12103             'File::Spec::AmigaOS' => '3.59',
12104             'File::Spec::Cygwin' => '3.59',
12105             'File::Spec::Epoc' => '3.59',
12106             'File::Spec::Functions' => '3.59',
12107             'File::Spec::Mac' => '3.59',
12108             'File::Spec::OS2' => '3.59',
12109             'File::Spec::Unix' => '3.59',
12110             'File::Spec::VMS' => '3.59',
12111             'File::Spec::Win32' => '3.59',
12112             'Getopt::Long' => '2.48',
12113             'Hash::Util::FieldHash' => '1.18',
12114             'IPC::Open3' => '1.20',
12115             'Math::BigFloat' => '1.999710',
12116             'Math::BigInt' => '1.999710',
12117             'Math::BigInt::Calc' => '1.999710',
12118             'Math::BigInt::CalcEmu' => '1.999710',
12119             'Math::BigInt::FastCalc'=> '0.37',
12120             'Module::CoreList' => '5.20151120',
12121             'Module::CoreList::TieHashDelta'=> '5.20151120',
12122             'Module::CoreList::Utils'=> '5.20151120',
12123             'Module::Metadata' => '1.000030',
12124             'POSIX' => '1.59',
12125             'PerlIO::encoding' => '0.23',
12126             'PerlIO::mmap' => '0.015',
12127             'PerlIO::scalar' => '0.24',
12128             'PerlIO::via' => '0.16',
12129             'Pod::Simple' => '3.32',
12130             'Pod::Simple::BlackBox' => '3.32',
12131             'Pod::Simple::Checker' => '3.32',
12132             'Pod::Simple::Debug' => '3.32',
12133             'Pod::Simple::DumpAsText'=> '3.32',
12134             'Pod::Simple::DumpAsXML'=> '3.32',
12135             'Pod::Simple::HTML' => '3.32',
12136             'Pod::Simple::HTMLBatch'=> '3.32',
12137             'Pod::Simple::LinkSection'=> '3.32',
12138             'Pod::Simple::Methody' => '3.32',
12139             'Pod::Simple::Progress' => '3.32',
12140             'Pod::Simple::PullParser'=> '3.32',
12141             'Pod::Simple::PullParserEndToken'=> '3.32',
12142             'Pod::Simple::PullParserStartToken'=> '3.32',
12143             'Pod::Simple::PullParserTextToken'=> '3.32',
12144             'Pod::Simple::PullParserToken'=> '3.32',
12145             'Pod::Simple::RTF' => '3.32',
12146             'Pod::Simple::Search' => '3.32',
12147             'Pod::Simple::SimpleTree'=> '3.32',
12148             'Pod::Simple::Text' => '3.32',
12149             'Pod::Simple::TextContent'=> '3.32',
12150             'Pod::Simple::TiedOutFH'=> '3.32',
12151             'Pod::Simple::Transcode'=> '3.32',
12152             'Pod::Simple::TranscodeDumb'=> '3.32',
12153             'Pod::Simple::TranscodeSmart'=> '3.32',
12154             'Pod::Simple::XHTML' => '3.32',
12155             'Pod::Simple::XMLOutStream'=> '3.32',
12156             'Thread::Queue' => '3.07',
12157             'Tie::Scalar' => '1.04',
12158             'Time::HiRes' => '1.9728',
12159             'Time::Piece' => '1.31',
12160             'Time::Seconds' => '1.31',
12161             'Unicode::Normalize' => '1.23',
12162             'XSLoader' => '0.21',
12163             'arybase' => '0.11',
12164             'base' => '2.22_01',
12165             'fields' => '2.22_01',
12166             'threads' => '2.04',
12167             'threads::shared' => '1.49',
12168             },
12169             removed => {
12170             'ExtUtils::MakeMaker::version::vpp'=> 1,
12171             'version::vpp' => 1,
12172             }
12173             },
12174             5.022001 => {
12175             delta_from => 5.022,
12176             changed => {
12177             'B::Op_private' => '5.022001',
12178             'Config' => '5.022001',
12179             'Module::CoreList' => '5.20151213',
12180             'Module::CoreList::TieHashDelta'=> '5.20151213',
12181             'Module::CoreList::Utils'=> '5.20151213',
12182             'POSIX' => '1.53_01',
12183             'PerlIO::scalar' => '0.23',
12184             'Storable' => '2.53_01',
12185             'Win32' => '0.52',
12186             'warnings' => '1.34',
12187             },
12188             removed => {
12189             }
12190             },
12191             5.023006 => {
12192             delta_from => 5.023005,
12193             changed => {
12194             'B::Deparse' => '1.36',
12195             'B::Op_private' => '5.023006',
12196             'Benchmark' => '1.21',
12197             'CPAN::Meta::Requirements'=> '2.140',
12198             'CPAN::Meta::YAML' => '0.018',
12199             'Config' => '5.023006',
12200             'Cwd' => '3.60',
12201             'Data::Dumper' => '2.159',
12202             'DynaLoader' => '1.37',
12203             'File::Spec' => '3.60',
12204             'File::Spec::AmigaOS' => '3.60',
12205             'File::Spec::Cygwin' => '3.60',
12206             'File::Spec::Epoc' => '3.60',
12207             'File::Spec::Functions' => '3.60',
12208             'File::Spec::Mac' => '3.60',
12209             'File::Spec::OS2' => '3.60',
12210             'File::Spec::Unix' => '3.60',
12211             'File::Spec::VMS' => '3.60',
12212             'File::Spec::Win32' => '3.60',
12213             'Hash::Util::FieldHash' => '1.19',
12214             'Locale::Codes' => '3.37',
12215             'Locale::Codes::Constants'=> '3.37',
12216             'Locale::Codes::Country'=> '3.37',
12217             'Locale::Codes::Country_Codes'=> '3.37',
12218             'Locale::Codes::Country_Retired'=> '3.37',
12219             'Locale::Codes::Currency'=> '3.37',
12220             'Locale::Codes::Currency_Codes'=> '3.37',
12221             'Locale::Codes::Currency_Retired'=> '3.37',
12222             'Locale::Codes::LangExt'=> '3.37',
12223             'Locale::Codes::LangExt_Codes'=> '3.37',
12224             'Locale::Codes::LangExt_Retired'=> '3.37',
12225             'Locale::Codes::LangFam'=> '3.37',
12226             'Locale::Codes::LangFam_Codes'=> '3.37',
12227             'Locale::Codes::LangFam_Retired'=> '3.37',
12228             'Locale::Codes::LangVar'=> '3.37',
12229             'Locale::Codes::LangVar_Codes'=> '3.37',
12230             'Locale::Codes::LangVar_Retired'=> '3.37',
12231             'Locale::Codes::Language'=> '3.37',
12232             'Locale::Codes::Language_Codes'=> '3.37',
12233             'Locale::Codes::Language_Retired'=> '3.37',
12234             'Locale::Codes::Script' => '3.37',
12235             'Locale::Codes::Script_Codes'=> '3.37',
12236             'Locale::Codes::Script_Retired'=> '3.37',
12237             'Locale::Country' => '3.37',
12238             'Locale::Currency' => '3.37',
12239             'Locale::Language' => '3.37',
12240             'Locale::Script' => '3.37',
12241             'Math::BigInt::FastCalc'=> '0.38',
12242             'Module::CoreList' => '5.20151220',
12243             'Module::CoreList::TieHashDelta'=> '5.20151220',
12244             'Module::CoreList::Utils'=> '5.20151220',
12245             'Module::Metadata' => '1.000031',
12246             'Opcode' => '1.34',
12247             'PerlIO::mmap' => '0.016',
12248             'Pod::Perldoc' => '3.25_02',
12249             'SDBM_File' => '1.14',
12250             'Term::ANSIColor' => '4.04',
12251             'Test' => '1.28',
12252             'Unicode::Normalize' => '1.24',
12253             'XS::APItest' => '0.77',
12254             'base' => '2.23',
12255             'encoding::warnings' => '0.12',
12256             'fields' => '2.23',
12257             'locale' => '1.08',
12258             'strict' => '1.10',
12259             'threads' => '2.05',
12260             'threads::shared' => '1.50',
12261             'utf8' => '1.18',
12262             },
12263             removed => {
12264             }
12265             },
12266             5.023007 => {
12267             delta_from => 5.023006,
12268             changed => {
12269             'App::Prove' => '3.36',
12270             'App::Prove::State' => '3.36',
12271             'App::Prove::State::Result'=> '3.36',
12272             'App::Prove::State::Result::Test'=> '3.36',
12273             'B' => '1.62',
12274             'B::Deparse' => '1.37',
12275             'B::Op_private' => '5.023007',
12276             'Benchmark' => '1.22',
12277             'Config' => '5.023007',
12278             'Cwd' => '3.62',
12279             'Data::Dumper' => '2.160',
12280             'ExtUtils::ParseXS' => '3.31',
12281             'ExtUtils::ParseXS::Constants'=> '3.31',
12282             'ExtUtils::ParseXS::CountLines'=> '3.31',
12283             'ExtUtils::ParseXS::Eval'=> '3.31',
12284             'ExtUtils::ParseXS::Utilities'=> '3.31',
12285             'ExtUtils::Typemaps' => '3.31',
12286             'ExtUtils::Typemaps::Cmd'=> '3.31',
12287             'ExtUtils::Typemaps::InputMap'=> '3.31',
12288             'ExtUtils::Typemaps::OutputMap'=> '3.31',
12289             'ExtUtils::Typemaps::Type'=> '3.31',
12290             'File::Find' => '1.33',
12291             'File::Spec' => '3.62',
12292             'File::Spec::AmigaOS' => '3.62',
12293             'File::Spec::Cygwin' => '3.62',
12294             'File::Spec::Epoc' => '3.62',
12295             'File::Spec::Functions' => '3.62',
12296             'File::Spec::Mac' => '3.62',
12297             'File::Spec::OS2' => '3.62',
12298             'File::Spec::Unix' => '3.62',
12299             'File::Spec::VMS' => '3.62',
12300             'File::Spec::Win32' => '3.62',
12301             'Math::BigFloat' => '1.999715',
12302             'Math::BigFloat::Trace' => '0.42',
12303             'Math::BigInt' => '1.999715',
12304             'Math::BigInt::Calc' => '1.999715',
12305             'Math::BigInt::CalcEmu' => '1.999715',
12306             'Math::BigInt::FastCalc'=> '0.40',
12307             'Math::BigInt::Trace' => '0.42',
12308             'Math::BigRat' => '0.260802',
12309             'Module::CoreList' => '5.20160120',
12310             'Module::CoreList::TieHashDelta'=> '5.20160120',
12311             'Module::CoreList::Utils'=> '5.20160120',
12312             'Net::Cmd' => '3.08',
12313             'Net::Config' => '3.08',
12314             'Net::Domain' => '3.08',
12315             'Net::FTP' => '3.08',
12316             'Net::FTP::A' => '3.08',
12317             'Net::FTP::E' => '3.08',
12318             'Net::FTP::I' => '3.08',
12319             'Net::FTP::L' => '3.08',
12320             'Net::FTP::dataconn' => '3.08',
12321             'Net::NNTP' => '3.08',
12322             'Net::Netrc' => '3.08',
12323             'Net::POP3' => '3.08',
12324             'Net::SMTP' => '3.08',
12325             'Net::Time' => '3.08',
12326             'Pod::Man' => '4.04',
12327             'Pod::ParseLink' => '4.04',
12328             'Pod::Text' => '4.04',
12329             'Pod::Text::Color' => '4.04',
12330             'Pod::Text::Overstrike' => '4.04',
12331             'Pod::Text::Termcap' => '4.04',
12332             'Pod::Usage' => '1.68',
12333             'TAP::Base' => '3.36',
12334             'TAP::Formatter::Base' => '3.36',
12335             'TAP::Formatter::Color' => '3.36',
12336             'TAP::Formatter::Console'=> '3.36',
12337             'TAP::Formatter::Console::ParallelSession'=> '3.36',
12338             'TAP::Formatter::Console::Session'=> '3.36',
12339             'TAP::Formatter::File' => '3.36',
12340             'TAP::Formatter::File::Session'=> '3.36',
12341             'TAP::Formatter::Session'=> '3.36',
12342             'TAP::Harness' => '3.36',
12343             'TAP::Harness::Env' => '3.36',
12344             'TAP::Object' => '3.36',
12345             'TAP::Parser' => '3.36',
12346             'TAP::Parser::Aggregator'=> '3.36',
12347             'TAP::Parser::Grammar' => '3.36',
12348             'TAP::Parser::Iterator' => '3.36',
12349             'TAP::Parser::Iterator::Array'=> '3.36',
12350             'TAP::Parser::Iterator::Process'=> '3.36',
12351             'TAP::Parser::Iterator::Stream'=> '3.36',
12352             'TAP::Parser::IteratorFactory'=> '3.36',
12353             'TAP::Parser::Multiplexer'=> '3.36',
12354             'TAP::Parser::Result' => '3.36',
12355             'TAP::Parser::Result::Bailout'=> '3.36',
12356             'TAP::Parser::Result::Comment'=> '3.36',
12357             'TAP::Parser::Result::Plan'=> '3.36',
12358             'TAP::Parser::Result::Pragma'=> '3.36',
12359             'TAP::Parser::Result::Test'=> '3.36',
12360             'TAP::Parser::Result::Unknown'=> '3.36',
12361             'TAP::Parser::Result::Version'=> '3.36',
12362             'TAP::Parser::Result::YAML'=> '3.36',
12363             'TAP::Parser::ResultFactory'=> '3.36',
12364             'TAP::Parser::Scheduler'=> '3.36',
12365             'TAP::Parser::Scheduler::Job'=> '3.36',
12366             'TAP::Parser::Scheduler::Spinner'=> '3.36',
12367             'TAP::Parser::Source' => '3.36',
12368             'TAP::Parser::SourceHandler'=> '3.36',
12369             'TAP::Parser::SourceHandler::Executable'=> '3.36',
12370             'TAP::Parser::SourceHandler::File'=> '3.36',
12371             'TAP::Parser::SourceHandler::Handle'=> '3.36',
12372             'TAP::Parser::SourceHandler::Perl'=> '3.36',
12373             'TAP::Parser::SourceHandler::RawTAP'=> '3.36',
12374             'TAP::Parser::YAMLish::Reader'=> '3.36',
12375             'TAP::Parser::YAMLish::Writer'=> '3.36',
12376             'Test::Harness' => '3.36',
12377             'Unicode::Normalize' => '1.25',
12378             'Unicode::UCD' => '0.64',
12379             'XS::APItest' => '0.78',
12380             'bigint' => '0.42',
12381             'bignum' => '0.42',
12382             'bigrat' => '0.42',
12383             'utf8' => '1.19',
12384             },
12385             removed => {
12386             }
12387             },
12388             5.023008 => {
12389             delta_from => 5.023007,
12390             changed => {
12391             'B::Op_private' => '5.023008',
12392             'Config' => '5.023008',
12393             'Cwd' => '3.63',
12394             'DynaLoader' => '1.38',
12395             'Encode' => '2.80',
12396             'Encode::Alias' => '2.20',
12397             'Encode::MIME::Header' => '2.19',
12398             'Encode::Unicode' => '2.15',
12399             'ExtUtils::CBuilder' => '0.280225',
12400             'ExtUtils::CBuilder::Base'=> '0.280225',
12401             'ExtUtils::CBuilder::Platform::Unix'=> '0.280225',
12402             'ExtUtils::CBuilder::Platform::VMS'=> '0.280225',
12403             'ExtUtils::CBuilder::Platform::Windows'=> '0.280225',
12404             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225',
12405             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225',
12406             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225',
12407             'ExtUtils::CBuilder::Platform::aix'=> '0.280225',
12408             'ExtUtils::CBuilder::Platform::android'=> '0.280225',
12409             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225',
12410             'ExtUtils::CBuilder::Platform::darwin'=> '0.280225',
12411             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225',
12412             'ExtUtils::CBuilder::Platform::os2'=> '0.280225',
12413             'ExtUtils::Command::MM' => '7.10_01',
12414             'ExtUtils::Liblist' => '7.10_01',
12415             'ExtUtils::Liblist::Kid'=> '7.10_01',
12416             'ExtUtils::MM' => '7.10_01',
12417             'ExtUtils::MM_AIX' => '7.10_01',
12418             'ExtUtils::MM_Any' => '7.10_01',
12419             'ExtUtils::MM_BeOS' => '7.10_01',
12420             'ExtUtils::MM_Cygwin' => '7.10_01',
12421             'ExtUtils::MM_DOS' => '7.10_01',
12422             'ExtUtils::MM_Darwin' => '7.10_01',
12423             'ExtUtils::MM_MacOS' => '7.10_01',
12424             'ExtUtils::MM_NW5' => '7.10_01',
12425             'ExtUtils::MM_OS2' => '7.10_01',
12426             'ExtUtils::MM_QNX' => '7.10_01',
12427             'ExtUtils::MM_UWIN' => '7.10_01',
12428             'ExtUtils::MM_Unix' => '7.10_01',
12429             'ExtUtils::MM_VMS' => '7.10_01',
12430             'ExtUtils::MM_VOS' => '7.10_01',
12431             'ExtUtils::MM_Win32' => '7.10_01',
12432             'ExtUtils::MM_Win95' => '7.10_01',
12433             'ExtUtils::MY' => '7.10_01',
12434             'ExtUtils::MakeMaker' => '7.10_01',
12435             'ExtUtils::MakeMaker::Config'=> '7.10_01',
12436             'ExtUtils::MakeMaker::version'=> '7.10_01',
12437             'ExtUtils::MakeMaker::version::regex'=> '7.10_01',
12438             'ExtUtils::Mkbootstrap' => '7.10_01',
12439             'ExtUtils::Mksymlists' => '7.10_01',
12440             'ExtUtils::testlib' => '7.10_01',
12441             'File::Spec' => '3.63',
12442             'File::Spec::AmigaOS' => '3.63',
12443             'File::Spec::Cygwin' => '3.63',
12444             'File::Spec::Epoc' => '3.63',
12445             'File::Spec::Functions' => '3.63',
12446             'File::Spec::Mac' => '3.63',
12447             'File::Spec::OS2' => '3.63',
12448             'File::Spec::Unix' => '3.63',
12449             'File::Spec::VMS' => '3.63',
12450             'File::Spec::Win32' => '3.63',
12451             'IPC::Msg' => '2.05',
12452             'IPC::Semaphore' => '2.05',
12453             'IPC::SharedMem' => '2.05',
12454             'IPC::SysV' => '2.05',
12455             'Module::CoreList' => '5.20160121',
12456             'Module::CoreList::TieHashDelta'=> '5.20160121',
12457             'Module::CoreList::Utils'=> '5.20160121',
12458             'ODBM_File' => '1.13',
12459             'POSIX' => '1.63',
12460             'PerlIO::encoding' => '0.24',
12461             'Pod::Man' => '4.06',
12462             'Pod::ParseLink' => '4.06',
12463             'Pod::Text' => '4.06',
12464             'Pod::Text::Color' => '4.06',
12465             'Pod::Text::Overstrike' => '4.06',
12466             'Pod::Text::Termcap' => '4.06',
12467             'Storable' => '2.55',
12468             'Time::HiRes' => '1.9730',
12469             'XS::APItest' => '0.79',
12470             },
12471             removed => {
12472             }
12473             },
12474             5.023009 => {
12475             delta_from => 5.023008,
12476             changed => {
12477             'Amiga::ARexx' => '0.04',
12478             'Amiga::Exec' => '0.02',
12479             'B::Op_private' => '5.023009',
12480             'Carp' => '1.40',
12481             'Carp::Heavy' => '1.40',
12482             'Config' => '5.023009',
12483             'Errno' => '1.25',
12484             'ExtUtils::Embed' => '1.33',
12485             'File::Find' => '1.34',
12486             'File::Glob' => '1.26',
12487             'File::Spec::AmigaOS' => ';.64',
12488             'IPC::Msg' => '2.06_01',
12489             'IPC::Semaphore' => '2.06_01',
12490             'IPC::SharedMem' => '2.06_01',
12491             'IPC::SysV' => '2.06_01',
12492             'List::Util' => '1.42_02',
12493             'List::Util::XS' => '1.42_02',
12494             'Module::CoreList' => '5.20160320',
12495             'Module::CoreList::TieHashDelta'=> '5.20160320',
12496             'Module::CoreList::Utils'=> '5.20160320',
12497             'POSIX' => '1.64',
12498             'Pod::Functions' => '1.10',
12499             'Scalar::Util' => '1.42_02',
12500             'SelfLoader' => '1.23',
12501             'Socket' => '2.020_03',
12502             'Storable' => '2.56',
12503             'Sub::Util' => '1.42_02',
12504             'Thread::Queue' => '3.08',
12505             'Tie::File' => '1.02',
12506             'Time::HiRes' => '1.9732',
12507             'Win32API::File' => '0.1203',
12508             'XS::APItest' => '0.80',
12509             'autouse' => '1.11',
12510             'bytes' => '1.05',
12511             'strict' => '1.11',
12512             'threads' => '2.06',
12513             'version' => '0.9916',
12514             'version::regex' => '0.9916',
12515             'warnings' => '1.36',
12516             },
12517             removed => {
12518             'Win32API::File::ExtUtils::Myconst2perl'=> 1,
12519             }
12520             },
12521             5.022002 => {
12522             delta_from => 5.022001,
12523             changed => {
12524             'B::Op_private' => '5.022002',
12525             'Config' => '5.022002',
12526             'Cwd' => '3.56_01',
12527             'File::Spec' => '3.56_01',
12528             'File::Spec::Cygwin' => '3.56_01',
12529             'File::Spec::Epoc' => '3.56_01',
12530             'File::Spec::Functions' => '3.56_01',
12531             'File::Spec::Mac' => '3.56_01',
12532             'File::Spec::OS2' => '3.56_01',
12533             'File::Spec::Unix' => '3.56_01',
12534             'File::Spec::VMS' => '3.56_01',
12535             'File::Spec::Win32' => '3.56_01',
12536             'Module::CoreList' => '5.20160429',
12537             'Module::CoreList::TieHashDelta'=> '5.20160429',
12538             'Module::CoreList::Utils'=> '5.20160429',
12539             'XS::APItest' => '0.72_01',
12540             },
12541             removed => {
12542             }
12543             },
12544             5.024000 => {
12545             delta_from => 5.023009,
12546             changed => {
12547             'B::Op_private' => '5.024000',
12548             'Config' => '5.024',
12549             'File::Copy' => '2.31',
12550             'File::Path' => '2.12_01',
12551             'File::Spec::AmigaOS' => '3.64',
12552             'IO::Handle' => '1.36',
12553             'Module::CoreList' => '5.20160506',
12554             'Module::CoreList::TieHashDelta'=> '5.20160506',
12555             'Module::CoreList::Utils'=> '5.20160506',
12556             'ODBM_File' => '1.14',
12557             'POSIX' => '1.65',
12558             'Pod::Man' => '4.07',
12559             'Pod::ParseLink' => '4.07',
12560             'Pod::Text' => '4.07',
12561             'Pod::Text::Color' => '4.07',
12562             'Pod::Text::Overstrike' => '4.07',
12563             'Pod::Text::Termcap' => '4.07',
12564             'Thread::Queue' => '3.09',
12565             'Time::HiRes' => '1.9733',
12566             'threads' => '2.07',
12567             'threads::shared' => '1.51',
12568             'locale' => '1.09',
12569             },
12570             removed => {
12571             }
12572             },
12573             5.025000 => {
12574             delta_from => 5.024,
12575             changed => {
12576             'B::Op_private' => '5.025000',
12577             'Config' => '5.025',
12578             'Module::CoreList' => '5.20160507',
12579             'Module::CoreList::TieHashDelta'=> '5.20160507',
12580             'Module::CoreList::Utils'=> '5.20160507',
12581             'feature' => '1.43',
12582             },
12583             removed => {
12584             }
12585             },
12586             5.025001 => {
12587             delta_from => 5.025,
12588             changed => {
12589             'Archive::Tar' => '2.08',
12590             'Archive::Tar::Constant'=> '2.08',
12591             'Archive::Tar::File' => '2.08',
12592             'B::Op_private' => '5.025001',
12593             'Carp' => '1.41',
12594             'Carp::Heavy' => '1.41',
12595             'Config' => '5.025001',
12596             'Config::Perl::V' => '0.26',
12597             'DB_File' => '1.838',
12598             'Digest::MD5' => '2.55',
12599             'IPC::Cmd' => '0.94',
12600             'IPC::Msg' => '2.07',
12601             'IPC::Semaphore' => '2.07',
12602             'IPC::SharedMem' => '2.07',
12603             'IPC::SysV' => '2.07',
12604             'List::Util' => '1.45_01',
12605             'List::Util::XS' => '1.45_01',
12606             'Locale::Codes' => '3.38',
12607             'Locale::Codes::Constants'=> '3.38',
12608             'Locale::Codes::Country'=> '3.38',
12609             'Locale::Codes::Country_Codes'=> '3.38',
12610             'Locale::Codes::Country_Retired'=> '3.38',
12611             'Locale::Codes::Currency'=> '3.38',
12612             'Locale::Codes::Currency_Codes'=> '3.38',
12613             'Locale::Codes::Currency_Retired'=> '3.38',
12614             'Locale::Codes::LangExt'=> '3.38',
12615             'Locale::Codes::LangExt_Codes'=> '3.38',
12616             'Locale::Codes::LangExt_Retired'=> '3.38',
12617             'Locale::Codes::LangFam'=> '3.38',
12618             'Locale::Codes::LangFam_Codes'=> '3.38',
12619             'Locale::Codes::LangFam_Retired'=> '3.38',
12620             'Locale::Codes::LangVar'=> '3.38',
12621             'Locale::Codes::LangVar_Codes'=> '3.38',
12622             'Locale::Codes::LangVar_Retired'=> '3.38',
12623             'Locale::Codes::Language'=> '3.38',
12624             'Locale::Codes::Language_Codes'=> '3.38',
12625             'Locale::Codes::Language_Retired'=> '3.38',
12626             'Locale::Codes::Script' => '3.38',
12627             'Locale::Codes::Script_Codes'=> '3.38',
12628             'Locale::Codes::Script_Retired'=> '3.38',
12629             'Locale::Country' => '3.38',
12630             'Locale::Currency' => '3.38',
12631             'Locale::Language' => '3.38',
12632             'Locale::Maketext' => '1.27',
12633             'Locale::Script' => '3.38',
12634             'Module::CoreList' => '5.20160520',
12635             'Module::CoreList::TieHashDelta'=> '5.20160520',
12636             'Module::CoreList::Utils'=> '5.20160520',
12637             'Module::Metadata' => '1.000032',
12638             'POSIX' => '1.69',
12639             'Scalar::Util' => '1.45_01',
12640             'Sub::Util' => '1.45_01',
12641             'Sys::Syslog' => '0.34',
12642             'Term::ANSIColor' => '4.05',
12643             'Test2' => '1.302015',
12644             'Test2::API' => '1.302015',
12645             'Test2::API::Breakage' => '1.302015',
12646             'Test2::API::Context' => '1.302015',
12647             'Test2::API::Instance' => '1.302015',
12648             'Test2::API::Stack' => '1.302015',
12649             'Test2::Event' => '1.302015',
12650             'Test2::Event::Bail' => '1.302015',
12651             'Test2::Event::Diag' => '1.302015',
12652             'Test2::Event::Exception'=> '1.302015',
12653             'Test2::Event::Note' => '1.302015',
12654             'Test2::Event::Ok' => '1.302015',
12655             'Test2::Event::Plan' => '1.302015',
12656             'Test2::Event::Skip' => '1.302015',
12657             'Test2::Event::Subtest' => '1.302015',
12658             'Test2::Event::Waiting' => '1.302015',
12659             'Test2::Formatter' => '1.302015',
12660             'Test2::Formatter::TAP' => '1.302015',
12661             'Test2::Hub' => '1.302015',
12662             'Test2::Hub::Interceptor'=> '1.302015',
12663             'Test2::Hub::Interceptor::Terminator'=> '1.302015',
12664             'Test2::Hub::Subtest' => '1.302015',
12665             'Test2::IPC' => '1.302015',
12666             'Test2::IPC::Driver' => '1.302015',
12667             'Test2::IPC::Driver::Files'=> '1.302015',
12668             'Test2::Util' => '1.302015',
12669             'Test2::Util::ExternalMeta'=> '1.302015',
12670             'Test2::Util::HashBase' => '1.302015',
12671             'Test2::Util::Trace' => '1.302015',
12672             'Test::Builder' => '1.302015',
12673             'Test::Builder::Formatter'=> '1.302015',
12674             'Test::Builder::Module' => '1.302015',
12675             'Test::Builder::Tester' => '1.302015',
12676             'Test::Builder::Tester::Color'=> '1.302015',
12677             'Test::Builder::TodoDiag'=> '1.302015',
12678             'Test::More' => '1.302015',
12679             'Test::Simple' => '1.302015',
12680             'Test::Tester' => '1.302015',
12681             'Test::Tester::Capture' => '1.302015',
12682             'Test::Tester::CaptureRunner'=> '1.302015',
12683             'Test::Tester::Delegate'=> '1.302015',
12684             'Test::use::ok' => '1.302015',
12685             'XS::APItest' => '0.81',
12686             '_charnames' => '1.44',
12687             'charnames' => '1.44',
12688             'ok' => '1.302015',
12689             'perlfaq' => '5.021011',
12690             're' => '0.33',
12691             'threads' => '2.08',
12692             'threads::shared' => '1.52',
12693             },
12694             removed => {
12695             }
12696             },
12697             5.025002 => {
12698             delta_from => 5.025001,
12699             changed => {
12700             'App::Cpan' => '1.64',
12701             'B::Op_private' => '5.025002',
12702             'CPAN' => '2.14',
12703             'CPAN::Distribution' => '2.12',
12704             'CPAN::FTP' => '5.5007',
12705             'CPAN::FirstTime' => '5.5309',
12706             'CPAN::HandleConfig' => '5.5007',
12707             'CPAN::Index' => '2.12',
12708             'CPAN::Mirrors' => '2.12',
12709             'CPAN::Plugin' => '0.96',
12710             'CPAN::Shell' => '5.5006',
12711             'Config' => '5.025002',
12712             'Cwd' => '3.64',
12713             'Devel::Peek' => '1.24',
12714             'DynaLoader' => '1.39',
12715             'ExtUtils::Command' => '7.18',
12716             'ExtUtils::Command::MM' => '7.18',
12717             'ExtUtils::Liblist' => '7.18',
12718             'ExtUtils::Liblist::Kid'=> '7.18',
12719             'ExtUtils::MM' => '7.18',
12720             'ExtUtils::MM_AIX' => '7.18',
12721             'ExtUtils::MM_Any' => '7.18',
12722             'ExtUtils::MM_BeOS' => '7.18',
12723             'ExtUtils::MM_Cygwin' => '7.18',
12724             'ExtUtils::MM_DOS' => '7.18',
12725             'ExtUtils::MM_Darwin' => '7.18',
12726             'ExtUtils::MM_MacOS' => '7.18',
12727             'ExtUtils::MM_NW5' => '7.18',
12728             'ExtUtils::MM_OS2' => '7.18',
12729             'ExtUtils::MM_QNX' => '7.18',
12730             'ExtUtils::MM_UWIN' => '7.18',
12731             'ExtUtils::MM_Unix' => '7.18',
12732             'ExtUtils::MM_VMS' => '7.18',
12733             'ExtUtils::MM_VOS' => '7.18',
12734             'ExtUtils::MM_Win32' => '7.18',
12735             'ExtUtils::MM_Win95' => '7.18',
12736             'ExtUtils::MY' => '7.18',
12737             'ExtUtils::MakeMaker' => '7.18',
12738             'ExtUtils::MakeMaker::Config'=> '7.18',
12739             'ExtUtils::MakeMaker::Locale'=> '7.18',
12740             'ExtUtils::MakeMaker::version'=> '7.18',
12741             'ExtUtils::MakeMaker::version::regex'=> '7.18',
12742             'ExtUtils::Miniperl' => '1.06',
12743             'ExtUtils::Mkbootstrap' => '7.18',
12744             'ExtUtils::Mksymlists' => '7.18',
12745             'ExtUtils::ParseXS' => '3.32',
12746             'ExtUtils::ParseXS::Constants'=> '3.32',
12747             'ExtUtils::ParseXS::CountLines'=> '3.32',
12748             'ExtUtils::ParseXS::Eval'=> '3.32',
12749             'ExtUtils::ParseXS::Utilities'=> '3.32',
12750             'ExtUtils::Typemaps' => '3.32',
12751             'ExtUtils::Typemaps::Cmd'=> '3.32',
12752             'ExtUtils::Typemaps::InputMap'=> '3.32',
12753             'ExtUtils::Typemaps::OutputMap'=> '3.32',
12754             'ExtUtils::Typemaps::Type'=> '3.32',
12755             'ExtUtils::testlib' => '7.18',
12756             'File::Copy' => '2.32',
12757             'File::Glob' => '1.27',
12758             'File::Spec' => '3.64',
12759             'File::Spec::Cygwin' => '3.64',
12760             'File::Spec::Epoc' => '3.64',
12761             'File::Spec::Functions' => '3.64',
12762             'File::Spec::Mac' => '3.64',
12763             'File::Spec::OS2' => '3.64',
12764             'File::Spec::Unix' => '3.64',
12765             'File::Spec::VMS' => '3.64',
12766             'File::Spec::Win32' => '3.64',
12767             'FileHandle' => '2.03',
12768             'Getopt::Long' => '2.49',
12769             'HTTP::Tiny' => '0.058',
12770             'JSON::PP' => '2.27400',
12771             'Locale::Codes' => '3.39',
12772             'Locale::Codes::Constants'=> '3.39',
12773             'Locale::Codes::Country'=> '3.39',
12774             'Locale::Codes::Country_Codes'=> '3.39',
12775             'Locale::Codes::Country_Retired'=> '3.39',
12776             'Locale::Codes::Currency'=> '3.39',
12777             'Locale::Codes::Currency_Codes'=> '3.39',
12778             'Locale::Codes::Currency_Retired'=> '3.39',
12779             'Locale::Codes::LangExt'=> '3.39',
12780             'Locale::Codes::LangExt_Codes'=> '3.39',
12781             'Locale::Codes::LangExt_Retired'=> '3.39',
12782             'Locale::Codes::LangFam'=> '3.39',
12783             'Locale::Codes::LangFam_Codes'=> '3.39',
12784             'Locale::Codes::LangFam_Retired'=> '3.39',
12785             'Locale::Codes::LangVar'=> '3.39',
12786             'Locale::Codes::LangVar_Codes'=> '3.39',
12787             'Locale::Codes::LangVar_Retired'=> '3.39',
12788             'Locale::Codes::Language'=> '3.39',
12789             'Locale::Codes::Language_Codes'=> '3.39',
12790             'Locale::Codes::Language_Retired'=> '3.39',
12791             'Locale::Codes::Script' => '3.39',
12792             'Locale::Codes::Script_Codes'=> '3.39',
12793             'Locale::Codes::Script_Retired'=> '3.39',
12794             'Locale::Country' => '3.39',
12795             'Locale::Currency' => '3.39',
12796             'Locale::Language' => '3.39',
12797             'Locale::Script' => '3.39',
12798             'Module::CoreList' => '5.20160620',
12799             'Module::CoreList::TieHashDelta'=> '5.20160620',
12800             'Module::CoreList::Utils'=> '5.20160620',
12801             'Opcode' => '1.35',
12802             'POSIX' => '1.70',
12803             'Pod::Checker' => '1.73',
12804             'Pod::Functions' => '1.11',
12805             'Pod::Usage' => '1.69',
12806             'Test2' => '1.302026',
12807             'Test2::API' => '1.302026',
12808             'Test2::API::Breakage' => '1.302026',
12809             'Test2::API::Context' => '1.302026',
12810             'Test2::API::Instance' => '1.302026',
12811             'Test2::API::Stack' => '1.302026',
12812             'Test2::Event' => '1.302026',
12813             'Test2::Event::Bail' => '1.302026',
12814             'Test2::Event::Diag' => '1.302026',
12815             'Test2::Event::Exception'=> '1.302026',
12816             'Test2::Event::Generic' => '1.302026',
12817             'Test2::Event::Note' => '1.302026',
12818             'Test2::Event::Ok' => '1.302026',
12819             'Test2::Event::Plan' => '1.302026',
12820             'Test2::Event::Skip' => '1.302026',
12821             'Test2::Event::Subtest' => '1.302026',
12822             'Test2::Event::Waiting' => '1.302026',
12823             'Test2::Formatter' => '1.302026',
12824             'Test2::Formatter::TAP' => '1.302026',
12825             'Test2::Hub' => '1.302026',
12826             'Test2::Hub::Interceptor'=> '1.302026',
12827             'Test2::Hub::Interceptor::Terminator'=> '1.302026',
12828             'Test2::Hub::Subtest' => '1.302026',
12829             'Test2::IPC' => '1.302026',
12830             'Test2::IPC::Driver' => '1.302026',
12831             'Test2::IPC::Driver::Files'=> '1.302026',
12832             'Test2::Util' => '1.302026',
12833             'Test2::Util::ExternalMeta'=> '1.302026',
12834             'Test2::Util::HashBase' => '1.302026',
12835             'Test2::Util::Trace' => '1.302026',
12836             'Test::Builder' => '1.302026',
12837             'Test::Builder::Formatter'=> '1.302026',
12838             'Test::Builder::Module' => '1.302026',
12839             'Test::Builder::Tester' => '1.302026',
12840             'Test::Builder::Tester::Color'=> '1.302026',
12841             'Test::Builder::TodoDiag'=> '1.302026',
12842             'Test::More' => '1.302026',
12843             'Test::Simple' => '1.302026',
12844             'Test::Tester' => '1.302026',
12845             'Test::Tester::Capture' => '1.302026',
12846             'Test::Tester::CaptureRunner'=> '1.302026',
12847             'Test::Tester::Delegate'=> '1.302026',
12848             'Test::use::ok' => '1.302026',
12849             'Thread::Queue' => '3.11',
12850             'Time::HiRes' => '1.9734',
12851             'Unicode::UCD' => '0.65',
12852             'VMS::DCLsym' => '1.07',
12853             'XS::APItest' => '0.82',
12854             'diagnostics' => '1.35',
12855             'feature' => '1.44',
12856             'ok' => '1.302026',
12857             'threads' => '2.09',
12858             },
12859             removed => {
12860             }
12861             },
12862             5.025003 => {
12863             delta_from => 5.025002,
12864             changed => {
12865             'B::Op_private' => '5.025003',
12866             'Config' => '5.025003',
12867             'Data::Dumper' => '2.161',
12868             'Devel::PPPort' => '3.35',
12869             'Encode' => '2.84',
12870             'Encode::MIME::Header' => '2.23',
12871             'Encode::MIME::Header::ISO_2022_JP'=> '1.07',
12872             'ExtUtils::ParseXS' => '3.33',
12873             'ExtUtils::ParseXS::Constants'=> '3.33',
12874             'ExtUtils::ParseXS::CountLines'=> '3.33',
12875             'ExtUtils::ParseXS::Eval'=> '3.33',
12876             'ExtUtils::ParseXS::Utilities'=> '3.33',
12877             'ExtUtils::Typemaps' => '3.33',
12878             'ExtUtils::Typemaps::Cmd'=> '3.33',
12879             'ExtUtils::Typemaps::InputMap'=> '3.33',
12880             'ExtUtils::Typemaps::OutputMap'=> '3.33',
12881             'ExtUtils::Typemaps::Type'=> '3.33',
12882             'Hash::Util' => '0.20',
12883             'Math::BigFloat' => '1.999726',
12884             'Math::BigFloat::Trace' => '0.43',
12885             'Math::BigInt' => '1.999726',
12886             'Math::BigInt::Calc' => '1.999726',
12887             'Math::BigInt::CalcEmu' => '1.999726',
12888             'Math::BigInt::FastCalc'=> '0.42',
12889             'Math::BigInt::Trace' => '0.43',
12890             'Math::BigRat' => '0.260804',
12891             'Module::CoreList' => '5.20160720',
12892             'Module::CoreList::TieHashDelta'=> '5.20160720',
12893             'Module::CoreList::Utils'=> '5.20160720',
12894             'Net::Cmd' => '3.09',
12895             'Net::Config' => '3.09',
12896             'Net::Domain' => '3.09',
12897             'Net::FTP' => '3.09',
12898             'Net::FTP::A' => '3.09',
12899             'Net::FTP::E' => '3.09',
12900             'Net::FTP::I' => '3.09',
12901             'Net::FTP::L' => '3.09',
12902             'Net::FTP::dataconn' => '3.09',
12903             'Net::NNTP' => '3.09',
12904             'Net::Netrc' => '3.09',
12905             'Net::POP3' => '3.09',
12906             'Net::SMTP' => '3.09',
12907             'Net::Time' => '3.09',
12908             'Parse::CPAN::Meta' => '1.4422',
12909             'Perl::OSType' => '1.010',
12910             'Test2' => '1.302045',
12911             'Test2::API' => '1.302045',
12912             'Test2::API::Breakage' => '1.302045',
12913             'Test2::API::Context' => '1.302045',
12914             'Test2::API::Instance' => '1.302045',
12915             'Test2::API::Stack' => '1.302045',
12916             'Test2::Event' => '1.302045',
12917             'Test2::Event::Bail' => '1.302045',
12918             'Test2::Event::Diag' => '1.302045',
12919             'Test2::Event::Exception'=> '1.302045',
12920             'Test2::Event::Generic' => '1.302045',
12921             'Test2::Event::Info' => '1.302045',
12922             'Test2::Event::Note' => '1.302045',
12923             'Test2::Event::Ok' => '1.302045',
12924             'Test2::Event::Plan' => '1.302045',
12925             'Test2::Event::Skip' => '1.302045',
12926             'Test2::Event::Subtest' => '1.302045',
12927             'Test2::Event::Waiting' => '1.302045',
12928             'Test2::Formatter' => '1.302045',
12929             'Test2::Formatter::TAP' => '1.302045',
12930             'Test2::Hub' => '1.302045',
12931             'Test2::Hub::Interceptor'=> '1.302045',
12932             'Test2::Hub::Interceptor::Terminator'=> '1.302045',
12933             'Test2::Hub::Subtest' => '1.302045',
12934             'Test2::IPC' => '1.302045',
12935             'Test2::IPC::Driver' => '1.302045',
12936             'Test2::IPC::Driver::Files'=> '1.302045',
12937             'Test2::Util' => '1.302045',
12938             'Test2::Util::ExternalMeta'=> '1.302045',
12939             'Test2::Util::HashBase' => '1.302045',
12940             'Test2::Util::Trace' => '1.302045',
12941             'Test::Builder' => '1.302045',
12942             'Test::Builder::Formatter'=> '1.302045',
12943             'Test::Builder::Module' => '1.302045',
12944             'Test::Builder::Tester' => '1.302045',
12945             'Test::Builder::Tester::Color'=> '1.302045',
12946             'Test::Builder::TodoDiag'=> '1.302045',
12947             'Test::More' => '1.302045',
12948             'Test::Simple' => '1.302045',
12949             'Test::Tester' => '1.302045',
12950             'Test::Tester::Capture' => '1.302045',
12951             'Test::Tester::CaptureRunner'=> '1.302045',
12952             'Test::Tester::Delegate'=> '1.302045',
12953             'Test::use::ok' => '1.302045',
12954             'Time::HiRes' => '1.9739',
12955             'Unicode' => '9.0.0',
12956             'Unicode::UCD' => '0.66',
12957             'XSLoader' => '0.22',
12958             'bigint' => '0.43',
12959             'bignum' => '0.43',
12960             'bigrat' => '0.43',
12961             'encoding' => '2.17_01',
12962             'encoding::warnings' => '0.13',
12963             'feature' => '1.45',
12964             'ok' => '1.302045',
12965             'version' => '0.9917',
12966             'version::regex' => '0.9917',
12967             'warnings' => '1.37',
12968             },
12969             removed => {
12970             }
12971             },
12972             5.025004 => {
12973             delta_from => 5.025003,
12974             changed => {
12975             'App::Cpan' => '1.64_01',
12976             'App::Prove' => '3.36_01',
12977             'App::Prove::State' => '3.36_01',
12978             'App::Prove::State::Result'=> '3.36_01',
12979             'App::Prove::State::Result::Test'=> '3.36_01',
12980             'Archive::Tar' => '2.10',
12981             'Archive::Tar::Constant'=> '2.10',
12982             'Archive::Tar::File' => '2.10',
12983             'B' => '1.63',
12984             'B::Concise' => '0.998',
12985             'B::Deparse' => '1.38',
12986             'B::Op_private' => '5.025004',
12987             'CPAN' => '2.14_01',
12988             'CPAN::Meta' => '2.150010',
12989             'CPAN::Meta::Converter' => '2.150010',
12990             'CPAN::Meta::Feature' => '2.150010',
12991             'CPAN::Meta::History' => '2.150010',
12992             'CPAN::Meta::Merge' => '2.150010',
12993             'CPAN::Meta::Prereqs' => '2.150010',
12994             'CPAN::Meta::Spec' => '2.150010',
12995             'CPAN::Meta::Validator' => '2.150010',
12996             'Carp' => '1.42',
12997             'Carp::Heavy' => '1.42',
12998             'Compress::Zlib' => '2.069_01',
12999             'Config' => '5.025004',
13000             'Config::Perl::V' => '0.27',
13001             'Cwd' => '3.65',
13002             'Digest' => '1.17_01',
13003             'Digest::SHA' => '5.96',
13004             'Encode' => '2.86',
13005             'Errno' => '1.26',
13006             'ExtUtils::Command' => '7.24',
13007             'ExtUtils::Command::MM' => '7.24',
13008             'ExtUtils::Liblist' => '7.24',
13009             'ExtUtils::Liblist::Kid'=> '7.24',
13010             'ExtUtils::MM' => '7.24',
13011             'ExtUtils::MM_AIX' => '7.24',
13012             'ExtUtils::MM_Any' => '7.24',
13013             'ExtUtils::MM_BeOS' => '7.24',
13014             'ExtUtils::MM_Cygwin' => '7.24',
13015             'ExtUtils::MM_DOS' => '7.24',
13016             'ExtUtils::MM_Darwin' => '7.24',
13017             'ExtUtils::MM_MacOS' => '7.24',
13018             'ExtUtils::MM_NW5' => '7.24',
13019             'ExtUtils::MM_OS2' => '7.24',
13020             'ExtUtils::MM_QNX' => '7.24',
13021             'ExtUtils::MM_UWIN' => '7.24',
13022             'ExtUtils::MM_Unix' => '7.24',
13023             'ExtUtils::MM_VMS' => '7.24',
13024             'ExtUtils::MM_VOS' => '7.24',
13025             'ExtUtils::MM_Win32' => '7.24',
13026             'ExtUtils::MM_Win95' => '7.24',
13027             'ExtUtils::MY' => '7.24',
13028             'ExtUtils::MakeMaker' => '7.24',
13029             'ExtUtils::MakeMaker::Config'=> '7.24',
13030             'ExtUtils::MakeMaker::Locale'=> '7.24',
13031             'ExtUtils::MakeMaker::version'=> '7.24',
13032             'ExtUtils::MakeMaker::version::regex'=> '7.24',
13033             'ExtUtils::Mkbootstrap' => '7.24',
13034             'ExtUtils::Mksymlists' => '7.24',
13035             'ExtUtils::testlib' => '7.24',
13036             'File::Fetch' => '0.52',
13037             'File::Spec' => '3.65',
13038             'File::Spec::AmigaOS' => '3.65',
13039             'File::Spec::Cygwin' => '3.65',
13040             'File::Spec::Epoc' => '3.65',
13041             'File::Spec::Functions' => '3.65',
13042             'File::Spec::Mac' => '3.65',
13043             'File::Spec::OS2' => '3.65',
13044             'File::Spec::Unix' => '3.65',
13045             'File::Spec::VMS' => '3.65',
13046             'File::Spec::Win32' => '3.65',
13047             'HTTP::Tiny' => '0.064',
13048             'Hash::Util' => '0.21',
13049             'I18N::LangTags' => '0.41',
13050             'I18N::LangTags::Detect'=> '1.06',
13051             'IO' => '1.37',
13052             'IO::Compress::Adapter::Bzip2'=> '2.069_01',
13053             'IO::Compress::Adapter::Deflate'=> '2.069_01',
13054             'IO::Compress::Adapter::Identity'=> '2.069_01',
13055             'IO::Compress::Base' => '2.069_01',
13056             'IO::Compress::Base::Common'=> '2.069_01',
13057             'IO::Compress::Bzip2' => '2.069_01',
13058             'IO::Compress::Deflate' => '2.069_01',
13059             'IO::Compress::Gzip' => '2.069_01',
13060             'IO::Compress::Gzip::Constants'=> '2.069_01',
13061             'IO::Compress::RawDeflate'=> '2.069_01',
13062             'IO::Compress::Zip' => '2.069_01',
13063             'IO::Compress::Zip::Constants'=> '2.069_01',
13064             'IO::Compress::Zlib::Constants'=> '2.069_01',
13065             'IO::Compress::Zlib::Extra'=> '2.069_01',
13066             'IO::Socket::IP' => '0.38',
13067             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_01',
13068             'IO::Uncompress::Adapter::Identity'=> '2.069_01',
13069             'IO::Uncompress::Adapter::Inflate'=> '2.069_01',
13070             'IO::Uncompress::AnyInflate'=> '2.069_01',
13071             'IO::Uncompress::AnyUncompress'=> '2.069_01',
13072             'IO::Uncompress::Base' => '2.069_01',
13073             'IO::Uncompress::Bunzip2'=> '2.069_01',
13074             'IO::Uncompress::Gunzip'=> '2.069_01',
13075             'IO::Uncompress::Inflate'=> '2.069_01',
13076             'IO::Uncompress::RawInflate'=> '2.069_01',
13077             'IO::Uncompress::Unzip' => '2.069_01',
13078             'IPC::Cmd' => '0.96',
13079             'JSON::PP' => '2.27400_01',
13080             'Locale::Maketext' => '1.28',
13081             'Locale::Maketext::Simple'=> '0.21_01',
13082             'Math::BigFloat::Trace' => '0.43_01',
13083             'Math::BigInt::Trace' => '0.43_01',
13084             'Memoize' => '1.03_01',
13085             'Module::CoreList' => '5.20160820',
13086             'Module::CoreList::TieHashDelta'=> '5.20160820',
13087             'Module::CoreList::Utils'=> '5.20160820',
13088             'Module::Load::Conditional'=> '0.68',
13089             'Module::Metadata' => '1.000033',
13090             'NEXT' => '0.67',
13091             'Net::Cmd' => '3.10',
13092             'Net::Config' => '3.10',
13093             'Net::Domain' => '3.10',
13094             'Net::FTP' => '3.10',
13095             'Net::FTP::A' => '3.10',
13096             'Net::FTP::E' => '3.10',
13097             'Net::FTP::I' => '3.10',
13098             'Net::FTP::L' => '3.10',
13099             'Net::FTP::dataconn' => '3.10',
13100             'Net::NNTP' => '3.10',
13101             'Net::Netrc' => '3.10',
13102             'Net::POP3' => '3.10',
13103             'Net::Ping' => '2.44',
13104             'Net::SMTP' => '3.10',
13105             'Net::Time' => '3.10',
13106             'Opcode' => '1.37',
13107             'POSIX' => '1.71',
13108             'Parse::CPAN::Meta' => '2.150010',
13109             'Pod::Html' => '1.2201',
13110             'Pod::Perldoc' => '3.27',
13111             'Pod::Perldoc::BaseTo' => '3.27',
13112             'Pod::Perldoc::GetOptsOO'=> '3.27',
13113             'Pod::Perldoc::ToANSI' => '3.27',
13114             'Pod::Perldoc::ToChecker'=> '3.27',
13115             'Pod::Perldoc::ToMan' => '3.27',
13116             'Pod::Perldoc::ToNroff' => '3.27',
13117             'Pod::Perldoc::ToPod' => '3.27',
13118             'Pod::Perldoc::ToRtf' => '3.27',
13119             'Pod::Perldoc::ToTerm' => '3.27',
13120             'Pod::Perldoc::ToText' => '3.27',
13121             'Pod::Perldoc::ToTk' => '3.27',
13122             'Pod::Perldoc::ToXml' => '3.27',
13123             'Storable' => '2.57',
13124             'Sys::Syslog' => '0.34_01',
13125             'TAP::Base' => '3.36_01',
13126             'TAP::Formatter::Base' => '3.36_01',
13127             'TAP::Formatter::Color' => '3.36_01',
13128             'TAP::Formatter::Console'=> '3.36_01',
13129             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13130             'TAP::Formatter::Console::Session'=> '3.36_01',
13131             'TAP::Formatter::File' => '3.36_01',
13132             'TAP::Formatter::File::Session'=> '3.36_01',
13133             'TAP::Formatter::Session'=> '3.36_01',
13134             'TAP::Harness' => '3.36_01',
13135             'TAP::Harness::Env' => '3.36_01',
13136             'TAP::Object' => '3.36_01',
13137             'TAP::Parser' => '3.36_01',
13138             'TAP::Parser::Aggregator'=> '3.36_01',
13139             'TAP::Parser::Grammar' => '3.36_01',
13140             'TAP::Parser::Iterator' => '3.36_01',
13141             'TAP::Parser::Iterator::Array'=> '3.36_01',
13142             'TAP::Parser::Iterator::Process'=> '3.36_01',
13143             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13144             'TAP::Parser::IteratorFactory'=> '3.36_01',
13145             'TAP::Parser::Multiplexer'=> '3.36_01',
13146             'TAP::Parser::Result' => '3.36_01',
13147             'TAP::Parser::Result::Bailout'=> '3.36_01',
13148             'TAP::Parser::Result::Comment'=> '3.36_01',
13149             'TAP::Parser::Result::Plan'=> '3.36_01',
13150             'TAP::Parser::Result::Pragma'=> '3.36_01',
13151             'TAP::Parser::Result::Test'=> '3.36_01',
13152             'TAP::Parser::Result::Unknown'=> '3.36_01',
13153             'TAP::Parser::Result::Version'=> '3.36_01',
13154             'TAP::Parser::Result::YAML'=> '3.36_01',
13155             'TAP::Parser::ResultFactory'=> '3.36_01',
13156             'TAP::Parser::Scheduler'=> '3.36_01',
13157             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13158             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13159             'TAP::Parser::Source' => '3.36_01',
13160             'TAP::Parser::SourceHandler'=> '3.36_01',
13161             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13162             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13163             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13164             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13165             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13166             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13167             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13168             'Test' => '1.29',
13169             'Test2' => '1.302052',
13170             'Test2::API' => '1.302052',
13171             'Test2::API::Breakage' => '1.302052',
13172             'Test2::API::Context' => '1.302052',
13173             'Test2::API::Instance' => '1.302052',
13174             'Test2::API::Stack' => '1.302052',
13175             'Test2::Event' => '1.302052',
13176             'Test2::Event::Bail' => '1.302052',
13177             'Test2::Event::Diag' => '1.302052',
13178             'Test2::Event::Exception'=> '1.302052',
13179             'Test2::Event::Generic' => '1.302052',
13180             'Test2::Event::Info' => '1.302052',
13181             'Test2::Event::Note' => '1.302052',
13182             'Test2::Event::Ok' => '1.302052',
13183             'Test2::Event::Plan' => '1.302052',
13184             'Test2::Event::Skip' => '1.302052',
13185             'Test2::Event::Subtest' => '1.302052',
13186             'Test2::Event::Waiting' => '1.302052',
13187             'Test2::Formatter' => '1.302052',
13188             'Test2::Formatter::TAP' => '1.302052',
13189             'Test2::Hub' => '1.302052',
13190             'Test2::Hub::Interceptor'=> '1.302052',
13191             'Test2::Hub::Interceptor::Terminator'=> '1.302052',
13192             'Test2::Hub::Subtest' => '1.302052',
13193             'Test2::IPC' => '1.302052',
13194             'Test2::IPC::Driver' => '1.302052',
13195             'Test2::IPC::Driver::Files'=> '1.302052',
13196             'Test2::Util' => '1.302052',
13197             'Test2::Util::ExternalMeta'=> '1.302052',
13198             'Test2::Util::HashBase' => '1.302052',
13199             'Test2::Util::Trace' => '1.302052',
13200             'Test::Builder' => '1.302052',
13201             'Test::Builder::Formatter'=> '1.302052',
13202             'Test::Builder::Module' => '1.302052',
13203             'Test::Builder::Tester' => '1.302052',
13204             'Test::Builder::Tester::Color'=> '1.302052',
13205             'Test::Builder::TodoDiag'=> '1.302052',
13206             'Test::Harness' => '3.36_01',
13207             'Test::More' => '1.302052',
13208             'Test::Simple' => '1.302052',
13209             'Test::Tester' => '1.302052',
13210             'Test::Tester::Capture' => '1.302052',
13211             'Test::Tester::CaptureRunner'=> '1.302052',
13212             'Test::Tester::Delegate'=> '1.302052',
13213             'Test::use::ok' => '1.302052',
13214             'Tie::Hash::NamedCapture'=> '0.10',
13215             'Time::Local' => '1.24',
13216             'XS::APItest' => '0.83',
13217             'arybase' => '0.12',
13218             'base' => '2.24',
13219             'bigint' => '0.43_01',
13220             'bignum' => '0.43_01',
13221             'bigrat' => '0.43_01',
13222             'encoding' => '2.18',
13223             'ok' => '1.302052',
13224             },
13225             removed => {
13226             }
13227             },
13228             5.025005 => {
13229             delta_from => 5.025004,
13230             changed => {
13231             'B::Op_private' => '5.025005',
13232             'Config' => '5.025005',
13233             'Filter::Simple' => '0.93',
13234             'Locale::Codes' => '3.40',
13235             'Locale::Codes::Constants'=> '3.40',
13236             'Locale::Codes::Country'=> '3.40',
13237             'Locale::Codes::Country_Codes'=> '3.40',
13238             'Locale::Codes::Country_Retired'=> '3.40',
13239             'Locale::Codes::Currency'=> '3.40',
13240             'Locale::Codes::Currency_Codes'=> '3.40',
13241             'Locale::Codes::Currency_Retired'=> '3.40',
13242             'Locale::Codes::LangExt'=> '3.40',
13243             'Locale::Codes::LangExt_Codes'=> '3.40',
13244             'Locale::Codes::LangExt_Retired'=> '3.40',
13245             'Locale::Codes::LangFam'=> '3.40',
13246             'Locale::Codes::LangFam_Codes'=> '3.40',
13247             'Locale::Codes::LangFam_Retired'=> '3.40',
13248             'Locale::Codes::LangVar'=> '3.40',
13249             'Locale::Codes::LangVar_Codes'=> '3.40',
13250             'Locale::Codes::LangVar_Retired'=> '3.40',
13251             'Locale::Codes::Language'=> '3.40',
13252             'Locale::Codes::Language_Codes'=> '3.40',
13253             'Locale::Codes::Language_Retired'=> '3.40',
13254             'Locale::Codes::Script' => '3.40',
13255             'Locale::Codes::Script_Codes'=> '3.40',
13256             'Locale::Codes::Script_Retired'=> '3.40',
13257             'Locale::Country' => '3.40',
13258             'Locale::Currency' => '3.40',
13259             'Locale::Language' => '3.40',
13260             'Locale::Script' => '3.40',
13261             'Module::CoreList' => '5.20160920',
13262             'Module::CoreList::TieHashDelta'=> '5.20160920',
13263             'Module::CoreList::Utils'=> '5.20160920',
13264             'POSIX' => '1.72',
13265             'Sys::Syslog' => '0.35',
13266             'Test2' => '1.302056',
13267             'Test2::API' => '1.302056',
13268             'Test2::API::Breakage' => '1.302056',
13269             'Test2::API::Context' => '1.302056',
13270             'Test2::API::Instance' => '1.302056',
13271             'Test2::API::Stack' => '1.302056',
13272             'Test2::Event' => '1.302056',
13273             'Test2::Event::Bail' => '1.302056',
13274             'Test2::Event::Diag' => '1.302056',
13275             'Test2::Event::Exception'=> '1.302056',
13276             'Test2::Event::Generic' => '1.302056',
13277             'Test2::Event::Info' => '1.302056',
13278             'Test2::Event::Note' => '1.302056',
13279             'Test2::Event::Ok' => '1.302056',
13280             'Test2::Event::Plan' => '1.302056',
13281             'Test2::Event::Skip' => '1.302056',
13282             'Test2::Event::Subtest' => '1.302056',
13283             'Test2::Event::Waiting' => '1.302056',
13284             'Test2::Formatter' => '1.302056',
13285             'Test2::Formatter::TAP' => '1.302056',
13286             'Test2::Hub' => '1.302056',
13287             'Test2::Hub::Interceptor'=> '1.302056',
13288             'Test2::Hub::Interceptor::Terminator'=> '1.302056',
13289             'Test2::Hub::Subtest' => '1.302056',
13290             'Test2::IPC' => '1.302056',
13291             'Test2::IPC::Driver' => '1.302056',
13292             'Test2::IPC::Driver::Files'=> '1.302056',
13293             'Test2::Util' => '1.302056',
13294             'Test2::Util::ExternalMeta'=> '1.302056',
13295             'Test2::Util::HashBase' => '1.302056',
13296             'Test2::Util::Trace' => '1.302056',
13297             'Test::Builder' => '1.302056',
13298             'Test::Builder::Formatter'=> '1.302056',
13299             'Test::Builder::Module' => '1.302056',
13300             'Test::Builder::Tester' => '1.302056',
13301             'Test::Builder::Tester::Color'=> '1.302056',
13302             'Test::Builder::TodoDiag'=> '1.302056',
13303             'Test::More' => '1.302056',
13304             'Test::Simple' => '1.302056',
13305             'Test::Tester' => '1.302056',
13306             'Test::Tester::Capture' => '1.302056',
13307             'Test::Tester::CaptureRunner'=> '1.302056',
13308             'Test::Tester::Delegate'=> '1.302056',
13309             'Test::use::ok' => '1.302056',
13310             'Thread::Semaphore' => '2.13',
13311             'XS::APItest' => '0.84',
13312             'XSLoader' => '0.24',
13313             'ok' => '1.302056',
13314             },
13315             removed => {
13316             }
13317             },
13318             5.025006 => {
13319             delta_from => 5.025005,
13320             changed => {
13321             'Archive::Tar' => '2.14',
13322             'Archive::Tar::Constant'=> '2.14',
13323             'Archive::Tar::File' => '2.14',
13324             'B' => '1.64',
13325             'B::Concise' => '0.999',
13326             'B::Deparse' => '1.39',
13327             'B::Op_private' => '5.025006',
13328             'Config' => '5.025006',
13329             'Data::Dumper' => '2.162',
13330             'Devel::Peek' => '1.25',
13331             'HTTP::Tiny' => '0.070',
13332             'List::Util' => '1.46',
13333             'List::Util::XS' => '1.46',
13334             'Module::CoreList' => '5.20161020',
13335             'Module::CoreList::TieHashDelta'=> '5.20161020',
13336             'Module::CoreList::Utils'=> '5.20161020',
13337             'Net::Ping' => '2.51',
13338             'OS2::DLL' => '1.07',
13339             'Opcode' => '1.38',
13340             'POSIX' => '1.73',
13341             'PerlIO::encoding' => '0.25',
13342             'Pod::Man' => '4.08',
13343             'Pod::ParseLink' => '4.08',
13344             'Pod::Text' => '4.08',
13345             'Pod::Text::Color' => '4.08',
13346             'Pod::Text::Overstrike' => '4.08',
13347             'Pod::Text::Termcap' => '4.08',
13348             'Scalar::Util' => '1.46',
13349             'Storable' => '2.58',
13350             'Sub::Util' => '1.46',
13351             'Test2' => '1.302059',
13352             'Test2::API' => '1.302059',
13353             'Test2::API::Breakage' => '1.302059',
13354             'Test2::API::Context' => '1.302059',
13355             'Test2::API::Instance' => '1.302059',
13356             'Test2::API::Stack' => '1.302059',
13357             'Test2::Event' => '1.302059',
13358             'Test2::Event::Bail' => '1.302059',
13359             'Test2::Event::Diag' => '1.302059',
13360             'Test2::Event::Exception'=> '1.302059',
13361             'Test2::Event::Generic' => '1.302059',
13362             'Test2::Event::Info' => '1.302059',
13363             'Test2::Event::Note' => '1.302059',
13364             'Test2::Event::Ok' => '1.302059',
13365             'Test2::Event::Plan' => '1.302059',
13366             'Test2::Event::Skip' => '1.302059',
13367             'Test2::Event::Subtest' => '1.302059',
13368             'Test2::Event::Waiting' => '1.302059',
13369             'Test2::Formatter' => '1.302059',
13370             'Test2::Formatter::TAP' => '1.302059',
13371             'Test2::Hub' => '1.302059',
13372             'Test2::Hub::Interceptor'=> '1.302059',
13373             'Test2::Hub::Interceptor::Terminator'=> '1.302059',
13374             'Test2::Hub::Subtest' => '1.302059',
13375             'Test2::IPC' => '1.302059',
13376             'Test2::IPC::Driver' => '1.302059',
13377             'Test2::IPC::Driver::Files'=> '1.302059',
13378             'Test2::Util' => '1.302059',
13379             'Test2::Util::ExternalMeta'=> '1.302059',
13380             'Test2::Util::HashBase' => '1.302059',
13381             'Test2::Util::Trace' => '1.302059',
13382             'Test::Builder' => '1.302059',
13383             'Test::Builder::Formatter'=> '1.302059',
13384             'Test::Builder::Module' => '1.302059',
13385             'Test::Builder::Tester' => '1.302059',
13386             'Test::Builder::Tester::Color'=> '1.302059',
13387             'Test::Builder::TodoDiag'=> '1.302059',
13388             'Test::More' => '1.302059',
13389             'Test::Simple' => '1.302059',
13390             'Test::Tester' => '1.302059',
13391             'Test::Tester::Capture' => '1.302059',
13392             'Test::Tester::CaptureRunner'=> '1.302059',
13393             'Test::Tester::Delegate'=> '1.302059',
13394             'Test::use::ok' => '1.302059',
13395             'Time::HiRes' => '1.9740_01',
13396             'VMS::Stdio' => '2.42',
13397             'XS::APItest' => '0.86',
13398             'attributes' => '0.28',
13399             'mro' => '1.19',
13400             'ok' => '1.302059',
13401             'overload' => '1.27',
13402             'parent' => '0.236',
13403             },
13404             removed => {
13405             }
13406             },
13407             5.025007 => {
13408             delta_from => 5.025006,
13409             changed => {
13410             'Archive::Tar' => '2.18',
13411             'Archive::Tar::Constant'=> '2.18',
13412             'Archive::Tar::File' => '2.18',
13413             'B' => '1.65',
13414             'B::Op_private' => '5.025007',
13415             'Config' => '5.025007',
13416             'Cwd' => '3.66',
13417             'Data::Dumper' => '2.165',
13418             'Devel::Peek' => '1.26',
13419             'DynaLoader' => '1.40',
13420             'Errno' => '1.27',
13421             'ExtUtils::ParseXS::Utilities'=> '3.34',
13422             'File::Spec' => '3.66',
13423             'File::Spec::AmigaOS' => '3.66',
13424             'File::Spec::Cygwin' => '3.66',
13425             'File::Spec::Epoc' => '3.66',
13426             'File::Spec::Functions' => '3.66',
13427             'File::Spec::Mac' => '3.66',
13428             'File::Spec::OS2' => '3.66',
13429             'File::Spec::Unix' => '3.66',
13430             'File::Spec::VMS' => '3.66',
13431             'File::Spec::Win32' => '3.66',
13432             'Hash::Util' => '0.22',
13433             'JSON::PP' => '2.27400_02',
13434             'List::Util' => '1.46_02',
13435             'List::Util::XS' => '1.46_02',
13436             'Math::BigFloat' => '1.999727',
13437             'Math::BigInt' => '1.999727',
13438             'Math::BigInt::Calc' => '1.999727',
13439             'Math::BigInt::CalcEmu' => '1.999727',
13440             'Math::Complex' => '1.5901',
13441             'Module::CoreList' => '5.20161120',
13442             'Module::CoreList::TieHashDelta'=> '5.20161120',
13443             'Module::CoreList::Utils'=> '5.20161120',
13444             'Net::Ping' => '2.55',
13445             'Opcode' => '1.39',
13446             'POSIX' => '1.75',
13447             'Pod::Man' => '4.09',
13448             'Pod::ParseLink' => '4.09',
13449             'Pod::Text' => '4.09',
13450             'Pod::Text::Color' => '4.09',
13451             'Pod::Text::Overstrike' => '4.09',
13452             'Pod::Text::Termcap' => '4.09',
13453             'Scalar::Util' => '1.46_02',
13454             'Storable' => '2.59',
13455             'Sub::Util' => '1.46_02',
13456             'Term::ANSIColor' => '4.06',
13457             'Test2' => '1.302062',
13458             'Test2::API' => '1.302062',
13459             'Test2::API::Breakage' => '1.302062',
13460             'Test2::API::Context' => '1.302062',
13461             'Test2::API::Instance' => '1.302062',
13462             'Test2::API::Stack' => '1.302062',
13463             'Test2::Event' => '1.302062',
13464             'Test2::Event::Bail' => '1.302062',
13465             'Test2::Event::Diag' => '1.302062',
13466             'Test2::Event::Exception'=> '1.302062',
13467             'Test2::Event::Generic' => '1.302062',
13468             'Test2::Event::Info' => '1.302062',
13469             'Test2::Event::Note' => '1.302062',
13470             'Test2::Event::Ok' => '1.302062',
13471             'Test2::Event::Plan' => '1.302062',
13472             'Test2::Event::Skip' => '1.302062',
13473             'Test2::Event::Subtest' => '1.302062',
13474             'Test2::Event::Waiting' => '1.302062',
13475             'Test2::Formatter' => '1.302062',
13476             'Test2::Formatter::TAP' => '1.302062',
13477             'Test2::Hub' => '1.302062',
13478             'Test2::Hub::Interceptor'=> '1.302062',
13479             'Test2::Hub::Interceptor::Terminator'=> '1.302062',
13480             'Test2::Hub::Subtest' => '1.302062',
13481             'Test2::IPC' => '1.302062',
13482             'Test2::IPC::Driver' => '1.302062',
13483             'Test2::IPC::Driver::Files'=> '1.302062',
13484             'Test2::Util' => '1.302062',
13485             'Test2::Util::ExternalMeta'=> '1.302062',
13486             'Test2::Util::HashBase' => '1.302062',
13487             'Test2::Util::Trace' => '1.302062',
13488             'Test::Builder' => '1.302062',
13489             'Test::Builder::Formatter'=> '1.302062',
13490             'Test::Builder::Module' => '1.302062',
13491             'Test::Builder::Tester' => '1.302062',
13492             'Test::Builder::Tester::Color'=> '1.302062',
13493             'Test::Builder::TodoDiag'=> '1.302062',
13494             'Test::More' => '1.302062',
13495             'Test::Simple' => '1.302062',
13496             'Test::Tester' => '1.302062',
13497             'Test::Tester::Capture' => '1.302062',
13498             'Test::Tester::CaptureRunner'=> '1.302062',
13499             'Test::Tester::Delegate'=> '1.302062',
13500             'Test::use::ok' => '1.302062',
13501             'Time::HiRes' => '1.9740_03',
13502             'Unicode::Collate' => '1.18',
13503             'Unicode::Collate::CJK::Big5'=> '1.18',
13504             'Unicode::Collate::CJK::GB2312'=> '1.18',
13505             'Unicode::Collate::CJK::JISX0208'=> '1.18',
13506             'Unicode::Collate::CJK::Korean'=> '1.18',
13507             'Unicode::Collate::CJK::Pinyin'=> '1.18',
13508             'Unicode::Collate::CJK::Stroke'=> '1.18',
13509             'Unicode::Collate::CJK::Zhuyin'=> '1.18',
13510             'Unicode::Collate::Locale'=> '1.18',
13511             'Unicode::UCD' => '0.67',
13512             'XS::APItest' => '0.87',
13513             'XS::Typemap' => '0.15',
13514             'mro' => '1.20',
13515             'ok' => '1.302062',
13516             'threads' => '2.10',
13517             },
13518             removed => {
13519             }
13520             },
13521             5.025008 => {
13522             delta_from => 5.025007,
13523             changed => {
13524             'Archive::Tar' => '2.24',
13525             'Archive::Tar::Constant'=> '2.24',
13526             'Archive::Tar::File' => '2.24',
13527             'B::Debug' => '1.24',
13528             'B::Op_private' => '5.025008',
13529             'Config' => '5.025008',
13530             'Data::Dumper' => '2.166',
13531             'Encode' => '2.88',
13532             'Encode::Alias' => '2.21',
13533             'Encode::CN::HZ' => '2.08',
13534             'Encode::MIME::Header' => '2.24',
13535             'Encode::MIME::Name' => '1.02',
13536             'Encode::Unicode' => '2.1501',
13537             'IO' => '1.38',
13538             'Locale::Codes' => '3.42',
13539             'Locale::Codes::Constants'=> '3.42',
13540             'Locale::Codes::Country'=> '3.42',
13541             'Locale::Codes::Country_Codes'=> '3.42',
13542             'Locale::Codes::Country_Retired'=> '3.42',
13543             'Locale::Codes::Currency'=> '3.42',
13544             'Locale::Codes::Currency_Codes'=> '3.42',
13545             'Locale::Codes::Currency_Retired'=> '3.42',
13546             'Locale::Codes::LangExt'=> '3.42',
13547             'Locale::Codes::LangExt_Codes'=> '3.42',
13548             'Locale::Codes::LangExt_Retired'=> '3.42',
13549             'Locale::Codes::LangFam'=> '3.42',
13550             'Locale::Codes::LangFam_Codes'=> '3.42',
13551             'Locale::Codes::LangFam_Retired'=> '3.42',
13552             'Locale::Codes::LangVar'=> '3.42',
13553             'Locale::Codes::LangVar_Codes'=> '3.42',
13554             'Locale::Codes::LangVar_Retired'=> '3.42',
13555             'Locale::Codes::Language'=> '3.42',
13556             'Locale::Codes::Language_Codes'=> '3.42',
13557             'Locale::Codes::Language_Retired'=> '3.42',
13558             'Locale::Codes::Script' => '3.42',
13559             'Locale::Codes::Script_Codes'=> '3.42',
13560             'Locale::Codes::Script_Retired'=> '3.42',
13561             'Locale::Country' => '3.42',
13562             'Locale::Currency' => '3.42',
13563             'Locale::Language' => '3.42',
13564             'Locale::Script' => '3.42',
13565             'Math::BigFloat' => '1.999806',
13566             'Math::BigFloat::Trace' => '0.47',
13567             'Math::BigInt' => '1.999806',
13568             'Math::BigInt::Calc' => '1.999806',
13569             'Math::BigInt::CalcEmu' => '1.999806',
13570             'Math::BigInt::FastCalc'=> '0.5005',
13571             'Math::BigInt::Lib' => '1.999806',
13572             'Math::BigInt::Trace' => '0.47',
13573             'Math::BigRat' => '0.2611',
13574             'Module::CoreList' => '5.20161220',
13575             'Module::CoreList::TieHashDelta'=> '5.20161220',
13576             'Module::CoreList::Utils'=> '5.20161220',
13577             'POSIX' => '1.76',
13578             'PerlIO::scalar' => '0.25',
13579             'Pod::Simple' => '3.35',
13580             'Pod::Simple::BlackBox' => '3.35',
13581             'Pod::Simple::Checker' => '3.35',
13582             'Pod::Simple::Debug' => '3.35',
13583             'Pod::Simple::DumpAsText'=> '3.35',
13584             'Pod::Simple::DumpAsXML'=> '3.35',
13585             'Pod::Simple::HTML' => '3.35',
13586             'Pod::Simple::HTMLBatch'=> '3.35',
13587             'Pod::Simple::LinkSection'=> '3.35',
13588             'Pod::Simple::Methody' => '3.35',
13589             'Pod::Simple::Progress' => '3.35',
13590             'Pod::Simple::PullParser'=> '3.35',
13591             'Pod::Simple::PullParserEndToken'=> '3.35',
13592             'Pod::Simple::PullParserStartToken'=> '3.35',
13593             'Pod::Simple::PullParserTextToken'=> '3.35',
13594             'Pod::Simple::PullParserToken'=> '3.35',
13595             'Pod::Simple::RTF' => '3.35',
13596             'Pod::Simple::Search' => '3.35',
13597             'Pod::Simple::SimpleTree'=> '3.35',
13598             'Pod::Simple::Text' => '3.35',
13599             'Pod::Simple::TextContent'=> '3.35',
13600             'Pod::Simple::TiedOutFH'=> '3.35',
13601             'Pod::Simple::Transcode'=> '3.35',
13602             'Pod::Simple::TranscodeDumb'=> '3.35',
13603             'Pod::Simple::TranscodeSmart'=> '3.35',
13604             'Pod::Simple::XHTML' => '3.35',
13605             'Pod::Simple::XMLOutStream'=> '3.35',
13606             'Test2' => '1.302073',
13607             'Test2::API' => '1.302073',
13608             'Test2::API::Breakage' => '1.302073',
13609             'Test2::API::Context' => '1.302073',
13610             'Test2::API::Instance' => '1.302073',
13611             'Test2::API::Stack' => '1.302073',
13612             'Test2::Event' => '1.302073',
13613             'Test2::Event::Bail' => '1.302073',
13614             'Test2::Event::Diag' => '1.302073',
13615             'Test2::Event::Encoding'=> '1.302073',
13616             'Test2::Event::Exception'=> '1.302073',
13617             'Test2::Event::Generic' => '1.302073',
13618             'Test2::Event::Info' => '1.302073',
13619             'Test2::Event::Note' => '1.302073',
13620             'Test2::Event::Ok' => '1.302073',
13621             'Test2::Event::Plan' => '1.302073',
13622             'Test2::Event::Skip' => '1.302073',
13623             'Test2::Event::Subtest' => '1.302073',
13624             'Test2::Event::TAP::Version'=> '1.302073',
13625             'Test2::Event::Waiting' => '1.302073',
13626             'Test2::Formatter' => '1.302073',
13627             'Test2::Formatter::TAP' => '1.302073',
13628             'Test2::Hub' => '1.302073',
13629             'Test2::Hub::Interceptor'=> '1.302073',
13630             'Test2::Hub::Interceptor::Terminator'=> '1.302073',
13631             'Test2::Hub::Subtest' => '1.302073',
13632             'Test2::IPC' => '1.302073',
13633             'Test2::IPC::Driver' => '1.302073',
13634             'Test2::IPC::Driver::Files'=> '1.302073',
13635             'Test2::Tools::Tiny' => '1.302073',
13636             'Test2::Util' => '1.302073',
13637             'Test2::Util::ExternalMeta'=> '1.302073',
13638             'Test2::Util::HashBase' => '0.002',
13639             'Test2::Util::Trace' => '1.302073',
13640             'Test::Builder' => '1.302073',
13641             'Test::Builder::Formatter'=> '1.302073',
13642             'Test::Builder::Module' => '1.302073',
13643             'Test::Builder::Tester' => '1.302073',
13644             'Test::Builder::Tester::Color'=> '1.302073',
13645             'Test::Builder::TodoDiag'=> '1.302073',
13646             'Test::More' => '1.302073',
13647             'Test::Simple' => '1.302073',
13648             'Test::Tester' => '1.302073',
13649             'Test::Tester::Capture' => '1.302073',
13650             'Test::Tester::CaptureRunner'=> '1.302073',
13651             'Test::Tester::Delegate'=> '1.302073',
13652             'Test::use::ok' => '1.302073',
13653             'Time::HiRes' => '1.9741',
13654             'Time::Local' => '1.25',
13655             'Unicode::Collate' => '1.19',
13656             'Unicode::Collate::CJK::Big5'=> '1.19',
13657             'Unicode::Collate::CJK::GB2312'=> '1.19',
13658             'Unicode::Collate::CJK::JISX0208'=> '1.19',
13659             'Unicode::Collate::CJK::Korean'=> '1.19',
13660             'Unicode::Collate::CJK::Pinyin'=> '1.19',
13661             'Unicode::Collate::CJK::Stroke'=> '1.19',
13662             'Unicode::Collate::CJK::Zhuyin'=> '1.19',
13663             'Unicode::Collate::Locale'=> '1.19',
13664             'bigint' => '0.47',
13665             'bignum' => '0.47',
13666             'bigrat' => '0.47',
13667             'encoding' => '2.19',
13668             'ok' => '1.302073',
13669             },
13670             removed => {
13671             }
13672             },
13673             5.022003 => {
13674             delta_from => 5.022002,
13675             changed => {
13676             'App::Cpan' => '1.63_01',
13677             'App::Prove' => '3.35_01',
13678             'App::Prove::State' => '3.35_01',
13679             'App::Prove::State::Result'=> '3.35_01',
13680             'App::Prove::State::Result::Test'=> '3.35_01',
13681             'Archive::Tar' => '2.04_01',
13682             'Archive::Tar::Constant'=> '2.04_01',
13683             'Archive::Tar::File' => '2.04_01',
13684             'B::Op_private' => '5.022003',
13685             'CPAN' => '2.11_01',
13686             'Compress::Zlib' => '2.068_001',
13687             'Config' => '5.022003',
13688             'Cwd' => '3.56_02',
13689             'Digest' => '1.17_01',
13690             'Digest::SHA' => '5.95_01',
13691             'Encode' => '2.72_01',
13692             'ExtUtils::Command' => '1.20_01',
13693             'ExtUtils::Command::MM' => '7.04_02',
13694             'ExtUtils::Liblist' => '7.04_02',
13695             'ExtUtils::Liblist::Kid'=> '7.04_02',
13696             'ExtUtils::MM' => '7.04_02',
13697             'ExtUtils::MM_AIX' => '7.04_02',
13698             'ExtUtils::MM_Any' => '7.04_02',
13699             'ExtUtils::MM_BeOS' => '7.04_02',
13700             'ExtUtils::MM_Cygwin' => '7.04_02',
13701             'ExtUtils::MM_DOS' => '7.04_02',
13702             'ExtUtils::MM_Darwin' => '7.04_02',
13703             'ExtUtils::MM_MacOS' => '7.04_02',
13704             'ExtUtils::MM_NW5' => '7.04_02',
13705             'ExtUtils::MM_OS2' => '7.04_02',
13706             'ExtUtils::MM_QNX' => '7.04_02',
13707             'ExtUtils::MM_UWIN' => '7.04_02',
13708             'ExtUtils::MM_Unix' => '7.04_02',
13709             'ExtUtils::MM_VMS' => '7.04_02',
13710             'ExtUtils::MM_VOS' => '7.04_02',
13711             'ExtUtils::MM_Win32' => '7.04_02',
13712             'ExtUtils::MM_Win95' => '7.04_02',
13713             'ExtUtils::MY' => '7.04_02',
13714             'ExtUtils::MakeMaker' => '7.04_02',
13715             'ExtUtils::MakeMaker::Config'=> '7.04_02',
13716             'ExtUtils::Mkbootstrap' => '7.04_02',
13717             'ExtUtils::Mksymlists' => '7.04_02',
13718             'ExtUtils::testlib' => '7.04_02',
13719             'File::Fetch' => '0.48_01',
13720             'File::Spec' => '3.56_02',
13721             'File::Spec::Cygwin' => '3.56_02',
13722             'File::Spec::Epoc' => '3.56_02',
13723             'File::Spec::Functions' => '3.56_02',
13724             'File::Spec::Mac' => '3.56_02',
13725             'File::Spec::OS2' => '3.56_02',
13726             'File::Spec::Unix' => '3.56_02',
13727             'File::Spec::VMS' => '3.56_02',
13728             'File::Spec::Win32' => '3.56_02',
13729             'HTTP::Tiny' => '0.054_01',
13730             'I18N::LangTags::Detect'=> '1.05_01',
13731             'IO' => '1.35_01',
13732             'IO::Compress::Adapter::Bzip2'=> '2.068_001',
13733             'IO::Compress::Adapter::Deflate'=> '2.068_001',
13734             'IO::Compress::Adapter::Identity'=> '2.068_001',
13735             'IO::Compress::Base' => '2.068_001',
13736             'IO::Compress::Base::Common'=> '2.068_001',
13737             'IO::Compress::Bzip2' => '2.068_001',
13738             'IO::Compress::Deflate' => '2.068_001',
13739             'IO::Compress::Gzip' => '2.068_001',
13740             'IO::Compress::Gzip::Constants'=> '2.068_001',
13741             'IO::Compress::RawDeflate'=> '2.068_001',
13742             'IO::Compress::Zip' => '2.068_001',
13743             'IO::Compress::Zip::Constants'=> '2.068_001',
13744             'IO::Compress::Zlib::Constants'=> '2.068_001',
13745             'IO::Compress::Zlib::Extra'=> '2.068_001',
13746             'IO::Uncompress::Adapter::Bunzip2'=> '2.068_001',
13747             'IO::Uncompress::Adapter::Identity'=> '2.068_001',
13748             'IO::Uncompress::Adapter::Inflate'=> '2.068_001',
13749             'IO::Uncompress::AnyInflate'=> '2.068_001',
13750             'IO::Uncompress::AnyUncompress'=> '2.068_001',
13751             'IO::Uncompress::Base' => '2.068_001',
13752             'IO::Uncompress::Bunzip2'=> '2.068_001',
13753             'IO::Uncompress::Gunzip'=> '2.068_001',
13754             'IO::Uncompress::Inflate'=> '2.068_001',
13755             'IO::Uncompress::RawInflate'=> '2.068_001',
13756             'IO::Uncompress::Unzip' => '2.068_001',
13757             'IPC::Cmd' => '0.92_01',
13758             'JSON::PP' => '2.27300_01',
13759             'Locale::Maketext' => '1.26_01',
13760             'Locale::Maketext::Simple'=> '0.21_01',
13761             'Memoize' => '1.03_01',
13762             'Module::CoreList' => '5.20170114_22',
13763             'Module::CoreList::TieHashDelta'=> '5.20170114_22',
13764             'Module::CoreList::Utils'=> '5.20170114_22',
13765             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13766             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13767             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13768             'Net::Cmd' => '3.05_01',
13769             'Net::Config' => '3.05_01',
13770             'Net::Domain' => '3.05_01',
13771             'Net::FTP' => '3.05_01',
13772             'Net::FTP::A' => '3.05_01',
13773             'Net::FTP::E' => '3.05_01',
13774             'Net::FTP::I' => '3.05_01',
13775             'Net::FTP::L' => '3.05_01',
13776             'Net::FTP::dataconn' => '3.05_01',
13777             'Net::NNTP' => '3.05_01',
13778             'Net::Netrc' => '3.05_01',
13779             'Net::POP3' => '3.05_01',
13780             'Net::Ping' => '2.43_01',
13781             'Net::SMTP' => '3.05_01',
13782             'Net::Time' => '3.05_01',
13783             'Parse::CPAN::Meta' => '1.4414_001',
13784             'Pod::Html' => '1.2201',
13785             'Pod::Perldoc' => '3.25_01',
13786             'Storable' => '2.53_02',
13787             'Sys::Syslog' => '0.33_01',
13788             'TAP::Base' => '3.35_01',
13789             'TAP::Formatter::Base' => '3.35_01',
13790             'TAP::Formatter::Color' => '3.35_01',
13791             'TAP::Formatter::Console'=> '3.35_01',
13792             'TAP::Formatter::Console::ParallelSession'=> '3.35_01',
13793             'TAP::Formatter::Console::Session'=> '3.35_01',
13794             'TAP::Formatter::File' => '3.35_01',
13795             'TAP::Formatter::File::Session'=> '3.35_01',
13796             'TAP::Formatter::Session'=> '3.35_01',
13797             'TAP::Harness' => '3.35_01',
13798             'TAP::Harness::Env' => '3.35_01',
13799             'TAP::Object' => '3.35_01',
13800             'TAP::Parser' => '3.35_01',
13801             'TAP::Parser::Aggregator'=> '3.35_01',
13802             'TAP::Parser::Grammar' => '3.35_01',
13803             'TAP::Parser::Iterator' => '3.35_01',
13804             'TAP::Parser::Iterator::Array'=> '3.35_01',
13805             'TAP::Parser::Iterator::Process'=> '3.35_01',
13806             'TAP::Parser::Iterator::Stream'=> '3.35_01',
13807             'TAP::Parser::IteratorFactory'=> '3.35_01',
13808             'TAP::Parser::Multiplexer'=> '3.35_01',
13809             'TAP::Parser::Result' => '3.35_01',
13810             'TAP::Parser::Result::Bailout'=> '3.35_01',
13811             'TAP::Parser::Result::Comment'=> '3.35_01',
13812             'TAP::Parser::Result::Plan'=> '3.35_01',
13813             'TAP::Parser::Result::Pragma'=> '3.35_01',
13814             'TAP::Parser::Result::Test'=> '3.35_01',
13815             'TAP::Parser::Result::Unknown'=> '3.35_01',
13816             'TAP::Parser::Result::Version'=> '3.35_01',
13817             'TAP::Parser::Result::YAML'=> '3.35_01',
13818             'TAP::Parser::ResultFactory'=> '3.35_01',
13819             'TAP::Parser::Scheduler'=> '3.35_01',
13820             'TAP::Parser::Scheduler::Job'=> '3.35_01',
13821             'TAP::Parser::Scheduler::Spinner'=> '3.35_01',
13822             'TAP::Parser::Source' => '3.35_01',
13823             'TAP::Parser::SourceHandler'=> '3.35_01',
13824             'TAP::Parser::SourceHandler::Executable'=> '3.35_01',
13825             'TAP::Parser::SourceHandler::File'=> '3.35_01',
13826             'TAP::Parser::SourceHandler::Handle'=> '3.35_01',
13827             'TAP::Parser::SourceHandler::Perl'=> '3.35_01',
13828             'TAP::Parser::SourceHandler::RawTAP'=> '3.35_01',
13829             'TAP::Parser::YAMLish::Reader'=> '3.35_01',
13830             'TAP::Parser::YAMLish::Writer'=> '3.35_01',
13831             'Test' => '1.26_01',
13832             'Test::Harness' => '3.35_01',
13833             'XSLoader' => '0.20_01',
13834             'bigint' => '0.39_01',
13835             'bignum' => '0.39_01',
13836             'bigrat' => '0.39_01',
13837             },
13838             removed => {
13839             }
13840             },
13841             5.024001 => {
13842             delta_from => 5.024000,
13843             changed => {
13844             'App::Cpan' => '1.63_01',
13845             'App::Prove' => '3.36_01',
13846             'App::Prove::State' => '3.36_01',
13847             'App::Prove::State::Result'=> '3.36_01',
13848             'App::Prove::State::Result::Test'=> '3.36_01',
13849             'Archive::Tar' => '2.04_01',
13850             'Archive::Tar::Constant'=> '2.04_01',
13851             'Archive::Tar::File' => '2.04_01',
13852             'B::Op_private' => '5.024001',
13853             'CPAN' => '2.11_01',
13854             'Compress::Zlib' => '2.069_001',
13855             'Config' => '5.024001',
13856             'Cwd' => '3.63_01',
13857             'Digest' => '1.17_01',
13858             'Digest::SHA' => '5.95_01',
13859             'Encode' => '2.80_01',
13860             'ExtUtils::Command' => '7.10_02',
13861             'ExtUtils::Command::MM' => '7.10_02',
13862             'ExtUtils::Liblist' => '7.10_02',
13863             'ExtUtils::Liblist::Kid'=> '7.10_02',
13864             'ExtUtils::MM' => '7.10_02',
13865             'ExtUtils::MM_AIX' => '7.10_02',
13866             'ExtUtils::MM_Any' => '7.10_02',
13867             'ExtUtils::MM_BeOS' => '7.10_02',
13868             'ExtUtils::MM_Cygwin' => '7.10_02',
13869             'ExtUtils::MM_DOS' => '7.10_02',
13870             'ExtUtils::MM_Darwin' => '7.10_02',
13871             'ExtUtils::MM_MacOS' => '7.10_02',
13872             'ExtUtils::MM_NW5' => '7.10_02',
13873             'ExtUtils::MM_OS2' => '7.10_02',
13874             'ExtUtils::MM_QNX' => '7.10_02',
13875             'ExtUtils::MM_UWIN' => '7.10_02',
13876             'ExtUtils::MM_Unix' => '7.10_02',
13877             'ExtUtils::MM_VMS' => '7.10_02',
13878             'ExtUtils::MM_VOS' => '7.10_02',
13879             'ExtUtils::MM_Win32' => '7.10_02',
13880             'ExtUtils::MM_Win95' => '7.10_02',
13881             'ExtUtils::MY' => '7.10_02',
13882             'ExtUtils::MakeMaker' => '7.10_02',
13883             'ExtUtils::MakeMaker::Config'=> '7.10_02',
13884             'ExtUtils::Mkbootstrap' => '7.10_02',
13885             'ExtUtils::Mksymlists' => '7.10_02',
13886             'ExtUtils::testlib' => '7.10_02',
13887             'File::Fetch' => '0.48_01',
13888             'File::Spec' => '3.63_01',
13889             'File::Spec::Cygwin' => '3.63_01',
13890             'File::Spec::Epoc' => '3.63_01',
13891             'File::Spec::Functions' => '3.63_01',
13892             'File::Spec::Mac' => '3.63_01',
13893             'File::Spec::OS2' => '3.63_01',
13894             'File::Spec::Unix' => '3.63_01',
13895             'File::Spec::VMS' => '3.63_01',
13896             'File::Spec::Win32' => '3.63_01',
13897             'HTTP::Tiny' => '0.056_001',
13898             'I18N::LangTags::Detect'=> '1.05_01',
13899             'IO' => '1.36_01',
13900             'IO::Compress::Adapter::Bzip2'=> '2.069_001',
13901             'IO::Compress::Adapter::Deflate'=> '2.069_001',
13902             'IO::Compress::Adapter::Identity'=> '2.069_001',
13903             'IO::Compress::Base' => '2.069_001',
13904             'IO::Compress::Base::Common'=> '2.069_001',
13905             'IO::Compress::Bzip2' => '2.069_001',
13906             'IO::Compress::Deflate' => '2.069_001',
13907             'IO::Compress::Gzip' => '2.069_001',
13908             'IO::Compress::Gzip::Constants'=> '2.069_001',
13909             'IO::Compress::RawDeflate'=> '2.069_001',
13910             'IO::Compress::Zip' => '2.069_001',
13911             'IO::Compress::Zip::Constants'=> '2.069_001',
13912             'IO::Compress::Zlib::Constants'=> '2.069_001',
13913             'IO::Compress::Zlib::Extra'=> '2.069_001',
13914             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_001',
13915             'IO::Uncompress::Adapter::Identity'=> '2.069_001',
13916             'IO::Uncompress::Adapter::Inflate'=> '2.069_001',
13917             'IO::Uncompress::AnyInflate'=> '2.069_001',
13918             'IO::Uncompress::AnyUncompress'=> '2.069_001',
13919             'IO::Uncompress::Base' => '2.069_001',
13920             'IO::Uncompress::Bunzip2'=> '2.069_001',
13921             'IO::Uncompress::Gunzip'=> '2.069_001',
13922             'IO::Uncompress::Inflate'=> '2.069_001',
13923             'IO::Uncompress::RawInflate'=> '2.069_001',
13924             'IO::Uncompress::Unzip' => '2.069_001',
13925             'IPC::Cmd' => '0.92_01',
13926             'JSON::PP' => '2.27300_01',
13927             'Locale::Maketext' => '1.26_01',
13928             'Locale::Maketext::Simple'=> '0.21_01',
13929             'Math::BigFloat::Trace' => '0.42_01',
13930             'Math::BigInt::Trace' => '0.42_01',
13931             'Memoize' => '1.03_01',
13932             'Module::CoreList' => '5.20170114_24',
13933             'Module::CoreList::TieHashDelta'=> '5.20170114_24',
13934             'Module::CoreList::Utils'=> '5.20170114_24',
13935             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13936             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13937             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13938             'Net::Cmd' => '3.08_01',
13939             'Net::Config' => '3.08_01',
13940             'Net::Domain' => '3.08_01',
13941             'Net::FTP' => '3.08_01',
13942             'Net::FTP::A' => '3.08_01',
13943             'Net::FTP::E' => '3.08_01',
13944             'Net::FTP::I' => '3.08_01',
13945             'Net::FTP::L' => '3.08_01',
13946             'Net::FTP::dataconn' => '3.08_01',
13947             'Net::NNTP' => '3.08_01',
13948             'Net::Netrc' => '3.08_01',
13949             'Net::POP3' => '3.08_01',
13950             'Net::Ping' => '2.43_01',
13951             'Net::SMTP' => '3.08_01',
13952             'Net::Time' => '3.08_01',
13953             'Parse::CPAN::Meta' => '1.4417_001',
13954             'Pod::Html' => '1.2201',
13955             'Pod::Perldoc' => '3.25_03',
13956             'Storable' => '2.56_01',
13957             'Sys::Syslog' => '0.33_01',
13958             'TAP::Base' => '3.36_01',
13959             'TAP::Formatter::Base' => '3.36_01',
13960             'TAP::Formatter::Color' => '3.36_01',
13961             'TAP::Formatter::Console'=> '3.36_01',
13962             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13963             'TAP::Formatter::Console::Session'=> '3.36_01',
13964             'TAP::Formatter::File' => '3.36_01',
13965             'TAP::Formatter::File::Session'=> '3.36_01',
13966             'TAP::Formatter::Session'=> '3.36_01',
13967             'TAP::Harness' => '3.36_01',
13968             'TAP::Harness::Env' => '3.36_01',
13969             'TAP::Object' => '3.36_01',
13970             'TAP::Parser' => '3.36_01',
13971             'TAP::Parser::Aggregator'=> '3.36_01',
13972             'TAP::Parser::Grammar' => '3.36_01',
13973             'TAP::Parser::Iterator' => '3.36_01',
13974             'TAP::Parser::Iterator::Array'=> '3.36_01',
13975             'TAP::Parser::Iterator::Process'=> '3.36_01',
13976             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13977             'TAP::Parser::IteratorFactory'=> '3.36_01',
13978             'TAP::Parser::Multiplexer'=> '3.36_01',
13979             'TAP::Parser::Result' => '3.36_01',
13980             'TAP::Parser::Result::Bailout'=> '3.36_01',
13981             'TAP::Parser::Result::Comment'=> '3.36_01',
13982             'TAP::Parser::Result::Plan'=> '3.36_01',
13983             'TAP::Parser::Result::Pragma'=> '3.36_01',
13984             'TAP::Parser::Result::Test'=> '3.36_01',
13985             'TAP::Parser::Result::Unknown'=> '3.36_01',
13986             'TAP::Parser::Result::Version'=> '3.36_01',
13987             'TAP::Parser::Result::YAML'=> '3.36_01',
13988             'TAP::Parser::ResultFactory'=> '3.36_01',
13989             'TAP::Parser::Scheduler'=> '3.36_01',
13990             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13991             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13992             'TAP::Parser::Source' => '3.36_01',
13993             'TAP::Parser::SourceHandler'=> '3.36_01',
13994             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13995             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13996             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13997             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13998             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13999             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
14000             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
14001             'Test' => '1.28_01',
14002             'Test::Harness' => '3.36_01',
14003             'XSLoader' => '0.22',
14004             'bigint' => '0.42_01',
14005             'bignum' => '0.42_01',
14006             'bigrat' => '0.42_01',
14007             },
14008             removed => {
14009             }
14010             },
14011             5.025009 => {
14012             delta_from => 5.025008,
14013             changed => {
14014             'App::Cpan' => '1.66',
14015             'B::Deparse' => '1.40',
14016             'B::Op_private' => '5.025009',
14017             'B::Terse' => '1.07',
14018             'B::Xref' => '1.06',
14019             'CPAN' => '2.16',
14020             'CPAN::Bundle' => '5.5002',
14021             'CPAN::Distribution' => '2.16',
14022             'CPAN::Exception::RecursiveDependency'=> '5.5001',
14023             'CPAN::FTP' => '5.5008',
14024             'CPAN::FirstTime' => '5.5310',
14025             'CPAN::HandleConfig' => '5.5008',
14026             'CPAN::Module' => '5.5003',
14027             'Compress::Raw::Bzip2' => '2.070',
14028             'Compress::Raw::Zlib' => '2.070',
14029             'Config' => '5.025009',
14030             'DB_File' => '1.840',
14031             'Data::Dumper' => '2.167',
14032             'Devel::SelfStubber' => '1.06',
14033             'DynaLoader' => '1.41',
14034             'Errno' => '1.28',
14035             'ExtUtils::Embed' => '1.34',
14036             'File::Glob' => '1.28',
14037             'I18N::LangTags' => '0.42',
14038             'Module::CoreList' => '5.20170120',
14039             'Module::CoreList::TieHashDelta'=> '5.20170120',
14040             'Module::CoreList::Utils'=> '5.20170120',
14041             'OS2::Process' => '1.12',
14042             'PerlIO::scalar' => '0.26',
14043             'Pod::Html' => '1.2202',
14044             'Storable' => '2.61',
14045             'Symbol' => '1.08',
14046             'Term::ReadLine' => '1.16',
14047             'Test' => '1.30',
14048             'Unicode::UCD' => '0.68',
14049             'VMS::DCLsym' => '1.08',
14050             'XS::APItest' => '0.88',
14051             'XSLoader' => '0.26',
14052             'attributes' => '0.29',
14053             'diagnostics' => '1.36',
14054             'feature' => '1.46',
14055             'lib' => '0.64',
14056             'overload' => '1.28',
14057             're' => '0.34',
14058             'threads' => '2.12',
14059             'threads::shared' => '1.54',
14060             },
14061             removed => {
14062             }
14063             },
14064             5.025010 => {
14065             delta_from => 5.025009,
14066             changed => {
14067             'B' => '1.68',
14068             'B::Op_private' => '5.025010',
14069             'CPAN' => '2.17',
14070             'CPAN::Distribution' => '2.17',
14071             'Config' => '5.02501',
14072             'Getopt::Std' => '1.12',
14073             'Module::CoreList' => '5.20170220',
14074             'Module::CoreList::TieHashDelta'=> '5.20170220',
14075             'Module::CoreList::Utils'=> '5.20170220',
14076             'PerlIO' => '1.10',
14077             'Storable' => '2.62',
14078             'Thread::Queue' => '3.12',
14079             'feature' => '1.47',
14080             'open' => '1.11',
14081             'threads' => '2.13',
14082             },
14083             removed => {
14084             }
14085             },
14086             5.025011 => {
14087             delta_from => 5.025010,
14088             changed => {
14089             'App::Prove' => '3.38',
14090             'App::Prove::State' => '3.38',
14091             'App::Prove::State::Result'=> '3.38',
14092             'App::Prove::State::Result::Test'=> '3.38',
14093             'B::Op_private' => '5.025011',
14094             'Compress::Raw::Bzip2' => '2.074',
14095             'Compress::Raw::Zlib' => '2.074',
14096             'Compress::Zlib' => '2.074',
14097             'Config' => '5.025011',
14098             'Config::Perl::V' => '0.28',
14099             'Cwd' => '3.67',
14100             'ExtUtils::ParseXS' => '3.34',
14101             'ExtUtils::ParseXS::Constants'=> '3.34',
14102             'ExtUtils::ParseXS::CountLines'=> '3.34',
14103             'ExtUtils::ParseXS::Eval'=> '3.34',
14104             'ExtUtils::Typemaps' => '3.34',
14105             'ExtUtils::Typemaps::Cmd'=> '3.34',
14106             'ExtUtils::Typemaps::InputMap'=> '3.34',
14107             'ExtUtils::Typemaps::OutputMap'=> '3.34',
14108             'ExtUtils::Typemaps::Type'=> '3.34',
14109             'File::Spec' => '3.67',
14110             'File::Spec::AmigaOS' => '3.67',
14111             'File::Spec::Cygwin' => '3.67',
14112             'File::Spec::Epoc' => '3.67',
14113             'File::Spec::Functions' => '3.67',
14114             'File::Spec::Mac' => '3.67',
14115             'File::Spec::OS2' => '3.67',
14116             'File::Spec::Unix' => '3.67',
14117             'File::Spec::VMS' => '3.67',
14118             'File::Spec::Win32' => '3.67',
14119             'IO::Compress::Adapter::Bzip2'=> '2.074',
14120             'IO::Compress::Adapter::Deflate'=> '2.074',
14121             'IO::Compress::Adapter::Identity'=> '2.074',
14122             'IO::Compress::Base' => '2.074',
14123             'IO::Compress::Base::Common'=> '2.074',
14124             'IO::Compress::Bzip2' => '2.074',
14125             'IO::Compress::Deflate' => '2.074',
14126             'IO::Compress::Gzip' => '2.074',
14127             'IO::Compress::Gzip::Constants'=> '2.074',
14128             'IO::Compress::RawDeflate'=> '2.074',
14129             'IO::Compress::Zip' => '2.074',
14130             'IO::Compress::Zip::Constants'=> '2.074',
14131             'IO::Compress::Zlib::Constants'=> '2.074',
14132             'IO::Compress::Zlib::Extra'=> '2.074',
14133             'IO::Uncompress::Adapter::Bunzip2'=> '2.074',
14134             'IO::Uncompress::Adapter::Identity'=> '2.074',
14135             'IO::Uncompress::Adapter::Inflate'=> '2.074',
14136             'IO::Uncompress::AnyInflate'=> '2.074',
14137             'IO::Uncompress::AnyUncompress'=> '2.074',
14138             'IO::Uncompress::Base' => '2.074',
14139             'IO::Uncompress::Bunzip2'=> '2.074',
14140             'IO::Uncompress::Gunzip'=> '2.074',
14141             'IO::Uncompress::Inflate'=> '2.074',
14142             'IO::Uncompress::RawInflate'=> '2.074',
14143             'IO::Uncompress::Unzip' => '2.074',
14144             'Module::CoreList' => '5.20170320',
14145             'Module::CoreList::TieHashDelta'=> '5.20170230',
14146             'Module::CoreList::Utils'=> '5.20170320',
14147             'Pod::Perldoc' => '3.28',
14148             'Pod::Perldoc::BaseTo' => '3.28',
14149             'Pod::Perldoc::GetOptsOO'=> '3.28',
14150             'Pod::Perldoc::ToANSI' => '3.28',
14151             'Pod::Perldoc::ToChecker'=> '3.28',
14152             'Pod::Perldoc::ToMan' => '3.28',
14153             'Pod::Perldoc::ToNroff' => '3.28',
14154             'Pod::Perldoc::ToPod' => '3.28',
14155             'Pod::Perldoc::ToRtf' => '3.28',
14156             'Pod::Perldoc::ToTerm' => '3.28',
14157             'Pod::Perldoc::ToText' => '3.28',
14158             'Pod::Perldoc::ToTk' => '3.28',
14159             'Pod::Perldoc::ToXml' => '3.28',
14160             'TAP::Base' => '3.38',
14161             'TAP::Formatter::Base' => '3.38',
14162             'TAP::Formatter::Color' => '3.38',
14163             'TAP::Formatter::Console'=> '3.38',
14164             'TAP::Formatter::Console::ParallelSession'=> '3.38',
14165             'TAP::Formatter::Console::Session'=> '3.38',
14166             'TAP::Formatter::File' => '3.38',
14167             'TAP::Formatter::File::Session'=> '3.38',
14168             'TAP::Formatter::Session'=> '3.38',
14169             'TAP::Harness' => '3.38',
14170             'TAP::Harness::Env' => '3.38',
14171             'TAP::Object' => '3.38',
14172             'TAP::Parser' => '3.38',
14173             'TAP::Parser::Aggregator'=> '3.38',
14174             'TAP::Parser::Grammar' => '3.38',
14175             'TAP::Parser::Iterator' => '3.38',
14176             'TAP::Parser::Iterator::Array'=> '3.38',
14177             'TAP::Parser::Iterator::Process'=> '3.38',
14178             'TAP::Parser::Iterator::Stream'=> '3.38',
14179             'TAP::Parser::IteratorFactory'=> '3.38',
14180             'TAP::Parser::Multiplexer'=> '3.38',
14181             'TAP::Parser::Result' => '3.38',
14182             'TAP::Parser::Result::Bailout'=> '3.38',
14183             'TAP::Parser::Result::Comment'=> '3.38',
14184             'TAP::Parser::Result::Plan'=> '3.38',
14185             'TAP::Parser::Result::Pragma'=> '3.38',
14186             'TAP::Parser::Result::Test'=> '3.38',
14187             'TAP::Parser::Result::Unknown'=> '3.38',
14188             'TAP::Parser::Result::Version'=> '3.38',
14189             'TAP::Parser::Result::YAML'=> '3.38',
14190             'TAP::Parser::ResultFactory'=> '3.38',
14191             'TAP::Parser::Scheduler'=> '3.38',
14192             'TAP::Parser::Scheduler::Job'=> '3.38',
14193             'TAP::Parser::Scheduler::Spinner'=> '3.38',
14194             'TAP::Parser::Source' => '3.38',
14195             'TAP::Parser::SourceHandler'=> '3.38',
14196             'TAP::Parser::SourceHandler::Executable'=> '3.38',
14197             'TAP::Parser::SourceHandler::File'=> '3.38',
14198             'TAP::Parser::SourceHandler::Handle'=> '3.38',
14199             'TAP::Parser::SourceHandler::Perl'=> '3.38',
14200             'TAP::Parser::SourceHandler::RawTAP'=> '3.38',
14201             'TAP::Parser::YAMLish::Reader'=> '3.38',
14202             'TAP::Parser::YAMLish::Writer'=> '3.38',
14203             'Test::Harness' => '3.38',
14204             'VMS::Stdio' => '2.41',
14205             'threads' => '2.15',
14206             'threads::shared' => '1.55',
14207             },
14208             removed => {
14209             }
14210             },
14211             5.025012 => {
14212             delta_from => 5.025011,
14213             changed => {
14214             'B::Op_private' => '5.025012',
14215             'CPAN' => '2.18',
14216             'CPAN::Bundle' => '5.5003',
14217             'CPAN::Distribution' => '2.18',
14218             'Config' => '5.025012',
14219             'DynaLoader' => '1.42',
14220             'Module::CoreList' => '5.20170420',
14221             'Module::CoreList::TieHashDelta'=> '5.20170420',
14222             'Module::CoreList::Utils'=> '5.20170420',
14223             'Safe' => '2.40',
14224             'XSLoader' => '0.27',
14225             'base' => '2.25',
14226             'threads::shared' => '1.56',
14227             },
14228             removed => {
14229             }
14230             },
14231             5.026000 => {
14232             delta_from => 5.025012,
14233             changed => {
14234             'B::Op_private' => '5.026000',
14235             'Config' => '5.026',
14236             'Module::CoreList' => '5.20170530',
14237             'Module::CoreList::TieHashDelta'=> '5.20170530',
14238             'Module::CoreList::Utils'=> '5.20170530',
14239             },
14240             removed => {
14241             }
14242             },
14243             5.027000 => {
14244             delta_from => 5.026000,
14245             changed => {
14246             'Attribute::Handlers' => '1.00',
14247             'B::Concise' => '1.000',
14248             'B::Deparse' => '1.41',
14249             'B::Op_private' => '5.027000',
14250             'Config' => '5.027',
14251             'Module::CoreList' => '5.20170531',
14252             'Module::CoreList::TieHashDelta'=> '5.20170531',
14253             'Module::CoreList::Utils'=> '5.20170531',
14254             'O' => '1.02',
14255             'attributes' => '0.3',
14256             'feature' => '1.48',
14257             },
14258             removed => {
14259             }
14260             },
14261             5.027001 => {
14262             delta_from => 5.027,
14263             changed => {
14264             'App::Prove' => '3.39',
14265             'App::Prove::State' => '3.39',
14266             'App::Prove::State::Result'=> '3.39',
14267             'App::Prove::State::Result::Test'=> '3.39',
14268             'Archive::Tar' => '2.26',
14269             'Archive::Tar::Constant'=> '2.26',
14270             'Archive::Tar::File' => '2.26',
14271             'B::Op_private' => '5.027001',
14272             'B::Terse' => '1.08',
14273             'Config' => '5.027001',
14274             'Devel::PPPort' => '3.36',
14275             'DirHandle' => '1.05',
14276             'ExtUtils::Command' => '7.30',
14277             'ExtUtils::Command::MM' => '7.30',
14278             'ExtUtils::Install' => '2.14',
14279             'ExtUtils::Installed' => '2.14',
14280             'ExtUtils::Liblist' => '7.30',
14281             'ExtUtils::Liblist::Kid'=> '7.30',
14282             'ExtUtils::MM' => '7.30',
14283             'ExtUtils::MM_AIX' => '7.30',
14284             'ExtUtils::MM_Any' => '7.30',
14285             'ExtUtils::MM_BeOS' => '7.30',
14286             'ExtUtils::MM_Cygwin' => '7.30',
14287             'ExtUtils::MM_DOS' => '7.30',
14288             'ExtUtils::MM_Darwin' => '7.30',
14289             'ExtUtils::MM_MacOS' => '7.30',
14290             'ExtUtils::MM_NW5' => '7.30',
14291             'ExtUtils::MM_OS2' => '7.30',
14292             'ExtUtils::MM_QNX' => '7.30',
14293             'ExtUtils::MM_UWIN' => '7.30',
14294             'ExtUtils::MM_Unix' => '7.30',
14295             'ExtUtils::MM_VMS' => '7.30',
14296             'ExtUtils::MM_VOS' => '7.30',
14297             'ExtUtils::MM_Win32' => '7.30',
14298             'ExtUtils::MM_Win95' => '7.30',
14299             'ExtUtils::MY' => '7.30',
14300             'ExtUtils::MakeMaker' => '7.30',
14301             'ExtUtils::MakeMaker::Config'=> '7.30',
14302             'ExtUtils::MakeMaker::Locale'=> '7.30',
14303             'ExtUtils::MakeMaker::version'=> '7.30',
14304             'ExtUtils::MakeMaker::version::regex'=> '7.30',
14305             'ExtUtils::Mkbootstrap' => '7.30',
14306             'ExtUtils::Mksymlists' => '7.30',
14307             'ExtUtils::Packlist' => '2.14',
14308             'ExtUtils::testlib' => '7.30',
14309             'File::Path' => '2.14',
14310             'Filter::Util::Call' => '1.57',
14311             'GDBM_File' => '1.16',
14312             'Getopt::Long' => '2.5',
14313             'IO::Socket::IP' => '0.39',
14314             'IPC::Cmd' => '0.98',
14315             'JSON::PP' => '2.94',
14316             'JSON::PP::Boolean' => '2.94',
14317             'Locale::Codes' => '3.52',
14318             'Locale::Codes::Constants'=> '3.52',
14319             'Locale::Codes::Country'=> '3.52',
14320             'Locale::Codes::Country_Codes'=> '3.52',
14321             'Locale::Codes::Country_Retired'=> '3.52',
14322             'Locale::Codes::Currency'=> '3.52',
14323             'Locale::Codes::Currency_Codes'=> '3.52',
14324             'Locale::Codes::Currency_Retired'=> '3.52',
14325             'Locale::Codes::LangExt'=> '3.52',
14326             'Locale::Codes::LangExt_Codes'=> '3.52',
14327             'Locale::Codes::LangExt_Retired'=> '3.52',
14328             'Locale::Codes::LangFam'=> '3.52',
14329             'Locale::Codes::LangFam_Codes'=> '3.52',
14330             'Locale::Codes::LangFam_Retired'=> '3.52',
14331             'Locale::Codes::LangVar'=> '3.52',
14332             'Locale::Codes::LangVar_Codes'=> '3.52',
14333             'Locale::Codes::LangVar_Retired'=> '3.52',
14334             'Locale::Codes::Language'=> '3.52',
14335             'Locale::Codes::Language_Codes'=> '3.52',
14336             'Locale::Codes::Language_Retired'=> '3.52',
14337             'Locale::Codes::Script' => '3.52',
14338             'Locale::Codes::Script_Codes'=> '3.52',
14339             'Locale::Codes::Script_Retired'=> '3.52',
14340             'Locale::Country' => '3.52',
14341             'Locale::Currency' => '3.52',
14342             'Locale::Language' => '3.52',
14343             'Locale::Script' => '3.52',
14344             'Module::CoreList' => '5.20170621',
14345             'Module::CoreList::TieHashDelta'=> '5.20170621',
14346             'Module::CoreList::Utils'=> '5.20170621',
14347             'PerlIO::scalar' => '0.27',
14348             'PerlIO::via' => '0.17',
14349             'Storable' => '2.63',
14350             'TAP::Base' => '3.39',
14351             'TAP::Formatter::Base' => '3.39',
14352             'TAP::Formatter::Color' => '3.39',
14353             'TAP::Formatter::Console'=> '3.39',
14354             'TAP::Formatter::Console::ParallelSession'=> '3.39',
14355             'TAP::Formatter::Console::Session'=> '3.39',
14356             'TAP::Formatter::File' => '3.39',
14357             'TAP::Formatter::File::Session'=> '3.39',
14358             'TAP::Formatter::Session'=> '3.39',
14359             'TAP::Harness' => '3.39',
14360             'TAP::Harness::Env' => '3.39',
14361             'TAP::Object' => '3.39',
14362             'TAP::Parser' => '3.39',
14363             'TAP::Parser::Aggregator'=> '3.39',
14364             'TAP::Parser::Grammar' => '3.39',
14365             'TAP::Parser::Iterator' => '3.39',
14366             'TAP::Parser::Iterator::Array'=> '3.39',
14367             'TAP::Parser::Iterator::Process'=> '3.39',
14368             'TAP::Parser::Iterator::Stream'=> '3.39',
14369             'TAP::Parser::IteratorFactory'=> '3.39',
14370             'TAP::Parser::Multiplexer'=> '3.39',
14371             'TAP::Parser::Result' => '3.39',
14372             'TAP::Parser::Result::Bailout'=> '3.39',
14373             'TAP::Parser::Result::Comment'=> '3.39',
14374             'TAP::Parser::Result::Plan'=> '3.39',
14375             'TAP::Parser::Result::Pragma'=> '3.39',
14376             'TAP::Parser::Result::Test'=> '3.39',
14377             'TAP::Parser::Result::Unknown'=> '3.39',
14378             'TAP::Parser::Result::Version'=> '3.39',
14379             'TAP::Parser::Result::YAML'=> '3.39',
14380             'TAP::Parser::ResultFactory'=> '3.39',
14381             'TAP::Parser::Scheduler'=> '3.39',
14382             'TAP::Parser::Scheduler::Job'=> '3.39',
14383             'TAP::Parser::Scheduler::Spinner'=> '3.39',
14384             'TAP::Parser::Source' => '3.39',
14385             'TAP::Parser::SourceHandler'=> '3.39',
14386             'TAP::Parser::SourceHandler::Executable'=> '3.39',
14387             'TAP::Parser::SourceHandler::File'=> '3.39',
14388             'TAP::Parser::SourceHandler::Handle'=> '3.39',
14389             'TAP::Parser::SourceHandler::Perl'=> '3.39',
14390             'TAP::Parser::SourceHandler::RawTAP'=> '3.39',
14391             'TAP::Parser::YAMLish::Reader'=> '3.39',
14392             'TAP::Parser::YAMLish::Writer'=> '3.39',
14393             'Test::Harness' => '3.39',
14394             'XS::APItest' => '0.89',
14395             '_charnames' => '1.45',
14396             'charnames' => '1.45',
14397             'if' => '0.0607',
14398             'mro' => '1.21',
14399             'threads' => '2.16',
14400             'threads::shared' => '1.57',
14401             'version' => '0.9918',
14402             'version::regex' => '0.9918',
14403             },
14404             removed => {
14405             }
14406             },
14407             5.022004 => {
14408             delta_from => 5.022003,
14409             changed => {
14410             'B::Op_private' => '5.022004',
14411             'Config' => '5.022004',
14412             'Module::CoreList' => '5.20170715_22',
14413             'Module::CoreList::TieHashDelta'=> '5.20170715_22',
14414             'Module::CoreList::Utils'=> '5.20170715_22',
14415             'base' => '2.22_01',
14416             },
14417             removed => {
14418             }
14419             },
14420             5.024002 => {
14421             delta_from => 5.024001,
14422             changed => {
14423             'B::Op_private' => '5.024002',
14424             'Config' => '5.024002',
14425             'Module::CoreList' => '5.20170715_24',
14426             'Module::CoreList::TieHashDelta'=> '5.20170715_24',
14427             'Module::CoreList::Utils'=> '5.20170715_24',
14428             'base' => '2.23_01',
14429             },
14430             removed => {
14431             }
14432             },
14433             5.027002 => {
14434             delta_from => 5.027001,
14435             changed => {
14436             'B::Op_private' => '5.027002',
14437             'Carp' => '1.43',
14438             'Carp::Heavy' => '1.43',
14439             'Config' => '5.027002',
14440             'Cwd' => '3.68',
14441             'Encode' => '2.92',
14442             'Encode::Alias' => '2.23',
14443             'Encode::CN::HZ' => '2.09',
14444             'Encode::Encoding' => '2.08',
14445             'Encode::GSM0338' => '2.07',
14446             'Encode::Guess' => '2.07',
14447             'Encode::JP::JIS7' => '2.07',
14448             'Encode::KR::2022_KR' => '2.04',
14449             'Encode::MIME::Header' => '2.27',
14450             'Encode::MIME::Header::ISO_2022_JP'=> '1.09',
14451             'Encode::Unicode' => '2.16',
14452             'Encode::Unicode::UTF7' => '2.10',
14453             'ExtUtils::CBuilder' => '0.280228',
14454             'ExtUtils::CBuilder::Base'=> '0.280228',
14455             'ExtUtils::CBuilder::Platform::Unix'=> '0.280228',
14456             'ExtUtils::CBuilder::Platform::VMS'=> '0.280228',
14457             'ExtUtils::CBuilder::Platform::Windows'=> '0.280228',
14458             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228',
14459             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228',
14460             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228',
14461             'ExtUtils::CBuilder::Platform::aix'=> '0.280228',
14462             'ExtUtils::CBuilder::Platform::android'=> '0.280228',
14463             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228',
14464             'ExtUtils::CBuilder::Platform::darwin'=> '0.280228',
14465             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228',
14466             'ExtUtils::CBuilder::Platform::os2'=> '0.280228',
14467             'File::Glob' => '1.29',
14468             'File::Spec' => '3.68',
14469             'File::Spec::AmigaOS' => '3.68',
14470             'File::Spec::Cygwin' => '3.68',
14471             'File::Spec::Epoc' => '3.68',
14472             'File::Spec::Functions' => '3.68',
14473             'File::Spec::Mac' => '3.68',
14474             'File::Spec::OS2' => '3.68',
14475             'File::Spec::Unix' => '3.68',
14476             'File::Spec::VMS' => '3.68',
14477             'File::Spec::Win32' => '3.68',
14478             'List::Util' => '1.48',
14479             'List::Util::XS' => '1.48',
14480             'Math::BigRat' => '0.2613',
14481             'Module::CoreList' => '5.20170720',
14482             'Module::CoreList::TieHashDelta'=> '5.20170720',
14483             'Module::CoreList::Utils'=> '5.20170720',
14484             'Opcode' => '1.40',
14485             'POSIX' => '1.77',
14486             'PerlIO::scalar' => '0.29',
14487             'Scalar::Util' => '1.48',
14488             'Sub::Util' => '1.48',
14489             'Time::HiRes' => '1.9743',
14490             'Time::Piece' => '1.3201',
14491             'Time::Seconds' => '1.3201',
14492             'Unicode' => '10.0.0',
14493             'XS::APItest' => '0.90',
14494             'arybase' => '0.13',
14495             'encoding' => '2.20',
14496             'feature' => '1.49',
14497             're' => '0.35',
14498             },
14499             removed => {
14500             }
14501             },
14502             5.027003 => {
14503             delta_from => 5.027002,
14504             changed => {
14505             'B' => '1.69',
14506             'B::Concise' => '1.001',
14507             'B::Debug' => '1.25',
14508             'B::Deparse' => '1.42',
14509             'B::Op_private' => '5.027003',
14510             'Config' => '5.027003',
14511             'Data::Dumper' => '2.167_02',
14512             'Devel::Peek' => '1.27',
14513             'ExtUtils::Constant' => '0.24',
14514             'ExtUtils::Constant::Base'=> '0.06',
14515             'ExtUtils::Constant::ProxySubs'=> '0.09',
14516             'ExtUtils::Constant::Utils'=> '0.04',
14517             'ExtUtils::ParseXS' => '3.35',
14518             'ExtUtils::ParseXS::Constants'=> '3.35',
14519             'ExtUtils::ParseXS::CountLines'=> '3.35',
14520             'ExtUtils::ParseXS::Eval'=> '3.35',
14521             'ExtUtils::ParseXS::Utilities'=> '3.35',
14522             'ExtUtils::Typemaps' => '3.35',
14523             'ExtUtils::Typemaps::Cmd'=> '3.35',
14524             'ExtUtils::Typemaps::InputMap'=> '3.35',
14525             'ExtUtils::Typemaps::OutputMap'=> '3.35',
14526             'ExtUtils::Typemaps::Type'=> '3.35',
14527             'Filter::Simple' => '0.94',
14528             'Module::CoreList' => '5.20170821',
14529             'Module::CoreList::TieHashDelta'=> '5.20170821',
14530             'Module::CoreList::Utils'=> '5.20170821',
14531             'SelfLoader' => '1.24',
14532             'Storable' => '2.64',
14533             'XS::APItest' => '0.91',
14534             'base' => '2.26',
14535             'threads' => '2.17',
14536             'utf8' => '1.20',
14537             },
14538             removed => {
14539             }
14540             },
14541             5.027004 => {
14542             delta_from => 5.027003,
14543             changed => {
14544             'B::Op_private' => '5.027004',
14545             'Config' => '5.027004',
14546             'File::Glob' => '1.30',
14547             'I18N::Langinfo' => '0.14',
14548             'Module::CoreList' => '5.20170920',
14549             'Module::CoreList::TieHashDelta'=> '5.20170920',
14550             'Module::CoreList::Utils'=> '5.20170920',
14551             'Term::ReadLine' => '1.17',
14552             'VMS::Stdio' => '2.42',
14553             'XS::APItest' => '0.92',
14554             'attributes' => '0.31',
14555             'sort' => '2.03',
14556             'threads' => '2.18',
14557             },
14558             removed => {
14559             }
14560             },
14561             5.024003 => {
14562             delta_from => 5.024002,
14563             changed => {
14564             'B::Op_private' => '5.024003',
14565             'Config' => '5.024003',
14566             'Module::CoreList' => '5.20170922_24',
14567             'Module::CoreList::TieHashDelta'=> '5.20170922_24',
14568             'Module::CoreList::Utils'=> '5.20170922_24',
14569             'POSIX' => '1.65_01',
14570             'Time::HiRes' => '1.9741',
14571             },
14572             removed => {
14573             }
14574             },
14575             5.026001 => {
14576             delta_from => 5.026000,
14577             changed => {
14578             'B::Op_private' => '5.026001',
14579             'Config' => '5.026001',
14580             'Module::CoreList' => '5.20170922_26',
14581             'Module::CoreList::TieHashDelta'=> '5.20170922_26',
14582             'Module::CoreList::Utils'=> '5.20170922_26',
14583             '_charnames' => '1.45',
14584             'base' => '2.26',
14585             'charnames' => '1.45',
14586             },
14587             removed => {
14588             }
14589             },
14590             5.027005 => {
14591             delta_from => 5.027004,
14592             changed => {
14593             'B' => '1.70',
14594             'B::Concise' => '1.002',
14595             'B::Deparse' => '1.43',
14596             'B::Op_private' => '5.027005',
14597             'B::Xref' => '1.07',
14598             'Config' => '5.027005',
14599             'Config::Perl::V' => '0.29',
14600             'Digest::SHA' => '5.98',
14601             'Encode' => '2.93',
14602             'Encode::CN::HZ' => '2.10',
14603             'Encode::JP::JIS7' => '2.08',
14604             'Encode::MIME::Header' => '2.28',
14605             'Encode::MIME::Name' => '1.03',
14606             'File::Fetch' => '0.54',
14607             'File::Path' => '2.15',
14608             'List::Util' => '1.49',
14609             'List::Util::XS' => '1.49',
14610             'Locale::Codes' => '3.54',
14611             'Locale::Codes::Constants'=> '3.54',
14612             'Locale::Codes::Country'=> '3.54',
14613             'Locale::Codes::Country_Codes'=> '3.54',
14614             'Locale::Codes::Country_Retired'=> '3.54',
14615             'Locale::Codes::Currency'=> '3.54',
14616             'Locale::Codes::Currency_Codes'=> '3.54',
14617             'Locale::Codes::Currency_Retired'=> '3.54',
14618             'Locale::Codes::LangExt'=> '3.54',
14619             'Locale::Codes::LangExt_Codes'=> '3.54',
14620             'Locale::Codes::LangExt_Retired'=> '3.54',
14621             'Locale::Codes::LangFam'=> '3.54',
14622             'Locale::Codes::LangFam_Codes'=> '3.54',
14623             'Locale::Codes::LangFam_Retired'=> '3.54',
14624             'Locale::Codes::LangVar'=> '3.54',
14625             'Locale::Codes::LangVar_Codes'=> '3.54',
14626             'Locale::Codes::LangVar_Retired'=> '3.54',
14627             'Locale::Codes::Language'=> '3.54',
14628             'Locale::Codes::Language_Codes'=> '3.54',
14629             'Locale::Codes::Language_Retired'=> '3.54',
14630             'Locale::Codes::Script' => '3.54',
14631             'Locale::Codes::Script_Codes'=> '3.54',
14632             'Locale::Codes::Script_Retired'=> '3.54',
14633             'Locale::Country' => '3.54',
14634             'Locale::Currency' => '3.54',
14635             'Locale::Language' => '3.54',
14636             'Locale::Script' => '3.54',
14637             'Math::BigFloat' => '1.999811',
14638             'Math::BigInt' => '1.999811',
14639             'Math::BigInt::Calc' => '1.999811',
14640             'Math::BigInt::CalcEmu' => '1.999811',
14641             'Math::BigInt::FastCalc'=> '0.5006',
14642             'Math::BigInt::Lib' => '1.999811',
14643             'Module::CoreList' => '5.20171020',
14644             'Module::CoreList::TieHashDelta'=> '5.20171020',
14645             'Module::CoreList::Utils'=> '5.20171020',
14646             'NEXT' => '0.67_01',
14647             'POSIX' => '1.78',
14648             'Pod::Perldoc' => '3.2801',
14649             'Scalar::Util' => '1.49',
14650             'Sub::Util' => '1.49',
14651             'Sys::Hostname' => '1.21',
14652             'Test2' => '1.302103',
14653             'Test2::API' => '1.302103',
14654             'Test2::API::Breakage' => '1.302103',
14655             'Test2::API::Context' => '1.302103',
14656             'Test2::API::Instance' => '1.302103',
14657             'Test2::API::Stack' => '1.302103',
14658             'Test2::Event' => '1.302103',
14659             'Test2::Event::Bail' => '1.302103',
14660             'Test2::Event::Diag' => '1.302103',
14661             'Test2::Event::Encoding'=> '1.302103',
14662             'Test2::Event::Exception'=> '1.302103',
14663             'Test2::Event::Fail' => '1.302103',
14664             'Test2::Event::Generic' => '1.302103',
14665             'Test2::Event::Note' => '1.302103',
14666             'Test2::Event::Ok' => '1.302103',
14667             'Test2::Event::Pass' => '1.302103',
14668             'Test2::Event::Plan' => '1.302103',
14669             'Test2::Event::Skip' => '1.302103',
14670             'Test2::Event::Subtest' => '1.302103',
14671             'Test2::Event::TAP::Version'=> '1.302103',
14672             'Test2::Event::Waiting' => '1.302103',
14673             'Test2::EventFacet' => '1.302103',
14674             'Test2::EventFacet::About'=> '1.302103',
14675             'Test2::EventFacet::Amnesty'=> '1.302103',
14676             'Test2::EventFacet::Assert'=> '1.302103',
14677             'Test2::EventFacet::Control'=> '1.302103',
14678             'Test2::EventFacet::Error'=> '1.302103',
14679             'Test2::EventFacet::Info'=> '1.302103',
14680             'Test2::EventFacet::Meta'=> '1.302103',
14681             'Test2::EventFacet::Parent'=> '1.302103',
14682             'Test2::EventFacet::Plan'=> '1.302103',
14683             'Test2::EventFacet::Trace'=> '1.302103',
14684             'Test2::Formatter' => '1.302103',
14685             'Test2::Formatter::TAP' => '1.302103',
14686             'Test2::Hub' => '1.302103',
14687             'Test2::Hub::Interceptor'=> '1.302103',
14688             'Test2::Hub::Interceptor::Terminator'=> '1.302103',
14689             'Test2::Hub::Subtest' => '1.302103',
14690             'Test2::IPC' => '1.302103',
14691             'Test2::IPC::Driver' => '1.302103',
14692             'Test2::IPC::Driver::Files'=> '1.302103',
14693             'Test2::Tools::Tiny' => '1.302103',
14694             'Test2::Util' => '1.302103',
14695             'Test2::Util::ExternalMeta'=> '1.302103',
14696             'Test2::Util::Facets2Legacy'=> '1.302103',
14697             'Test2::Util::HashBase' => '0.005',
14698             'Test2::Util::Trace' => '1.302103',
14699             'Test::Builder' => '1.302103',
14700             'Test::Builder::Formatter'=> '1.302103',
14701             'Test::Builder::IO::Scalar'=> '2.114',
14702             'Test::Builder::Module' => '1.302103',
14703             'Test::Builder::Tester' => '1.302103',
14704             'Test::Builder::Tester::Color'=> '1.302103',
14705             'Test::Builder::TodoDiag'=> '1.302103',
14706             'Test::More' => '1.302103',
14707             'Test::Simple' => '1.302103',
14708             'Test::Tester' => '1.302103',
14709             'Test::Tester::Capture' => '1.302103',
14710             'Test::Tester::CaptureRunner'=> '1.302103',
14711             'Test::Tester::Delegate'=> '1.302103',
14712             'Test::use::ok' => '1.302103',
14713             'Time::HiRes' => '1.9746',
14714             'Time::Piece' => '1.3202',
14715             'Time::Seconds' => '1.3202',
14716             'arybase' => '0.14',
14717             'encoding' => '2.21',
14718             'ok' => '1.302103',
14719             },
14720             removed => {
14721             'Test2::Event::Info' => 1,
14722             }
14723             },
14724             5.027006 => {
14725             delta_from => 5.027005,
14726             changed => {
14727             'Attribute::Handlers' => '1.01',
14728             'B' => '1.72',
14729             'B::Concise' => '1.003',
14730             'B::Deparse' => '1.45',
14731             'B::Op_private' => '5.027006',
14732             'Carp' => '1.44',
14733             'Carp::Heavy' => '1.44',
14734             'Compress::Raw::Zlib' => '2.075',
14735             'Config' => '5.027006',
14736             'Config::Extensions' => '0.02',
14737             'Cwd' => '3.70',
14738             'DynaLoader' => '1.44',
14739             'ExtUtils::CBuilder' => '0.280229',
14740             'ExtUtils::CBuilder::Platform::Unix'=> '0.280229',
14741             'ExtUtils::CBuilder::Platform::VMS'=> '0.280229',
14742             'ExtUtils::CBuilder::Platform::Windows'=> '0.280229',
14743             'ExtUtils::CBuilder::Platform::aix'=> '0.280229',
14744             'ExtUtils::CBuilder::Platform::android'=> '0.280229',
14745             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280229',
14746             'ExtUtils::CBuilder::Platform::darwin'=> '0.280229',
14747             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280229',
14748             'ExtUtils::CBuilder::Platform::os2'=> '0.280229',
14749             'ExtUtils::Embed' => '1.35',
14750             'ExtUtils::Miniperl' => '1.07',
14751             'ExtUtils::ParseXS' => '3.36',
14752             'ExtUtils::ParseXS::Constants'=> '3.36',
14753             'ExtUtils::ParseXS::CountLines'=> '3.36',
14754             'ExtUtils::ParseXS::Eval'=> '3.36',
14755             'ExtUtils::ParseXS::Utilities'=> '3.36',
14756             'ExtUtils::Typemaps' => '3.36',
14757             'ExtUtils::Typemaps::Cmd'=> '3.36',
14758             'ExtUtils::Typemaps::InputMap'=> '3.36',
14759             'ExtUtils::Typemaps::OutputMap'=> '3.36',
14760             'ExtUtils::Typemaps::Type'=> '3.36',
14761             'ExtUtils::XSSymSet' => '1.4',
14762             'File::Copy' => '2.33',
14763             'File::Spec' => '3.69',
14764             'File::Spec::AmigaOS' => '3.69',
14765             'File::Spec::Cygwin' => '3.69',
14766             'File::Spec::Epoc' => '3.69',
14767             'File::Spec::Functions' => '3.69',
14768             'File::Spec::Mac' => '3.69',
14769             'File::Spec::OS2' => '3.69',
14770             'File::Spec::Unix' => '3.69',
14771             'File::Spec::VMS' => '3.69',
14772             'File::Spec::Win32' => '3.69',
14773             'File::stat' => '1.08',
14774             'FileCache' => '1.10',
14775             'Filter::Simple' => '0.95',
14776             'Hash::Util::FieldHash' => '1.20',
14777             'I18N::LangTags' => '0.43',
14778             'I18N::LangTags::Detect'=> '1.07',
14779             'I18N::LangTags::List' => '0.40',
14780             'I18N::Langinfo' => '0.15',
14781             'IO::Handle' => '1.37',
14782             'IO::Select' => '1.23',
14783             'Locale::Maketext' => '1.29',
14784             'Module::CoreList' => '5.20171120',
14785             'Module::CoreList::TieHashDelta'=> '5.20171120',
14786             'Module::CoreList::Utils'=> '5.20171120',
14787             'Net::Cmd' => '3.11',
14788             'Net::Config' => '3.11',
14789             'Net::Domain' => '3.11',
14790             'Net::FTP' => '3.11',
14791             'Net::FTP::A' => '3.11',
14792             'Net::FTP::E' => '3.11',
14793             'Net::FTP::I' => '3.11',
14794             'Net::FTP::L' => '3.11',
14795             'Net::FTP::dataconn' => '3.11',
14796             'Net::NNTP' => '3.11',
14797             'Net::Netrc' => '3.11',
14798             'Net::POP3' => '3.11',
14799             'Net::Ping' => '2.62',
14800             'Net::SMTP' => '3.11',
14801             'Net::Time' => '3.11',
14802             'Net::hostent' => '1.02',
14803             'Net::netent' => '1.01',
14804             'Net::protoent' => '1.01',
14805             'Net::servent' => '1.02',
14806             'O' => '1.03',
14807             'ODBM_File' => '1.15',
14808             'Opcode' => '1.41',
14809             'POSIX' => '1.80',
14810             'Pod::Html' => '1.2203',
14811             'SelfLoader' => '1.25',
14812             'Socket' => '2.020_04',
14813             'Storable' => '2.65',
14814             'Test' => '1.31',
14815             'Test2' => '1.302111',
14816             'Test2::API' => '1.302111',
14817             'Test2::API::Breakage' => '1.302111',
14818             'Test2::API::Context' => '1.302111',
14819             'Test2::API::Instance' => '1.302111',
14820             'Test2::API::Stack' => '1.302111',
14821             'Test2::Event' => '1.302111',
14822             'Test2::Event::Bail' => '1.302111',
14823             'Test2::Event::Diag' => '1.302111',
14824             'Test2::Event::Encoding'=> '1.302111',
14825             'Test2::Event::Exception'=> '1.302111',
14826             'Test2::Event::Fail' => '1.302111',
14827             'Test2::Event::Generic' => '1.302111',
14828             'Test2::Event::Note' => '1.302111',
14829             'Test2::Event::Ok' => '1.302111',
14830             'Test2::Event::Pass' => '1.302111',
14831             'Test2::Event::Plan' => '1.302111',
14832             'Test2::Event::Skip' => '1.302111',
14833             'Test2::Event::Subtest' => '1.302111',
14834             'Test2::Event::TAP::Version'=> '1.302111',
14835             'Test2::Event::Waiting' => '1.302111',
14836             'Test2::EventFacet' => '1.302111',
14837             'Test2::EventFacet::About'=> '1.302111',
14838             'Test2::EventFacet::Amnesty'=> '1.302111',
14839             'Test2::EventFacet::Assert'=> '1.302111',
14840             'Test2::EventFacet::Control'=> '1.302111',
14841             'Test2::EventFacet::Error'=> '1.302111',
14842             'Test2::EventFacet::Info'=> '1.302111',
14843             'Test2::EventFacet::Meta'=> '1.302111',
14844             'Test2::EventFacet::Parent'=> '1.302111',
14845             'Test2::EventFacet::Plan'=> '1.302111',
14846             'Test2::EventFacet::Trace'=> '1.302111',
14847             'Test2::Formatter' => '1.302111',
14848             'Test2::Formatter::TAP' => '1.302111',
14849             'Test2::Hub' => '1.302111',
14850             'Test2::Hub::Interceptor'=> '1.302111',
14851             'Test2::Hub::Interceptor::Terminator'=> '1.302111',
14852             'Test2::Hub::Subtest' => '1.302111',
14853             'Test2::IPC' => '1.302111',
14854             'Test2::IPC::Driver' => '1.302111',
14855             'Test2::IPC::Driver::Files'=> '1.302111',
14856             'Test2::Tools::Tiny' => '1.302111',
14857             'Test2::Util' => '1.302111',
14858             'Test2::Util::ExternalMeta'=> '1.302111',
14859             'Test2::Util::Facets2Legacy'=> '1.302111',
14860             'Test2::Util::HashBase' => '1.302111',
14861             'Test2::Util::Trace' => '1.302111',
14862             'Test::Builder' => '1.302111',
14863             'Test::Builder::Formatter'=> '1.302111',
14864             'Test::Builder::Module' => '1.302111',
14865             'Test::Builder::Tester' => '1.302111',
14866             'Test::Builder::Tester::Color'=> '1.302111',
14867             'Test::Builder::TodoDiag'=> '1.302111',
14868             'Test::More' => '1.302111',
14869             'Test::Simple' => '1.302111',
14870             'Test::Tester' => '1.302111',
14871             'Test::Tester::Capture' => '1.302111',
14872             'Test::Tester::CaptureRunner'=> '1.302111',
14873             'Test::Tester::Delegate'=> '1.302111',
14874             'Test::use::ok' => '1.302111',
14875             'Tie::Array' => '1.07',
14876             'Tie::StdHandle' => '4.5',
14877             'Time::HiRes' => '1.9747',
14878             'Time::gmtime' => '1.04',
14879             'Time::localtime' => '1.03',
14880             'Unicode::Collate' => '1.23',
14881             'Unicode::Collate::CJK::Big5'=> '1.23',
14882             'Unicode::Collate::CJK::GB2312'=> '1.23',
14883             'Unicode::Collate::CJK::JISX0208'=> '1.23',
14884             'Unicode::Collate::CJK::Korean'=> '1.23',
14885             'Unicode::Collate::CJK::Pinyin'=> '1.23',
14886             'Unicode::Collate::CJK::Stroke'=> '1.23',
14887             'Unicode::Collate::CJK::Zhuyin'=> '1.23',
14888             'Unicode::Collate::Locale'=> '1.23',
14889             'Unicode::Normalize' => '1.26',
14890             'User::grent' => '1.02',
14891             'User::pwent' => '1.01',
14892             'VMS::DCLsym' => '1.09',
14893             'VMS::Stdio' => '2.44',
14894             'XS::APItest' => '0.93',
14895             'XS::Typemap' => '0.16',
14896             'XSLoader' => '0.28',
14897             'attributes' => '0.32',
14898             'base' => '2.27',
14899             'blib' => '1.07',
14900             'experimental' => '0.017',
14901             'fields' => '2.24',
14902             'ok' => '1.302111',
14903             're' => '0.36',
14904             'sort' => '2.04',
14905             'threads' => '2.19',
14906             'warnings' => '1.38',
14907             },
14908             removed => {
14909             }
14910             },
14911             5.027007 => {
14912             delta_from => 5.027006,
14913             changed => {
14914             'App::Cpan' => '1.67',
14915             'B' => '1.73',
14916             'B::Debug' => '1.26',
14917             'B::Deparse' => '1.46',
14918             'B::Op_private' => '5.027007',
14919             'CPAN' => '2.20',
14920             'CPAN::Distribution' => '2.19',
14921             'CPAN::FTP' => '5.5011',
14922             'CPAN::FirstTime' => '5.5311',
14923             'CPAN::Shell' => '5.5007',
14924             'Carp' => '1.45',
14925             'Carp::Heavy' => '1.45',
14926             'Compress::Raw::Zlib' => '2.076',
14927             'Config' => '5.027007',
14928             'Cwd' => '3.71',
14929             'Data::Dumper' => '2.169',
14930             'Devel::PPPort' => '3.37',
14931             'Digest::SHA' => '6.00',
14932             'DynaLoader' => '1.45',
14933             'ExtUtils::CBuilder' => '0.280230',
14934             'ExtUtils::CBuilder::Base'=> '0.280230',
14935             'ExtUtils::CBuilder::Platform::Unix'=> '0.280230',
14936             'ExtUtils::CBuilder::Platform::VMS'=> '0.280230',
14937             'ExtUtils::CBuilder::Platform::Windows'=> '0.280230',
14938             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280230',
14939             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280230',
14940             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280230',
14941             'ExtUtils::CBuilder::Platform::aix'=> '0.280230',
14942             'ExtUtils::CBuilder::Platform::android'=> '0.280230',
14943             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280230',
14944             'ExtUtils::CBuilder::Platform::darwin'=> '0.280230',
14945             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280230',
14946             'ExtUtils::CBuilder::Platform::os2'=> '0.280230',
14947             'ExtUtils::Typemaps' => '3.37',
14948             'File::Fetch' => '0.56',
14949             'File::Spec' => '3.71',
14950             'File::Spec::AmigaOS' => '3.71',
14951             'File::Spec::Cygwin' => '3.71',
14952             'File::Spec::Epoc' => '3.71',
14953             'File::Spec::Functions' => '3.71',
14954             'File::Spec::Mac' => '3.71',
14955             'File::Spec::OS2' => '3.71',
14956             'File::Spec::Unix' => '3.71',
14957             'File::Spec::VMS' => '3.71',
14958             'File::Spec::Win32' => '3.71',
14959             'Filter::Util::Call' => '1.58',
14960             'GDBM_File' => '1.17',
14961             'JSON::PP' => '2.97000',
14962             'JSON::PP::Boolean' => '2.97000',
14963             'Locale::Codes' => '3.55',
14964             'Locale::Codes::Constants'=> '3.55',
14965             'Locale::Codes::Country'=> '3.55',
14966             'Locale::Codes::Country_Codes'=> '3.55',
14967             'Locale::Codes::Country_Retired'=> '3.55',
14968             'Locale::Codes::Currency'=> '3.55',
14969             'Locale::Codes::Currency_Codes'=> '3.55',
14970             'Locale::Codes::Currency_Retired'=> '3.55',
14971             'Locale::Codes::LangExt'=> '3.55',
14972             'Locale::Codes::LangExt_Codes'=> '3.55',
14973             'Locale::Codes::LangExt_Retired'=> '3.55',
14974             'Locale::Codes::LangFam'=> '3.55',
14975             'Locale::Codes::LangFam_Codes'=> '3.55',
14976             'Locale::Codes::LangFam_Retired'=> '3.55',
14977             'Locale::Codes::LangVar'=> '3.55',
14978             'Locale::Codes::LangVar_Codes'=> '3.55',
14979             'Locale::Codes::LangVar_Retired'=> '3.55',
14980             'Locale::Codes::Language'=> '3.55',
14981             'Locale::Codes::Language_Codes'=> '3.55',
14982             'Locale::Codes::Language_Retired'=> '3.55',
14983             'Locale::Codes::Script' => '3.55',
14984             'Locale::Codes::Script_Codes'=> '3.55',
14985             'Locale::Codes::Script_Retired'=> '3.55',
14986             'Locale::Country' => '3.55',
14987             'Locale::Currency' => '3.55',
14988             'Locale::Language' => '3.55',
14989             'Locale::Script' => '3.55',
14990             'Module::CoreList' => '5.20171220',
14991             'Module::CoreList::TieHashDelta'=> '5.20171220',
14992             'Module::CoreList::Utils'=> '5.20171220',
14993             'Opcode' => '1.42',
14994             'POSIX' => '1.81',
14995             'Pod::Functions' => '1.12',
14996             'Pod::Html' => '1.23',
14997             'Sys::Hostname' => '1.22',
14998             'Test2' => '1.302120',
14999             'Test2::API' => '1.302120',
15000             'Test2::API::Breakage' => '1.302120',
15001             'Test2::API::Context' => '1.302120',
15002             'Test2::API::Instance' => '1.302120',
15003             'Test2::API::Stack' => '1.302120',
15004             'Test2::Event' => '1.302120',
15005             'Test2::Event::Bail' => '1.302120',
15006             'Test2::Event::Diag' => '1.302120',
15007             'Test2::Event::Encoding'=> '1.302120',
15008             'Test2::Event::Exception'=> '1.302120',
15009             'Test2::Event::Fail' => '1.302120',
15010             'Test2::Event::Generic' => '1.302120',
15011             'Test2::Event::Note' => '1.302120',
15012             'Test2::Event::Ok' => '1.302120',
15013             'Test2::Event::Pass' => '1.302120',
15014             'Test2::Event::Plan' => '1.302120',
15015             'Test2::Event::Skip' => '1.302120',
15016             'Test2::Event::Subtest' => '1.302120',
15017             'Test2::Event::TAP::Version'=> '1.302120',
15018             'Test2::Event::Waiting' => '1.302120',
15019             'Test2::EventFacet' => '1.302120',
15020             'Test2::EventFacet::About'=> '1.302120',
15021             'Test2::EventFacet::Amnesty'=> '1.302120',
15022             'Test2::EventFacet::Assert'=> '1.302120',
15023             'Test2::EventFacet::Control'=> '1.302120',
15024             'Test2::EventFacet::Error'=> '1.302120',
15025             'Test2::EventFacet::Info'=> '1.302120',
15026             'Test2::EventFacet::Meta'=> '1.302120',
15027             'Test2::EventFacet::Parent'=> '1.302120',
15028             'Test2::EventFacet::Plan'=> '1.302120',
15029             'Test2::EventFacet::Trace'=> '1.302120',
15030             'Test2::Formatter' => '1.302120',
15031             'Test2::Formatter::TAP' => '1.302120',
15032             'Test2::Hub' => '1.302120',
15033             'Test2::Hub::Interceptor'=> '1.302120',
15034             'Test2::Hub::Interceptor::Terminator'=> '1.302120',
15035             'Test2::Hub::Subtest' => '1.302120',
15036             'Test2::IPC' => '1.302120',
15037             'Test2::IPC::Driver' => '1.302120',
15038             'Test2::IPC::Driver::Files'=> '1.302120',
15039             'Test2::Tools::Tiny' => '1.302120',
15040             'Test2::Util' => '1.302120',
15041             'Test2::Util::ExternalMeta'=> '1.302120',
15042             'Test2::Util::Facets2Legacy'=> '1.302120',
15043             'Test2::Util::HashBase' => '1.302120',
15044             'Test2::Util::Trace' => '1.302120',
15045             'Test::Builder' => '1.302120',
15046             'Test::Builder::Formatter'=> '1.302120',
15047             'Test::Builder::Module' => '1.302120',
15048             'Test::Builder::Tester' => '1.302120',
15049             'Test::Builder::Tester::Color'=> '1.302120',
15050             'Test::Builder::TodoDiag'=> '1.302120',
15051             'Test::More' => '1.302120',
15052             'Test::Simple' => '1.302120',
15053             'Test::Tester' => '1.302120',
15054             'Test::Tester::Capture' => '1.302120',
15055             'Test::Tester::CaptureRunner'=> '1.302120',
15056             'Test::Tester::Delegate'=> '1.302120',
15057             'Test::use::ok' => '1.302120',
15058             'Time::HiRes' => '1.9748',
15059             'Time::Piece' => '1.3203',
15060             'Time::Seconds' => '1.3203',
15061             'Unicode::Collate' => '1.25',
15062             'Unicode::Collate::CJK::Big5'=> '1.25',
15063             'Unicode::Collate::CJK::GB2312'=> '1.25',
15064             'Unicode::Collate::CJK::JISX0208'=> '1.25',
15065             'Unicode::Collate::CJK::Korean'=> '1.25',
15066             'Unicode::Collate::CJK::Pinyin'=> '1.25',
15067             'Unicode::Collate::CJK::Stroke'=> '1.25',
15068             'Unicode::Collate::CJK::Zhuyin'=> '1.25',
15069             'Unicode::Collate::Locale'=> '1.25',
15070             'Unicode::UCD' => '0.69',
15071             'XS::APItest' => '0.94',
15072             'XSLoader' => '0.29',
15073             'arybase' => '0.15',
15074             'autodie::exception' => '2.29001',
15075             'autodie::hints' => '2.29001',
15076             'experimental' => '0.019',
15077             'feature' => '1.50',
15078             'ok' => '1.302120',
15079             'overload' => '1.29',
15080             'threads' => '2.21',
15081             'threads::shared' => '1.58',
15082             'warnings' => '1.39',
15083             },
15084             removed => {
15085             }
15086             },
15087             5.027008 => {
15088             delta_from => 5.027007,
15089             changed => {
15090             'B' => '1.74',
15091             'B::Deparse' => '1.47',
15092             'B::Op_private' => '5.027008',
15093             'Config' => '5.027008',
15094             'Cwd' => '3.72',
15095             'Data::Dumper' => '2.170',
15096             'Devel::PPPort' => '3.38',
15097             'Digest::SHA' => '6.01',
15098             'Encode' => '2.94',
15099             'Encode::Alias' => '2.24',
15100             'ExtUtils::Miniperl' => '1.08',
15101             'File::Spec' => '3.72',
15102             'File::Spec::AmigaOS' => '3.72',
15103             'File::Spec::Cygwin' => '3.72',
15104             'File::Spec::Epoc' => '3.72',
15105             'File::Spec::Functions' => '3.72',
15106             'File::Spec::Mac' => '3.72',
15107             'File::Spec::OS2' => '3.72',
15108             'File::Spec::Unix' => '3.72',
15109             'File::Spec::VMS' => '3.72',
15110             'File::Spec::Win32' => '3.72',
15111             'JSON::PP' => '2.97001',
15112             'JSON::PP::Boolean' => '2.97001',
15113             'Module::CoreList' => '5.20180120',
15114             'Module::CoreList::TieHashDelta'=> '5.20180120',
15115             'Module::CoreList::Utils'=> '5.20180120',
15116             'Opcode' => '1.43',
15117             'Pod::Functions' => '1.13',
15118             'Pod::Html' => '1.24',
15119             'Pod::Man' => '4.10',
15120             'Pod::ParseLink' => '4.10',
15121             'Pod::Text' => '4.10',
15122             'Pod::Text::Color' => '4.10',
15123             'Pod::Text::Overstrike' => '4.10',
15124             'Pod::Text::Termcap' => '4.10',
15125             'Socket' => '2.027',
15126             'Time::HiRes' => '1.9752',
15127             'Unicode::UCD' => '0.70',
15128             'XS::APItest' => '0.95',
15129             'XSLoader' => '0.30',
15130             'autodie::exception' => '2.29002',
15131             'feature' => '1.51',
15132             'overload' => '1.30',
15133             'utf8' => '1.21',
15134             'warnings' => '1.40',
15135             },
15136             removed => {
15137             }
15138             },
15139             5.027009 => {
15140             delta_from => 5.027008,
15141             changed => {
15142             'B::Op_private' => '5.027009',
15143             'Carp' => '1.46',
15144             'Carp::Heavy' => '1.46',
15145             'Config' => '5.027009',
15146             'Cwd' => '3.74',
15147             'Devel::PPPort' => '3.39',
15148             'Encode' => '2.96',
15149             'Encode::Unicode' => '2.17',
15150             'Errno' => '1.29',
15151             'ExtUtils::Command' => '7.32',
15152             'ExtUtils::Command::MM' => '7.32',
15153             'ExtUtils::Liblist' => '7.32',
15154             'ExtUtils::Liblist::Kid'=> '7.32',
15155             'ExtUtils::MM' => '7.32',
15156             'ExtUtils::MM_AIX' => '7.32',
15157             'ExtUtils::MM_Any' => '7.32',
15158             'ExtUtils::MM_BeOS' => '7.32',
15159             'ExtUtils::MM_Cygwin' => '7.32',
15160             'ExtUtils::MM_DOS' => '7.32',
15161             'ExtUtils::MM_Darwin' => '7.32',
15162             'ExtUtils::MM_MacOS' => '7.32',
15163             'ExtUtils::MM_NW5' => '7.32',
15164             'ExtUtils::MM_OS2' => '7.32',
15165             'ExtUtils::MM_QNX' => '7.32',
15166             'ExtUtils::MM_UWIN' => '7.32',
15167             'ExtUtils::MM_Unix' => '7.32',
15168             'ExtUtils::MM_VMS' => '7.32',
15169             'ExtUtils::MM_VOS' => '7.32',
15170             'ExtUtils::MM_Win32' => '7.32',
15171             'ExtUtils::MM_Win95' => '7.32',
15172             'ExtUtils::MY' => '7.32',
15173             'ExtUtils::MakeMaker' => '7.32',
15174             'ExtUtils::MakeMaker::Config'=> '7.32',
15175             'ExtUtils::MakeMaker::Locale'=> '7.32',
15176             'ExtUtils::MakeMaker::version'=> '7.32',
15177             'ExtUtils::MakeMaker::version::regex'=> '7.32',
15178             'ExtUtils::Mkbootstrap' => '7.32',
15179             'ExtUtils::Mksymlists' => '7.32',
15180             'ExtUtils::ParseXS' => '3.38',
15181             'ExtUtils::ParseXS::Constants'=> '3.38',
15182             'ExtUtils::ParseXS::CountLines'=> '3.38',
15183             'ExtUtils::ParseXS::Eval'=> '3.38',
15184             'ExtUtils::ParseXS::Utilities'=> '3.38',
15185             'ExtUtils::Typemaps' => '3.38',
15186             'ExtUtils::Typemaps::Cmd'=> '3.38',
15187             'ExtUtils::Typemaps::InputMap'=> '3.38',
15188             'ExtUtils::Typemaps::OutputMap'=> '3.38',
15189             'ExtUtils::Typemaps::Type'=> '3.38',
15190             'ExtUtils::testlib' => '7.32',
15191             'File::Spec' => '3.74',
15192             'File::Spec::AmigaOS' => '3.74',
15193             'File::Spec::Cygwin' => '3.74',
15194             'File::Spec::Epoc' => '3.74',
15195             'File::Spec::Functions' => '3.74',
15196             'File::Spec::Mac' => '3.74',
15197             'File::Spec::OS2' => '3.74',
15198             'File::Spec::Unix' => '3.74',
15199             'File::Spec::VMS' => '3.74',
15200             'File::Spec::Win32' => '3.74',
15201             'IPC::Cmd' => '1.00',
15202             'Math::BigFloat::Trace' => '0.49',
15203             'Math::BigInt::Trace' => '0.49',
15204             'Module::CoreList' => '5.20180220',
15205             'Module::CoreList::Utils'=> '5.20180220',
15206             'POSIX' => '1.82',
15207             'PerlIO::encoding' => '0.26',
15208             'Storable' => '3.06',
15209             'Storable::Limit' => undef,
15210             'Test2' => '1.302122',
15211             'Test2::API' => '1.302122',
15212             'Test2::API::Breakage' => '1.302122',
15213             'Test2::API::Context' => '1.302122',
15214             'Test2::API::Instance' => '1.302122',
15215             'Test2::API::Stack' => '1.302122',
15216             'Test2::Event' => '1.302122',
15217             'Test2::Event::Bail' => '1.302122',
15218             'Test2::Event::Diag' => '1.302122',
15219             'Test2::Event::Encoding'=> '1.302122',
15220             'Test2::Event::Exception'=> '1.302122',
15221             'Test2::Event::Fail' => '1.302122',
15222             'Test2::Event::Generic' => '1.302122',
15223             'Test2::Event::Note' => '1.302122',
15224             'Test2::Event::Ok' => '1.302122',
15225             'Test2::Event::Pass' => '1.302122',
15226             'Test2::Event::Plan' => '1.302122',
15227             'Test2::Event::Skip' => '1.302122',
15228             'Test2::Event::Subtest' => '1.302122',
15229             'Test2::Event::TAP::Version'=> '1.302122',
15230             'Test2::Event::Waiting' => '1.302122',
15231             'Test2::EventFacet' => '1.302122',
15232             'Test2::EventFacet::About'=> '1.302122',
15233             'Test2::EventFacet::Amnesty'=> '1.302122',
15234             'Test2::EventFacet::Assert'=> '1.302122',
15235             'Test2::EventFacet::Control'=> '1.302122',
15236             'Test2::EventFacet::Error'=> '1.302122',
15237             'Test2::EventFacet::Info'=> '1.302122',
15238             'Test2::EventFacet::Meta'=> '1.302122',
15239             'Test2::EventFacet::Parent'=> '1.302122',
15240             'Test2::EventFacet::Plan'=> '1.302122',
15241             'Test2::EventFacet::Render'=> '1.302122',
15242             'Test2::EventFacet::Trace'=> '1.302122',
15243             'Test2::Formatter' => '1.302122',
15244             'Test2::Formatter::TAP' => '1.302122',
15245             'Test2::Hub' => '1.302122',
15246             'Test2::Hub::Interceptor'=> '1.302122',
15247             'Test2::Hub::Interceptor::Terminator'=> '1.302122',
15248             'Test2::Hub::Subtest' => '1.302122',
15249             'Test2::IPC' => '1.302122',
15250             'Test2::IPC::Driver' => '1.302122',
15251             'Test2::IPC::Driver::Files'=> '1.302122',
15252             'Test2::Tools::Tiny' => '1.302122',
15253             'Test2::Util' => '1.302122',
15254             'Test2::Util::ExternalMeta'=> '1.302122',
15255             'Test2::Util::Facets2Legacy'=> '1.302122',
15256             'Test2::Util::HashBase' => '1.302122',
15257             'Test2::Util::Trace' => '1.302122',
15258             'Test::Builder' => '1.302122',
15259             'Test::Builder::Formatter'=> '1.302122',
15260             'Test::Builder::Module' => '1.302122',
15261             'Test::Builder::Tester' => '1.302122',
15262             'Test::Builder::Tester::Color'=> '1.302122',
15263             'Test::Builder::TodoDiag'=> '1.302122',
15264             'Test::More' => '1.302122',
15265             'Test::Simple' => '1.302122',
15266             'Test::Tester' => '1.302122',
15267             'Test::Tester::Capture' => '1.302122',
15268             'Test::Tester::CaptureRunner'=> '1.302122',
15269             'Test::Tester::Delegate'=> '1.302122',
15270             'Test::use::ok' => '1.302122',
15271             'Time::HiRes' => '1.9753',
15272             'XS::APItest' => '0.96',
15273             'bigint' => '0.49',
15274             'bignum' => '0.49',
15275             'bigrat' => '0.49',
15276             'encoding' => '2.22',
15277             'if' => '0.0608',
15278             'mro' => '1.22',
15279             'ok' => '1.302122',
15280             'threads' => '2.22',
15281             'warnings' => '1.41',
15282             },
15283             removed => {
15284             'Module::CoreList::TieHashDelta'=> 1,
15285             }
15286             },
15287             5.027010 => {
15288             delta_from => 5.027009,
15289             changed => {
15290             'App::Prove' => '3.42',
15291             'App::Prove::State' => '3.42',
15292             'App::Prove::State::Result'=> '3.42',
15293             'App::Prove::State::Result::Test'=> '3.42',
15294             'B::Deparse' => '1.48',
15295             'B::Op_private' => '5.027010',
15296             'Carp' => '1.49',
15297             'Carp::Heavy' => '1.49',
15298             'Config' => '5.02701',
15299             'Encode' => '2.97',
15300             'ExtUtils::Command' => '7.34',
15301             'ExtUtils::Command::MM' => '7.34',
15302             'ExtUtils::Liblist' => '7.34',
15303             'ExtUtils::Liblist::Kid'=> '7.34',
15304             'ExtUtils::MM' => '7.34',
15305             'ExtUtils::MM_AIX' => '7.34',
15306             'ExtUtils::MM_Any' => '7.34',
15307             'ExtUtils::MM_BeOS' => '7.34',
15308             'ExtUtils::MM_Cygwin' => '7.34',
15309             'ExtUtils::MM_DOS' => '7.34',
15310             'ExtUtils::MM_Darwin' => '7.34',
15311             'ExtUtils::MM_MacOS' => '7.34',
15312             'ExtUtils::MM_NW5' => '7.34',
15313             'ExtUtils::MM_OS2' => '7.34',
15314             'ExtUtils::MM_QNX' => '7.34',
15315             'ExtUtils::MM_UWIN' => '7.34',
15316             'ExtUtils::MM_Unix' => '7.34',
15317             'ExtUtils::MM_VMS' => '7.34',
15318             'ExtUtils::MM_VOS' => '7.34',
15319             'ExtUtils::MM_Win32' => '7.34',
15320             'ExtUtils::MM_Win95' => '7.34',
15321             'ExtUtils::MY' => '7.34',
15322             'ExtUtils::MakeMaker' => '7.34',
15323             'ExtUtils::MakeMaker::Config'=> '7.34',
15324             'ExtUtils::MakeMaker::Locale'=> '7.34',
15325             'ExtUtils::MakeMaker::version'=> '7.34',
15326             'ExtUtils::MakeMaker::version::regex'=> '7.34',
15327             'ExtUtils::Mkbootstrap' => '7.34',
15328             'ExtUtils::Mksymlists' => '7.34',
15329             'ExtUtils::ParseXS' => '3.39',
15330             'ExtUtils::ParseXS::Constants'=> '3.39',
15331             'ExtUtils::ParseXS::CountLines'=> '3.39',
15332             'ExtUtils::ParseXS::Eval'=> '3.39',
15333             'ExtUtils::ParseXS::Utilities'=> '3.39',
15334             'ExtUtils::testlib' => '7.34',
15335             'File::Glob' => '1.31',
15336             'I18N::Langinfo' => '0.16',
15337             'List::Util' => '1.50',
15338             'List::Util::XS' => '1.50',
15339             'Locale::Codes' => '3.56',
15340             'Locale::Codes::Constants'=> '3.56',
15341             'Locale::Codes::Country'=> '3.56',
15342             'Locale::Codes::Country_Codes'=> '3.56',
15343             'Locale::Codes::Country_Retired'=> '3.56',
15344             'Locale::Codes::Currency'=> '3.56',
15345             'Locale::Codes::Currency_Codes'=> '3.56',
15346             'Locale::Codes::Currency_Retired'=> '3.56',
15347             'Locale::Codes::LangExt'=> '3.56',
15348             'Locale::Codes::LangExt_Codes'=> '3.56',
15349             'Locale::Codes::LangExt_Retired'=> '3.56',
15350             'Locale::Codes::LangFam'=> '3.56',
15351             'Locale::Codes::LangFam_Codes'=> '3.56',
15352             'Locale::Codes::LangFam_Retired'=> '3.56',
15353             'Locale::Codes::LangVar'=> '3.56',
15354             'Locale::Codes::LangVar_Codes'=> '3.56',
15355             'Locale::Codes::LangVar_Retired'=> '3.56',
15356             'Locale::Codes::Language'=> '3.56',
15357             'Locale::Codes::Language_Codes'=> '3.56',
15358             'Locale::Codes::Language_Retired'=> '3.56',
15359             'Locale::Codes::Script' => '3.56',
15360             'Locale::Codes::Script_Codes'=> '3.56',
15361             'Locale::Codes::Script_Retired'=> '3.56',
15362             'Locale::Country' => '3.56',
15363             'Locale::Currency' => '3.56',
15364             'Locale::Language' => '3.56',
15365             'Locale::Script' => '3.56',
15366             'Module::CoreList' => '5.20180221',
15367             'Module::CoreList::Utils'=> '5.20180221',
15368             'POSIX' => '1.83',
15369             'Scalar::Util' => '1.50',
15370             'Sub::Util' => '1.50',
15371             'TAP::Base' => '3.42',
15372             'TAP::Formatter::Base' => '3.42',
15373             'TAP::Formatter::Color' => '3.42',
15374             'TAP::Formatter::Console'=> '3.42',
15375             'TAP::Formatter::Console::ParallelSession'=> '3.42',
15376             'TAP::Formatter::Console::Session'=> '3.42',
15377             'TAP::Formatter::File' => '3.42',
15378             'TAP::Formatter::File::Session'=> '3.42',
15379             'TAP::Formatter::Session'=> '3.42',
15380             'TAP::Harness' => '3.42',
15381             'TAP::Harness::Env' => '3.42',
15382             'TAP::Object' => '3.42',
15383             'TAP::Parser' => '3.42',
15384             'TAP::Parser::Aggregator'=> '3.42',
15385             'TAP::Parser::Grammar' => '3.42',
15386             'TAP::Parser::Iterator' => '3.42',
15387             'TAP::Parser::Iterator::Array'=> '3.42',
15388             'TAP::Parser::Iterator::Process'=> '3.42',
15389             'TAP::Parser::Iterator::Stream'=> '3.42',
15390             'TAP::Parser::IteratorFactory'=> '3.42',
15391             'TAP::Parser::Multiplexer'=> '3.42',
15392             'TAP::Parser::Result' => '3.42',
15393             'TAP::Parser::Result::Bailout'=> '3.42',
15394             'TAP::Parser::Result::Comment'=> '3.42',
15395             'TAP::Parser::Result::Plan'=> '3.42',
15396             'TAP::Parser::Result::Pragma'=> '3.42',
15397             'TAP::Parser::Result::Test'=> '3.42',
15398             'TAP::Parser::Result::Unknown'=> '3.42',
15399             'TAP::Parser::Result::Version'=> '3.42',
15400             'TAP::Parser::Result::YAML'=> '3.42',
15401             'TAP::Parser::ResultFactory'=> '3.42',
15402             'TAP::Parser::Scheduler'=> '3.42',
15403             'TAP::Parser::Scheduler::Job'=> '3.42',
15404             'TAP::Parser::Scheduler::Spinner'=> '3.42',
15405             'TAP::Parser::Source' => '3.42',
15406             'TAP::Parser::SourceHandler'=> '3.42',
15407             'TAP::Parser::SourceHandler::Executable'=> '3.42',
15408             'TAP::Parser::SourceHandler::File'=> '3.42',
15409             'TAP::Parser::SourceHandler::Handle'=> '3.42',
15410             'TAP::Parser::SourceHandler::Perl'=> '3.42',
15411             'TAP::Parser::SourceHandler::RawTAP'=> '3.42',
15412             'TAP::Parser::YAMLish::Reader'=> '3.42',
15413             'TAP::Parser::YAMLish::Writer'=> '3.42',
15414             'Test2' => '1.302133',
15415             'Test2::API' => '1.302133',
15416             'Test2::API::Breakage' => '1.302133',
15417             'Test2::API::Context' => '1.302133',
15418             'Test2::API::Instance' => '1.302133',
15419             'Test2::API::Stack' => '1.302133',
15420             'Test2::Event' => '1.302133',
15421             'Test2::Event::Bail' => '1.302133',
15422             'Test2::Event::Diag' => '1.302133',
15423             'Test2::Event::Encoding'=> '1.302133',
15424             'Test2::Event::Exception'=> '1.302133',
15425             'Test2::Event::Fail' => '1.302133',
15426             'Test2::Event::Generic' => '1.302133',
15427             'Test2::Event::Note' => '1.302133',
15428             'Test2::Event::Ok' => '1.302133',
15429             'Test2::Event::Pass' => '1.302133',
15430             'Test2::Event::Plan' => '1.302133',
15431             'Test2::Event::Skip' => '1.302133',
15432             'Test2::Event::Subtest' => '1.302133',
15433             'Test2::Event::TAP::Version'=> '1.302133',
15434             'Test2::Event::V2' => '1.302133',
15435             'Test2::Event::Waiting' => '1.302133',
15436             'Test2::EventFacet' => '1.302133',
15437             'Test2::EventFacet::About'=> '1.302133',
15438             'Test2::EventFacet::Amnesty'=> '1.302133',
15439             'Test2::EventFacet::Assert'=> '1.302133',
15440             'Test2::EventFacet::Control'=> '1.302133',
15441             'Test2::EventFacet::Error'=> '1.302133',
15442             'Test2::EventFacet::Hub'=> '1.302133',
15443             'Test2::EventFacet::Info'=> '1.302133',
15444             'Test2::EventFacet::Meta'=> '1.302133',
15445             'Test2::EventFacet::Parent'=> '1.302133',
15446             'Test2::EventFacet::Plan'=> '1.302133',
15447             'Test2::EventFacet::Render'=> '1.302133',
15448             'Test2::EventFacet::Trace'=> '1.302133',
15449             'Test2::Formatter' => '1.302133',
15450             'Test2::Formatter::TAP' => '1.302133',
15451             'Test2::Hub' => '1.302133',
15452             'Test2::Hub::Interceptor'=> '1.302133',
15453             'Test2::Hub::Interceptor::Terminator'=> '1.302133',
15454             'Test2::Hub::Subtest' => '1.302133',
15455             'Test2::IPC' => '1.302133',
15456             'Test2::IPC::Driver' => '1.302133',
15457             'Test2::IPC::Driver::Files'=> '1.302133',
15458             'Test2::Tools::Tiny' => '1.302133',
15459             'Test2::Util' => '1.302133',
15460             'Test2::Util::ExternalMeta'=> '1.302133',
15461             'Test2::Util::Facets2Legacy'=> '1.302133',
15462             'Test2::Util::HashBase' => '1.302133',
15463             'Test2::Util::Trace' => '1.302133',
15464             'Test::Builder' => '1.302133',
15465             'Test::Builder::Formatter'=> '1.302133',
15466             'Test::Builder::Module' => '1.302133',
15467             'Test::Builder::Tester' => '1.302133',
15468             'Test::Builder::Tester::Color'=> '1.302133',
15469             'Test::Builder::TodoDiag'=> '1.302133',
15470             'Test::Harness' => '3.42',
15471             'Test::More' => '1.302133',
15472             'Test::Simple' => '1.302133',
15473             'Test::Tester' => '1.302133',
15474             'Test::Tester::Capture' => '1.302133',
15475             'Test::Tester::CaptureRunner'=> '1.302133',
15476             'Test::Tester::Delegate'=> '1.302133',
15477             'Test::use::ok' => '1.302133',
15478             'Time::HiRes' => '1.9757',
15479             'Time::Piece' => '1.3204',
15480             'Time::Seconds' => '1.3204',
15481             'attributes' => '0.33',
15482             'ok' => '1.302133',
15483             'warnings' => '1.42',
15484             },
15485             removed => {
15486             }
15487             },
15488             5.024004 => {
15489             delta_from => 5.024003,
15490             changed => {
15491             'B::Op_private' => '5.024004',
15492             'Config' => '5.024004',
15493             'Module::CoreList' => '5.20180414_24',
15494             'Module::CoreList::TieHashDelta'=> '5.20180414_24',
15495             'Module::CoreList::Utils'=> '5.20180414_24',
15496             },
15497             removed => {
15498             }
15499             },
15500             5.026002 => {
15501             delta_from => 5.026001,
15502             changed => {
15503             'B::Op_private' => '5.026002',
15504             'Config' => '5.026002',
15505             'Module::CoreList' => '5.20180414_26',
15506             'Module::CoreList::TieHashDelta'=> '5.20180414_26',
15507             'Module::CoreList::Utils'=> '5.20180414_26',
15508             'PerlIO::via' => '0.17',
15509             'Term::ReadLine' => '1.17',
15510             'Unicode::UCD' => '0.69',
15511             },
15512             removed => {
15513             }
15514             },
15515             5.027011 => {
15516             delta_from => 5.027010,
15517             changed => {
15518             'B::Op_private' => '5.027011',
15519             'Carp' => '1.50',
15520             'Carp::Heavy' => '1.50',
15521             'Config' => '5.027011',
15522             'Devel::PPPort' => '3.40',
15523             'Exporter' => '5.73',
15524             'Exporter::Heavy' => '5.73',
15525             'ExtUtils::Constant' => '0.25',
15526             'I18N::Langinfo' => '0.17',
15527             'IO' => '1.39',
15528             'IO::Dir' => '1.39',
15529             'IO::File' => '1.39',
15530             'IO::Handle' => '1.39',
15531             'IO::Pipe' => '1.39',
15532             'IO::Poll' => '1.39',
15533             'IO::Seekable' => '1.39',
15534             'IO::Select' => '1.39',
15535             'IO::Socket' => '1.39',
15536             'IO::Socket::INET' => '1.39',
15537             'IO::Socket::UNIX' => '1.39',
15538             'Module::CoreList' => '5.20180420',
15539             'Module::CoreList::Utils'=> '5.20180420',
15540             'POSIX' => '1.84',
15541             'Time::HiRes' => '1.9759',
15542             'XS::APItest' => '0.97',
15543             'bytes' => '1.06',
15544             'subs' => '1.03',
15545             'vars' => '1.04',
15546             'version' => '0.9923',
15547             'version::regex' => '0.9923',
15548             },
15549             removed => {
15550             }
15551             },
15552             5.028000 => {
15553             delta_from => 5.027011,
15554             changed => {
15555             'Archive::Tar' => '2.30',
15556             'Archive::Tar::Constant'=> '2.30',
15557             'Archive::Tar::File' => '2.30',
15558             'B::Op_private' => '5.028000',
15559             'Config' => '5.028',
15560             'Module::CoreList' => '5.20180622',
15561             'Module::CoreList::Utils'=> '5.20180622',
15562             'Storable' => '3.08',
15563             'XS::APItest' => '0.98',
15564             'feature' => '1.52',
15565             },
15566             removed => {
15567             }
15568             },
15569             5.029000 => {
15570             delta_from => 5.028,
15571             changed => {
15572             'B::Op_private' => '5.029000',
15573             'Config' => '5.029',
15574             'Module::CoreList' => '5.20180626',
15575             'Module::CoreList::Utils'=> '5.20180626',
15576             'Unicode::UCD' => '0.71',
15577             'XS::APItest' => '0.99',
15578             'feature' => '1.53',
15579             },
15580             removed => {
15581             }
15582             },
15583             5.029001 => {
15584             delta_from => 5.029000,
15585             changed => {
15586             'B::Op_private' => '5.029001',
15587             'Compress::Raw::Bzip2' => '2.081',
15588             'Compress::Raw::Zlib' => '2.081',
15589             'Compress::Zlib' => '2.081',
15590             'Config' => '5.029001',
15591             'Config::Perl::V' => '0.30',
15592             'DB_File' => '1.842',
15593             'Devel::PPPort' => '3.42',
15594             'Digest::SHA' => '6.02',
15595             'ExtUtils::Manifest' => '1.71',
15596             'File::GlobMapper' => '1.001',
15597             'File::Temp' => '0.2308',
15598             'IO::Compress::Adapter::Bzip2'=> '2.081',
15599             'IO::Compress::Adapter::Deflate'=> '2.081',
15600             'IO::Compress::Adapter::Identity'=> '2.081',
15601             'IO::Compress::Base' => '2.081',
15602             'IO::Compress::Base::Common'=> '2.081',
15603             'IO::Compress::Bzip2' => '2.081',
15604             'IO::Compress::Deflate' => '2.081',
15605             'IO::Compress::Gzip' => '2.081',
15606             'IO::Compress::Gzip::Constants'=> '2.081',
15607             'IO::Compress::RawDeflate'=> '2.081',
15608             'IO::Compress::Zip' => '2.081',
15609             'IO::Compress::Zip::Constants'=> '2.081',
15610             'IO::Compress::Zlib::Constants'=> '2.081',
15611             'IO::Compress::Zlib::Extra'=> '2.081',
15612             'IO::Uncompress::Adapter::Bunzip2'=> '2.081',
15613             'IO::Uncompress::Adapter::Identity'=> '2.081',
15614             'IO::Uncompress::Adapter::Inflate'=> '2.081',
15615             'IO::Uncompress::AnyInflate'=> '2.081',
15616             'IO::Uncompress::AnyUncompress'=> '2.081',
15617             'IO::Uncompress::Base' => '2.081',
15618             'IO::Uncompress::Bunzip2'=> '2.081',
15619             'IO::Uncompress::Gunzip'=> '2.081',
15620             'IO::Uncompress::Inflate'=> '2.081',
15621             'IO::Uncompress::RawInflate'=> '2.081',
15622             'IO::Uncompress::Unzip' => '2.081',
15623             'IPC::Cmd' => '1.02',
15624             'Locale::Codes' => '3.57',
15625             'Locale::Codes::Constants'=> '3.57',
15626             'Locale::Codes::Country'=> '3.57',
15627             'Locale::Codes::Country_Codes'=> '3.57',
15628             'Locale::Codes::Country_Retired'=> '3.57',
15629             'Locale::Codes::Currency'=> '3.57',
15630             'Locale::Codes::Currency_Codes'=> '3.57',
15631             'Locale::Codes::Currency_Retired'=> '3.57',
15632             'Locale::Codes::LangExt'=> '3.57',
15633             'Locale::Codes::LangExt_Codes'=> '3.57',
15634             'Locale::Codes::LangExt_Retired'=> '3.57',
15635             'Locale::Codes::LangFam'=> '3.57',
15636             'Locale::Codes::LangFam_Codes'=> '3.57',
15637             'Locale::Codes::LangFam_Retired'=> '3.57',
15638             'Locale::Codes::LangVar'=> '3.57',
15639             'Locale::Codes::LangVar_Codes'=> '3.57',
15640             'Locale::Codes::LangVar_Retired'=> '3.57',
15641             'Locale::Codes::Language'=> '3.57',
15642             'Locale::Codes::Language_Codes'=> '3.57',
15643             'Locale::Codes::Language_Retired'=> '3.57',
15644             'Locale::Codes::Script' => '3.57',
15645             'Locale::Codes::Script_Codes'=> '3.57',
15646             'Locale::Codes::Script_Retired'=> '3.57',
15647             'Locale::Country' => '3.57',
15648             'Locale::Currency' => '3.57',
15649             'Locale::Language' => '3.57',
15650             'Locale::Script' => '3.57',
15651             'Math::BigFloat' => '1.999813',
15652             'Math::BigFloat::Trace' => '0.50',
15653             'Math::BigInt' => '1.999813',
15654             'Math::BigInt::Calc' => '1.999813',
15655             'Math::BigInt::CalcEmu' => '1.999813',
15656             'Math::BigInt::FastCalc'=> '0.5007',
15657             'Math::BigInt::Lib' => '1.999813',
15658             'Math::BigInt::Trace' => '0.50',
15659             'Math::BigRat' => '0.2614',
15660             'Module::CoreList' => '5.20180720',
15661             'Module::CoreList::Utils'=> '5.20180720',
15662             'Pod::Man' => '4.11',
15663             'Pod::ParseLink' => '4.11',
15664             'Pod::Text' => '4.11',
15665             'Pod::Text::Color' => '4.11',
15666             'Pod::Text::Overstrike' => '4.11',
15667             'Pod::Text::Termcap' => '4.11',
15668             'Storable' => '3.11',
15669             'Test2' => '1.302138',
15670             'Test2::API' => '1.302138',
15671             'Test2::API::Breakage' => '1.302138',
15672             'Test2::API::Context' => '1.302138',
15673             'Test2::API::Instance' => '1.302138',
15674             'Test2::API::Stack' => '1.302138',
15675             'Test2::Event' => '1.302138',
15676             'Test2::Event::Bail' => '1.302138',
15677             'Test2::Event::Diag' => '1.302138',
15678             'Test2::Event::Encoding'=> '1.302138',
15679             'Test2::Event::Exception'=> '1.302138',
15680             'Test2::Event::Fail' => '1.302138',
15681             'Test2::Event::Generic' => '1.302138',
15682             'Test2::Event::Note' => '1.302138',
15683             'Test2::Event::Ok' => '1.302138',
15684             'Test2::Event::Pass' => '1.302138',
15685             'Test2::Event::Plan' => '1.302138',
15686             'Test2::Event::Skip' => '1.302138',
15687             'Test2::Event::Subtest' => '1.302138',
15688             'Test2::Event::TAP::Version'=> '1.302138',
15689             'Test2::Event::V2' => '1.302138',
15690             'Test2::Event::Waiting' => '1.302138',
15691             'Test2::EventFacet' => '1.302138',
15692             'Test2::EventFacet::About'=> '1.302138',
15693             'Test2::EventFacet::Amnesty'=> '1.302138',
15694             'Test2::EventFacet::Assert'=> '1.302138',
15695             'Test2::EventFacet::Control'=> '1.302138',
15696             'Test2::EventFacet::Error'=> '1.302138',
15697             'Test2::EventFacet::Hub'=> '1.302138',
15698             'Test2::EventFacet::Info'=> '1.302138',
15699             'Test2::EventFacet::Meta'=> '1.302138',
15700             'Test2::EventFacet::Parent'=> '1.302138',
15701             'Test2::EventFacet::Plan'=> '1.302138',
15702             'Test2::EventFacet::Render'=> '1.302138',
15703             'Test2::EventFacet::Trace'=> '1.302138',
15704             'Test2::Formatter' => '1.302138',
15705             'Test2::Formatter::TAP' => '1.302138',
15706             'Test2::Hub' => '1.302138',
15707             'Test2::Hub::Interceptor'=> '1.302138',
15708             'Test2::Hub::Interceptor::Terminator'=> '1.302138',
15709             'Test2::Hub::Subtest' => '1.302138',
15710             'Test2::IPC' => '1.302138',
15711             'Test2::IPC::Driver' => '1.302138',
15712             'Test2::IPC::Driver::Files'=> '1.302138',
15713             'Test2::Tools::Tiny' => '1.302138',
15714             'Test2::Util' => '1.302138',
15715             'Test2::Util::ExternalMeta'=> '1.302138',
15716             'Test2::Util::Facets2Legacy'=> '1.302138',
15717             'Test2::Util::HashBase' => '1.302138',
15718             'Test2::Util::Trace' => '1.302138',
15719             'Test::Builder' => '1.302138',
15720             'Test::Builder::Formatter'=> '1.302138',
15721             'Test::Builder::Module' => '1.302138',
15722             'Test::Builder::Tester' => '1.302138',
15723             'Test::Builder::Tester::Color'=> '1.302138',
15724             'Test::Builder::TodoDiag'=> '1.302138',
15725             'Test::More' => '1.302138',
15726             'Test::Simple' => '1.302138',
15727             'Test::Tester' => '1.302138',
15728             'Test::Tester::Capture' => '1.302138',
15729             'Test::Tester::CaptureRunner'=> '1.302138',
15730             'Test::Tester::Delegate'=> '1.302138',
15731             'Test::use::ok' => '1.302138',
15732             'Thread::Queue' => '3.13',
15733             'Time::Local' => '1.28',
15734             'bigint' => '0.50',
15735             'bignum' => '0.50',
15736             'bigrat' => '0.50',
15737             'experimental' => '0.020',
15738             'ok' => '1.302138',
15739             'parent' => '0.237',
15740             'perlfaq' => '5.20180605',
15741             'version' => '0.9924',
15742             'version::regex' => '0.9924',
15743             },
15744             removed => {
15745             }
15746             },
15747             5.029002 => {
15748             delta_from => 5.029001,
15749             changed => {
15750             'B::Op_private' => '5.029002',
15751             'Config' => '5.029002',
15752             'Config::Extensions' => '0.03',
15753             'Cwd' => '3.75',
15754             'Data::Dumper' => '2.171',
15755             'Filter::Util::Call' => '1.59',
15756             'HTTP::Tiny' => '0.076',
15757             'Module::CoreList' => '5.20180820',
15758             'Module::CoreList::Utils'=> '5.20180820',
15759             'PerlIO::scalar' => '0.30',
15760             'Storable' => '3.12',
15761             'Test2' => '1.302140',
15762             'Test2::API' => '1.302140',
15763             'Test2::API::Breakage' => '1.302140',
15764             'Test2::API::Context' => '1.302140',
15765             'Test2::API::Instance' => '1.302140',
15766             'Test2::API::Stack' => '1.302140',
15767             'Test2::Event' => '1.302140',
15768             'Test2::Event::Bail' => '1.302140',
15769             'Test2::Event::Diag' => '1.302140',
15770             'Test2::Event::Encoding'=> '1.302140',
15771             'Test2::Event::Exception'=> '1.302140',
15772             'Test2::Event::Fail' => '1.302140',
15773             'Test2::Event::Generic' => '1.302140',
15774             'Test2::Event::Note' => '1.302140',
15775             'Test2::Event::Ok' => '1.302140',
15776             'Test2::Event::Pass' => '1.302140',
15777             'Test2::Event::Plan' => '1.302140',
15778             'Test2::Event::Skip' => '1.302140',
15779             'Test2::Event::Subtest' => '1.302140',
15780             'Test2::Event::TAP::Version'=> '1.302140',
15781             'Test2::Event::V2' => '1.302140',
15782             'Test2::Event::Waiting' => '1.302140',
15783             'Test2::EventFacet' => '1.302140',
15784             'Test2::EventFacet::About'=> '1.302140',
15785             'Test2::EventFacet::Amnesty'=> '1.302140',
15786             'Test2::EventFacet::Assert'=> '1.302140',
15787             'Test2::EventFacet::Control'=> '1.302140',
15788             'Test2::EventFacet::Error'=> '1.302140',
15789             'Test2::EventFacet::Hub'=> '1.302140',
15790             'Test2::EventFacet::Info'=> '1.302140',
15791             'Test2::EventFacet::Meta'=> '1.302140',
15792             'Test2::EventFacet::Parent'=> '1.302140',
15793             'Test2::EventFacet::Plan'=> '1.302140',
15794             'Test2::EventFacet::Render'=> '1.302140',
15795             'Test2::EventFacet::Trace'=> '1.302140',
15796             'Test2::Formatter' => '1.302140',
15797             'Test2::Formatter::TAP' => '1.302140',
15798             'Test2::Hub' => '1.302140',
15799             'Test2::Hub::Interceptor'=> '1.302140',
15800             'Test2::Hub::Interceptor::Terminator'=> '1.302140',
15801             'Test2::Hub::Subtest' => '1.302140',
15802             'Test2::IPC' => '1.302140',
15803             'Test2::IPC::Driver' => '1.302140',
15804             'Test2::IPC::Driver::Files'=> '1.302140',
15805             'Test2::Tools::Tiny' => '1.302140',
15806             'Test2::Util' => '1.302140',
15807             'Test2::Util::ExternalMeta'=> '1.302140',
15808             'Test2::Util::Facets2Legacy'=> '1.302140',
15809             'Test2::Util::HashBase' => '1.302140',
15810             'Test2::Util::Trace' => '1.302140',
15811             'Test::Builder' => '1.302140',
15812             'Test::Builder::Formatter'=> '1.302140',
15813             'Test::Builder::Module' => '1.302140',
15814             'Test::Builder::Tester' => '1.302140',
15815             'Test::Builder::Tester::Color'=> '1.302140',
15816             'Test::Builder::TodoDiag'=> '1.302140',
15817             'Test::More' => '1.302140',
15818             'Test::Simple' => '1.302140',
15819             'Test::Tester' => '1.302140',
15820             'Test::Tester::Capture' => '1.302140',
15821             'Test::Tester::CaptureRunner'=> '1.302140',
15822             'Test::Tester::Delegate'=> '1.302140',
15823             'Test::use::ok' => '1.302140',
15824             'Time::HiRes' => '1.9760',
15825             'Time::Piece' => '1.33',
15826             'Time::Seconds' => '1.33',
15827             'Unicode' => '11.0.0',
15828             'ok' => '1.302140',
15829             'warnings' => '1.43',
15830             },
15831             removed => {
15832             }
15833             },
15834             5.029003 => {
15835             delta_from => 5.029002,
15836             changed => {
15837             'Archive::Tar' => '2.32',
15838             'Archive::Tar::Constant'=> '2.32',
15839             'Archive::Tar::File' => '2.32',
15840             'B::Op_private' => '5.029003',
15841             'Config' => '5.029003',
15842             'Data::Dumper' => '2.172',
15843             'Devel::PPPort' => '3.43',
15844             'File::Path' => '2.16',
15845             'File::Spec' => '3.75',
15846             'File::Spec::AmigaOS' => '3.75',
15847             'File::Spec::Cygwin' => '3.75',
15848             'File::Spec::Epoc' => '3.75',
15849             'File::Spec::Functions' => '3.75',
15850             'File::Spec::Mac' => '3.75',
15851             'File::Spec::OS2' => '3.75',
15852             'File::Spec::Unix' => '3.75',
15853             'File::Spec::VMS' => '3.75',
15854             'File::Spec::Win32' => '3.75',
15855             'Module::CoreList' => '5.20180920',
15856             'Module::CoreList::Utils'=> '5.20180920',
15857             'POSIX' => '1.85',
15858             'Storable' => '3.13',
15859             'User::grent' => '1.03',
15860             'perlfaq' => '5.20180915',
15861             },
15862             removed => {
15863             'Locale::Codes' => 1,
15864             'Locale::Codes::Constants'=> 1,
15865             'Locale::Codes::Country'=> 1,
15866             'Locale::Codes::Country_Codes'=> 1,
15867             'Locale::Codes::Country_Retired'=> 1,
15868             'Locale::Codes::Currency'=> 1,
15869             'Locale::Codes::Currency_Codes'=> 1,
15870             'Locale::Codes::Currency_Retired'=> 1,
15871             'Locale::Codes::LangExt'=> 1,
15872             'Locale::Codes::LangExt_Codes'=> 1,
15873             'Locale::Codes::LangExt_Retired'=> 1,
15874             'Locale::Codes::LangFam'=> 1,
15875             'Locale::Codes::LangFam_Codes'=> 1,
15876             'Locale::Codes::LangFam_Retired'=> 1,
15877             'Locale::Codes::LangVar'=> 1,
15878             'Locale::Codes::LangVar_Codes'=> 1,
15879             'Locale::Codes::LangVar_Retired'=> 1,
15880             'Locale::Codes::Language'=> 1,
15881             'Locale::Codes::Language_Codes'=> 1,
15882             'Locale::Codes::Language_Retired'=> 1,
15883             'Locale::Codes::Script' => 1,
15884             'Locale::Codes::Script_Codes'=> 1,
15885             'Locale::Codes::Script_Retired'=> 1,
15886             'Locale::Country' => 1,
15887             'Locale::Currency' => 1,
15888             'Locale::Language' => 1,
15889             'Locale::Script' => 1,
15890             }
15891             },
15892             5.029004 => {
15893             delta_from => 5.029003,
15894             changed => {
15895             'App::Cpan' => '1.671',
15896             'B' => '1.75',
15897             'B::Concise' => '1.004',
15898             'B::Deparse' => '1.49',
15899             'B::Op_private' => '5.029004',
15900             'B::Terse' => '1.09',
15901             'CPAN' => '2.21',
15902             'CPAN::Distribution' => '2.21',
15903             'CPAN::Mirrors' => '2.21',
15904             'CPAN::Plugin' => '0.97',
15905             'CPAN::Shell' => '5.5008',
15906             'Config' => '5.029004',
15907             'Devel::Peek' => '1.28',
15908             'File::Copy' => '2.34',
15909             'File::Glob' => '1.32',
15910             'Math::BigFloat::Trace' => '0.51',
15911             'Math::BigInt::Trace' => '0.51',
15912             'Module::CoreList' => '5.20181020',
15913             'Module::CoreList::Utils'=> '5.20181020',
15914             'Unicode::UCD' => '0.72',
15915             'bigint' => '0.51',
15916             'bignum' => '0.51',
15917             'bigrat' => '0.51',
15918             'bytes' => '1.07',
15919             'feature' => '1.54',
15920             'sigtrap' => '1.09',
15921             'vars' => '1.05',
15922             },
15923             removed => {
15924             'B::Debug' => 1,
15925             'arybase' => 1,
15926             }
15927             },
15928             5.029005 => {
15929             delta_from => 5.029004,
15930             changed => {
15931             'B::Op_private' => '5.029005',
15932             'Config' => '5.029005',
15933             'Cwd' => '3.76',
15934             'Data::Dumper' => '2.173',
15935             'Errno' => '1.30',
15936             'File::Spec' => '3.76',
15937             'File::Spec::AmigaOS' => '3.76',
15938             'File::Spec::Cygwin' => '3.76',
15939             'File::Spec::Epoc' => '3.76',
15940             'File::Spec::Functions' => '3.76',
15941             'File::Spec::Mac' => '3.76',
15942             'File::Spec::OS2' => '3.76',
15943             'File::Spec::Unix' => '3.76',
15944             'File::Spec::VMS' => '3.76',
15945             'File::Spec::Win32' => '3.76',
15946             'GDBM_File' => '1.18',
15947             'Module::CoreList' => '5.20181120',
15948             'Module::CoreList::Utils'=> '5.20181120',
15949             'NDBM_File' => '1.15',
15950             'ODBM_File' => '1.16',
15951             'SDBM_File' => '1.15',
15952             're' => '0.37',
15953             },
15954             removed => {
15955             }
15956             },
15957             5.026003 => {
15958             delta_from => 5.026002,
15959             changed => {
15960             'Archive::Tar' => '2.24_01',
15961             'B::Op_private' => '5.026003',
15962             'Config' => '5.026003',
15963             'Module::CoreList' => '5.20181129_26',
15964             'Module::CoreList::TieHashDelta'=> '5.20181129_26',
15965             'Module::CoreList::Utils'=> '5.20181129_26',
15966             },
15967             removed => {
15968             }
15969             },
15970             5.028001 => {
15971             delta_from => 5.028,
15972             changed => {
15973             'B::Op_private' => '5.028001',
15974             'Config' => '5.028001',
15975             'Module::CoreList' => '5.20181129_28',
15976             'Module::CoreList::Utils'=> '5.20181129_28',
15977             },
15978             removed => {
15979             }
15980             },
15981             5.029006 => {
15982             delta_from => 5.029005,
15983             changed => {
15984             'B::Op_private' => '5.029006',
15985             'Config' => '5.029006',
15986             'Config::Perl::V' => '0.32',
15987             'ExtUtils::ParseXS' => '3.40',
15988             'ExtUtils::ParseXS::Constants'=> '3.40',
15989             'ExtUtils::ParseXS::CountLines'=> '3.40',
15990             'ExtUtils::ParseXS::Eval'=> '3.40',
15991             'ExtUtils::ParseXS::Utilities'=> '3.40',
15992             'File::Find' => '1.35',
15993             'Module::CoreList' => '5.20181218',
15994             'Module::CoreList::Utils'=> '5.20181218',
15995             'POSIX' => '1.86',
15996             'Storable' => '3.14',
15997             'Test2' => '1.302141',
15998             'Test2::API' => '1.302141',
15999             'Test2::API::Breakage' => '1.302141',
16000             'Test2::API::Context' => '1.302141',
16001             'Test2::API::Instance' => '1.302141',
16002             'Test2::API::Stack' => '1.302141',
16003             'Test2::Event' => '1.302141',
16004             'Test2::Event::Bail' => '1.302141',
16005             'Test2::Event::Diag' => '1.302141',
16006             'Test2::Event::Encoding'=> '1.302141',
16007             'Test2::Event::Exception'=> '1.302141',
16008             'Test2::Event::Fail' => '1.302141',
16009             'Test2::Event::Generic' => '1.302141',
16010             'Test2::Event::Note' => '1.302141',
16011             'Test2::Event::Ok' => '1.302141',
16012             'Test2::Event::Pass' => '1.302141',
16013             'Test2::Event::Plan' => '1.302141',
16014             'Test2::Event::Skip' => '1.302141',
16015             'Test2::Event::Subtest' => '1.302141',
16016             'Test2::Event::TAP::Version'=> '1.302141',
16017             'Test2::Event::V2' => '1.302141',
16018             'Test2::Event::Waiting' => '1.302141',
16019             'Test2::EventFacet' => '1.302141',
16020             'Test2::EventFacet::About'=> '1.302141',
16021             'Test2::EventFacet::Amnesty'=> '1.302141',
16022             'Test2::EventFacet::Assert'=> '1.302141',
16023             'Test2::EventFacet::Control'=> '1.302141',
16024             'Test2::EventFacet::Error'=> '1.302141',
16025             'Test2::EventFacet::Hub'=> '1.302141',
16026             'Test2::EventFacet::Info'=> '1.302141',
16027             'Test2::EventFacet::Meta'=> '1.302141',
16028             'Test2::EventFacet::Parent'=> '1.302141',
16029             'Test2::EventFacet::Plan'=> '1.302141',
16030             'Test2::EventFacet::Render'=> '1.302141',
16031             'Test2::EventFacet::Trace'=> '1.302141',
16032             'Test2::Formatter' => '1.302141',
16033             'Test2::Formatter::TAP' => '1.302141',
16034             'Test2::Hub' => '1.302141',
16035             'Test2::Hub::Interceptor'=> '1.302141',
16036             'Test2::Hub::Interceptor::Terminator'=> '1.302141',
16037             'Test2::Hub::Subtest' => '1.302141',
16038             'Test2::IPC' => '1.302141',
16039             'Test2::IPC::Driver' => '1.302141',
16040             'Test2::IPC::Driver::Files'=> '1.302141',
16041             'Test2::Tools::Tiny' => '1.302141',
16042             'Test2::Util' => '1.302141',
16043             'Test2::Util::ExternalMeta'=> '1.302141',
16044             'Test2::Util::Facets2Legacy'=> '1.302141',
16045             'Test2::Util::HashBase' => '1.302141',
16046             'Test2::Util::Trace' => '1.302141',
16047             'Test::Builder' => '1.302141',
16048             'Test::Builder::Formatter'=> '1.302141',
16049             'Test::Builder::Module' => '1.302141',
16050             'Test::Builder::Tester' => '1.302141',
16051             'Test::Builder::Tester::Color'=> '1.302141',
16052             'Test::Builder::TodoDiag'=> '1.302141',
16053             'Test::More' => '1.302141',
16054             'Test::Simple' => '1.302141',
16055             'Test::Tester' => '1.302141',
16056             'Test::Tester::Capture' => '1.302141',
16057             'Test::Tester::CaptureRunner'=> '1.302141',
16058             'Test::Tester::Delegate'=> '1.302141',
16059             'Test::use::ok' => '1.302141',
16060             'ok' => '1.302141',
16061             'threads::shared' => '1.59',
16062             },
16063             removed => {
16064             'Storable::Limit' => 1,
16065             }
16066             },
16067             5.029007 => {
16068             delta_from => 5.029006,
16069             changed => {
16070             'App::Cpan' => '1.672',
16071             'B::Op_private' => '5.029007',
16072             'CPAN' => '2.22',
16073             'CPAN::Distribution' => '2.22',
16074             'CPAN::Plugin::Specfile'=> '0.02',
16075             'Compress::Raw::Bzip2' => '2.084',
16076             'Compress::Raw::Zlib' => '2.084',
16077             'Compress::Zlib' => '2.084',
16078             'Config' => '5.029007',
16079             'Cwd' => '3.77',
16080             'DB_File' => '1.843',
16081             'File::Find' => '1.36',
16082             'File::Spec' => '3.77',
16083             'File::Spec::AmigaOS' => '3.77',
16084             'File::Spec::Cygwin' => '3.77',
16085             'File::Spec::Epoc' => '3.77',
16086             'File::Spec::Functions' => '3.77',
16087             'File::Spec::Mac' => '3.77',
16088             'File::Spec::OS2' => '3.77',
16089             'File::Spec::Unix' => '3.77',
16090             'File::Spec::VMS' => '3.77',
16091             'File::Spec::Win32' => '3.77',
16092             'File::Temp' => '0.2309',
16093             'IO::Compress::Adapter::Bzip2'=> '2.084',
16094             'IO::Compress::Adapter::Deflate'=> '2.084',
16095             'IO::Compress::Adapter::Identity'=> '2.084',
16096             'IO::Compress::Base' => '2.084',
16097             'IO::Compress::Base::Common'=> '2.084',
16098             'IO::Compress::Bzip2' => '2.084',
16099             'IO::Compress::Deflate' => '2.084',
16100             'IO::Compress::Gzip' => '2.084',
16101             'IO::Compress::Gzip::Constants'=> '2.084',
16102             'IO::Compress::RawDeflate'=> '2.084',
16103             'IO::Compress::Zip' => '2.084',
16104             'IO::Compress::Zip::Constants'=> '2.084',
16105             'IO::Compress::Zlib::Constants'=> '2.084',
16106             'IO::Compress::Zlib::Extra'=> '2.084',
16107             'IO::Uncompress::Adapter::Bunzip2'=> '2.084',
16108             'IO::Uncompress::Adapter::Identity'=> '2.084',
16109             'IO::Uncompress::Adapter::Inflate'=> '2.084',
16110             'IO::Uncompress::AnyInflate'=> '2.084',
16111             'IO::Uncompress::AnyUncompress'=> '2.084',
16112             'IO::Uncompress::Base' => '2.084',
16113             'IO::Uncompress::Bunzip2'=> '2.084',
16114             'IO::Uncompress::Gunzip'=> '2.084',
16115             'IO::Uncompress::Inflate'=> '2.084',
16116             'IO::Uncompress::RawInflate'=> '2.084',
16117             'IO::Uncompress::Unzip' => '2.084',
16118             'Math::BigFloat' => '1.999816',
16119             'Math::BigInt' => '1.999816',
16120             'Math::BigInt::Calc' => '1.999816',
16121             'Math::BigInt::FastCalc'=> '0.5008',
16122             'Math::BigInt::Lib' => '1.999816',
16123             'Module::CoreList' => '5.20190120',
16124             'Module::CoreList::Utils'=> '5.20190120',
16125             'Test2' => '1.302160',
16126             'Test2::API' => '1.302160',
16127             'Test2::API::Breakage' => '1.302160',
16128             'Test2::API::Context' => '1.302160',
16129             'Test2::API::Instance' => '1.302160',
16130             'Test2::API::Stack' => '1.302160',
16131             'Test2::Event' => '1.302160',
16132             'Test2::Event::Bail' => '1.302160',
16133             'Test2::Event::Diag' => '1.302160',
16134             'Test2::Event::Encoding'=> '1.302160',
16135             'Test2::Event::Exception'=> '1.302160',
16136             'Test2::Event::Fail' => '1.302160',
16137             'Test2::Event::Generic' => '1.302160',
16138             'Test2::Event::Note' => '1.302160',
16139             'Test2::Event::Ok' => '1.302160',
16140             'Test2::Event::Pass' => '1.302160',
16141             'Test2::Event::Plan' => '1.302160',
16142             'Test2::Event::Skip' => '1.302160',
16143             'Test2::Event::Subtest' => '1.302160',
16144             'Test2::Event::TAP::Version'=> '1.302160',
16145             'Test2::Event::V2' => '1.302160',
16146             'Test2::Event::Waiting' => '1.302160',
16147             'Test2::EventFacet' => '1.302160',
16148             'Test2::EventFacet::About'=> '1.302160',
16149             'Test2::EventFacet::Amnesty'=> '1.302160',
16150             'Test2::EventFacet::Assert'=> '1.302160',
16151             'Test2::EventFacet::Control'=> '1.302160',
16152             'Test2::EventFacet::Error'=> '1.302160',
16153             'Test2::EventFacet::Hub'=> '1.302160',
16154             'Test2::EventFacet::Info'=> '1.302160',
16155             'Test2::EventFacet::Info::Table'=> undef,
16156             'Test2::EventFacet::Meta'=> '1.302160',
16157             'Test2::EventFacet::Parent'=> '1.302160',
16158             'Test2::EventFacet::Plan'=> '1.302160',
16159             'Test2::EventFacet::Render'=> '1.302160',
16160             'Test2::EventFacet::Trace'=> '1.302160',
16161             'Test2::Formatter' => '1.302160',
16162             'Test2::Formatter::TAP' => '1.302160',
16163             'Test2::Hub' => '1.302160',
16164             'Test2::Hub::Interceptor'=> '1.302160',
16165             'Test2::Hub::Interceptor::Terminator'=> '1.302160',
16166             'Test2::Hub::Subtest' => '1.302160',
16167             'Test2::IPC' => '1.302160',
16168             'Test2::IPC::Driver' => '1.302160',
16169             'Test2::IPC::Driver::Files'=> '1.302160',
16170             'Test2::Tools::Tiny' => '1.302160',
16171             'Test2::Util' => '1.302160',
16172             'Test2::Util::ExternalMeta'=> '1.302160',
16173             'Test2::Util::Facets2Legacy'=> '1.302160',
16174             'Test2::Util::HashBase' => '1.302160',
16175             'Test2::Util::Trace' => '1.302160',
16176             'Test::Builder' => '1.302160',
16177             'Test::Builder::Formatter'=> '1.302160',
16178             'Test::Builder::Module' => '1.302160',
16179             'Test::Builder::Tester' => '1.302160',
16180             'Test::Builder::Tester::Color'=> '1.302160',
16181             'Test::Builder::TodoDiag'=> '1.302160',
16182             'Test::More' => '1.302160',
16183             'Test::Simple' => '1.302160',
16184             'Test::Tester' => '1.302160',
16185             'Test::Tester::Capture' => '1.302160',
16186             'Test::Tester::CaptureRunner'=> '1.302160',
16187             'Test::Tester::Delegate'=> '1.302160',
16188             'Test::use::ok' => '1.302160',
16189             'Unicode::Collate' => '1.27',
16190             'Unicode::Collate::CJK::Big5'=> '1.27',
16191             'Unicode::Collate::CJK::GB2312'=> '1.27',
16192             'Unicode::Collate::CJK::JISX0208'=> '1.27',
16193             'Unicode::Collate::CJK::Korean'=> '1.27',
16194             'Unicode::Collate::CJK::Pinyin'=> '1.27',
16195             'Unicode::Collate::CJK::Stroke'=> '1.27',
16196             'Unicode::Collate::CJK::Zhuyin'=> '1.27',
16197             'Unicode::Collate::Locale'=> '1.27',
16198             'lib' => '0.65',
16199             'ok' => '1.302160',
16200             },
16201             removed => {
16202             'Math::BigInt::CalcEmu' => 1,
16203             }
16204             },
16205             5.029008 => {
16206             delta_from => 5.029007,
16207             changed => {
16208             'B' => '1.76',
16209             'B::Op_private' => '5.029008',
16210             'Config' => '5.029008',
16211             'Devel::PPPort' => '3.44',
16212             'Encode' => '3.00',
16213             'Encode::Unicode' => '2.18',
16214             'ExtUtils::Miniperl' => '1.09',
16215             'IO' => '1.40',
16216             'IO::Dir' => '1.40',
16217             'IO::File' => '1.40',
16218             'IO::Handle' => '1.40',
16219             'IO::Pipe' => '1.40',
16220             'IO::Poll' => '1.40',
16221             'IO::Seekable' => '1.40',
16222             'IO::Select' => '1.40',
16223             'IO::Socket' => '1.40',
16224             'IO::Socket::INET' => '1.40',
16225             'IO::Socket::UNIX' => '1.40',
16226             'JSON::PP' => '4.00',
16227             'JSON::PP::Boolean' => '4.00',
16228             'Module::CoreList' => '5.20190220',
16229             'Module::CoreList::Utils'=> '5.20190220',
16230             'Module::Load' => '0.34',
16231             'Net::Ping' => '2.71',
16232             'POSIX' => '1.87',
16233             'Test2' => '1.302162',
16234             'Test2::API' => '1.302162',
16235             'Test2::API::Breakage' => '1.302162',
16236             'Test2::API::Context' => '1.302162',
16237             'Test2::API::Instance' => '1.302162',
16238             'Test2::API::Stack' => '1.302162',
16239             'Test2::Event' => '1.302162',
16240             'Test2::Event::Bail' => '1.302162',
16241             'Test2::Event::Diag' => '1.302162',
16242             'Test2::Event::Encoding'=> '1.302162',
16243             'Test2::Event::Exception'=> '1.302162',
16244             'Test2::Event::Fail' => '1.302162',
16245             'Test2::Event::Generic' => '1.302162',
16246             'Test2::Event::Note' => '1.302162',
16247             'Test2::Event::Ok' => '1.302162',
16248             'Test2::Event::Pass' => '1.302162',
16249             'Test2::Event::Plan' => '1.302162',
16250             'Test2::Event::Skip' => '1.302162',
16251             'Test2::Event::Subtest' => '1.302162',
16252             'Test2::Event::TAP::Version'=> '1.302162',
16253             'Test2::Event::V2' => '1.302162',
16254             'Test2::Event::Waiting' => '1.302162',
16255             'Test2::EventFacet' => '1.302162',
16256             'Test2::EventFacet::About'=> '1.302162',
16257             'Test2::EventFacet::Amnesty'=> '1.302162',
16258             'Test2::EventFacet::Assert'=> '1.302162',
16259             'Test2::EventFacet::Control'=> '1.302162',
16260             'Test2::EventFacet::Error'=> '1.302162',
16261             'Test2::EventFacet::Hub'=> '1.302162',
16262             'Test2::EventFacet::Info'=> '1.302162',
16263             'Test2::EventFacet::Meta'=> '1.302162',
16264             'Test2::EventFacet::Parent'=> '1.302162',
16265             'Test2::EventFacet::Plan'=> '1.302162',
16266             'Test2::EventFacet::Render'=> '1.302162',
16267             'Test2::EventFacet::Trace'=> '1.302162',
16268             'Test2::Formatter' => '1.302162',
16269             'Test2::Formatter::TAP' => '1.302162',
16270             'Test2::Hub' => '1.302162',
16271             'Test2::Hub::Interceptor'=> '1.302162',
16272             'Test2::Hub::Interceptor::Terminator'=> '1.302162',
16273             'Test2::Hub::Subtest' => '1.302162',
16274             'Test2::IPC' => '1.302162',
16275             'Test2::IPC::Driver' => '1.302162',
16276             'Test2::IPC::Driver::Files'=> '1.302162',
16277             'Test2::Tools::Tiny' => '1.302162',
16278             'Test2::Util' => '1.302162',
16279             'Test2::Util::ExternalMeta'=> '1.302162',
16280             'Test2::Util::Facets2Legacy'=> '1.302162',
16281             'Test2::Util::HashBase' => '1.302162',
16282             'Test2::Util::Trace' => '1.302162',
16283             'Test::Builder' => '1.302162',
16284             'Test::Builder::Formatter'=> '1.302162',
16285             'Test::Builder::Module' => '1.302162',
16286             'Test::Builder::Tester' => '1.302162',
16287             'Test::Builder::Tester::Color'=> '1.302162',
16288             'Test::Builder::TodoDiag'=> '1.302162',
16289             'Test::More' => '1.302162',
16290             'Test::Simple' => '1.302162',
16291             'Test::Tester' => '1.302162',
16292             'Test::Tester::Capture' => '1.302162',
16293             'Test::Tester::CaptureRunner'=> '1.302162',
16294             'Test::Tester::Delegate'=> '1.302162',
16295             'Test::use::ok' => '1.302162',
16296             'XS::APItest' => '1.00',
16297             'deprecate' => '0.04',
16298             'ok' => '1.302162',
16299             'perlfaq' => '5.20190126',
16300             },
16301             removed => {
16302             }
16303             },
16304             5.029009 => {
16305             delta_from => 5.029008,
16306             changed => {
16307             'B::Op_private' => '5.029009',
16308             'Config' => '5.029009',
16309             'Devel::PPPort' => '3.45',
16310             'Encode' => '3.01',
16311             'ExtUtils::Manifest' => '1.72',
16312             'JSON::PP' => '4.02',
16313             'JSON::PP::Boolean' => '4.02',
16314             'Module::CoreList' => '5.20190320',
16315             'Module::CoreList::Utils'=> '5.20190320',
16316             'PerlIO::encoding' => '0.27',
16317             'Unicode' => '12.0.0',
16318             'threads::shared' => '1.60',
16319             'utf8' => '1.22',
16320             'warnings' => '1.44',
16321             },
16322             removed => {
16323             }
16324             },
16325             5.028002 => {
16326             delta_from => 5.028001,
16327             changed => {
16328             'B::Op_private' => '5.028002',
16329             'Config' => '5.028002',
16330             'Module::CoreList' => '5.20190419',
16331             'Module::CoreList::Utils'=> '5.20190419',
16332             'PerlIO::scalar' => '0.30',
16333             'Storable' => '3.08_01',
16334             },
16335             removed => {
16336             }
16337             },
16338             5.029010 => {
16339             delta_from => 5.029009,
16340             changed => {
16341             'B::Op_private' => '5.029010',
16342             'Config' => '5.02901',
16343             'Cwd' => '3.78',
16344             'Data::Dumper' => '2.174',
16345             'ExtUtils::CBuilder' => '0.280231',
16346             'ExtUtils::CBuilder::Base'=> '0.280231',
16347             'ExtUtils::CBuilder::Platform::Unix'=> '0.280231',
16348             'ExtUtils::CBuilder::Platform::VMS'=> '0.280231',
16349             'ExtUtils::CBuilder::Platform::Windows'=> '0.280231',
16350             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280231',
16351             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280231',
16352             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280231',
16353             'ExtUtils::CBuilder::Platform::aix'=> '0.280231',
16354             'ExtUtils::CBuilder::Platform::android'=> '0.280231',
16355             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280231',
16356             'ExtUtils::CBuilder::Platform::darwin'=> '0.280231',
16357             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280231',
16358             'ExtUtils::CBuilder::Platform::os2'=> '0.280231',
16359             'File::Spec' => '3.78',
16360             'File::Spec::AmigaOS' => '3.78',
16361             'File::Spec::Cygwin' => '3.78',
16362             'File::Spec::Epoc' => '3.78',
16363             'File::Spec::Functions' => '3.78',
16364             'File::Spec::Mac' => '3.78',
16365             'File::Spec::OS2' => '3.78',
16366             'File::Spec::Unix' => '3.78',
16367             'File::Spec::VMS' => '3.78',
16368             'File::Spec::Win32' => '3.78',
16369             'I18N::Langinfo' => '0.18',
16370             'Module::CoreList' => '5.20190420',
16371             'Module::CoreList::Utils'=> '5.20190420',
16372             'Module::Metadata' => '1.000036',
16373             'POSIX' => '1.88',
16374             'Storable' => '3.15',
16375             'Unicode' => '12.1.0',
16376             },
16377             removed => {
16378             }
16379             },
16380             5.030000 => {
16381             delta_from => 5.02901,
16382             changed => {
16383             'B::Op_private' => '5.030000',
16384             'Config' => '5.03',
16385             'Devel::PPPort' => '3.52',
16386             'Module::CoreList' => '5.20190522',
16387             'Module::CoreList::Utils'=> '5.20190522',
16388             'XS::Typemap' => '0.17',
16389             },
16390             removed => {
16391             }
16392             },
16393             5.031000 => {
16394             delta_from => 5.03,
16395             changed => {
16396             'B::Op_private' => '5.031000',
16397             'Config' => '5.031',
16398             'Module::CoreList' => '5.20190524',
16399             'Module::CoreList::Utils'=> '5.20190524',
16400             'Pod::Simple' => '3.36',
16401             'Pod::Simple::BlackBox' => '3.36',
16402             'Pod::Simple::Checker' => '3.36',
16403             'Pod::Simple::Debug' => '3.36',
16404             'Pod::Simple::DumpAsText'=> '3.36',
16405             'Pod::Simple::DumpAsXML'=> '3.36',
16406             'Pod::Simple::HTML' => '3.36',
16407             'Pod::Simple::HTMLBatch'=> '3.36',
16408             'Pod::Simple::JustPod' => undef,
16409             'Pod::Simple::LinkSection'=> '3.36',
16410             'Pod::Simple::Methody' => '3.36',
16411             'Pod::Simple::Progress' => '3.36',
16412             'Pod::Simple::PullParser'=> '3.36',
16413             'Pod::Simple::PullParserEndToken'=> '3.36',
16414             'Pod::Simple::PullParserStartToken'=> '3.36',
16415             'Pod::Simple::PullParserTextToken'=> '3.36',
16416             'Pod::Simple::PullParserToken'=> '3.36',
16417             'Pod::Simple::RTF' => '3.36',
16418             'Pod::Simple::Search' => '3.36',
16419             'Pod::Simple::SimpleTree'=> '3.36',
16420             'Pod::Simple::Text' => '3.36',
16421             'Pod::Simple::TextContent'=> '3.36',
16422             'Pod::Simple::TiedOutFH'=> '3.36',
16423             'Pod::Simple::Transcode'=> '3.36',
16424             'Pod::Simple::TranscodeDumb'=> '3.36',
16425             'Pod::Simple::TranscodeSmart'=> '3.36',
16426             'Pod::Simple::XHTML' => '3.36',
16427             'Pod::Simple::XMLOutStream'=> '3.36',
16428             'Socket' => '2.029',
16429             'feature' => '1.55',
16430             },
16431             removed => {
16432             }
16433             },
16434             5.031001 => {
16435             delta_from => 5.031000,
16436             changed => {
16437             'App::Cpan' => '1.675',
16438             'B::Op_private' => '5.031001',
16439             'CPAN' => '2.27',
16440             'CPAN::Bundle' => '5.5005',
16441             'CPAN::Distribution' => '2.27',
16442             'CPAN::FTP' => '5.5012',
16443             'CPAN::FirstTime' => '5.5314',
16444             'CPAN::HandleConfig' => '5.5011',
16445             'CPAN::Mirrors' => '2.27',
16446             'CPAN::Queue' => '5.5003',
16447             'CPAN::Shell' => '5.5009',
16448             'CPAN::Tarzip' => '5.5013',
16449             'Class::Struct' => '0.66',
16450             'Compress::Raw::Bzip2' => '2.086',
16451             'Compress::Raw::Zlib' => '2.086',
16452             'Compress::Zlib' => '2.086',
16453             'Config' => '5.031001',
16454             'DB_File' => '1.852',
16455             'Devel::PPPort' => '3.53',
16456             'ExtUtils::CBuilder' => '0.280232',
16457             'ExtUtils::Command' => '7.36',
16458             'ExtUtils::Command::MM' => '7.36',
16459             'ExtUtils::Liblist' => '7.36',
16460             'ExtUtils::Liblist::Kid'=> '7.36',
16461             'ExtUtils::MM' => '7.36',
16462             'ExtUtils::MM_AIX' => '7.36',
16463             'ExtUtils::MM_Any' => '7.36',
16464             'ExtUtils::MM_BeOS' => '7.36',
16465             'ExtUtils::MM_Cygwin' => '7.36',
16466             'ExtUtils::MM_DOS' => '7.36',
16467             'ExtUtils::MM_Darwin' => '7.36',
16468             'ExtUtils::MM_MacOS' => '7.36',
16469             'ExtUtils::MM_NW5' => '7.36',
16470             'ExtUtils::MM_OS2' => '7.36',
16471             'ExtUtils::MM_QNX' => '7.36',
16472             'ExtUtils::MM_UWIN' => '7.36',
16473             'ExtUtils::MM_Unix' => '7.36',
16474             'ExtUtils::MM_VMS' => '7.36',
16475             'ExtUtils::MM_VOS' => '7.36',
16476             'ExtUtils::MM_Win32' => '7.36',
16477             'ExtUtils::MM_Win95' => '7.36',
16478             'ExtUtils::MY' => '7.36',
16479             'ExtUtils::MakeMaker' => '7.36',
16480             'ExtUtils::MakeMaker::Config'=> '7.36',
16481             'ExtUtils::MakeMaker::Locale'=> '7.36',
16482             'ExtUtils::MakeMaker::version'=> '7.36',
16483             'ExtUtils::MakeMaker::version::regex'=> '7.36',
16484             'ExtUtils::Mkbootstrap' => '7.36',
16485             'ExtUtils::Mksymlists' => '7.36',
16486             'ExtUtils::testlib' => '7.36',
16487             'File::Spec::Win32' => '3.79',
16488             'I18N::LangTags' => '0.44',
16489             'IO' => '1.41',
16490             'IO::Compress::Adapter::Bzip2'=> '2.086',
16491             'IO::Compress::Adapter::Deflate'=> '2.086',
16492             'IO::Compress::Adapter::Identity'=> '2.086',
16493             'IO::Compress::Base' => '2.086',
16494             'IO::Compress::Base::Common'=> '2.086',
16495             'IO::Compress::Bzip2' => '2.086',
16496             'IO::Compress::Deflate' => '2.086',
16497             'IO::Compress::Gzip' => '2.086',
16498             'IO::Compress::Gzip::Constants'=> '2.086',
16499             'IO::Compress::RawDeflate'=> '2.086',
16500             'IO::Compress::Zip' => '2.086',
16501             'IO::Compress::Zip::Constants'=> '2.086',
16502             'IO::Compress::Zlib::Constants'=> '2.086',
16503             'IO::Compress::Zlib::Extra'=> '2.086',
16504             'IO::Dir' => '1.41',
16505             'IO::File' => '1.41',
16506             'IO::Handle' => '1.41',
16507             'IO::Pipe' => '1.41',
16508             'IO::Poll' => '1.41',
16509             'IO::Seekable' => '1.41',
16510             'IO::Select' => '1.41',
16511             'IO::Socket' => '1.41',
16512             'IO::Socket::INET' => '1.41',
16513             'IO::Socket::UNIX' => '1.41',
16514             'IO::Uncompress::Adapter::Bunzip2'=> '2.086',
16515             'IO::Uncompress::Adapter::Identity'=> '2.086',
16516             'IO::Uncompress::Adapter::Inflate'=> '2.086',
16517             'IO::Uncompress::AnyInflate'=> '2.086',
16518             'IO::Uncompress::AnyUncompress'=> '2.086',
16519             'IO::Uncompress::Base' => '2.086',
16520             'IO::Uncompress::Bunzip2'=> '2.086',
16521             'IO::Uncompress::Gunzip'=> '2.086',
16522             'IO::Uncompress::Inflate'=> '2.086',
16523             'IO::Uncompress::RawInflate'=> '2.086',
16524             'IO::Uncompress::Unzip' => '2.086',
16525             'Module::CoreList' => '5.20190620',
16526             'Module::CoreList::Utils'=> '5.20190620',
16527             'POSIX' => '1.89',
16528             'Pod::Man' => '4.12',
16529             'Pod::ParseLink' => '4.12',
16530             'Pod::Simple' => '3.38',
16531             'Pod::Simple::BlackBox' => '3.38',
16532             'Pod::Simple::Checker' => '3.38',
16533             'Pod::Simple::Debug' => '3.38',
16534             'Pod::Simple::DumpAsText'=> '3.38',
16535             'Pod::Simple::DumpAsXML'=> '3.38',
16536             'Pod::Simple::HTML' => '3.38',
16537             'Pod::Simple::HTMLBatch'=> '3.38',
16538             'Pod::Simple::LinkSection'=> '3.38',
16539             'Pod::Simple::Methody' => '3.38',
16540             'Pod::Simple::Progress' => '3.38',
16541             'Pod::Simple::PullParser'=> '3.38',
16542             'Pod::Simple::PullParserEndToken'=> '3.38',
16543             'Pod::Simple::PullParserStartToken'=> '3.38',
16544             'Pod::Simple::PullParserTextToken'=> '3.38',
16545             'Pod::Simple::PullParserToken'=> '3.38',
16546             'Pod::Simple::RTF' => '3.38',
16547             'Pod::Simple::Search' => '3.38',
16548             'Pod::Simple::SimpleTree'=> '3.38',
16549             'Pod::Simple::Text' => '3.38',
16550             'Pod::Simple::TextContent'=> '3.38',
16551             'Pod::Simple::TiedOutFH'=> '3.38',
16552             'Pod::Simple::Transcode'=> '3.38',
16553             'Pod::Simple::TranscodeDumb'=> '3.38',
16554             'Pod::Simple::TranscodeSmart'=> '3.38',
16555             'Pod::Simple::XHTML' => '3.38',
16556             'Pod::Simple::XMLOutStream'=> '3.38',
16557             'Pod::Text' => '4.12',
16558             'Pod::Text::Color' => '4.12',
16559             'Pod::Text::Overstrike' => '4.12',
16560             'Pod::Text::Termcap' => '4.12',
16561             'SelfLoader' => '1.26',
16562             'Storable' => '3.16',
16563             'Sys::Hostname' => '1.23',
16564             'Test2' => '1.302164',
16565             'Test2::API' => '1.302164',
16566             'Test2::API::Breakage' => '1.302164',
16567             'Test2::API::Context' => '1.302164',
16568             'Test2::API::Instance' => '1.302164',
16569             'Test2::API::Stack' => '1.302164',
16570             'Test2::Event' => '1.302164',
16571             'Test2::Event::Bail' => '1.302164',
16572             'Test2::Event::Diag' => '1.302164',
16573             'Test2::Event::Encoding'=> '1.302164',
16574             'Test2::Event::Exception'=> '1.302164',
16575             'Test2::Event::Fail' => '1.302164',
16576             'Test2::Event::Generic' => '1.302164',
16577             'Test2::Event::Note' => '1.302164',
16578             'Test2::Event::Ok' => '1.302164',
16579             'Test2::Event::Pass' => '1.302164',
16580             'Test2::Event::Plan' => '1.302164',
16581             'Test2::Event::Skip' => '1.302164',
16582             'Test2::Event::Subtest' => '1.302164',
16583             'Test2::Event::TAP::Version'=> '1.302164',
16584             'Test2::Event::V2' => '1.302164',
16585             'Test2::Event::Waiting' => '1.302164',
16586             'Test2::EventFacet' => '1.302164',
16587             'Test2::EventFacet::About'=> '1.302164',
16588             'Test2::EventFacet::Amnesty'=> '1.302164',
16589             'Test2::EventFacet::Assert'=> '1.302164',
16590             'Test2::EventFacet::Control'=> '1.302164',
16591             'Test2::EventFacet::Error'=> '1.302164',
16592             'Test2::EventFacet::Hub'=> '1.302164',
16593             'Test2::EventFacet::Info'=> '1.302164',
16594             'Test2::EventFacet::Info::Table'=> '1.302164',
16595             'Test2::EventFacet::Meta'=> '1.302164',
16596             'Test2::EventFacet::Parent'=> '1.302164',
16597             'Test2::EventFacet::Plan'=> '1.302164',
16598             'Test2::EventFacet::Render'=> '1.302164',
16599             'Test2::EventFacet::Trace'=> '1.302164',
16600             'Test2::Formatter' => '1.302164',
16601             'Test2::Formatter::TAP' => '1.302164',
16602             'Test2::Hub' => '1.302164',
16603             'Test2::Hub::Interceptor'=> '1.302164',
16604             'Test2::Hub::Interceptor::Terminator'=> '1.302164',
16605             'Test2::Hub::Subtest' => '1.302164',
16606             'Test2::IPC' => '1.302164',
16607             'Test2::IPC::Driver' => '1.302164',
16608             'Test2::IPC::Driver::Files'=> '1.302164',
16609             'Test2::Tools::Tiny' => '1.302164',
16610             'Test2::Util' => '1.302164',
16611             'Test2::Util::ExternalMeta'=> '1.302164',
16612             'Test2::Util::Facets2Legacy'=> '1.302164',
16613             'Test2::Util::HashBase' => '1.302164',
16614             'Test2::Util::Trace' => '1.302164',
16615             'Test::Builder' => '1.302164',
16616             'Test::Builder::Formatter'=> '1.302164',
16617             'Test::Builder::Module' => '1.302164',
16618             'Test::Builder::Tester' => '1.302164',
16619             'Test::Builder::Tester::Color'=> '1.302164',
16620             'Test::Builder::TodoDiag'=> '1.302164',
16621             'Test::More' => '1.302164',
16622             'Test::Simple' => '1.302164',
16623             'Test::Tester' => '1.302164',
16624             'Test::Tester::Capture' => '1.302164',
16625             'Test::Tester::CaptureRunner'=> '1.302164',
16626             'Test::Tester::Delegate'=> '1.302164',
16627             'Test::use::ok' => '1.302164',
16628             'Tie::File' => '1.03',
16629             'Tie::Hash::NamedCapture'=> '0.11',
16630             'Time::HiRes' => '1.9761',
16631             'Unicode::Normalize' => '1.27',
16632             'Unicode::UCD' => '0.73',
16633             'XS::APItest' => '1.01',
16634             'ok' => '1.302164',
16635             'overload' => '1.31',
16636             'warnings' => '1.45',
16637             },
16638             removed => {
16639             'Pod::Find' => 1,
16640             'Pod::InputObjects' => 1,
16641             'Pod::ParseUtils' => 1,
16642             'Pod::Parser' => 1,
16643             'Pod::PlainText' => 1,
16644             'Pod::Select' => 1,
16645             }
16646             },
16647             5.031002 => {
16648             delta_from => 5.031001,
16649             changed => {
16650             'B::Op_private' => '5.031002',
16651             'Config' => '5.031002',
16652             'Devel::PPPort' => '3.54',
16653             'Exporter' => '5.74',
16654             'Exporter::Heavy' => '5.74',
16655             'IPC::Cmd' => '1.04',
16656             'JSON::PP' => '4.04',
16657             'JSON::PP::Boolean' => '4.04',
16658             'Module::CoreList' => '5.20190720',
16659             'Module::CoreList::Utils'=> '5.20190720',
16660             'Opcode' => '1.44',
16661             'PerlIO::encoding' => '0.28',
16662             'Pod::Simple' => '3.39',
16663             'Pod::Simple::BlackBox' => '3.39',
16664             'Pod::Simple::Checker' => '3.39',
16665             'Pod::Simple::Debug' => '3.39',
16666             'Pod::Simple::DumpAsText'=> '3.39',
16667             'Pod::Simple::DumpAsXML'=> '3.39',
16668             'Pod::Simple::HTML' => '3.39',
16669             'Pod::Simple::HTMLBatch'=> '3.39',
16670             'Pod::Simple::LinkSection'=> '3.39',
16671             'Pod::Simple::Methody' => '3.39',
16672             'Pod::Simple::Progress' => '3.39',
16673             'Pod::Simple::PullParser'=> '3.39',
16674             'Pod::Simple::PullParserEndToken'=> '3.39',
16675             'Pod::Simple::PullParserStartToken'=> '3.39',
16676             'Pod::Simple::PullParserTextToken'=> '3.39',
16677             'Pod::Simple::PullParserToken'=> '3.39',
16678             'Pod::Simple::RTF' => '3.39',
16679             'Pod::Simple::Search' => '3.39',
16680             'Pod::Simple::SimpleTree'=> '3.39',
16681             'Pod::Simple::Text' => '3.39',
16682             'Pod::Simple::TextContent'=> '3.39',
16683             'Pod::Simple::TiedOutFH'=> '3.39',
16684             'Pod::Simple::Transcode'=> '3.39',
16685             'Pod::Simple::TranscodeDumb'=> '3.39',
16686             'Pod::Simple::TranscodeSmart'=> '3.39',
16687             'Pod::Simple::XHTML' => '3.39',
16688             'Pod::Simple::XMLOutStream'=> '3.39',
16689             'threads::shared' => '1.61',
16690             },
16691             removed => {
16692             }
16693             },
16694             5.031003 => {
16695             delta_from => 5.031002,
16696             changed => {
16697             'B::Op_private' => '5.031003',
16698             'Compress::Raw::Bzip2' => '2.087',
16699             'Compress::Raw::Zlib' => '2.087',
16700             'Compress::Zlib' => '2.087',
16701             'Config' => '5.031003',
16702             'Devel::PPPort' => '3.55',
16703             'File::Find' => '1.37',
16704             'Getopt::Long' => '2.51',
16705             'I18N::LangTags::Detect'=> '1.08',
16706             'IO::Compress::Adapter::Bzip2'=> '2.087',
16707             'IO::Compress::Adapter::Deflate'=> '2.087',
16708             'IO::Compress::Adapter::Identity'=> '2.087',
16709             'IO::Compress::Base' => '2.087',
16710             'IO::Compress::Base::Common'=> '2.087',
16711             'IO::Compress::Bzip2' => '2.087',
16712             'IO::Compress::Deflate' => '2.087',
16713             'IO::Compress::Gzip' => '2.087',
16714             'IO::Compress::Gzip::Constants'=> '2.087',
16715             'IO::Compress::RawDeflate'=> '2.087',
16716             'IO::Compress::Zip' => '2.087',
16717             'IO::Compress::Zip::Constants'=> '2.087',
16718             'IO::Compress::Zlib::Constants'=> '2.087',
16719             'IO::Compress::Zlib::Extra'=> '2.087',
16720             'IO::Uncompress::Adapter::Bunzip2'=> '2.087',
16721             'IO::Uncompress::Adapter::Identity'=> '2.087',
16722             'IO::Uncompress::Adapter::Inflate'=> '2.087',
16723             'IO::Uncompress::AnyInflate'=> '2.087',
16724             'IO::Uncompress::AnyUncompress'=> '2.087',
16725             'IO::Uncompress::Base' => '2.087',
16726             'IO::Uncompress::Bunzip2'=> '2.087',
16727             'IO::Uncompress::Gunzip'=> '2.087',
16728             'IO::Uncompress::Inflate'=> '2.087',
16729             'IO::Uncompress::RawInflate'=> '2.087',
16730             'IO::Uncompress::Unzip' => '2.087',
16731             'Module::CoreList' => '5.20190820',
16732             'Module::CoreList::Utils'=> '5.20190820',
16733             'PerlIO::via' => '0.18',
16734             'Storable' => '3.17',
16735             'Test2' => '1.302166',
16736             'Test2::API' => '1.302166',
16737             'Test2::API::Breakage' => '1.302166',
16738             'Test2::API::Context' => '1.302166',
16739             'Test2::API::Instance' => '1.302166',
16740             'Test2::API::Stack' => '1.302166',
16741             'Test2::Event' => '1.302166',
16742             'Test2::Event::Bail' => '1.302166',
16743             'Test2::Event::Diag' => '1.302166',
16744             'Test2::Event::Encoding'=> '1.302166',
16745             'Test2::Event::Exception'=> '1.302166',
16746             'Test2::Event::Fail' => '1.302166',
16747             'Test2::Event::Generic' => '1.302166',
16748             'Test2::Event::Note' => '1.302166',
16749             'Test2::Event::Ok' => '1.302166',
16750             'Test2::Event::Pass' => '1.302166',
16751             'Test2::Event::Plan' => '1.302166',
16752             'Test2::Event::Skip' => '1.302166',
16753             'Test2::Event::Subtest' => '1.302166',
16754             'Test2::Event::TAP::Version'=> '1.302166',
16755             'Test2::Event::V2' => '1.302166',
16756             'Test2::Event::Waiting' => '1.302166',
16757             'Test2::EventFacet' => '1.302166',
16758             'Test2::EventFacet::About'=> '1.302166',
16759             'Test2::EventFacet::Amnesty'=> '1.302166',
16760             'Test2::EventFacet::Assert'=> '1.302166',
16761             'Test2::EventFacet::Control'=> '1.302166',
16762             'Test2::EventFacet::Error'=> '1.302166',
16763             'Test2::EventFacet::Hub'=> '1.302166',
16764             'Test2::EventFacet::Info'=> '1.302166',
16765             'Test2::EventFacet::Info::Table'=> '1.302166',
16766             'Test2::EventFacet::Meta'=> '1.302166',
16767             'Test2::EventFacet::Parent'=> '1.302166',
16768             'Test2::EventFacet::Plan'=> '1.302166',
16769             'Test2::EventFacet::Render'=> '1.302166',
16770             'Test2::EventFacet::Trace'=> '1.302166',
16771             'Test2::Formatter' => '1.302166',
16772             'Test2::Formatter::TAP' => '1.302166',
16773             'Test2::Hub' => '1.302166',
16774             'Test2::Hub::Interceptor'=> '1.302166',
16775             'Test2::Hub::Interceptor::Terminator'=> '1.302166',
16776             'Test2::Hub::Subtest' => '1.302166',
16777             'Test2::IPC' => '1.302166',
16778             'Test2::IPC::Driver' => '1.302166',
16779             'Test2::IPC::Driver::Files'=> '1.302166',
16780             'Test2::Tools::Tiny' => '1.302166',
16781             'Test2::Util' => '1.302166',
16782             'Test2::Util::ExternalMeta'=> '1.302166',
16783             'Test2::Util::Facets2Legacy'=> '1.302166',
16784             'Test2::Util::HashBase' => '1.302166',
16785             'Test2::Util::Trace' => '1.302166',
16786             'Test::Builder' => '1.302166',
16787             'Test::Builder::Formatter'=> '1.302166',
16788             'Test::Builder::Module' => '1.302166',
16789             'Test::Builder::Tester' => '1.302166',
16790             'Test::Builder::Tester::Color'=> '1.302166',
16791             'Test::Builder::TodoDiag'=> '1.302166',
16792             'Test::More' => '1.302166',
16793             'Test::Simple' => '1.302166',
16794             'Test::Tester' => '1.302166',
16795             'Test::Tester::Capture' => '1.302166',
16796             'Test::Tester::CaptureRunner'=> '1.302166',
16797             'Test::Tester::Delegate'=> '1.302166',
16798             'Test::use::ok' => '1.302166',
16799             'Thread' => '3.05',
16800             'Time::HiRes' => '1.9762',
16801             'Win32' => '0.53',
16802             'XS::APItest' => '1.02',
16803             'ok' => '1.302166',
16804             },
16805             removed => {
16806             }
16807             },
16808             5.031004 => {
16809             delta_from => 5.031003,
16810             changed => {
16811             'B::Op_private' => '5.031004',
16812             'Config' => '5.031004',
16813             'ExtUtils::Command' => '7.38',
16814             'ExtUtils::Command::MM' => '7.38',
16815             'ExtUtils::Liblist' => '7.38',
16816             'ExtUtils::Liblist::Kid'=> '7.38',
16817             'ExtUtils::MM' => '7.38',
16818             'ExtUtils::MM_AIX' => '7.38',
16819             'ExtUtils::MM_Any' => '7.38',
16820             'ExtUtils::MM_BeOS' => '7.38',
16821             'ExtUtils::MM_Cygwin' => '7.38',
16822             'ExtUtils::MM_DOS' => '7.38',
16823             'ExtUtils::MM_Darwin' => '7.38',
16824             'ExtUtils::MM_MacOS' => '7.38',
16825             'ExtUtils::MM_NW5' => '7.38',
16826             'ExtUtils::MM_OS2' => '7.38',
16827             'ExtUtils::MM_QNX' => '7.38',
16828             'ExtUtils::MM_UWIN' => '7.38',
16829             'ExtUtils::MM_Unix' => '7.38',
16830             'ExtUtils::MM_VMS' => '7.38',
16831             'ExtUtils::MM_VOS' => '7.38',
16832             'ExtUtils::MM_Win32' => '7.38',
16833             'ExtUtils::MM_Win95' => '7.38',
16834             'ExtUtils::MY' => '7.38',
16835             'ExtUtils::MakeMaker' => '7.38',
16836             'ExtUtils::MakeMaker::Config'=> '7.38',
16837             'ExtUtils::MakeMaker::Locale'=> '7.38',
16838             'ExtUtils::MakeMaker::version'=> '7.38',
16839             'ExtUtils::MakeMaker::version::regex'=> '7.38',
16840             'ExtUtils::Mkbootstrap' => '7.38',
16841             'ExtUtils::Mksymlists' => '7.38',
16842             'ExtUtils::testlib' => '7.38',
16843             'I18N::Langinfo' => '0.19',
16844             'List::Util' => '1.52',
16845             'List::Util::XS' => '1.52',
16846             'Module::CoreList' => '5.20190920',
16847             'Module::CoreList::Utils'=> '5.20190920',
16848             'Module::Metadata' => '1.000037',
16849             'Scalar::Util' => '1.52',
16850             'Sub::Util' => '1.52',
16851             'Test2' => '1.302168',
16852             'Test2::API' => '1.302168',
16853             'Test2::API::Breakage' => '1.302168',
16854             'Test2::API::Context' => '1.302168',
16855             'Test2::API::Instance' => '1.302168',
16856             'Test2::API::Stack' => '1.302168',
16857             'Test2::Event' => '1.302168',
16858             'Test2::Event::Bail' => '1.302168',
16859             'Test2::Event::Diag' => '1.302168',
16860             'Test2::Event::Encoding'=> '1.302168',
16861             'Test2::Event::Exception'=> '1.302168',
16862             'Test2::Event::Fail' => '1.302168',
16863             'Test2::Event::Generic' => '1.302168',
16864             'Test2::Event::Note' => '1.302168',
16865             'Test2::Event::Ok' => '1.302168',
16866             'Test2::Event::Pass' => '1.302168',
16867             'Test2::Event::Plan' => '1.302168',
16868             'Test2::Event::Skip' => '1.302168',
16869             'Test2::Event::Subtest' => '1.302168',
16870             'Test2::Event::TAP::Version'=> '1.302168',
16871             'Test2::Event::V2' => '1.302168',
16872             'Test2::Event::Waiting' => '1.302168',
16873             'Test2::EventFacet' => '1.302168',
16874             'Test2::EventFacet::About'=> '1.302168',
16875             'Test2::EventFacet::Amnesty'=> '1.302168',
16876             'Test2::EventFacet::Assert'=> '1.302168',
16877             'Test2::EventFacet::Control'=> '1.302168',
16878             'Test2::EventFacet::Error'=> '1.302168',
16879             'Test2::EventFacet::Hub'=> '1.302168',
16880             'Test2::EventFacet::Info'=> '1.302168',
16881             'Test2::EventFacet::Info::Table'=> '1.302168',
16882             'Test2::EventFacet::Meta'=> '1.302168',
16883             'Test2::EventFacet::Parent'=> '1.302168',
16884             'Test2::EventFacet::Plan'=> '1.302168',
16885             'Test2::EventFacet::Render'=> '1.302168',
16886             'Test2::EventFacet::Trace'=> '1.302168',
16887             'Test2::Formatter' => '1.302168',
16888             'Test2::Formatter::TAP' => '1.302168',
16889             'Test2::Hub' => '1.302168',
16890             'Test2::Hub::Interceptor'=> '1.302168',
16891             'Test2::Hub::Interceptor::Terminator'=> '1.302168',
16892             'Test2::Hub::Subtest' => '1.302168',
16893             'Test2::IPC' => '1.302168',
16894             'Test2::IPC::Driver' => '1.302168',
16895             'Test2::IPC::Driver::Files'=> '1.302168',
16896             'Test2::Tools::Tiny' => '1.302168',
16897             'Test2::Util' => '1.302168',
16898             'Test2::Util::ExternalMeta'=> '1.302168',
16899             'Test2::Util::Facets2Legacy'=> '1.302168',
16900             'Test2::Util::HashBase' => '1.302168',
16901             'Test2::Util::Trace' => '1.302168',
16902             'Test::Builder' => '1.302168',
16903             'Test::Builder::Formatter'=> '1.302168',
16904             'Test::Builder::Module' => '1.302168',
16905             'Test::Builder::Tester' => '1.302168',
16906             'Test::Builder::Tester::Color'=> '1.302168',
16907             'Test::Builder::TodoDiag'=> '1.302168',
16908             'Test::More' => '1.302168',
16909             'Test::Simple' => '1.302168',
16910             'Test::Tester' => '1.302168',
16911             'Test::Tester::Capture' => '1.302168',
16912             'Test::Tester::CaptureRunner'=> '1.302168',
16913             'Test::Tester::Delegate'=> '1.302168',
16914             'Test::use::ok' => '1.302168',
16915             'Time::HiRes' => '1.9763',
16916             'XS::APItest' => '1.03',
16917             'ok' => '1.302168',
16918             're' => '0.38',
16919             },
16920             removed => {
16921             }
16922             },
16923             5.031005 => {
16924             delta_from => 5.031004,
16925             changed => {
16926             'B' => '1.77',
16927             'B::Deparse' => '1.50',
16928             'B::Op_private' => '5.031005',
16929             'Config' => '5.031005',
16930             'Devel::PPPort' => '3.54',
16931             'Digest::MD5' => '2.55_01',
16932             'Dumpvalue' => '1.21',
16933             'ExtUtils::CBuilder' => '0.280233',
16934             'Math::BigFloat' => '1.999817_01',
16935             'Math::BigInt' => '1.999817_01',
16936             'Math::BigInt::Calc' => '1.999817_01',
16937             'Math::BigInt::FastCalc'=> '0.5009',
16938             'Math::BigInt::Lib' => '1.999817_01',
16939             'Module::CoreList' => '5.20191020',
16940             'Module::CoreList::Utils'=> '5.20191020',
16941             'Safe' => '2.41',
16942             'Time::HiRes' => '1.9764',
16943             'XS::APItest' => '1.04',
16944             'threads' => '2.23',
16945             },
16946             removed => {
16947             }
16948             },
16949             5.030001 => {
16950             delta_from => 5.030000,
16951             changed => {
16952             'B::Op_private' => '5.030001',
16953             'Config' => '5.030001',
16954             'Module::CoreList' => '5.20191110',
16955             'Module::CoreList::Utils'=> '5.20191110',
16956             },
16957             removed => {
16958             }
16959             },
16960             5.031006 => {
16961             delta_from => 5.031005,
16962             changed => {
16963             'B::Deparse' => '1.51',
16964             'B::Op_private' => '5.031006',
16965             'Compress::Raw::Bzip2' => '2.090',
16966             'Compress::Raw::Zlib' => '2.090',
16967             'Compress::Zlib' => '2.090',
16968             'Config' => '5.031006',
16969             'Devel::PPPort' => '3.55',
16970             'DynaLoader' => '1.46',
16971             'IO::Compress::Adapter::Bzip2'=> '2.090',
16972             'IO::Compress::Adapter::Deflate'=> '2.090',
16973             'IO::Compress::Adapter::Identity'=> '2.090',
16974             'IO::Compress::Base' => '2.090',
16975             'IO::Compress::Base::Common'=> '2.090',
16976             'IO::Compress::Bzip2' => '2.090',
16977             'IO::Compress::Deflate' => '2.090',
16978             'IO::Compress::Gzip' => '2.090',
16979             'IO::Compress::Gzip::Constants'=> '2.090',
16980             'IO::Compress::RawDeflate'=> '2.090',
16981             'IO::Compress::Zip' => '2.090',
16982             'IO::Compress::Zip::Constants'=> '2.090',
16983             'IO::Compress::Zlib::Constants'=> '2.090',
16984             'IO::Compress::Zlib::Extra'=> '2.090',
16985             'IO::Uncompress::Adapter::Bunzip2'=> '2.090',
16986             'IO::Uncompress::Adapter::Identity'=> '2.090',
16987             'IO::Uncompress::Adapter::Inflate'=> '2.090',
16988             'IO::Uncompress::AnyInflate'=> '2.090',
16989             'IO::Uncompress::AnyUncompress'=> '2.090',
16990             'IO::Uncompress::Base' => '2.090',
16991             'IO::Uncompress::Bunzip2'=> '2.090',
16992             'IO::Uncompress::Gunzip'=> '2.090',
16993             'IO::Uncompress::Inflate'=> '2.090',
16994             'IO::Uncompress::RawInflate'=> '2.090',
16995             'IO::Uncompress::Unzip' => '2.090',
16996             'List::Util' => '1.53',
16997             'List::Util::XS' => '1.53',
16998             'Math::BigFloat' => '1.999818',
16999             'Math::BigInt' => '1.999818',
17000             'Math::BigInt::Calc' => '1.999818',
17001             'Math::BigInt::Lib' => '1.999818',
17002             'Module::CoreList' => '5.20191120',
17003             'Module::CoreList::Utils'=> '5.20191120',
17004             'Module::Load::Conditional'=> '0.70',
17005             'POSIX' => '1.90',
17006             'Pod::Simple' => '3.40',
17007             'Pod::Simple::BlackBox' => '3.40',
17008             'Pod::Simple::Checker' => '3.40',
17009             'Pod::Simple::Debug' => '3.40',
17010             'Pod::Simple::DumpAsText'=> '3.40',
17011             'Pod::Simple::DumpAsXML'=> '3.40',
17012             'Pod::Simple::HTML' => '3.40',
17013             'Pod::Simple::HTMLBatch'=> '3.40',
17014             'Pod::Simple::LinkSection'=> '3.40',
17015             'Pod::Simple::Methody' => '3.40',
17016             'Pod::Simple::Progress' => '3.40',
17017             'Pod::Simple::PullParser'=> '3.40',
17018             'Pod::Simple::PullParserEndToken'=> '3.40',
17019             'Pod::Simple::PullParserStartToken'=> '3.40',
17020             'Pod::Simple::PullParserTextToken'=> '3.40',
17021             'Pod::Simple::PullParserToken'=> '3.40',
17022             'Pod::Simple::RTF' => '3.40',
17023             'Pod::Simple::Search' => '3.40',
17024             'Pod::Simple::SimpleTree'=> '3.40',
17025             'Pod::Simple::Text' => '3.40',
17026             'Pod::Simple::TextContent'=> '3.40',
17027             'Pod::Simple::TiedOutFH'=> '3.40',
17028             'Pod::Simple::Transcode'=> '3.40',
17029             'Pod::Simple::TranscodeDumb'=> '3.40',
17030             'Pod::Simple::TranscodeSmart'=> '3.40',
17031             'Pod::Simple::XHTML' => '3.40',
17032             'Pod::Simple::XMLOutStream'=> '3.40',
17033             'Scalar::Util' => '1.53',
17034             'Sub::Util' => '1.53',
17035             'Sys::Syslog' => '0.36',
17036             'Test2' => '1.302169',
17037             'Test2::API' => '1.302169',
17038             'Test2::API::Breakage' => '1.302169',
17039             'Test2::API::Context' => '1.302169',
17040             'Test2::API::Instance' => '1.302169',
17041             'Test2::API::Stack' => '1.302169',
17042             'Test2::Event' => '1.302169',
17043             'Test2::Event::Bail' => '1.302169',
17044             'Test2::Event::Diag' => '1.302169',
17045             'Test2::Event::Encoding'=> '1.302169',
17046             'Test2::Event::Exception'=> '1.302169',
17047             'Test2::Event::Fail' => '1.302169',
17048             'Test2::Event::Generic' => '1.302169',
17049             'Test2::Event::Note' => '1.302169',
17050             'Test2::Event::Ok' => '1.302169',
17051             'Test2::Event::Pass' => '1.302169',
17052             'Test2::Event::Plan' => '1.302169',
17053             'Test2::Event::Skip' => '1.302169',
17054             'Test2::Event::Subtest' => '1.302169',
17055             'Test2::Event::TAP::Version'=> '1.302169',
17056             'Test2::Event::V2' => '1.302169',
17057             'Test2::Event::Waiting' => '1.302169',
17058             'Test2::EventFacet' => '1.302169',
17059             'Test2::EventFacet::About'=> '1.302169',
17060             'Test2::EventFacet::Amnesty'=> '1.302169',
17061             'Test2::EventFacet::Assert'=> '1.302169',
17062             'Test2::EventFacet::Control'=> '1.302169',
17063             'Test2::EventFacet::Error'=> '1.302169',
17064             'Test2::EventFacet::Hub'=> '1.302169',
17065             'Test2::EventFacet::Info'=> '1.302169',
17066             'Test2::EventFacet::Info::Table'=> '1.302169',
17067             'Test2::EventFacet::Meta'=> '1.302169',
17068             'Test2::EventFacet::Parent'=> '1.302169',
17069             'Test2::EventFacet::Plan'=> '1.302169',
17070             'Test2::EventFacet::Render'=> '1.302169',
17071             'Test2::EventFacet::Trace'=> '1.302169',
17072             'Test2::Formatter' => '1.302169',
17073             'Test2::Formatter::TAP' => '1.302169',
17074             'Test2::Hub' => '1.302169',
17075             'Test2::Hub::Interceptor'=> '1.302169',
17076             'Test2::Hub::Interceptor::Terminator'=> '1.302169',
17077             'Test2::Hub::Subtest' => '1.302169',
17078             'Test2::IPC' => '1.302169',
17079             'Test2::IPC::Driver' => '1.302169',
17080             'Test2::IPC::Driver::Files'=> '1.302169',
17081             'Test2::Tools::Tiny' => '1.302169',
17082             'Test2::Util' => '1.302169',
17083             'Test2::Util::ExternalMeta'=> '1.302169',
17084             'Test2::Util::Facets2Legacy'=> '1.302169',
17085             'Test2::Util::HashBase' => '1.302169',
17086             'Test2::Util::Trace' => '1.302169',
17087             'Test::Builder' => '1.302169',
17088             'Test::Builder::Formatter'=> '1.302169',
17089             'Test::Builder::Module' => '1.302169',
17090             'Test::Builder::Tester' => '1.302169',
17091             'Test::Builder::Tester::Color'=> '1.302169',
17092             'Test::Builder::TodoDiag'=> '1.302169',
17093             'Test::More' => '1.302169',
17094             'Test::Simple' => '1.302169',
17095             'Test::Tester' => '1.302169',
17096             'Test::Tester::Capture' => '1.302169',
17097             'Test::Tester::CaptureRunner'=> '1.302169',
17098             'Test::Tester::Delegate'=> '1.302169',
17099             'Test::use::ok' => '1.302169',
17100             'Tie::StdHandle' => '4.6',
17101             'Unicode::UCD' => '0.74',
17102             'Win32API::File' => '0.1203_01',
17103             'feature' => '1.56',
17104             'mro' => '1.23',
17105             'ok' => '1.302169',
17106             'perlfaq' => '5.20191102',
17107             },
17108             removed => {
17109             }
17110             },
17111             5.031007 => {
17112             delta_from => 5.031006,
17113             changed => {
17114             'B' => '1.78',
17115             'B::Deparse' => '1.52',
17116             'B::Op_private' => '5.031007',
17117             'Compress::Raw::Bzip2' => '2.093',
17118             'Compress::Raw::Zlib' => '2.093',
17119             'Compress::Zlib' => '2.093',
17120             'Config' => '5.031007',
17121             'Devel::PPPort' => '3.56',
17122             'English' => '1.11',
17123             'ExtUtils::Command' => '7.42',
17124             'ExtUtils::Command::MM' => '7.42',
17125             'ExtUtils::Liblist' => '7.42',
17126             'ExtUtils::Liblist::Kid'=> '7.42',
17127             'ExtUtils::MM' => '7.42',
17128             'ExtUtils::MM_AIX' => '7.42',
17129             'ExtUtils::MM_Any' => '7.42',
17130             'ExtUtils::MM_BeOS' => '7.42',
17131             'ExtUtils::MM_Cygwin' => '7.42',
17132             'ExtUtils::MM_DOS' => '7.42',
17133             'ExtUtils::MM_Darwin' => '7.42',
17134             'ExtUtils::MM_MacOS' => '7.42',
17135             'ExtUtils::MM_NW5' => '7.42',
17136             'ExtUtils::MM_OS2' => '7.42',
17137             'ExtUtils::MM_QNX' => '7.42',
17138             'ExtUtils::MM_UWIN' => '7.42',
17139             'ExtUtils::MM_Unix' => '7.42',
17140             'ExtUtils::MM_VMS' => '7.42',
17141             'ExtUtils::MM_VOS' => '7.42',
17142             'ExtUtils::MM_Win32' => '7.42',
17143             'ExtUtils::MM_Win95' => '7.42',
17144             'ExtUtils::MY' => '7.42',
17145             'ExtUtils::MakeMaker' => '7.42',
17146             'ExtUtils::MakeMaker::Config'=> '7.42',
17147             'ExtUtils::MakeMaker::Locale'=> '7.42',
17148             'ExtUtils::MakeMaker::version'=> '7.42',
17149             'ExtUtils::MakeMaker::version::regex'=> '7.42',
17150             'ExtUtils::Mkbootstrap' => '7.42',
17151             'ExtUtils::Mksymlists' => '7.42',
17152             'ExtUtils::testlib' => '7.42',
17153             'File::stat' => '1.09',
17154             'Filter::Simple' => '0.96',
17155             'IO::Compress::Adapter::Bzip2'=> '2.093',
17156             'IO::Compress::Adapter::Deflate'=> '2.093',
17157             'IO::Compress::Adapter::Identity'=> '2.093',
17158             'IO::Compress::Base' => '2.093',
17159             'IO::Compress::Base::Common'=> '2.093',
17160             'IO::Compress::Bzip2' => '2.093',
17161             'IO::Compress::Deflate' => '2.093',
17162             'IO::Compress::Gzip' => '2.093',
17163             'IO::Compress::Gzip::Constants'=> '2.093',
17164             'IO::Compress::RawDeflate'=> '2.093',
17165             'IO::Compress::Zip' => '2.093',
17166             'IO::Compress::Zip::Constants'=> '2.093',
17167             'IO::Compress::Zlib::Constants'=> '2.093',
17168             'IO::Compress::Zlib::Extra'=> '2.093',
17169             'IO::Uncompress::Adapter::Bunzip2'=> '2.093',
17170             'IO::Uncompress::Adapter::Identity'=> '2.093',
17171             'IO::Uncompress::Adapter::Inflate'=> '2.093',
17172             'IO::Uncompress::AnyInflate'=> '2.093',
17173             'IO::Uncompress::AnyUncompress'=> '2.093',
17174             'IO::Uncompress::Base' => '2.093',
17175             'IO::Uncompress::Bunzip2'=> '2.093',
17176             'IO::Uncompress::Gunzip'=> '2.093',
17177             'IO::Uncompress::Inflate'=> '2.093',
17178             'IO::Uncompress::RawInflate'=> '2.093',
17179             'IO::Uncompress::Unzip' => '2.093',
17180             'Module::CoreList' => '5.20191220',
17181             'Module::CoreList::Utils'=> '5.20191220',
17182             'Net::Ping' => '2.72',
17183             'Opcode' => '1.45',
17184             'Storable' => '3.18',
17185             'Test2' => '1.302170',
17186             'Test2::API' => '1.302170',
17187             'Test2::API::Breakage' => '1.302170',
17188             'Test2::API::Context' => '1.302170',
17189             'Test2::API::Instance' => '1.302170',
17190             'Test2::API::Stack' => '1.302170',
17191             'Test2::Event' => '1.302170',
17192             'Test2::Event::Bail' => '1.302170',
17193             'Test2::Event::Diag' => '1.302170',
17194             'Test2::Event::Encoding'=> '1.302170',
17195             'Test2::Event::Exception'=> '1.302170',
17196             'Test2::Event::Fail' => '1.302170',
17197             'Test2::Event::Generic' => '1.302170',
17198             'Test2::Event::Note' => '1.302170',
17199             'Test2::Event::Ok' => '1.302170',
17200             'Test2::Event::Pass' => '1.302170',
17201             'Test2::Event::Plan' => '1.302170',
17202             'Test2::Event::Skip' => '1.302170',
17203             'Test2::Event::Subtest' => '1.302170',
17204             'Test2::Event::TAP::Version'=> '1.302170',
17205             'Test2::Event::V2' => '1.302170',
17206             'Test2::Event::Waiting' => '1.302170',
17207             'Test2::EventFacet' => '1.302170',
17208             'Test2::EventFacet::About'=> '1.302170',
17209             'Test2::EventFacet::Amnesty'=> '1.302170',
17210             'Test2::EventFacet::Assert'=> '1.302170',
17211             'Test2::EventFacet::Control'=> '1.302170',
17212             'Test2::EventFacet::Error'=> '1.302170',
17213             'Test2::EventFacet::Hub'=> '1.302170',
17214             'Test2::EventFacet::Info'=> '1.302170',
17215             'Test2::EventFacet::Info::Table'=> '1.302170',
17216             'Test2::EventFacet::Meta'=> '1.302170',
17217             'Test2::EventFacet::Parent'=> '1.302170',
17218             'Test2::EventFacet::Plan'=> '1.302170',
17219             'Test2::EventFacet::Render'=> '1.302170',
17220             'Test2::EventFacet::Trace'=> '1.302170',
17221             'Test2::Formatter' => '1.302170',
17222             'Test2::Formatter::TAP' => '1.302170',
17223             'Test2::Hub' => '1.302170',
17224             'Test2::Hub::Interceptor'=> '1.302170',
17225             'Test2::Hub::Interceptor::Terminator'=> '1.302170',
17226             'Test2::Hub::Subtest' => '1.302170',
17227             'Test2::IPC' => '1.302170',
17228             'Test2::IPC::Driver' => '1.302170',
17229             'Test2::IPC::Driver::Files'=> '1.302170',
17230             'Test2::Tools::Tiny' => '1.302170',
17231             'Test2::Util' => '1.302170',
17232             'Test2::Util::ExternalMeta'=> '1.302170',
17233             'Test2::Util::Facets2Legacy'=> '1.302170',
17234             'Test2::Util::HashBase' => '1.302170',
17235             'Test2::Util::Trace' => '1.302170',
17236             'Test::Builder' => '1.302170',
17237             'Test::Builder::Formatter'=> '1.302170',
17238             'Test::Builder::Module' => '1.302170',
17239             'Test::Builder::Tester' => '1.302170',
17240             'Test::Builder::Tester::Color'=> '1.302170',
17241             'Test::Builder::TodoDiag'=> '1.302170',
17242             'Test::More' => '1.302170',
17243             'Test::Simple' => '1.302170',
17244             'Test::Tester' => '1.302170',
17245             'Test::Tester::Capture' => '1.302170',
17246             'Test::Tester::CaptureRunner'=> '1.302170',
17247             'Test::Tester::Delegate'=> '1.302170',
17248             'Test::use::ok' => '1.302170',
17249             'Tie::Hash::NamedCapture'=> '0.13',
17250             'VMS::Stdio' => '2.45',
17251             'XS::APItest' => '1.05',
17252             'feature' => '1.57',
17253             'ok' => '1.302170',
17254             'warnings' => '1.46',
17255             },
17256             removed => {
17257             }
17258             },
17259             5.031008 => {
17260             delta_from => 5.031007,
17261             changed => {
17262             'B::Op_private' => '5.031008',
17263             'Config' => '5.031008',
17264             'DB_File' => '1.853',
17265             'Encode' => '3.02',
17266             'ExtUtils::Command' => '7.44',
17267             'ExtUtils::Command::MM' => '7.44',
17268             'ExtUtils::Liblist' => '7.44',
17269             'ExtUtils::Liblist::Kid'=> '7.44',
17270             'ExtUtils::MM' => '7.44',
17271             'ExtUtils::MM_AIX' => '7.44',
17272             'ExtUtils::MM_Any' => '7.44',
17273             'ExtUtils::MM_BeOS' => '7.44',
17274             'ExtUtils::MM_Cygwin' => '7.44',
17275             'ExtUtils::MM_DOS' => '7.44',
17276             'ExtUtils::MM_Darwin' => '7.44',
17277             'ExtUtils::MM_MacOS' => '7.44',
17278             'ExtUtils::MM_NW5' => '7.44',
17279             'ExtUtils::MM_OS2' => '7.44',
17280             'ExtUtils::MM_QNX' => '7.44',
17281             'ExtUtils::MM_UWIN' => '7.44',
17282             'ExtUtils::MM_Unix' => '7.44',
17283             'ExtUtils::MM_VMS' => '7.44',
17284             'ExtUtils::MM_VOS' => '7.44',
17285             'ExtUtils::MM_Win32' => '7.44',
17286             'ExtUtils::MM_Win95' => '7.44',
17287             'ExtUtils::MY' => '7.44',
17288             'ExtUtils::MakeMaker' => '7.44',
17289             'ExtUtils::MakeMaker::Config'=> '7.44',
17290             'ExtUtils::MakeMaker::Locale'=> '7.44',
17291             'ExtUtils::MakeMaker::version'=> '7.44',
17292             'ExtUtils::MakeMaker::version::regex'=> '7.44',
17293             'ExtUtils::Mkbootstrap' => '7.44',
17294             'ExtUtils::Mksymlists' => '7.44',
17295             'ExtUtils::testlib' => '7.44',
17296             'Fatal' => '2.32',
17297             'Hash::Util' => '0.23',
17298             'IO' => '1.42',
17299             'IO::Handle' => '1.42',
17300             'IO::Socket' => '1.42',
17301             'Module::CoreList' => '5.20200120',
17302             'Module::CoreList::Utils'=> '5.20200120',
17303             'POSIX' => '1.91',
17304             'Pod::Man' => '4.14',
17305             'Pod::ParseLink' => '4.14',
17306             'Pod::Text' => '4.14',
17307             'Pod::Text::Color' => '4.14',
17308             'Pod::Text::Overstrike' => '4.14',
17309             'Pod::Text::Termcap' => '4.14',
17310             'Term::ANSIColor' => '5.01',
17311             'Test2' => '1.302171',
17312             'Test2::API' => '1.302171',
17313             'Test2::API::Breakage' => '1.302171',
17314             'Test2::API::Context' => '1.302171',
17315             'Test2::API::Instance' => '1.302171',
17316             'Test2::API::Stack' => '1.302171',
17317             'Test2::Event' => '1.302171',
17318             'Test2::Event::Bail' => '1.302171',
17319             'Test2::Event::Diag' => '1.302171',
17320             'Test2::Event::Encoding'=> '1.302171',
17321             'Test2::Event::Exception'=> '1.302171',
17322             'Test2::Event::Fail' => '1.302171',
17323             'Test2::Event::Generic' => '1.302171',
17324             'Test2::Event::Note' => '1.302171',
17325             'Test2::Event::Ok' => '1.302171',
17326             'Test2::Event::Pass' => '1.302171',
17327             'Test2::Event::Plan' => '1.302171',
17328             'Test2::Event::Skip' => '1.302171',
17329             'Test2::Event::Subtest' => '1.302171',
17330             'Test2::Event::TAP::Version'=> '1.302171',
17331             'Test2::Event::V2' => '1.302171',
17332             'Test2::Event::Waiting' => '1.302171',
17333             'Test2::EventFacet' => '1.302171',
17334             'Test2::EventFacet::About'=> '1.302171',
17335             'Test2::EventFacet::Amnesty'=> '1.302171',
17336             'Test2::EventFacet::Assert'=> '1.302171',
17337             'Test2::EventFacet::Control'=> '1.302171',
17338             'Test2::EventFacet::Error'=> '1.302171',
17339             'Test2::EventFacet::Hub'=> '1.302171',
17340             'Test2::EventFacet::Info'=> '1.302171',
17341             'Test2::EventFacet::Info::Table'=> '1.302171',
17342             'Test2::EventFacet::Meta'=> '1.302171',
17343             'Test2::EventFacet::Parent'=> '1.302171',
17344             'Test2::EventFacet::Plan'=> '1.302171',
17345             'Test2::EventFacet::Render'=> '1.302171',
17346             'Test2::EventFacet::Trace'=> '1.302171',
17347             'Test2::Formatter' => '1.302171',
17348             'Test2::Formatter::TAP' => '1.302171',
17349             'Test2::Hub' => '1.302171',
17350             'Test2::Hub::Interceptor'=> '1.302171',
17351             'Test2::Hub::Interceptor::Terminator'=> '1.302171',
17352             'Test2::Hub::Subtest' => '1.302171',
17353             'Test2::IPC' => '1.302171',
17354             'Test2::IPC::Driver' => '1.302171',
17355             'Test2::IPC::Driver::Files'=> '1.302171',
17356             'Test2::Tools::Tiny' => '1.302171',
17357             'Test2::Util' => '1.302171',
17358             'Test2::Util::ExternalMeta'=> '1.302171',
17359             'Test2::Util::Facets2Legacy'=> '1.302171',
17360             'Test2::Util::HashBase' => '1.302171',
17361             'Test2::Util::Trace' => '1.302171',
17362             'Test::Builder' => '1.302171',
17363             'Test::Builder::Formatter'=> '1.302171',
17364             'Test::Builder::Module' => '1.302171',
17365             'Test::Builder::Tester' => '1.302171',
17366             'Test::Builder::Tester::Color'=> '1.302171',
17367             'Test::Builder::TodoDiag'=> '1.302171',
17368             'Test::More' => '1.302171',
17369             'Test::Simple' => '1.302171',
17370             'Test::Tester' => '1.302171',
17371             'Test::Tester::Capture' => '1.302171',
17372             'Test::Tester::CaptureRunner'=> '1.302171',
17373             'Test::Tester::Delegate'=> '1.302171',
17374             'Test::use::ok' => '1.302171',
17375             'XS::APItest' => '1.06',
17376             'autodie' => '2.32',
17377             'autodie::Scope::Guard' => '2.32',
17378             'autodie::Scope::GuardStack'=> '2.32',
17379             'autodie::Util' => '2.32',
17380             'autodie::exception' => '2.32',
17381             'autodie::exception::system'=> '2.32',
17382             'autodie::hints' => '2.32',
17383             'autodie::skip' => '2.32',
17384             'ok' => '1.302171',
17385             },
17386             removed => {
17387             }
17388             },
17389             5.031009 => {
17390             delta_from => 5.031008,
17391             changed => {
17392             'Archive::Tar' => '2.36',
17393             'Archive::Tar::Constant'=> '2.36',
17394             'Archive::Tar::File' => '2.36',
17395             'B' => '1.80',
17396             'B::Op_private' => '5.031009',
17397             'Config' => '5.031009',
17398             'Devel::PPPort' => '3.57',
17399             'Encode' => '3.03',
17400             'ExtUtils::CBuilder' => '0.280234',
17401             'ExtUtils::CBuilder::Base'=> '0.280234',
17402             'ExtUtils::CBuilder::Platform::Unix'=> '0.280234',
17403             'ExtUtils::CBuilder::Platform::VMS'=> '0.280234',
17404             'ExtUtils::CBuilder::Platform::Windows'=> '0.280234',
17405             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280234',
17406             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280234',
17407             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280234',
17408             'ExtUtils::CBuilder::Platform::aix'=> '0.280234',
17409             'ExtUtils::CBuilder::Platform::android'=> '0.280234',
17410             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280234',
17411             'ExtUtils::CBuilder::Platform::darwin'=> '0.280234',
17412             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280234',
17413             'ExtUtils::CBuilder::Platform::os2'=> '0.280234',
17414             'IO' => '1.43',
17415             'IO::Select' => '1.42',
17416             'IO::Socket' => '1.43',
17417             'Module::CoreList' => '5.20200220',
17418             'Module::CoreList::Utils'=> '5.20200220',
17419             'POSIX' => '1.92',
17420             'Pod::Html' => '1.25',
17421             'Storable' => '3.19',
17422             'Tie::File' => '1.06',
17423             'Unicode' => '13.0.0',
17424             'XS::APItest' => '1.07',
17425             '_charnames' => '1.46',
17426             'charnames' => '1.46',
17427             'diagnostics' => '1.37',
17428             'feature' => '1.58',
17429             'parent' => '0.238',
17430             'perlfaq' => '5.20200125',
17431             'threads' => '2.24',
17432             },
17433             removed => {
17434             }
17435             },
17436             5.030002 => {
17437             delta_from => 5.030001,
17438             changed => {
17439             'B::Op_private' => '5.030002',
17440             'Compress::Raw::Bzip2' => '2.089',
17441             'Config' => '5.030002',
17442             'Module::CoreList' => '5.20200314',
17443             'Module::CoreList::Utils'=> '5.20200314',
17444             },
17445             removed => {
17446             }
17447             },
17448             5.031010 => {
17449             delta_from => 5.031009,
17450             changed => {
17451             'B::Op_private' => '5.031010',
17452             'Config' => '5.03101',
17453             },
17454             removed => {
17455             }
17456             },
17457             5.031011 => {
17458             delta_from => 5.031010,
17459             changed => {
17460             'B::Deparse' => '1.53',
17461             'B::Op_private' => '5.031011',
17462             'Config' => '5.031011',
17463             'DynaLoader' => '1.47',
17464             'Encode' => '3.04',
17465             'IPC::Open2' => '1.05',
17466             'IPC::Open3' => '1.21',
17467             'Module::CoreList' => '5.20200428',
17468             'Module::CoreList::Utils'=> '5.20200428',
17469             'Opcode' => '1.47',
17470             'POSIX' => '1.93',
17471             'PerlIO' => '1.11',
17472             'Storable' => '3.20',
17473             'Test2' => '1.302175',
17474             'Test2::API' => '1.302175',
17475             'Test2::API::Breakage' => '1.302175',
17476             'Test2::API::Context' => '1.302175',
17477             'Test2::API::Instance' => '1.302175',
17478             'Test2::API::Stack' => '1.302175',
17479             'Test2::Event' => '1.302175',
17480             'Test2::Event::Bail' => '1.302175',
17481             'Test2::Event::Diag' => '1.302175',
17482             'Test2::Event::Encoding'=> '1.302175',
17483             'Test2::Event::Exception'=> '1.302175',
17484             'Test2::Event::Fail' => '1.302175',
17485             'Test2::Event::Generic' => '1.302175',
17486             'Test2::Event::Note' => '1.302175',
17487             'Test2::Event::Ok' => '1.302175',
17488             'Test2::Event::Pass' => '1.302175',
17489             'Test2::Event::Plan' => '1.302175',
17490             'Test2::Event::Skip' => '1.302175',
17491             'Test2::Event::Subtest' => '1.302175',
17492             'Test2::Event::TAP::Version'=> '1.302175',
17493             'Test2::Event::V2' => '1.302175',
17494             'Test2::Event::Waiting' => '1.302175',
17495             'Test2::EventFacet' => '1.302175',
17496             'Test2::EventFacet::About'=> '1.302175',
17497             'Test2::EventFacet::Amnesty'=> '1.302175',
17498             'Test2::EventFacet::Assert'=> '1.302175',
17499             'Test2::EventFacet::Control'=> '1.302175',
17500             'Test2::EventFacet::Error'=> '1.302175',
17501             'Test2::EventFacet::Hub'=> '1.302175',
17502             'Test2::EventFacet::Info'=> '1.302175',
17503             'Test2::EventFacet::Info::Table'=> '1.302175',
17504             'Test2::EventFacet::Meta'=> '1.302175',
17505             'Test2::EventFacet::Parent'=> '1.302175',
17506             'Test2::EventFacet::Plan'=> '1.302175',
17507             'Test2::EventFacet::Render'=> '1.302175',
17508             'Test2::EventFacet::Trace'=> '1.302175',
17509             'Test2::Formatter' => '1.302175',
17510             'Test2::Formatter::TAP' => '1.302175',
17511             'Test2::Hub' => '1.302175',
17512             'Test2::Hub::Interceptor'=> '1.302175',
17513             'Test2::Hub::Interceptor::Terminator'=> '1.302175',
17514             'Test2::Hub::Subtest' => '1.302175',
17515             'Test2::IPC' => '1.302175',
17516             'Test2::IPC::Driver' => '1.302175',
17517             'Test2::IPC::Driver::Files'=> '1.302175',
17518             'Test2::Tools::Tiny' => '1.302175',
17519             'Test2::Util' => '1.302175',
17520             'Test2::Util::ExternalMeta'=> '1.302175',
17521             'Test2::Util::Facets2Legacy'=> '1.302175',
17522             'Test2::Util::HashBase' => '1.302175',
17523             'Test2::Util::Trace' => '1.302175',
17524             'Test::Builder' => '1.302175',
17525             'Test::Builder::Formatter'=> '1.302175',
17526             'Test::Builder::Module' => '1.302175',
17527             'Test::Builder::Tester' => '1.302175',
17528             'Test::Builder::Tester::Color'=> '1.302175',
17529             'Test::Builder::TodoDiag'=> '1.302175',
17530             'Test::More' => '1.302175',
17531             'Test::Simple' => '1.302175',
17532             'Test::Tester' => '1.302175',
17533             'Test::Tester::Capture' => '1.302175',
17534             'Test::Tester::CaptureRunner'=> '1.302175',
17535             'Test::Tester::Delegate'=> '1.302175',
17536             'Test::use::ok' => '1.302175',
17537             'Time::Piece' => '1.3401',
17538             'Time::Seconds' => '1.3401',
17539             'Unicode::UCD' => '0.75',
17540             'XS::APItest' => '1.09',
17541             '_charnames' => '1.47',
17542             'charnames' => '1.47',
17543             'ok' => '1.302175',
17544             'open' => '1.12',
17545             're' => '0.39',
17546             'warnings' => '1.47',
17547             },
17548             removed => {
17549             }
17550             },
17551             5.028003 => {
17552             delta_from => 5.028002,
17553             changed => {
17554             'B::Op_private' => '5.028003',
17555             'Config' => '5.028003',
17556             'Module::CoreList' => '5.20200601_28',
17557             'Module::CoreList::Utils'=> '5.20200601_28',
17558             },
17559             removed => {
17560             }
17561             },
17562             5.030003 => {
17563             delta_from => 5.030002,
17564             changed => {
17565             'B::Op_private' => '5.030003',
17566             'Config' => '5.030003',
17567             'Module::CoreList' => '5.20200601_30',
17568             'Module::CoreList::Utils'=> '5.20200601_30',
17569             },
17570             removed => {
17571             }
17572             },
17573             5.032000 => {
17574             delta_from => 5.031011,
17575             changed => {
17576             'B::Deparse' => '1.54',
17577             'B::Op_private' => '5.032000',
17578             'Benchmark' => '1.23',
17579             'Config' => '5.032',
17580             'Encode' => '3.06',
17581             'Encode::Guess' => '2.08',
17582             'File::Glob' => '1.33',
17583             'List::Util' => '1.55',
17584             'List::Util::XS' => '1.55',
17585             'Module::CoreList' => '5.20200620',
17586             'Module::CoreList::Utils'=> '5.20200620',
17587             'POSIX' => '1.94',
17588             'Scalar::Util' => '1.55',
17589             'Storable' => '3.21',
17590             'Sub::Util' => '1.55',
17591             'Thread::Queue' => '3.14',
17592             'Tie::Scalar' => '1.05',
17593             '_charnames' => '1.48',
17594             'charnames' => '1.48',
17595             'encoding' => '3.00',
17596             'perlfaq' => '5.20200523',
17597             're' => '0.40',
17598             'threads' => '2.25',
17599             },
17600             removed => {
17601             }
17602             },
17603             5.033000 => {
17604             delta_from => 5.032000,
17605             changed => {
17606             'B::Op_private' => '5.033000',
17607             'Config' => '5.033',
17608             'Module::CoreList' => '5.20200717',
17609             'Module::CoreList::Utils'=> '5.20200717',
17610             'feature' => '1.59',
17611             },
17612             removed => {
17613             }
17614             },
17615             5.033001 => {
17616             delta_from => 5.033,
17617             changed => {
17618             'B' => '1.81',
17619             'B::Deparse' => '1.55',
17620             'B::Op_private' => '5.033001',
17621             'Config' => '5.033001',
17622             'Data::Dumper' => '2.175',
17623             'Devel::PPPort' => '3.60',
17624             'Devel::Peek' => '1.29',
17625             'DynaLoader' => '1.48',
17626             'Errno' => '1.31',
17627             'Exporter' => '5.75',
17628             'Exporter::Heavy' => '5.75',
17629             'ExtUtils::Miniperl' => '1.10',
17630             'ExtUtils::PL2Bat' => '0.002',
17631             'ExtUtils::ParseXS' => '3.41',
17632             'ExtUtils::ParseXS::Constants'=> '3.41',
17633             'ExtUtils::ParseXS::CountLines'=> '3.41',
17634             'ExtUtils::ParseXS::Eval'=> '3.41',
17635             'ExtUtils::ParseXS::Utilities'=> '3.41',
17636             'Fcntl' => '1.14',
17637             'File::Path' => '2.17',
17638             'Hash::Util' => '0.24',
17639             'Hash::Util::FieldHash' => '1.21',
17640             'IO' => '1.44',
17641             'IO::Socket' => '1.44',
17642             'IO::Socket::UNIX' => '1.42',
17643             'IPC::Msg' => '2.08',
17644             'IPC::Semaphore' => '2.08',
17645             'IPC::SharedMem' => '2.08',
17646             'IPC::SysV' => '2.08',
17647             'JSON::PP' => '4.05',
17648             'JSON::PP::Boolean' => '4.05',
17649             'Math::Complex' => '1.5902',
17650             'Module::CoreList' => '5.20200820',
17651             'Module::CoreList::Utils'=> '5.20200820',
17652             'Net::Ping' => '2.73_01',
17653             'POSIX' => '1.95',
17654             'PerlIO::mmap' => '0.017',
17655             'Pod::Usage' => '1.70',
17656             'Safe' => '2.42',
17657             'Socket' => '2.030',
17658             'Storable' => '3.22',
17659             'Time::HiRes' => '1.9765',
17660             'Unicode::Normalize' => '1.28',
17661             'XS::APItest' => '1.11',
17662             'XS::Typemap' => '0.18',
17663             'feature' => '1.60',
17664             'mro' => '1.24',
17665             'strict' => '1.12',
17666             'threads' => '2.26',
17667             'threads::shared' => '1.62',
17668             'warnings' => '1.48',
17669             },
17670             removed => {
17671             'Moped::Msg' => 1,
17672             }
17673             },
17674             5.033002 => {
17675             delta_from => 5.033001,
17676             changed => {
17677             'Archive::Tar' => '2.38',
17678             'Archive::Tar::Constant'=> '2.38',
17679             'Archive::Tar::File' => '2.38',
17680             'B::Op_private' => '5.033002',
17681             'Compress::Raw::Bzip2' => '2.096',
17682             'Compress::Raw::Zlib' => '2.096',
17683             'Compress::Zlib' => '2.096',
17684             'Config' => '5.033002',
17685             'DB_File' => '1.854',
17686             'Env' => '1.05',
17687             'Errno' => '1.32',
17688             'ExtUtils::Install' => '2.18',
17689             'ExtUtils::Installed' => '2.18',
17690             'ExtUtils::Packlist' => '2.18',
17691             'Filter::Util::Call' => '1.60',
17692             'IO::Compress::Adapter::Bzip2'=> '2.096',
17693             'IO::Compress::Adapter::Deflate'=> '2.096',
17694             'IO::Compress::Adapter::Identity'=> '2.096',
17695             'IO::Compress::Base' => '2.096',
17696             'IO::Compress::Base::Common'=> '2.096',
17697             'IO::Compress::Bzip2' => '2.096',
17698             'IO::Compress::Deflate' => '2.096',
17699             'IO::Compress::Gzip' => '2.096',
17700             'IO::Compress::Gzip::Constants'=> '2.096',
17701             'IO::Compress::RawDeflate'=> '2.096',
17702             'IO::Compress::Zip' => '2.096',
17703             'IO::Compress::Zip::Constants'=> '2.096',
17704             'IO::Compress::Zlib::Constants'=> '2.096',
17705             'IO::Compress::Zlib::Extra'=> '2.096',
17706             'IO::Socket::IP' => '0.41',
17707             'IO::Uncompress::Adapter::Bunzip2'=> '2.096',
17708             'IO::Uncompress::Adapter::Identity'=> '2.096',
17709             'IO::Uncompress::Adapter::Inflate'=> '2.096',
17710             'IO::Uncompress::AnyInflate'=> '2.096',
17711             'IO::Uncompress::AnyUncompress'=> '2.096',
17712             'IO::Uncompress::Base' => '2.096',
17713             'IO::Uncompress::Bunzip2'=> '2.096',
17714             'IO::Uncompress::Gunzip'=> '2.096',
17715             'IO::Uncompress::Inflate'=> '2.096',
17716             'IO::Uncompress::RawInflate'=> '2.096',
17717             'IO::Uncompress::Unzip' => '2.096',
17718             'IO::Zlib' => '1.11',
17719             'Module::CoreList' => '5.20200920',
17720             'Module::CoreList::Utils'=> '5.20200920',
17721             'Module::Load::Conditional'=> '0.74',
17722             'Opcode' => '1.48',
17723             'PerlIO::scalar' => '0.31',
17724             'Safe' => '2.43',
17725             'Test2' => '1.302181',
17726             'Test2::API' => '1.302181',
17727             'Test2::API::Breakage' => '1.302181',
17728             'Test2::API::Context' => '1.302181',
17729             'Test2::API::Instance' => '1.302181',
17730             'Test2::API::InterceptResult'=> '1.302181',
17731             'Test2::API::InterceptResult::Event'=> '1.302181',
17732             'Test2::API::InterceptResult::Facet'=> '1.302181',
17733             'Test2::API::InterceptResult::Hub'=> '1.302181',
17734             'Test2::API::InterceptResult::Squasher'=> '1.302181',
17735             'Test2::API::Stack' => '1.302181',
17736             'Test2::Event' => '1.302181',
17737             'Test2::Event::Bail' => '1.302181',
17738             'Test2::Event::Diag' => '1.302181',
17739             'Test2::Event::Encoding'=> '1.302181',
17740             'Test2::Event::Exception'=> '1.302181',
17741             'Test2::Event::Fail' => '1.302181',
17742             'Test2::Event::Generic' => '1.302181',
17743             'Test2::Event::Note' => '1.302181',
17744             'Test2::Event::Ok' => '1.302181',
17745             'Test2::Event::Pass' => '1.302181',
17746             'Test2::Event::Plan' => '1.302181',
17747             'Test2::Event::Skip' => '1.302181',
17748             'Test2::Event::Subtest' => '1.302181',
17749             'Test2::Event::TAP::Version'=> '1.302181',
17750             'Test2::Event::V2' => '1.302181',
17751             'Test2::Event::Waiting' => '1.302181',
17752             'Test2::EventFacet' => '1.302181',
17753             'Test2::EventFacet::About'=> '1.302181',
17754             'Test2::EventFacet::Amnesty'=> '1.302181',
17755             'Test2::EventFacet::Assert'=> '1.302181',
17756             'Test2::EventFacet::Control'=> '1.302181',
17757             'Test2::EventFacet::Error'=> '1.302181',
17758             'Test2::EventFacet::Hub'=> '1.302181',
17759             'Test2::EventFacet::Info'=> '1.302181',
17760             'Test2::EventFacet::Info::Table'=> '1.302181',
17761             'Test2::EventFacet::Meta'=> '1.302181',
17762             'Test2::EventFacet::Parent'=> '1.302181',
17763             'Test2::EventFacet::Plan'=> '1.302181',
17764             'Test2::EventFacet::Render'=> '1.302181',
17765             'Test2::EventFacet::Trace'=> '1.302181',
17766             'Test2::Formatter' => '1.302181',
17767             'Test2::Formatter::TAP' => '1.302181',
17768             'Test2::Hub' => '1.302181',
17769             'Test2::Hub::Interceptor'=> '1.302181',
17770             'Test2::Hub::Interceptor::Terminator'=> '1.302181',
17771             'Test2::Hub::Subtest' => '1.302181',
17772             'Test2::IPC' => '1.302181',
17773             'Test2::IPC::Driver' => '1.302181',
17774             'Test2::IPC::Driver::Files'=> '1.302181',
17775             'Test2::Tools::Tiny' => '1.302181',
17776             'Test2::Util' => '1.302181',
17777             'Test2::Util::ExternalMeta'=> '1.302181',
17778             'Test2::Util::Facets2Legacy'=> '1.302181',
17779             'Test2::Util::HashBase' => '1.302181',
17780             'Test2::Util::Trace' => '1.302181',
17781             'Test::Builder' => '1.302181',
17782             'Test::Builder::Formatter'=> '1.302181',
17783             'Test::Builder::Module' => '1.302181',
17784             'Test::Builder::Tester' => '1.302181',
17785             'Test::Builder::Tester::Color'=> '1.302181',
17786             'Test::Builder::TodoDiag'=> '1.302181',
17787             'Test::More' => '1.302181',
17788             'Test::Simple' => '1.302181',
17789             'Test::Tester' => '1.302181',
17790             'Test::Tester::Capture' => '1.302181',
17791             'Test::Tester::CaptureRunner'=> '1.302181',
17792             'Test::Tester::Delegate'=> '1.302181',
17793             'Test::use::ok' => '1.302181',
17794             'ok' => '1.302181',
17795             'overload' => '1.32',
17796             },
17797             removed => {
17798             }
17799             },
17800             5.033003 => {
17801             delta_from => 5.033002,
17802             changed => {
17803             'Amiga::ARexx' => '0.05',
17804             'App::Cpan' => '1.676',
17805             'B::Op_private' => '5.033003',
17806             'CPAN' => '2.28',
17807             'CPAN::FTP' => '5.5013',
17808             'CPAN::FirstTime' => '5.5315',
17809             'Config' => '5.033003',
17810             'DB_File' => '1.855',
17811             'Data::Dumper' => '2.176',
17812             'Devel::PPPort' => '3.62',
17813             'Devel::Peek' => '1.30',
17814             'Digest' => '1.19',
17815             'Digest::MD5' => '2.58',
17816             'Digest::base' => '1.19',
17817             'Digest::file' => '1.19',
17818             'Encode' => '3.07',
17819             'Encode::GSM0338' => '2.08',
17820             'Errno' => '1.33',
17821             'Exporter' => '5.76',
17822             'Exporter::Heavy' => '5.76',
17823             'ExtUtils::Command' => '7.48',
17824             'ExtUtils::Command::MM' => '7.48',
17825             'ExtUtils::Liblist' => '7.48',
17826             'ExtUtils::Liblist::Kid'=> '7.48',
17827             'ExtUtils::MM' => '7.48',
17828             'ExtUtils::MM_AIX' => '7.48',
17829             'ExtUtils::MM_Any' => '7.48',
17830             'ExtUtils::MM_BeOS' => '7.48',
17831             'ExtUtils::MM_Cygwin' => '7.48',
17832             'ExtUtils::MM_DOS' => '7.48',
17833             'ExtUtils::MM_Darwin' => '7.48',
17834             'ExtUtils::MM_MacOS' => '7.48',
17835             'ExtUtils::MM_NW5' => '7.48',
17836             'ExtUtils::MM_OS2' => '7.48',
17837             'ExtUtils::MM_OS390' => '7.48',
17838             'ExtUtils::MM_QNX' => '7.48',
17839             'ExtUtils::MM_UWIN' => '7.48',
17840             'ExtUtils::MM_Unix' => '7.48',
17841             'ExtUtils::MM_VMS' => '7.48',
17842             'ExtUtils::MM_VOS' => '7.48',
17843             'ExtUtils::MM_Win32' => '7.48',
17844             'ExtUtils::MM_Win95' => '7.48',
17845             'ExtUtils::MY' => '7.48',
17846             'ExtUtils::MakeMaker' => '7.48',
17847             'ExtUtils::MakeMaker::Config'=> '7.48',
17848             'ExtUtils::MakeMaker::Locale'=> '7.48',
17849             'ExtUtils::MakeMaker::version'=> '7.48',
17850             'ExtUtils::MakeMaker::version::regex'=> '7.48',
17851             'ExtUtils::Mkbootstrap' => '7.48',
17852             'ExtUtils::Mksymlists' => '7.48',
17853             'ExtUtils::PL2Bat' => '0.003',
17854             'ExtUtils::testlib' => '7.48',
17855             'File::Temp' => '0.2311',
17856             'FindBin' => '1.52',
17857             'Getopt::Long' => '2.52',
17858             'Getopt::Std' => '1.13',
17859             'I18N::LangTags' => '0.45',
17860             'MIME::Base64' => '3.16',
17861             'MIME::QuotedPrint' => '3.16',
17862             'Module::CoreList' => '5.20201020',
17863             'Module::CoreList::Utils'=> '5.20201020',
17864             'Module::Load' => '0.36',
17865             'Pod::Checker' => '1.74',
17866             'Pod::Simple' => '3.41',
17867             'Pod::Simple::BlackBox' => '3.41',
17868             'Pod::Simple::Checker' => '3.41',
17869             'Pod::Simple::Debug' => '3.41',
17870             'Pod::Simple::DumpAsText'=> '3.41',
17871             'Pod::Simple::DumpAsXML'=> '3.41',
17872             'Pod::Simple::HTML' => '3.41',
17873             'Pod::Simple::HTMLBatch'=> '3.41',
17874             'Pod::Simple::LinkSection'=> '3.41',
17875             'Pod::Simple::Methody' => '3.41',
17876             'Pod::Simple::Progress' => '3.41',
17877             'Pod::Simple::PullParser'=> '3.41',
17878             'Pod::Simple::PullParserEndToken'=> '3.41',
17879             'Pod::Simple::PullParserStartToken'=> '3.41',
17880             'Pod::Simple::PullParserTextToken'=> '3.41',
17881             'Pod::Simple::PullParserToken'=> '3.41',
17882             'Pod::Simple::RTF' => '3.41',
17883             'Pod::Simple::Search' => '3.41',
17884             'Pod::Simple::SimpleTree'=> '3.41',
17885             'Pod::Simple::Text' => '3.41',
17886             'Pod::Simple::TextContent'=> '3.41',
17887             'Pod::Simple::TiedOutFH'=> '3.41',
17888             'Pod::Simple::Transcode'=> '3.41',
17889             'Pod::Simple::TranscodeDumb'=> '3.41',
17890             'Pod::Simple::TranscodeSmart'=> '3.41',
17891             'Pod::Simple::XHTML' => '3.41',
17892             'Pod::Simple::XMLOutStream'=> '3.41',
17893             'Pod::Usage' => '2.01',
17894             'Storable' => '3.23',
17895             'Symbol' => '1.09',
17896             'Test2' => '1.302182',
17897             'Test2::API' => '1.302182',
17898             'Test2::API::Breakage' => '1.302182',
17899             'Test2::API::Context' => '1.302182',
17900             'Test2::API::Instance' => '1.302182',
17901             'Test2::API::InterceptResult'=> '1.302182',
17902             'Test2::API::InterceptResult::Event'=> '1.302182',
17903             'Test2::API::InterceptResult::Facet'=> '1.302182',
17904             'Test2::API::InterceptResult::Hub'=> '1.302182',
17905             'Test2::API::InterceptResult::Squasher'=> '1.302182',
17906             'Test2::API::Stack' => '1.302182',
17907             'Test2::Event' => '1.302182',
17908             'Test2::Event::Bail' => '1.302182',
17909             'Test2::Event::Diag' => '1.302182',
17910             'Test2::Event::Encoding'=> '1.302182',
17911             'Test2::Event::Exception'=> '1.302182',
17912             'Test2::Event::Fail' => '1.302182',
17913             'Test2::Event::Generic' => '1.302182',
17914             'Test2::Event::Note' => '1.302182',
17915             'Test2::Event::Ok' => '1.302182',
17916             'Test2::Event::Pass' => '1.302182',
17917             'Test2::Event::Plan' => '1.302182',
17918             'Test2::Event::Skip' => '1.302182',
17919             'Test2::Event::Subtest' => '1.302182',
17920             'Test2::Event::TAP::Version'=> '1.302182',
17921             'Test2::Event::V2' => '1.302182',
17922             'Test2::Event::Waiting' => '1.302182',
17923             'Test2::EventFacet' => '1.302182',
17924             'Test2::EventFacet::About'=> '1.302182',
17925             'Test2::EventFacet::Amnesty'=> '1.302182',
17926             'Test2::EventFacet::Assert'=> '1.302182',
17927             'Test2::EventFacet::Control'=> '1.302182',
17928             'Test2::EventFacet::Error'=> '1.302182',
17929             'Test2::EventFacet::Hub'=> '1.302182',
17930             'Test2::EventFacet::Info'=> '1.302182',
17931             'Test2::EventFacet::Info::Table'=> '1.302182',
17932             'Test2::EventFacet::Meta'=> '1.302182',
17933             'Test2::EventFacet::Parent'=> '1.302182',
17934             'Test2::EventFacet::Plan'=> '1.302182',
17935             'Test2::EventFacet::Render'=> '1.302182',
17936             'Test2::EventFacet::Trace'=> '1.302182',
17937             'Test2::Formatter' => '1.302182',
17938             'Test2::Formatter::TAP' => '1.302182',
17939             'Test2::Hub' => '1.302182',
17940             'Test2::Hub::Interceptor'=> '1.302182',
17941             'Test2::Hub::Interceptor::Terminator'=> '1.302182',
17942             'Test2::Hub::Subtest' => '1.302182',
17943             'Test2::IPC' => '1.302182',
17944             'Test2::IPC::Driver' => '1.302182',
17945             'Test2::IPC::Driver::Files'=> '1.302182',
17946             'Test2::Tools::Tiny' => '1.302182',
17947             'Test2::Util' => '1.302182',
17948             'Test2::Util::ExternalMeta'=> '1.302182',
17949             'Test2::Util::Facets2Legacy'=> '1.302182',
17950             'Test2::Util::HashBase' => '1.302182',
17951             'Test2::Util::Trace' => '1.302182',
17952             'Test::Builder' => '1.302182',
17953             'Test::Builder::Formatter'=> '1.302182',
17954             'Test::Builder::Module' => '1.302182',
17955             'Test::Builder::Tester' => '1.302182',
17956             'Test::Builder::Tester::Color'=> '1.302182',
17957             'Test::Builder::TodoDiag'=> '1.302182',
17958             'Test::More' => '1.302182',
17959             'Test::Simple' => '1.302182',
17960             'Test::Tester' => '1.302182',
17961             'Test::Tester::Capture' => '1.302182',
17962             'Test::Tester::CaptureRunner'=> '1.302182',
17963             'Test::Tester::Delegate'=> '1.302182',
17964             'Test::use::ok' => '1.302182',
17965             'Tie::RefHash' => '1.40',
17966             'Time::Local' => '1.30',
17967             'Unicode::Collate' => '1.29',
17968             'Unicode::Collate::CJK::Big5'=> '1.29',
17969             'Unicode::Collate::CJK::GB2312'=> '1.29',
17970             'Unicode::Collate::CJK::JISX0208'=> '1.29',
17971             'Unicode::Collate::CJK::Korean'=> '1.29',
17972             'Unicode::Collate::CJK::Pinyin'=> '1.29',
17973             'Unicode::Collate::CJK::Stroke'=> '1.29',
17974             'Unicode::Collate::CJK::Zhuyin'=> '1.29',
17975             'Unicode::Collate::Locale'=> '1.29',
17976             'Win32' => '0.54',
17977             'XS::APItest' => '1.12',
17978             'bytes' => '1.08',
17979             'experimental' => '0.022',
17980             'feature' => '1.61',
17981             'if' => '0.0609',
17982             'locale' => '1.10',
17983             'mro' => '1.25',
17984             'ok' => '1.302182',
17985             'overload' => '1.33',
17986             're' => '0.41',
17987             'subs' => '1.04',
17988             'utf8' => '1.24',
17989             'version' => '0.9928',
17990             'version::regex' => '0.9928',
17991             },
17992             removed => {
17993             }
17994             },
17995             5.033004 => {
17996             delta_from => 5.033003,
17997             changed => {
17998             'B' => '1.82',
17999             'B::Op_private' => '5.033004',
18000             'Config' => '5.033004',
18001             'Cwd' => '3.79',
18002             'ExtUtils::CBuilder' => '0.280235',
18003             'ExtUtils::CBuilder::Base'=> '0.280235',
18004             'ExtUtils::CBuilder::Platform::Unix'=> '0.280235',
18005             'ExtUtils::CBuilder::Platform::VMS'=> '0.280235',
18006             'ExtUtils::CBuilder::Platform::Windows'=> '0.280235',
18007             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280235',
18008             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280235',
18009             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280235',
18010             'ExtUtils::CBuilder::Platform::aix'=> '0.280235',
18011             'ExtUtils::CBuilder::Platform::android'=> '0.280235',
18012             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280235',
18013             'ExtUtils::CBuilder::Platform::darwin'=> '0.280235',
18014             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280235',
18015             'ExtUtils::CBuilder::Platform::os2'=> '0.280235',
18016             'ExtUtils::Command' => '7.56',
18017             'ExtUtils::Command::MM' => '7.56',
18018             'ExtUtils::Liblist' => '7.56',
18019             'ExtUtils::Liblist::Kid'=> '7.56',
18020             'ExtUtils::MM' => '7.56',
18021             'ExtUtils::MM_AIX' => '7.56',
18022             'ExtUtils::MM_Any' => '7.56',
18023             'ExtUtils::MM_BeOS' => '7.56',
18024             'ExtUtils::MM_Cygwin' => '7.56',
18025             'ExtUtils::MM_DOS' => '7.56',
18026             'ExtUtils::MM_Darwin' => '7.56',
18027             'ExtUtils::MM_MacOS' => '7.56',
18028             'ExtUtils::MM_NW5' => '7.56',
18029             'ExtUtils::MM_OS2' => '7.56',
18030             'ExtUtils::MM_OS390' => '7.56',
18031             'ExtUtils::MM_QNX' => '7.56',
18032             'ExtUtils::MM_UWIN' => '7.56',
18033             'ExtUtils::MM_Unix' => '7.56',
18034             'ExtUtils::MM_VMS' => '7.56',
18035             'ExtUtils::MM_VOS' => '7.56',
18036             'ExtUtils::MM_Win32' => '7.56',
18037             'ExtUtils::MM_Win95' => '7.56',
18038             'ExtUtils::MY' => '7.56',
18039             'ExtUtils::MakeMaker' => '7.56',
18040             'ExtUtils::MakeMaker::Config'=> '7.56',
18041             'ExtUtils::MakeMaker::Locale'=> '7.56',
18042             'ExtUtils::MakeMaker::version'=> '7.56',
18043             'ExtUtils::MakeMaker::version::regex'=> '7.56',
18044             'ExtUtils::Mkbootstrap' => '7.56',
18045             'ExtUtils::Mksymlists' => '7.56',
18046             'ExtUtils::testlib' => '7.56',
18047             'File::Fetch' => '1.00',
18048             'File::Path' => '2.18',
18049             'File::Spec' => '3.79',
18050             'File::Spec::AmigaOS' => '3.79',
18051             'File::Spec::Cygwin' => '3.79',
18052             'File::Spec::Epoc' => '3.79',
18053             'File::Spec::Functions' => '3.79',
18054             'File::Spec::Mac' => '3.79',
18055             'File::Spec::OS2' => '3.79',
18056             'File::Spec::Unix' => '3.79',
18057             'File::Spec::VMS' => '3.79',
18058             'IPC::Msg' => '2.09',
18059             'IPC::Semaphore' => '2.09',
18060             'IPC::SharedMem' => '2.09',
18061             'IPC::SysV' => '2.09',
18062             'Module::CoreList' => '5.20201120',
18063             'Module::CoreList::Utils'=> '5.20201120',
18064             'Net::Ping' => '2.74',
18065             'Pod::Html' => '1.26',
18066             'Pod::Simple' => '3.42',
18067             'Pod::Simple::BlackBox' => '3.42',
18068             'Pod::Simple::Checker' => '3.42',
18069             'Pod::Simple::Debug' => '3.42',
18070             'Pod::Simple::DumpAsText'=> '3.42',
18071             'Pod::Simple::DumpAsXML'=> '3.42',
18072             'Pod::Simple::HTML' => '3.42',
18073             'Pod::Simple::HTMLBatch'=> '3.42',
18074             'Pod::Simple::LinkSection'=> '3.42',
18075             'Pod::Simple::Methody' => '3.42',
18076             'Pod::Simple::Progress' => '3.42',
18077             'Pod::Simple::PullParser'=> '3.42',
18078             'Pod::Simple::PullParserEndToken'=> '3.42',
18079             'Pod::Simple::PullParserStartToken'=> '3.42',
18080             'Pod::Simple::PullParserTextToken'=> '3.42',
18081             'Pod::Simple::PullParserToken'=> '3.42',
18082             'Pod::Simple::RTF' => '3.42',
18083             'Pod::Simple::Search' => '3.42',
18084             'Pod::Simple::SimpleTree'=> '3.42',
18085             'Pod::Simple::Text' => '3.42',
18086             'Pod::Simple::TextContent'=> '3.42',
18087             'Pod::Simple::TiedOutFH'=> '3.42',
18088             'Pod::Simple::Transcode'=> '3.42',
18089             'Pod::Simple::TranscodeDumb'=> '3.42',
18090             'Pod::Simple::TranscodeSmart'=> '3.42',
18091             'Pod::Simple::XHTML' => '3.42',
18092             'Pod::Simple::XMLOutStream'=> '3.42',
18093             'Test2' => '1.302183',
18094             'Test2::API' => '1.302183',
18095             'Test2::API::Breakage' => '1.302183',
18096             'Test2::API::Context' => '1.302183',
18097             'Test2::API::Instance' => '1.302183',
18098             'Test2::API::InterceptResult'=> '1.302183',
18099             'Test2::API::InterceptResult::Event'=> '1.302183',
18100             'Test2::API::InterceptResult::Facet'=> '1.302183',
18101             'Test2::API::InterceptResult::Hub'=> '1.302183',
18102             'Test2::API::InterceptResult::Squasher'=> '1.302183',
18103             'Test2::API::Stack' => '1.302183',
18104             'Test2::Event' => '1.302183',
18105             'Test2::Event::Bail' => '1.302183',
18106             'Test2::Event::Diag' => '1.302183',
18107             'Test2::Event::Encoding'=> '1.302183',
18108             'Test2::Event::Exception'=> '1.302183',
18109             'Test2::Event::Fail' => '1.302183',
18110             'Test2::Event::Generic' => '1.302183',
18111             'Test2::Event::Note' => '1.302183',
18112             'Test2::Event::Ok' => '1.302183',
18113             'Test2::Event::Pass' => '1.302183',
18114             'Test2::Event::Plan' => '1.302183',
18115             'Test2::Event::Skip' => '1.302183',
18116             'Test2::Event::Subtest' => '1.302183',
18117             'Test2::Event::TAP::Version'=> '1.302183',
18118             'Test2::Event::V2' => '1.302183',
18119             'Test2::Event::Waiting' => '1.302183',
18120             'Test2::EventFacet' => '1.302183',
18121             'Test2::EventFacet::About'=> '1.302183',
18122             'Test2::EventFacet::Amnesty'=> '1.302183',
18123             'Test2::EventFacet::Assert'=> '1.302183',
18124             'Test2::EventFacet::Control'=> '1.302183',
18125             'Test2::EventFacet::Error'=> '1.302183',
18126             'Test2::EventFacet::Hub'=> '1.302183',
18127             'Test2::EventFacet::Info'=> '1.302183',
18128             'Test2::EventFacet::Info::Table'=> '1.302183',
18129             'Test2::EventFacet::Meta'=> '1.302183',
18130             'Test2::EventFacet::Parent'=> '1.302183',
18131             'Test2::EventFacet::Plan'=> '1.302183',
18132             'Test2::EventFacet::Render'=> '1.302183',
18133             'Test2::EventFacet::Trace'=> '1.302183',
18134             'Test2::Formatter' => '1.302183',
18135             'Test2::Formatter::TAP' => '1.302183',
18136             'Test2::Hub' => '1.302183',
18137             'Test2::Hub::Interceptor'=> '1.302183',
18138             'Test2::Hub::Interceptor::Terminator'=> '1.302183',
18139             'Test2::Hub::Subtest' => '1.302183',
18140             'Test2::IPC' => '1.302183',
18141             'Test2::IPC::Driver' => '1.302183',
18142             'Test2::IPC::Driver::Files'=> '1.302183',
18143             'Test2::Tools::Tiny' => '1.302183',
18144             'Test2::Util' => '1.302183',
18145             'Test2::Util::ExternalMeta'=> '1.302183',
18146             'Test2::Util::Facets2Legacy'=> '1.302183',
18147             'Test2::Util::HashBase' => '1.302183',
18148             'Test2::Util::Trace' => '1.302183',
18149             'Test::Builder' => '1.302183',
18150             'Test::Builder::Formatter'=> '1.302183',
18151             'Test::Builder::Module' => '1.302183',
18152             'Test::Builder::Tester' => '1.302183',
18153             'Test::Builder::Tester::Color'=> '1.302183',
18154             'Test::Builder::TodoDiag'=> '1.302183',
18155             'Test::More' => '1.302183',
18156             'Test::Simple' => '1.302183',
18157             'Test::Tester' => '1.302183',
18158             'Test::Tester::Capture' => '1.302183',
18159             'Test::Tester::CaptureRunner'=> '1.302183',
18160             'Test::Tester::Delegate'=> '1.302183',
18161             'Test::use::ok' => '1.302183',
18162             'XS::APItest' => '1.13',
18163             'ok' => '1.302183',
18164             'perlfaq' => '5.20201107',
18165             },
18166             removed => {
18167             }
18168             },
18169             5.033005 => {
18170             delta_from => 5.033004,
18171             changed => {
18172             'App::Prove' => '3.43',
18173             'App::Prove::State' => '3.43',
18174             'App::Prove::State::Result'=> '3.43',
18175             'App::Prove::State::Result::Test'=> '3.43',
18176             'B::Op_private' => '5.033005',
18177             'Carp' => '1.51',
18178             'Carp::Heavy' => '1.51',
18179             'Config' => '5.033005',
18180             'Config::Perl::V' => '0.33',
18181             'Cwd' => '3.80',
18182             'DynaLoader' => '1.49',
18183             'Encode' => '3.08',
18184             'Encode::GSM0338' => '2.09',
18185             'ExtUtils::Install' => '2.20',
18186             'ExtUtils::Installed' => '2.20',
18187             'ExtUtils::Packlist' => '2.20',
18188             'ExtUtils::ParseXS' => '3.42',
18189             'ExtUtils::ParseXS::Constants'=> '3.42',
18190             'ExtUtils::ParseXS::CountLines'=> '3.42',
18191             'ExtUtils::ParseXS::Eval'=> '3.42',
18192             'ExtUtils::ParseXS::Utilities'=> '3.42',
18193             'File::Copy' => '2.35',
18194             'File::Find' => '1.38',
18195             'File::Spec' => '3.80',
18196             'File::Spec::AmigaOS' => '3.80',
18197             'File::Spec::Cygwin' => '3.80',
18198             'File::Spec::Epoc' => '3.80',
18199             'File::Spec::Functions' => '3.80',
18200             'File::Spec::Mac' => '3.80',
18201             'File::Spec::OS2' => '3.80',
18202             'File::Spec::Unix' => '3.80',
18203             'File::Spec::VMS' => '3.80',
18204             'File::Spec::Win32' => '3.80',
18205             'Module::CoreList' => '5.20201220',
18206             'Module::CoreList::Utils'=> '5.20201220',
18207             'Net::Cmd' => '3.12',
18208             'Net::Config' => '3.12',
18209             'Net::Domain' => '3.12',
18210             'Net::FTP' => '3.12',
18211             'Net::FTP::A' => '3.12',
18212             'Net::FTP::E' => '3.12',
18213             'Net::FTP::I' => '3.12',
18214             'Net::FTP::L' => '3.12',
18215             'Net::FTP::dataconn' => '3.12',
18216             'Net::NNTP' => '3.12',
18217             'Net::Netrc' => '3.12',
18218             'Net::POP3' => '3.12',
18219             'Net::SMTP' => '3.12',
18220             'Net::Time' => '3.12',
18221             'ODBM_File' => '1.17',
18222             'Opcode' => '1.49',
18223             'POSIX' => '1.96',
18224             'PerlIO::via::QuotedPrint'=> '0.09',
18225             'TAP::Base' => '3.43',
18226             'TAP::Formatter::Base' => '3.43',
18227             'TAP::Formatter::Color' => '3.43',
18228             'TAP::Formatter::Console'=> '3.43',
18229             'TAP::Formatter::Console::ParallelSession'=> '3.43',
18230             'TAP::Formatter::Console::Session'=> '3.43',
18231             'TAP::Formatter::File' => '3.43',
18232             'TAP::Formatter::File::Session'=> '3.43',
18233             'TAP::Formatter::Session'=> '3.43',
18234             'TAP::Harness' => '3.43',
18235             'TAP::Harness::Env' => '3.43',
18236             'TAP::Object' => '3.43',
18237             'TAP::Parser' => '3.43',
18238             'TAP::Parser::Aggregator'=> '3.43',
18239             'TAP::Parser::Grammar' => '3.43',
18240             'TAP::Parser::Iterator' => '3.43',
18241             'TAP::Parser::Iterator::Array'=> '3.43',
18242             'TAP::Parser::Iterator::Process'=> '3.43',
18243             'TAP::Parser::Iterator::Stream'=> '3.43',
18244             'TAP::Parser::IteratorFactory'=> '3.43',
18245             'TAP::Parser::Multiplexer'=> '3.43',
18246             'TAP::Parser::Result' => '3.43',
18247             'TAP::Parser::Result::Bailout'=> '3.43',
18248             'TAP::Parser::Result::Comment'=> '3.43',
18249             'TAP::Parser::Result::Plan'=> '3.43',
18250             'TAP::Parser::Result::Pragma'=> '3.43',
18251             'TAP::Parser::Result::Test'=> '3.43',
18252             'TAP::Parser::Result::Unknown'=> '3.43',
18253             'TAP::Parser::Result::Version'=> '3.43',
18254             'TAP::Parser::Result::YAML'=> '3.43',
18255             'TAP::Parser::ResultFactory'=> '3.43',
18256             'TAP::Parser::Scheduler'=> '3.43',
18257             'TAP::Parser::Scheduler::Job'=> '3.43',
18258             'TAP::Parser::Scheduler::Spinner'=> '3.43',
18259             'TAP::Parser::Source' => '3.43',
18260             'TAP::Parser::SourceHandler'=> '3.43',
18261             'TAP::Parser::SourceHandler::Executable'=> '3.43',
18262             'TAP::Parser::SourceHandler::File'=> '3.43',
18263             'TAP::Parser::SourceHandler::Handle'=> '3.43',
18264             'TAP::Parser::SourceHandler::Perl'=> '3.43',
18265             'TAP::Parser::SourceHandler::RawTAP'=> '3.43',
18266             'TAP::Parser::YAMLish::Reader'=> '3.43',
18267             'TAP::Parser::YAMLish::Writer'=> '3.43',
18268             'Test::Harness' => '3.43',
18269             'Text::Balanced' => '2.04',
18270             'Time::HiRes' => '1.9766',
18271             'XS::APItest' => '1.14',
18272             'warnings' => '1.49',
18273             },
18274             removed => {
18275             }
18276             },
18277             5.033006 => {
18278             delta_from => 5.033005,
18279             changed => {
18280             'B::Op_private' => '5.033006',
18281             'Carp' => '1.52',
18282             'Carp::Heavy' => '1.52',
18283             'Compress::Raw::Bzip2' => '2.100',
18284             'Compress::Raw::Zlib' => '2.100',
18285             'Compress::Zlib' => '2.100',
18286             'Config' => '5.033006',
18287             'DynaLoader' => '1.50',
18288             'ExtUtils::Command' => '7.58',
18289             'ExtUtils::Command::MM' => '7.58',
18290             'ExtUtils::Liblist' => '7.58',
18291             'ExtUtils::Liblist::Kid'=> '7.58',
18292             'ExtUtils::MM' => '7.58',
18293             'ExtUtils::MM_AIX' => '7.58',
18294             'ExtUtils::MM_Any' => '7.58',
18295             'ExtUtils::MM_BeOS' => '7.58',
18296             'ExtUtils::MM_Cygwin' => '7.58',
18297             'ExtUtils::MM_DOS' => '7.58',
18298             'ExtUtils::MM_Darwin' => '7.58',
18299             'ExtUtils::MM_MacOS' => '7.58',
18300             'ExtUtils::MM_NW5' => '7.58',
18301             'ExtUtils::MM_OS2' => '7.58',
18302             'ExtUtils::MM_OS390' => '7.58',
18303             'ExtUtils::MM_QNX' => '7.58',
18304             'ExtUtils::MM_UWIN' => '7.58',
18305             'ExtUtils::MM_Unix' => '7.58',
18306             'ExtUtils::MM_VMS' => '7.58',
18307             'ExtUtils::MM_VOS' => '7.58',
18308             'ExtUtils::MM_Win32' => '7.58',
18309             'ExtUtils::MM_Win95' => '7.58',
18310             'ExtUtils::MY' => '7.58',
18311             'ExtUtils::MakeMaker' => '7.58',
18312             'ExtUtils::MakeMaker::Config'=> '7.58',
18313             'ExtUtils::MakeMaker::Locale'=> '7.58',
18314             'ExtUtils::MakeMaker::version'=> '7.58',
18315             'ExtUtils::MakeMaker::version::regex'=> '7.58',
18316             'ExtUtils::Manifest' => '1.73',
18317             'ExtUtils::Mkbootstrap' => '7.58',
18318             'ExtUtils::Mksymlists' => '7.58',
18319             'ExtUtils::testlib' => '7.58',
18320             'GDBM_File' => '1.19',
18321             'IO' => '1.45',
18322             'IO::Compress::Adapter::Bzip2'=> '2.100',
18323             'IO::Compress::Adapter::Deflate'=> '2.100',
18324             'IO::Compress::Adapter::Identity'=> '2.100',
18325             'IO::Compress::Base' => '2.100',
18326             'IO::Compress::Base::Common'=> '2.100',
18327             'IO::Compress::Bzip2' => '2.100',
18328             'IO::Compress::Deflate' => '2.100',
18329             'IO::Compress::Gzip' => '2.100',
18330             'IO::Compress::Gzip::Constants'=> '2.100',
18331             'IO::Compress::RawDeflate'=> '2.100',
18332             'IO::Compress::Zip' => '2.100',
18333             'IO::Compress::Zip::Constants'=> '2.100',
18334             'IO::Compress::Zlib::Constants'=> '2.100',
18335             'IO::Compress::Zlib::Extra'=> '2.100',
18336             'IO::Dir' => '1.45',
18337             'IO::File' => '1.45',
18338             'IO::Handle' => '1.45',
18339             'IO::Pipe' => '1.45',
18340             'IO::Poll' => '1.45',
18341             'IO::Seekable' => '1.45',
18342             'IO::Select' => '1.45',
18343             'IO::Socket' => '1.45',
18344             'IO::Socket::INET' => '1.45',
18345             'IO::Socket::UNIX' => '1.45',
18346             'IO::Uncompress::Adapter::Bunzip2'=> '2.100',
18347             'IO::Uncompress::Adapter::Identity'=> '2.100',
18348             'IO::Uncompress::Adapter::Inflate'=> '2.100',
18349             'IO::Uncompress::AnyInflate'=> '2.100',
18350             'IO::Uncompress::AnyUncompress'=> '2.100',
18351             'IO::Uncompress::Base' => '2.100',
18352             'IO::Uncompress::Bunzip2'=> '2.100',
18353             'IO::Uncompress::Gunzip'=> '2.100',
18354             'IO::Uncompress::Inflate'=> '2.100',
18355             'IO::Uncompress::RawInflate'=> '2.100',
18356             'IO::Uncompress::Unzip' => '2.100',
18357             'Module::CoreList' => '5.20210120',
18358             'Module::CoreList::Utils'=> '5.20210120',
18359             'Net::Cmd' => '3.13',
18360             'Net::Config' => '3.13',
18361             'Net::Domain' => '3.13',
18362             'Net::FTP' => '3.13',
18363             'Net::FTP::A' => '3.13',
18364             'Net::FTP::E' => '3.13',
18365             'Net::FTP::I' => '3.13',
18366             'Net::FTP::L' => '3.13',
18367             'Net::FTP::dataconn' => '3.13',
18368             'Net::NNTP' => '3.13',
18369             'Net::Netrc' => '3.13',
18370             'Net::POP3' => '3.13',
18371             'Net::SMTP' => '3.13',
18372             'Net::Time' => '3.13',
18373             'POSIX' => '1.97',
18374             'Socket' => '2.031',
18375             'XS::APItest' => '1.15',
18376             'feature' => '1.62',
18377             'warnings' => '1.50',
18378             },
18379             removed => {
18380             }
18381             },
18382             5.032001 => {
18383             delta_from => 5.032000,
18384             changed => {
18385             'B::Op_private' => '5.032001',
18386             'Config' => '5.032001',
18387             'Data::Dumper' => '2.174_01',
18388             'DynaLoader' => '1.47_01',
18389             'ExtUtils::Liblist::Kid'=> '7.44_01',
18390             'Module::CoreList' => '5.20210123',
18391             'Module::CoreList::Utils'=> '5.20210123',
18392             'Opcode' => '1.48',
18393             'Safe' => '2.41_01',
18394             'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
18395             },
18396             removed => {
18397             }
18398             },
18399             5.033007 => {
18400             delta_from => 5.033006,
18401             changed => {
18402             'B::Deparse' => '1.56',
18403             'B::Op_private' => '5.033007',
18404             'Config' => '5.033007',
18405             'ExtUtils::CBuilder' => '0.280236',
18406             'ExtUtils::CBuilder::Base'=> '0.280236',
18407             'ExtUtils::CBuilder::Platform::Unix'=> '0.280236',
18408             'ExtUtils::CBuilder::Platform::VMS'=> '0.280236',
18409             'ExtUtils::CBuilder::Platform::Windows'=> '0.280236',
18410             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280236',
18411             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280236',
18412             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280236',
18413             'ExtUtils::CBuilder::Platform::aix'=> '0.280236',
18414             'ExtUtils::CBuilder::Platform::android'=> '0.280236',
18415             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280236',
18416             'ExtUtils::CBuilder::Platform::darwin'=> '0.280236',
18417             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280236',
18418             'ExtUtils::CBuilder::Platform::os2'=> '0.280236',
18419             'ExtUtils::Command' => '7.60',
18420             'ExtUtils::Command::MM' => '7.60',
18421             'ExtUtils::Liblist' => '7.60',
18422             'ExtUtils::Liblist::Kid'=> '7.60',
18423             'ExtUtils::MM' => '7.60',
18424             'ExtUtils::MM_AIX' => '7.60',
18425             'ExtUtils::MM_Any' => '7.60',
18426             'ExtUtils::MM_BeOS' => '7.60',
18427             'ExtUtils::MM_Cygwin' => '7.60',
18428             'ExtUtils::MM_DOS' => '7.60',
18429             'ExtUtils::MM_Darwin' => '7.60',
18430             'ExtUtils::MM_MacOS' => '7.60',
18431             'ExtUtils::MM_NW5' => '7.60',
18432             'ExtUtils::MM_OS2' => '7.60',
18433             'ExtUtils::MM_OS390' => '7.60',
18434             'ExtUtils::MM_QNX' => '7.60',
18435             'ExtUtils::MM_UWIN' => '7.60',
18436             'ExtUtils::MM_Unix' => '7.60',
18437             'ExtUtils::MM_VMS' => '7.60',
18438             'ExtUtils::MM_VOS' => '7.60',
18439             'ExtUtils::MM_Win32' => '7.60',
18440             'ExtUtils::MM_Win95' => '7.60',
18441             'ExtUtils::MY' => '7.60',
18442             'ExtUtils::MakeMaker' => '7.60',
18443             'ExtUtils::MakeMaker::Config'=> '7.60',
18444             'ExtUtils::MakeMaker::Locale'=> '7.60',
18445             'ExtUtils::MakeMaker::version'=> '7.60',
18446             'ExtUtils::MakeMaker::version::regex'=> '7.60',
18447             'ExtUtils::Mkbootstrap' => '7.60',
18448             'ExtUtils::Mksymlists' => '7.60',
18449             'ExtUtils::PL2Bat' => '0.004',
18450             'ExtUtils::testlib' => '7.60',
18451             'Fatal' => '2.34',
18452             'File::Find' => '1.39',
18453             'Hash::Util' => '0.25',
18454             'IO' => '1.46',
18455             'IO::Dir' => '1.46',
18456             'IO::File' => '1.46',
18457             'IO::Handle' => '1.46',
18458             'IO::Pipe' => '1.46',
18459             'IO::Poll' => '1.46',
18460             'IO::Seekable' => '1.46',
18461             'IO::Select' => '1.46',
18462             'IO::Socket' => '1.46',
18463             'IO::Socket::INET' => '1.46',
18464             'IO::Socket::UNIX' => '1.46',
18465             'JSON::PP' => '4.06',
18466             'JSON::PP::Boolean' => '4.06',
18467             'Module::CoreList' => '5.20210220',
18468             'Module::CoreList::Utils'=> '5.20210220',
18469             'Opcode' => '1.50',
18470             'PerlIO::encoding' => '0.30',
18471             'Time::HiRes' => '1.9767',
18472             'autodie' => '2.34',
18473             'autodie::Scope::Guard' => '2.34',
18474             'autodie::Scope::GuardStack'=> '2.34',
18475             'autodie::Util' => '2.34',
18476             'autodie::exception' => '2.34',
18477             'autodie::exception::system'=> '2.34',
18478             'autodie::hints' => '2.34',
18479             'autodie::skip' => '2.34',
18480             'feature' => '1.63',
18481             'mro' => '1.25_001',
18482             'warnings' => '1.51',
18483             },
18484             removed => {
18485             }
18486             },
18487             5.033008 => {
18488             delta_from => 5.033007,
18489             changed => {
18490             'B::Op_private' => '5.033008',
18491             'Compress::Raw::Bzip2' => '2.101',
18492             'Compress::Raw::Zlib' => '2.101',
18493             'Compress::Zlib' => '2.102',
18494             'Config' => '5.033008',
18495             'Data::Dumper' => '2.177',
18496             'IO::Compress::Adapter::Bzip2'=> '2.102',
18497             'IO::Compress::Adapter::Deflate'=> '2.102',
18498             'IO::Compress::Adapter::Identity'=> '2.102',
18499             'IO::Compress::Base' => '2.102',
18500             'IO::Compress::Base::Common'=> '2.102',
18501             'IO::Compress::Bzip2' => '2.102',
18502             'IO::Compress::Deflate' => '2.102',
18503             'IO::Compress::Gzip' => '2.102',
18504             'IO::Compress::Gzip::Constants'=> '2.102',
18505             'IO::Compress::RawDeflate'=> '2.102',
18506             'IO::Compress::Zip' => '2.102',
18507             'IO::Compress::Zip::Constants'=> '2.102',
18508             'IO::Compress::Zlib::Constants'=> '2.102',
18509             'IO::Compress::Zlib::Extra'=> '2.102',
18510             'IO::Uncompress::Adapter::Bunzip2'=> '2.102',
18511             'IO::Uncompress::Adapter::Identity'=> '2.102',
18512             'IO::Uncompress::Adapter::Inflate'=> '2.102',
18513             'IO::Uncompress::AnyInflate'=> '2.102',
18514             'IO::Uncompress::AnyUncompress'=> '2.102',
18515             'IO::Uncompress::Base' => '2.102',
18516             'IO::Uncompress::Bunzip2'=> '2.102',
18517             'IO::Uncompress::Gunzip'=> '2.102',
18518             'IO::Uncompress::Inflate'=> '2.102',
18519             'IO::Uncompress::RawInflate'=> '2.102',
18520             'IO::Uncompress::Unzip' => '2.102',
18521             'Module::CoreList' => '5.20210320',
18522             'Module::CoreList::Utils'=> '5.20210320',
18523             'Pod::Html' => '1.27',
18524             'Win32' => '0.57',
18525             },
18526             removed => {
18527             }
18528             },
18529             5.033009 => {
18530             delta_from => 5.033008,
18531             changed => {
18532             'B::Op_private' => '5.033009',
18533             'Config' => '5.033009',
18534             'Data::Dumper' => '2.178',
18535             'ExtUtils::Command' => '7.62',
18536             'ExtUtils::Command::MM' => '7.62',
18537             'ExtUtils::Liblist' => '7.62',
18538             'ExtUtils::Liblist::Kid'=> '7.62',
18539             'ExtUtils::MM' => '7.62',
18540             'ExtUtils::MM_AIX' => '7.62',
18541             'ExtUtils::MM_Any' => '7.62',
18542             'ExtUtils::MM_BeOS' => '7.62',
18543             'ExtUtils::MM_Cygwin' => '7.62',
18544             'ExtUtils::MM_DOS' => '7.62',
18545             'ExtUtils::MM_Darwin' => '7.62',
18546             'ExtUtils::MM_MacOS' => '7.62',
18547             'ExtUtils::MM_NW5' => '7.62',
18548             'ExtUtils::MM_OS2' => '7.62',
18549             'ExtUtils::MM_OS390' => '7.62',
18550             'ExtUtils::MM_QNX' => '7.62',
18551             'ExtUtils::MM_UWIN' => '7.62',
18552             'ExtUtils::MM_Unix' => '7.62',
18553             'ExtUtils::MM_VMS' => '7.62',
18554             'ExtUtils::MM_VOS' => '7.62',
18555             'ExtUtils::MM_Win32' => '7.62',
18556             'ExtUtils::MM_Win95' => '7.62',
18557             'ExtUtils::MY' => '7.62',
18558             'ExtUtils::MakeMaker' => '7.62',
18559             'ExtUtils::MakeMaker::Config'=> '7.62',
18560             'ExtUtils::MakeMaker::Locale'=> '7.62',
18561             'ExtUtils::MakeMaker::version'=> '7.62',
18562             'ExtUtils::MakeMaker::version::regex'=> '7.62',
18563             'ExtUtils::Mkbootstrap' => '7.62',
18564             'ExtUtils::Mksymlists' => '7.62',
18565             'ExtUtils::ParseXS' => '3.43',
18566             'ExtUtils::ParseXS::Constants'=> '3.43',
18567             'ExtUtils::ParseXS::CountLines'=> '3.43',
18568             'ExtUtils::ParseXS::Eval'=> '3.43',
18569             'ExtUtils::ParseXS::Utilities'=> '3.43',
18570             'ExtUtils::Typemaps' => '3.43',
18571             'ExtUtils::Typemaps::Cmd'=> '3.43',
18572             'ExtUtils::Typemaps::InputMap'=> '3.43',
18573             'ExtUtils::Typemaps::OutputMap'=> '3.43',
18574             'ExtUtils::Typemaps::Type'=> '3.43',
18575             'ExtUtils::testlib' => '7.62',
18576             'Module::CoreList' => '5.20210420',
18577             'Module::CoreList::Utils'=> '5.20210420',
18578             'NEXT' => '0.68',
18579             'XS::APItest' => '1.16',
18580             'feature' => '1.64',
18581             'perlfaq' => '5.20210411',
18582             },
18583             removed => {
18584             }
18585             },
18586             5.034000 => {
18587             delta_from => 5.033009,
18588             changed => {
18589             'B::Op_private' => '5.034000',
18590             'Config' => '5.034',
18591             'Data::Dumper' => '2.179',
18592             'Module::CoreList' => '5.20210520',
18593             'Module::CoreList::Utils'=> '5.20210520',
18594             'experimental' => '0.024',
18595             },
18596             removed => {
18597             }
18598             },
18599             5.035000 => {
18600             delta_from => 5.034,
18601             changed => {
18602             'B::Op_private' => '5.035000',
18603             'Config' => '5.035',
18604             'Module::CoreList' => '5.20210521',
18605             'Module::CoreList::Utils'=> '5.20210521',
18606             'feature' => '1.65',
18607             },
18608             removed => {
18609             }
18610             },
18611             5.035001 => {
18612             delta_from => 5.035000,
18613             changed => {
18614             'B::Deparse' => '1.57',
18615             'B::Op_private' => '5.035001',
18616             'Config' => '5.035001',
18617             'Cwd' => '3.81',
18618             'Data::Dumper' => '2.181',
18619             'File::Copy' => '2.36',
18620             'File::Glob' => '1.35',
18621             'File::Spec' => '3.81',
18622             'File::Spec::AmigaOS' => '3.81',
18623             'File::Spec::Cygwin' => '3.81',
18624             'File::Spec::Epoc' => '3.81',
18625             'File::Spec::Functions' => '3.81',
18626             'File::Spec::Mac' => '3.81',
18627             'File::Spec::OS2' => '3.81',
18628             'File::Spec::Unix' => '3.81',
18629             'File::Spec::VMS' => '3.81',
18630             'File::Spec::Win32' => '3.81',
18631             'File::stat' => '1.10',
18632             'IO' => '1.47',
18633             'IO::Dir' => '1.47',
18634             'IO::File' => '1.47',
18635             'IO::Handle' => '1.47',
18636             'IO::Pipe' => '1.47',
18637             'IO::Poll' => '1.47',
18638             'IO::Seekable' => '1.47',
18639             'IO::Select' => '1.47',
18640             'IO::Socket' => '1.47',
18641             'IO::Socket::INET' => '1.47',
18642             'IO::Socket::UNIX' => '1.47',
18643             'List::Util' => '1.56',
18644             'List::Util::XS' => '1.56',
18645             'Module::CoreList' => '5.20210620',
18646             'Module::CoreList::Utils'=> '5.20210620',
18647             'Opcode' => '1.51',
18648             'POSIX' => '1.98',
18649             'Scalar::Util' => '1.56',
18650             'Socket' => '2.032',
18651             'Sub::Util' => '1.56',
18652             'Test2' => '1.302185',
18653             'Test2::API' => '1.302185',
18654             'Test2::API::Breakage' => '1.302185',
18655             'Test2::API::Context' => '1.302185',
18656             'Test2::API::Instance' => '1.302185',
18657             'Test2::API::InterceptResult'=> '1.302185',
18658             'Test2::API::InterceptResult::Event'=> '1.302185',
18659             'Test2::API::InterceptResult::Facet'=> '1.302185',
18660             'Test2::API::InterceptResult::Hub'=> '1.302185',
18661             'Test2::API::InterceptResult::Squasher'=> '1.302185',
18662             'Test2::API::Stack' => '1.302185',
18663             'Test2::Event' => '1.302185',
18664             'Test2::Event::Bail' => '1.302185',
18665             'Test2::Event::Diag' => '1.302185',
18666             'Test2::Event::Encoding'=> '1.302185',
18667             'Test2::Event::Exception'=> '1.302185',
18668             'Test2::Event::Fail' => '1.302185',
18669             'Test2::Event::Generic' => '1.302185',
18670             'Test2::Event::Note' => '1.302185',
18671             'Test2::Event::Ok' => '1.302185',
18672             'Test2::Event::Pass' => '1.302185',
18673             'Test2::Event::Plan' => '1.302185',
18674             'Test2::Event::Skip' => '1.302185',
18675             'Test2::Event::Subtest' => '1.302185',
18676             'Test2::Event::TAP::Version'=> '1.302185',
18677             'Test2::Event::V2' => '1.302185',
18678             'Test2::Event::Waiting' => '1.302185',
18679             'Test2::EventFacet' => '1.302185',
18680             'Test2::EventFacet::About'=> '1.302185',
18681             'Test2::EventFacet::Amnesty'=> '1.302185',
18682             'Test2::EventFacet::Assert'=> '1.302185',
18683             'Test2::EventFacet::Control'=> '1.302185',
18684             'Test2::EventFacet::Error'=> '1.302185',
18685             'Test2::EventFacet::Hub'=> '1.302185',
18686             'Test2::EventFacet::Info'=> '1.302185',
18687             'Test2::EventFacet::Info::Table'=> '1.302185',
18688             'Test2::EventFacet::Meta'=> '1.302185',
18689             'Test2::EventFacet::Parent'=> '1.302185',
18690             'Test2::EventFacet::Plan'=> '1.302185',
18691             'Test2::EventFacet::Render'=> '1.302185',
18692             'Test2::EventFacet::Trace'=> '1.302185',
18693             'Test2::Formatter' => '1.302185',
18694             'Test2::Formatter::TAP' => '1.302185',
18695             'Test2::Hub' => '1.302185',
18696             'Test2::Hub::Interceptor'=> '1.302185',
18697             'Test2::Hub::Interceptor::Terminator'=> '1.302185',
18698             'Test2::Hub::Subtest' => '1.302185',
18699             'Test2::IPC' => '1.302185',
18700             'Test2::IPC::Driver' => '1.302185',
18701             'Test2::IPC::Driver::Files'=> '1.302185',
18702             'Test2::Tools::Tiny' => '1.302185',
18703             'Test2::Util' => '1.302185',
18704             'Test2::Util::ExternalMeta'=> '1.302185',
18705             'Test2::Util::Facets2Legacy'=> '1.302185',
18706             'Test2::Util::HashBase' => '1.302185',
18707             'Test2::Util::Trace' => '1.302185',
18708             'Test::Builder' => '1.302185',
18709             'Test::Builder::Formatter'=> '1.302185',
18710             'Test::Builder::Module' => '1.302185',
18711             'Test::Builder::Tester' => '1.302185',
18712             'Test::Builder::Tester::Color'=> '1.302185',
18713             'Test::Builder::TodoDiag'=> '1.302185',
18714             'Test::More' => '1.302185',
18715             'Test::Simple' => '1.302185',
18716             'Test::Tester' => '1.302185',
18717             'Test::Tester::Capture' => '1.302185',
18718             'Test::Tester::CaptureRunner'=> '1.302185',
18719             'Test::Tester::Delegate'=> '1.302185',
18720             'Test::use::ok' => '1.302185',
18721             'Unicode::Collate' => '1.30',
18722             'Unicode::Collate::CJK::Big5'=> '1.30',
18723             'Unicode::Collate::CJK::GB2312'=> '1.30',
18724             'Unicode::Collate::CJK::JISX0208'=> '1.30',
18725             'Unicode::Collate::CJK::Korean'=> '1.30',
18726             'Unicode::Collate::CJK::Pinyin'=> '1.30',
18727             'Unicode::Collate::CJK::Stroke'=> '1.30',
18728             'Unicode::Collate::CJK::Zhuyin'=> '1.30',
18729             'Unicode::Collate::Locale'=> '1.30',
18730             'Unicode::UCD' => '0.76',
18731             'XS::APItest' => '1.17',
18732             'feature' => '1.66',
18733             'ok' => '1.302185',
18734             'open' => '1.13',
18735             'perlfaq' => '5.20210520',
18736             'version' => '0.9929',
18737             'version::regex' => '0.9929',
18738             },
18739             removed => {
18740             }
18741             },
18742             5.035002 => {
18743             delta_from => 5.035001,
18744             changed => {
18745             'Amiga::ARexx' => '0.06',
18746             'Amiga::Exec' => '0.03',
18747             'B::Concise' => '1.005',
18748             'B::Op_private' => '5.035002',
18749             'Config' => '5.035002',
18750             'Cwd' => '3.82',
18751             'DB_File' => '1.856',
18752             'Data::Dumper' => '2.183',
18753             'Devel::PPPort' => '3.63',
18754             'Devel::Peek' => '1.31',
18755             'DynaLoader' => '1.51',
18756             'Encode' => '3.10',
18757             'Encode::JP' => '2.05',
18758             'Errno' => '1.34',
18759             'ExtUtils::Miniperl' => '1.11',
18760             'Fcntl' => '1.15',
18761             'File::Find' => '1.39_01',
18762             'File::Glob' => '1.36',
18763             'File::stat' => '1.11',
18764             'GDBM_File' => '1.20',
18765             'Hash::Util' => '0.26',
18766             'Hash::Util::FieldHash' => '1.22',
18767             'I18N::Langinfo' => '0.20',
18768             'IPC::Open2' => '1.06',
18769             'IPC::Open3' => '1.22',
18770             'Math::BigFloat' => '1.999823',
18771             'Math::BigFloat::Trace' => '0.53',
18772             'Math::BigInt' => '1.999823',
18773             'Math::BigInt::Calc' => '1.999823',
18774             'Math::BigInt::FastCalc'=> '0.5010',
18775             'Math::BigInt::Lib' => '1.999823',
18776             'Math::BigInt::Trace' => '0.53',
18777             'Math::BigRat' => '0.2617',
18778             'Module::CoreList' => '5.20210723',
18779             'Module::CoreList::Utils'=> '5.20210723',
18780             'Opcode' => '1.52',
18781             'PerlIO' => '1.12',
18782             'Pod::Functions' => '1.14',
18783             'Pod::Html' => '1.31',
18784             'Pod::Html::Util' => '1.31',
18785             'Pod::Simple' => '3.43',
18786             'Pod::Simple::BlackBox' => '3.43',
18787             'Pod::Simple::Checker' => '3.43',
18788             'Pod::Simple::Debug' => '3.43',
18789             'Pod::Simple::DumpAsText'=> '3.43',
18790             'Pod::Simple::DumpAsXML'=> '3.43',
18791             'Pod::Simple::HTML' => '3.43',
18792             'Pod::Simple::HTMLBatch'=> '3.43',
18793             'Pod::Simple::LinkSection'=> '3.43',
18794             'Pod::Simple::Methody' => '3.43',
18795             'Pod::Simple::Progress' => '3.43',
18796             'Pod::Simple::PullParser'=> '3.43',
18797             'Pod::Simple::PullParserEndToken'=> '3.43',
18798             'Pod::Simple::PullParserStartToken'=> '3.43',
18799             'Pod::Simple::PullParserTextToken'=> '3.43',
18800             'Pod::Simple::PullParserToken'=> '3.43',
18801             'Pod::Simple::RTF' => '3.43',
18802             'Pod::Simple::Search' => '3.43',
18803             'Pod::Simple::SimpleTree'=> '3.43',
18804             'Pod::Simple::Text' => '3.43',
18805             'Pod::Simple::TextContent'=> '3.43',
18806             'Pod::Simple::TiedOutFH'=> '3.43',
18807             'Pod::Simple::Transcode'=> '3.43',
18808             'Pod::Simple::TranscodeDumb'=> '3.43',
18809             'Pod::Simple::TranscodeSmart'=> '3.43',
18810             'Pod::Simple::XHTML' => '3.43',
18811             'Pod::Simple::XMLOutStream'=> '3.43',
18812             'Sys::Hostname' => '1.24',
18813             'Text::Tabs' => '2021.0717',
18814             'Text::Wrap' => '2021.0717',
18815             'Time::HiRes' => '1.9768',
18816             'Unicode::UCD' => '0.77',
18817             'VMS::Filespec' => '1.13',
18818             'VMS::Stdio' => '2.46',
18819             'XSLoader' => '0.31',
18820             'bigint' => '0.53',
18821             'bignum' => '0.53',
18822             'bigrat' => '0.53',
18823             'if' => '0.0610',
18824             'threads' => '2.27',
18825             'warnings' => '1.52',
18826             },
18827             removed => {
18828             }
18829             },
18830             5.035003 => {
18831             delta_from => 5.035002,
18832             changed => {
18833             'Archive::Tar' => '2.40',
18834             'Archive::Tar::Constant'=> '2.40',
18835             'Archive::Tar::File' => '2.40',
18836             'B::Op_private' => '5.035003',
18837             'Config' => '5.035003',
18838             'Encode' => '3.12',
18839             'Encode::GSM0338' => '2.10',
18840             'Encode::Unicode' => '2.19',
18841             'Module::CoreList' => '5.20210820',
18842             'Module::CoreList::Utils'=> '5.20210820',
18843             'Net::hostent' => '1.03',
18844             'Opcode' => '1.53',
18845             'POSIX' => '1.99',
18846             'Pod::Html' => '1.32',
18847             'Pod::Html::Util' => '1.32',
18848             'Storable' => '3.24',
18849             'Text::Tabs' => '2021.0804',
18850             'Text::Wrap' => '2021.0804',
18851             'Time::HiRes' => '1.9769',
18852             'Unicode::Normalize' => '1.30',
18853             'XS::APItest' => '1.18',
18854             'diagnostics' => '1.38',
18855             'feature' => '1.67',
18856             'sort' => '2.05',
18857             'threads::shared' => '1.63',
18858             'warnings' => '1.53',
18859             },
18860             removed => {
18861             }
18862             },
18863             5.035004 => {
18864             delta_from => 5.035003,
18865             changed => {
18866             'B' => '1.83',
18867             'B::Deparse' => '1.58',
18868             'B::Op_private' => '5.035004',
18869             'Config' => '5.035004',
18870             'Devel::Peek' => '1.32',
18871             'Exporter' => '5.77',
18872             'Exporter::Heavy' => '5.77',
18873             'ExtUtils::ParseXS' => '3.44',
18874             'ExtUtils::ParseXS::Constants'=> '3.44',
18875             'ExtUtils::ParseXS::CountLines'=> '3.44',
18876             'ExtUtils::ParseXS::Eval'=> '3.44',
18877             'ExtUtils::ParseXS::Utilities'=> '3.44',
18878             'ExtUtils::Typemaps' => '3.44',
18879             'ExtUtils::Typemaps::Cmd'=> '3.44',
18880             'ExtUtils::Typemaps::InputMap'=> '3.44',
18881             'ExtUtils::Typemaps::OutputMap'=> '3.44',
18882             'ExtUtils::Typemaps::Type'=> '3.44',
18883             'Hash::Util::FieldHash' => '1.23',
18884             'IO' => '1.48',
18885             'IO::Dir' => '1.48',
18886             'IO::File' => '1.48',
18887             'IO::Handle' => '1.48',
18888             'IO::Pipe' => '1.48',
18889             'IO::Poll' => '1.48',
18890             'IO::Seekable' => '1.48',
18891             'IO::Select' => '1.48',
18892             'IO::Socket' => '1.48',
18893             'IO::Socket::INET' => '1.48',
18894             'IO::Socket::UNIX' => '1.48',
18895             'List::Util' => '1.56_001',
18896             'List::Util::XS' => '1.56_001',
18897             'Module::CoreList' => '5.20210920',
18898             'Module::CoreList::Utils'=> '5.20210920',
18899             'Opcode' => '1.54',
18900             'Pod::Html' => '1.33',
18901             'Pod::Html::Util' => '1.33',
18902             'Scalar::Util' => '1.56_001',
18903             'Storable' => '3.25',
18904             'Sub::Util' => '1.56_001',
18905             'Text::Tabs' => '2021.0814',
18906             'Text::Wrap' => '2021.0814',
18907             'UNIVERSAL' => '1.14',
18908             'Unicode' => '14.0.0',
18909             'Unicode::Collate' => '1.31',
18910             'Unicode::Collate::CJK::Big5'=> '1.31',
18911             'Unicode::Collate::CJK::GB2312'=> '1.31',
18912             'Unicode::Collate::CJK::JISX0208'=> '1.31',
18913             'Unicode::Collate::CJK::Korean'=> '1.31',
18914             'Unicode::Collate::CJK::Pinyin'=> '1.31',
18915             'Unicode::Collate::CJK::Stroke'=> '1.31',
18916             'Unicode::Collate::CJK::Zhuyin'=> '1.31',
18917             'Unicode::Collate::Locale'=> '1.31',
18918             'Unicode::UCD' => '0.78',
18919             'XS::APItest' => '1.19',
18920             'XS::Typemap' => '0.19',
18921             'attributes' => '0.34',
18922             'feature' => '1.68',
18923             'mro' => '1.26',
18924             'threads::shared' => '1.64',
18925             'warnings' => '1.54',
18926             },
18927             removed => {
18928             }
18929             },
18930             5.035005 => {
18931             delta_from => 5.035004,
18932             changed => {
18933             'B::Concise' => '1.006',
18934             'B::Deparse' => '1.59',
18935             'B::Op_private' => '5.035005',
18936             'Config' => '5.035005',
18937             'Digest' => '1.20',
18938             'Digest::base' => '1.20',
18939             'Digest::file' => '1.20',
18940             'DynaLoader' => '1.52',
18941             'Encode' => '3.16',
18942             'Errno' => '1.35',
18943             'File::Copy' => '2.37',
18944             'File::Spec::Unix' => '3.82',
18945             'FindBin' => '1.53',
18946             'GDBM_File' => '1.21',
18947             'HTTP::Tiny' => '0.078',
18948             'I18N::Langinfo' => '0.21',
18949             'IO::Dir' => '1.49',
18950             'IO::Pipe' => '1.49',
18951             'IO::Poll' => '1.49',
18952             'IO::Select' => '1.49',
18953             'IO::Socket' => '1.49',
18954             'IO::Socket::INET' => '1.49',
18955             'IO::Socket::UNIX' => '1.49',
18956             'List::Util' => '1.60',
18957             'List::Util::XS' => '1.60',
18958             'Math::BigRat::Trace' => '0.63',
18959             'Module::CoreList' => '5.20211020',
18960             'Module::CoreList::Utils'=> '5.20211020',
18961             'POSIX' => '2.01',
18962             'Scalar::Util' => '1.60',
18963             'Sub::Util' => '1.60',
18964             'Test2' => '1.302188',
18965             'Test2::API' => '1.302188',
18966             'Test2::API::Breakage' => '1.302188',
18967             'Test2::API::Context' => '1.302188',
18968             'Test2::API::Instance' => '1.302188',
18969             'Test2::API::InterceptResult'=> '1.302188',
18970             'Test2::API::InterceptResult::Event'=> '1.302188',
18971             'Test2::API::InterceptResult::Facet'=> '1.302188',
18972             'Test2::API::InterceptResult::Hub'=> '1.302188',
18973             'Test2::API::InterceptResult::Squasher'=> '1.302188',
18974             'Test2::API::Stack' => '1.302188',
18975             'Test2::Event' => '1.302188',
18976             'Test2::Event::Bail' => '1.302188',
18977             'Test2::Event::Diag' => '1.302188',
18978             'Test2::Event::Encoding'=> '1.302188',
18979             'Test2::Event::Exception'=> '1.302188',
18980             'Test2::Event::Fail' => '1.302188',
18981             'Test2::Event::Generic' => '1.302188',
18982             'Test2::Event::Note' => '1.302188',
18983             'Test2::Event::Ok' => '1.302188',
18984             'Test2::Event::Pass' => '1.302188',
18985             'Test2::Event::Plan' => '1.302188',
18986             'Test2::Event::Skip' => '1.302188',
18987             'Test2::Event::Subtest' => '1.302188',
18988             'Test2::Event::TAP::Version'=> '1.302188',
18989             'Test2::Event::V2' => '1.302188',
18990             'Test2::Event::Waiting' => '1.302188',
18991             'Test2::EventFacet' => '1.302188',
18992             'Test2::EventFacet::About'=> '1.302188',
18993             'Test2::EventFacet::Amnesty'=> '1.302188',
18994             'Test2::EventFacet::Assert'=> '1.302188',
18995             'Test2::EventFacet::Control'=> '1.302188',
18996             'Test2::EventFacet::Error'=> '1.302188',
18997             'Test2::EventFacet::Hub'=> '1.302188',
18998             'Test2::EventFacet::Info'=> '1.302188',
18999             'Test2::EventFacet::Info::Table'=> '1.302188',
19000             'Test2::EventFacet::Meta'=> '1.302188',
19001             'Test2::EventFacet::Parent'=> '1.302188',
19002             'Test2::EventFacet::Plan'=> '1.302188',
19003             'Test2::EventFacet::Render'=> '1.302188',
19004             'Test2::EventFacet::Trace'=> '1.302188',
19005             'Test2::Formatter' => '1.302188',
19006             'Test2::Formatter::TAP' => '1.302188',
19007             'Test2::Hub' => '1.302188',
19008             'Test2::Hub::Interceptor'=> '1.302188',
19009             'Test2::Hub::Interceptor::Terminator'=> '1.302188',
19010             'Test2::Hub::Subtest' => '1.302188',
19011             'Test2::IPC' => '1.302188',
19012             'Test2::IPC::Driver' => '1.302188',
19013             'Test2::IPC::Driver::Files'=> '1.302188',
19014             'Test2::Tools::Tiny' => '1.302188',
19015             'Test2::Util' => '1.302188',
19016             'Test2::Util::ExternalMeta'=> '1.302188',
19017             'Test2::Util::Facets2Legacy'=> '1.302188',
19018             'Test2::Util::HashBase' => '1.302188',
19019             'Test2::Util::Trace' => '1.302188',
19020             'Test::Builder' => '1.302188',
19021             'Test::Builder::Formatter'=> '1.302188',
19022             'Test::Builder::Module' => '1.302188',
19023             'Test::Builder::Tester' => '1.302188',
19024             'Test::Builder::Tester::Color'=> '1.302188',
19025             'Test::Builder::TodoDiag'=> '1.302188',
19026             'Test::More' => '1.302188',
19027             'Test::Simple' => '1.302188',
19028             'Test::Tester' => '1.302188',
19029             'Test::Tester::Capture' => '1.302188',
19030             'Test::Tester::CaptureRunner'=> '1.302188',
19031             'Test::Tester::Delegate'=> '1.302188',
19032             'Test::use::ok' => '1.302188',
19033             'Tie::Handle' => '4.3',
19034             'Tie::Hash' => '1.06',
19035             'Tie::Scalar' => '1.06',
19036             'XS::APItest' => '1.20',
19037             'experimental' => '0.025',
19038             'ok' => '1.302188',
19039             'warnings' => '1.55',
19040             },
19041             removed => {
19042             }
19043             },
19044             5.035006 => {
19045             delta_from => 5.035005,
19046             changed => {
19047             'B::Op_private' => '5.035006',
19048             'Config' => '5.035006',
19049             'File::Glob' => '1.37',
19050             'File::stat' => '1.12',
19051             'GDBM_File' => '1.22',
19052             'HTTP::Tiny' => '0.080',
19053             'Math::BigFloat' => '1.999827',
19054             'Math::BigFloat::Trace' => '0.63',
19055             'Math::BigInt' => '1.999827',
19056             'Math::BigInt::Calc' => '1.999827',
19057             'Math::BigInt::FastCalc'=> '0.5012',
19058             'Math::BigInt::Lib' => '1.999827',
19059             'Math::BigInt::Trace' => '0.63',
19060             'Math::BigRat' => '0.2620',
19061             'Module::CoreList' => '5.20211120',
19062             'Module::CoreList::Utils'=> '5.20211120',
19063             'POSIX' => '2.02',
19064             'bigint' => '0.63',
19065             'bignum' => '0.63',
19066             'bigrat' => '0.63',
19067             'diagnostics' => '1.39',
19068             'feature' => '1.69',
19069             'warnings' => '1.56',
19070             },
19071             removed => {
19072             }
19073             },
19074             5.035007 => {
19075             delta_from => 5.035006,
19076             changed => {
19077             'B::Deparse' => '1.60',
19078             'B::Op_private' => '5.035007',
19079             'CPAN' => '2.29',
19080             'CPAN::Distribution' => '2.29',
19081             'CPAN::FTP' => '5.5014',
19082             'CPAN::FirstTime' => '5.5316',
19083             'CPAN::HandleConfig' => '5.5012',
19084             'CPAN::Index' => '2.29',
19085             'Config' => '5.035007',
19086             'Cwd' => '3.83',
19087             'ExtUtils::Command' => '7.64',
19088             'ExtUtils::Command::MM' => '7.64',
19089             'ExtUtils::Liblist' => '7.64',
19090             'ExtUtils::Liblist::Kid'=> '7.64',
19091             'ExtUtils::MM' => '7.64',
19092             'ExtUtils::MM_AIX' => '7.64',
19093             'ExtUtils::MM_Any' => '7.64',
19094             'ExtUtils::MM_BeOS' => '7.64',
19095             'ExtUtils::MM_Cygwin' => '7.64',
19096             'ExtUtils::MM_DOS' => '7.64',
19097             'ExtUtils::MM_Darwin' => '7.64',
19098             'ExtUtils::MM_MacOS' => '7.64',
19099             'ExtUtils::MM_NW5' => '7.64',
19100             'ExtUtils::MM_OS2' => '7.64',
19101             'ExtUtils::MM_OS390' => '7.64',
19102             'ExtUtils::MM_QNX' => '7.64',
19103             'ExtUtils::MM_UWIN' => '7.64',
19104             'ExtUtils::MM_Unix' => '7.64',
19105             'ExtUtils::MM_VMS' => '7.64',
19106             'ExtUtils::MM_VOS' => '7.64',
19107             'ExtUtils::MM_Win32' => '7.64',
19108             'ExtUtils::MM_Win95' => '7.64',
19109             'ExtUtils::MY' => '7.64',
19110             'ExtUtils::MakeMaker' => '7.64',
19111             'ExtUtils::MakeMaker::Config'=> '7.64',
19112             'ExtUtils::MakeMaker::Locale'=> '7.64',
19113             'ExtUtils::MakeMaker::version'=> '7.64',
19114             'ExtUtils::MakeMaker::version::regex'=> '7.64',
19115             'ExtUtils::Mkbootstrap' => '7.64',
19116             'ExtUtils::Mksymlists' => '7.64',
19117             'ExtUtils::testlib' => '7.64',
19118             'File::Compare' => '1.1007',
19119             'File::Copy' => '2.38',
19120             'File::Spec' => '3.83',
19121             'File::Spec::AmigaOS' => '3.83',
19122             'File::Spec::Cygwin' => '3.83',
19123             'File::Spec::Epoc' => '3.83',
19124             'File::Spec::Functions' => '3.83',
19125             'File::Spec::Mac' => '3.83',
19126             'File::Spec::OS2' => '3.83',
19127             'File::Spec::Unix' => '3.83',
19128             'File::Spec::VMS' => '3.83',
19129             'File::Spec::Win32' => '3.83',
19130             'Hash::Util' => '0.27',
19131             'Hash::Util::FieldHash' => '1.24',
19132             'IO' => '1.49',
19133             'JSON::PP' => '4.07',
19134             'JSON::PP::Boolean' => '4.07',
19135             'Math::BigFloat' => '1.999828',
19136             'Math::BigInt' => '1.999828',
19137             'Math::BigInt::Calc' => '1.999828',
19138             'Math::BigInt::Lib' => '1.999828',
19139             'Module::CoreList' => '5.20211220',
19140             'Module::CoreList::Utils'=> '5.20211220',
19141             'Opcode' => '1.55',
19142             'builtin' => '0.001',
19143             'overload' => '1.34',
19144             },
19145             removed => {
19146             }
19147             },
19148             5.035008 => {
19149             delta_from => 5.035007,
19150             changed => {
19151             'B::Deparse' => '1.61',
19152             'B::Op_private' => '5.035008',
19153             'Config' => '5.035008',
19154             'Data::Dumper' => '2.184',
19155             'Errno' => '1.36',
19156             'File::Fetch' => '1.04',
19157             'File::Find' => '1.40',
19158             'Hash::Util::FieldHash' => '1.25',
19159             'Locale::Maketext' => '1.30',
19160             'Math::BigFloat' => '1.999829',
19161             'Math::BigFloat::Trace' => '0.64',
19162             'Math::BigInt' => '1.999829',
19163             'Math::BigInt::Calc' => '1.999829',
19164             'Math::BigInt::Lib' => '1.999829',
19165             'Math::BigInt::Trace' => '0.64',
19166             'Math::BigRat::Trace' => '0.64',
19167             'Module::CoreList' => '5.20220120',
19168             'Module::CoreList::Utils'=> '5.20220120',
19169             'NEXT' => '0.69',
19170             'POSIX' => '2.03',
19171             'Win32' => '0.58',
19172             '_charnames' => '1.49',
19173             'bigint' => '0.64',
19174             'bignum' => '0.64',
19175             'bigrat' => '0.64',
19176             'charnames' => '1.49',
19177             },
19178             removed => {
19179             }
19180             },
19181             5.035009 => {
19182             delta_from => 5.035008,
19183             changed => {
19184             'App::Cpan' => '1.678',
19185             'B::Deparse' => '1.62',
19186             'B::Op_private' => '5.035009',
19187             'CPAN' => '2.33',
19188             'CPAN::Distribution' => '2.33',
19189             'CPAN::FTP' => '5.5016',
19190             'CPAN::FirstTime' => '5.5317',
19191             'Config' => '5.035009',
19192             'Devel::PPPort' => '3.64',
19193             'File::Copy' => '2.39',
19194             'Hash::Util' => '0.28',
19195             'Hash::Util::FieldHash' => '1.26',
19196             'List::Util' => '1.61',
19197             'List::Util::XS' => '1.61',
19198             'Module::CoreList' => '5.20220220',
19199             'Module::CoreList::Utils'=> '5.20220220',
19200             'Opcode' => '1.56',
19201             'Scalar::Util' => '1.61',
19202             'Sub::Util' => '1.61',
19203             'Tie::SubstrHash' => '1.01',
19204             'XS::APItest' => '1.21',
19205             '_charnames' => '1.50',
19206             'builtin' => '0.002',
19207             'charnames' => '1.50',
19208             'experimental' => '0.027',
19209             'feature' => '1.70',
19210             'overload' => '1.35',
19211             're' => '0.42',
19212             'sigtrap' => '1.10',
19213             'warnings' => '1.57',
19214             },
19215             removed => {
19216             }
19217             },
19218             5.034001 => {
19219             delta_from => 5.034000,
19220             changed => {
19221             'B::Deparse' => '1.57',
19222             'B::Op_private' => '5.034001',
19223             'Config' => '5.034001',
19224             'Encode' => '3.08_01',
19225             'GDBM_File' => '1.19_01',
19226             'Module::CoreList' => '5.20220313',
19227             'Module::CoreList::Utils'=> '5.20220313',
19228             },
19229             removed => {
19230             }
19231             },
19232             5.035010 => {
19233             delta_from => 5.035009,
19234             changed => {
19235             'Attribute::Handlers' => '1.02',
19236             'B::Deparse' => '1.63',
19237             'B::Op_private' => '5.035010',
19238             'Config' => '5.03501',
19239             'Cwd' => '3.84',
19240             'DB_File' => '1.857',
19241             'Devel::PPPort' => '3.68',
19242             'ExtUtils::ParseXS' => '3.45',
19243             'ExtUtils::ParseXS::Constants'=> '3.45',
19244             'ExtUtils::ParseXS::CountLines'=> '3.45',
19245             'ExtUtils::ParseXS::Eval'=> '3.45',
19246             'ExtUtils::ParseXS::Utilities'=> '3.45',
19247             'ExtUtils::Typemaps' => '3.45',
19248             'ExtUtils::Typemaps::Cmd'=> '3.45',
19249             'ExtUtils::Typemaps::InputMap'=> '3.45',
19250             'ExtUtils::Typemaps::OutputMap'=> '3.45',
19251             'ExtUtils::Typemaps::Type'=> '3.45',
19252             'File::Spec' => '3.84',
19253             'File::Spec::AmigaOS' => '3.84',
19254             'File::Spec::Cygwin' => '3.84',
19255             'File::Spec::Epoc' => '3.84',
19256             'File::Spec::Functions' => '3.84',
19257             'File::Spec::Mac' => '3.84',
19258             'File::Spec::OS2' => '3.84',
19259             'File::Spec::Unix' => '3.84',
19260             'File::Spec::VMS' => '3.84',
19261             'File::Spec::Win32' => '3.84',
19262             'GDBM_File' => '1.23',
19263             'List::Util' => '1.62',
19264             'List::Util::XS' => '1.62',
19265             'Module::CoreList' => '5.20220320',
19266             'Module::CoreList::Utils'=> '5.20220320',
19267             'Opcode' => '1.57',
19268             'Scalar::Util' => '1.62',
19269             'Sub::Util' => '1.62',
19270             'Test2' => '1.302190',
19271             'Test2::API' => '1.302190',
19272             'Test2::API::Breakage' => '1.302190',
19273             'Test2::API::Context' => '1.302190',
19274             'Test2::API::Instance' => '1.302190',
19275             'Test2::API::InterceptResult'=> '1.302190',
19276             'Test2::API::InterceptResult::Event'=> '1.302190',
19277             'Test2::API::InterceptResult::Facet'=> '1.302190',
19278             'Test2::API::InterceptResult::Hub'=> '1.302190',
19279             'Test2::API::InterceptResult::Squasher'=> '1.302190',
19280             'Test2::API::Stack' => '1.302190',
19281             'Test2::Event' => '1.302190',
19282             'Test2::Event::Bail' => '1.302190',
19283             'Test2::Event::Diag' => '1.302190',
19284             'Test2::Event::Encoding'=> '1.302190',
19285             'Test2::Event::Exception'=> '1.302190',
19286             'Test2::Event::Fail' => '1.302190',
19287             'Test2::Event::Generic' => '1.302190',
19288             'Test2::Event::Note' => '1.302190',
19289             'Test2::Event::Ok' => '1.302190',
19290             'Test2::Event::Pass' => '1.302190',
19291             'Test2::Event::Plan' => '1.302190',
19292             'Test2::Event::Skip' => '1.302190',
19293             'Test2::Event::Subtest' => '1.302190',
19294             'Test2::Event::TAP::Version'=> '1.302190',
19295             'Test2::Event::V2' => '1.302190',
19296             'Test2::Event::Waiting' => '1.302190',
19297             'Test2::EventFacet' => '1.302190',
19298             'Test2::EventFacet::About'=> '1.302190',
19299             'Test2::EventFacet::Amnesty'=> '1.302190',
19300             'Test2::EventFacet::Assert'=> '1.302190',
19301             'Test2::EventFacet::Control'=> '1.302190',
19302             'Test2::EventFacet::Error'=> '1.302190',
19303             'Test2::EventFacet::Hub'=> '1.302190',
19304             'Test2::EventFacet::Info'=> '1.302190',
19305             'Test2::EventFacet::Info::Table'=> '1.302190',
19306             'Test2::EventFacet::Meta'=> '1.302190',
19307             'Test2::EventFacet::Parent'=> '1.302190',
19308             'Test2::EventFacet::Plan'=> '1.302190',
19309             'Test2::EventFacet::Render'=> '1.302190',
19310             'Test2::EventFacet::Trace'=> '1.302190',
19311             'Test2::Formatter' => '1.302190',
19312             'Test2::Formatter::TAP' => '1.302190',
19313             'Test2::Hub' => '1.302190',
19314             'Test2::Hub::Interceptor'=> '1.302190',
19315             'Test2::Hub::Interceptor::Terminator'=> '1.302190',
19316             'Test2::Hub::Subtest' => '1.302190',
19317             'Test2::IPC' => '1.302190',
19318             'Test2::IPC::Driver' => '1.302190',
19319             'Test2::IPC::Driver::Files'=> '1.302190',
19320             'Test2::Tools::Tiny' => '1.302190',
19321             'Test2::Util' => '1.302190',
19322             'Test2::Util::ExternalMeta'=> '1.302190',
19323             'Test2::Util::Facets2Legacy'=> '1.302190',
19324             'Test2::Util::HashBase' => '1.302190',
19325             'Test2::Util::Trace' => '1.302190',
19326             'Test::Builder' => '1.302190',
19327             'Test::Builder::Formatter'=> '1.302190',
19328             'Test::Builder::Module' => '1.302190',
19329             'Test::Builder::Tester' => '1.302190',
19330             'Test::Builder::Tester::Color'=> '1.302190',
19331             'Test::Builder::TodoDiag'=> '1.302190',
19332             'Test::More' => '1.302190',
19333             'Test::Simple' => '1.302190',
19334             'Test::Tester' => '1.302190',
19335             'Test::Tester::Capture' => '1.302190',
19336             'Test::Tester::CaptureRunner'=> '1.302190',
19337             'Test::Tester::Delegate'=> '1.302190',
19338             'Test::use::ok' => '1.302190',
19339             'XS::APItest' => '1.22',
19340             'builtin' => '0.004',
19341             'experimental' => '0.028',
19342             'feature' => '1.71',
19343             'ok' => '1.302190',
19344             'warnings' => '1.58',
19345             },
19346             removed => {
19347             }
19348             },
19349             5.035011 => {
19350             delta_from => 5.03501,
19351             changed => {
19352             'App::Prove' => '3.44',
19353             'App::Prove::State' => '3.44',
19354             'App::Prove::State::Result'=> '3.44',
19355             'App::Prove::State::Result::Test'=> '3.44',
19356             'B::Deparse' => '1.64',
19357             'B::Op_private' => '5.035011',
19358             'Compress::Raw::Bzip2' => '2.103',
19359             'Compress::Raw::Zlib' => '2.103',
19360             'Compress::Zlib' => '2.106',
19361             'Config' => '5.035011',
19362             'Encode' => '3.17',
19363             'Encode::Unicode' => '2.20',
19364             'ExtUtils::Constant::Base'=> '0.07',
19365             'IO' => '1.49_01',
19366             'IO::Compress::Adapter::Bzip2'=> '2.106',
19367             'IO::Compress::Adapter::Deflate'=> '2.106',
19368             'IO::Compress::Adapter::Identity'=> '2.106',
19369             'IO::Compress::Base' => '2.106',
19370             'IO::Compress::Base::Common'=> '2.106',
19371             'IO::Compress::Bzip2' => '2.106',
19372             'IO::Compress::Deflate' => '2.106',
19373             'IO::Compress::Gzip' => '2.106',
19374             'IO::Compress::Gzip::Constants'=> '2.106',
19375             'IO::Compress::RawDeflate'=> '2.106',
19376             'IO::Compress::Zip' => '2.106',
19377             'IO::Compress::Zip::Constants'=> '2.106',
19378             'IO::Compress::Zlib::Constants'=> '2.106',
19379             'IO::Compress::Zlib::Extra'=> '2.106',
19380             'IO::Uncompress::Adapter::Bunzip2'=> '2.106',
19381             'IO::Uncompress::Adapter::Identity'=> '2.106',
19382             'IO::Uncompress::Adapter::Inflate'=> '2.106',
19383             'IO::Uncompress::AnyInflate'=> '2.106',
19384             'IO::Uncompress::AnyUncompress'=> '2.106',
19385             'IO::Uncompress::Base' => '2.106',
19386             'IO::Uncompress::Bunzip2'=> '2.106',
19387             'IO::Uncompress::Gunzip'=> '2.106',
19388             'IO::Uncompress::Inflate'=> '2.106',
19389             'IO::Uncompress::RawInflate'=> '2.106',
19390             'IO::Uncompress::Unzip' => '2.106',
19391             'Locale::Maketext' => '1.31',
19392             'Math::BigFloat' => '1.999830',
19393             'Math::BigFloat::Trace' => '0.65',
19394             'Math::BigInt' => '1.999830',
19395             'Math::BigInt::Calc' => '1.999830',
19396             'Math::BigInt::Lib' => '1.999830',
19397             'Math::BigInt::Trace' => '0.65',
19398             'Math::BigRat' => '0.2621',
19399             'Math::BigRat::Trace' => '0.65',
19400             'Module::CoreList' => '5.20220420',
19401             'Module::CoreList::Utils'=> '5.20220420',
19402             'Net::Cmd' => '3.14',
19403             'Net::Config' => '3.14',
19404             'Net::Domain' => '3.14',
19405             'Net::FTP' => '3.14',
19406             'Net::FTP::A' => '3.14',
19407             'Net::FTP::E' => '3.14',
19408             'Net::FTP::I' => '3.14',
19409             'Net::FTP::L' => '3.14',
19410             'Net::FTP::dataconn' => '3.14',
19411             'Net::NNTP' => '3.14',
19412             'Net::Netrc' => '3.14',
19413             'Net::POP3' => '3.14',
19414             'Net::SMTP' => '3.14',
19415             'Net::Time' => '3.14',
19416             'Socket' => '2.033',
19417             'Storable' => '3.26',
19418             'TAP::Base' => '3.44',
19419             'TAP::Formatter::Base' => '3.44',
19420             'TAP::Formatter::Color' => '3.44',
19421             'TAP::Formatter::Console'=> '3.44',
19422             'TAP::Formatter::Console::ParallelSession'=> '3.44',
19423             'TAP::Formatter::Console::Session'=> '3.44',
19424             'TAP::Formatter::File' => '3.44',
19425             'TAP::Formatter::File::Session'=> '3.44',
19426             'TAP::Formatter::Session'=> '3.44',
19427             'TAP::Harness' => '3.44',
19428             'TAP::Harness::Env' => '3.44',
19429             'TAP::Object' => '3.44',
19430             'TAP::Parser' => '3.44',
19431             'TAP::Parser::Aggregator'=> '3.44',
19432             'TAP::Parser::Grammar' => '3.44',
19433             'TAP::Parser::Iterator' => '3.44',
19434             'TAP::Parser::Iterator::Array'=> '3.44',
19435             'TAP::Parser::Iterator::Process'=> '3.44',
19436             'TAP::Parser::Iterator::Stream'=> '3.44',
19437             'TAP::Parser::IteratorFactory'=> '3.44',
19438             'TAP::Parser::Multiplexer'=> '3.44',
19439             'TAP::Parser::Result' => '3.44',
19440             'TAP::Parser::Result::Bailout'=> '3.44',
19441             'TAP::Parser::Result::Comment'=> '3.44',
19442             'TAP::Parser::Result::Plan'=> '3.44',
19443             'TAP::Parser::Result::Pragma'=> '3.44',
19444             'TAP::Parser::Result::Test'=> '3.44',
19445             'TAP::Parser::Result::Unknown'=> '3.44',
19446             'TAP::Parser::Result::Version'=> '3.44',
19447             'TAP::Parser::Result::YAML'=> '3.44',
19448             'TAP::Parser::ResultFactory'=> '3.44',
19449             'TAP::Parser::Scheduler'=> '3.44',
19450             'TAP::Parser::Scheduler::Job'=> '3.44',
19451             'TAP::Parser::Scheduler::Spinner'=> '3.44',
19452             'TAP::Parser::Source' => '3.44',
19453             'TAP::Parser::SourceHandler'=> '3.44',
19454             'TAP::Parser::SourceHandler::Executable'=> '3.44',
19455             'TAP::Parser::SourceHandler::File'=> '3.44',
19456             'TAP::Parser::SourceHandler::Handle'=> '3.44',
19457             'TAP::Parser::SourceHandler::Perl'=> '3.44',
19458             'TAP::Parser::SourceHandler::RawTAP'=> '3.44',
19459             'TAP::Parser::YAMLish::Reader'=> '3.44',
19460             'TAP::Parser::YAMLish::Writer'=> '3.44',
19461             'Test::Harness' => '3.44',
19462             'Text::ParseWords' => '3.31',
19463             'Time::HiRes' => '1.9770',
19464             'Unicode::Normalize' => '1.31',
19465             'bigfloat' => '0.65',
19466             'bigint' => '0.65',
19467             'bignum' => '0.65',
19468             'bigrat' => '0.65',
19469             'builtin' => '0.005',
19470             're' => '0.43',
19471             },
19472             removed => {
19473             }
19474             },
19475             5.036000 => {
19476             delta_from => 5.035011,
19477             changed => {
19478             'Amiga::Exec' => '0.04',
19479             'B::Op_private' => '5.036000',
19480             'Compress::Raw::Zlib' => '2.105',
19481             'Config' => '5.036',
19482             'IO' => '1.50',
19483             'Module::CoreList' => '5.20220520',
19484             'Module::CoreList::Utils'=> '5.20220520',
19485             'Win32' => '0.59',
19486             'builtin' => '0.006',
19487             'feature' => '1.72',
19488             },
19489             removed => {
19490             }
19491             },
19492             5.037000 => {
19493             delta_from => 5.036000,
19494             changed => {
19495             'feature' => '1.73',
19496             'Module::CoreList' => '5.20220527',
19497             'Module::CoreList::Utils'=> '5.20220527',
19498             },
19499             removed => {
19500             }
19501             },
19502             5.037001 => {
19503             delta_from => 5.037000,
19504             changed => {
19505             'B' => '1.84',
19506             'B::Op_private' => '5.037001',
19507             'Carp' => '1.53',
19508             'Carp::Heavy' => '1.53',
19509             'Config' => '5.037001',
19510             'Cwd' => '3.85',
19511             'Data::Dumper' => '2.185',
19512             'ExtUtils::CBuilder' => '0.280237',
19513             'ExtUtils::CBuilder::Base'=> '0.280237',
19514             'ExtUtils::CBuilder::Platform::Unix'=> '0.280237',
19515             'ExtUtils::CBuilder::Platform::VMS'=> '0.280237',
19516             'ExtUtils::CBuilder::Platform::Windows'=> '0.280237',
19517             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280237',
19518             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280237',
19519             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280237',
19520             'ExtUtils::CBuilder::Platform::aix'=> '0.280237',
19521             'ExtUtils::CBuilder::Platform::android'=> '0.280237',
19522             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280237',
19523             'ExtUtils::CBuilder::Platform::darwin'=> '0.280237',
19524             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280237',
19525             'ExtUtils::CBuilder::Platform::os2'=> '0.280237',
19526             'ExtUtils::Miniperl' => '1.12',
19527             'File::Spec' => '3.85',
19528             'File::Spec::AmigaOS' => '3.85',
19529             'File::Spec::Cygwin' => '3.85',
19530             'File::Spec::Epoc' => '3.85',
19531             'File::Spec::Functions' => '3.85',
19532             'File::Spec::Mac' => '3.85',
19533             'File::Spec::OS2' => '3.85',
19534             'File::Spec::Unix' => '3.85',
19535             'File::Spec::VMS' => '3.85',
19536             'File::Spec::Win32' => '3.85',
19537             'FileHandle' => '2.04',
19538             'GDBM_File' => '1.24',
19539             'IO::Handle' => '1.49',
19540             'IO::Pipe' => '1.50',
19541             'IO::Socket::INET' => '1.50',
19542             'IO::Socket::UNIX' => '1.50',
19543             'Module::CoreList' => '5.20220620',
19544             'Module::CoreList::Utils'=> '5.20220620',
19545             'ODBM_File' => '1.18',
19546             'OS2::REXX' => '1.06',
19547             'Opcode' => '1.58',
19548             'POSIX' => '2.04',
19549             'SDBM_File' => '1.16',
19550             'Unicode::Normalize' => '1.32',
19551             'XS::APItest' => '1.23',
19552             'builtin' => '0.007',
19553             'encoding::warnings' => '0.14',
19554             'feature' => '1.74',
19555             'threads' => '2.28',
19556             },
19557             removed => {
19558             }
19559             },
19560             5.037002 => {
19561             delta_from => 5.037001,
19562             changed => {
19563             'B' => '1.85',
19564             'B::Concise' => '1.007',
19565             'B::Deparse' => '1.65',
19566             'B::Op_private' => '5.037002',
19567             'CPAN' => '2.34',
19568             'CPAN::Distribution' => '2.34',
19569             'Compress::Raw::Bzip2' => '2.201',
19570             'Compress::Raw::Zlib' => '2.202',
19571             'Compress::Zlib' => '2.201',
19572             'Config' => '5.037002',
19573             'Cwd' => '3.86',
19574             'DB_File' => '1.858',
19575             'Data::Dumper' => '2.186',
19576             'Encode' => '3.18',
19577             'Encode::MIME::Header' => '2.29',
19578             'File::Glob' => '1.38',
19579             'File::Spec' => '3.86',
19580             'File::Spec::AmigaOS' => '3.86',
19581             'File::Spec::Cygwin' => '3.86',
19582             'File::Spec::Epoc' => '3.86',
19583             'File::Spec::Functions' => '3.86',
19584             'File::Spec::Mac' => '3.86',
19585             'File::Spec::OS2' => '3.86',
19586             'File::Spec::Unix' => '3.86',
19587             'File::Spec::VMS' => '3.86',
19588             'File::Spec::Win32' => '3.86',
19589             'Filter::Util::Call' => '1.61',
19590             'Hash::Util' => '0.29',
19591             'I18N::LangTags::List' => '0.41',
19592             'IO::Compress::Adapter::Bzip2'=> '2.201',
19593             'IO::Compress::Adapter::Deflate'=> '2.201',
19594             'IO::Compress::Adapter::Identity'=> '2.201',
19595             'IO::Compress::Base' => '2.201',
19596             'IO::Compress::Base::Common'=> '2.201',
19597             'IO::Compress::Bzip2' => '2.201',
19598             'IO::Compress::Deflate' => '2.201',
19599             'IO::Compress::Gzip' => '2.201',
19600             'IO::Compress::Gzip::Constants'=> '2.201',
19601             'IO::Compress::RawDeflate'=> '2.201',
19602             'IO::Compress::Zip' => '2.201',
19603             'IO::Compress::Zip::Constants'=> '2.201',
19604             'IO::Compress::Zlib::Constants'=> '2.201',
19605             'IO::Compress::Zlib::Extra'=> '2.201',
19606             'IO::Uncompress::Adapter::Bunzip2'=> '2.201',
19607             'IO::Uncompress::Adapter::Identity'=> '2.201',
19608             'IO::Uncompress::Adapter::Inflate'=> '2.201',
19609             'IO::Uncompress::AnyInflate'=> '2.201',
19610             'IO::Uncompress::AnyUncompress'=> '2.201',
19611             'IO::Uncompress::Base' => '2.201',
19612             'IO::Uncompress::Bunzip2'=> '2.201',
19613             'IO::Uncompress::Gunzip'=> '2.201',
19614             'IO::Uncompress::Inflate'=> '2.201',
19615             'IO::Uncompress::RawInflate'=> '2.201',
19616             'IO::Uncompress::Unzip' => '2.201',
19617             'JSON::PP' => '4.10',
19618             'JSON::PP::Boolean' => '4.10',
19619             'Math::BigFloat' => '1.999837',
19620             'Math::BigFloat::Trace' => '0.66',
19621             'Math::BigInt' => '1.999837',
19622             'Math::BigInt::Calc' => '1.999837',
19623             'Math::BigInt::FastCalc'=> '0.5013',
19624             'Math::BigInt::Lib' => '1.999837',
19625             'Math::BigInt::Trace' => '0.66',
19626             'Math::BigRat' => '0.2624',
19627             'Math::BigRat::Trace' => '0.66',
19628             'Module::CoreList' => '5.20220720',
19629             'Module::CoreList::Utils'=> '5.20220720',
19630             'Opcode' => '1.59',
19631             'PerlIO::via::QuotedPrint'=> '0.10',
19632             'Pod::Checker' => '1.75',
19633             'Pod::Usage' => '2.03',
19634             'Socket' => '2.035',
19635             'Storable' => '3.27',
19636             'Test2' => '1.302191',
19637             'Test2::API' => '1.302191',
19638             'Test2::API::Breakage' => '1.302191',
19639             'Test2::API::Context' => '1.302191',
19640             'Test2::API::Instance' => '1.302191',
19641             'Test2::API::InterceptResult'=> '1.302191',
19642             'Test2::API::InterceptResult::Event'=> '1.302191',
19643             'Test2::API::InterceptResult::Facet'=> '1.302191',
19644             'Test2::API::InterceptResult::Hub'=> '1.302191',
19645             'Test2::API::InterceptResult::Squasher'=> '1.302191',
19646             'Test2::API::Stack' => '1.302191',
19647             'Test2::Event' => '1.302191',
19648             'Test2::Event::Bail' => '1.302191',
19649             'Test2::Event::Diag' => '1.302191',
19650             'Test2::Event::Encoding'=> '1.302191',
19651             'Test2::Event::Exception'=> '1.302191',
19652             'Test2::Event::Fail' => '1.302191',
19653             'Test2::Event::Generic' => '1.302191',
19654             'Test2::Event::Note' => '1.302191',
19655             'Test2::Event::Ok' => '1.302191',
19656             'Test2::Event::Pass' => '1.302191',
19657             'Test2::Event::Plan' => '1.302191',
19658             'Test2::Event::Skip' => '1.302191',
19659             'Test2::Event::Subtest' => '1.302191',
19660             'Test2::Event::TAP::Version'=> '1.302191',
19661             'Test2::Event::V2' => '1.302191',
19662             'Test2::Event::Waiting' => '1.302191',
19663             'Test2::EventFacet' => '1.302191',
19664             'Test2::EventFacet::About'=> '1.302191',
19665             'Test2::EventFacet::Amnesty'=> '1.302191',
19666             'Test2::EventFacet::Assert'=> '1.302191',
19667             'Test2::EventFacet::Control'=> '1.302191',
19668             'Test2::EventFacet::Error'=> '1.302191',
19669             'Test2::EventFacet::Hub'=> '1.302191',
19670             'Test2::EventFacet::Info'=> '1.302191',
19671             'Test2::EventFacet::Info::Table'=> '1.302191',
19672             'Test2::EventFacet::Meta'=> '1.302191',
19673             'Test2::EventFacet::Parent'=> '1.302191',
19674             'Test2::EventFacet::Plan'=> '1.302191',
19675             'Test2::EventFacet::Render'=> '1.302191',
19676             'Test2::EventFacet::Trace'=> '1.302191',
19677             'Test2::Formatter' => '1.302191',
19678             'Test2::Formatter::TAP' => '1.302191',
19679             'Test2::Hub' => '1.302191',
19680             'Test2::Hub::Interceptor'=> '1.302191',
19681             'Test2::Hub::Interceptor::Terminator'=> '1.302191',
19682             'Test2::Hub::Subtest' => '1.302191',
19683             'Test2::IPC' => '1.302191',
19684             'Test2::IPC::Driver' => '1.302191',
19685             'Test2::IPC::Driver::Files'=> '1.302191',
19686             'Test2::Tools::Tiny' => '1.302191',
19687             'Test2::Util' => '1.302191',
19688             'Test2::Util::ExternalMeta'=> '1.302191',
19689             'Test2::Util::Facets2Legacy'=> '1.302191',
19690             'Test2::Util::HashBase' => '1.302191',
19691             'Test2::Util::Trace' => '1.302191',
19692             'Test::Builder' => '1.302191',
19693             'Test::Builder::Formatter'=> '1.302191',
19694             'Test::Builder::Module' => '1.302191',
19695             'Test::Builder::Tester' => '1.302191',
19696             'Test::Builder::Tester::Color'=> '1.302191',
19697             'Test::Builder::TodoDiag'=> '1.302191',
19698             'Test::More' => '1.302191',
19699             'Test::Simple' => '1.302191',
19700             'Test::Tester' => '1.302191',
19701             'Test::Tester::Capture' => '1.302191',
19702             'Test::Tester::CaptureRunner'=> '1.302191',
19703             'Test::Tester::Delegate'=> '1.302191',
19704             'Test::use::ok' => '1.302191',
19705             'Text::Balanced' => '2.06',
19706             'XS::APItest' => '1.24',
19707             'bigfloat' => '0.66',
19708             'bigint' => '0.66',
19709             'bignum' => '0.66',
19710             'bigrat' => '0.66',
19711             'builtin' => '0.008',
19712             'feature' => '1.75',
19713             'ok' => '1.302191',
19714             'threads::shared' => '1.65',
19715             },
19716             removed => {
19717             }
19718             },
19719             5.037003 => {
19720             delta_from => 5.037002,
19721             changed => {
19722             'B' => '1.86',
19723             'B::Deparse' => '1.68',
19724             'B::Op_private' => '5.037003',
19725             'Config' => '5.037003',
19726             'Digest::SHA' => '6.03',
19727             'DynaLoader' => '1.53',
19728             'Encode' => '3.19',
19729             'Encode::Alias' => '2.25',
19730             'ExtUtils::PL2Bat' => '0.005',
19731             'File::Find' => '1.41',
19732             'Filter::Util::Call' => '1.64',
19733             'HTTP::Tiny' => '0.082',
19734             'JSON::PP' => '4.11',
19735             'JSON::PP::Boolean' => '4.11',
19736             'List::Util' => '1.63',
19737             'List::Util::XS' => '1.63',
19738             'Memoize' => '1.10',
19739             'Memoize::AnyDBM_File' => '1.10',
19740             'Memoize::Expire' => '1.10',
19741             'Memoize::NDBM_File' => '1.10',
19742             'Memoize::SDBM_File' => '1.10',
19743             'Memoize::Storable' => '1.10',
19744             'Module::CoreList' => '5.20220820',
19745             'Module::CoreList::Utils'=> '5.20220820',
19746             'NDBM_File' => '1.16',
19747             'Opcode' => '1.60',
19748             'Scalar::Util' => '1.63',
19749             'Socket' => '2.036',
19750             'Sub::Util' => '1.63',
19751             'XS::APItest' => '1.25',
19752             'attributes' => '0.35',
19753             'threads' => '2.29',
19754             },
19755             removed => {
19756             'Memoize::ExpireFile' => 1,
19757             'Memoize::ExpireTest' => 1,
19758             }
19759             },
19760             5.037004 => {
19761             delta_from => 5.037003,
19762             changed => {
19763             'B::Deparse' => '1.69',
19764             'B::Op_private' => '5.037004',
19765             'Carp' => '1.54',
19766             'Carp::Heavy' => '1.54',
19767             'Class::Struct' => '0.67',
19768             'Config' => '5.037004',
19769             'Config::Perl::V' => '0.34',
19770             'Errno' => '1.37',
19771             'ExtUtils::ParseXS' => '3.46',
19772             'ExtUtils::ParseXS::Constants'=> '3.46',
19773             'ExtUtils::ParseXS::CountLines'=> '3.46',
19774             'ExtUtils::ParseXS::Eval'=> '3.46',
19775             'ExtUtils::ParseXS::Utilities'=> '3.46',
19776             'ExtUtils::Typemaps' => '3.46',
19777             'ExtUtils::Typemaps::Cmd'=> '3.46',
19778             'ExtUtils::Typemaps::InputMap'=> '3.46',
19779             'ExtUtils::Typemaps::OutputMap'=> '3.46',
19780             'ExtUtils::Typemaps::Type'=> '3.46',
19781             'File::Basename' => '2.86',
19782             'File::Copy' => '2.40',
19783             'File::Spec' => '3.87',
19784             'File::stat' => '1.13',
19785             'FileHandle' => '2.05',
19786             'Hash::Util' => '0.30',
19787             'I18N::Langinfo' => '0.22',
19788             'IO' => '1.51',
19789             'IO::Dir' => '1.51',
19790             'IO::File' => '1.51',
19791             'IO::Handle' => '1.51',
19792             'IO::Pipe' => '1.51',
19793             'IO::Poll' => '1.51',
19794             'IO::Seekable' => '1.51',
19795             'IO::Select' => '1.51',
19796             'IO::Socket' => '1.51',
19797             'IO::Socket::INET' => '1.51',
19798             'IO::Socket::UNIX' => '1.51',
19799             'Locale::Maketext' => '1.32',
19800             'Module::CoreList' => '5.20220920',
19801             'Module::CoreList::Utils'=> '5.20220920',
19802             'Net::protoent' => '1.02',
19803             'Net::servent' => '1.03',
19804             'Opcode' => '1.61',
19805             'POSIX' => '2.06',
19806             'Safe' => '2.44',
19807             'Sys::Hostname' => '1.25',
19808             'Time::HiRes' => '1.9771',
19809             'User::grent' => '1.04',
19810             'User::pwent' => '1.02',
19811             'XS::APItest' => '1.26',
19812             'XSLoader' => '0.32',
19813             'feature' => '1.76',
19814             },
19815             removed => {
19816             }
19817             },
19818             5.037005 => {
19819             delta_from => 5.037004,
19820             changed => {
19821             'B::Deparse' => '1.70',
19822             'B::Op_private' => '5.037005',
19823             'Config' => '5.037005',
19824             'JSON::PP' => '4.12',
19825             'JSON::PP::Boolean' => '4.12',
19826             'Math::Complex' => '1.5903',
19827             'Math::Trig' => '1.2301',
19828             'Memoize' => '1.14',
19829             'Memoize::AnyDBM_File' => '1.14',
19830             'Memoize::Expire' => '1.14',
19831             'Memoize::NDBM_File' => '1.14',
19832             'Memoize::SDBM_File' => '1.14',
19833             'Memoize::Storable' => '1.14',
19834             'Module::CoreList' => '5.20221020',
19835             'Module::CoreList::Utils'=> '5.20221020',
19836             'Net::Ping' => '2.75',
19837             'POSIX' => '2.07',
19838             'Unicode' => '15.0.0',
19839             'threads' => '2.31',
19840             'warnings' => '1.59',
19841             },
19842             removed => {
19843             }
19844             },
19845             5.037006 => {
19846             delta_from => 5.037005,
19847             changed => {
19848             'Attribute::Handlers' => '1.03',
19849             'B' => '1.87',
19850             'B::Deparse' => '1.71',
19851             'B::Op_private' => '5.037006',
19852             'Config' => '5.037006',
19853             'Data::Dumper' => '2.187',
19854             'Devel::PPPort' => '3.69',
19855             'ExtUtils::CBuilder' => '0.280238',
19856             'ExtUtils::CBuilder::Base'=> '0.280238',
19857             'ExtUtils::CBuilder::Platform::Unix'=> '0.280238',
19858             'ExtUtils::CBuilder::Platform::VMS'=> '0.280238',
19859             'ExtUtils::CBuilder::Platform::Windows'=> '0.280238',
19860             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280238',
19861             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280238',
19862             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280238',
19863             'ExtUtils::CBuilder::Platform::aix'=> '0.280238',
19864             'ExtUtils::CBuilder::Platform::android'=> '0.280238',
19865             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280238',
19866             'ExtUtils::CBuilder::Platform::darwin'=> '0.280238',
19867             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280238',
19868             'ExtUtils::CBuilder::Platform::os2'=> '0.280238',
19869             'ExtUtils::ParseXS' => '3.48',
19870             'ExtUtils::ParseXS::Constants'=> '3.48',
19871             'ExtUtils::ParseXS::CountLines'=> '3.48',
19872             'ExtUtils::ParseXS::Eval'=> '3.48',
19873             'ExtUtils::ParseXS::Utilities'=> '3.48',
19874             'ExtUtils::Typemaps' => '3.48',
19875             'ExtUtils::Typemaps::Cmd'=> '3.48',
19876             'ExtUtils::Typemaps::InputMap'=> '3.48',
19877             'ExtUtils::Typemaps::OutputMap'=> '3.48',
19878             'ExtUtils::Typemaps::Type'=> '3.48',
19879             'Getopt::Long' => '2.54',
19880             'Memoize' => '1.15',
19881             'Memoize::AnyDBM_File' => '1.15',
19882             'Memoize::Expire' => '1.15',
19883             'Memoize::NDBM_File' => '1.15',
19884             'Memoize::SDBM_File' => '1.15',
19885             'Memoize::Storable' => '1.15',
19886             'Module::CoreList' => '5.20221120',
19887             'Module::CoreList::Utils'=> '5.20221120',
19888             'Opcode' => '1.62',
19889             'POSIX' => '2.08',
19890             'Storable' => '3.28',
19891             'Time::HiRes' => '1.9772',
19892             'XS::APItest' => '1.27',
19893             'experimental' => '0.029',
19894             'feature' => '1.77',
19895             'overload' => '1.36',
19896             'threads' => '2.32',
19897             'utf8' => '1.25',
19898             'warnings' => '1.61',
19899             },
19900             removed => {
19901             }
19902             },
19903             5.037007 => {
19904             delta_from => 5.037006,
19905             changed => {
19906             'B::Deparse' => '1.72',
19907             'B::Op_private' => '5.037007',
19908             'Config' => '5.037007',
19909             'Cwd' => '3.88',
19910             'ExtUtils::Miniperl' => '1.13',
19911             'ExtUtils::ParseXS' => '3.49',
19912             'ExtUtils::ParseXS::Constants'=> '3.49',
19913             'ExtUtils::ParseXS::CountLines'=> '3.49',
19914             'ExtUtils::ParseXS::Eval'=> '3.49',
19915             'ExtUtils::ParseXS::Utilities'=> '3.49',
19916             'ExtUtils::Typemaps' => '3.49',
19917             'ExtUtils::Typemaps::Cmd'=> '3.49',
19918             'ExtUtils::Typemaps::InputMap'=> '3.49',
19919             'ExtUtils::Typemaps::OutputMap'=> '3.49',
19920             'ExtUtils::Typemaps::Type'=> '3.49',
19921             'File::Glob' => '1.39',
19922             'File::Spec' => '3.88',
19923             'File::Spec::AmigaOS' => '3.88',
19924             'File::Spec::Cygwin' => '3.88',
19925             'File::Spec::Epoc' => '3.88',
19926             'File::Spec::Functions' => '3.88',
19927             'File::Spec::Mac' => '3.88',
19928             'File::Spec::OS2' => '3.88',
19929             'File::Spec::Unix' => '3.88',
19930             'File::Spec::VMS' => '3.88',
19931             'File::Spec::Win32' => '3.88',
19932             'Module::CoreList' => '5.20221220',
19933             'Module::CoreList::Utils'=> '5.20221220',
19934             'Opcode' => '1.63',
19935             'POSIX' => '2.10',
19936             'Pod::Html' => '1.34',
19937             'Pod::Html::Util' => '1.34',
19938             'Pod::Man' => '5.00',
19939             'Pod::ParseLink' => '5.00',
19940             'Pod::Text' => '5.00',
19941             'Pod::Text::Color' => '5.00',
19942             'Pod::Text::Overstrike' => '5.00',
19943             'Pod::Text::Termcap' => '5.00',
19944             'XS::APItest' => '1.28',
19945             'experimental' => '0.030',
19946             'feature' => '1.78',
19947             'parent' => '0.239',
19948             'threads' => '2.33',
19949             },
19950             removed => {
19951             }
19952             },
19953             5.037008 => {
19954             delta_from => 5.037007,
19955             changed => {
19956             'B::Op_private' => '5.037008',
19957             'Config' => '5.037008',
19958             'Config::Perl::V' => '0.35',
19959             'ExtUtils::Command' => '7.66',
19960             'ExtUtils::Command::MM' => '7.66',
19961             'ExtUtils::Install' => '2.22',
19962             'ExtUtils::Installed' => '2.22',
19963             'ExtUtils::Liblist' => '7.66',
19964             'ExtUtils::Liblist::Kid'=> '7.66',
19965             'ExtUtils::MM' => '7.66',
19966             'ExtUtils::MM_AIX' => '7.66',
19967             'ExtUtils::MM_Any' => '7.66',
19968             'ExtUtils::MM_BeOS' => '7.66',
19969             'ExtUtils::MM_Cygwin' => '7.66',
19970             'ExtUtils::MM_DOS' => '7.66',
19971             'ExtUtils::MM_Darwin' => '7.66',
19972             'ExtUtils::MM_MacOS' => '7.66',
19973             'ExtUtils::MM_NW5' => '7.66',
19974             'ExtUtils::MM_OS2' => '7.66',
19975             'ExtUtils::MM_OS390' => '7.66',
19976             'ExtUtils::MM_QNX' => '7.66',
19977             'ExtUtils::MM_UWIN' => '7.66',
19978             'ExtUtils::MM_Unix' => '7.66',
19979             'ExtUtils::MM_VMS' => '7.66',
19980             'ExtUtils::MM_VOS' => '7.66',
19981             'ExtUtils::MM_Win32' => '7.66',
19982             'ExtUtils::MM_Win95' => '7.66',
19983             'ExtUtils::MY' => '7.66',
19984             'ExtUtils::MakeMaker' => '7.66',
19985             'ExtUtils::MakeMaker::Config'=> '7.66',
19986             'ExtUtils::MakeMaker::Locale'=> '7.66',
19987             'ExtUtils::MakeMaker::version'=> '7.66',
19988             'ExtUtils::MakeMaker::version::regex'=> '7.66',
19989             'ExtUtils::Mkbootstrap' => '7.66',
19990             'ExtUtils::Mksymlists' => '7.66',
19991             'ExtUtils::Packlist' => '2.22',
19992             'ExtUtils::testlib' => '7.66',
19993             'File::Find' => '1.42',
19994             'IO::Zlib' => '1.14',
19995             'JSON::PP' => '4.16',
19996             'JSON::PP::Boolean' => '4.16',
19997             'Math::Complex' => '1.6',
19998             'Math::Trig' => '1.6',
19999             'Module::CoreList' => '5.20230120',
20000             'Module::CoreList::Utils'=> '5.20230120',
20001             'POSIX' => '2.11',
20002             'Pod::Man' => '5.01',
20003             'Pod::ParseLink' => '5.01',
20004             'Pod::Text' => '5.01',
20005             'Pod::Text::Color' => '5.01',
20006             'Pod::Text::Overstrike' => '5.01',
20007             'Pod::Text::Termcap' => '5.01',
20008             'Storable' => '3.29',
20009             'XS::APItest' => '1.30',
20010             'feature' => '1.79',
20011             're' => '0.44',
20012             'threads' => '2.34',
20013             },
20014             removed => {
20015             }
20016             },
20017             5.037009 => {
20018             delta_from => 5.037008,
20019             changed => {
20020             'B' => '1.88',
20021             'B::Op_private' => '5.037009',
20022             'Compress::Raw::Bzip2' => '2.204',
20023             'Compress::Raw::Zlib' => '2.204',
20024             'Compress::Zlib' => '2.204',
20025             'Config' => '5.037009',
20026             'Devel::PPPort' => '3.70',
20027             'Devel::Peek' => '1.33',
20028             'Fatal' => '2.36',
20029             'File::Find' => '1.43',
20030             'IO::Compress::Adapter::Bzip2'=> '2.204',
20031             'IO::Compress::Adapter::Deflate'=> '2.204',
20032             'IO::Compress::Adapter::Identity'=> '2.204',
20033             'IO::Compress::Base' => '2.204',
20034             'IO::Compress::Base::Common'=> '2.204',
20035             'IO::Compress::Bzip2' => '2.204',
20036             'IO::Compress::Deflate' => '2.204',
20037             'IO::Compress::Gzip' => '2.204',
20038             'IO::Compress::Gzip::Constants'=> '2.204',
20039             'IO::Compress::RawDeflate'=> '2.204',
20040             'IO::Compress::Zip' => '2.204',
20041             'IO::Compress::Zip::Constants'=> '2.204',
20042             'IO::Compress::Zlib::Constants'=> '2.204',
20043             'IO::Compress::Zlib::Extra'=> '2.204',
20044             'IO::Uncompress::Adapter::Bunzip2'=> '2.204',
20045             'IO::Uncompress::Adapter::Identity'=> '2.204',
20046             'IO::Uncompress::Adapter::Inflate'=> '2.204',
20047             'IO::Uncompress::AnyInflate'=> '2.204',
20048             'IO::Uncompress::AnyUncompress'=> '2.204',
20049             'IO::Uncompress::Base' => '2.204',
20050             'IO::Uncompress::Bunzip2'=> '2.204',
20051             'IO::Uncompress::Gunzip'=> '2.204',
20052             'IO::Uncompress::Inflate'=> '2.204',
20053             'IO::Uncompress::RawInflate'=> '2.204',
20054             'IO::Uncompress::Unzip' => '2.204',
20055             'Math::Complex' => '1.61',
20056             'Math::Trig' => '1.61',
20057             'Memoize' => '1.16',
20058             'Memoize::AnyDBM_File' => '1.16',
20059             'Memoize::Expire' => '1.16',
20060             'Memoize::NDBM_File' => '1.16',
20061             'Memoize::SDBM_File' => '1.16',
20062             'Memoize::Storable' => '1.16',
20063             'Module::CoreList' => '5.20230220',
20064             'Module::CoreList::Utils'=> '5.20230220',
20065             'Opcode' => '1.64',
20066             'Term::Cap' => '1.18',
20067             'Test2' => '1.302192',
20068             'Test2::API' => '1.302192',
20069             'Test2::API::Breakage' => '1.302192',
20070             'Test2::API::Context' => '1.302192',
20071             'Test2::API::Instance' => '1.302192',
20072             'Test2::API::InterceptResult'=> '1.302192',
20073             'Test2::API::InterceptResult::Event'=> '1.302192',
20074             'Test2::API::InterceptResult::Facet'=> '1.302192',
20075             'Test2::API::InterceptResult::Hub'=> '1.302192',
20076             'Test2::API::InterceptResult::Squasher'=> '1.302192',
20077             'Test2::API::Stack' => '1.302192',
20078             'Test2::Event' => '1.302192',
20079             'Test2::Event::Bail' => '1.302192',
20080             'Test2::Event::Diag' => '1.302192',
20081             'Test2::Event::Encoding'=> '1.302192',
20082             'Test2::Event::Exception'=> '1.302192',
20083             'Test2::Event::Fail' => '1.302192',
20084             'Test2::Event::Generic' => '1.302192',
20085             'Test2::Event::Note' => '1.302192',
20086             'Test2::Event::Ok' => '1.302192',
20087             'Test2::Event::Pass' => '1.302192',
20088             'Test2::Event::Plan' => '1.302192',
20089             'Test2::Event::Skip' => '1.302192',
20090             'Test2::Event::Subtest' => '1.302192',
20091             'Test2::Event::TAP::Version'=> '1.302192',
20092             'Test2::Event::V2' => '1.302192',
20093             'Test2::Event::Waiting' => '1.302192',
20094             'Test2::EventFacet' => '1.302192',
20095             'Test2::EventFacet::About'=> '1.302192',
20096             'Test2::EventFacet::Amnesty'=> '1.302192',
20097             'Test2::EventFacet::Assert'=> '1.302192',
20098             'Test2::EventFacet::Control'=> '1.302192',
20099             'Test2::EventFacet::Error'=> '1.302192',
20100             'Test2::EventFacet::Hub'=> '1.302192',
20101             'Test2::EventFacet::Info'=> '1.302192',
20102             'Test2::EventFacet::Info::Table'=> '1.302192',
20103             'Test2::EventFacet::Meta'=> '1.302192',
20104             'Test2::EventFacet::Parent'=> '1.302192',
20105             'Test2::EventFacet::Plan'=> '1.302192',
20106             'Test2::EventFacet::Render'=> '1.302192',
20107             'Test2::EventFacet::Trace'=> '1.302192',
20108             'Test2::Formatter' => '1.302192',
20109             'Test2::Formatter::TAP' => '1.302192',
20110             'Test2::Hub' => '1.302192',
20111             'Test2::Hub::Interceptor'=> '1.302192',
20112             'Test2::Hub::Interceptor::Terminator'=> '1.302192',
20113             'Test2::Hub::Subtest' => '1.302192',
20114             'Test2::IPC' => '1.302192',
20115             'Test2::IPC::Driver' => '1.302192',
20116             'Test2::IPC::Driver::Files'=> '1.302192',
20117             'Test2::Tools::Tiny' => '1.302192',
20118             'Test2::Util' => '1.302192',
20119             'Test2::Util::ExternalMeta'=> '1.302192',
20120             'Test2::Util::Facets2Legacy'=> '1.302192',
20121             'Test2::Util::HashBase' => '1.302192',
20122             'Test2::Util::Trace' => '1.302192',
20123             'Test::Builder' => '1.302192',
20124             'Test::Builder::Formatter'=> '1.302192',
20125             'Test::Builder::Module' => '1.302192',
20126             'Test::Builder::Tester' => '1.302192',
20127             'Test::Builder::Tester::Color'=> '1.302192',
20128             'Test::Builder::TodoDiag'=> '1.302192',
20129             'Test::More' => '1.302192',
20130             'Test::Simple' => '1.302192',
20131             'Test::Tester' => '1.302192',
20132             'Test::Tester::Capture' => '1.302192',
20133             'Test::Tester::CaptureRunner'=> '1.302192',
20134             'Test::Tester::Delegate'=> '1.302192',
20135             'Test::use::ok' => '1.302192',
20136             'Tie::File' => '1.07',
20137             'UNIVERSAL' => '1.15',
20138             'autodie' => '2.36',
20139             'autodie::Scope::Guard' => '2.36',
20140             'autodie::Scope::GuardStack'=> '2.36',
20141             'autodie::Util' => '2.36',
20142             'autodie::exception' => '2.36',
20143             'autodie::exception::system'=> '2.36',
20144             'autodie::hints' => '2.36',
20145             'autodie::skip' => '2.36',
20146             'experimental' => '0.031',
20147             'feature' => '1.80',
20148             'mro' => '1.28',
20149             'ok' => '1.302192',
20150             'parent' => '0.241',
20151             'stable' => '0.031',
20152             'warnings' => '1.62',
20153             },
20154             removed => {
20155             }
20156             },
20157             5.037010 => {
20158             delta_from => 5.037009,
20159             changed => {
20160             'B::Op_private' => '5.037010',
20161             'Benchmark' => '1.24',
20162             'Class::Struct' => '0.68',
20163             'Config' => '5.03701',
20164             'Config::Perl::V' => '0.36',
20165             'Cwd' => '3.89',
20166             'Data::Dumper' => '2.188',
20167             'Digest::SHA' => '6.04',
20168             'Env' => '1.06',
20169             'Math::Complex' => '1.62',
20170             'Math::Trig' => '1.62',
20171             'Module::CoreList' => '5.20230320',
20172             'Module::CoreList::Utils'=> '5.20230320',
20173             'Net::Cmd' => '3.15',
20174             'Net::Config' => '3.15',
20175             'Net::Domain' => '3.15',
20176             'Net::FTP' => '3.15',
20177             'Net::FTP::A' => '3.15',
20178             'Net::FTP::E' => '3.15',
20179             'Net::FTP::I' => '3.15',
20180             'Net::FTP::L' => '3.15',
20181             'Net::FTP::dataconn' => '3.15',
20182             'Net::NNTP' => '3.15',
20183             'Net::Netrc' => '3.15',
20184             'Net::POP3' => '3.15',
20185             'Net::SMTP' => '3.15',
20186             'Net::Time' => '3.15',
20187             'POSIX' => '2.12',
20188             'Storable' => '3.31',
20189             'Test2' => '1.302194',
20190             'Test2::API' => '1.302194',
20191             'Test2::API::Breakage' => '1.302194',
20192             'Test2::API::Context' => '1.302194',
20193             'Test2::API::Instance' => '1.302194',
20194             'Test2::API::InterceptResult'=> '1.302194',
20195             'Test2::API::InterceptResult::Event'=> '1.302194',
20196             'Test2::API::InterceptResult::Facet'=> '1.302194',
20197             'Test2::API::InterceptResult::Hub'=> '1.302194',
20198             'Test2::API::InterceptResult::Squasher'=> '1.302194',
20199             'Test2::API::Stack' => '1.302194',
20200             'Test2::Event' => '1.302194',
20201             'Test2::Event::Bail' => '1.302194',
20202             'Test2::Event::Diag' => '1.302194',
20203             'Test2::Event::Encoding'=> '1.302194',
20204             'Test2::Event::Exception'=> '1.302194',
20205             'Test2::Event::Fail' => '1.302194',
20206             'Test2::Event::Generic' => '1.302194',
20207             'Test2::Event::Note' => '1.302194',
20208             'Test2::Event::Ok' => '1.302194',
20209             'Test2::Event::Pass' => '1.302194',
20210             'Test2::Event::Plan' => '1.302194',
20211             'Test2::Event::Skip' => '1.302194',
20212             'Test2::Event::Subtest' => '1.302194',
20213             'Test2::Event::TAP::Version'=> '1.302194',
20214             'Test2::Event::V2' => '1.302194',
20215             'Test2::Event::Waiting' => '1.302194',
20216             'Test2::EventFacet' => '1.302194',
20217             'Test2::EventFacet::About'=> '1.302194',
20218             'Test2::EventFacet::Amnesty'=> '1.302194',
20219             'Test2::EventFacet::Assert'=> '1.302194',
20220             'Test2::EventFacet::Control'=> '1.302194',
20221             'Test2::EventFacet::Error'=> '1.302194',
20222             'Test2::EventFacet::Hub'=> '1.302194',
20223             'Test2::EventFacet::Info'=> '1.302194',
20224             'Test2::EventFacet::Info::Table'=> '1.302194',
20225             'Test2::EventFacet::Meta'=> '1.302194',
20226             'Test2::EventFacet::Parent'=> '1.302194',
20227             'Test2::EventFacet::Plan'=> '1.302194',
20228             'Test2::EventFacet::Render'=> '1.302194',
20229             'Test2::EventFacet::Trace'=> '1.302194',
20230             'Test2::Formatter' => '1.302194',
20231             'Test2::Formatter::TAP' => '1.302194',
20232             'Test2::Hub' => '1.302194',
20233             'Test2::Hub::Interceptor'=> '1.302194',
20234             'Test2::Hub::Interceptor::Terminator'=> '1.302194',
20235             'Test2::Hub::Subtest' => '1.302194',
20236             'Test2::IPC' => '1.302194',
20237             'Test2::IPC::Driver' => '1.302194',
20238             'Test2::IPC::Driver::Files'=> '1.302194',
20239             'Test2::Tools::Tiny' => '1.302194',
20240             'Test2::Util' => '1.302194',
20241             'Test2::Util::ExternalMeta'=> '1.302194',
20242             'Test2::Util::Facets2Legacy'=> '1.302194',
20243             'Test2::Util::HashBase' => '1.302194',
20244             'Test2::Util::Trace' => '1.302194',
20245             'Test::Builder' => '1.302194',
20246             'Test::Builder::Formatter'=> '1.302194',
20247             'Test::Builder::Module' => '1.302194',
20248             'Test::Builder::Tester' => '1.302194',
20249             'Test::Builder::Tester::Color'=> '1.302194',
20250             'Test::Builder::TodoDiag'=> '1.302194',
20251             'Test::More' => '1.302194',
20252             'Test::Simple' => '1.302194',
20253             'Test::Tester' => '1.302194',
20254             'Test::Tester::Capture' => '1.302194',
20255             'Test::Tester::CaptureRunner'=> '1.302194',
20256             'Test::Tester::Delegate'=> '1.302194',
20257             'Test::use::ok' => '1.302194',
20258             'Time::HiRes' => '1.9774',
20259             'XS::APItest' => '1.32',
20260             'feature' => '1.81',
20261             'ok' => '1.302194',
20262             'overload' => '1.37',
20263             'threads' => '2.35',
20264             'threads::shared' => '1.67',
20265             'warnings' => '1.63',
20266             'warnings::register' => '1.05',
20267             },
20268             removed => {
20269             }
20270             },
20271             5.037011 => {
20272             delta_from => 5.037010,
20273             changed => {
20274             'B::Deparse' => '1.73',
20275             'B::Op_private' => '5.037011',
20276             'Config' => '5.037011',
20277             'Devel::PPPort' => '3.71',
20278             'ExtUtils::Command' => '7.70',
20279             'ExtUtils::Command::MM' => '7.70',
20280             'ExtUtils::Liblist' => '7.70',
20281             'ExtUtils::Liblist::Kid'=> '7.70',
20282             'ExtUtils::MM' => '7.70',
20283             'ExtUtils::MM_AIX' => '7.70',
20284             'ExtUtils::MM_Any' => '7.70',
20285             'ExtUtils::MM_BeOS' => '7.70',
20286             'ExtUtils::MM_Cygwin' => '7.70',
20287             'ExtUtils::MM_DOS' => '7.70',
20288             'ExtUtils::MM_Darwin' => '7.70',
20289             'ExtUtils::MM_MacOS' => '7.70',
20290             'ExtUtils::MM_NW5' => '7.70',
20291             'ExtUtils::MM_OS2' => '7.70',
20292             'ExtUtils::MM_OS390' => '7.70',
20293             'ExtUtils::MM_QNX' => '7.70',
20294             'ExtUtils::MM_UWIN' => '7.70',
20295             'ExtUtils::MM_Unix' => '7.70',
20296             'ExtUtils::MM_VMS' => '7.70',
20297             'ExtUtils::MM_VOS' => '7.70',
20298             'ExtUtils::MM_Win32' => '7.70',
20299             'ExtUtils::MM_Win95' => '7.70',
20300             'ExtUtils::MY' => '7.70',
20301             'ExtUtils::MakeMaker' => '7.70',
20302             'ExtUtils::MakeMaker::Config'=> '7.70',
20303             'ExtUtils::MakeMaker::Locale'=> '7.70',
20304             'ExtUtils::MakeMaker::version'=> '7.70',
20305             'ExtUtils::MakeMaker::version::regex'=> '7.70',
20306             'ExtUtils::Mkbootstrap' => '7.70',
20307             'ExtUtils::Mksymlists' => '7.70',
20308             'ExtUtils::ParseXS' => '3.50',
20309             'ExtUtils::ParseXS::Constants'=> '3.50',
20310             'ExtUtils::ParseXS::CountLines'=> '3.50',
20311             'ExtUtils::ParseXS::Eval'=> '3.50',
20312             'ExtUtils::ParseXS::Utilities'=> '3.50',
20313             'ExtUtils::testlib' => '7.70',
20314             'File::Copy' => '2.41',
20315             'Locale::Maketext' => '1.33',
20316             'Module::CoreList' => '5.20230420',
20317             'Module::CoreList::Utils'=> '5.20230420',
20318             'Net::Ping' => '2.76',
20319             'feature' => '1.82',
20320             'threads' => '2.36',
20321             'threads::shared' => '1.68',
20322             'warnings' => '1.64',
20323             },
20324             removed => {
20325             }
20326             },
20327             5.036001 => {
20328             delta_from => 5.036000,
20329             changed => {
20330             'B::Op_private' => '5.036001',
20331             'Config' => '5.036001',
20332             'Module::CoreList' => '5.20230423',
20333             'Module::CoreList::Utils'=> '5.20230423',
20334             },
20335             removed => {
20336             }
20337             },
20338             5.038000 => {
20339             delta_from => 5.037011,
20340             changed => {
20341             'B::Deparse' => '1.74',
20342             'B::Op_private' => '5.038000',
20343             'CPAN' => '2.36',
20344             'CPAN::HTTP::Client' => '1.9602',
20345             'Compress::Raw::Bzip2' => '2.204_001',
20346             'Compress::Raw::Zlib' => '2.204_001',
20347             'Config' => '5.038',
20348             'Digest::MD5' => '2.58_01',
20349             'DynaLoader' => '1.54',
20350             'ExtUtils::ParseXS' => '3.51',
20351             'ExtUtils::ParseXS::Constants'=> '3.51',
20352             'ExtUtils::ParseXS::CountLines'=> '3.51',
20353             'ExtUtils::ParseXS::Eval'=> '3.51',
20354             'ExtUtils::ParseXS::Utilities'=> '3.51',
20355             'ExtUtils::Typemaps' => '3.51',
20356             'ExtUtils::Typemaps::Cmd'=> '3.51',
20357             'ExtUtils::Typemaps::InputMap'=> '3.51',
20358             'ExtUtils::Typemaps::OutputMap'=> '3.51',
20359             'ExtUtils::Typemaps::Type'=> '3.51',
20360             'File::Glob' => '1.40',
20361             'HTTP::Tiny' => '0.086',
20362             'IO' => '1.52',
20363             'IO::Dir' => '1.52',
20364             'IO::File' => '1.52',
20365             'IO::Handle' => '1.52',
20366             'IO::Pipe' => '1.52',
20367             'IO::Poll' => '1.52',
20368             'IO::Seekable' => '1.52',
20369             'IO::Select' => '1.52',
20370             'IO::Socket' => '1.52',
20371             'IO::Socket::INET' => '1.52',
20372             'IO::Socket::IP' => '0.41_01',
20373             'IO::Socket::UNIX' => '1.52',
20374             'MIME::Base64' => '3.16_01',
20375             'MIME::QuotedPrint' => '3.16_01',
20376             'Module::CoreList' => '5.20230520',
20377             'Module::CoreList::Utils'=> '5.20230520',
20378             'POSIX' => '2.13',
20379             'SDBM_File' => '1.17',
20380             'Storable' => '3.32',
20381             'Time::HiRes' => '1.9775',
20382             'Time::Piece' => '1.3401_01',
20383             'warnings' => '1.65',
20384             },
20385             removed => {
20386             }
20387             },
20388             5.039001 => {
20389             delta_from => 5.038000,
20390             changed => {
20391             'B::Op_private' => '5.039001',
20392             'CPAN::Meta::Requirements'=> '2.143',
20393             'CPAN::Meta::Requirements::Range'=> '2.143',
20394             'Compress::Raw::Bzip2' => '2.205',
20395             'Compress::Raw::Zlib' => '2.205',
20396             'Compress::Zlib' => '2.205',
20397             'Config' => '5.039001',
20398             'Errno' => '1.38',
20399             'ExtUtils::CBuilder' => '0.280239',
20400             'ExtUtils::CBuilder::Base'=> '0.280239',
20401             'ExtUtils::CBuilder::Platform::Unix'=> '0.280239',
20402             'ExtUtils::CBuilder::Platform::VMS'=> '0.280239',
20403             'ExtUtils::CBuilder::Platform::Windows'=> '0.280239',
20404             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280239',
20405             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280239',
20406             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280239',
20407             'ExtUtils::CBuilder::Platform::aix'=> '0.280239',
20408             'ExtUtils::CBuilder::Platform::android'=> '0.280239',
20409             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280239',
20410             'ExtUtils::CBuilder::Platform::darwin'=> '0.280239',
20411             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280239',
20412             'ExtUtils::CBuilder::Platform::os2'=> '0.280239',
20413             'ExtUtils::Manifest' => '1.75',
20414             'IO::Compress::Adapter::Bzip2'=> '2.205',
20415             'IO::Compress::Adapter::Deflate'=> '2.205',
20416             'IO::Compress::Adapter::Identity'=> '2.205',
20417             'IO::Compress::Base' => '2.205',
20418             'IO::Compress::Base::Common'=> '2.205',
20419             'IO::Compress::Bzip2' => '2.205',
20420             'IO::Compress::Deflate' => '2.205',
20421             'IO::Compress::Gzip' => '2.205',
20422             'IO::Compress::Gzip::Constants'=> '2.205',
20423             'IO::Compress::RawDeflate'=> '2.205',
20424             'IO::Compress::Zip' => '2.205',
20425             'IO::Compress::Zip::Constants'=> '2.205',
20426             'IO::Compress::Zlib::Constants'=> '2.205',
20427             'IO::Compress::Zlib::Extra'=> '2.205',
20428             'IO::Uncompress::Adapter::Bunzip2'=> '2.205',
20429             'IO::Uncompress::Adapter::Identity'=> '2.205',
20430             'IO::Uncompress::Adapter::Inflate'=> '2.205',
20431             'IO::Uncompress::AnyInflate'=> '2.205',
20432             'IO::Uncompress::AnyUncompress'=> '2.205',
20433             'IO::Uncompress::Base' => '2.205',
20434             'IO::Uncompress::Bunzip2'=> '2.205',
20435             'IO::Uncompress::Gunzip'=> '2.205',
20436             'IO::Uncompress::Inflate'=> '2.205',
20437             'IO::Uncompress::RawInflate'=> '2.205',
20438             'IO::Uncompress::Unzip' => '2.205',
20439             'Math::BigFloat' => '1.999839',
20440             'Math::BigInt' => '1.999839',
20441             'Math::BigInt::Calc' => '1.999839',
20442             'Math::BigInt::FastCalc'=> '0.5014',
20443             'Math::BigInt::Lib' => '1.999839',
20444             'Module::CoreList' => '5.20230720',
20445             'Module::CoreList::Utils'=> '5.20230720',
20446             'Module::Metadata' => '1.000038',
20447             'POSIX' => '2.14',
20448             'Socket' => '2.037',
20449             'Test2' => '1.302195',
20450             'Test2::API' => '1.302195',
20451             'Test2::API::Breakage' => '1.302195',
20452             'Test2::API::Context' => '1.302195',
20453             'Test2::API::Instance' => '1.302195',
20454             'Test2::API::InterceptResult'=> '1.302195',
20455             'Test2::API::InterceptResult::Event'=> '1.302195',
20456             'Test2::API::InterceptResult::Facet'=> '1.302195',
20457             'Test2::API::InterceptResult::Hub'=> '1.302195',
20458             'Test2::API::InterceptResult::Squasher'=> '1.302195',
20459             'Test2::API::Stack' => '1.302195',
20460             'Test2::Event' => '1.302195',
20461             'Test2::Event::Bail' => '1.302195',
20462             'Test2::Event::Diag' => '1.302195',
20463             'Test2::Event::Encoding'=> '1.302195',
20464             'Test2::Event::Exception'=> '1.302195',
20465             'Test2::Event::Fail' => '1.302195',
20466             'Test2::Event::Generic' => '1.302195',
20467             'Test2::Event::Note' => '1.302195',
20468             'Test2::Event::Ok' => '1.302195',
20469             'Test2::Event::Pass' => '1.302195',
20470             'Test2::Event::Plan' => '1.302195',
20471             'Test2::Event::Skip' => '1.302195',
20472             'Test2::Event::Subtest' => '1.302195',
20473             'Test2::Event::TAP::Version'=> '1.302195',
20474             'Test2::Event::V2' => '1.302195',
20475             'Test2::Event::Waiting' => '1.302195',
20476             'Test2::EventFacet' => '1.302195',
20477             'Test2::EventFacet::About'=> '1.302195',
20478             'Test2::EventFacet::Amnesty'=> '1.302195',
20479             'Test2::EventFacet::Assert'=> '1.302195',
20480             'Test2::EventFacet::Control'=> '1.302195',
20481             'Test2::EventFacet::Error'=> '1.302195',
20482             'Test2::EventFacet::Hub'=> '1.302195',
20483             'Test2::EventFacet::Info'=> '1.302195',
20484             'Test2::EventFacet::Info::Table'=> '1.302195',
20485             'Test2::EventFacet::Meta'=> '1.302195',
20486             'Test2::EventFacet::Parent'=> '1.302195',
20487             'Test2::EventFacet::Plan'=> '1.302195',
20488             'Test2::EventFacet::Render'=> '1.302195',
20489             'Test2::EventFacet::Trace'=> '1.302195',
20490             'Test2::Formatter' => '1.302195',
20491             'Test2::Formatter::TAP' => '1.302195',
20492             'Test2::Hub' => '1.302195',
20493             'Test2::Hub::Interceptor'=> '1.302195',
20494             'Test2::Hub::Interceptor::Terminator'=> '1.302195',
20495             'Test2::Hub::Subtest' => '1.302195',
20496             'Test2::IPC' => '1.302195',
20497             'Test2::IPC::Driver' => '1.302195',
20498             'Test2::IPC::Driver::Files'=> '1.302195',
20499             'Test2::Tools::Tiny' => '1.302195',
20500             'Test2::Util' => '1.302195',
20501             'Test2::Util::ExternalMeta'=> '1.302195',
20502             'Test2::Util::Facets2Legacy'=> '1.302195',
20503             'Test2::Util::HashBase' => '1.302195',
20504             'Test2::Util::Trace' => '1.302195',
20505             'Test::Builder' => '1.302195',
20506             'Test::Builder::Formatter'=> '1.302195',
20507             'Test::Builder::Module' => '1.302195',
20508             'Test::Builder::Tester' => '1.302195',
20509             'Test::Builder::Tester::Color'=> '1.302195',
20510             'Test::Builder::TodoDiag'=> '1.302195',
20511             'Test::More' => '1.302195',
20512             'Test::Simple' => '1.302195',
20513             'Test::Tester' => '1.302195',
20514             'Test::Tester::Capture' => '1.302195',
20515             'Test::Tester::CaptureRunner'=> '1.302195',
20516             'Test::Tester::Delegate'=> '1.302195',
20517             'Test::use::ok' => '1.302195',
20518             'Text::Tabs' => '2023.0511',
20519             'Text::Wrap' => '2023.0511',
20520             'Time::HiRes' => '1.9776',
20521             'Time::Local' => '1.35',
20522             'UNIVERSAL' => '1.16',
20523             'feature' => '1.83',
20524             'ok' => '1.302195',
20525             'perlfaq' => '5.20230701',
20526             'threads' => '2.37',
20527             'warnings' => '1.66',
20528             'warnings::register' => '1.06',
20529             },
20530             removed => {
20531             }
20532             },
20533             5.039002 => {
20534             delta_from => 5.039001,
20535             changed => {
20536             'App::Prove' => '3.47',
20537             'App::Prove::State' => '3.47',
20538             'App::Prove::State::Result'=> '3.47',
20539             'App::Prove::State::Result::Test'=> '3.47',
20540             'B::Op_private' => '5.039002',
20541             'Compress::Raw::Bzip2' => '2.206',
20542             'Compress::Raw::Zlib' => '2.206',
20543             'Compress::Zlib' => '2.206',
20544             'Config' => '5.039002',
20545             'Cwd' => '3.90',
20546             'Devel::Peek' => '1.34',
20547             'ExtUtils::Miniperl' => '1.14',
20548             'File::Spec' => '3.90',
20549             'File::Spec::AmigaOS' => '3.90',
20550             'File::Spec::Cygwin' => '3.90',
20551             'File::Spec::Epoc' => '3.90',
20552             'File::Spec::Functions' => '3.90',
20553             'File::Spec::Mac' => '3.90',
20554             'File::Spec::OS2' => '3.90',
20555             'File::Spec::Unix' => '3.90',
20556             'File::Spec::VMS' => '3.90',
20557             'File::Spec::Win32' => '3.90',
20558             'HTTP::Tiny' => '0.088',
20559             'IO::Compress::Adapter::Bzip2'=> '2.206',
20560             'IO::Compress::Adapter::Deflate'=> '2.206',
20561             'IO::Compress::Adapter::Identity'=> '2.206',
20562             'IO::Compress::Base' => '2.206',
20563             'IO::Compress::Base::Common'=> '2.206',
20564             'IO::Compress::Bzip2' => '2.206',
20565             'IO::Compress::Deflate' => '2.206',
20566             'IO::Compress::Gzip' => '2.206',
20567             'IO::Compress::Gzip::Constants'=> '2.206',
20568             'IO::Compress::RawDeflate'=> '2.206',
20569             'IO::Compress::Zip' => '2.206',
20570             'IO::Compress::Zip::Constants'=> '2.206',
20571             'IO::Compress::Zlib::Constants'=> '2.206',
20572             'IO::Compress::Zlib::Extra'=> '2.206',
20573             'IO::Socket::IP' => '0.42',
20574             'IO::Uncompress::Adapter::Bunzip2'=> '2.206',
20575             'IO::Uncompress::Adapter::Identity'=> '2.206',
20576             'IO::Uncompress::Adapter::Inflate'=> '2.206',
20577             'IO::Uncompress::AnyInflate'=> '2.206',
20578             'IO::Uncompress::AnyUncompress'=> '2.206',
20579             'IO::Uncompress::Base' => '2.206',
20580             'IO::Uncompress::Bunzip2'=> '2.206',
20581             'IO::Uncompress::Gunzip'=> '2.206',
20582             'IO::Uncompress::Inflate'=> '2.206',
20583             'IO::Uncompress::RawInflate'=> '2.206',
20584             'IO::Uncompress::Unzip' => '2.206',
20585             'Module::CoreList' => '5.20230820',
20586             'Module::CoreList::Utils'=> '5.20230820',
20587             'NDBM_File' => '1.17',
20588             'Opcode' => '1.65',
20589             'POSIX' => '2.15',
20590             'PerlIO::scalar' => '0.32',
20591             'PerlIO::via' => '0.19',
20592             'Pod::Html' => '1.35',
20593             'Pod::Html::Util' => '1.35',
20594             'Pod::Simple' => '3.45',
20595             'Pod::Simple::BlackBox' => '3.45',
20596             'Pod::Simple::Checker' => '3.45',
20597             'Pod::Simple::Debug' => '3.45',
20598             'Pod::Simple::DumpAsText'=> '3.45',
20599             'Pod::Simple::DumpAsXML'=> '3.45',
20600             'Pod::Simple::HTML' => '3.45',
20601             'Pod::Simple::HTMLBatch'=> '3.45',
20602             'Pod::Simple::HTMLLegacy'=> '5.02',
20603             'Pod::Simple::LinkSection'=> '3.45',
20604             'Pod::Simple::Methody' => '3.45',
20605             'Pod::Simple::Progress' => '3.45',
20606             'Pod::Simple::PullParser'=> '3.45',
20607             'Pod::Simple::PullParserEndToken'=> '3.45',
20608             'Pod::Simple::PullParserStartToken'=> '3.45',
20609             'Pod::Simple::PullParserTextToken'=> '3.45',
20610             'Pod::Simple::PullParserToken'=> '3.45',
20611             'Pod::Simple::RTF' => '3.45',
20612             'Pod::Simple::Search' => '3.45',
20613             'Pod::Simple::SimpleTree'=> '3.45',
20614             'Pod::Simple::Text' => '3.45',
20615             'Pod::Simple::TextContent'=> '3.45',
20616             'Pod::Simple::TiedOutFH'=> '3.45',
20617             'Pod::Simple::Transcode'=> '3.45',
20618             'Pod::Simple::TranscodeDumb'=> '3.45',
20619             'Pod::Simple::TranscodeSmart'=> '3.45',
20620             'Pod::Simple::XHTML' => '3.45',
20621             'Pod::Simple::XMLOutStream'=> '3.45',
20622             'Safe' => '2.45',
20623             'TAP::Base' => '3.47',
20624             'TAP::Formatter::Base' => '3.47',
20625             'TAP::Formatter::Color' => '3.47',
20626             'TAP::Formatter::Console'=> '3.47',
20627             'TAP::Formatter::Console::ParallelSession'=> '3.47',
20628             'TAP::Formatter::Console::Session'=> '3.47',
20629             'TAP::Formatter::File' => '3.47',
20630             'TAP::Formatter::File::Session'=> '3.47',
20631             'TAP::Formatter::Session'=> '3.47',
20632             'TAP::Harness' => '3.47',
20633             'TAP::Harness::Env' => '3.47',
20634             'TAP::Object' => '3.47',
20635             'TAP::Parser' => '3.47',
20636             'TAP::Parser::Aggregator'=> '3.47',
20637             'TAP::Parser::Grammar' => '3.47',
20638             'TAP::Parser::Iterator' => '3.47',
20639             'TAP::Parser::Iterator::Array'=> '3.47',
20640             'TAP::Parser::Iterator::Process'=> '3.47',
20641             'TAP::Parser::Iterator::Stream'=> '3.47',
20642             'TAP::Parser::IteratorFactory'=> '3.47',
20643             'TAP::Parser::Multiplexer'=> '3.47',
20644             'TAP::Parser::Result' => '3.47',
20645             'TAP::Parser::Result::Bailout'=> '3.47',
20646             'TAP::Parser::Result::Comment'=> '3.47',
20647             'TAP::Parser::Result::Plan'=> '3.47',
20648             'TAP::Parser::Result::Pragma'=> '3.47',
20649             'TAP::Parser::Result::Test'=> '3.47',
20650             'TAP::Parser::Result::Unknown'=> '3.47',
20651             'TAP::Parser::Result::Version'=> '3.47',
20652             'TAP::Parser::Result::YAML'=> '3.47',
20653             'TAP::Parser::ResultFactory'=> '3.47',
20654             'TAP::Parser::Scheduler'=> '3.47',
20655             'TAP::Parser::Scheduler::Job'=> '3.47',
20656             'TAP::Parser::Scheduler::Spinner'=> '3.47',
20657             'TAP::Parser::Source' => '3.47',
20658             'TAP::Parser::SourceHandler'=> '3.47',
20659             'TAP::Parser::SourceHandler::Executable'=> '3.47',
20660             'TAP::Parser::SourceHandler::File'=> '3.47',
20661             'TAP::Parser::SourceHandler::Handle'=> '3.47',
20662             'TAP::Parser::SourceHandler::Perl'=> '3.47',
20663             'TAP::Parser::SourceHandler::RawTAP'=> '3.47',
20664             'TAP::Parser::YAMLish::Reader'=> '3.47',
20665             'TAP::Parser::YAMLish::Writer'=> '3.47',
20666             'Test::Harness' => '3.47',
20667             'XS::APItest' => '1.33',
20668             'builtin' => '0.009',
20669             'feature' => '1.84',
20670             'perlfaq' => '5.20230812',
20671             'strict' => '1.13',
20672             'threads' => '2.38',
20673             'warnings' => '1.67',
20674             },
20675             removed => {
20676             }
20677             },
20678             5.039003 => {
20679             delta_from => 5.039002,
20680             changed => {
20681             'B' => '1.89',
20682             'B::Op_private' => '5.039003',
20683             'Config' => '5.039003',
20684             'DB_File' => '1.859',
20685             'Data::Dumper' => '2.189',
20686             'Devel::PPPort' => '3.72',
20687             'ExtUtils::CBuilder' => '0.280240',
20688             'ExtUtils::CBuilder::Base'=> '0.280240',
20689             'ExtUtils::CBuilder::Platform::Unix'=> '0.280240',
20690             'ExtUtils::CBuilder::Platform::VMS'=> '0.280240',
20691             'ExtUtils::CBuilder::Platform::Windows'=> '0.280240',
20692             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280240',
20693             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280240',
20694             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280240',
20695             'ExtUtils::CBuilder::Platform::aix'=> '0.280240',
20696             'ExtUtils::CBuilder::Platform::android'=> '0.280240',
20697             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280240',
20698             'ExtUtils::CBuilder::Platform::darwin'=> '0.280240',
20699             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280240',
20700             'ExtUtils::CBuilder::Platform::os2'=> '0.280240',
20701             'File::Compare' => '1.1008',
20702             'File::Spec::AmigaOS' => '3.91',
20703             'File::Spec::Cygwin' => '3.91',
20704             'File::Spec::Epoc' => '3.91',
20705             'File::Spec::Functions' => '3.91',
20706             'File::Spec::Mac' => '3.91',
20707             'File::Spec::OS2' => '3.91',
20708             'File::Spec::Unix' => '3.91',
20709             'File::Spec::VMS' => '3.91',
20710             'File::Spec::Win32' => '3.91',
20711             'FindBin' => '1.54',
20712             'Getopt::Std' => '1.14',
20713             'IO' => '1.53',
20714             'IO::Dir' => '1.53',
20715             'IO::File' => '1.53',
20716             'IO::Handle' => '1.53',
20717             'IO::Pipe' => '1.53',
20718             'IO::Poll' => '1.53',
20719             'IO::Seekable' => '1.53',
20720             'IO::Select' => '1.53',
20721             'IO::Socket' => '1.53',
20722             'IO::Socket::INET' => '1.53',
20723             'IO::Socket::UNIX' => '1.53',
20724             'Module::CoreList' => '5.20230920',
20725             'Module::CoreList::Utils'=> '5.20230920',
20726             'builtin' => '0.010',
20727             'fields' => '2.25',
20728             'threads' => '2.39',
20729             'threads::shared' => '1.69',
20730             },
20731             removed => {
20732             }
20733             },
20734             5.039004 => {
20735             delta_from => 5.039003,
20736             changed => {
20737             'App::Prove' => '3.48',
20738             'App::Prove::State' => '3.48',
20739             'App::Prove::State::Result'=> '3.48',
20740             'App::Prove::State::Result::Test'=> '3.48',
20741             'B::Op_private' => '5.039004',
20742             'Config' => '5.039004',
20743             'File::Find' => '1.44',
20744             'File::stat' => '1.14',
20745             'Math::BigFloat' => '1.999842',
20746             'Math::BigInt' => '1.999842',
20747             'Math::BigInt::Calc' => '1.999842',
20748             'Math::BigInt::FastCalc'=> '0.5015',
20749             'Math::BigInt::Lib' => '1.999842',
20750             'Module::CoreList' => '5.20231025',
20751             'Module::CoreList::Utils'=> '5.20231025',
20752             'Net::hostent' => '1.04',
20753             'Net::netent' => '1.02',
20754             'Net::protoent' => '1.03',
20755             'Net::servent' => '1.04',
20756             'POSIX' => '2.16',
20757             'TAP::Base' => '3.48',
20758             'TAP::Formatter::Base' => '3.48',
20759             'TAP::Formatter::Color' => '3.48',
20760             'TAP::Formatter::Console'=> '3.48',
20761             'TAP::Formatter::Console::ParallelSession'=> '3.48',
20762             'TAP::Formatter::Console::Session'=> '3.48',
20763             'TAP::Formatter::File' => '3.48',
20764             'TAP::Formatter::File::Session'=> '3.48',
20765             'TAP::Formatter::Session'=> '3.48',
20766             'TAP::Harness' => '3.48',
20767             'TAP::Harness::Env' => '3.48',
20768             'TAP::Object' => '3.48',
20769             'TAP::Parser' => '3.48',
20770             'TAP::Parser::Aggregator'=> '3.48',
20771             'TAP::Parser::Grammar' => '3.48',
20772             'TAP::Parser::Iterator' => '3.48',
20773             'TAP::Parser::Iterator::Array'=> '3.48',
20774             'TAP::Parser::Iterator::Process'=> '3.48',
20775             'TAP::Parser::Iterator::Stream'=> '3.48',
20776             'TAP::Parser::IteratorFactory'=> '3.48',
20777             'TAP::Parser::Multiplexer'=> '3.48',
20778             'TAP::Parser::Result' => '3.48',
20779             'TAP::Parser::Result::Bailout'=> '3.48',
20780             'TAP::Parser::Result::Comment'=> '3.48',
20781             'TAP::Parser::Result::Plan'=> '3.48',
20782             'TAP::Parser::Result::Pragma'=> '3.48',
20783             'TAP::Parser::Result::Test'=> '3.48',
20784             'TAP::Parser::Result::Unknown'=> '3.48',
20785             'TAP::Parser::Result::Version'=> '3.48',
20786             'TAP::Parser::Result::YAML'=> '3.48',
20787             'TAP::Parser::ResultFactory'=> '3.48',
20788             'TAP::Parser::Scheduler'=> '3.48',
20789             'TAP::Parser::Scheduler::Job'=> '3.48',
20790             'TAP::Parser::Scheduler::Spinner'=> '3.48',
20791             'TAP::Parser::Source' => '3.48',
20792             'TAP::Parser::SourceHandler'=> '3.48',
20793             'TAP::Parser::SourceHandler::Executable'=> '3.48',
20794             'TAP::Parser::SourceHandler::File'=> '3.48',
20795             'TAP::Parser::SourceHandler::Handle'=> '3.48',
20796             'TAP::Parser::SourceHandler::Perl'=> '3.48',
20797             'TAP::Parser::SourceHandler::RawTAP'=> '3.48',
20798             'TAP::Parser::YAMLish::Reader'=> '3.48',
20799             'TAP::Parser::YAMLish::Writer'=> '3.48',
20800             'Term::Table' => '0.017',
20801             'Term::Table::Cell' => '0.017',
20802             'Term::Table::CellStack'=> '0.017',
20803             'Term::Table::HashBase' => '0.017',
20804             'Term::Table::LineBreak'=> '0.017',
20805             'Term::Table::Spacer' => '0.017',
20806             'Term::Table::Util' => '0.017',
20807             'Test2::AsyncSubtest' => '0.000156',
20808             'Test2::AsyncSubtest::Event::Attach'=> '0.000156',
20809             'Test2::AsyncSubtest::Event::Detach'=> '0.000156',
20810             'Test2::AsyncSubtest::Formatter'=> '0.000156',
20811             'Test2::AsyncSubtest::Hub'=> '0.000156',
20812             'Test2::Bundle' => '0.000156',
20813             'Test2::Bundle::Extended'=> '0.000156',
20814             'Test2::Bundle::More' => '0.000156',
20815             'Test2::Bundle::Simple' => '0.000156',
20816             'Test2::Compare' => '0.000156',
20817             'Test2::Compare::Array' => '0.000156',
20818             'Test2::Compare::Bag' => '0.000156',
20819             'Test2::Compare::Base' => '0.000156',
20820             'Test2::Compare::Bool' => '0.000156',
20821             'Test2::Compare::Custom'=> '0.000156',
20822             'Test2::Compare::DeepRef'=> '0.000156',
20823             'Test2::Compare::Delta' => '0.000156',
20824             'Test2::Compare::Event' => '0.000156',
20825             'Test2::Compare::EventMeta'=> '0.000156',
20826             'Test2::Compare::Float' => '0.000156',
20827             'Test2::Compare::Hash' => '0.000156',
20828             'Test2::Compare::Isa' => '0.000156',
20829             'Test2::Compare::Meta' => '0.000156',
20830             'Test2::Compare::Negatable'=> '0.000156',
20831             'Test2::Compare::Number'=> '0.000156',
20832             'Test2::Compare::Object'=> '0.000156',
20833             'Test2::Compare::OrderedSubset'=> '0.000156',
20834             'Test2::Compare::Pattern'=> '0.000156',
20835             'Test2::Compare::Ref' => '0.000156',
20836             'Test2::Compare::Regex' => '0.000156',
20837             'Test2::Compare::Scalar'=> '0.000156',
20838             'Test2::Compare::Set' => '0.000156',
20839             'Test2::Compare::String'=> '0.000156',
20840             'Test2::Compare::Undef' => '0.000156',
20841             'Test2::Compare::Wildcard'=> '0.000156',
20842             'Test2::Manual' => '0.000156',
20843             'Test2::Manual::Anatomy'=> '0.000156',
20844             'Test2::Manual::Anatomy::API'=> '0.000156',
20845             'Test2::Manual::Anatomy::Context'=> '0.000156',
20846             'Test2::Manual::Anatomy::EndToEnd'=> '0.000156',
20847             'Test2::Manual::Anatomy::Event'=> '0.000156',
20848             'Test2::Manual::Anatomy::Hubs'=> '0.000156',
20849             'Test2::Manual::Anatomy::IPC'=> '0.000156',
20850             'Test2::Manual::Anatomy::Utilities'=> '0.000156',
20851             'Test2::Manual::Concurrency'=> '0.000156',
20852             'Test2::Manual::Contributing'=> '0.000156',
20853             'Test2::Manual::Testing'=> '0.000156',
20854             'Test2::Manual::Testing::Introduction'=> '0.000156',
20855             'Test2::Manual::Testing::Migrating'=> '0.000156',
20856             'Test2::Manual::Testing::Planning'=> '0.000156',
20857             'Test2::Manual::Testing::Todo'=> '0.000156',
20858             'Test2::Manual::Tooling'=> '0.000156',
20859             'Test2::Manual::Tooling::FirstTool'=> '0.000156',
20860             'Test2::Manual::Tooling::Formatter'=> '0.000156',
20861             'Test2::Manual::Tooling::Nesting'=> '0.000156',
20862             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000156',
20863             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000156',
20864             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000156',
20865             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000156',
20866             'Test2::Manual::Tooling::Subtest'=> '0.000156',
20867             'Test2::Manual::Tooling::TestBuilder'=> '0.000156',
20868             'Test2::Manual::Tooling::Testing'=> '0.000156',
20869             'Test2::Mock' => '0.000156',
20870             'Test2::Plugin' => '0.000156',
20871             'Test2::Plugin::BailOnFail'=> '0.000156',
20872             'Test2::Plugin::DieOnFail'=> '0.000156',
20873             'Test2::Plugin::ExitSummary'=> '0.000156',
20874             'Test2::Plugin::SRand' => '0.000156',
20875             'Test2::Plugin::Times' => '0.000156',
20876             'Test2::Plugin::UTF8' => '0.000156',
20877             'Test2::Require' => '0.000156',
20878             'Test2::Require::AuthorTesting'=> '0.000156',
20879             'Test2::Require::EnvVar'=> '0.000156',
20880             'Test2::Require::Fork' => '0.000156',
20881             'Test2::Require::Module'=> '0.000156',
20882             'Test2::Require::Perl' => '0.000156',
20883             'Test2::Require::RealFork'=> '0.000156',
20884             'Test2::Require::Threads'=> '0.000156',
20885             'Test2::Suite' => '0.000156',
20886             'Test2::Todo' => '0.000156',
20887             'Test2::Tools' => '0.000156',
20888             'Test2::Tools::AsyncSubtest'=> '0.000156',
20889             'Test2::Tools::Basic' => '0.000156',
20890             'Test2::Tools::Class' => '0.000156',
20891             'Test2::Tools::ClassicCompare'=> '0.000156',
20892             'Test2::Tools::Compare' => '0.000156',
20893             'Test2::Tools::Defer' => '0.000156',
20894             'Test2::Tools::Encoding'=> '0.000156',
20895             'Test2::Tools::Event' => '0.000156',
20896             'Test2::Tools::Exception'=> '0.000156',
20897             'Test2::Tools::Exports' => '0.000156',
20898             'Test2::Tools::GenTemp' => '0.000156',
20899             'Test2::Tools::Grab' => '0.000156',
20900             'Test2::Tools::Mock' => '0.000156',
20901             'Test2::Tools::Ref' => '0.000156',
20902             'Test2::Tools::Refcount'=> '0.000156',
20903             'Test2::Tools::Spec' => '0.000156',
20904             'Test2::Tools::Subtest' => '0.000156',
20905             'Test2::Tools::Target' => '0.000156',
20906             'Test2::Tools::Tester' => '0.000156',
20907             'Test2::Tools::Warnings'=> '0.000156',
20908             'Test2::Util::Grabber' => '0.000156',
20909             'Test2::Util::Guard' => '0.000156',
20910             'Test2::Util::Importer' => '0.000156',
20911             'Test2::Util::Ref' => '0.000156',
20912             'Test2::Util::Stash' => '0.000156',
20913             'Test2::Util::Sub' => '0.000156',
20914             'Test2::Util::Table' => '0.000156',
20915             'Test2::Util::Table::Cell'=> '0.000156',
20916             'Test2::Util::Table::LineBreak'=> '0.000156',
20917             'Test2::Util::Term' => '0.000156',
20918             'Test2::Util::Times' => '0.000156',
20919             'Test2::V0' => '0.000156',
20920             'Test2::Workflow' => '0.000156',
20921             'Test2::Workflow::BlockBase'=> '0.000156',
20922             'Test2::Workflow::Build'=> '0.000156',
20923             'Test2::Workflow::Runner'=> '0.000156',
20924             'Test2::Workflow::Task' => '0.000156',
20925             'Test2::Workflow::Task::Action'=> '0.000156',
20926             'Test2::Workflow::Task::Group'=> '0.000156',
20927             'Test::Harness' => '3.48',
20928             'Time::gmtime' => '1.05',
20929             'Time::localtime' => '1.04',
20930             'Time::tm' => '1.01',
20931             'User::grent' => '1.05',
20932             'User::pwent' => '1.03',
20933             'XS::APItest' => '1.34',
20934             'XS::Typemap' => '0.20',
20935             'builtin' => '0.011',
20936             'feature' => '1.85',
20937             'version' => '0.9930',
20938             'version::regex' => '0.9930',
20939             },
20940             removed => {
20941             }
20942             },
20943             5.039005 => {
20944             delta_from => 5.039004,
20945             changed => {
20946             'B::Op_private' => '5.039005',
20947             'Benchmark' => '1.25',
20948             'Config' => '5.039005',
20949             'Encode' => '3.20',
20950             'Getopt::Long' => '2.57',
20951             'Getopt::Long::Parser' => '2.57',
20952             'IO' => '1.54',
20953             'IO::Dir' => '1.54',
20954             'IO::File' => '1.54',
20955             'IO::Handle' => '1.54',
20956             'IO::Pipe' => '1.54',
20957             'IO::Poll' => '1.54',
20958             'IO::Seekable' => '1.54',
20959             'IO::Select' => '1.54',
20960             'IO::Socket' => '1.54',
20961             'IO::Socket::INET' => '1.54',
20962             'IO::Socket::UNIX' => '1.54',
20963             'Math::BigFloat' => '2.001000',
20964             'Math::BigInt' => '2.001000',
20965             'Math::BigInt::Calc' => '2.001000',
20966             'Math::BigInt::Lib' => '2.001000',
20967             'Math::BigRat' => '2.001000',
20968             'Module::CoreList' => '5.20231120',
20969             'Module::CoreList::Utils'=> '5.20231120',
20970             'POSIX' => '2.17',
20971             'Term::Table' => '0.018',
20972             'Term::Table::Cell' => '0.018',
20973             'Term::Table::CellStack'=> '0.018',
20974             'Term::Table::HashBase' => '0.018',
20975             'Term::Table::LineBreak'=> '0.018',
20976             'Term::Table::Spacer' => '0.018',
20977             'Term::Table::Util' => '0.018',
20978             'Test2::AsyncSubtest' => '0.000159',
20979             'Test2::AsyncSubtest::Event::Attach'=> '0.000159',
20980             'Test2::AsyncSubtest::Event::Detach'=> '0.000159',
20981             'Test2::AsyncSubtest::Formatter'=> '0.000159',
20982             'Test2::AsyncSubtest::Hub'=> '0.000159',
20983             'Test2::Bundle' => '0.000159',
20984             'Test2::Bundle::Extended'=> '0.000159',
20985             'Test2::Bundle::More' => '0.000159',
20986             'Test2::Bundle::Simple' => '0.000159',
20987             'Test2::Compare' => '0.000159',
20988             'Test2::Compare::Array' => '0.000159',
20989             'Test2::Compare::Bag' => '0.000159',
20990             'Test2::Compare::Base' => '0.000159',
20991             'Test2::Compare::Bool' => '0.000159',
20992             'Test2::Compare::Custom'=> '0.000159',
20993             'Test2::Compare::DeepRef'=> '0.000159',
20994             'Test2::Compare::Delta' => '0.000159',
20995             'Test2::Compare::Event' => '0.000159',
20996             'Test2::Compare::EventMeta'=> '0.000159',
20997             'Test2::Compare::Float' => '0.000159',
20998             'Test2::Compare::Hash' => '0.000159',
20999             'Test2::Compare::Isa' => '0.000159',
21000             'Test2::Compare::Meta' => '0.000159',
21001             'Test2::Compare::Negatable'=> '0.000159',
21002             'Test2::Compare::Number'=> '0.000159',
21003             'Test2::Compare::Object'=> '0.000159',
21004             'Test2::Compare::OrderedSubset'=> '0.000159',
21005             'Test2::Compare::Pattern'=> '0.000159',
21006             'Test2::Compare::Ref' => '0.000159',
21007             'Test2::Compare::Regex' => '0.000159',
21008             'Test2::Compare::Scalar'=> '0.000159',
21009             'Test2::Compare::Set' => '0.000159',
21010             'Test2::Compare::String'=> '0.000159',
21011             'Test2::Compare::Undef' => '0.000159',
21012             'Test2::Compare::Wildcard'=> '0.000159',
21013             'Test2::Manual' => '0.000159',
21014             'Test2::Manual::Anatomy'=> '0.000159',
21015             'Test2::Manual::Anatomy::API'=> '0.000159',
21016             'Test2::Manual::Anatomy::Context'=> '0.000159',
21017             'Test2::Manual::Anatomy::EndToEnd'=> '0.000159',
21018             'Test2::Manual::Anatomy::Event'=> '0.000159',
21019             'Test2::Manual::Anatomy::Hubs'=> '0.000159',
21020             'Test2::Manual::Anatomy::IPC'=> '0.000159',
21021             'Test2::Manual::Anatomy::Utilities'=> '0.000159',
21022             'Test2::Manual::Concurrency'=> '0.000159',
21023             'Test2::Manual::Contributing'=> '0.000159',
21024             'Test2::Manual::Testing'=> '0.000159',
21025             'Test2::Manual::Testing::Introduction'=> '0.000159',
21026             'Test2::Manual::Testing::Migrating'=> '0.000159',
21027             'Test2::Manual::Testing::Planning'=> '0.000159',
21028             'Test2::Manual::Testing::Todo'=> '0.000159',
21029             'Test2::Manual::Tooling'=> '0.000159',
21030             'Test2::Manual::Tooling::FirstTool'=> '0.000159',
21031             'Test2::Manual::Tooling::Formatter'=> '0.000159',
21032             'Test2::Manual::Tooling::Nesting'=> '0.000159',
21033             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000159',
21034             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000159',
21035             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000159',
21036             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000159',
21037             'Test2::Manual::Tooling::Subtest'=> '0.000159',
21038             'Test2::Manual::Tooling::TestBuilder'=> '0.000159',
21039             'Test2::Manual::Tooling::Testing'=> '0.000159',
21040             'Test2::Mock' => '0.000159',
21041             'Test2::Plugin' => '0.000159',
21042             'Test2::Plugin::BailOnFail'=> '0.000159',
21043             'Test2::Plugin::DieOnFail'=> '0.000159',
21044             'Test2::Plugin::ExitSummary'=> '0.000159',
21045             'Test2::Plugin::SRand' => '0.000159',
21046             'Test2::Plugin::Times' => '0.000159',
21047             'Test2::Plugin::UTF8' => '0.000159',
21048             'Test2::Require' => '0.000159',
21049             'Test2::Require::AuthorTesting'=> '0.000159',
21050             'Test2::Require::EnvVar'=> '0.000159',
21051             'Test2::Require::Fork' => '0.000159',
21052             'Test2::Require::Module'=> '0.000159',
21053             'Test2::Require::Perl' => '0.000159',
21054             'Test2::Require::RealFork'=> '0.000159',
21055             'Test2::Require::Threads'=> '0.000159',
21056             'Test2::Suite' => '0.000159',
21057             'Test2::Todo' => '0.000159',
21058             'Test2::Tools' => '0.000159',
21059             'Test2::Tools::AsyncSubtest'=> '0.000159',
21060             'Test2::Tools::Basic' => '0.000159',
21061             'Test2::Tools::Class' => '0.000159',
21062             'Test2::Tools::ClassicCompare'=> '0.000159',
21063             'Test2::Tools::Compare' => '0.000159',
21064             'Test2::Tools::Defer' => '0.000159',
21065             'Test2::Tools::Encoding'=> '0.000159',
21066             'Test2::Tools::Event' => '0.000159',
21067             'Test2::Tools::Exception'=> '0.000159',
21068             'Test2::Tools::Exports' => '0.000159',
21069             'Test2::Tools::GenTemp' => '0.000159',
21070             'Test2::Tools::Grab' => '0.000159',
21071             'Test2::Tools::Mock' => '0.000159',
21072             'Test2::Tools::Ref' => '0.000159',
21073             'Test2::Tools::Refcount'=> '0.000159',
21074             'Test2::Tools::Spec' => '0.000159',
21075             'Test2::Tools::Subtest' => '0.000159',
21076             'Test2::Tools::Target' => '0.000159',
21077             'Test2::Tools::Tester' => '0.000159',
21078             'Test2::Tools::Warnings'=> '0.000159',
21079             'Test2::Util::Grabber' => '0.000159',
21080             'Test2::Util::Guard' => '0.000159',
21081             'Test2::Util::Importer' => '0.000159',
21082             'Test2::Util::Ref' => '0.000159',
21083             'Test2::Util::Stash' => '0.000159',
21084             'Test2::Util::Sub' => '0.000159',
21085             'Test2::Util::Table' => '0.000159',
21086             'Test2::Util::Table::Cell'=> '0.000159',
21087             'Test2::Util::Table::LineBreak'=> '0.000159',
21088             'Test2::Util::Term' => '0.000159',
21089             'Test2::Util::Times' => '0.000159',
21090             'Test2::V0' => '0.000159',
21091             'Test2::Workflow' => '0.000159',
21092             'Test2::Workflow::BlockBase'=> '0.000159',
21093             'Test2::Workflow::Build'=> '0.000159',
21094             'Test2::Workflow::Runner'=> '0.000159',
21095             'Test2::Workflow::Task' => '0.000159',
21096             'Test2::Workflow::Task::Action'=> '0.000159',
21097             'Test2::Workflow::Task::Group'=> '0.000159',
21098             'builtin' => '0.012',
21099             'locale' => '1.11',
21100             },
21101             removed => {
21102             }
21103             },
21104             5.034002 => {
21105             delta_from => 5.034001,
21106             changed => {
21107             'B::Op_private' => '5.034002',
21108             'Config' => '5.034002',
21109             'Module::CoreList' => '5.20231125',
21110             'Module::CoreList::Utils'=> '5.20231125',
21111             },
21112             removed => {
21113             }
21114             },
21115             5.036002 => {
21116             delta_from => 5.036001,
21117             changed => {
21118             'B::Op_private' => '5.036002',
21119             'Config' => '5.036002',
21120             'Module::CoreList' => '5.20231125',
21121             'Module::CoreList::Utils'=> '5.20231125',
21122             },
21123             removed => {
21124             }
21125             },
21126             5.038001 => {
21127             delta_from => 5.038000,
21128             changed => {
21129             'B::Op_private' => '5.038001',
21130             'Config' => '5.038001',
21131             'Module::CoreList' => '5.20231125',
21132             'Module::CoreList::Utils'=> '5.20231125',
21133             },
21134             removed => {
21135             }
21136             },
21137             5.034003 => {
21138             delta_from => 5.034002,
21139             changed => {
21140             'B::Op_private' => '5.034003',
21141             'Config' => '5.034003',
21142             'Module::CoreList' => '5.20231129',
21143             'Module::CoreList::Utils'=> '5.20231129',
21144             },
21145             removed => {
21146             }
21147             },
21148             5.036003 => {
21149             delta_from => 5.036002,
21150             changed => {
21151             'B::Op_private' => '5.036003',
21152             'Config' => '5.036003',
21153             'Module::CoreList' => '5.20231129',
21154             'Module::CoreList::Utils'=> '5.20231129',
21155             },
21156             removed => {
21157             }
21158             },
21159             5.038002 => {
21160             delta_from => 5.038001,
21161             changed => {
21162             'B::Op_private' => '5.038002',
21163             'Config' => '5.038002',
21164             'Module::CoreList' => '5.20231129',
21165             'Module::CoreList::Utils'=> '5.20231129',
21166             },
21167             removed => {
21168             }
21169             },
21170             5.039006 => {
21171             delta_from => 5.039005,
21172             changed => {
21173             'Archive::Tar' => '3.02_001',
21174             'Archive::Tar::Constant'=> '3.02_001',
21175             'Archive::Tar::File' => '3.02_001',
21176             'B::Op_private' => '5.039006',
21177             'Config' => '5.039006',
21178             'Fatal' => '2.37',
21179             'Fcntl' => '1.16',
21180             'File::Glob' => '1.41',
21181             'IO' => '1.55',
21182             'IO::Dir' => '1.55',
21183             'IO::File' => '1.55',
21184             'IO::Handle' => '1.55',
21185             'IO::Pipe' => '1.55',
21186             'IO::Poll' => '1.55',
21187             'IO::Seekable' => '1.55',
21188             'IO::Select' => '1.55',
21189             'IO::Socket' => '1.55',
21190             'IO::Socket::INET' => '1.55',
21191             'IO::Socket::UNIX' => '1.55',
21192             'Math::BigFloat' => '2.003001',
21193             'Math::BigFloat::Trace' => '0.67',
21194             'Math::BigInt' => '2.003001',
21195             'Math::BigInt::Calc' => '2.003001',
21196             'Math::BigInt::FastCalc'=> '0.5016',
21197             'Math::BigInt::Lib' => '2.003001',
21198             'Math::BigInt::Trace' => '0.67',
21199             'Math::BigRat' => '2.003001',
21200             'Math::BigRat::Trace' => '0.67',
21201             'Module::CoreList' => '5.20231230',
21202             'Module::CoreList::Utils'=> '5.20231230',
21203             'Test2' => '1.302198',
21204             'Test2::API' => '1.302198',
21205             'Test2::API::Breakage' => '1.302198',
21206             'Test2::API::Context' => '1.302198',
21207             'Test2::API::Instance' => '1.302198',
21208             'Test2::API::InterceptResult'=> '1.302198',
21209             'Test2::API::InterceptResult::Event'=> '1.302198',
21210             'Test2::API::InterceptResult::Facet'=> '1.302198',
21211             'Test2::API::InterceptResult::Hub'=> '1.302198',
21212             'Test2::API::InterceptResult::Squasher'=> '1.302198',
21213             'Test2::API::Stack' => '1.302198',
21214             'Test2::Event' => '1.302198',
21215             'Test2::Event::Bail' => '1.302198',
21216             'Test2::Event::Diag' => '1.302198',
21217             'Test2::Event::Encoding'=> '1.302198',
21218             'Test2::Event::Exception'=> '1.302198',
21219             'Test2::Event::Fail' => '1.302198',
21220             'Test2::Event::Generic' => '1.302198',
21221             'Test2::Event::Note' => '1.302198',
21222             'Test2::Event::Ok' => '1.302198',
21223             'Test2::Event::Pass' => '1.302198',
21224             'Test2::Event::Plan' => '1.302198',
21225             'Test2::Event::Skip' => '1.302198',
21226             'Test2::Event::Subtest' => '1.302198',
21227             'Test2::Event::TAP::Version'=> '1.302198',
21228             'Test2::Event::V2' => '1.302198',
21229             'Test2::Event::Waiting' => '1.302198',
21230             'Test2::EventFacet' => '1.302198',
21231             'Test2::EventFacet::About'=> '1.302198',
21232             'Test2::EventFacet::Amnesty'=> '1.302198',
21233             'Test2::EventFacet::Assert'=> '1.302198',
21234             'Test2::EventFacet::Control'=> '1.302198',
21235             'Test2::EventFacet::Error'=> '1.302198',
21236             'Test2::EventFacet::Hub'=> '1.302198',
21237             'Test2::EventFacet::Info'=> '1.302198',
21238             'Test2::EventFacet::Info::Table'=> '1.302198',
21239             'Test2::EventFacet::Meta'=> '1.302198',
21240             'Test2::EventFacet::Parent'=> '1.302198',
21241             'Test2::EventFacet::Plan'=> '1.302198',
21242             'Test2::EventFacet::Render'=> '1.302198',
21243             'Test2::EventFacet::Trace'=> '1.302198',
21244             'Test2::Formatter' => '1.302198',
21245             'Test2::Formatter::TAP' => '1.302198',
21246             'Test2::Hub' => '1.302198',
21247             'Test2::Hub::Interceptor'=> '1.302198',
21248             'Test2::Hub::Interceptor::Terminator'=> '1.302198',
21249             'Test2::Hub::Subtest' => '1.302198',
21250             'Test2::IPC' => '1.302198',
21251             'Test2::IPC::Driver' => '1.302198',
21252             'Test2::IPC::Driver::Files'=> '1.302198',
21253             'Test2::Tools::Tiny' => '1.302198',
21254             'Test2::Util' => '1.302198',
21255             'Test2::Util::ExternalMeta'=> '1.302198',
21256             'Test2::Util::Facets2Legacy'=> '1.302198',
21257             'Test2::Util::HashBase' => '1.302198',
21258             'Test2::Util::Trace' => '1.302198',
21259             'Test::Builder' => '1.302198',
21260             'Test::Builder::Formatter'=> '1.302198',
21261             'Test::Builder::Module' => '1.302198',
21262             'Test::Builder::Tester' => '1.302198',
21263             'Test::Builder::Tester::Color'=> '1.302198',
21264             'Test::Builder::TodoDiag'=> '1.302198',
21265             'Test::More' => '1.302198',
21266             'Test::Simple' => '1.302198',
21267             'Test::Tester' => '1.302198',
21268             'Test::Tester::Capture' => '1.302198',
21269             'Test::Tester::CaptureRunner'=> '1.302198',
21270             'Test::Tester::Delegate'=> '1.302198',
21271             'Test::use::ok' => '1.302198',
21272             'autodie' => '2.37',
21273             'autodie::Scope::Guard' => '2.37',
21274             'autodie::Scope::GuardStack'=> '2.37',
21275             'autodie::Util' => '2.37',
21276             'autodie::exception' => '2.37',
21277             'autodie::exception::system'=> '2.37',
21278             'autodie::hints' => '2.37',
21279             'autodie::skip' => '2.37',
21280             'bigfloat' => '0.67',
21281             'bigint' => '0.67',
21282             'bignum' => '0.67',
21283             'bigrat' => '0.67',
21284             'diagnostics' => '1.40',
21285             'feature' => '1.86',
21286             'ok' => '1.302198',
21287             're' => '0.45',
21288             'threads' => '2.40',
21289             },
21290             removed => {
21291             }
21292             },
21293             5.039007 => {
21294             delta_from => 5.039006,
21295             changed => {
21296             'B::Op_private' => '5.039007',
21297             'Config' => '5.039007',
21298             'Exporter' => '5.78',
21299             'Exporter::Heavy' => '5.78',
21300             'Hash::Util' => '0.31',
21301             'I18N::Langinfo' => '0.23',
21302             'Math::BigFloat' => '2.003002',
21303             'Math::BigInt' => '2.003002',
21304             'Math::BigInt::Calc' => '2.003002',
21305             'Math::BigInt::FastCalc'=> '0.5018',
21306             'Math::BigInt::Lib' => '2.003002',
21307             'Math::BigRat' => '2.003002',
21308             'Module::CoreList' => '5.20240120',
21309             'Module::CoreList::Utils'=> '5.20240120',
21310             'Pod::Checker' => '1.76',
21311             'SelfLoader' => '1.27',
21312             },
21313             removed => {
21314             }
21315             },
21316             5.039008 => {
21317             delta_from => 5.039007,
21318             changed => {
21319             'B::Deparse' => '1.75',
21320             'B::Op_private' => '5.039008',
21321             'Config' => '5.039008',
21322             'DynaLoader' => '1.55',
21323             'File::Glob' => '1.42',
21324             'Hash::Util' => '0.32',
21325             'Hash::Util::FieldHash' => '1.27',
21326             'I18N::Langinfo' => '0.24',
21327             'Module::CoreList' => '5.20240223',
21328             'Module::CoreList::Utils'=> '5.20240223',
21329             'POSIX' => '2.18',
21330             'PerlIO::encoding' => '0.31',
21331             'Pod::Checker' => '1.77',
21332             'Safe' => '2.46',
21333             'Tie::File' => '1.08',
21334             'XS::APItest' => '1.35',
21335             'attributes' => '0.36',
21336             'builtin' => '0.014',
21337             'mro' => '1.29',
21338             'perlfaq' => '5.20240218',
21339             'warnings' => '1.68',
21340             },
21341             removed => {
21342             }
21343             },
21344             5.039009 => {
21345             delta_from => 5.039008,
21346             changed => {
21347             'B::Op_private' => '5.039009',
21348             'Compress::Raw::Bzip2' => '2.210',
21349             'Compress::Raw::Zlib' => '2.209',
21350             'Compress::Zlib' => '2.207',
21351             'Config' => '5.039009',
21352             'DynaLoader' => '1.56',
21353             'Encode' => '3.21',
21354             'Fcntl' => '1.17',
21355             'IO::Compress::Adapter::Bzip2'=> '2.207',
21356             'IO::Compress::Adapter::Deflate'=> '2.207',
21357             'IO::Compress::Adapter::Identity'=> '2.207',
21358             'IO::Compress::Base' => '2.207',
21359             'IO::Compress::Base::Common'=> '2.207',
21360             'IO::Compress::Bzip2' => '2.207',
21361             'IO::Compress::Deflate' => '2.207',
21362             'IO::Compress::Gzip' => '2.207',
21363             'IO::Compress::Gzip::Constants'=> '2.207',
21364             'IO::Compress::RawDeflate'=> '2.207',
21365             'IO::Compress::Zip' => '2.207',
21366             'IO::Compress::Zip::Constants'=> '2.207',
21367             'IO::Compress::Zlib::Constants'=> '2.207',
21368             'IO::Compress::Zlib::Extra'=> '2.207',
21369             'IO::Uncompress::Adapter::Bunzip2'=> '2.207',
21370             'IO::Uncompress::Adapter::Identity'=> '2.207',
21371             'IO::Uncompress::Adapter::Inflate'=> '2.207',
21372             'IO::Uncompress::AnyInflate'=> '2.207',
21373             'IO::Uncompress::AnyUncompress'=> '2.207',
21374             'IO::Uncompress::Base' => '2.207',
21375             'IO::Uncompress::Bunzip2'=> '2.207',
21376             'IO::Uncompress::Gunzip'=> '2.207',
21377             'IO::Uncompress::Inflate'=> '2.207',
21378             'IO::Uncompress::RawInflate'=> '2.207',
21379             'IO::Uncompress::Unzip' => '2.207',
21380             'IO::Zlib' => '1.15',
21381             'Module::CoreList' => '5.20240320',
21382             'Module::CoreList::Utils'=> '5.20240320',
21383             'Text::Tabs' => '2024.001',
21384             'Text::Wrap' => '2024.001',
21385             'Tie::File' => '1.09',
21386             'Time::HiRes' => '1.9777',
21387             'bytes' => '1.09',
21388             're' => '0.47',
21389             },
21390             removed => {
21391             }
21392             },
21393             5.039010 => {
21394             delta_from => 5.039009,
21395             changed => {
21396             'B::Deparse' => '1.76',
21397             'B::Op_private' => '5.039010',
21398             'Compress::Raw::Bzip2' => '2.212',
21399             'Compress::Raw::Zlib' => '2.212',
21400             'Compress::Zlib' => '2.212',
21401             'Config' => '5.03901',
21402             'IO::Compress::Adapter::Bzip2'=> '2.212',
21403             'IO::Compress::Adapter::Deflate'=> '2.212',
21404             'IO::Compress::Adapter::Identity'=> '2.212',
21405             'IO::Compress::Base' => '2.212',
21406             'IO::Compress::Base::Common'=> '2.212',
21407             'IO::Compress::Bzip2' => '2.212',
21408             'IO::Compress::Deflate' => '2.212',
21409             'IO::Compress::Gzip' => '2.212',
21410             'IO::Compress::Gzip::Constants'=> '2.212',
21411             'IO::Compress::RawDeflate'=> '2.212',
21412             'IO::Compress::Zip' => '2.212',
21413             'IO::Compress::Zip::Constants'=> '2.212',
21414             'IO::Compress::Zlib::Constants'=> '2.212',
21415             'IO::Compress::Zlib::Extra'=> '2.212',
21416             'IO::Uncompress::Adapter::Bunzip2'=> '2.212',
21417             'IO::Uncompress::Adapter::Identity'=> '2.212',
21418             'IO::Uncompress::Adapter::Inflate'=> '2.212',
21419             'IO::Uncompress::AnyInflate'=> '2.212',
21420             'IO::Uncompress::AnyUncompress'=> '2.212',
21421             'IO::Uncompress::Base' => '2.212',
21422             'IO::Uncompress::Bunzip2'=> '2.212',
21423             'IO::Uncompress::Gunzip'=> '2.212',
21424             'IO::Uncompress::Inflate'=> '2.212',
21425             'IO::Uncompress::RawInflate'=> '2.212',
21426             'IO::Uncompress::Unzip' => '2.212',
21427             'Module::CoreList' => '5.20240420',
21428             'Module::CoreList::Utils'=> '5.20240420',
21429             'POSIX' => '2.19',
21430             'Pod::Man' => '5.01_01',
21431             'Pod::ParseLink' => '5.01_01',
21432             'Pod::Text' => '5.01_01',
21433             'Pod::Text::Color' => '5.01_01',
21434             'Pod::Text::Overstrike' => '5.01_01',
21435             'Pod::Text::Termcap' => '5.01_01',
21436             'Socket' => '2.038',
21437             'Test2' => '1.302199',
21438             'Test2::API' => '1.302199',
21439             'Test2::API::Breakage' => '1.302199',
21440             'Test2::API::Context' => '1.302199',
21441             'Test2::API::Instance' => '1.302199',
21442             'Test2::API::InterceptResult'=> '1.302199',
21443             'Test2::API::InterceptResult::Event'=> '1.302199',
21444             'Test2::API::InterceptResult::Facet'=> '1.302199',
21445             'Test2::API::InterceptResult::Hub'=> '1.302199',
21446             'Test2::API::InterceptResult::Squasher'=> '1.302199',
21447             'Test2::API::Stack' => '1.302199',
21448             'Test2::AsyncSubtest' => '0.000162',
21449             'Test2::AsyncSubtest::Event::Attach'=> '0.000162',
21450             'Test2::AsyncSubtest::Event::Detach'=> '0.000162',
21451             'Test2::AsyncSubtest::Formatter'=> '0.000162',
21452             'Test2::AsyncSubtest::Hub'=> '0.000162',
21453             'Test2::Bundle' => '0.000162',
21454             'Test2::Bundle::Extended'=> '0.000162',
21455             'Test2::Bundle::More' => '0.000162',
21456             'Test2::Bundle::Simple' => '0.000162',
21457             'Test2::Compare' => '0.000162',
21458             'Test2::Compare::Array' => '0.000162',
21459             'Test2::Compare::Bag' => '0.000162',
21460             'Test2::Compare::Base' => '0.000162',
21461             'Test2::Compare::Bool' => '0.000162',
21462             'Test2::Compare::Custom'=> '0.000162',
21463             'Test2::Compare::DeepRef'=> '0.000162',
21464             'Test2::Compare::Delta' => '0.000162',
21465             'Test2::Compare::Event' => '0.000162',
21466             'Test2::Compare::EventMeta'=> '0.000162',
21467             'Test2::Compare::Float' => '0.000162',
21468             'Test2::Compare::Hash' => '0.000162',
21469             'Test2::Compare::Isa' => '0.000162',
21470             'Test2::Compare::Meta' => '0.000162',
21471             'Test2::Compare::Negatable'=> '0.000162',
21472             'Test2::Compare::Number'=> '0.000162',
21473             'Test2::Compare::Object'=> '0.000162',
21474             'Test2::Compare::OrderedSubset'=> '0.000162',
21475             'Test2::Compare::Pattern'=> '0.000162',
21476             'Test2::Compare::Ref' => '0.000162',
21477             'Test2::Compare::Regex' => '0.000162',
21478             'Test2::Compare::Scalar'=> '0.000162',
21479             'Test2::Compare::Set' => '0.000162',
21480             'Test2::Compare::String'=> '0.000162',
21481             'Test2::Compare::Undef' => '0.000162',
21482             'Test2::Compare::Wildcard'=> '0.000162',
21483             'Test2::Event' => '1.302199',
21484             'Test2::Event::Bail' => '1.302199',
21485             'Test2::Event::Diag' => '1.302199',
21486             'Test2::Event::Encoding'=> '1.302199',
21487             'Test2::Event::Exception'=> '1.302199',
21488             'Test2::Event::Fail' => '1.302199',
21489             'Test2::Event::Generic' => '1.302199',
21490             'Test2::Event::Note' => '1.302199',
21491             'Test2::Event::Ok' => '1.302199',
21492             'Test2::Event::Pass' => '1.302199',
21493             'Test2::Event::Plan' => '1.302199',
21494             'Test2::Event::Skip' => '1.302199',
21495             'Test2::Event::Subtest' => '1.302199',
21496             'Test2::Event::TAP::Version'=> '1.302199',
21497             'Test2::Event::V2' => '1.302199',
21498             'Test2::Event::Waiting' => '1.302199',
21499             'Test2::EventFacet' => '1.302199',
21500             'Test2::EventFacet::About'=> '1.302199',
21501             'Test2::EventFacet::Amnesty'=> '1.302199',
21502             'Test2::EventFacet::Assert'=> '1.302199',
21503             'Test2::EventFacet::Control'=> '1.302199',
21504             'Test2::EventFacet::Error'=> '1.302199',
21505             'Test2::EventFacet::Hub'=> '1.302199',
21506             'Test2::EventFacet::Info'=> '1.302199',
21507             'Test2::EventFacet::Info::Table'=> '1.302199',
21508             'Test2::EventFacet::Meta'=> '1.302199',
21509             'Test2::EventFacet::Parent'=> '1.302199',
21510             'Test2::EventFacet::Plan'=> '1.302199',
21511             'Test2::EventFacet::Render'=> '1.302199',
21512             'Test2::EventFacet::Trace'=> '1.302199',
21513             'Test2::Formatter' => '1.302199',
21514             'Test2::Formatter::TAP' => '1.302199',
21515             'Test2::Hub' => '1.302199',
21516             'Test2::Hub::Interceptor'=> '1.302199',
21517             'Test2::Hub::Interceptor::Terminator'=> '1.302199',
21518             'Test2::Hub::Subtest' => '1.302199',
21519             'Test2::IPC' => '1.302199',
21520             'Test2::IPC::Driver' => '1.302199',
21521             'Test2::IPC::Driver::Files'=> '1.302199',
21522             'Test2::Manual' => '0.000162',
21523             'Test2::Manual::Anatomy'=> '0.000162',
21524             'Test2::Manual::Anatomy::API'=> '0.000162',
21525             'Test2::Manual::Anatomy::Context'=> '0.000162',
21526             'Test2::Manual::Anatomy::EndToEnd'=> '0.000162',
21527             'Test2::Manual::Anatomy::Event'=> '0.000162',
21528             'Test2::Manual::Anatomy::Hubs'=> '0.000162',
21529             'Test2::Manual::Anatomy::IPC'=> '0.000162',
21530             'Test2::Manual::Anatomy::Utilities'=> '0.000162',
21531             'Test2::Manual::Concurrency'=> '0.000162',
21532             'Test2::Manual::Contributing'=> '0.000162',
21533             'Test2::Manual::Testing'=> '0.000162',
21534             'Test2::Manual::Testing::Introduction'=> '0.000162',
21535             'Test2::Manual::Testing::Migrating'=> '0.000162',
21536             'Test2::Manual::Testing::Planning'=> '0.000162',
21537             'Test2::Manual::Testing::Todo'=> '0.000162',
21538             'Test2::Manual::Tooling'=> '0.000162',
21539             'Test2::Manual::Tooling::FirstTool'=> '0.000162',
21540             'Test2::Manual::Tooling::Formatter'=> '0.000162',
21541             'Test2::Manual::Tooling::Nesting'=> '0.000162',
21542             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000162',
21543             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000162',
21544             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000162',
21545             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000162',
21546             'Test2::Manual::Tooling::Subtest'=> '0.000162',
21547             'Test2::Manual::Tooling::TestBuilder'=> '0.000162',
21548             'Test2::Manual::Tooling::Testing'=> '0.000162',
21549             'Test2::Mock' => '0.000162',
21550             'Test2::Plugin' => '0.000162',
21551             'Test2::Plugin::BailOnFail'=> '0.000162',
21552             'Test2::Plugin::DieOnFail'=> '0.000162',
21553             'Test2::Plugin::ExitSummary'=> '0.000162',
21554             'Test2::Plugin::SRand' => '0.000162',
21555             'Test2::Plugin::Times' => '0.000162',
21556             'Test2::Plugin::UTF8' => '0.000162',
21557             'Test2::Require' => '0.000162',
21558             'Test2::Require::AuthorTesting'=> '0.000162',
21559             'Test2::Require::AutomatedTesting'=> '0.000162',
21560             'Test2::Require::EnvVar'=> '0.000162',
21561             'Test2::Require::ExtendedTesting'=> '0.000162',
21562             'Test2::Require::Fork' => '0.000162',
21563             'Test2::Require::Module'=> '0.000162',
21564             'Test2::Require::NonInteractiveTesting'=> '0.000162',
21565             'Test2::Require::Perl' => '0.000162',
21566             'Test2::Require::RealFork'=> '0.000162',
21567             'Test2::Require::ReleaseTesting'=> '0.000162',
21568             'Test2::Require::Threads'=> '0.000162',
21569             'Test2::Suite' => '0.000162',
21570             'Test2::Todo' => '0.000162',
21571             'Test2::Tools' => '0.000162',
21572             'Test2::Tools::AsyncSubtest'=> '0.000162',
21573             'Test2::Tools::Basic' => '0.000162',
21574             'Test2::Tools::Class' => '0.000162',
21575             'Test2::Tools::ClassicCompare'=> '0.000162',
21576             'Test2::Tools::Compare' => '0.000162',
21577             'Test2::Tools::Defer' => '0.000162',
21578             'Test2::Tools::Encoding'=> '0.000162',
21579             'Test2::Tools::Event' => '0.000162',
21580             'Test2::Tools::Exception'=> '0.000162',
21581             'Test2::Tools::Exports' => '0.000162',
21582             'Test2::Tools::GenTemp' => '0.000162',
21583             'Test2::Tools::Grab' => '0.000162',
21584             'Test2::Tools::Mock' => '0.000162',
21585             'Test2::Tools::Ref' => '0.000162',
21586             'Test2::Tools::Refcount'=> '0.000162',
21587             'Test2::Tools::Spec' => '0.000162',
21588             'Test2::Tools::Subtest' => '0.000162',
21589             'Test2::Tools::Target' => '0.000162',
21590             'Test2::Tools::Tester' => '0.000162',
21591             'Test2::Tools::Tiny' => '1.302199',
21592             'Test2::Tools::Warnings'=> '0.000162',
21593             'Test2::Util' => '1.302199',
21594             'Test2::Util::ExternalMeta'=> '1.302199',
21595             'Test2::Util::Facets2Legacy'=> '1.302199',
21596             'Test2::Util::Grabber' => '0.000162',
21597             'Test2::Util::Guard' => '0.000162',
21598             'Test2::Util::HashBase' => '1.302199',
21599             'Test2::Util::Importer' => '0.000162',
21600             'Test2::Util::Ref' => '0.000162',
21601             'Test2::Util::Stash' => '0.000162',
21602             'Test2::Util::Sub' => '0.000162',
21603             'Test2::Util::Table' => '0.000162',
21604             'Test2::Util::Table::Cell'=> '0.000162',
21605             'Test2::Util::Table::LineBreak'=> '0.000162',
21606             'Test2::Util::Term' => '0.000162',
21607             'Test2::Util::Times' => '0.000162',
21608             'Test2::Util::Trace' => '1.302199',
21609             'Test2::V0' => '0.000162',
21610             'Test2::Workflow' => '0.000162',
21611             'Test2::Workflow::BlockBase'=> '0.000162',
21612             'Test2::Workflow::Build'=> '0.000162',
21613             'Test2::Workflow::Runner'=> '0.000162',
21614             'Test2::Workflow::Task' => '0.000162',
21615             'Test2::Workflow::Task::Action'=> '0.000162',
21616             'Test2::Workflow::Task::Group'=> '0.000162',
21617             'Test::Builder' => '1.302199',
21618             'Test::Builder::Formatter'=> '1.302199',
21619             'Test::Builder::Module' => '1.302199',
21620             'Test::Builder::Tester' => '1.302199',
21621             'Test::Builder::Tester::Color'=> '1.302199',
21622             'Test::Builder::TodoDiag'=> '1.302199',
21623             'Test::More' => '1.302199',
21624             'Test::Simple' => '1.302199',
21625             'Test::Tester' => '1.302199',
21626             'Test::Tester::Capture' => '1.302199',
21627             'Test::Tester::CaptureRunner'=> '1.302199',
21628             'Test::Tester::Delegate'=> '1.302199',
21629             'Test::use::ok' => '1.302199',
21630             'XS::APItest' => '1.36',
21631             'experimental' => '0.032',
21632             'feature' => '1.88',
21633             'locale' => '1.12',
21634             'ok' => '1.302199',
21635             'stable' => '0.032',
21636             'warnings' => '1.69',
21637             },
21638             removed => {
21639             }
21640             },
21641             5.040000 => {
21642             delta_from => 5.039010,
21643             changed => {
21644             'B::Op_private' => '5.040000',
21645             'Config' => '5.04',
21646             'Fcntl' => '1.18',
21647             'Module::CoreList' => '5.20240609',
21648             'Module::CoreList::Utils'=> '5.20240609',
21649             'POSIX' => '2.20',
21650             'Pod::Man' => '5.01_02',
21651             'Pod::ParseLink' => '5.01_02',
21652             'Pod::Text' => '5.01_02',
21653             'Pod::Text::Color' => '5.01_02',
21654             'Pod::Text::Overstrike' => '5.01_02',
21655             'Pod::Text::Termcap' => '5.01_02',
21656             'UNIVERSAL' => '1.17',
21657             'feature' => '1.89',
21658             'stable' => '0.033',
21659             },
21660             removed => {
21661             }
21662             },
21663             5.041000 => {
21664             delta_from => 5.040000,
21665             changed => {
21666             'B::Op_private' => '5.041000',
21667             'Config' => '5.041000',
21668             'Module::CoreList' => '5.20240610',
21669             'Module::CoreList::Utils'=> '5.20240610',
21670             'feature' => '1.90',
21671             },
21672             removed => {
21673             }
21674             },
21675             5.041001 => {
21676             delta_from => 5.041000,
21677             changed => {
21678             'B::Op_private' => '5.041001',
21679             'Config' => '5.041001',
21680             'Data::Dumper' => '2.190',
21681             'ExtUtils::ParseXS' => '3.52',
21682             'ExtUtils::ParseXS::Constants'=> '3.52',
21683             'ExtUtils::ParseXS::CountLines'=> '3.52',
21684             'ExtUtils::ParseXS::Eval'=> '3.52',
21685             'ExtUtils::ParseXS::Utilities'=> '3.52',
21686             'ExtUtils::Typemaps::Cmd'=> '3.52',
21687             'ExtUtils::Typemaps::InputMap'=> '3.52',
21688             'ExtUtils::Typemaps::OutputMap'=> '3.52',
21689             'ExtUtils::Typemaps::Type'=> '3.52',
21690             'Fcntl' => '1.19',
21691             'Getopt::Long' => '2.58',
21692             'Getopt::Long::Parser' => '2.58',
21693             'Math::BigFloat' => '2.003003',
21694             'Math::BigInt' => '2.003003',
21695             'Math::BigInt::Calc' => '2.003003',
21696             'Math::BigInt::Lib' => '2.003003',
21697             'Math::BigRat' => '2.003003',
21698             'Module::CoreList' => '5.20240620',
21699             'Module::CoreList::Utils'=> '5.20240620',
21700             'POSIX' => '2.21',
21701             'Test2::AsyncSubtest' => '0.000163',
21702             'Test2::AsyncSubtest::Event::Attach'=> '0.000163',
21703             'Test2::AsyncSubtest::Event::Detach'=> '0.000163',
21704             'Test2::AsyncSubtest::Formatter'=> '0.000163',
21705             'Test2::AsyncSubtest::Hub'=> '0.000163',
21706             'Test2::Bundle' => '0.000163',
21707             'Test2::Bundle::Extended'=> '0.000163',
21708             'Test2::Bundle::More' => '0.000163',
21709             'Test2::Bundle::Simple' => '0.000163',
21710             'Test2::Compare' => '0.000163',
21711             'Test2::Compare::Array' => '0.000163',
21712             'Test2::Compare::Bag' => '0.000163',
21713             'Test2::Compare::Base' => '0.000163',
21714             'Test2::Compare::Bool' => '0.000163',
21715             'Test2::Compare::Custom'=> '0.000163',
21716             'Test2::Compare::DeepRef'=> '0.000163',
21717             'Test2::Compare::Delta' => '0.000163',
21718             'Test2::Compare::Event' => '0.000163',
21719             'Test2::Compare::EventMeta'=> '0.000163',
21720             'Test2::Compare::Float' => '0.000163',
21721             'Test2::Compare::Hash' => '0.000163',
21722             'Test2::Compare::Isa' => '0.000163',
21723             'Test2::Compare::Meta' => '0.000163',
21724             'Test2::Compare::Negatable'=> '0.000163',
21725             'Test2::Compare::Number'=> '0.000163',
21726             'Test2::Compare::Object'=> '0.000163',
21727             'Test2::Compare::OrderedSubset'=> '0.000163',
21728             'Test2::Compare::Pattern'=> '0.000163',
21729             'Test2::Compare::Ref' => '0.000163',
21730             'Test2::Compare::Regex' => '0.000163',
21731             'Test2::Compare::Scalar'=> '0.000163',
21732             'Test2::Compare::Set' => '0.000163',
21733             'Test2::Compare::String'=> '0.000163',
21734             'Test2::Compare::Undef' => '0.000163',
21735             'Test2::Compare::Wildcard'=> '0.000163',
21736             'Test2::Manual' => '0.000163',
21737             'Test2::Manual::Anatomy'=> '0.000163',
21738             'Test2::Manual::Anatomy::API'=> '0.000163',
21739             'Test2::Manual::Anatomy::Context'=> '0.000163',
21740             'Test2::Manual::Anatomy::EndToEnd'=> '0.000163',
21741             'Test2::Manual::Anatomy::Event'=> '0.000163',
21742             'Test2::Manual::Anatomy::Hubs'=> '0.000163',
21743             'Test2::Manual::Anatomy::IPC'=> '0.000163',
21744             'Test2::Manual::Anatomy::Utilities'=> '0.000163',
21745             'Test2::Manual::Concurrency'=> '0.000163',
21746             'Test2::Manual::Contributing'=> '0.000163',
21747             'Test2::Manual::Testing'=> '0.000163',
21748             'Test2::Manual::Testing::Introduction'=> '0.000163',
21749             'Test2::Manual::Testing::Migrating'=> '0.000163',
21750             'Test2::Manual::Testing::Planning'=> '0.000163',
21751             'Test2::Manual::Testing::Todo'=> '0.000163',
21752             'Test2::Manual::Tooling'=> '0.000163',
21753             'Test2::Manual::Tooling::FirstTool'=> '0.000163',
21754             'Test2::Manual::Tooling::Formatter'=> '0.000163',
21755             'Test2::Manual::Tooling::Nesting'=> '0.000163',
21756             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000163',
21757             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000163',
21758             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000163',
21759             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000163',
21760             'Test2::Manual::Tooling::Subtest'=> '0.000163',
21761             'Test2::Manual::Tooling::TestBuilder'=> '0.000163',
21762             'Test2::Manual::Tooling::Testing'=> '0.000163',
21763             'Test2::Mock' => '0.000163',
21764             'Test2::Plugin' => '0.000163',
21765             'Test2::Plugin::BailOnFail'=> '0.000163',
21766             'Test2::Plugin::DieOnFail'=> '0.000163',
21767             'Test2::Plugin::ExitSummary'=> '0.000163',
21768             'Test2::Plugin::SRand' => '0.000163',
21769             'Test2::Plugin::Times' => '0.000163',
21770             'Test2::Plugin::UTF8' => '0.000163',
21771             'Test2::Require' => '0.000163',
21772             'Test2::Require::AuthorTesting'=> '0.000163',
21773             'Test2::Require::AutomatedTesting'=> '0.000163',
21774             'Test2::Require::EnvVar'=> '0.000163',
21775             'Test2::Require::ExtendedTesting'=> '0.000163',
21776             'Test2::Require::Fork' => '0.000163',
21777             'Test2::Require::Module'=> '0.000163',
21778             'Test2::Require::NonInteractiveTesting'=> '0.000163',
21779             'Test2::Require::Perl' => '0.000163',
21780             'Test2::Require::RealFork'=> '0.000163',
21781             'Test2::Require::ReleaseTesting'=> '0.000163',
21782             'Test2::Require::Threads'=> '0.000163',
21783             'Test2::Suite' => '0.000163',
21784             'Test2::Todo' => '0.000163',
21785             'Test2::Tools' => '0.000163',
21786             'Test2::Tools::AsyncSubtest'=> '0.000163',
21787             'Test2::Tools::Basic' => '0.000163',
21788             'Test2::Tools::Class' => '0.000163',
21789             'Test2::Tools::ClassicCompare'=> '0.000163',
21790             'Test2::Tools::Compare' => '0.000163',
21791             'Test2::Tools::Defer' => '0.000163',
21792             'Test2::Tools::Encoding'=> '0.000163',
21793             'Test2::Tools::Event' => '0.000163',
21794             'Test2::Tools::Exception'=> '0.000163',
21795             'Test2::Tools::Exports' => '0.000163',
21796             'Test2::Tools::GenTemp' => '0.000163',
21797             'Test2::Tools::Grab' => '0.000163',
21798             'Test2::Tools::Mock' => '0.000163',
21799             'Test2::Tools::Ref' => '0.000163',
21800             'Test2::Tools::Refcount'=> '0.000163',
21801             'Test2::Tools::Spec' => '0.000163',
21802             'Test2::Tools::Subtest' => '0.000163',
21803             'Test2::Tools::Target' => '0.000163',
21804             'Test2::Tools::Tester' => '0.000163',
21805             'Test2::Tools::Warnings'=> '0.000163',
21806             'Test2::Util::Grabber' => '0.000163',
21807             'Test2::Util::Guard' => '0.000163',
21808             'Test2::Util::Importer' => '0.000163',
21809             'Test2::Util::Ref' => '0.000163',
21810             'Test2::Util::Stash' => '0.000163',
21811             'Test2::Util::Sub' => '0.000163',
21812             'Test2::Util::Table' => '0.000163',
21813             'Test2::Util::Table::Cell'=> '0.000163',
21814             'Test2::Util::Table::LineBreak'=> '0.000163',
21815             'Test2::Util::Term' => '0.000163',
21816             'Test2::Util::Times' => '0.000163',
21817             'Test2::V0' => '0.000163',
21818             'Test2::Workflow' => '0.000163',
21819             'Test2::Workflow::BlockBase'=> '0.000163',
21820             'Test2::Workflow::Build'=> '0.000163',
21821             'Test2::Workflow::Runner'=> '0.000163',
21822             'Test2::Workflow::Task' => '0.000163',
21823             'Test2::Workflow::Task::Action'=> '0.000163',
21824             'Test2::Workflow::Task::Group'=> '0.000163',
21825             'VMS::Filespec' => '1.14',
21826             'builtin' => '0.015',
21827             'sort' => '2.06',
21828             'warnings' => '1.70',
21829             },
21830             removed => {
21831             }
21832             },
21833             5.041002 => {
21834             delta_from => 5.041001,
21835             changed => {
21836             'B::Deparse' => '1.77',
21837             'B::Op_private' => '5.041002',
21838             'Benchmark' => '1.26',
21839             'Config' => '5.041002',
21840             'Cwd' => '3.92',
21841             'Devel::PPPort' => '3.73',
21842             'File::Spec' => '3.92',
21843             'File::Spec::AmigaOS' => '3.92',
21844             'File::Spec::Cygwin' => '3.92',
21845             'File::Spec::Epoc' => '3.92',
21846             'File::Spec::Functions' => '3.92',
21847             'File::Spec::Mac' => '3.92',
21848             'File::Spec::OS2' => '3.92',
21849             'File::Spec::Unix' => '3.92',
21850             'File::Spec::VMS' => '3.92',
21851             'File::Spec::Win32' => '3.92',
21852             'Module::CoreList' => '5.20240720',
21853             'Module::CoreList::Utils'=> '5.20240720',
21854             'POSIX' => '2.22',
21855             'Pod::Man' => 'v6.0.2',
21856             'Pod::ParseLink' => 'v6.0.2',
21857             'Pod::Text' => 'v6.0.2',
21858             'Pod::Text::Color' => 'v6.0.2',
21859             'Pod::Text::Overstrike' => 'v6.0.2',
21860             'Pod::Text::Termcap' => 'v6.0.2',
21861             'Storable' => '3.33',
21862             'Win32' => '0.59_01',
21863             'XS::APItest' => '1.37',
21864             'locale' => '1.13',
21865             'source::encoding' => '0.01',
21866             'threads' => '2.41',
21867             'utf8' => '1.27',
21868             },
21869             removed => {
21870             }
21871             },
21872             5.041003 => {
21873             delta_from => 5.041002,
21874             changed => {
21875             'App::Prove' => '3.50',
21876             'App::Prove::State' => '3.50',
21877             'App::Prove::State::Result'=> '3.50',
21878             'App::Prove::State::Result::Test'=> '3.50',
21879             'B::Deparse' => '1.78',
21880             'B::Op_private' => '5.041003',
21881             'Compress::Raw::Bzip2' => '2.213',
21882             'Compress::Raw::Zlib' => '2.213',
21883             'Compress::Zlib' => '2.213',
21884             'Config' => '5.041003',
21885             'DynaLoader' => '1.57',
21886             'ExtUtils::ParseXS' => '3.53',
21887             'ExtUtils::ParseXS::Constants'=> '3.53',
21888             'ExtUtils::ParseXS::CountLines'=> '3.53',
21889             'ExtUtils::ParseXS::Eval'=> '3.53',
21890             'ExtUtils::ParseXS::Utilities'=> '3.53',
21891             'ExtUtils::Typemaps' => '3.53',
21892             'ExtUtils::Typemaps::Cmd'=> '3.53',
21893             'ExtUtils::Typemaps::InputMap'=> '3.53',
21894             'ExtUtils::Typemaps::OutputMap'=> '3.53',
21895             'ExtUtils::Typemaps::Type'=> '3.53',
21896             'IO::Compress' => '2.213',
21897             'IO::Compress::Adapter::Bzip2'=> '2.213',
21898             'IO::Compress::Adapter::Deflate'=> '2.213',
21899             'IO::Compress::Adapter::Identity'=> '2.213',
21900             'IO::Compress::Base' => '2.213',
21901             'IO::Compress::Base::Common'=> '2.213',
21902             'IO::Compress::Bzip2' => '2.213',
21903             'IO::Compress::Deflate' => '2.213',
21904             'IO::Compress::Gzip' => '2.213',
21905             'IO::Compress::Gzip::Constants'=> '2.213',
21906             'IO::Compress::RawDeflate'=> '2.213',
21907             'IO::Compress::Zip' => '2.213',
21908             'IO::Compress::Zip::Constants'=> '2.213',
21909             'IO::Compress::Zlib::Constants'=> '2.213',
21910             'IO::Compress::Zlib::Extra'=> '2.213',
21911             'IO::Uncompress::Adapter::Bunzip2'=> '2.213',
21912             'IO::Uncompress::Adapter::Identity'=> '2.213',
21913             'IO::Uncompress::Adapter::Inflate'=> '2.213',
21914             'IO::Uncompress::AnyInflate'=> '2.213',
21915             'IO::Uncompress::AnyUncompress'=> '2.213',
21916             'IO::Uncompress::Base' => '2.213',
21917             'IO::Uncompress::Bunzip2'=> '2.213',
21918             'IO::Uncompress::Gunzip'=> '2.213',
21919             'IO::Uncompress::Inflate'=> '2.213',
21920             'IO::Uncompress::RawInflate'=> '2.213',
21921             'IO::Uncompress::Unzip' => '2.213',
21922             'List::Util' => '1.65',
21923             'List::Util::XS' => '1.65',
21924             'Module::CoreList' => '5.20240829',
21925             'Module::CoreList::Utils'=> '5.20240829',
21926             'Opcode' => '1.66',
21927             'Safe' => '2.47',
21928             'Scalar::Util' => '1.65',
21929             'Storable' => '3.34',
21930             'Sub::Util' => '1.65',
21931             'TAP::Base' => '3.50',
21932             'TAP::Formatter::Base' => '3.50',
21933             'TAP::Formatter::Color' => '3.50',
21934             'TAP::Formatter::Console'=> '3.50',
21935             'TAP::Formatter::Console::ParallelSession'=> '3.50',
21936             'TAP::Formatter::Console::Session'=> '3.50',
21937             'TAP::Formatter::File' => '3.50',
21938             'TAP::Formatter::File::Session'=> '3.50',
21939             'TAP::Formatter::Session'=> '3.50',
21940             'TAP::Harness' => '3.50',
21941             'TAP::Harness::Env' => '3.50',
21942             'TAP::Object' => '3.50',
21943             'TAP::Parser' => '3.50',
21944             'TAP::Parser::Aggregator'=> '3.50',
21945             'TAP::Parser::Grammar' => '3.50',
21946             'TAP::Parser::Iterator' => '3.50',
21947             'TAP::Parser::Iterator::Array'=> '3.50',
21948             'TAP::Parser::Iterator::Process'=> '3.50',
21949             'TAP::Parser::Iterator::Stream'=> '3.50',
21950             'TAP::Parser::IteratorFactory'=> '3.50',
21951             'TAP::Parser::Multiplexer'=> '3.50',
21952             'TAP::Parser::Result' => '3.50',
21953             'TAP::Parser::Result::Bailout'=> '3.50',
21954             'TAP::Parser::Result::Comment'=> '3.50',
21955             'TAP::Parser::Result::Plan'=> '3.50',
21956             'TAP::Parser::Result::Pragma'=> '3.50',
21957             'TAP::Parser::Result::Test'=> '3.50',
21958             'TAP::Parser::Result::Unknown'=> '3.50',
21959             'TAP::Parser::Result::Version'=> '3.50',
21960             'TAP::Parser::Result::YAML'=> '3.50',
21961             'TAP::Parser::ResultFactory'=> '3.50',
21962             'TAP::Parser::Scheduler'=> '3.50',
21963             'TAP::Parser::Scheduler::Job'=> '3.50',
21964             'TAP::Parser::Scheduler::Spinner'=> '3.50',
21965             'TAP::Parser::Source' => '3.50',
21966             'TAP::Parser::SourceHandler'=> '3.50',
21967             'TAP::Parser::SourceHandler::Executable'=> '3.50',
21968             'TAP::Parser::SourceHandler::File'=> '3.50',
21969             'TAP::Parser::SourceHandler::Handle'=> '3.50',
21970             'TAP::Parser::SourceHandler::Perl'=> '3.50',
21971             'TAP::Parser::SourceHandler::RawTAP'=> '3.50',
21972             'TAP::Parser::YAMLish::Reader'=> '3.50',
21973             'TAP::Parser::YAMLish::Writer'=> '3.50',
21974             'Term::Table' => '0.022',
21975             'Term::Table::Cell' => '0.022',
21976             'Term::Table::CellStack'=> '0.022',
21977             'Term::Table::HashBase' => '0.022',
21978             'Term::Table::LineBreak'=> '0.022',
21979             'Term::Table::Spacer' => '0.022',
21980             'Term::Table::Util' => '0.022',
21981             'Test2' => '1.302201',
21982             'Test2::API' => '1.302201',
21983             'Test2::API::Breakage' => '1.302201',
21984             'Test2::API::Context' => '1.302201',
21985             'Test2::API::Instance' => '1.302201',
21986             'Test2::API::InterceptResult'=> '1.302201',
21987             'Test2::API::InterceptResult::Event'=> '1.302201',
21988             'Test2::API::InterceptResult::Facet'=> '1.302201',
21989             'Test2::API::InterceptResult::Hub'=> '1.302201',
21990             'Test2::API::InterceptResult::Squasher'=> '1.302201',
21991             'Test2::API::Stack' => '1.302201',
21992             'Test2::AsyncSubtest' => '1.302201',
21993             'Test2::AsyncSubtest::Event::Attach'=> '1.302201',
21994             'Test2::AsyncSubtest::Event::Detach'=> '1.302201',
21995             'Test2::AsyncSubtest::Formatter'=> '1.302201',
21996             'Test2::AsyncSubtest::Hub'=> '1.302201',
21997             'Test2::Bundle' => '1.302201',
21998             'Test2::Bundle::Extended'=> '1.302201',
21999             'Test2::Bundle::More' => '1.302201',
22000             'Test2::Bundle::Simple' => '1.302201',
22001             'Test2::Compare' => '1.302201',
22002             'Test2::Compare::Array' => '1.302201',
22003             'Test2::Compare::Bag' => '1.302201',
22004             'Test2::Compare::Base' => '1.302201',
22005             'Test2::Compare::Bool' => '1.302201',
22006             'Test2::Compare::Custom'=> '1.302201',
22007             'Test2::Compare::DeepRef'=> '1.302201',
22008             'Test2::Compare::Delta' => '1.302201',
22009             'Test2::Compare::Event' => '1.302201',
22010             'Test2::Compare::EventMeta'=> '1.302201',
22011             'Test2::Compare::Float' => '1.302201',
22012             'Test2::Compare::Hash' => '1.302201',
22013             'Test2::Compare::Isa' => '1.302201',
22014             'Test2::Compare::Meta' => '1.302201',
22015             'Test2::Compare::Negatable'=> '1.302201',
22016             'Test2::Compare::Number'=> '1.302201',
22017             'Test2::Compare::Object'=> '1.302201',
22018             'Test2::Compare::OrderedSubset'=> '1.302201',
22019             'Test2::Compare::Pattern'=> '1.302201',
22020             'Test2::Compare::Ref' => '1.302201',
22021             'Test2::Compare::Regex' => '1.302201',
22022             'Test2::Compare::Scalar'=> '1.302201',
22023             'Test2::Compare::Set' => '1.302201',
22024             'Test2::Compare::String'=> '1.302201',
22025             'Test2::Compare::Undef' => '1.302201',
22026             'Test2::Compare::Wildcard'=> '1.302201',
22027             'Test2::Event' => '1.302201',
22028             'Test2::Event::Bail' => '1.302201',
22029             'Test2::Event::Diag' => '1.302201',
22030             'Test2::Event::Encoding'=> '1.302201',
22031             'Test2::Event::Exception'=> '1.302201',
22032             'Test2::Event::Fail' => '1.302201',
22033             'Test2::Event::Generic' => '1.302201',
22034             'Test2::Event::Note' => '1.302201',
22035             'Test2::Event::Ok' => '1.302201',
22036             'Test2::Event::Pass' => '1.302201',
22037             'Test2::Event::Plan' => '1.302201',
22038             'Test2::Event::Skip' => '1.302201',
22039             'Test2::Event::Subtest' => '1.302201',
22040             'Test2::Event::TAP::Version'=> '1.302201',
22041             'Test2::Event::V2' => '1.302201',
22042             'Test2::Event::Waiting' => '1.302201',
22043             'Test2::EventFacet' => '1.302201',
22044             'Test2::EventFacet::About'=> '1.302201',
22045             'Test2::EventFacet::Amnesty'=> '1.302201',
22046             'Test2::EventFacet::Assert'=> '1.302201',
22047             'Test2::EventFacet::Control'=> '1.302201',
22048             'Test2::EventFacet::Error'=> '1.302201',
22049             'Test2::EventFacet::Hub'=> '1.302201',
22050             'Test2::EventFacet::Info'=> '1.302201',
22051             'Test2::EventFacet::Info::Table'=> '1.302201',
22052             'Test2::EventFacet::Meta'=> '1.302201',
22053             'Test2::EventFacet::Parent'=> '1.302201',
22054             'Test2::EventFacet::Plan'=> '1.302201',
22055             'Test2::EventFacet::Render'=> '1.302201',
22056             'Test2::EventFacet::Trace'=> '1.302201',
22057             'Test2::Formatter' => '1.302201',
22058             'Test2::Formatter::TAP' => '1.302201',
22059             'Test2::Hub' => '1.302201',
22060             'Test2::Hub::Interceptor'=> '1.302201',
22061             'Test2::Hub::Interceptor::Terminator'=> '1.302201',
22062             'Test2::Hub::Subtest' => '1.302201',
22063             'Test2::IPC' => '1.302201',
22064             'Test2::IPC::Driver' => '1.302201',
22065             'Test2::IPC::Driver::Files'=> '1.302201',
22066             'Test2::Manual' => '1.302201',
22067             'Test2::Manual::Anatomy'=> '1.302201',
22068             'Test2::Manual::Anatomy::API'=> '1.302201',
22069             'Test2::Manual::Anatomy::Context'=> '1.302201',
22070             'Test2::Manual::Anatomy::EndToEnd'=> '1.302201',
22071             'Test2::Manual::Anatomy::Event'=> '1.302201',
22072             'Test2::Manual::Anatomy::Hubs'=> '1.302201',
22073             'Test2::Manual::Anatomy::IPC'=> '1.302201',
22074             'Test2::Manual::Anatomy::Utilities'=> '1.302201',
22075             'Test2::Manual::Concurrency'=> '1.302201',
22076             'Test2::Manual::Contributing'=> '1.302201',
22077             'Test2::Manual::Testing'=> '1.302201',
22078             'Test2::Manual::Testing::Introduction'=> '1.302201',
22079             'Test2::Manual::Testing::Migrating'=> '1.302201',
22080             'Test2::Manual::Testing::Planning'=> '1.302201',
22081             'Test2::Manual::Testing::Todo'=> '1.302201',
22082             'Test2::Manual::Tooling'=> '1.302201',
22083             'Test2::Manual::Tooling::FirstTool'=> '1.302201',
22084             'Test2::Manual::Tooling::Formatter'=> '1.302201',
22085             'Test2::Manual::Tooling::Nesting'=> '1.302201',
22086             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302201',
22087             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302201',
22088             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302201',
22089             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302201',
22090             'Test2::Manual::Tooling::Subtest'=> '1.302201',
22091             'Test2::Manual::Tooling::TestBuilder'=> '1.302201',
22092             'Test2::Manual::Tooling::Testing'=> '1.302201',
22093             'Test2::Mock' => '1.302201',
22094             'Test2::Plugin' => '1.302201',
22095             'Test2::Plugin::BailOnFail'=> '1.302201',
22096             'Test2::Plugin::DieOnFail'=> '1.302201',
22097             'Test2::Plugin::ExitSummary'=> '1.302201',
22098             'Test2::Plugin::SRand' => '1.302201',
22099             'Test2::Plugin::Times' => '1.302201',
22100             'Test2::Plugin::UTF8' => '1.302201',
22101             'Test2::Require' => '1.302201',
22102             'Test2::Require::AuthorTesting'=> '1.302201',
22103             'Test2::Require::AutomatedTesting'=> '1.302201',
22104             'Test2::Require::EnvVar'=> '1.302201',
22105             'Test2::Require::ExtendedTesting'=> '1.302201',
22106             'Test2::Require::Fork' => '1.302201',
22107             'Test2::Require::Module'=> '1.302201',
22108             'Test2::Require::NonInteractiveTesting'=> '1.302201',
22109             'Test2::Require::Perl' => '1.302201',
22110             'Test2::Require::RealFork'=> '1.302201',
22111             'Test2::Require::ReleaseTesting'=> '1.302201',
22112             'Test2::Require::Threads'=> '1.302201',
22113             'Test2::Suite' => '1.302201',
22114             'Test2::Todo' => '1.302201',
22115             'Test2::Tools' => '1.302201',
22116             'Test2::Tools::AsyncSubtest'=> '1.302201',
22117             'Test2::Tools::Basic' => '1.302201',
22118             'Test2::Tools::Class' => '1.302201',
22119             'Test2::Tools::ClassicCompare'=> '1.302201',
22120             'Test2::Tools::Compare' => '1.302201',
22121             'Test2::Tools::Defer' => '1.302201',
22122             'Test2::Tools::Encoding'=> '1.302201',
22123             'Test2::Tools::Event' => '1.302201',
22124             'Test2::Tools::Exception'=> '1.302201',
22125             'Test2::Tools::Exports' => '1.302201',
22126             'Test2::Tools::GenTemp' => '1.302201',
22127             'Test2::Tools::Grab' => '1.302201',
22128             'Test2::Tools::Mock' => '1.302201',
22129             'Test2::Tools::Ref' => '1.302201',
22130             'Test2::Tools::Refcount'=> '1.302201',
22131             'Test2::Tools::Spec' => '1.302201',
22132             'Test2::Tools::Subtest' => '1.302201',
22133             'Test2::Tools::Target' => '1.302201',
22134             'Test2::Tools::Tester' => '1.302201',
22135             'Test2::Tools::Tiny' => '1.302201',
22136             'Test2::Tools::Warnings'=> '1.302201',
22137             'Test2::Util' => '1.302201',
22138             'Test2::Util::ExternalMeta'=> '1.302201',
22139             'Test2::Util::Facets2Legacy'=> '1.302201',
22140             'Test2::Util::Grabber' => '1.302201',
22141             'Test2::Util::Guard' => '1.302201',
22142             'Test2::Util::HashBase' => '1.302201',
22143             'Test2::Util::Importer' => '1.302201',
22144             'Test2::Util::Ref' => '1.302201',
22145             'Test2::Util::Stash' => '1.302201',
22146             'Test2::Util::Sub' => '1.302201',
22147             'Test2::Util::Table' => '1.302201',
22148             'Test2::Util::Table::Cell'=> '1.302201',
22149             'Test2::Util::Table::LineBreak'=> '1.302201',
22150             'Test2::Util::Term' => '1.302201',
22151             'Test2::Util::Times' => '1.302201',
22152             'Test2::Util::Trace' => '1.302201',
22153             'Test2::V0' => '1.302201',
22154             'Test2::Workflow' => '1.302201',
22155             'Test2::Workflow::BlockBase'=> '1.302201',
22156             'Test2::Workflow::Build'=> '1.302201',
22157             'Test2::Workflow::Runner'=> '1.302201',
22158             'Test2::Workflow::Task' => '1.302201',
22159             'Test2::Workflow::Task::Action'=> '1.302201',
22160             'Test2::Workflow::Task::Group'=> '1.302201',
22161             'Test::Builder' => '1.302201',
22162             'Test::Builder::Formatter'=> '1.302201',
22163             'Test::Builder::Module' => '1.302201',
22164             'Test::Builder::Tester' => '1.302201',
22165             'Test::Builder::Tester::Color'=> '1.302201',
22166             'Test::Builder::TodoDiag'=> '1.302201',
22167             'Test::Harness' => '3.50',
22168             'Test::More' => '1.302201',
22169             'Test::Simple' => '1.302201',
22170             'Test::Tester' => '1.302201',
22171             'Test::Tester::Capture' => '1.302201',
22172             'Test::Tester::CaptureRunner'=> '1.302201',
22173             'Test::Tester::Delegate'=> '1.302201',
22174             'Test::use::ok' => '1.302201',
22175             'Tie::RefHash' => '1.41',
22176             'feature' => '1.91',
22177             'ok' => '1.302201',
22178             'overload' => '1.38',
22179             'parent' => '0.242',
22180             'threads' => '2.42',
22181             },
22182             removed => {
22183             }
22184             },
22185             5.041004 => {
22186             delta_from => 5.041003,
22187             changed => {
22188             'B::Op_private' => '5.041004',
22189             'CPAN' => '2.37',
22190             'CPAN::HandleConfig' => '5.5013',
22191             'Config' => '5.041004',
22192             'Devel::Peek' => '1.36',
22193             'ExtUtils::ParseXS' => '3.54',
22194             'ExtUtils::ParseXS::Constants'=> '3.54',
22195             'ExtUtils::ParseXS::CountLines'=> '3.54',
22196             'ExtUtils::ParseXS::Eval'=> '3.54',
22197             'ExtUtils::ParseXS::Utilities'=> '3.54',
22198             'ExtUtils::Typemaps' => '3.54',
22199             'ExtUtils::Typemaps::Cmd'=> '3.54',
22200             'ExtUtils::Typemaps::InputMap'=> '3.54',
22201             'ExtUtils::Typemaps::OutputMap'=> '3.54',
22202             'ExtUtils::Typemaps::Type'=> '3.54',
22203             'File::Spec' => '3.93',
22204             'File::Spec::AmigaOS' => '3.93',
22205             'File::Spec::Cygwin' => '3.93',
22206             'File::Spec::Epoc' => '3.93',
22207             'File::Spec::Functions' => '3.93',
22208             'File::Spec::Mac' => '3.93',
22209             'File::Spec::OS2' => '3.93',
22210             'File::Spec::Unix' => '3.93',
22211             'File::Spec::VMS' => '3.93',
22212             'File::Spec::Win32' => '3.93',
22213             'List::Util' => '1.66',
22214             'List::Util::XS' => '1.66',
22215             'Module::CoreList' => '5.20240920',
22216             'Module::CoreList::Utils'=> '5.20240920',
22217             'Scalar::Util' => '1.66',
22218             'Storable' => '3.35',
22219             'Sub::Util' => '1.66',
22220             'Test2' => '1.302204',
22221             'Test2::API' => '1.302204',
22222             'Test2::API::Breakage' => '1.302204',
22223             'Test2::API::Context' => '1.302204',
22224             'Test2::API::Instance' => '1.302204',
22225             'Test2::API::InterceptResult'=> '1.302204',
22226             'Test2::API::InterceptResult::Event'=> '1.302204',
22227             'Test2::API::InterceptResult::Facet'=> '1.302204',
22228             'Test2::API::InterceptResult::Hub'=> '1.302204',
22229             'Test2::API::InterceptResult::Squasher'=> '1.302204',
22230             'Test2::API::Stack' => '1.302204',
22231             'Test2::AsyncSubtest' => '1.302204',
22232             'Test2::AsyncSubtest::Event::Attach'=> '1.302204',
22233             'Test2::AsyncSubtest::Event::Detach'=> '1.302204',
22234             'Test2::AsyncSubtest::Formatter'=> '1.302204',
22235             'Test2::AsyncSubtest::Hub'=> '1.302204',
22236             'Test2::Bundle' => '1.302204',
22237             'Test2::Bundle::Extended'=> '1.302204',
22238             'Test2::Bundle::More' => '1.302204',
22239             'Test2::Bundle::Simple' => '1.302204',
22240             'Test2::Compare' => '1.302204',
22241             'Test2::Compare::Array' => '1.302204',
22242             'Test2::Compare::Bag' => '1.302204',
22243             'Test2::Compare::Base' => '1.302204',
22244             'Test2::Compare::Bool' => '1.302204',
22245             'Test2::Compare::Custom'=> '1.302204',
22246             'Test2::Compare::DeepRef'=> '1.302204',
22247             'Test2::Compare::Delta' => '1.302204',
22248             'Test2::Compare::Event' => '1.302204',
22249             'Test2::Compare::EventMeta'=> '1.302204',
22250             'Test2::Compare::Float' => '1.302204',
22251             'Test2::Compare::Hash' => '1.302204',
22252             'Test2::Compare::Isa' => '1.302204',
22253             'Test2::Compare::Meta' => '1.302204',
22254             'Test2::Compare::Negatable'=> '1.302204',
22255             'Test2::Compare::Number'=> '1.302204',
22256             'Test2::Compare::Object'=> '1.302204',
22257             'Test2::Compare::OrderedSubset'=> '1.302204',
22258             'Test2::Compare::Pattern'=> '1.302204',
22259             'Test2::Compare::Ref' => '1.302204',
22260             'Test2::Compare::Regex' => '1.302204',
22261             'Test2::Compare::Scalar'=> '1.302204',
22262             'Test2::Compare::Set' => '1.302204',
22263             'Test2::Compare::String'=> '1.302204',
22264             'Test2::Compare::Undef' => '1.302204',
22265             'Test2::Compare::Wildcard'=> '1.302204',
22266             'Test2::Event' => '1.302204',
22267             'Test2::Event::Bail' => '1.302204',
22268             'Test2::Event::Diag' => '1.302204',
22269             'Test2::Event::Encoding'=> '1.302204',
22270             'Test2::Event::Exception'=> '1.302204',
22271             'Test2::Event::Fail' => '1.302204',
22272             'Test2::Event::Generic' => '1.302204',
22273             'Test2::Event::Note' => '1.302204',
22274             'Test2::Event::Ok' => '1.302204',
22275             'Test2::Event::Pass' => '1.302204',
22276             'Test2::Event::Plan' => '1.302204',
22277             'Test2::Event::Skip' => '1.302204',
22278             'Test2::Event::Subtest' => '1.302204',
22279             'Test2::Event::TAP::Version'=> '1.302204',
22280             'Test2::Event::V2' => '1.302204',
22281             'Test2::Event::Waiting' => '1.302204',
22282             'Test2::EventFacet' => '1.302204',
22283             'Test2::EventFacet::About'=> '1.302204',
22284             'Test2::EventFacet::Amnesty'=> '1.302204',
22285             'Test2::EventFacet::Assert'=> '1.302204',
22286             'Test2::EventFacet::Control'=> '1.302204',
22287             'Test2::EventFacet::Error'=> '1.302204',
22288             'Test2::EventFacet::Hub'=> '1.302204',
22289             'Test2::EventFacet::Info'=> '1.302204',
22290             'Test2::EventFacet::Info::Table'=> '1.302204',
22291             'Test2::EventFacet::Meta'=> '1.302204',
22292             'Test2::EventFacet::Parent'=> '1.302204',
22293             'Test2::EventFacet::Plan'=> '1.302204',
22294             'Test2::EventFacet::Render'=> '1.302204',
22295             'Test2::EventFacet::Trace'=> '1.302204',
22296             'Test2::Formatter' => '1.302204',
22297             'Test2::Formatter::TAP' => '1.302204',
22298             'Test2::Hub' => '1.302204',
22299             'Test2::Hub::Interceptor'=> '1.302204',
22300             'Test2::Hub::Interceptor::Terminator'=> '1.302204',
22301             'Test2::Hub::Subtest' => '1.302204',
22302             'Test2::IPC' => '1.302204',
22303             'Test2::IPC::Driver' => '1.302204',
22304             'Test2::IPC::Driver::Files'=> '1.302204',
22305             'Test2::Manual' => '1.302204',
22306             'Test2::Manual::Anatomy'=> '1.302204',
22307             'Test2::Manual::Anatomy::API'=> '1.302204',
22308             'Test2::Manual::Anatomy::Context'=> '1.302204',
22309             'Test2::Manual::Anatomy::EndToEnd'=> '1.302204',
22310             'Test2::Manual::Anatomy::Event'=> '1.302204',
22311             'Test2::Manual::Anatomy::Hubs'=> '1.302204',
22312             'Test2::Manual::Anatomy::IPC'=> '1.302204',
22313             'Test2::Manual::Anatomy::Utilities'=> '1.302204',
22314             'Test2::Manual::Concurrency'=> '1.302204',
22315             'Test2::Manual::Contributing'=> '1.302204',
22316             'Test2::Manual::Testing'=> '1.302204',
22317             'Test2::Manual::Testing::Introduction'=> '1.302204',
22318             'Test2::Manual::Testing::Migrating'=> '1.302204',
22319             'Test2::Manual::Testing::Planning'=> '1.302204',
22320             'Test2::Manual::Testing::Todo'=> '1.302204',
22321             'Test2::Manual::Tooling'=> '1.302204',
22322             'Test2::Manual::Tooling::FirstTool'=> '1.302204',
22323             'Test2::Manual::Tooling::Formatter'=> '1.302204',
22324             'Test2::Manual::Tooling::Nesting'=> '1.302204',
22325             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302204',
22326             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302204',
22327             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302204',
22328             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302204',
22329             'Test2::Manual::Tooling::Subtest'=> '1.302204',
22330             'Test2::Manual::Tooling::TestBuilder'=> '1.302204',
22331             'Test2::Manual::Tooling::Testing'=> '1.302204',
22332             'Test2::Mock' => '1.302204',
22333             'Test2::Plugin' => '1.302204',
22334             'Test2::Plugin::BailOnFail'=> '1.302204',
22335             'Test2::Plugin::DieOnFail'=> '1.302204',
22336             'Test2::Plugin::ExitSummary'=> '1.302204',
22337             'Test2::Plugin::SRand' => '1.302204',
22338             'Test2::Plugin::Times' => '1.302204',
22339             'Test2::Plugin::UTF8' => '1.302204',
22340             'Test2::Require' => '1.302204',
22341             'Test2::Require::AuthorTesting'=> '1.302204',
22342             'Test2::Require::AutomatedTesting'=> '1.302204',
22343             'Test2::Require::EnvVar'=> '1.302204',
22344             'Test2::Require::ExtendedTesting'=> '1.302204',
22345             'Test2::Require::Fork' => '1.302204',
22346             'Test2::Require::Module'=> '1.302204',
22347             'Test2::Require::NonInteractiveTesting'=> '1.302204',
22348             'Test2::Require::Perl' => '1.302204',
22349             'Test2::Require::RealFork'=> '1.302204',
22350             'Test2::Require::ReleaseTesting'=> '1.302204',
22351             'Test2::Require::Threads'=> '1.302204',
22352             'Test2::Suite' => '1.302204',
22353             'Test2::Todo' => '1.302204',
22354             'Test2::Tools' => '1.302204',
22355             'Test2::Tools::AsyncSubtest'=> '1.302204',
22356             'Test2::Tools::Basic' => '1.302204',
22357             'Test2::Tools::Class' => '1.302204',
22358             'Test2::Tools::ClassicCompare'=> '1.302204',
22359             'Test2::Tools::Compare' => '1.302204',
22360             'Test2::Tools::Defer' => '1.302204',
22361             'Test2::Tools::Encoding'=> '1.302204',
22362             'Test2::Tools::Event' => '1.302204',
22363             'Test2::Tools::Exception'=> '1.302204',
22364             'Test2::Tools::Exports' => '1.302204',
22365             'Test2::Tools::GenTemp' => '1.302204',
22366             'Test2::Tools::Grab' => '1.302204',
22367             'Test2::Tools::Mock' => '1.302204',
22368             'Test2::Tools::Ref' => '1.302204',
22369             'Test2::Tools::Refcount'=> '1.302204',
22370             'Test2::Tools::Spec' => '1.302204',
22371             'Test2::Tools::Subtest' => '1.302204',
22372             'Test2::Tools::Target' => '1.302204',
22373             'Test2::Tools::Tester' => '1.302204',
22374             'Test2::Tools::Tiny' => '1.302204',
22375             'Test2::Tools::Warnings'=> '1.302204',
22376             'Test2::Util' => '1.302204',
22377             'Test2::Util::ExternalMeta'=> '1.302204',
22378             'Test2::Util::Facets2Legacy'=> '1.302204',
22379             'Test2::Util::Grabber' => '1.302204',
22380             'Test2::Util::Guard' => '1.302204',
22381             'Test2::Util::HashBase' => '1.302204',
22382             'Test2::Util::Importer' => '1.302204',
22383             'Test2::Util::Ref' => '1.302204',
22384             'Test2::Util::Stash' => '1.302204',
22385             'Test2::Util::Sub' => '1.302204',
22386             'Test2::Util::Table' => '1.302204',
22387             'Test2::Util::Table::Cell'=> '1.302204',
22388             'Test2::Util::Table::LineBreak'=> '1.302204',
22389             'Test2::Util::Term' => '1.302204',
22390             'Test2::Util::Times' => '1.302204',
22391             'Test2::Util::Trace' => '1.302204',
22392             'Test2::V0' => '1.302204',
22393             'Test2::Workflow' => '1.302204',
22394             'Test2::Workflow::BlockBase'=> '1.302204',
22395             'Test2::Workflow::Build'=> '1.302204',
22396             'Test2::Workflow::Runner'=> '1.302204',
22397             'Test2::Workflow::Task' => '1.302204',
22398             'Test2::Workflow::Task::Action'=> '1.302204',
22399             'Test2::Workflow::Task::Group'=> '1.302204',
22400             'Test::Builder' => '1.302204',
22401             'Test::Builder::Formatter'=> '1.302204',
22402             'Test::Builder::Module' => '1.302204',
22403             'Test::Builder::Tester' => '1.302204',
22404             'Test::Builder::Tester::Color'=> '1.302204',
22405             'Test::Builder::TodoDiag'=> '1.302204',
22406             'Test::More' => '1.302204',
22407             'Test::Simple' => '1.302204',
22408             'Test::Tester' => '1.302204',
22409             'Test::Tester::Capture' => '1.302204',
22410             'Test::Tester::CaptureRunner'=> '1.302204',
22411             'Test::Tester::Delegate'=> '1.302204',
22412             'Test::use::ok' => '1.302204',
22413             'XS::APItest' => '1.38',
22414             'ok' => '1.302204',
22415             'overload' => '1.39',
22416             'version' => '0.9933',
22417             'version::regex' => '0.9933',
22418             },
22419             removed => {
22420             }
22421             },
22422             5.041005 => {
22423             delta_from => 5.041004,
22424             changed => {
22425             'B::Op_private' => '5.041005',
22426             'Config' => '5.041005',
22427             'Digest::MD5' => '2.59',
22428             'ExtUtils::ParseXS' => '3.55',
22429             'ExtUtils::ParseXS::Constants'=> '3.55',
22430             'ExtUtils::ParseXS::CountLines'=> '3.55',
22431             'ExtUtils::ParseXS::Eval'=> '3.55',
22432             'ExtUtils::ParseXS::Node'=> '3.55',
22433             'ExtUtils::ParseXS::Utilities'=> '3.55',
22434             'ExtUtils::Typemaps' => '3.55',
22435             'ExtUtils::Typemaps::Cmd'=> '3.55',
22436             'ExtUtils::Typemaps::InputMap'=> '3.55',
22437             'ExtUtils::Typemaps::OutputMap'=> '3.55',
22438             'ExtUtils::Typemaps::Type'=> '3.55',
22439             'IPC::Open2' => '1.07',
22440             'IPC::Open3' => '1.23',
22441             'List::Util' => '1.68',
22442             'List::Util::XS' => '1.68',
22443             'Module::CoreList' => '5.20241020',
22444             'Module::CoreList::Utils'=> '5.20241020',
22445             'Scalar::List::Utils' => '1.68',
22446             'Scalar::Util' => '1.68',
22447             'Sub::Util' => '1.68',
22448             'threads::shared' => '1.70',
22449             },
22450             removed => {
22451             }
22452             },
22453             5.041006 => {
22454             delta_from => 5.041005,
22455             changed => {
22456             'B::Deparse' => '1.80',
22457             'B::Op_private' => '5.041006',
22458             'CPAN' => '2.38',
22459             'Config' => '5.041006',
22460             'DB' => '1.09',
22461             'ExtUtils::ParseXS' => '3.56',
22462             'ExtUtils::ParseXS::Constants'=> '3.56',
22463             'ExtUtils::ParseXS::CountLines'=> '3.56',
22464             'ExtUtils::ParseXS::Eval'=> '3.56',
22465             'ExtUtils::ParseXS::Node'=> '3.56',
22466             'ExtUtils::ParseXS::Utilities'=> '3.56',
22467             'ExtUtils::Typemaps' => '3.56',
22468             'ExtUtils::Typemaps::Cmd'=> '3.56',
22469             'ExtUtils::Typemaps::InputMap'=> '3.56',
22470             'ExtUtils::Typemaps::OutputMap'=> '3.56',
22471             'ExtUtils::Typemaps::Type'=> '3.56',
22472             'HTTP::Tiny' => '0.090',
22473             'IPC::Open2' => '1.08',
22474             'IPC::Open3' => '1.24',
22475             'List::Util' => '1.68_01',
22476             'List::Util::XS' => '1.68_01',
22477             'Math::Complex' => '1.63',
22478             'Math::Trig' => '1.63',
22479             'Memoize' => '1.17',
22480             'Memoize::AnyDBM_File' => '1.17',
22481             'Memoize::Expire' => '1.17',
22482             'Memoize::NDBM_File' => '1.17',
22483             'Memoize::SDBM_File' => '1.17',
22484             'Memoize::Storable' => '1.17',
22485             'Module::CoreList' => '5.20241120',
22486             'Module::CoreList::Utils'=> '5.20241120',
22487             'NDBM_File' => '1.18',
22488             'ODBM_File' => '1.19',
22489             'POSIX' => '2.23',
22490             'Scalar::Util' => '1.68_01',
22491             'Sub::Util' => '1.68_01',
22492             'Term::Table' => '0.023',
22493             'Term::Table::Cell' => '0.023',
22494             'Term::Table::CellStack'=> '0.023',
22495             'Term::Table::HashBase' => '0.023',
22496             'Term::Table::LineBreak'=> '0.023',
22497             'Term::Table::Spacer' => '0.023',
22498             'Term::Table::Util' => '0.023',
22499             'builtin' => '0.016',
22500             'feature' => '1.92',
22501             'fields' => '2.26',
22502             'parent' => '0.242_001',
22503             'warnings' => '1.71',
22504             },
22505             removed => {
22506             }
22507             },
22508             5.041007 => {
22509             delta_from => 5.041006,
22510             changed => {
22511             'B::Deparse' => '1.81',
22512             'B::Op_private' => '5.041007',
22513             'CPAN::Meta::YAML' => '0.020',
22514             'Config' => '5.041007',
22515             'IO::Socket::IP' => '0.43',
22516             'Module::CoreList' => '5.20241220',
22517             'Module::CoreList::Utils'=> '5.20241220',
22518             'Opcode' => '1.67',
22519             'XS::APItest' => '1.40',
22520             'builtin' => '0.017',
22521             'feature' => '1.93',
22522             'parent' => '0.244',
22523             'warnings' => '1.72',
22524             },
22525             removed => {
22526             }
22527             },
22528             5.038003 => {
22529             delta_from => 5.038002,
22530             changed => {
22531             'B::Op_private' => '5.038003',
22532             'Config' => '5.038003',
22533             'DynaLoader' => '1.54_01',
22534             'Module::CoreList' => '5.20250118_38',
22535             'Module::CoreList::Utils'=> '5.20250118_38',
22536             },
22537             removed => {
22538             }
22539             },
22540             5.040001 => {
22541             delta_from => 5.040000,
22542             changed => {
22543             'B::Op_private' => '5.040001',
22544             'Config' => '5.040001',
22545             'Cwd' => '3.91',
22546             'File::Spec' => '3.91',
22547             'Module::CoreList' => '5.20250118_40',
22548             'Module::CoreList::Utils'=> '5.20250118_40',
22549             'warnings' => '1.70',
22550             },
22551             removed => {
22552             }
22553             },
22554             5.041008 => {
22555             delta_from => 5.041007,
22556             changed => {
22557             'B::Deparse' => '1.82',
22558             'B::Op_private' => '5.041008',
22559             'Config' => '5.041008',
22560             'Config::Perl::V' => '0.38',
22561             'DBM_Filter' => '0.07',
22562             'Data::Dumper' => '2.191',
22563             'ExtUtils::ParseXS' => '3.57',
22564             'ExtUtils::ParseXS::Constants'=> '3.57',
22565             'ExtUtils::ParseXS::CountLines'=> '3.57',
22566             'ExtUtils::ParseXS::Eval'=> '3.57',
22567             'ExtUtils::ParseXS::Node'=> '3.57',
22568             'ExtUtils::ParseXS::Utilities'=> '3.57',
22569             'ExtUtils::Typemaps' => '3.57',
22570             'ExtUtils::Typemaps::Cmd'=> '3.57',
22571             'ExtUtils::Typemaps::InputMap'=> '3.57',
22572             'ExtUtils::Typemaps::OutputMap'=> '3.57',
22573             'ExtUtils::Typemaps::Type'=> '3.57',
22574             'Module::CoreList' => '5.20250120',
22575             'Module::CoreList::Utils'=> '5.20250120',
22576             'Opcode' => '1.68',
22577             'Term::Table' => '0.024',
22578             'Term::Table::Cell' => '0.024',
22579             'Term::Table::CellStack'=> '0.024',
22580             'Term::Table::HashBase' => '0.024',
22581             'Term::Table::LineBreak'=> '0.024',
22582             'Term::Table::Spacer' => '0.024',
22583             'Term::Table::Util' => '0.024',
22584             'Test2' => '1.302207',
22585             'Test2::API' => '1.302207',
22586             'Test2::API::Breakage' => '1.302207',
22587             'Test2::API::Context' => '1.302207',
22588             'Test2::API::Instance' => '1.302207',
22589             'Test2::API::InterceptResult'=> '1.302207',
22590             'Test2::API::InterceptResult::Event'=> '1.302207',
22591             'Test2::API::InterceptResult::Facet'=> '1.302207',
22592             'Test2::API::InterceptResult::Hub'=> '1.302207',
22593             'Test2::API::InterceptResult::Squasher'=> '1.302207',
22594             'Test2::API::Stack' => '1.302207',
22595             'Test2::AsyncSubtest' => '1.302207',
22596             'Test2::AsyncSubtest::Event::Attach'=> '1.302207',
22597             'Test2::AsyncSubtest::Event::Detach'=> '1.302207',
22598             'Test2::AsyncSubtest::Formatter'=> '1.302207',
22599             'Test2::AsyncSubtest::Hub'=> '1.302207',
22600             'Test2::Bundle' => '1.302207',
22601             'Test2::Bundle::Extended'=> '1.302207',
22602             'Test2::Bundle::More' => '1.302207',
22603             'Test2::Bundle::Simple' => '1.302207',
22604             'Test2::Compare' => '1.302207',
22605             'Test2::Compare::Array' => '1.302207',
22606             'Test2::Compare::Bag' => '1.302207',
22607             'Test2::Compare::Base' => '1.302207',
22608             'Test2::Compare::Bool' => '1.302207',
22609             'Test2::Compare::Custom'=> '1.302207',
22610             'Test2::Compare::DeepRef'=> '1.302207',
22611             'Test2::Compare::Delta' => '1.302207',
22612             'Test2::Compare::Event' => '1.302207',
22613             'Test2::Compare::EventMeta'=> '1.302207',
22614             'Test2::Compare::Float' => '1.302207',
22615             'Test2::Compare::Hash' => '1.302207',
22616             'Test2::Compare::Isa' => '1.302207',
22617             'Test2::Compare::Meta' => '1.302207',
22618             'Test2::Compare::Negatable'=> '1.302207',
22619             'Test2::Compare::Number'=> '1.302207',
22620             'Test2::Compare::Object'=> '1.302207',
22621             'Test2::Compare::OrderedSubset'=> '1.302207',
22622             'Test2::Compare::Pattern'=> '1.302207',
22623             'Test2::Compare::Ref' => '1.302207',
22624             'Test2::Compare::Regex' => '1.302207',
22625             'Test2::Compare::Scalar'=> '1.302207',
22626             'Test2::Compare::Set' => '1.302207',
22627             'Test2::Compare::String'=> '1.302207',
22628             'Test2::Compare::Undef' => '1.302207',
22629             'Test2::Compare::Wildcard'=> '1.302207',
22630             'Test2::Env' => '1.302207',
22631             'Test2::Event' => '1.302207',
22632             'Test2::Event::Bail' => '1.302207',
22633             'Test2::Event::Diag' => '1.302207',
22634             'Test2::Event::Encoding'=> '1.302207',
22635             'Test2::Event::Exception'=> '1.302207',
22636             'Test2::Event::Fail' => '1.302207',
22637             'Test2::Event::Generic' => '1.302207',
22638             'Test2::Event::Note' => '1.302207',
22639             'Test2::Event::Ok' => '1.302207',
22640             'Test2::Event::Pass' => '1.302207',
22641             'Test2::Event::Plan' => '1.302207',
22642             'Test2::Event::Skip' => '1.302207',
22643             'Test2::Event::Subtest' => '1.302207',
22644             'Test2::Event::TAP::Version'=> '1.302207',
22645             'Test2::Event::V2' => '1.302207',
22646             'Test2::Event::Waiting' => '1.302207',
22647             'Test2::EventFacet' => '1.302207',
22648             'Test2::EventFacet::About'=> '1.302207',
22649             'Test2::EventFacet::Amnesty'=> '1.302207',
22650             'Test2::EventFacet::Assert'=> '1.302207',
22651             'Test2::EventFacet::Control'=> '1.302207',
22652             'Test2::EventFacet::Error'=> '1.302207',
22653             'Test2::EventFacet::Hub'=> '1.302207',
22654             'Test2::EventFacet::Info'=> '1.302207',
22655             'Test2::EventFacet::Info::Table'=> '1.302207',
22656             'Test2::EventFacet::Meta'=> '1.302207',
22657             'Test2::EventFacet::Parent'=> '1.302207',
22658             'Test2::EventFacet::Plan'=> '1.302207',
22659             'Test2::EventFacet::Render'=> '1.302207',
22660             'Test2::EventFacet::Trace'=> '1.302207',
22661             'Test2::Formatter' => '1.302207',
22662             'Test2::Formatter::TAP' => '1.302207',
22663             'Test2::Hub' => '1.302207',
22664             'Test2::Hub::Interceptor'=> '1.302207',
22665             'Test2::Hub::Interceptor::Terminator'=> '1.302207',
22666             'Test2::Hub::Subtest' => '1.302207',
22667             'Test2::IPC' => '1.302207',
22668             'Test2::IPC::Driver' => '1.302207',
22669             'Test2::IPC::Driver::Files'=> '1.302207',
22670             'Test2::Manual' => '1.302207',
22671             'Test2::Manual::Anatomy'=> '1.302207',
22672             'Test2::Manual::Anatomy::API'=> '1.302207',
22673             'Test2::Manual::Anatomy::Context'=> '1.302207',
22674             'Test2::Manual::Anatomy::EndToEnd'=> '1.302207',
22675             'Test2::Manual::Anatomy::Event'=> '1.302207',
22676             'Test2::Manual::Anatomy::Hubs'=> '1.302207',
22677             'Test2::Manual::Anatomy::IPC'=> '1.302207',
22678             'Test2::Manual::Anatomy::Utilities'=> '1.302207',
22679             'Test2::Manual::Concurrency'=> '1.302207',
22680             'Test2::Manual::Contributing'=> '1.302207',
22681             'Test2::Manual::Testing'=> '1.302207',
22682             'Test2::Manual::Testing::Introduction'=> '1.302207',
22683             'Test2::Manual::Testing::Migrating'=> '1.302207',
22684             'Test2::Manual::Testing::Planning'=> '1.302207',
22685             'Test2::Manual::Testing::Todo'=> '1.302207',
22686             'Test2::Manual::Tooling'=> '1.302207',
22687             'Test2::Manual::Tooling::FirstTool'=> '1.302207',
22688             'Test2::Manual::Tooling::Formatter'=> '1.302207',
22689             'Test2::Manual::Tooling::Nesting'=> '1.302207',
22690             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302207',
22691             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302207',
22692             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302207',
22693             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302207',
22694             'Test2::Manual::Tooling::Subtest'=> '1.302207',
22695             'Test2::Manual::Tooling::TestBuilder'=> '1.302207',
22696             'Test2::Manual::Tooling::Testing'=> '1.302207',
22697             'Test2::Mock' => '1.302207',
22698             'Test2::Plugin' => '1.302207',
22699             'Test2::Plugin::BailOnFail'=> '1.302207',
22700             'Test2::Plugin::DieOnFail'=> '1.302207',
22701             'Test2::Plugin::ExitSummary'=> '1.302207',
22702             'Test2::Plugin::SRand' => '1.302207',
22703             'Test2::Plugin::Times' => '1.302207',
22704             'Test2::Plugin::UTF8' => '1.302207',
22705             'Test2::Require' => '1.302207',
22706             'Test2::Require::AuthorTesting'=> '1.302207',
22707             'Test2::Require::AutomatedTesting'=> '1.302207',
22708             'Test2::Require::EnvVar'=> '1.302207',
22709             'Test2::Require::ExtendedTesting'=> '1.302207',
22710             'Test2::Require::Fork' => '1.302207',
22711             'Test2::Require::Module'=> '1.302207',
22712             'Test2::Require::NonInteractiveTesting'=> '1.302207',
22713             'Test2::Require::Perl' => '1.302207',
22714             'Test2::Require::RealFork'=> '1.302207',
22715             'Test2::Require::ReleaseTesting'=> '1.302207',
22716             'Test2::Require::Threads'=> '1.302207',
22717             'Test2::Suite' => '1.302207',
22718             'Test2::Todo' => '1.302207',
22719             'Test2::Tools' => '1.302207',
22720             'Test2::Tools::AsyncSubtest'=> '1.302207',
22721             'Test2::Tools::Basic' => '1.302207',
22722             'Test2::Tools::Class' => '1.302207',
22723             'Test2::Tools::ClassicCompare'=> '1.302207',
22724             'Test2::Tools::Compare' => '1.302207',
22725             'Test2::Tools::Defer' => '1.302207',
22726             'Test2::Tools::Encoding'=> '1.302207',
22727             'Test2::Tools::Event' => '1.302207',
22728             'Test2::Tools::Exception'=> '1.302207',
22729             'Test2::Tools::Exports' => '1.302207',
22730             'Test2::Tools::GenTemp' => '1.302207',
22731             'Test2::Tools::Grab' => '1.302207',
22732             'Test2::Tools::Mock' => '1.302207',
22733             'Test2::Tools::Ref' => '1.302207',
22734             'Test2::Tools::Refcount'=> '1.302207',
22735             'Test2::Tools::Spec' => '1.302207',
22736             'Test2::Tools::Subtest' => '1.302207',
22737             'Test2::Tools::Target' => '1.302207',
22738             'Test2::Tools::Tester' => '1.302207',
22739             'Test2::Tools::Tiny' => '1.302207',
22740             'Test2::Tools::Warnings'=> '1.302207',
22741             'Test2::Util' => '1.302207',
22742             'Test2::Util::ExternalMeta'=> '1.302207',
22743             'Test2::Util::Facets2Legacy'=> '1.302207',
22744             'Test2::Util::Grabber' => '1.302207',
22745             'Test2::Util::Guard' => '1.302207',
22746             'Test2::Util::HashBase' => '1.302207',
22747             'Test2::Util::Importer' => '1.302207',
22748             'Test2::Util::Ref' => '1.302207',
22749             'Test2::Util::Stash' => '1.302207',
22750             'Test2::Util::Sub' => '1.302207',
22751             'Test2::Util::Table' => '1.302207',
22752             'Test2::Util::Table::Cell'=> '1.302207',
22753             'Test2::Util::Table::LineBreak'=> '1.302207',
22754             'Test2::Util::Term' => '1.302207',
22755             'Test2::Util::Times' => '1.302207',
22756             'Test2::Util::Trace' => '1.302207',
22757             'Test2::V0' => '1.302207',
22758             'Test2::Workflow' => '1.302207',
22759             'Test2::Workflow::BlockBase'=> '1.302207',
22760             'Test2::Workflow::Build'=> '1.302207',
22761             'Test2::Workflow::Runner'=> '1.302207',
22762             'Test2::Workflow::Task' => '1.302207',
22763             'Test2::Workflow::Task::Action'=> '1.302207',
22764             'Test2::Workflow::Task::Group'=> '1.302207',
22765             'Test::Builder' => '1.302207',
22766             'Test::Builder::Formatter'=> '1.302207',
22767             'Test::Builder::Module' => '1.302207',
22768             'Test::Builder::Tester' => '1.302207',
22769             'Test::Builder::Tester::Color'=> '1.302207',
22770             'Test::Builder::TodoDiag'=> '1.302207',
22771             'Test::More' => '1.302207',
22772             'Test::Simple' => '1.302207',
22773             'Test::Tester' => '1.302207',
22774             'Test::Tester::Capture' => '1.302207',
22775             'Test::Tester::CaptureRunner'=> '1.302207',
22776             'Test::Tester::Delegate'=> '1.302207',
22777             'Test::use::ok' => '1.302207',
22778             'Time::Piece' => '1.35',
22779             'Time::Seconds' => '1.35',
22780             'experimental' => '0.034',
22781             'ok' => '1.302207',
22782             'stable' => '0.034',
22783             },
22784             removed => {
22785             'Test::Builder::IO::Scalar'=> 1,
22786             }
22787             },
22788             5.041009 => {
22789             delta_from => 5.041008,
22790             changed => {
22791             'B::Deparse' => '1.83',
22792             'B::Op_private' => '5.041009',
22793             'Config' => '5.041009',
22794             'Exporter' => '5.79',
22795             'Exporter::Heavy' => '5.79',
22796             'IO::Poll' => '1.56',
22797             'Math::BigFloat' => '2.003004',
22798             'Math::BigInt' => '2.003004',
22799             'Math::BigInt::Calc' => '2.003004',
22800             'Math::BigInt::Lib' => '2.003004',
22801             'Math::BigRat' => '2.003004',
22802             'Module::CoreList' => '5.20250220',
22803             'Module::CoreList::Utils'=> '5.20250220',
22804             'ODBM_File' => '1.20',
22805             'Opcode' => '1.69',
22806             'Safe' => '2.46',
22807             'Test2' => '1.302209',
22808             'Test2::API' => '1.302209',
22809             'Test2::API::Breakage' => '1.302209',
22810             'Test2::API::Context' => '1.302209',
22811             'Test2::API::Instance' => '1.302209',
22812             'Test2::API::InterceptResult'=> '1.302209',
22813             'Test2::API::InterceptResult::Event'=> '1.302209',
22814             'Test2::API::InterceptResult::Facet'=> '1.302209',
22815             'Test2::API::InterceptResult::Hub'=> '1.302209',
22816             'Test2::API::InterceptResult::Squasher'=> '1.302209',
22817             'Test2::API::Stack' => '1.302209',
22818             'Test2::AsyncSubtest' => '1.302209',
22819             'Test2::AsyncSubtest::Event::Attach'=> '1.302209',
22820             'Test2::AsyncSubtest::Event::Detach'=> '1.302209',
22821             'Test2::AsyncSubtest::Formatter'=> '1.302209',
22822             'Test2::AsyncSubtest::Hub'=> '1.302209',
22823             'Test2::Bundle' => '1.302209',
22824             'Test2::Bundle::Extended'=> '1.302209',
22825             'Test2::Bundle::More' => '1.302209',
22826             'Test2::Bundle::Simple' => '1.302209',
22827             'Test2::Compare' => '1.302209',
22828             'Test2::Compare::Array' => '1.302209',
22829             'Test2::Compare::Bag' => '1.302209',
22830             'Test2::Compare::Base' => '1.302209',
22831             'Test2::Compare::Bool' => '1.302209',
22832             'Test2::Compare::Custom'=> '1.302209',
22833             'Test2::Compare::DeepRef'=> '1.302209',
22834             'Test2::Compare::Delta' => '1.302209',
22835             'Test2::Compare::Event' => '1.302209',
22836             'Test2::Compare::EventMeta'=> '1.302209',
22837             'Test2::Compare::Float' => '1.302209',
22838             'Test2::Compare::Hash' => '1.302209',
22839             'Test2::Compare::Isa' => '1.302209',
22840             'Test2::Compare::Meta' => '1.302209',
22841             'Test2::Compare::Negatable'=> '1.302209',
22842             'Test2::Compare::Number'=> '1.302209',
22843             'Test2::Compare::Object'=> '1.302209',
22844             'Test2::Compare::OrderedSubset'=> '1.302209',
22845             'Test2::Compare::Pattern'=> '1.302209',
22846             'Test2::Compare::Ref' => '1.302209',
22847             'Test2::Compare::Regex' => '1.302209',
22848             'Test2::Compare::Scalar'=> '1.302209',
22849             'Test2::Compare::Set' => '1.302209',
22850             'Test2::Compare::String'=> '1.302209',
22851             'Test2::Compare::Undef' => '1.302209',
22852             'Test2::Compare::Wildcard'=> '1.302209',
22853             'Test2::Env' => '1.302209',
22854             'Test2::Event' => '1.302209',
22855             'Test2::Event::Bail' => '1.302209',
22856             'Test2::Event::Diag' => '1.302209',
22857             'Test2::Event::Encoding'=> '1.302209',
22858             'Test2::Event::Exception'=> '1.302209',
22859             'Test2::Event::Fail' => '1.302209',
22860             'Test2::Event::Generic' => '1.302209',
22861             'Test2::Event::Note' => '1.302209',
22862             'Test2::Event::Ok' => '1.302209',
22863             'Test2::Event::Pass' => '1.302209',
22864             'Test2::Event::Plan' => '1.302209',
22865             'Test2::Event::Skip' => '1.302209',
22866             'Test2::Event::Subtest' => '1.302209',
22867             'Test2::Event::TAP::Version'=> '1.302209',
22868             'Test2::Event::V2' => '1.302209',
22869             'Test2::Event::Waiting' => '1.302209',
22870             'Test2::EventFacet' => '1.302209',
22871             'Test2::EventFacet::About'=> '1.302209',
22872             'Test2::EventFacet::Amnesty'=> '1.302209',
22873             'Test2::EventFacet::Assert'=> '1.302209',
22874             'Test2::EventFacet::Control'=> '1.302209',
22875             'Test2::EventFacet::Error'=> '1.302209',
22876             'Test2::EventFacet::Hub'=> '1.302209',
22877             'Test2::EventFacet::Info'=> '1.302209',
22878             'Test2::EventFacet::Info::Table'=> '1.302209',
22879             'Test2::EventFacet::Meta'=> '1.302209',
22880             'Test2::EventFacet::Parent'=> '1.302209',
22881             'Test2::EventFacet::Plan'=> '1.302209',
22882             'Test2::EventFacet::Render'=> '1.302209',
22883             'Test2::EventFacet::Trace'=> '1.302209',
22884             'Test2::Formatter' => '1.302209',
22885             'Test2::Formatter::TAP' => '1.302209',
22886             'Test2::Hub' => '1.302209',
22887             'Test2::Hub::Interceptor'=> '1.302209',
22888             'Test2::Hub::Interceptor::Terminator'=> '1.302209',
22889             'Test2::Hub::Subtest' => '1.302209',
22890             'Test2::IPC' => '1.302209',
22891             'Test2::IPC::Driver' => '1.302209',
22892             'Test2::IPC::Driver::Files'=> '1.302209',
22893             'Test2::Manual' => '1.302209',
22894             'Test2::Manual::Anatomy'=> '1.302209',
22895             'Test2::Manual::Anatomy::API'=> '1.302209',
22896             'Test2::Manual::Anatomy::Context'=> '1.302209',
22897             'Test2::Manual::Anatomy::EndToEnd'=> '1.302209',
22898             'Test2::Manual::Anatomy::Event'=> '1.302209',
22899             'Test2::Manual::Anatomy::Hubs'=> '1.302209',
22900             'Test2::Manual::Anatomy::IPC'=> '1.302209',
22901             'Test2::Manual::Anatomy::Utilities'=> '1.302209',
22902             'Test2::Manual::Concurrency'=> '1.302209',
22903             'Test2::Manual::Contributing'=> '1.302209',
22904             'Test2::Manual::Testing'=> '1.302209',
22905             'Test2::Manual::Testing::Introduction'=> '1.302209',
22906             'Test2::Manual::Testing::Migrating'=> '1.302209',
22907             'Test2::Manual::Testing::Planning'=> '1.302209',
22908             'Test2::Manual::Testing::Todo'=> '1.302209',
22909             'Test2::Manual::Tooling'=> '1.302209',
22910             'Test2::Manual::Tooling::FirstTool'=> '1.302209',
22911             'Test2::Manual::Tooling::Formatter'=> '1.302209',
22912             'Test2::Manual::Tooling::Nesting'=> '1.302209',
22913             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302209',
22914             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302209',
22915             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302209',
22916             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302209',
22917             'Test2::Manual::Tooling::Subtest'=> '1.302209',
22918             'Test2::Manual::Tooling::TestBuilder'=> '1.302209',
22919             'Test2::Manual::Tooling::Testing'=> '1.302209',
22920             'Test2::Mock' => '1.302209',
22921             'Test2::Plugin' => '1.302209',
22922             'Test2::Plugin::BailOnFail'=> '1.302209',
22923             'Test2::Plugin::DieOnFail'=> '1.302209',
22924             'Test2::Plugin::ExitSummary'=> '1.302209',
22925             'Test2::Plugin::SRand' => '1.302209',
22926             'Test2::Plugin::Times' => '1.302209',
22927             'Test2::Plugin::UTF8' => '1.302209',
22928             'Test2::Require' => '1.302209',
22929             'Test2::Require::AuthorTesting'=> '1.302209',
22930             'Test2::Require::AutomatedTesting'=> '1.302209',
22931             'Test2::Require::EnvVar'=> '1.302209',
22932             'Test2::Require::ExtendedTesting'=> '1.302209',
22933             'Test2::Require::Fork' => '1.302209',
22934             'Test2::Require::Module'=> '1.302209',
22935             'Test2::Require::NonInteractiveTesting'=> '1.302209',
22936             'Test2::Require::Perl' => '1.302209',
22937             'Test2::Require::RealFork'=> '1.302209',
22938             'Test2::Require::ReleaseTesting'=> '1.302209',
22939             'Test2::Require::Threads'=> '1.302209',
22940             'Test2::Suite' => '1.302209',
22941             'Test2::Todo' => '1.302209',
22942             'Test2::Tools' => '1.302209',
22943             'Test2::Tools::AsyncSubtest'=> '1.302209',
22944             'Test2::Tools::Basic' => '1.302209',
22945             'Test2::Tools::Class' => '1.302209',
22946             'Test2::Tools::ClassicCompare'=> '1.302209',
22947             'Test2::Tools::Compare' => '1.302209',
22948             'Test2::Tools::Defer' => '1.302209',
22949             'Test2::Tools::Encoding'=> '1.302209',
22950             'Test2::Tools::Event' => '1.302209',
22951             'Test2::Tools::Exception'=> '1.302209',
22952             'Test2::Tools::Exports' => '1.302209',
22953             'Test2::Tools::GenTemp' => '1.302209',
22954             'Test2::Tools::Grab' => '1.302209',
22955             'Test2::Tools::Mock' => '1.302209',
22956             'Test2::Tools::Ref' => '1.302209',
22957             'Test2::Tools::Refcount'=> '1.302209',
22958             'Test2::Tools::Spec' => '1.302209',
22959             'Test2::Tools::Subtest' => '1.302209',
22960             'Test2::Tools::Target' => '1.302209',
22961             'Test2::Tools::Tester' => '1.302209',
22962             'Test2::Tools::Tiny' => '1.302209',
22963             'Test2::Tools::Warnings'=> '1.302209',
22964             'Test2::Util' => '1.302209',
22965             'Test2::Util::ExternalMeta'=> '1.302209',
22966             'Test2::Util::Facets2Legacy'=> '1.302209',
22967             'Test2::Util::Grabber' => '1.302209',
22968             'Test2::Util::Guard' => '1.302209',
22969             'Test2::Util::HashBase' => '1.302209',
22970             'Test2::Util::Importer' => '1.302209',
22971             'Test2::Util::Ref' => '1.302209',
22972             'Test2::Util::Sig' => '1.302209',
22973             'Test2::Util::Stash' => '1.302209',
22974             'Test2::Util::Sub' => '1.302209',
22975             'Test2::Util::Table' => '1.302209',
22976             'Test2::Util::Table::Cell'=> '1.302209',
22977             'Test2::Util::Table::LineBreak'=> '1.302209',
22978             'Test2::Util::Term' => '1.302209',
22979             'Test2::Util::Times' => '1.302209',
22980             'Test2::Util::Trace' => '1.302209',
22981             'Test2::V0' => '1.302209',
22982             'Test2::Workflow' => '1.302209',
22983             'Test2::Workflow::BlockBase'=> '1.302209',
22984             'Test2::Workflow::Build'=> '1.302209',
22985             'Test2::Workflow::Runner'=> '1.302209',
22986             'Test2::Workflow::Task' => '1.302209',
22987             'Test2::Workflow::Task::Action'=> '1.302209',
22988             'Test2::Workflow::Task::Group'=> '1.302209',
22989             'Test::Builder' => '1.302209',
22990             'Test::Builder::Formatter'=> '1.302209',
22991             'Test::Builder::Module' => '1.302209',
22992             'Test::Builder::Tester' => '1.302209',
22993             'Test::Builder::Tester::Color'=> '1.302209',
22994             'Test::Builder::TodoDiag'=> '1.302209',
22995             'Test::More' => '1.302209',
22996             'Test::Simple' => '1.302209',
22997             'Test::Tester' => '1.302209',
22998             'Test::Tester::Capture' => '1.302209',
22999             'Test::Tester::CaptureRunner'=> '1.302209',
23000             'Test::Tester::Delegate'=> '1.302209',
23001             'Test::use::ok' => '1.302209',
23002             'Unicode::UCD' => '0.79',
23003             'feature' => '1.94',
23004             'ok' => '1.302209',
23005             'overload' => '1.40',
23006             'warnings' => '1.73',
23007             },
23008             removed => {
23009             }
23010             },
23011             5.041010 => {
23012             delta_from => 5.041009,
23013             changed => {
23014             'Archive::Tar' => '3.04',
23015             'Archive::Tar::Constant'=> '3.04',
23016             'Archive::Tar::File' => '3.04',
23017             'B::Op_private' => '5.041010',
23018             'Benchmark' => '1.27',
23019             'Config' => '5.04101',
23020             'ExtUtils::Command' => '7.72',
23021             'ExtUtils::Command::MM' => '7.72',
23022             'ExtUtils::Liblist' => '7.72',
23023             'ExtUtils::Liblist::Kid'=> '7.72',
23024             'ExtUtils::MM' => '7.72',
23025             'ExtUtils::MM_AIX' => '7.72',
23026             'ExtUtils::MM_Any' => '7.72',
23027             'ExtUtils::MM_BeOS' => '7.72',
23028             'ExtUtils::MM_Cygwin' => '7.72',
23029             'ExtUtils::MM_DOS' => '7.72',
23030             'ExtUtils::MM_Darwin' => '7.72',
23031             'ExtUtils::MM_MacOS' => '7.72',
23032             'ExtUtils::MM_NW5' => '7.72',
23033             'ExtUtils::MM_OS2' => '7.72',
23034             'ExtUtils::MM_OS390' => '7.72',
23035             'ExtUtils::MM_QNX' => '7.72',
23036             'ExtUtils::MM_UWIN' => '7.72',
23037             'ExtUtils::MM_Unix' => '7.72',
23038             'ExtUtils::MM_VMS' => '7.72',
23039             'ExtUtils::MM_VOS' => '7.72',
23040             'ExtUtils::MM_Win32' => '7.72',
23041             'ExtUtils::MM_Win95' => '7.72',
23042             'ExtUtils::MY' => '7.72',
23043             'ExtUtils::MakeMaker' => '7.72',
23044             'ExtUtils::MakeMaker::Config'=> '7.72',
23045             'ExtUtils::MakeMaker::Locale'=> '7.72',
23046             'ExtUtils::MakeMaker::version'=> '7.72',
23047             'ExtUtils::MakeMaker::version::regex'=> '7.72',
23048             'ExtUtils::Mkbootstrap' => '7.72',
23049             'ExtUtils::Mksymlists' => '7.72',
23050             'ExtUtils::testlib' => '7.72',
23051             'Math::BigFloat' => '2.004001',
23052             'Math::BigInt' => '2.004001',
23053             'Math::BigInt::Calc' => '2.004001',
23054             'Math::BigInt::FastCalc'=> '0.5019',
23055             'Math::BigInt::Lib' => '2.004001',
23056             'Math::BigRat' => '2.004001',
23057             'Module::CoreList' => '5.20250321',
23058             'Module::CoreList::Utils'=> '5.20250321',
23059             'Safe' => '2.47',
23060             'Search::Dict' => '1.08',
23061             'Storable' => '3.36',
23062             'VMS::Filespec' => '1.15',
23063             'XS::APItest' => '1.41',
23064             'builtin' => '0.018',
23065             'feature' => '1.95',
23066             'fields' => '2.27',
23067             'threads' => '2.43',
23068             'warnings' => '1.74',
23069             },
23070             removed => {
23071             }
23072             },
23073             5.038004 => {
23074             delta_from => 5.038003,
23075             changed => {
23076             'B::Op_private' => '5.038004',
23077             'Config' => '5.038004',
23078             'Module::CoreList' => '5.20250413_38',
23079             'Module::CoreList::Utils'=> '5.20250413_38',
23080             },
23081             removed => {
23082             }
23083             },
23084             5.040002 => {
23085             delta_from => 5.040001,
23086             changed => {
23087             'B::Op_private' => '5.040002',
23088             'Config' => '5.040002',
23089             'Module::CoreList' => '5.20250413_40',
23090             'Module::CoreList::Utils'=> '5.20250413_40',
23091             },
23092             removed => {
23093             }
23094             },
23095             5.041011 => {
23096             delta_from => 5.041010,
23097             changed => {
23098             'B::Op_private' => '5.041011',
23099             'Config' => '5.041011',
23100             'Cwd' => '3.94',
23101             'Data::Dumper' => '2.192',
23102             'ExtUtils::Command' => '7.74',
23103             'ExtUtils::Command::MM' => '7.74',
23104             'ExtUtils::Liblist' => '7.74',
23105             'ExtUtils::Liblist::Kid'=> '7.74',
23106             'ExtUtils::MM' => '7.74',
23107             'ExtUtils::MM_AIX' => '7.74',
23108             'ExtUtils::MM_Any' => '7.74',
23109             'ExtUtils::MM_BeOS' => '7.74',
23110             'ExtUtils::MM_Cygwin' => '7.74',
23111             'ExtUtils::MM_DOS' => '7.74',
23112             'ExtUtils::MM_Darwin' => '7.74',
23113             'ExtUtils::MM_MacOS' => '7.74',
23114             'ExtUtils::MM_NW5' => '7.74',
23115             'ExtUtils::MM_OS2' => '7.74',
23116             'ExtUtils::MM_OS390' => '7.74',
23117             'ExtUtils::MM_QNX' => '7.74',
23118             'ExtUtils::MM_UWIN' => '7.74',
23119             'ExtUtils::MM_Unix' => '7.74',
23120             'ExtUtils::MM_VMS' => '7.74',
23121             'ExtUtils::MM_VOS' => '7.74',
23122             'ExtUtils::MM_Win32' => '7.74',
23123             'ExtUtils::MM_Win95' => '7.74',
23124             'ExtUtils::MY' => '7.74',
23125             'ExtUtils::MakeMaker' => '7.74',
23126             'ExtUtils::MakeMaker::Config'=> '7.74',
23127             'ExtUtils::MakeMaker::Locale'=> '7.74',
23128             'ExtUtils::MakeMaker::version'=> '7.74',
23129             'ExtUtils::MakeMaker::version::regex'=> '7.74',
23130             'ExtUtils::Mkbootstrap' => '7.74',
23131             'ExtUtils::Mksymlists' => '7.74',
23132             'ExtUtils::testlib' => '7.74',
23133             'Fcntl' => '1.20',
23134             'File::Spec' => '3.94',
23135             'File::Spec::AmigaOS' => '3.94',
23136             'File::Spec::Cygwin' => '3.94',
23137             'File::Spec::Epoc' => '3.94',
23138             'File::Spec::Functions' => '3.94',
23139             'File::Spec::Mac' => '3.94',
23140             'File::Spec::OS2' => '3.94',
23141             'File::Spec::Unix' => '3.94',
23142             'File::Spec::VMS' => '3.94',
23143             'File::Spec::Win32' => '3.94',
23144             'Math::BigFloat' => '2.005002',
23145             'Math::BigInt' => '2.005002',
23146             'Math::BigInt::Calc' => '2.005002',
23147             'Math::BigInt::FastCalc'=> '0.5020',
23148             'Math::BigInt::Lib' => '2.005002',
23149             'Math::BigRat' => '2.005002',
23150             'Module::CoreList' => '5.20250420',
23151             'Module::CoreList::Utils'=> '5.20250420',
23152             'Pod::Usage' => '2.05',
23153             'Scalar::List::Utils' => '1.69',
23154             'Storable' => '3.37',
23155             'Test2' => '1.302210',
23156             'Test2::API' => '1.302210',
23157             'Test2::API::Breakage' => '1.302210',
23158             'Test2::API::Context' => '1.302210',
23159             'Test2::API::Instance' => '1.302210',
23160             'Test2::API::InterceptResult'=> '1.302210',
23161             'Test2::API::InterceptResult::Event'=> '1.302210',
23162             'Test2::API::InterceptResult::Facet'=> '1.302210',
23163             'Test2::API::InterceptResult::Hub'=> '1.302210',
23164             'Test2::API::InterceptResult::Squasher'=> '1.302210',
23165             'Test2::API::Stack' => '1.302210',
23166             'Test2::AsyncSubtest' => '1.302210',
23167             'Test2::AsyncSubtest::Event::Attach'=> '1.302210',
23168             'Test2::AsyncSubtest::Event::Detach'=> '1.302210',
23169             'Test2::AsyncSubtest::Formatter'=> '1.302210',
23170             'Test2::AsyncSubtest::Hub'=> '1.302210',
23171             'Test2::Bundle' => '1.302210',
23172             'Test2::Bundle::Extended'=> '1.302210',
23173             'Test2::Bundle::More' => '1.302210',
23174             'Test2::Bundle::Simple' => '1.302210',
23175             'Test2::Compare' => '1.302210',
23176             'Test2::Compare::Array' => '1.302210',
23177             'Test2::Compare::Bag' => '1.302210',
23178             'Test2::Compare::Base' => '1.302210',
23179             'Test2::Compare::Bool' => '1.302210',
23180             'Test2::Compare::Custom'=> '1.302210',
23181             'Test2::Compare::DeepRef'=> '1.302210',
23182             'Test2::Compare::Delta' => '1.302210',
23183             'Test2::Compare::Event' => '1.302210',
23184             'Test2::Compare::EventMeta'=> '1.302210',
23185             'Test2::Compare::Float' => '1.302210',
23186             'Test2::Compare::Hash' => '1.302210',
23187             'Test2::Compare::Isa' => '1.302210',
23188             'Test2::Compare::Meta' => '1.302210',
23189             'Test2::Compare::Negatable'=> '1.302210',
23190             'Test2::Compare::Number'=> '1.302210',
23191             'Test2::Compare::Object'=> '1.302210',
23192             'Test2::Compare::OrderedSubset'=> '1.302210',
23193             'Test2::Compare::Pattern'=> '1.302210',
23194             'Test2::Compare::Ref' => '1.302210',
23195             'Test2::Compare::Regex' => '1.302210',
23196             'Test2::Compare::Scalar'=> '1.302210',
23197             'Test2::Compare::Set' => '1.302210',
23198             'Test2::Compare::String'=> '1.302210',
23199             'Test2::Compare::Undef' => '1.302210',
23200             'Test2::Compare::Wildcard'=> '1.302210',
23201             'Test2::Env' => '1.302210',
23202             'Test2::Event' => '1.302210',
23203             'Test2::Event::Bail' => '1.302210',
23204             'Test2::Event::Diag' => '1.302210',
23205             'Test2::Event::Encoding'=> '1.302210',
23206             'Test2::Event::Exception'=> '1.302210',
23207             'Test2::Event::Fail' => '1.302210',
23208             'Test2::Event::Generic' => '1.302210',
23209             'Test2::Event::Note' => '1.302210',
23210             'Test2::Event::Ok' => '1.302210',
23211             'Test2::Event::Pass' => '1.302210',
23212             'Test2::Event::Plan' => '1.302210',
23213             'Test2::Event::Skip' => '1.302210',
23214             'Test2::Event::Subtest' => '1.302210',
23215             'Test2::Event::TAP::Version'=> '1.302210',
23216             'Test2::Event::V2' => '1.302210',
23217             'Test2::Event::Waiting' => '1.302210',
23218             'Test2::EventFacet' => '1.302210',
23219             'Test2::EventFacet::About'=> '1.302210',
23220             'Test2::EventFacet::Amnesty'=> '1.302210',
23221             'Test2::EventFacet::Assert'=> '1.302210',
23222             'Test2::EventFacet::Control'=> '1.302210',
23223             'Test2::EventFacet::Error'=> '1.302210',
23224             'Test2::EventFacet::Hub'=> '1.302210',
23225             'Test2::EventFacet::Info'=> '1.302210',
23226             'Test2::EventFacet::Info::Table'=> '1.302210',
23227             'Test2::EventFacet::Meta'=> '1.302210',
23228             'Test2::EventFacet::Parent'=> '1.302210',
23229             'Test2::EventFacet::Plan'=> '1.302210',
23230             'Test2::EventFacet::Render'=> '1.302210',
23231             'Test2::EventFacet::Trace'=> '1.302210',
23232             'Test2::Formatter' => '1.302210',
23233             'Test2::Formatter::TAP' => '1.302210',
23234             'Test2::Hub' => '1.302210',
23235             'Test2::Hub::Interceptor'=> '1.302210',
23236             'Test2::Hub::Interceptor::Terminator'=> '1.302210',
23237             'Test2::Hub::Subtest' => '1.302210',
23238             'Test2::IPC' => '1.302210',
23239             'Test2::IPC::Driver' => '1.302210',
23240             'Test2::IPC::Driver::Files'=> '1.302210',
23241             'Test2::Manual' => '1.302210',
23242             'Test2::Manual::Anatomy'=> '1.302210',
23243             'Test2::Manual::Anatomy::API'=> '1.302210',
23244             'Test2::Manual::Anatomy::Context'=> '1.302210',
23245             'Test2::Manual::Anatomy::EndToEnd'=> '1.302210',
23246             'Test2::Manual::Anatomy::Event'=> '1.302210',
23247             'Test2::Manual::Anatomy::Hubs'=> '1.302210',
23248             'Test2::Manual::Anatomy::IPC'=> '1.302210',
23249             'Test2::Manual::Anatomy::Utilities'=> '1.302210',
23250             'Test2::Manual::Concurrency'=> '1.302210',
23251             'Test2::Manual::Contributing'=> '1.302210',
23252             'Test2::Manual::Testing'=> '1.302210',
23253             'Test2::Manual::Testing::Introduction'=> '1.302210',
23254             'Test2::Manual::Testing::Migrating'=> '1.302210',
23255             'Test2::Manual::Testing::Planning'=> '1.302210',
23256             'Test2::Manual::Testing::Todo'=> '1.302210',
23257             'Test2::Manual::Tooling'=> '1.302210',
23258             'Test2::Manual::Tooling::FirstTool'=> '1.302210',
23259             'Test2::Manual::Tooling::Formatter'=> '1.302210',
23260             'Test2::Manual::Tooling::Nesting'=> '1.302210',
23261             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302210',
23262             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302210',
23263             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302210',
23264             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302210',
23265             'Test2::Manual::Tooling::Subtest'=> '1.302210',
23266             'Test2::Manual::Tooling::TestBuilder'=> '1.302210',
23267             'Test2::Manual::Tooling::Testing'=> '1.302210',
23268             'Test2::Mock' => '1.302210',
23269             'Test2::Plugin' => '1.302210',
23270             'Test2::Plugin::BailOnFail'=> '1.302210',
23271             'Test2::Plugin::DieOnFail'=> '1.302210',
23272             'Test2::Plugin::ExitSummary'=> '1.302210',
23273             'Test2::Plugin::SRand' => '1.302210',
23274             'Test2::Plugin::Times' => '1.302210',
23275             'Test2::Plugin::UTF8' => '1.302210',
23276             'Test2::Require' => '1.302210',
23277             'Test2::Require::AuthorTesting'=> '1.302210',
23278             'Test2::Require::AutomatedTesting'=> '1.302210',
23279             'Test2::Require::EnvVar'=> '1.302210',
23280             'Test2::Require::ExtendedTesting'=> '1.302210',
23281             'Test2::Require::Fork' => '1.302210',
23282             'Test2::Require::Module'=> '1.302210',
23283             'Test2::Require::NonInteractiveTesting'=> '1.302210',
23284             'Test2::Require::Perl' => '1.302210',
23285             'Test2::Require::RealFork'=> '1.302210',
23286             'Test2::Require::ReleaseTesting'=> '1.302210',
23287             'Test2::Require::Threads'=> '1.302210',
23288             'Test2::Suite' => '1.302210',
23289             'Test2::Todo' => '1.302210',
23290             'Test2::Tools' => '1.302210',
23291             'Test2::Tools::AsyncSubtest'=> '1.302210',
23292             'Test2::Tools::Basic' => '1.302210',
23293             'Test2::Tools::Class' => '1.302210',
23294             'Test2::Tools::ClassicCompare'=> '1.302210',
23295             'Test2::Tools::Compare' => '1.302210',
23296             'Test2::Tools::Defer' => '1.302210',
23297             'Test2::Tools::Encoding'=> '1.302210',
23298             'Test2::Tools::Event' => '1.302210',
23299             'Test2::Tools::Exception'=> '1.302210',
23300             'Test2::Tools::Exports' => '1.302210',
23301             'Test2::Tools::GenTemp' => '1.302210',
23302             'Test2::Tools::Grab' => '1.302210',
23303             'Test2::Tools::Mock' => '1.302210',
23304             'Test2::Tools::Ref' => '1.302210',
23305             'Test2::Tools::Refcount'=> '1.302210',
23306             'Test2::Tools::Spec' => '1.302210',
23307             'Test2::Tools::Subtest' => '1.302210',
23308             'Test2::Tools::Target' => '1.302210',
23309             'Test2::Tools::Tester' => '1.302210',
23310             'Test2::Tools::Tiny' => '1.302210',
23311             'Test2::Tools::Warnings'=> '1.302210',
23312             'Test2::Util' => '1.302210',
23313             'Test2::Util::ExternalMeta'=> '1.302210',
23314             'Test2::Util::Facets2Legacy'=> '1.302210',
23315             'Test2::Util::Grabber' => '1.302210',
23316             'Test2::Util::Guard' => '1.302210',
23317             'Test2::Util::HashBase' => '1.302210',
23318             'Test2::Util::Importer' => '1.302210',
23319             'Test2::Util::Ref' => '1.302210',
23320             'Test2::Util::Sig' => '1.302210',
23321             'Test2::Util::Stash' => '1.302210',
23322             'Test2::Util::Sub' => '1.302210',
23323             'Test2::Util::Table' => '1.302210',
23324             'Test2::Util::Table::Cell'=> '1.302210',
23325             'Test2::Util::Table::LineBreak'=> '1.302210',
23326             'Test2::Util::Term' => '1.302210',
23327             'Test2::Util::Times' => '1.302210',
23328             'Test2::Util::Trace' => '1.302210',
23329             'Test2::V0' => '1.302210',
23330             'Test2::Workflow' => '1.302210',
23331             'Test2::Workflow::BlockBase'=> '1.302210',
23332             'Test2::Workflow::Build'=> '1.302210',
23333             'Test2::Workflow::Runner'=> '1.302210',
23334             'Test2::Workflow::Task' => '1.302210',
23335             'Test2::Workflow::Task::Action'=> '1.302210',
23336             'Test2::Workflow::Task::Group'=> '1.302210',
23337             'Test::Builder' => '1.302210',
23338             'Test::Builder::Formatter'=> '1.302210',
23339             'Test::Builder::Module' => '1.302210',
23340             'Test::Builder::Tester' => '1.302210',
23341             'Test::Builder::Tester::Color'=> '1.302210',
23342             'Test::Builder::TodoDiag'=> '1.302210',
23343             'Test::More' => '1.302210',
23344             'Test::Simple' => '1.302210',
23345             'Test::Tester' => '1.302210',
23346             'Test::Tester::Capture' => '1.302210',
23347             'Test::Tester::CaptureRunner'=> '1.302210',
23348             'Test::Tester::Delegate'=> '1.302210',
23349             'Test::use::ok' => '1.302210',
23350             'Time::HiRes' => '1.9778',
23351             'Time::Piece' => '1.36',
23352             'Time::Seconds' => '1.36',
23353             'Unicode' => '16.0.0',
23354             'Unicode::UCD' => '0.80',
23355             'XS::APItest' => '1.42',
23356             'ok' => '1.302210',
23357             },
23358             removed => {
23359             }
23360             },
23361             5.041012 => {
23362             delta_from => 5.041011,
23363             changed => {
23364             'B::Op_private' => '5.041012',
23365             'Config' => '5.041012',
23366             },
23367             removed => {
23368             }
23369             },
23370             5.041013 => {
23371             delta_from => 5.041012,
23372             changed => {
23373             'B::Deparse' => '1.85',
23374             'B::Op_private' => '5.041013',
23375             'Config' => '5.041013',
23376             'ExtUtils::CBuilder' => '0.280241',
23377             'ExtUtils::CBuilder::Base'=> '0.280241',
23378             'ExtUtils::CBuilder::Platform::Unix'=> '0.280241',
23379             'ExtUtils::CBuilder::Platform::VMS'=> '0.280241',
23380             'ExtUtils::CBuilder::Platform::Windows'=> '0.280241',
23381             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280241',
23382             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280241',
23383             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280241',
23384             'ExtUtils::CBuilder::Platform::aix'=> '0.280241',
23385             'ExtUtils::CBuilder::Platform::android'=> '0.280241',
23386             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280241',
23387             'ExtUtils::CBuilder::Platform::darwin'=> '0.280241',
23388             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280241',
23389             'ExtUtils::CBuilder::Platform::os2'=> '0.280241',
23390             'ExtUtils::Command' => '7.76',
23391             'ExtUtils::Command::MM' => '7.76',
23392             'ExtUtils::Liblist' => '7.76',
23393             'ExtUtils::Liblist::Kid'=> '7.76',
23394             'ExtUtils::MM' => '7.76',
23395             'ExtUtils::MM_AIX' => '7.76',
23396             'ExtUtils::MM_Any' => '7.76',
23397             'ExtUtils::MM_BeOS' => '7.76',
23398             'ExtUtils::MM_Cygwin' => '7.76',
23399             'ExtUtils::MM_DOS' => '7.76',
23400             'ExtUtils::MM_Darwin' => '7.76',
23401             'ExtUtils::MM_MacOS' => '7.76',
23402             'ExtUtils::MM_NW5' => '7.76',
23403             'ExtUtils::MM_OS2' => '7.76',
23404             'ExtUtils::MM_OS390' => '7.76',
23405             'ExtUtils::MM_QNX' => '7.76',
23406             'ExtUtils::MM_UWIN' => '7.76',
23407             'ExtUtils::MM_Unix' => '7.76',
23408             'ExtUtils::MM_VMS' => '7.76',
23409             'ExtUtils::MM_VOS' => '7.76',
23410             'ExtUtils::MM_Win32' => '7.76',
23411             'ExtUtils::MM_Win95' => '7.76',
23412             'ExtUtils::MY' => '7.76',
23413             'ExtUtils::MakeMaker' => '7.76',
23414             'ExtUtils::MakeMaker::Config'=> '7.76',
23415             'ExtUtils::MakeMaker::Locale'=> '7.76',
23416             'ExtUtils::MakeMaker::version'=> '7.76',
23417             'ExtUtils::MakeMaker::version::regex'=> '7.76',
23418             'ExtUtils::Mkbootstrap' => '7.76',
23419             'ExtUtils::Mksymlists' => '7.76',
23420             'ExtUtils::testlib' => '7.76',
23421             'Module::CoreList' => '5.20250528',
23422             'Module::CoreList::Utils'=> '5.20250528',
23423             'SelfLoader' => '1.28',
23424             'Thread' => '3.06',
23425             'Tie::File' => '1.10',
23426             'Unicode::UCD' => '0.81',
23427             'builtin' => '0.019',
23428             'experimental' => '0.035',
23429             'feature' => '1.96',
23430             're' => '0.48',
23431             'stable' => '0.035',
23432             'strict' => '1.14',
23433             },
23434             removed => {
23435             }
23436             },
23437             5.042000 => {
23438             delta_from => 5.041013,
23439             changed => {
23440             'B::Op_private' => '5.042000',
23441             'Config' => '5.042',
23442             'ExtUtils::CBuilder' => '0.280242',
23443             'ExtUtils::CBuilder::Base'=> '0.280242',
23444             'ExtUtils::CBuilder::Platform::Unix'=> '0.280242',
23445             'ExtUtils::CBuilder::Platform::VMS'=> '0.280242',
23446             'ExtUtils::CBuilder::Platform::Windows'=> '0.280242',
23447             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280242',
23448             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280242',
23449             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280242',
23450             'ExtUtils::CBuilder::Platform::aix'=> '0.280242',
23451             'ExtUtils::CBuilder::Platform::android'=> '0.280242',
23452             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280242',
23453             'ExtUtils::CBuilder::Platform::darwin'=> '0.280242',
23454             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280242',
23455             'ExtUtils::CBuilder::Platform::os2'=> '0.280242',
23456             'Module::CoreList' => '5.20250702',
23457             'Module::CoreList::Utils'=> '5.20250702',
23458             'XS::APItest' => '1.43',
23459             'feature' => '1.97',
23460             'perlfaq' => '5.20250619',
23461             },
23462             removed => {
23463             }
23464             },
23465              
23466             5.043000 => {
23467             delta_from => 5.042000,
23468             changed => {
23469             'B::Op_private' => '5.043000',
23470             'Config' => '5.043',
23471             'Math::BigFloat' => '2.005003',
23472             'Math::BigInt' => '2.005003',
23473             'Math::BigInt::Calc' => '2.005003',
23474             'Math::BigInt::Lib' => '2.005003',
23475             'Math::BigRat' => '2.005003',
23476             'Module::CoreList' => '5.20250703',
23477             'Module::CoreList::Utils'=> '5.20250703',
23478             'feature' => '1.98',
23479             },
23480             removed => {
23481             }
23482             },
23483             5.043001 => {
23484             delta_from => 5.043,
23485             changed => {
23486             'App::Prove' => '3.52',
23487             'App::Prove::State' => '3.52',
23488             'App::Prove::State::Result'=> '3.52',
23489             'App::Prove::State::Result::Test'=> '3.52',
23490             'B::Op_private' => '5.043001',
23491             'Config' => '5.043001',
23492             'ExtUtils::ParseXS' => '3.58',
23493             'ExtUtils::ParseXS::Constants'=> '3.58',
23494             'ExtUtils::ParseXS::CountLines'=> '3.58',
23495             'ExtUtils::ParseXS::Eval'=> '3.58',
23496             'ExtUtils::ParseXS::Node'=> '3.58',
23497             'ExtUtils::ParseXS::Utilities'=> '3.58',
23498             'ExtUtils::Typemaps' => '3.58',
23499             'ExtUtils::Typemaps::Cmd'=> '3.58',
23500             'ExtUtils::Typemaps::InputMap'=> '3.58',
23501             'ExtUtils::Typemaps::OutputMap'=> '3.58',
23502             'ExtUtils::Typemaps::Type'=> '3.58',
23503             'File::Fetch' => '1.08',
23504             'Module::CoreList' => '5.20250720',
23505             'Module::CoreList::Utils'=> '5.20250720',
23506             'PerlIO::via' => '0.20',
23507             'Pod::Simple' => '3.47',
23508             'Pod::Simple::BlackBox' => '3.47',
23509             'Pod::Simple::Checker' => '3.47',
23510             'Pod::Simple::Debug' => '3.47',
23511             'Pod::Simple::DumpAsText'=> '3.47',
23512             'Pod::Simple::DumpAsXML'=> '3.47',
23513             'Pod::Simple::HTML' => '3.47',
23514             'Pod::Simple::HTMLBatch'=> '3.47',
23515             'Pod::Simple::LinkSection'=> '3.47',
23516             'Pod::Simple::Methody' => '3.47',
23517             'Pod::Simple::Progress' => '3.47',
23518             'Pod::Simple::PullParser'=> '3.47',
23519             'Pod::Simple::PullParserEndToken'=> '3.47',
23520             'Pod::Simple::PullParserStartToken'=> '3.47',
23521             'Pod::Simple::PullParserTextToken'=> '3.47',
23522             'Pod::Simple::PullParserToken'=> '3.47',
23523             'Pod::Simple::RTF' => '3.47',
23524             'Pod::Simple::Search' => '3.47',
23525             'Pod::Simple::SimpleTree'=> '3.47',
23526             'Pod::Simple::Text' => '3.47',
23527             'Pod::Simple::TextContent'=> '3.47',
23528             'Pod::Simple::TiedOutFH'=> '3.47',
23529             'Pod::Simple::Transcode'=> '3.47',
23530             'Pod::Simple::TranscodeDumb'=> '3.47',
23531             'Pod::Simple::TranscodeSmart'=> '3.47',
23532             'Pod::Simple::XHTML' => '3.47',
23533             'Pod::Simple::XMLOutStream'=> '3.47',
23534             'Socket' => '2.040',
23535             'TAP::Base' => '3.52',
23536             'TAP::Formatter::Base' => '3.52',
23537             'TAP::Formatter::Color' => '3.52',
23538             'TAP::Formatter::Console'=> '3.52',
23539             'TAP::Formatter::Console::ParallelSession'=> '3.52',
23540             'TAP::Formatter::Console::Session'=> '3.52',
23541             'TAP::Formatter::File' => '3.52',
23542             'TAP::Formatter::File::Session'=> '3.52',
23543             'TAP::Formatter::Session'=> '3.52',
23544             'TAP::Harness' => '3.52',
23545             'TAP::Harness::Env' => '3.52',
23546             'TAP::Object' => '3.52',
23547             'TAP::Parser' => '3.52',
23548             'TAP::Parser::Aggregator'=> '3.52',
23549             'TAP::Parser::Grammar' => '3.52',
23550             'TAP::Parser::Iterator' => '3.52',
23551             'TAP::Parser::Iterator::Array'=> '3.52',
23552             'TAP::Parser::Iterator::Process'=> '3.52',
23553             'TAP::Parser::Iterator::Stream'=> '3.52',
23554             'TAP::Parser::IteratorFactory'=> '3.52',
23555             'TAP::Parser::Multiplexer'=> '3.52',
23556             'TAP::Parser::Result' => '3.52',
23557             'TAP::Parser::Result::Bailout'=> '3.52',
23558             'TAP::Parser::Result::Comment'=> '3.52',
23559             'TAP::Parser::Result::Plan'=> '3.52',
23560             'TAP::Parser::Result::Pragma'=> '3.52',
23561             'TAP::Parser::Result::Test'=> '3.52',
23562             'TAP::Parser::Result::Unknown'=> '3.52',
23563             'TAP::Parser::Result::Version'=> '3.52',
23564             'TAP::Parser::Result::YAML'=> '3.52',
23565             'TAP::Parser::ResultFactory'=> '3.52',
23566             'TAP::Parser::Scheduler'=> '3.52',
23567             'TAP::Parser::Scheduler::Job'=> '3.52',
23568             'TAP::Parser::Scheduler::Spinner'=> '3.52',
23569             'TAP::Parser::Source' => '3.52',
23570             'TAP::Parser::SourceHandler'=> '3.52',
23571             'TAP::Parser::SourceHandler::Executable'=> '3.52',
23572             'TAP::Parser::SourceHandler::File'=> '3.52',
23573             'TAP::Parser::SourceHandler::Handle'=> '3.52',
23574             'TAP::Parser::SourceHandler::Perl'=> '3.52',
23575             'TAP::Parser::SourceHandler::RawTAP'=> '3.52',
23576             'TAP::Parser::YAMLish::Reader'=> '3.52',
23577             'TAP::Parser::YAMLish::Writer'=> '3.52',
23578             'Test2' => '1.302214',
23579             'Test2::API' => '1.302214',
23580             'Test2::API::Breakage' => '1.302214',
23581             'Test2::API::Context' => '1.302214',
23582             'Test2::API::Instance' => '1.302214',
23583             'Test2::API::InterceptResult'=> '1.302214',
23584             'Test2::API::InterceptResult::Event'=> '1.302214',
23585             'Test2::API::InterceptResult::Facet'=> '1.302214',
23586             'Test2::API::InterceptResult::Hub'=> '1.302214',
23587             'Test2::API::InterceptResult::Squasher'=> '1.302214',
23588             'Test2::API::Stack' => '1.302214',
23589             'Test2::AsyncSubtest' => '1.302214',
23590             'Test2::AsyncSubtest::Event::Attach'=> '1.302214',
23591             'Test2::AsyncSubtest::Event::Detach'=> '1.302214',
23592             'Test2::AsyncSubtest::Formatter'=> '1.302214',
23593             'Test2::AsyncSubtest::Hub'=> '1.302214',
23594             'Test2::Bundle' => '1.302214',
23595             'Test2::Bundle::Extended'=> '1.302214',
23596             'Test2::Bundle::More' => '1.302214',
23597             'Test2::Bundle::Simple' => '1.302214',
23598             'Test2::Compare' => '1.302214',
23599             'Test2::Compare::Array' => '1.302214',
23600             'Test2::Compare::Bag' => '1.302214',
23601             'Test2::Compare::Base' => '1.302214',
23602             'Test2::Compare::Bool' => '1.302214',
23603             'Test2::Compare::Custom'=> '1.302214',
23604             'Test2::Compare::DeepRef'=> '1.302214',
23605             'Test2::Compare::Delta' => '1.302214',
23606             'Test2::Compare::Event' => '1.302214',
23607             'Test2::Compare::EventMeta'=> '1.302214',
23608             'Test2::Compare::Float' => '1.302214',
23609             'Test2::Compare::Hash' => '1.302214',
23610             'Test2::Compare::Isa' => '1.302214',
23611             'Test2::Compare::Meta' => '1.302214',
23612             'Test2::Compare::Negatable'=> '1.302214',
23613             'Test2::Compare::Number'=> '1.302214',
23614             'Test2::Compare::Object'=> '1.302214',
23615             'Test2::Compare::OrderedSubset'=> '1.302214',
23616             'Test2::Compare::Pattern'=> '1.302214',
23617             'Test2::Compare::Ref' => '1.302214',
23618             'Test2::Compare::Regex' => '1.302214',
23619             'Test2::Compare::Scalar'=> '1.302214',
23620             'Test2::Compare::Set' => '1.302214',
23621             'Test2::Compare::String'=> '1.302214',
23622             'Test2::Compare::Undef' => '1.302214',
23623             'Test2::Compare::Wildcard'=> '1.302214',
23624             'Test2::Env' => '1.302214',
23625             'Test2::Event' => '1.302214',
23626             'Test2::Event::Bail' => '1.302214',
23627             'Test2::Event::Diag' => '1.302214',
23628             'Test2::Event::Encoding'=> '1.302214',
23629             'Test2::Event::Exception'=> '1.302214',
23630             'Test2::Event::Fail' => '1.302214',
23631             'Test2::Event::Generic' => '1.302214',
23632             'Test2::Event::Note' => '1.302214',
23633             'Test2::Event::Ok' => '1.302214',
23634             'Test2::Event::Pass' => '1.302214',
23635             'Test2::Event::Plan' => '1.302214',
23636             'Test2::Event::Skip' => '1.302214',
23637             'Test2::Event::Subtest' => '1.302214',
23638             'Test2::Event::TAP::Version'=> '1.302214',
23639             'Test2::Event::V2' => '1.302214',
23640             'Test2::Event::Waiting' => '1.302214',
23641             'Test2::EventFacet' => '1.302214',
23642             'Test2::EventFacet::About'=> '1.302214',
23643             'Test2::EventFacet::Amnesty'=> '1.302214',
23644             'Test2::EventFacet::Assert'=> '1.302214',
23645             'Test2::EventFacet::Control'=> '1.302214',
23646             'Test2::EventFacet::Error'=> '1.302214',
23647             'Test2::EventFacet::Hub'=> '1.302214',
23648             'Test2::EventFacet::Info'=> '1.302214',
23649             'Test2::EventFacet::Info::Table'=> '1.302214',
23650             'Test2::EventFacet::Meta'=> '1.302214',
23651             'Test2::EventFacet::Parent'=> '1.302214',
23652             'Test2::EventFacet::Plan'=> '1.302214',
23653             'Test2::EventFacet::Render'=> '1.302214',
23654             'Test2::EventFacet::Trace'=> '1.302214',
23655             'Test2::Formatter' => '1.302214',
23656             'Test2::Formatter::TAP' => '1.302214',
23657             'Test2::Hub' => '1.302214',
23658             'Test2::Hub::Interceptor'=> '1.302214',
23659             'Test2::Hub::Interceptor::Terminator'=> '1.302214',
23660             'Test2::Hub::Subtest' => '1.302214',
23661             'Test2::IPC' => '1.302214',
23662             'Test2::IPC::Driver' => '1.302214',
23663             'Test2::IPC::Driver::Files'=> '1.302214',
23664             'Test2::Manual' => '1.302214',
23665             'Test2::Manual::Anatomy'=> '1.302214',
23666             'Test2::Manual::Anatomy::API'=> '1.302214',
23667             'Test2::Manual::Anatomy::Context'=> '1.302214',
23668             'Test2::Manual::Anatomy::EndToEnd'=> '1.302214',
23669             'Test2::Manual::Anatomy::Event'=> '1.302214',
23670             'Test2::Manual::Anatomy::Hubs'=> '1.302214',
23671             'Test2::Manual::Anatomy::IPC'=> '1.302214',
23672             'Test2::Manual::Anatomy::Utilities'=> '1.302214',
23673             'Test2::Manual::Concurrency'=> '1.302214',
23674             'Test2::Manual::Contributing'=> '1.302214',
23675             'Test2::Manual::Testing'=> '1.302214',
23676             'Test2::Manual::Testing::Introduction'=> '1.302214',
23677             'Test2::Manual::Testing::Migrating'=> '1.302214',
23678             'Test2::Manual::Testing::Planning'=> '1.302214',
23679             'Test2::Manual::Testing::Todo'=> '1.302214',
23680             'Test2::Manual::Tooling'=> '1.302214',
23681             'Test2::Manual::Tooling::FirstTool'=> '1.302214',
23682             'Test2::Manual::Tooling::Formatter'=> '1.302214',
23683             'Test2::Manual::Tooling::Nesting'=> '1.302214',
23684             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302214',
23685             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302214',
23686             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302214',
23687             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302214',
23688             'Test2::Manual::Tooling::Subtest'=> '1.302214',
23689             'Test2::Manual::Tooling::TestBuilder'=> '1.302214',
23690             'Test2::Manual::Tooling::Testing'=> '1.302214',
23691             'Test2::Mock' => '1.302214',
23692             'Test2::Plugin' => '1.302214',
23693             'Test2::Plugin::BailOnFail'=> '1.302214',
23694             'Test2::Plugin::DieOnFail'=> '1.302214',
23695             'Test2::Plugin::ExitSummary'=> '1.302214',
23696             'Test2::Plugin::SRand' => '1.302214',
23697             'Test2::Plugin::Times' => '1.302214',
23698             'Test2::Plugin::UTF8' => '1.302214',
23699             'Test2::Require' => '1.302214',
23700             'Test2::Require::AuthorTesting'=> '1.302214',
23701             'Test2::Require::AutomatedTesting'=> '1.302214',
23702             'Test2::Require::EnvVar'=> '1.302214',
23703             'Test2::Require::ExtendedTesting'=> '1.302214',
23704             'Test2::Require::Fork' => '1.302214',
23705             'Test2::Require::Module'=> '1.302214',
23706             'Test2::Require::NonInteractiveTesting'=> '1.302214',
23707             'Test2::Require::Perl' => '1.302214',
23708             'Test2::Require::RealFork'=> '1.302214',
23709             'Test2::Require::ReleaseTesting'=> '1.302214',
23710             'Test2::Require::Threads'=> '1.302214',
23711             'Test2::Suite' => '1.302214',
23712             'Test2::Todo' => '1.302214',
23713             'Test2::Tools' => '1.302214',
23714             'Test2::Tools::AsyncSubtest'=> '1.302214',
23715             'Test2::Tools::Basic' => '1.302214',
23716             'Test2::Tools::Class' => '1.302214',
23717             'Test2::Tools::ClassicCompare'=> '1.302214',
23718             'Test2::Tools::Compare' => '1.302214',
23719             'Test2::Tools::Defer' => '1.302214',
23720             'Test2::Tools::Encoding'=> '1.302214',
23721             'Test2::Tools::Event' => '1.302214',
23722             'Test2::Tools::Exception'=> '1.302214',
23723             'Test2::Tools::Exports' => '1.302214',
23724             'Test2::Tools::GenTemp' => '1.302214',
23725             'Test2::Tools::Grab' => '1.302214',
23726             'Test2::Tools::Mock' => '1.302214',
23727             'Test2::Tools::Ref' => '1.302214',
23728             'Test2::Tools::Refcount'=> '1.302214',
23729             'Test2::Tools::Spec' => '1.302214',
23730             'Test2::Tools::Subtest' => '1.302214',
23731             'Test2::Tools::Target' => '1.302214',
23732             'Test2::Tools::Tester' => '1.302214',
23733             'Test2::Tools::Tiny' => '1.302214',
23734             'Test2::Tools::Warnings'=> '1.302214',
23735             'Test2::Util' => '1.302214',
23736             'Test2::Util::ExternalMeta'=> '1.302214',
23737             'Test2::Util::Facets2Legacy'=> '1.302214',
23738             'Test2::Util::Grabber' => '1.302214',
23739             'Test2::Util::Guard' => '1.302214',
23740             'Test2::Util::HashBase' => '1.302214',
23741             'Test2::Util::Importer' => '1.302214',
23742             'Test2::Util::Ref' => '1.302214',
23743             'Test2::Util::Sig' => '1.302214',
23744             'Test2::Util::Stash' => '1.302214',
23745             'Test2::Util::Sub' => '1.302214',
23746             'Test2::Util::Table' => '1.302214',
23747             'Test2::Util::Table::Cell'=> '1.302214',
23748             'Test2::Util::Table::LineBreak'=> '1.302214',
23749             'Test2::Util::Term' => '1.302214',
23750             'Test2::Util::Times' => '1.302214',
23751             'Test2::Util::Trace' => '1.302214',
23752             'Test2::V0' => '1.302214',
23753             'Test2::Workflow' => '1.302214',
23754             'Test2::Workflow::BlockBase'=> '1.302214',
23755             'Test2::Workflow::Build'=> '1.302214',
23756             'Test2::Workflow::Runner'=> '1.302214',
23757             'Test2::Workflow::Task' => '1.302214',
23758             'Test2::Workflow::Task::Action'=> '1.302214',
23759             'Test2::Workflow::Task::Group'=> '1.302214',
23760             'Test::Builder' => '1.302214',
23761             'Test::Builder::Formatter'=> '1.302214',
23762             'Test::Builder::Module' => '1.302214',
23763             'Test::Builder::Tester' => '1.302214',
23764             'Test::Builder::Tester::Color'=> '1.302214',
23765             'Test::Builder::TodoDiag'=> '1.302214',
23766             'Test::Harness' => '3.52',
23767             'Test::More' => '1.302214',
23768             'Test::Simple' => '1.302214',
23769             'Test::Tester' => '1.302214',
23770             'Test::Tester::Capture' => '1.302214',
23771             'Test::Tester::CaptureRunner'=> '1.302214',
23772             'Test::Tester::Delegate'=> '1.302214',
23773             'Test::use::ok' => '1.302214',
23774             'Unicode::UCD' => '0.82',
23775             'experimental' => '0.036',
23776             'ok' => '1.302214',
23777             'stable' => '0.036',
23778             },
23779             removed => {
23780             }
23781             },
23782             5.038005 => {
23783             delta_from => 5.038004,
23784             changed => {
23785             'B::Op_private' => '5.038005',
23786             'Config' => '5.038005',
23787             'Module::CoreList' => '5.20250803_38',
23788             'Module::CoreList::Utils'=> '5.20250803_38',
23789             },
23790             removed => {
23791             }
23792             },
23793             5.040003 => {
23794             delta_from => 5.040002,
23795             changed => {
23796             'B::Op_private' => '5.040003',
23797             'Config' => '5.040003',
23798             'Module::CoreList' => '5.20250803_40',
23799             'Module::CoreList::Utils'=> '5.20250803_40',
23800             },
23801             removed => {
23802             }
23803             },
23804             5.043002 => {
23805             delta_from => 5.043001,
23806             changed => {
23807             'B::Deparse' => '1.86',
23808             'B::Op_private' => '5.043002',
23809             'Config' => '5.043002',
23810             'ExtUtils::Miniperl' => '1.15',
23811             'ExtUtils::ParseXS' => '3.59',
23812             'ExtUtils::ParseXS::Constants'=> '3.59',
23813             'ExtUtils::ParseXS::CountLines'=> '3.59',
23814             'ExtUtils::ParseXS::Eval'=> '3.59',
23815             'ExtUtils::ParseXS::Node'=> '3.59',
23816             'ExtUtils::ParseXS::Utilities'=> '3.59',
23817             'ExtUtils::Typemaps' => '3.59',
23818             'ExtUtils::Typemaps::Cmd'=> '3.59',
23819             'ExtUtils::Typemaps::InputMap'=> '3.59',
23820             'ExtUtils::Typemaps::OutputMap'=> '3.59',
23821             'ExtUtils::Typemaps::Type'=> '3.59',
23822             'File::Copy' => '2.42',
23823             'File::stat' => '1.15',
23824             'Filter::Simple' => '0.97',
23825             'List::Util' => '1.70',
23826             'List::Util::XS' => '1.70',
23827             'Module::CoreList' => '5.20250820',
23828             'Module::CoreList::Utils'=> '5.20250820',
23829             'POSIX' => '2.24',
23830             'Scalar::List::Utils' => '1.70',
23831             'Scalar::Util' => '1.70',
23832             'Storable' => '3.38',
23833             'Sub::Util' => '1.70',
23834             'Text::Balanced' => '2.07',
23835             'Unicode::UCD' => '0.83',
23836             'XS::APItest' => '1.44',
23837             'feature' => '1.99',
23838             'mro' => '1.30',
23839             'threads::shared' => '1.71',
23840             },
23841             removed => {
23842             }
23843             },
23844             5.043003 => {
23845             delta_from => 5.043002,
23846             changed => {
23847             'B' => '1.90',
23848             'B::Concise' => '1.009',
23849             'B::Deparse' => '1.87',
23850             'B::Op_private' => '5.043003',
23851             'Config' => '5.043003',
23852             'ExtUtils::ParseXS' => '3.60',
23853             'ExtUtils::ParseXS::Constants'=> '3.60',
23854             'ExtUtils::ParseXS::CountLines'=> '3.60',
23855             'ExtUtils::ParseXS::Eval'=> '3.60',
23856             'ExtUtils::ParseXS::Node'=> '3.60',
23857             'ExtUtils::ParseXS::Utilities'=> '3.60',
23858             'ExtUtils::Typemaps' => '3.60',
23859             'ExtUtils::Typemaps::Cmd'=> '3.60',
23860             'ExtUtils::Typemaps::InputMap'=> '3.60',
23861             'ExtUtils::Typemaps::OutputMap'=> '3.60',
23862             'ExtUtils::Typemaps::Type'=> '3.60',
23863             'File::Copy' => '2.43',
23864             'File::Temp' => '0.2312',
23865             'Filter::Util::Call' => '1.65',
23866             'Module::CoreList' => '5.20250923',
23867             'Module::CoreList::Utils'=> '5.20250923',
23868             'Net::Ping' => '2.77',
23869             'Opcode' => '1.70',
23870             'PerlIO::via' => '0.21',
23871             'Storable' => '3.39',
23872             'Term::Table' => '0.025',
23873             'Term::Table::Cell' => '0.025',
23874             'Term::Table::CellStack'=> '0.025',
23875             'Term::Table::HashBase' => '0.025',
23876             'Term::Table::LineBreak'=> '0.025',
23877             'Term::Table::Spacer' => '0.025',
23878             'Term::Table::Util' => '0.025',
23879             'Time::HiRes' => '1.9779',
23880             'Time::Piece' => '1.3701',
23881             'Time::Seconds' => '1.3701',
23882             'Unicode' => '17.0.0',
23883             'XS::APItest' => '1.46',
23884             'overloading' => '0.03',
23885             'utf8' => '1.29',
23886             },
23887             removed => {
23888             }
23889             },
23890             5.043004 => {
23891             delta_from => 5.043003,
23892             changed => {
23893             'B::Deparse' => '1.88',
23894             'B::Op_private' => '5.043004',
23895             'Config' => '5.043004',
23896             'Module::CoreList' => '5.20251022',
23897             'Module::CoreList::Utils'=> '5.20251022',
23898             'SelectSaver' => '1.03',
23899             'Time::Piece' => '1.38',
23900             'Time::Seconds' => '1.38',
23901             'XS::APItest' => '1.47',
23902             'attributes' => '0.37',
23903             'feature' => '2.00',
23904             },
23905             removed => {
23906             }
23907             },
23908             5.043005 => {
23909             delta_from => 5.043004,
23910             changed => {
23911             'B::Op_private' => '5.043005',
23912             'Compress::Raw::Bzip2' => '2.214',
23913             'Compress::Raw::Zlib' => '2.214',
23914             'Compress::Zlib' => '2.214',
23915             'Config' => '5.043005',
23916             'Getopt::Std' => '1.15',
23917             'IO::Compress' => '2.214',
23918             'IO::Compress::Adapter::Bzip2'=> '2.214',
23919             'IO::Compress::Adapter::Deflate'=> '2.214',
23920             'IO::Compress::Adapter::Identity'=> '2.214',
23921             'IO::Compress::Base' => '2.214',
23922             'IO::Compress::Base::Common'=> '2.214',
23923             'IO::Compress::Bzip2' => '2.214',
23924             'IO::Compress::Deflate' => '2.214',
23925             'IO::Compress::Gzip' => '2.214',
23926             'IO::Compress::Gzip::Constants'=> '2.214',
23927             'IO::Compress::RawDeflate'=> '2.214',
23928             'IO::Compress::Zip' => '2.214',
23929             'IO::Compress::Zip::Constants'=> '2.214',
23930             'IO::Compress::Zlib::Constants'=> '2.214',
23931             'IO::Compress::Zlib::Extra'=> '2.214',
23932             'IO::Uncompress::Adapter::Bunzip2'=> '2.214',
23933             'IO::Uncompress::Adapter::Identity'=> '2.214',
23934             'IO::Uncompress::Adapter::Inflate'=> '2.214',
23935             'IO::Uncompress::AnyInflate'=> '2.214',
23936             'IO::Uncompress::AnyUncompress'=> '2.214',
23937             'IO::Uncompress::Base' => '2.214',
23938             'IO::Uncompress::Bunzip2'=> '2.214',
23939             'IO::Uncompress::Gunzip'=> '2.214',
23940             'IO::Uncompress::Inflate'=> '2.214',
23941             'IO::Uncompress::RawInflate'=> '2.214',
23942             'IO::Uncompress::Unzip' => '2.214',
23943             'Module::CoreList' => '5.20251120',
23944             'Module::CoreList::Utils'=> '5.20251120',
23945             'Term::Table' => '0.027',
23946             'Term::Table::Cell' => '0.027',
23947             'Term::Table::CellStack'=> '0.027',
23948             'Term::Table::HashBase' => '0.027',
23949             'Term::Table::LineBreak'=> '0.027',
23950             'Term::Table::Spacer' => '0.027',
23951             'Term::Table::Util' => '0.027',
23952             'Test2' => '1.302216',
23953             'Test2::API' => '1.302216',
23954             'Test2::API::Breakage' => '1.302216',
23955             'Test2::API::Context' => '1.302216',
23956             'Test2::API::Instance' => '1.302216',
23957             'Test2::API::InterceptResult'=> '1.302216',
23958             'Test2::API::InterceptResult::Event'=> '1.302216',
23959             'Test2::API::InterceptResult::Facet'=> '1.302216',
23960             'Test2::API::InterceptResult::Hub'=> '1.302216',
23961             'Test2::API::InterceptResult::Squasher'=> '1.302216',
23962             'Test2::API::Stack' => '1.302216',
23963             'Test2::AsyncSubtest' => '1.302216',
23964             'Test2::AsyncSubtest::Event::Attach'=> '1.302216',
23965             'Test2::AsyncSubtest::Event::Detach'=> '1.302216',
23966             'Test2::AsyncSubtest::Formatter'=> '1.302216',
23967             'Test2::AsyncSubtest::Hub'=> '1.302216',
23968             'Test2::Bundle' => '1.302216',
23969             'Test2::Bundle::Extended'=> '1.302216',
23970             'Test2::Bundle::More' => '1.302216',
23971             'Test2::Bundle::Simple' => '1.302216',
23972             'Test2::Compare' => '1.302216',
23973             'Test2::Compare::Array' => '1.302216',
23974             'Test2::Compare::Bag' => '1.302216',
23975             'Test2::Compare::Base' => '1.302216',
23976             'Test2::Compare::Bool' => '1.302216',
23977             'Test2::Compare::Custom'=> '1.302216',
23978             'Test2::Compare::DeepRef'=> '1.302216',
23979             'Test2::Compare::Delta' => '1.302216',
23980             'Test2::Compare::Event' => '1.302216',
23981             'Test2::Compare::EventMeta'=> '1.302216',
23982             'Test2::Compare::Float' => '1.302216',
23983             'Test2::Compare::Hash' => '1.302216',
23984             'Test2::Compare::Isa' => '1.302216',
23985             'Test2::Compare::Meta' => '1.302216',
23986             'Test2::Compare::Negatable'=> '1.302216',
23987             'Test2::Compare::Number'=> '1.302216',
23988             'Test2::Compare::Object'=> '1.302216',
23989             'Test2::Compare::OrderedSubset'=> '1.302216',
23990             'Test2::Compare::Pattern'=> '1.302216',
23991             'Test2::Compare::Ref' => '1.302216',
23992             'Test2::Compare::Regex' => '1.302216',
23993             'Test2::Compare::Scalar'=> '1.302216',
23994             'Test2::Compare::Set' => '1.302216',
23995             'Test2::Compare::String'=> '1.302216',
23996             'Test2::Compare::Undef' => '1.302216',
23997             'Test2::Compare::Wildcard'=> '1.302216',
23998             'Test2::Env' => '1.302216',
23999             'Test2::Event' => '1.302216',
24000             'Test2::Event::Bail' => '1.302216',
24001             'Test2::Event::Diag' => '1.302216',
24002             'Test2::Event::Encoding'=> '1.302216',
24003             'Test2::Event::Exception'=> '1.302216',
24004             'Test2::Event::Fail' => '1.302216',
24005             'Test2::Event::Generic' => '1.302216',
24006             'Test2::Event::Note' => '1.302216',
24007             'Test2::Event::Ok' => '1.302216',
24008             'Test2::Event::Pass' => '1.302216',
24009             'Test2::Event::Plan' => '1.302216',
24010             'Test2::Event::Skip' => '1.302216',
24011             'Test2::Event::Subtest' => '1.302216',
24012             'Test2::Event::TAP::Version'=> '1.302216',
24013             'Test2::Event::V2' => '1.302216',
24014             'Test2::Event::Waiting' => '1.302216',
24015             'Test2::EventFacet' => '1.302216',
24016             'Test2::EventFacet::About'=> '1.302216',
24017             'Test2::EventFacet::Amnesty'=> '1.302216',
24018             'Test2::EventFacet::Assert'=> '1.302216',
24019             'Test2::EventFacet::Control'=> '1.302216',
24020             'Test2::EventFacet::Error'=> '1.302216',
24021             'Test2::EventFacet::Hub'=> '1.302216',
24022             'Test2::EventFacet::Info'=> '1.302216',
24023             'Test2::EventFacet::Info::Table'=> '1.302216',
24024             'Test2::EventFacet::Meta'=> '1.302216',
24025             'Test2::EventFacet::Parent'=> '1.302216',
24026             'Test2::EventFacet::Plan'=> '1.302216',
24027             'Test2::EventFacet::Render'=> '1.302216',
24028             'Test2::EventFacet::Trace'=> '1.302216',
24029             'Test2::Formatter' => '1.302216',
24030             'Test2::Formatter::TAP' => '1.302216',
24031             'Test2::Hub' => '1.302216',
24032             'Test2::Hub::Interceptor'=> '1.302216',
24033             'Test2::Hub::Interceptor::Terminator'=> '1.302216',
24034             'Test2::Hub::Subtest' => '1.302216',
24035             'Test2::IPC' => '1.302216',
24036             'Test2::IPC::Driver' => '1.302216',
24037             'Test2::IPC::Driver::Files'=> '1.302216',
24038             'Test2::Manual' => '1.302216',
24039             'Test2::Manual::Anatomy'=> '1.302216',
24040             'Test2::Manual::Anatomy::API'=> '1.302216',
24041             'Test2::Manual::Anatomy::Context'=> '1.302216',
24042             'Test2::Manual::Anatomy::EndToEnd'=> '1.302216',
24043             'Test2::Manual::Anatomy::Event'=> '1.302216',
24044             'Test2::Manual::Anatomy::Hubs'=> '1.302216',
24045             'Test2::Manual::Anatomy::IPC'=> '1.302216',
24046             'Test2::Manual::Anatomy::Utilities'=> '1.302216',
24047             'Test2::Manual::Concurrency'=> '1.302216',
24048             'Test2::Manual::Contributing'=> '1.302216',
24049             'Test2::Manual::Testing'=> '1.302216',
24050             'Test2::Manual::Testing::Introduction'=> '1.302216',
24051             'Test2::Manual::Testing::Migrating'=> '1.302216',
24052             'Test2::Manual::Testing::Planning'=> '1.302216',
24053             'Test2::Manual::Testing::Todo'=> '1.302216',
24054             'Test2::Manual::Tooling'=> '1.302216',
24055             'Test2::Manual::Tooling::FirstTool'=> '1.302216',
24056             'Test2::Manual::Tooling::Formatter'=> '1.302216',
24057             'Test2::Manual::Tooling::Nesting'=> '1.302216',
24058             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302216',
24059             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302216',
24060             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302216',
24061             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302216',
24062             'Test2::Manual::Tooling::Subtest'=> '1.302216',
24063             'Test2::Manual::Tooling::TestBuilder'=> '1.302216',
24064             'Test2::Manual::Tooling::Testing'=> '1.302216',
24065             'Test2::Mock' => '1.302216',
24066             'Test2::Plugin' => '1.302216',
24067             'Test2::Plugin::BailOnFail'=> '1.302216',
24068             'Test2::Plugin::DieOnFail'=> '1.302216',
24069             'Test2::Plugin::ExitSummary'=> '1.302216',
24070             'Test2::Plugin::SRand' => '1.302216',
24071             'Test2::Plugin::Times' => '1.302216',
24072             'Test2::Plugin::UTF8' => '1.302216',
24073             'Test2::Require' => '1.302216',
24074             'Test2::Require::AuthorTesting'=> '1.302216',
24075             'Test2::Require::AutomatedTesting'=> '1.302216',
24076             'Test2::Require::EnvVar'=> '1.302216',
24077             'Test2::Require::ExtendedTesting'=> '1.302216',
24078             'Test2::Require::Fork' => '1.302216',
24079             'Test2::Require::Module'=> '1.302216',
24080             'Test2::Require::NonInteractiveTesting'=> '1.302216',
24081             'Test2::Require::Perl' => '1.302216',
24082             'Test2::Require::RealFork'=> '1.302216',
24083             'Test2::Require::ReleaseTesting'=> '1.302216',
24084             'Test2::Require::Threads'=> '1.302216',
24085             'Test2::Suite' => '1.302216',
24086             'Test2::Todo' => '1.302216',
24087             'Test2::Tools' => '1.302216',
24088             'Test2::Tools::AsyncSubtest'=> '1.302216',
24089             'Test2::Tools::Basic' => '1.302216',
24090             'Test2::Tools::Class' => '1.302216',
24091             'Test2::Tools::ClassicCompare'=> '1.302216',
24092             'Test2::Tools::Compare' => '1.302216',
24093             'Test2::Tools::Defer' => '1.302216',
24094             'Test2::Tools::Encoding'=> '1.302216',
24095             'Test2::Tools::Event' => '1.302216',
24096             'Test2::Tools::Exception'=> '1.302216',
24097             'Test2::Tools::Exports' => '1.302216',
24098             'Test2::Tools::GenTemp' => '1.302216',
24099             'Test2::Tools::Grab' => '1.302216',
24100             'Test2::Tools::Mock' => '1.302216',
24101             'Test2::Tools::Ref' => '1.302216',
24102             'Test2::Tools::Refcount'=> '1.302216',
24103             'Test2::Tools::Spec' => '1.302216',
24104             'Test2::Tools::Subtest' => '1.302216',
24105             'Test2::Tools::Target' => '1.302216',
24106             'Test2::Tools::Tester' => '1.302216',
24107             'Test2::Tools::Tiny' => '1.302216',
24108             'Test2::Tools::Warnings'=> '1.302216',
24109             'Test2::Util' => '1.302216',
24110             'Test2::Util::ExternalMeta'=> '1.302216',
24111             'Test2::Util::Facets2Legacy'=> '1.302216',
24112             'Test2::Util::Grabber' => '1.302216',
24113             'Test2::Util::Guard' => '1.302216',
24114             'Test2::Util::HashBase' => '1.302216',
24115             'Test2::Util::Importer' => '1.302216',
24116             'Test2::Util::Ref' => '1.302216',
24117             'Test2::Util::Sig' => '1.302216',
24118             'Test2::Util::Stash' => '1.302216',
24119             'Test2::Util::Sub' => '1.302216',
24120             'Test2::Util::Table' => '1.302216',
24121             'Test2::Util::Table::Cell'=> '1.302216',
24122             'Test2::Util::Table::LineBreak'=> '1.302216',
24123             'Test2::Util::Term' => '1.302216',
24124             'Test2::Util::Times' => '1.302216',
24125             'Test2::Util::Trace' => '1.302216',
24126             'Test2::V0' => '1.302216',
24127             'Test2::Workflow' => '1.302216',
24128             'Test2::Workflow::BlockBase'=> '1.302216',
24129             'Test2::Workflow::Build'=> '1.302216',
24130             'Test2::Workflow::Runner'=> '1.302216',
24131             'Test2::Workflow::Task' => '1.302216',
24132             'Test2::Workflow::Task::Action'=> '1.302216',
24133             'Test2::Workflow::Task::Group'=> '1.302216',
24134             'Test::Builder' => '1.302216',
24135             'Test::Builder::Formatter'=> '1.302216',
24136             'Test::Builder::Module' => '1.302216',
24137             'Test::Builder::Tester' => '1.302216',
24138             'Test::Builder::Tester::Color'=> '1.302216',
24139             'Test::Builder::TodoDiag'=> '1.302216',
24140             'Test::More' => '1.302216',
24141             'Test::Simple' => '1.302216',
24142             'Test::Tester' => '1.302216',
24143             'Test::Tester::Capture' => '1.302216',
24144             'Test::Tester::CaptureRunner'=> '1.302216',
24145             'Test::Tester::Delegate'=> '1.302216',
24146             'Test::use::ok' => '1.302216',
24147             'Time::Piece' => '1.41',
24148             'Time::Seconds' => '1.41',
24149             'ok' => '1.302216',
24150             'warnings' => '1.75',
24151             },
24152             removed => {
24153             }
24154             },
24155             5.043006 => {
24156             delta_from => 5.043005,
24157             changed => {
24158             'B::Op_private' => '5.043006',
24159             'Config' => '5.043006',
24160             'ExtUtils::ParseXS' => '3.61',
24161             'ExtUtils::ParseXS::Constants'=> '3.61',
24162             'ExtUtils::ParseXS::CountLines'=> '3.61',
24163             'ExtUtils::ParseXS::Eval'=> '3.61',
24164             'ExtUtils::ParseXS::Node'=> '3.61',
24165             'ExtUtils::ParseXS::Utilities'=> '3.61',
24166             'ExtUtils::Typemaps' => '3.61',
24167             'ExtUtils::Typemaps::Cmd'=> '3.61',
24168             'ExtUtils::Typemaps::InputMap'=> '3.61',
24169             'ExtUtils::Typemaps::OutputMap'=> '3.61',
24170             'ExtUtils::Typemaps::Type'=> '3.61',
24171             'Module::CoreList' => '5.20251220',
24172             'Module::CoreList::Utils'=> '5.20251220',
24173             'Term::Table' => '0.028',
24174             'Term::Table::Cell' => '0.028',
24175             'Term::Table::CellStack'=> '0.028',
24176             'Term::Table::HashBase' => '0.028',
24177             'Term::Table::LineBreak'=> '0.028',
24178             'Term::Table::Spacer' => '0.028',
24179             'Term::Table::Util' => '0.028',
24180             'Test2' => '1.302219',
24181             'Test2::API' => '1.302219',
24182             'Test2::API::Breakage' => '1.302219',
24183             'Test2::API::Context' => '1.302219',
24184             'Test2::API::Instance' => '1.302219',
24185             'Test2::API::InterceptResult'=> '1.302219',
24186             'Test2::API::InterceptResult::Event'=> '1.302219',
24187             'Test2::API::InterceptResult::Facet'=> '1.302219',
24188             'Test2::API::InterceptResult::Hub'=> '1.302219',
24189             'Test2::API::InterceptResult::Squasher'=> '1.302219',
24190             'Test2::API::Stack' => '1.302219',
24191             'Test2::AsyncSubtest' => '1.302219',
24192             'Test2::AsyncSubtest::Event::Attach'=> '1.302219',
24193             'Test2::AsyncSubtest::Event::Detach'=> '1.302219',
24194             'Test2::AsyncSubtest::Formatter'=> '1.302219',
24195             'Test2::AsyncSubtest::Hub'=> '1.302219',
24196             'Test2::Bundle' => '1.302219',
24197             'Test2::Bundle::Extended'=> '1.302219',
24198             'Test2::Bundle::More' => '1.302219',
24199             'Test2::Bundle::Simple' => '1.302219',
24200             'Test2::Compare' => '1.302219',
24201             'Test2::Compare::Array' => '1.302219',
24202             'Test2::Compare::Bag' => '1.302219',
24203             'Test2::Compare::Base' => '1.302219',
24204             'Test2::Compare::Bool' => '1.302219',
24205             'Test2::Compare::Custom'=> '1.302219',
24206             'Test2::Compare::DeepRef'=> '1.302219',
24207             'Test2::Compare::Delta' => '1.302219',
24208             'Test2::Compare::Event' => '1.302219',
24209             'Test2::Compare::EventMeta'=> '1.302219',
24210             'Test2::Compare::Float' => '1.302219',
24211             'Test2::Compare::Hash' => '1.302219',
24212             'Test2::Compare::Isa' => '1.302219',
24213             'Test2::Compare::Meta' => '1.302219',
24214             'Test2::Compare::Negatable'=> '1.302219',
24215             'Test2::Compare::Number'=> '1.302219',
24216             'Test2::Compare::Object'=> '1.302219',
24217             'Test2::Compare::OrderedSubset'=> '1.302219',
24218             'Test2::Compare::Pattern'=> '1.302219',
24219             'Test2::Compare::Ref' => '1.302219',
24220             'Test2::Compare::Regex' => '1.302219',
24221             'Test2::Compare::Scalar'=> '1.302219',
24222             'Test2::Compare::Set' => '1.302219',
24223             'Test2::Compare::String'=> '1.302219',
24224             'Test2::Compare::Undef' => '1.302219',
24225             'Test2::Compare::Wildcard'=> '1.302219',
24226             'Test2::Env' => '1.302219',
24227             'Test2::Event' => '1.302219',
24228             'Test2::Event::Bail' => '1.302219',
24229             'Test2::Event::Diag' => '1.302219',
24230             'Test2::Event::Encoding'=> '1.302219',
24231             'Test2::Event::Exception'=> '1.302219',
24232             'Test2::Event::Fail' => '1.302219',
24233             'Test2::Event::Generic' => '1.302219',
24234             'Test2::Event::Note' => '1.302219',
24235             'Test2::Event::Ok' => '1.302219',
24236             'Test2::Event::Pass' => '1.302219',
24237             'Test2::Event::Plan' => '1.302219',
24238             'Test2::Event::Skip' => '1.302219',
24239             'Test2::Event::Subtest' => '1.302219',
24240             'Test2::Event::TAP::Version'=> '1.302219',
24241             'Test2::Event::V2' => '1.302219',
24242             'Test2::Event::Waiting' => '1.302219',
24243             'Test2::EventFacet' => '1.302219',
24244             'Test2::EventFacet::About'=> '1.302219',
24245             'Test2::EventFacet::Amnesty'=> '1.302219',
24246             'Test2::EventFacet::Assert'=> '1.302219',
24247             'Test2::EventFacet::Control'=> '1.302219',
24248             'Test2::EventFacet::Error'=> '1.302219',
24249             'Test2::EventFacet::Hub'=> '1.302219',
24250             'Test2::EventFacet::Info'=> '1.302219',
24251             'Test2::EventFacet::Info::Table'=> '1.302219',
24252             'Test2::EventFacet::Meta'=> '1.302219',
24253             'Test2::EventFacet::Parent'=> '1.302219',
24254             'Test2::EventFacet::Plan'=> '1.302219',
24255             'Test2::EventFacet::Render'=> '1.302219',
24256             'Test2::EventFacet::Trace'=> '1.302219',
24257             'Test2::Formatter' => '1.302219',
24258             'Test2::Formatter::TAP' => '1.302219',
24259             'Test2::Handle' => '1.302219',
24260             'Test2::Hub' => '1.302219',
24261             'Test2::Hub::Interceptor'=> '1.302219',
24262             'Test2::Hub::Interceptor::Terminator'=> '1.302219',
24263             'Test2::Hub::Subtest' => '1.302219',
24264             'Test2::IPC' => '1.302219',
24265             'Test2::IPC::Driver' => '1.302219',
24266             'Test2::IPC::Driver::Files'=> '1.302219',
24267             'Test2::Manual' => '1.302219',
24268             'Test2::Manual::Anatomy'=> '1.302219',
24269             'Test2::Manual::Anatomy::API'=> '1.302219',
24270             'Test2::Manual::Anatomy::Context'=> '1.302219',
24271             'Test2::Manual::Anatomy::EndToEnd'=> '1.302219',
24272             'Test2::Manual::Anatomy::Event'=> '1.302219',
24273             'Test2::Manual::Anatomy::Hubs'=> '1.302219',
24274             'Test2::Manual::Anatomy::IPC'=> '1.302219',
24275             'Test2::Manual::Anatomy::Utilities'=> '1.302219',
24276             'Test2::Manual::Concurrency'=> '1.302219',
24277             'Test2::Manual::Contributing'=> '1.302219',
24278             'Test2::Manual::Testing'=> '1.302219',
24279             'Test2::Manual::Testing::Introduction'=> '1.302219',
24280             'Test2::Manual::Testing::Migrating'=> '1.302219',
24281             'Test2::Manual::Testing::Planning'=> '1.302219',
24282             'Test2::Manual::Testing::Todo'=> '1.302219',
24283             'Test2::Manual::Tooling'=> '1.302219',
24284             'Test2::Manual::Tooling::FirstTool'=> '1.302219',
24285             'Test2::Manual::Tooling::Formatter'=> '1.302219',
24286             'Test2::Manual::Tooling::Nesting'=> '1.302219',
24287             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302219',
24288             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302219',
24289             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302219',
24290             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302219',
24291             'Test2::Manual::Tooling::Subtest'=> '1.302219',
24292             'Test2::Manual::Tooling::TestBuilder'=> '1.302219',
24293             'Test2::Manual::Tooling::Testing'=> '1.302219',
24294             'Test2::Mock' => '1.302219',
24295             'Test2::Plugin' => '1.302219',
24296             'Test2::Plugin::BailOnFail'=> '1.302219',
24297             'Test2::Plugin::DieOnFail'=> '1.302219',
24298             'Test2::Plugin::ExitSummary'=> '1.302219',
24299             'Test2::Plugin::SRand' => '1.302219',
24300             'Test2::Plugin::Times' => '1.302219',
24301             'Test2::Plugin::UTF8' => '1.302219',
24302             'Test2::Require' => '1.302219',
24303             'Test2::Require::AuthorTesting'=> '1.302219',
24304             'Test2::Require::AutomatedTesting'=> '1.302219',
24305             'Test2::Require::EnvVar'=> '1.302219',
24306             'Test2::Require::ExtendedTesting'=> '1.302219',
24307             'Test2::Require::Fork' => '1.302219',
24308             'Test2::Require::Module'=> '1.302219',
24309             'Test2::Require::NonInteractiveTesting'=> '1.302219',
24310             'Test2::Require::Perl' => '1.302219',
24311             'Test2::Require::RealFork'=> '1.302219',
24312             'Test2::Require::ReleaseTesting'=> '1.302219',
24313             'Test2::Require::Threads'=> '1.302219',
24314             'Test2::Suite' => '1.302219',
24315             'Test2::Todo' => '1.302219',
24316             'Test2::Tools' => '1.302219',
24317             'Test2::Tools::AsyncSubtest'=> '1.302219',
24318             'Test2::Tools::Basic' => '1.302219',
24319             'Test2::Tools::Class' => '1.302219',
24320             'Test2::Tools::ClassicCompare'=> '1.302219',
24321             'Test2::Tools::Compare' => '1.302219',
24322             'Test2::Tools::Defer' => '1.302219',
24323             'Test2::Tools::Encoding'=> '1.302219',
24324             'Test2::Tools::Event' => '1.302219',
24325             'Test2::Tools::Exception'=> '1.302219',
24326             'Test2::Tools::Exports' => '1.302219',
24327             'Test2::Tools::GenTemp' => '1.302219',
24328             'Test2::Tools::Grab' => '1.302219',
24329             'Test2::Tools::Mock' => '1.302219',
24330             'Test2::Tools::Ref' => '1.302219',
24331             'Test2::Tools::Refcount'=> '1.302219',
24332             'Test2::Tools::Spec' => '1.302219',
24333             'Test2::Tools::Subtest' => '1.302219',
24334             'Test2::Tools::Target' => '1.302219',
24335             'Test2::Tools::Tester' => '1.302219',
24336             'Test2::Tools::Tiny' => '1.302219',
24337             'Test2::Tools::Warnings'=> '1.302219',
24338             'Test2::Util' => '1.302219',
24339             'Test2::Util::ExternalMeta'=> '1.302219',
24340             'Test2::Util::Facets2Legacy'=> '1.302219',
24341             'Test2::Util::Grabber' => '1.302219',
24342             'Test2::Util::Guard' => '1.302219',
24343             'Test2::Util::HashBase' => '1.302219',
24344             'Test2::Util::Importer' => '1.302219',
24345             'Test2::Util::Ref' => '1.302219',
24346             'Test2::Util::Sig' => '1.302219',
24347             'Test2::Util::Stash' => '1.302219',
24348             'Test2::Util::Sub' => '1.302219',
24349             'Test2::Util::Table' => '1.302219',
24350             'Test2::Util::Table::Cell'=> '1.302219',
24351             'Test2::Util::Table::LineBreak'=> '1.302219',
24352             'Test2::Util::Term' => '1.302219',
24353             'Test2::Util::Times' => '1.302219',
24354             'Test2::Util::Trace' => '1.302219',
24355             'Test2::V0' => '1.302219',
24356             'Test2::V1' => '1.302219',
24357             'Test2::V1::Base' => '1.302219',
24358             'Test2::V1::Handle' => '1.302219',
24359             'Test2::Workflow' => '1.302219',
24360             'Test2::Workflow::BlockBase'=> '1.302219',
24361             'Test2::Workflow::Build'=> '1.302219',
24362             'Test2::Workflow::Runner'=> '1.302219',
24363             'Test2::Workflow::Task' => '1.302219',
24364             'Test2::Workflow::Task::Action'=> '1.302219',
24365             'Test2::Workflow::Task::Group'=> '1.302219',
24366             'Test::Builder' => '1.302219',
24367             'Test::Builder::Formatter'=> '1.302219',
24368             'Test::Builder::Module' => '1.302219',
24369             'Test::Builder::Tester' => '1.302219',
24370             'Test::Builder::Tester::Color'=> '1.302219',
24371             'Test::Builder::TodoDiag'=> '1.302219',
24372             'Test::More' => '1.302219',
24373             'Test::Simple' => '1.302219',
24374             'Test::Tester' => '1.302219',
24375             'Test::Tester::Capture' => '1.302219',
24376             'Test::Tester::CaptureRunner'=> '1.302219',
24377             'Test::Tester::Delegate'=> '1.302219',
24378             'Test::use::ok' => '1.302219',
24379             'XS::APItest' => '1.48',
24380             '_charnames' => '1.51',
24381             'charnames' => '1.51',
24382             'ok' => '1.302219',
24383             'warnings' => '1.76',
24384             },
24385             removed => {
24386             }
24387             },
24388             5.043007 => {
24389             delta_from => 5.043006,
24390             changed => {
24391             'B' => '1.91',
24392             'B::Concise' => '1.010',
24393             'B::Op_private' => '5.043007',
24394             'Config' => '5.043007',
24395             'ExtUtils::ParseXS' => '3.62',
24396             'ExtUtils::ParseXS::Constants'=> '3.62',
24397             'ExtUtils::ParseXS::CountLines'=> '3.62',
24398             'ExtUtils::ParseXS::Eval'=> '3.62',
24399             'ExtUtils::ParseXS::Node'=> '3.62',
24400             'ExtUtils::ParseXS::Utilities'=> '3.62',
24401             'ExtUtils::Typemaps' => '3.62',
24402             'ExtUtils::Typemaps::Cmd'=> '3.62',
24403             'ExtUtils::Typemaps::InputMap'=> '3.62',
24404             'ExtUtils::Typemaps::OutputMap'=> '3.62',
24405             'ExtUtils::Typemaps::Type'=> '3.62',
24406             'HTTP::Tiny' => '0.092',
24407             'Module::CoreList' => '5.20260119',
24408             'Module::CoreList::Utils'=> '5.20260119',
24409             'POSIX' => '2.25',
24410             'Pod::Html' => '1.36',
24411             'Pod::Html::Util' => '1.36',
24412             },
24413             removed => {
24414             }
24415             },
24416             5.043008 => {
24417             delta_from => 5.043007,
24418             changed => {
24419             'B::Concise' => '1.011',
24420             'B::Deparse' => '1.89',
24421             'B::Op_private' => '5.043008',
24422             'CPAN::Meta' => '2.150012',
24423             'CPAN::Meta::Converter' => '2.150012',
24424             'CPAN::Meta::Feature' => '2.150012',
24425             'CPAN::Meta::History' => '2.150012',
24426             'CPAN::Meta::Merge' => '2.150012',
24427             'CPAN::Meta::Prereqs' => '2.150012',
24428             'CPAN::Meta::Spec' => '2.150012',
24429             'CPAN::Meta::Validator' => '2.150012',
24430             'Compress::Raw::Bzip2' => '2.217',
24431             'Compress::Raw::Zlib' => '2.218',
24432             'Compress::Zlib' => '2.217',
24433             'Config' => '5.043008',
24434             'Config::Perl::V' => '0.39',
24435             'DB_File' => '1.860',
24436             'English' => '1.12',
24437             'ExtUtils::ParseXS' => '3.63',
24438             'ExtUtils::ParseXS::Constants'=> '3.63',
24439             'ExtUtils::ParseXS::CountLines'=> '3.63',
24440             'ExtUtils::ParseXS::Eval'=> '3.63',
24441             'ExtUtils::ParseXS::Node'=> '3.63',
24442             'ExtUtils::ParseXS::Utilities'=> '3.63',
24443             'ExtUtils::Typemaps' => '3.63',
24444             'ExtUtils::Typemaps::Cmd'=> '3.63',
24445             'ExtUtils::Typemaps::InputMap'=> '3.63',
24446             'ExtUtils::Typemaps::OutputMap'=> '3.63',
24447             'ExtUtils::Typemaps::Type'=> '3.63',
24448             'IO::Compress' => '2.217',
24449             'IO::Compress::Adapter::Bzip2'=> '2.217',
24450             'IO::Compress::Adapter::Deflate'=> '2.217',
24451             'IO::Compress::Adapter::Identity'=> '2.217',
24452             'IO::Compress::Base' => '2.217',
24453             'IO::Compress::Base::Common'=> '2.217',
24454             'IO::Compress::Bzip2' => '2.217',
24455             'IO::Compress::Deflate' => '2.217',
24456             'IO::Compress::Gzip' => '2.217',
24457             'IO::Compress::Gzip::Constants'=> '2.217',
24458             'IO::Compress::RawDeflate'=> '2.217',
24459             'IO::Compress::Zip' => '2.217',
24460             'IO::Compress::Zip::Constants'=> '2.217',
24461             'IO::Compress::Zlib::Constants'=> '2.217',
24462             'IO::Compress::Zlib::Extra'=> '2.217',
24463             'IO::Uncompress::Adapter::Bunzip2'=> '2.217',
24464             'IO::Uncompress::Adapter::Identity'=> '2.217',
24465             'IO::Uncompress::Adapter::Inflate'=> '2.217',
24466             'IO::Uncompress::AnyInflate'=> '2.217',
24467             'IO::Uncompress::AnyUncompress'=> '2.217',
24468             'IO::Uncompress::Base' => '2.217',
24469             'IO::Uncompress::Bunzip2'=> '2.217',
24470             'IO::Uncompress::Gunzip'=> '2.217',
24471             'IO::Uncompress::Inflate'=> '2.217',
24472             'IO::Uncompress::RawInflate'=> '2.217',
24473             'IO::Uncompress::Unzip' => '2.217',
24474             'Module::CoreList' => '5.20260220',
24475             'Module::CoreList::Utils'=> '5.20260220',
24476             'Parse::CPAN::Meta' => '2.150012',
24477             'Time::HiRes' => '1.9780',
24478             'XS::APItest' => '1.49',
24479             'XS::Typemap' => '0.21',
24480             'feature' => '2.01',
24481             'threads' => '2.44',
24482             'threads::shared' => '1.72',
24483             'warnings' => '1.77',
24484             },
24485             removed => {
24486             }
24487             },
24488             5.042001 => {
24489             delta_from => 5.042000,
24490             changed => {
24491             'B::Op_private' => '5.042001',
24492             'Config' => '5.042001',
24493             'Module::CoreList' => '5.20260308',
24494             'Module::CoreList::Utils'=> '5.20260308',
24495             'POSIX' => '2.23_01',
24496             },
24497             removed => {
24498             }
24499             },
24500             5.043009 => {
24501             delta_from => 5.043008,
24502             changed => {
24503             'B' => '1.92',
24504             'B::Op_private' => '5.043009',
24505             'CPAN::Meta' => '2.150013',
24506             'CPAN::Meta::Converter' => '2.150013',
24507             'CPAN::Meta::Feature' => '2.150013',
24508             'CPAN::Meta::History' => '2.150013',
24509             'CPAN::Meta::Merge' => '2.150013',
24510             'CPAN::Meta::Prereqs' => '2.150013',
24511             'CPAN::Meta::Requirements'=> '2.145',
24512             'CPAN::Meta::Requirements::Range'=> '2.145',
24513             'CPAN::Meta::Spec' => '2.150013',
24514             'CPAN::Meta::Validator' => '2.150013',
24515             'Compress::Raw::Bzip2' => '2.218',
24516             'Compress::Raw::Zlib' => '2.222',
24517             'Compress::Zlib' => '2.219',
24518             'Config' => '5.043009',
24519             'Cwd' => '3.95',
24520             'ExtUtils::CBuilder' => '0.280243',
24521             'ExtUtils::CBuilder::Base'=> '0.280243',
24522             'ExtUtils::CBuilder::Platform::Unix'=> '0.280243',
24523             'ExtUtils::CBuilder::Platform::VMS'=> '0.280243',
24524             'ExtUtils::CBuilder::Platform::Windows'=> '0.280243',
24525             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280243',
24526             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280243',
24527             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280243',
24528             'ExtUtils::CBuilder::Platform::aix'=> '0.280243',
24529             'ExtUtils::CBuilder::Platform::android'=> '0.280243',
24530             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280243',
24531             'ExtUtils::CBuilder::Platform::darwin'=> '0.280243',
24532             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280243',
24533             'ExtUtils::CBuilder::Platform::os2'=> '0.280243',
24534             'ExtUtils::Command' => '7.78',
24535             'ExtUtils::Command::MM' => '7.78',
24536             'ExtUtils::Liblist' => '7.78',
24537             'ExtUtils::Liblist::Kid'=> '7.78',
24538             'ExtUtils::MM' => '7.78',
24539             'ExtUtils::MM_AIX' => '7.78',
24540             'ExtUtils::MM_Any' => '7.78',
24541             'ExtUtils::MM_BeOS' => '7.78',
24542             'ExtUtils::MM_Cygwin' => '7.78',
24543             'ExtUtils::MM_DOS' => '7.78',
24544             'ExtUtils::MM_Darwin' => '7.78',
24545             'ExtUtils::MM_MacOS' => '7.78',
24546             'ExtUtils::MM_NW5' => '7.78',
24547             'ExtUtils::MM_OS2' => '7.78',
24548             'ExtUtils::MM_OS390' => '7.78',
24549             'ExtUtils::MM_QNX' => '7.78',
24550             'ExtUtils::MM_UWIN' => '7.78',
24551             'ExtUtils::MM_Unix' => '7.78',
24552             'ExtUtils::MM_VMS' => '7.78',
24553             'ExtUtils::MM_VOS' => '7.78',
24554             'ExtUtils::MM_Win32' => '7.78',
24555             'ExtUtils::MM_Win95' => '7.78',
24556             'ExtUtils::MY' => '7.78',
24557             'ExtUtils::MakeMaker' => '7.78',
24558             'ExtUtils::MakeMaker::Config'=> '7.78',
24559             'ExtUtils::MakeMaker::Locale'=> '7.78',
24560             'ExtUtils::MakeMaker::version'=> '7.78',
24561             'ExtUtils::MakeMaker::version::regex'=> '7.78',
24562             'ExtUtils::Mkbootstrap' => '7.78',
24563             'ExtUtils::Mksymlists' => '7.78',
24564             'ExtUtils::testlib' => '7.78',
24565             'File::Glob' => '1.43',
24566             'File::Spec' => '3.95',
24567             'File::Spec::AmigaOS' => '3.95',
24568             'File::Spec::Cygwin' => '3.95',
24569             'File::Spec::Epoc' => '3.95',
24570             'File::Spec::Functions' => '3.95',
24571             'File::Spec::Mac' => '3.95',
24572             'File::Spec::OS2' => '3.95',
24573             'File::Spec::Unix' => '3.95',
24574             'File::Spec::VMS' => '3.95',
24575             'File::Spec::Win32' => '3.95',
24576             'IO' => '1.56',
24577             'IO::Compress' => '2.219',
24578             'IO::Compress::Adapter::Bzip2'=> '2.219',
24579             'IO::Compress::Adapter::Deflate'=> '2.219',
24580             'IO::Compress::Adapter::Identity'=> '2.219',
24581             'IO::Compress::Base' => '2.219',
24582             'IO::Compress::Base::Common'=> '2.219',
24583             'IO::Compress::Bzip2' => '2.219',
24584             'IO::Compress::Deflate' => '2.219',
24585             'IO::Compress::Gzip' => '2.219',
24586             'IO::Compress::Gzip::Constants'=> '2.219',
24587             'IO::Compress::RawDeflate'=> '2.219',
24588             'IO::Compress::Zip' => '2.219',
24589             'IO::Compress::Zip::Constants'=> '2.219',
24590             'IO::Compress::Zlib::Constants'=> '2.219',
24591             'IO::Compress::Zlib::Extra'=> '2.219',
24592             'IO::Dir' => '1.56',
24593             'IO::File' => '1.56',
24594             'IO::Handle' => '1.56',
24595             'IO::Pipe' => '1.56',
24596             'IO::Seekable' => '1.56',
24597             'IO::Select' => '1.56',
24598             'IO::Socket' => '1.56',
24599             'IO::Socket::INET' => '1.56',
24600             'IO::Socket::UNIX' => '1.56',
24601             'IO::Uncompress::Adapter::Bunzip2'=> '2.219',
24602             'IO::Uncompress::Adapter::Identity'=> '2.219',
24603             'IO::Uncompress::Adapter::Inflate'=> '2.219',
24604             'IO::Uncompress::AnyInflate'=> '2.219',
24605             'IO::Uncompress::AnyUncompress'=> '2.219',
24606             'IO::Uncompress::Base' => '2.219',
24607             'IO::Uncompress::Bunzip2'=> '2.219',
24608             'IO::Uncompress::Gunzip'=> '2.219',
24609             'IO::Uncompress::Inflate'=> '2.219',
24610             'IO::Uncompress::RawInflate'=> '2.219',
24611             'IO::Uncompress::Unzip' => '2.219',
24612             'Module::CoreList' => '5.20260320',
24613             'Module::CoreList::Utils'=> '5.20260320',
24614             'Opcode' => '1.71',
24615             'POSIX' => '2.26',
24616             'Parse::CPAN::Meta' => '2.150013',
24617             'Storable' => '3.40',
24618             'XS::APItest' => '1.50',
24619             'feature' => '2.02',
24620             'threads' => '2.45',
24621             'threads::shared' => '1.73',
24622             'warnings' => '1.78',
24623             },
24624             removed => {
24625             }
24626             },
24627             5.040004 => {
24628             delta_from => 5.040003,
24629             changed => {
24630             'B::Op_private' => '5.040004',
24631             'Compress::Raw::Zlib' => '2.222',
24632             'Config' => '5.040004',
24633             'Module::CoreList' => '5.20260329_40',
24634             'Module::CoreList::Utils'=> '5.20260329_40',
24635             },
24636             removed => {
24637             }
24638             },
24639             5.042002 => {
24640             delta_from => 5.042001,
24641             changed => {
24642             'B::Op_private' => '5.042002',
24643             'Compress::Raw::Zlib' => '2.222',
24644             'Config' => '5.042002',
24645             'Module::CoreList' => '5.20260329_42',
24646             'Module::CoreList::Utils'=> '5.20260329_42',
24647             },
24648             removed => {
24649             }
24650             },
24651             5.043010 => {
24652             delta_from => 5.043009,
24653             changed => {
24654             'B::Concise' => '1.012',
24655             'B::Op_private' => '5.043010',
24656             'Config' => '5.04301',
24657             'File::Glob' => '1.44',
24658             'Module::CoreList' => '5.20260420',
24659             'Module::CoreList::Utils'=> '5.20260420',
24660             'Module::Metadata' => '1.000039',
24661             'Pod::Simple' => '3.48',
24662             'Pod::Simple::BlackBox' => '3.48',
24663             'Pod::Simple::Checker' => '3.48',
24664             'Pod::Simple::Debug' => '3.48',
24665             'Pod::Simple::DumpAsText'=> '3.48',
24666             'Pod::Simple::DumpAsXML'=> '3.48',
24667             'Pod::Simple::HTML' => '3.48',
24668             'Pod::Simple::HTMLBatch'=> '3.48',
24669             'Pod::Simple::LinkSection'=> '3.48',
24670             'Pod::Simple::Methody' => '3.48',
24671             'Pod::Simple::Progress' => '3.48',
24672             'Pod::Simple::PullParser'=> '3.48',
24673             'Pod::Simple::PullParserEndToken'=> '3.48',
24674             'Pod::Simple::PullParserStartToken'=> '3.48',
24675             'Pod::Simple::PullParserTextToken'=> '3.48',
24676             'Pod::Simple::PullParserToken'=> '3.48',
24677             'Pod::Simple::RTF' => '3.48',
24678             'Pod::Simple::Search' => '3.48',
24679             'Pod::Simple::SimpleTree'=> '3.48',
24680             'Pod::Simple::Text' => '3.48',
24681             'Pod::Simple::TextContent'=> '3.48',
24682             'Pod::Simple::TiedOutFH'=> '3.48',
24683             'Pod::Simple::Transcode'=> '3.48',
24684             'Pod::Simple::TranscodeDumb'=> '3.48',
24685             'Pod::Simple::TranscodeSmart'=> '3.48',
24686             'Pod::Simple::XHTML' => '3.48',
24687             'Pod::Simple::XMLOutStream'=> '3.48',
24688             'version' => '0.9934',
24689             'version::regex' => '0.9934',
24690             },
24691             removed => {
24692             }
24693             },
24694             );
24695              
24696             sub is_core
24697             {
24698 43 100 66 43 1 389505 shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0];
      100        
24699 43         105 my $module = shift;
24700 43 100       162 my $module_version = @_ > 0 ? shift : undef;
24701 43 100       141 my $perl_version = @_ > 0 ? shift : $];
24702              
24703 43         131 my $first_release = first_release($module);
24704              
24705 43 100 100     630 return 0 if !defined($first_release) || $first_release > $perl_version;
24706              
24707 32         143 my $final_release = removed_from($module);
24708              
24709 32 100 100     296 return 0 if defined($final_release) && $perl_version >= $final_release;
24710              
24711             # If a minimum version of the module was specified:
24712             # Step through all perl releases ($prn)
24713             # so we can find what version of the module
24714             # was included in the specified version of perl.
24715             # On the way if we pass the required module version, we can
24716             # short-circuit and return true
24717 28 100       91 if (defined($module_version)) {
24718 21         83 my $module_version_object = eval { version->parse($module_version) };
  21         460  
24719 21 100       78 if (!defined($module_version_object)) {
24720 1         17 (my $err = $@) =~ s/^Invalid version format\b/Invalid version '$module_version' specified/;
24721 1         12 die $err;
24722             }
24723             # The Perl releases aren't a linear sequence, but a tree. We need to build the path
24724             # of releases from 5 to the specified release, and follow the module's version(s)
24725             # along that path.
24726 20         60 my @releases = ($perl_version);
24727 20         48 my $rel = $perl_version;
24728 20         57 while (defined($rel)) {
24729             # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
24730 598   66     2003 my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
24731 598         1117 $rel = $this_delta->{delta_from};
24732 598 100       1537 unshift(@releases, $rel) if defined($rel);
24733             }
24734             RELEASE:
24735 20         62 foreach my $prn (@releases) {
24736 531 100       1064 next RELEASE if $prn < $first_release;
24737 440 50       794 last RELEASE if $prn > $perl_version;
24738             next unless defined(my $next_module_version
24739 440 100       1810 = $delta{$prn}->{changed}->{$module});
24740 68 100       117 return 1 if eval { version->parse($next_module_version) >= $module_version_object };
  68         896  
24741             }
24742 4         53 return 0;
24743             }
24744              
24745 7 100       72 return 1 if !defined($final_release);
24746              
24747 2         19 return $perl_version <= $final_release;
24748             }
24749              
24750             %version = _undelta(\%delta);
24751              
24752             %deprecated = (
24753             5.011 => {
24754             changed => { map { $_ => 1 } qw/
24755             Class::ISA
24756             Pod::Plainer
24757             Shell
24758             Switch
24759             /},
24760             },
24761             5.011001 => { delta_from => 5.011 },
24762             5.011002 => { delta_from => 5.011001 },
24763             5.011003 => { delta_from => 5.011002 },
24764             5.011004 => { delta_from => 5.011003 },
24765             5.011005 => { delta_from => 5.011004 },
24766              
24767             5.012 => { delta_from => 5.011005 },
24768             5.012001 => { delta_from => 5.012 },
24769             5.012002 => { delta_from => 5.012001 },
24770             5.012003 => { delta_from => 5.012002 },
24771             5.012004 => { delta_from => 5.012003 },
24772             5.012005 => { delta_from => 5.012004 },
24773              
24774             5.013 => { delta_from => 5.012005 },
24775             5.013001 => {
24776             delta_from => 5.013,
24777             removed => { map { $_ => 1 } qw/
24778             Class::ISA
24779             Pod::Plainer
24780             Switch
24781             /},
24782             },
24783             5.013002 => { delta_from => 5.013001 },
24784             5.013003 => { delta_from => 5.013002 },
24785             5.013004 => { delta_from => 5.013003 },
24786             5.013005 => { delta_from => 5.013004 },
24787             5.013006 => { delta_from => 5.013005 },
24788             5.013007 => { delta_from => 5.013006 },
24789             5.013008 => { delta_from => 5.013007 },
24790             5.013009 => { delta_from => 5.013008 },
24791             5.01301 => { delta_from => 5.013009 },
24792             5.013011 => { delta_from => 5.01301 },
24793              
24794             5.014 => { delta_from => 5.013011 },
24795             5.014001 => { delta_from => 5.014 },
24796             5.014002 => { delta_from => 5.014001 },
24797             5.014003 => { delta_from => 5.014002 },
24798             5.014004 => { delta_from => 5.014003 },
24799              
24800             5.015 => {
24801             delta_from => 5.014004,
24802             removed => { Shell => 1 },
24803             },
24804             5.015001 => { delta_from => 5.015 },
24805             5.015002 => { delta_from => 5.015001 },
24806             5.015003 => { delta_from => 5.015002 },
24807             5.015004 => { delta_from => 5.015003 },
24808             5.015005 => { delta_from => 5.015004 },
24809             5.015006 => { delta_from => 5.015005 },
24810             5.015007 => { delta_from => 5.015006 },
24811             5.015008 => { delta_from => 5.015007 },
24812             5.015009 => { delta_from => 5.015008 },
24813              
24814             5.016 => { delta_from => 5.015009 },
24815             5.016001 => { delta_from => 5.016 },
24816             5.016002 => { delta_from => 5.016001 },
24817             5.016003 => { delta_from => 5.016002 },
24818              
24819             5.017 => { delta_from => 5.016003 },
24820             5.017001 => { delta_from => 5.017 },
24821             5.017002 => { delta_from => 5.017001 },
24822             5.017003 => { delta_from => 5.017002 },
24823             5.017004 => { delta_from => 5.017003 },
24824             5.017005 => { delta_from => 5.017004 },
24825             5.017006 => { delta_from => 5.017005 },
24826             5.017007 => { delta_from => 5.017006 },
24827             5.017008 => {
24828             delta_from => 5.017007,
24829             changed => { 'Pod::LaTeX' => 1 },
24830             },
24831             5.017009 => {
24832             delta_from => 5.017008,
24833             changed => { map { $_ => 1 } qw/
24834             Archive::Extract
24835             B::Lint
24836             B::Lint::Debug
24837             CPANPLUS
24838             CPANPLUS::Backend
24839             CPANPLUS::Backend::RV
24840             CPANPLUS::Config
24841             CPANPLUS::Config::HomeEnv
24842             CPANPLUS::Configure
24843             CPANPLUS::Configure::Setup
24844             CPANPLUS::Dist
24845             CPANPLUS::Dist::Autobundle
24846             CPANPLUS::Dist::Base
24847             CPANPLUS::Dist::Build
24848             CPANPLUS::Dist::Build::Constants
24849             CPANPLUS::Dist::MM
24850             CPANPLUS::Dist::Sample
24851             CPANPLUS::Error
24852             CPANPLUS::Internals
24853             CPANPLUS::Internals::Constants
24854             CPANPLUS::Internals::Constants::Report
24855             CPANPLUS::Internals::Extract
24856             CPANPLUS::Internals::Fetch
24857             CPANPLUS::Internals::Report
24858             CPANPLUS::Internals::Search
24859             CPANPLUS::Internals::Source
24860             CPANPLUS::Internals::Source::Memory
24861             CPANPLUS::Internals::Source::SQLite
24862             CPANPLUS::Internals::Source::SQLite::Tie
24863             CPANPLUS::Internals::Utils
24864             CPANPLUS::Internals::Utils::Autoflush
24865             CPANPLUS::Module
24866             CPANPLUS::Module::Author
24867             CPANPLUS::Module::Author::Fake
24868             CPANPLUS::Module::Checksums
24869             CPANPLUS::Module::Fake
24870             CPANPLUS::Module::Signature
24871             CPANPLUS::Selfupdate
24872             CPANPLUS::Shell
24873             CPANPLUS::Shell::Classic
24874             CPANPLUS::Shell::Default
24875             CPANPLUS::Shell::Default::Plugins::CustomSource
24876             CPANPLUS::Shell::Default::Plugins::Remote
24877             CPANPLUS::Shell::Default::Plugins::Source
24878             Devel::InnerPackage
24879             File::CheckTree
24880             Log::Message
24881             Log::Message::Config
24882             Log::Message::Handlers
24883             Log::Message::Item
24884             Log::Message::Simple
24885             Module::Pluggable
24886             Module::Pluggable::Object
24887             Object::Accessor
24888             Term::UI
24889             Term::UI::History
24890             Text::Soundex
24891             /},
24892             },
24893             5.01701 => { delta_from => 5.017009 },
24894             5.017011 => { delta_from => 5.01701 },
24895              
24896             5.018 => { delta_from => 5.017011 },
24897             5.018001 => {
24898             delta_from => 5.018,
24899             changed => {
24900             },
24901             removed => {
24902             }
24903             },
24904             5.018002 => {
24905             delta_from => 5.018001,
24906             changed => {
24907             },
24908             removed => {
24909             }
24910             },
24911             5.018003 => {
24912             delta_from => 5.018,
24913             changed => {
24914             },
24915             removed => {
24916             }
24917             },
24918             5.018004 => {
24919             delta_from => 5.018,
24920             changed => {
24921             },
24922             removed => {
24923             }
24924             },
24925              
24926             5.019 => {
24927             delta_from => 5.018,
24928             changed => { 'Module::Build' => 1 },
24929             removed => { map { $_ => 1 } qw/
24930             Archive::Extract
24931             B::Lint
24932             B::Lint::Debug
24933             CPANPLUS
24934             CPANPLUS::Backend
24935             CPANPLUS::Backend::RV
24936             CPANPLUS::Config
24937             CPANPLUS::Config::HomeEnv
24938             CPANPLUS::Configure
24939             CPANPLUS::Configure::Setup
24940             CPANPLUS::Dist
24941             CPANPLUS::Dist::Autobundle
24942             CPANPLUS::Dist::Base
24943             CPANPLUS::Dist::Build
24944             CPANPLUS::Dist::Build::Constants
24945             CPANPLUS::Dist::MM
24946             CPANPLUS::Dist::Sample
24947             CPANPLUS::Error
24948             CPANPLUS::Internals
24949             CPANPLUS::Internals::Constants
24950             CPANPLUS::Internals::Constants::Report
24951             CPANPLUS::Internals::Extract
24952             CPANPLUS::Internals::Fetch
24953             CPANPLUS::Internals::Report
24954             CPANPLUS::Internals::Search
24955             CPANPLUS::Internals::Source
24956             CPANPLUS::Internals::Source::Memory
24957             CPANPLUS::Internals::Source::SQLite
24958             CPANPLUS::Internals::Source::SQLite::Tie
24959             CPANPLUS::Internals::Utils
24960             CPANPLUS::Internals::Utils::Autoflush
24961             CPANPLUS::Module
24962             CPANPLUS::Module::Author
24963             CPANPLUS::Module::Author::Fake
24964             CPANPLUS::Module::Checksums
24965             CPANPLUS::Module::Fake
24966             CPANPLUS::Module::Signature
24967             CPANPLUS::Selfupdate
24968             CPANPLUS::Shell
24969             CPANPLUS::Shell::Classic
24970             CPANPLUS::Shell::Default
24971             CPANPLUS::Shell::Default::Plugins::CustomSource
24972             CPANPLUS::Shell::Default::Plugins::Remote
24973             CPANPLUS::Shell::Default::Plugins::Source
24974             Devel::InnerPackage
24975             File::CheckTree
24976             Log::Message
24977             Log::Message::Config
24978             Log::Message::Handlers
24979             Log::Message::Item
24980             Log::Message::Simple
24981             Module::Pluggable
24982             Module::Pluggable::Object
24983             Object::Accessor
24984             Pod::LaTeX
24985             Term::UI
24986             Term::UI::History
24987             Text::Soundex
24988             /}
24989             },
24990             5.019001 => {
24991             delta_from => 5.019,
24992             changed => {
24993             },
24994             removed => {
24995             }
24996             },
24997             5.019002 => {
24998             delta_from => 5.019001,
24999             changed => {
25000             },
25001             removed => {
25002             }
25003             },
25004             5.019003 => {
25005             delta_from => 5.019002,
25006             changed => {
25007             },
25008             removed => {
25009             }
25010             },
25011             5.019004 => {
25012             delta_from => 5.019003,
25013             changed => {
25014             'Module::Build::Base' => '1',
25015             'Module::Build::Compat' => '1',
25016             'Module::Build::Config' => '1',
25017             'Module::Build::ConfigData'=> '1',
25018             'Module::Build::Cookbook'=> '1',
25019             'Module::Build::Dumper' => '1',
25020             'Module::Build::ModuleInfo'=> '1',
25021             'Module::Build::Notes' => '1',
25022             'Module::Build::PPMMaker'=> '1',
25023             'Module::Build::Platform::Default'=> '1',
25024             'Module::Build::Platform::MacOS'=> '1',
25025             'Module::Build::Platform::Unix'=> '1',
25026             'Module::Build::Platform::VMS'=> '1',
25027             'Module::Build::Platform::VOS'=> '1',
25028             'Module::Build::Platform::Windows'=> '1',
25029             'Module::Build::Platform::aix'=> '1',
25030             'Module::Build::Platform::cygwin'=> '1',
25031             'Module::Build::Platform::darwin'=> '1',
25032             'Module::Build::Platform::os2'=> '1',
25033             'Module::Build::PodParser'=> '1',
25034             'Module::Build::Version'=> '1',
25035             'Module::Build::YAML' => '1',
25036             'inc::latest' => '1',
25037             },
25038             removed => {
25039             }
25040             },
25041             5.019005 => {
25042             delta_from => 5.019004,
25043             changed => {
25044             },
25045             removed => {
25046             }
25047             },
25048             5.019006 => {
25049             delta_from => 5.019005,
25050             changed => {
25051             'Package::Constants' => '1',
25052             },
25053             removed => {
25054             }
25055             },
25056             5.019007 => {
25057             delta_from => 5.019006,
25058             changed => {
25059             'CGI' => '1',
25060             'CGI::Apache' => '1',
25061             'CGI::Carp' => '1',
25062             'CGI::Cookie' => '1',
25063             'CGI::Fast' => '1',
25064             'CGI::Pretty' => '1',
25065             'CGI::Push' => '1',
25066             'CGI::Switch' => '1',
25067             'CGI::Util' => '1',
25068             },
25069             removed => {
25070             }
25071             },
25072             5.019008 => {
25073             delta_from => 5.019007,
25074             changed => {
25075             },
25076             removed => {
25077             }
25078             },
25079             5.019009 => {
25080             delta_from => 5.019008,
25081             changed => {
25082             },
25083             removed => {
25084             }
25085             },
25086             5.01901 => {
25087             delta_from => 5.019009,
25088             changed => {
25089             },
25090             removed => {
25091             }
25092             },
25093             5.019011 => {
25094             delta_from => 5.019010,
25095             changed => {
25096             },
25097             removed => {
25098             }
25099             },
25100             5.020000 => {
25101             delta_from => 5.019011,
25102             changed => {
25103             },
25104             removed => {
25105             }
25106             },
25107             5.021000 => {
25108             delta_from => 5.020000,
25109             changed => {
25110             },
25111             removed => {
25112             'CGI' => 1,
25113             'CGI::Apache' => 1,
25114             'CGI::Carp' => 1,
25115             'CGI::Cookie' => 1,
25116             'CGI::Fast' => 1,
25117             'CGI::Pretty' => 1,
25118             'CGI::Push' => 1,
25119             'CGI::Switch' => 1,
25120             'CGI::Util' => 1,
25121             'Module::Build' => 1,
25122             'Module::Build::Base' => 1,
25123             'Module::Build::Compat' => 1,
25124             'Module::Build::Config' => 1,
25125             'Module::Build::ConfigData'=> 1,
25126             'Module::Build::Cookbook'=> 1,
25127             'Module::Build::Dumper' => 1,
25128             'Module::Build::ModuleInfo'=> 1,
25129             'Module::Build::Notes' => 1,
25130             'Module::Build::PPMMaker'=> 1,
25131             'Module::Build::Platform::Default'=> 1,
25132             'Module::Build::Platform::MacOS'=> 1,
25133             'Module::Build::Platform::Unix'=> 1,
25134             'Module::Build::Platform::VMS'=> 1,
25135             'Module::Build::Platform::VOS'=> 1,
25136             'Module::Build::Platform::Windows'=> 1,
25137             'Module::Build::Platform::aix'=> 1,
25138             'Module::Build::Platform::cygwin'=> 1,
25139             'Module::Build::Platform::darwin'=> 1,
25140             'Module::Build::Platform::os2'=> 1,
25141             'Module::Build::PodParser'=> 1,
25142             'Module::Build::Version'=> 1,
25143             'Module::Build::YAML' => 1,
25144             'Package::Constants' => 1,
25145             'inc::latest' => 1,
25146             }
25147             },
25148             5.021001 => {
25149             delta_from => 5.021000,
25150             changed => {
25151             },
25152             removed => {
25153             }
25154             },
25155             5.021002 => {
25156             delta_from => 5.021001,
25157             changed => {
25158             },
25159             removed => {
25160             }
25161             },
25162             5.021003 => {
25163             delta_from => 5.021002,
25164             changed => {
25165             },
25166             removed => {
25167             }
25168             },
25169             5.020001 => {
25170             delta_from => 5.020000,
25171             changed => {
25172             },
25173             removed => {
25174             }
25175             },
25176             5.021004 => {
25177             delta_from => 5.021003,
25178             changed => {
25179             },
25180             removed => {
25181             }
25182             },
25183             5.021005 => {
25184             delta_from => 5.021004,
25185             changed => {
25186             },
25187             removed => {
25188             }
25189             },
25190             5.021006 => {
25191             delta_from => 5.021005,
25192             changed => {
25193             },
25194             removed => {
25195             }
25196             },
25197             5.021007 => {
25198             delta_from => 5.021006,
25199             changed => {
25200             },
25201             removed => {
25202             }
25203             },
25204             5.021008 => {
25205             delta_from => 5.021007,
25206             changed => {
25207             },
25208             removed => {
25209             }
25210             },
25211             5.020002 => {
25212             delta_from => 5.020001,
25213             changed => {
25214             },
25215             removed => {
25216             }
25217             },
25218             5.021009 => {
25219             delta_from => 5.021008,
25220             changed => {
25221             },
25222             removed => {
25223             }
25224             },
25225             5.021010 => {
25226             delta_from => 5.021009,
25227             changed => {
25228             },
25229             removed => {
25230             }
25231             },
25232             5.021011 => {
25233             delta_from => 5.02101,
25234             changed => {
25235             },
25236             removed => {
25237             }
25238             },
25239             5.022000 => {
25240             delta_from => 5.021011,
25241             changed => {
25242             },
25243             removed => {
25244             }
25245             },
25246             5.023000 => {
25247             delta_from => 5.022000,
25248             changed => {
25249             },
25250             removed => {
25251             }
25252             },
25253             5.023001 => {
25254             delta_from => 5.023000,
25255             changed => {
25256             },
25257             removed => {
25258             }
25259             },
25260             5.023002 => {
25261             delta_from => 5.023001,
25262             changed => {
25263             },
25264             removed => {
25265             }
25266             },
25267             5.020003 => {
25268             delta_from => 5.020002,
25269             changed => {
25270             },
25271             removed => {
25272             }
25273             },
25274             5.023003 => {
25275             delta_from => 5.023002,
25276             changed => {
25277             },
25278             removed => {
25279             }
25280             },
25281             5.023004 => {
25282             delta_from => 5.023003,
25283             changed => {
25284             },
25285             removed => {
25286             }
25287             },
25288             5.023005 => {
25289             delta_from => 5.023004,
25290             changed => {
25291             },
25292             removed => {
25293             }
25294             },
25295             5.022001 => {
25296             delta_from => 5.022,
25297             changed => {
25298             },
25299             removed => {
25300             }
25301             },
25302             5.023006 => {
25303             delta_from => 5.023005,
25304             changed => {
25305             },
25306             removed => {
25307             }
25308             },
25309             5.023007 => {
25310             delta_from => 5.023006,
25311             changed => {
25312             },
25313             removed => {
25314             }
25315             },
25316             5.023008 => {
25317             delta_from => 5.023007,
25318             changed => {
25319             },
25320             removed => {
25321             }
25322             },
25323             5.023009 => {
25324             delta_from => 5.023008,
25325             changed => {
25326             },
25327             removed => {
25328             }
25329             },
25330             5.022002 => {
25331             delta_from => 5.022001,
25332             changed => {
25333             },
25334             removed => {
25335             }
25336             },
25337             5.024000 => {
25338             delta_from => 5.023009,
25339             changed => {
25340             },
25341             removed => {
25342             }
25343             },
25344             5.025000 => {
25345             delta_from => 5.024,
25346             changed => {
25347             },
25348             removed => {
25349             }
25350             },
25351             5.025001 => {
25352             delta_from => 5.025,
25353             changed => {
25354             },
25355             removed => {
25356             }
25357             },
25358             5.025002 => {
25359             delta_from => 5.025001,
25360             changed => {
25361             },
25362             removed => {
25363             }
25364             },
25365             5.025003 => {
25366             delta_from => 5.025002,
25367             changed => {
25368             },
25369             removed => {
25370             }
25371             },
25372             5.025004 => {
25373             delta_from => 5.025003,
25374             changed => {
25375             },
25376             removed => {
25377             }
25378             },
25379             5.025005 => {
25380             delta_from => 5.025004,
25381             changed => {
25382             },
25383             removed => {
25384             }
25385             },
25386             5.025006 => {
25387             delta_from => 5.025005,
25388             changed => {
25389             },
25390             removed => {
25391             }
25392             },
25393             5.025007 => {
25394             delta_from => 5.025006,
25395             changed => {
25396             },
25397             removed => {
25398             }
25399             },
25400             5.025008 => {
25401             delta_from => 5.025007,
25402             changed => {
25403             },
25404             removed => {
25405             }
25406             },
25407             5.022003 => {
25408             delta_from => 5.022002,
25409             changed => {
25410             },
25411             removed => {
25412             }
25413             },
25414             5.024001 => {
25415             delta_from => 5.024000,
25416             changed => {
25417             },
25418             removed => {
25419             }
25420             },
25421             5.025009 => {
25422             delta_from => 5.025008,
25423             changed => {
25424             },
25425             removed => {
25426             }
25427             },
25428             5.025010 => {
25429             delta_from => 5.025009,
25430             changed => {
25431             },
25432             removed => {
25433             }
25434             },
25435             5.025011 => {
25436             delta_from => 5.025010,
25437             changed => {
25438             },
25439             removed => {
25440             }
25441             },
25442             5.025012 => {
25443             delta_from => 5.025011,
25444             changed => {
25445             },
25446             removed => {
25447             }
25448             },
25449             5.026000 => {
25450             delta_from => 5.025012,
25451             changed => {
25452             },
25453             removed => {
25454             }
25455             },
25456             5.027000 => {
25457             delta_from => 5.026,
25458             changed => {
25459             },
25460             removed => {
25461             }
25462             },
25463             5.027001 => {
25464             delta_from => 5.027,
25465             changed => {
25466             },
25467             removed => {
25468             }
25469             },
25470             5.022004 => {
25471             delta_from => 5.022003,
25472             changed => {
25473             },
25474             removed => {
25475             }
25476             },
25477             5.024002 => {
25478             delta_from => 5.024001,
25479             changed => {
25480             },
25481             removed => {
25482             }
25483             },
25484             5.027002 => {
25485             delta_from => 5.027001,
25486             changed => {
25487             },
25488             removed => {
25489             }
25490             },
25491             5.027003 => {
25492             delta_from => 5.027002,
25493             changed => {
25494             'B::Debug' => '1',
25495             },
25496             removed => {
25497             }
25498             },
25499             5.027004 => {
25500             delta_from => 5.027003,
25501             changed => {
25502             },
25503             removed => {
25504             }
25505             },
25506             5.024003 => {
25507             delta_from => 5.024002,
25508             changed => {
25509             },
25510             removed => {
25511             }
25512             },
25513             5.026001 => {
25514             delta_from => 5.026000,
25515             changed => {
25516             },
25517             removed => {
25518             }
25519             },
25520             5.027005 => {
25521             delta_from => 5.027004,
25522             changed => {
25523             },
25524             removed => {
25525             }
25526             },
25527             5.027006 => {
25528             delta_from => 5.027005,
25529             changed => {
25530             },
25531             removed => {
25532             }
25533             },
25534             5.027007 => {
25535             delta_from => 5.027006,
25536             changed => {
25537             },
25538             removed => {
25539             }
25540             },
25541             5.027008 => {
25542             delta_from => 5.027007,
25543             changed => {
25544             },
25545             removed => {
25546             }
25547             },
25548             5.027009 => {
25549             delta_from => 5.027008,
25550             changed => {
25551             },
25552             removed => {
25553             }
25554             },
25555             5.027010 => {
25556             delta_from => 5.027009,
25557             changed => {
25558             },
25559             removed => {
25560             }
25561             },
25562             5.024004 => {
25563             delta_from => 5.024003,
25564             changed => {
25565             },
25566             removed => {
25567             }
25568             },
25569             5.026002 => {
25570             delta_from => 5.026001,
25571             changed => {
25572             },
25573             removed => {
25574             }
25575             },
25576             5.027011 => {
25577             delta_from => 5.02701,
25578             changed => {
25579             },
25580             removed => {
25581             }
25582             },
25583             5.028000 => {
25584             delta_from => 5.027011,
25585             changed => {
25586             },
25587             removed => {
25588             }
25589             },
25590             5.029000 => {
25591             delta_from => 5.028,
25592             changed => {
25593             },
25594             removed => {
25595             }
25596             },
25597             5.029001 => {
25598             delta_from => 5.029,
25599             changed => {
25600             },
25601             removed => {
25602             }
25603             },
25604             5.029002 => {
25605             delta_from => 5.029001,
25606             changed => {
25607             },
25608             removed => {
25609             }
25610             },
25611             5.029003 => {
25612             delta_from => 5.029002,
25613             changed => {
25614             },
25615             removed => {
25616             }
25617             },
25618             5.029004 => {
25619             delta_from => 5.029003,
25620             changed => {
25621             },
25622             removed => {
25623             arybase => '1',
25624             }
25625             },
25626             5.029005 => {
25627             delta_from => 5.027002,
25628             changed => {
25629             },
25630             removed => {
25631             }
25632             },
25633             5.026003 => {
25634             delta_from => 5.026002,
25635             changed => {
25636             },
25637             removed => {
25638             }
25639             },
25640             5.028001 => {
25641             delta_from => 5.028000,
25642             changed => {
25643             },
25644             removed => {
25645             }
25646             },
25647             5.029006 => {
25648             delta_from => 5.029005,
25649             changed => {
25650             },
25651             removed => {
25652             }
25653             },
25654             5.029007 => {
25655             delta_from => 5.029006,
25656             changed => {
25657             },
25658             removed => {
25659             }
25660             },
25661             5.029008 => {
25662             delta_from => 5.029007,
25663             changed => {
25664             },
25665             removed => {
25666             }
25667             },
25668             5.029009 => {
25669             delta_from => 5.029008,
25670             changed => {
25671             },
25672             removed => {
25673             }
25674             },
25675             5.028002 => {
25676             delta_from => 5.028001,
25677             changed => {
25678             },
25679             removed => {
25680             }
25681             },
25682             5.029010 => {
25683             delta_from => 5.029009,
25684             changed => {
25685             },
25686             removed => {
25687             }
25688             },
25689             5.030000 => {
25690             delta_from => 5.02901,
25691             changed => {
25692             },
25693             removed => {
25694             }
25695             },
25696             5.031000 => {
25697             delta_from => 5.030000,
25698             changed => {
25699             },
25700             removed => {
25701             }
25702             },
25703             5.031001 => {
25704             delta_from => 5.031000,
25705             changed => {
25706             },
25707             removed => {
25708             }
25709             },
25710             5.031002 => {
25711             delta_from => 5.031001,
25712             changed => {
25713             },
25714             removed => {
25715             }
25716             },
25717             5.031003 => {
25718             delta_from => 5.031002,
25719             changed => {
25720             },
25721             removed => {
25722             }
25723             },
25724             5.031004 => {
25725             delta_from => 5.031003,
25726             changed => {
25727             },
25728             removed => {
25729             }
25730             },
25731             5.031005 => {
25732             delta_from => 5.031004,
25733             changed => {
25734             },
25735             removed => {
25736             }
25737             },
25738             5.030001 => {
25739             delta_from => 5.030000,
25740             changed => {
25741             },
25742             removed => {
25743             }
25744             },
25745             5.031006 => {
25746             delta_from => 5.031005,
25747             changed => {
25748             },
25749             removed => {
25750             }
25751             },
25752             5.031007 => {
25753             delta_from => 5.031006,
25754             changed => {
25755             },
25756             removed => {
25757             }
25758             },
25759             5.031008 => {
25760             delta_from => 5.031007,
25761             changed => {
25762             },
25763             removed => {
25764             }
25765             },
25766             5.031009 => {
25767             delta_from => 5.031008,
25768             changed => {
25769             },
25770             removed => {
25771             }
25772             },
25773             5.030002 => {
25774             delta_from => 5.030001,
25775             changed => {
25776             },
25777             removed => {
25778             }
25779             },
25780             5.031010 => {
25781             delta_from => 5.031009,
25782             changed => {
25783             },
25784             removed => {
25785             }
25786             },
25787             5.031011 => {
25788             delta_from => 5.03101,
25789             changed => {
25790             },
25791             removed => {
25792             }
25793             },
25794             5.028003 => {
25795             delta_from => 5.028002,
25796             changed => {
25797             },
25798             removed => {
25799             }
25800             },
25801             5.030003 => {
25802             delta_from => 5.030002,
25803             changed => {
25804             },
25805             removed => {
25806             }
25807             },
25808             5.032000 => {
25809             delta_from => 5.031011,
25810             changed => {
25811             },
25812             removed => {
25813             }
25814             },
25815             5.033000 => {
25816             delta_from => 5.032,
25817             changed => {
25818             },
25819             removed => {
25820             }
25821             },
25822             5.033001 => {
25823             delta_from => 5.033000,
25824             changed => {
25825             },
25826             removed => {
25827             }
25828             },
25829             5.033002 => {
25830             delta_from => 5.033001,
25831             changed => {
25832             },
25833             removed => {
25834             }
25835             },
25836             5.033003 => {
25837             delta_from => 5.033002,
25838             changed => {
25839             },
25840             removed => {
25841             }
25842             },
25843             5.033004 => {
25844             delta_from => 5.033003,
25845             changed => {
25846             },
25847             removed => {
25848             }
25849             },
25850             5.033005 => {
25851             delta_from => 5.033004,
25852             changed => {
25853             },
25854             removed => {
25855             }
25856             },
25857             5.033006 => {
25858             delta_from => 5.033005,
25859             changed => {
25860             },
25861             removed => {
25862             }
25863             },
25864             5.032001 => {
25865             delta_from => 5.032,
25866             changed => {
25867             },
25868             removed => {
25869             }
25870             },
25871             5.033007 => {
25872             delta_from => 5.033006,
25873             changed => {
25874             },
25875             removed => {
25876             }
25877             },
25878             5.033008 => {
25879             delta_from => 5.033007,
25880             changed => {
25881             },
25882             removed => {
25883             }
25884             },
25885             5.033009 => {
25886             delta_from => 5.033008,
25887             changed => {
25888             },
25889             removed => {
25890             }
25891             },
25892             5.034000 => {
25893             delta_from => 5.033009,
25894             changed => {
25895             },
25896             removed => {
25897             }
25898             },
25899             5.035000 => {
25900             delta_from => 5.034,
25901             changed => {
25902             },
25903             removed => {
25904             }
25905             },
25906             5.035001 => {
25907             delta_from => 5.035,
25908             changed => {
25909             },
25910             removed => {
25911             }
25912             },
25913             5.035002 => {
25914             delta_from => 5.035001,
25915             changed => {
25916             },
25917             removed => {
25918             }
25919             },
25920             5.035003 => {
25921             delta_from => 5.035002,
25922             changed => {
25923             },
25924             removed => {
25925             }
25926             },
25927             5.035004 => {
25928             delta_from => 5.035003,
25929             changed => {
25930             },
25931             removed => {
25932             }
25933             },
25934             5.035005 => {
25935             delta_from => 5.035004,
25936             changed => {
25937             },
25938             removed => {
25939             }
25940             },
25941             5.035006 => {
25942             delta_from => 5.035005,
25943             changed => {
25944             },
25945             removed => {
25946             }
25947             },
25948             5.035007 => {
25949             delta_from => 5.035006,
25950             changed => {
25951             },
25952             removed => {
25953             }
25954             },
25955             5.035008 => {
25956             delta_from => 5.035007,
25957             changed => {
25958             },
25959             removed => {
25960             }
25961             },
25962             5.035009 => {
25963             delta_from => 5.035008,
25964             changed => {
25965             },
25966             removed => {
25967             }
25968             },
25969             5.034001 => {
25970             delta_from => 5.034000,
25971             changed => {
25972             },
25973             removed => {
25974             }
25975             },
25976             5.035010 => {
25977             delta_from => 5.035009,
25978             changed => {
25979             },
25980             removed => {
25981             }
25982             },
25983             5.035011 => {
25984             delta_from => 5.035010,
25985             changed => {
25986             },
25987             removed => {
25988             }
25989             },
25990             5.036000 => {
25991             delta_from => 5.035011,
25992             changed => {
25993             },
25994             removed => {
25995             }
25996             },
25997             5.037000 => {
25998             delta_from => 5.036000,
25999             changed => {
26000             },
26001             removed => {
26002             }
26003             },
26004             5.037001 => {
26005             delta_from => 5.037000,
26006             changed => {
26007             },
26008             removed => {
26009             }
26010             },
26011             5.037002 => {
26012             delta_from => 5.037001,
26013             changed => {
26014             },
26015             removed => {
26016             }
26017             },
26018             5.037003 => {
26019             delta_from => 5.037002,
26020             changed => {
26021             },
26022             removed => {
26023             }
26024             },
26025             5.037004 => {
26026             delta_from => 5.037003,
26027             changed => {
26028             },
26029             removed => {
26030             }
26031             },
26032             5.037005 => {
26033             delta_from => 5.037004,
26034             changed => {
26035             },
26036             removed => {
26037             }
26038             },
26039             5.037006 => {
26040             delta_from => 5.037005,
26041             changed => {
26042             },
26043             removed => {
26044             }
26045             },
26046             5.037007 => {
26047             delta_from => 5.037006,
26048             changed => {
26049             },
26050             removed => {
26051             }
26052             },
26053             5.037008 => {
26054             delta_from => 5.037007,
26055             changed => {
26056             },
26057             removed => {
26058             }
26059             },
26060             5.037009 => {
26061             delta_from => 5.037008,
26062             changed => {
26063             },
26064             removed => {
26065             }
26066             },
26067             5.037010 => {
26068             delta_from => 5.037009,
26069             changed => {
26070             },
26071             removed => {
26072             }
26073             },
26074             5.037011 => {
26075             delta_from => 5.037010,
26076             changed => {
26077             },
26078             removed => {
26079             }
26080             },
26081             5.036001 => {
26082             delta_from => 5.036,
26083             changed => {
26084             },
26085             removed => {
26086             }
26087             },
26088             5.038000 => {
26089             delta_from => 5.037011,
26090             changed => {
26091             },
26092             removed => {
26093             }
26094             },
26095             5.039001 => {
26096             delta_from => 5.038,
26097             changed => {
26098             },
26099             removed => {
26100             }
26101             },
26102             5.039002 => {
26103             delta_from => 5.039001,
26104             changed => {
26105             },
26106             removed => {
26107             }
26108             },
26109             5.039003 => {
26110             delta_from => 5.039002,
26111             changed => {
26112             },
26113             removed => {
26114             }
26115             },
26116             5.039004 => {
26117             delta_from => 5.039003,
26118             changed => {
26119             },
26120             removed => {
26121             }
26122             },
26123             5.039005 => {
26124             delta_from => 5.039004,
26125             changed => {
26126             },
26127             removed => {
26128             }
26129             },
26130             5.034002 => {
26131             delta_from => 5.034001,
26132             changed => {
26133             },
26134             removed => {
26135             }
26136             },
26137             5.036002 => {
26138             delta_from => 5.036001,
26139             changed => {
26140             },
26141             removed => {
26142             }
26143             },
26144             5.038001 => {
26145             delta_from => 5.038,
26146             changed => {
26147             },
26148             removed => {
26149             }
26150             },
26151             5.034003 => {
26152             delta_from => 5.034002,
26153             changed => {
26154             },
26155             removed => {
26156             }
26157             },
26158             5.036003 => {
26159             delta_from => 5.036002,
26160             changed => {
26161             },
26162             removed => {
26163             }
26164             },
26165             5.038002 => {
26166             delta_from => 5.038001,
26167             changed => {
26168             },
26169             removed => {
26170             }
26171             },
26172             5.039006 => {
26173             delta_from => 5.039005,
26174             changed => {
26175             },
26176             removed => {
26177             }
26178             },
26179             5.039007 => {
26180             delta_from => 5.039006,
26181             changed => {
26182             },
26183             removed => {
26184             }
26185             },
26186             5.039008 => {
26187             delta_from => 5.039007,
26188             changed => {
26189             },
26190             removed => {
26191             }
26192             },
26193             5.039009 => {
26194             delta_from => 5.039008,
26195             changed => {
26196             },
26197             removed => {
26198             }
26199             },
26200             5.039010 => {
26201             delta_from => 5.039009,
26202             changed => {
26203             },
26204             removed => {
26205             }
26206             },
26207             5.040000 => {
26208             delta_from => 5.039010,
26209             changed => {
26210             },
26211             removed => {
26212             }
26213             },
26214             5.041001 => {
26215             delta_from => 5.040000,
26216             changed => {
26217             },
26218             removed => {
26219             }
26220             },
26221             5.041002 => {
26222             delta_from => 5.041001,
26223             changed => {
26224             },
26225             removed => {
26226             }
26227             },
26228             5.041003 => {
26229             delta_from => 5.041002,
26230             changed => {
26231             },
26232             removed => {
26233             }
26234             },
26235             5.041004 => {
26236             delta_from => 5.041003,
26237             changed => {
26238             },
26239             removed => {
26240             }
26241             },
26242             5.041005 => {
26243             delta_from => 5.041004,
26244             changed => {
26245             },
26246             removed => {
26247             }
26248             },
26249             5.041006 => {
26250             delta_from => 5.041005,
26251             changed => {
26252             },
26253             removed => {
26254             }
26255             },
26256             5.041007 => {
26257             delta_from => 5.041006,
26258             changed => {
26259             },
26260             removed => {
26261             }
26262             },
26263             5.038003 => {
26264             delta_from => 5.038002,
26265             changed => {
26266             },
26267             removed => {
26268             }
26269             },
26270             5.040001 => {
26271             delta_from => 5.040000,
26272             changed => {
26273             },
26274             removed => {
26275             }
26276             },
26277             5.041008 => {
26278             delta_from => 5.041007,
26279             changed => {
26280             },
26281             removed => {
26282             }
26283             },
26284             5.041009 => {
26285             delta_from => 5.041008,
26286             changed => {
26287             },
26288             removed => {
26289             }
26290             },
26291             5.041010 => {
26292             delta_from => 5.041009,
26293             changed => {
26294             },
26295             removed => {
26296             }
26297             },
26298             5.038004 => {
26299             delta_from => 5.038003,
26300             changed => {
26301             },
26302             removed => {
26303             }
26304             },
26305             5.040002 => {
26306             delta_from => 5.040001,
26307             changed => {
26308             },
26309             removed => {
26310             }
26311             },
26312             5.041011 => {
26313             delta_from => 5.041010,
26314             changed => {
26315             },
26316             removed => {
26317             }
26318             },
26319             5.041012 => {
26320             delta_from => 5.041011,
26321             changed => {
26322             },
26323             removed => {
26324             }
26325             },
26326             5.041013 => {
26327             delta_from => 5.041012,
26328             changed => {
26329             },
26330             removed => {
26331             }
26332             },
26333             5.042000 => {
26334             delta_from => 5.041013,
26335             changed => {
26336             },
26337             removed => {
26338             }
26339             },
26340             5.043000 => {
26341             delta_from => 5.042,
26342             changed => {
26343             },
26344             removed => {
26345             }
26346             },
26347             5.043001 => {
26348             delta_from => 5.043000,
26349             changed => {
26350             },
26351             removed => {
26352             }
26353             },
26354             5.038005 => {
26355             delta_from => 5.038004,
26356             changed => {
26357             },
26358             removed => {
26359             }
26360             },
26361             5.040003 => {
26362             delta_from => 5.040002,
26363             changed => {
26364             },
26365             removed => {
26366             }
26367             },
26368             5.043002 => {
26369             delta_from => 5.043001,
26370             changed => {
26371             },
26372             removed => {
26373             }
26374             },
26375             5.043003 => {
26376             delta_from => 5.043002,
26377             changed => {
26378             },
26379             removed => {
26380             }
26381             },
26382             5.043004 => {
26383             delta_from => 5.043003,
26384             changed => {
26385             },
26386             removed => {
26387             }
26388             },
26389             5.043005 => {
26390             delta_from => 5.043004,
26391             changed => {
26392             },
26393             removed => {
26394             }
26395             },
26396             5.043006 => {
26397             delta_from => 5.043005,
26398             changed => {
26399             },
26400             removed => {
26401             }
26402             },
26403             5.043007 => {
26404             delta_from => 5.043006,
26405             changed => {
26406             },
26407             removed => {
26408             }
26409             },
26410             5.043008 => {
26411             delta_from => 5.043007,
26412             changed => {
26413             },
26414             removed => {
26415             }
26416             },
26417             5.042001 => {
26418             delta_from => 5.042,
26419             changed => {
26420             },
26421             removed => {
26422             }
26423             },
26424             5.043009 => {
26425             delta_from => 5.043008,
26426             changed => {
26427             },
26428             removed => {
26429             }
26430             },
26431             5.040004 => {
26432             delta_from => 5.040003,
26433             changed => {
26434             },
26435             removed => {
26436             }
26437             },
26438             5.042002 => {
26439             delta_from => 5.042001,
26440             changed => {
26441             },
26442             removed => {
26443             }
26444             },
26445             5.043010 => {
26446             delta_from => 5.043009,
26447             changed => {
26448             },
26449             removed => {
26450             }
26451             },
26452             );
26453              
26454             %deprecated = _undelta(\%deprecated);
26455              
26456             %upstream = (
26457             'App::Cpan' => 'cpan',
26458             'App::Prove' => 'cpan',
26459             'App::Prove::State' => 'cpan',
26460             'App::Prove::State::Result'=> 'cpan',
26461             'App::Prove::State::Result::Test'=> 'cpan',
26462             'Archive::Tar' => 'cpan',
26463             'Archive::Tar::Constant'=> 'cpan',
26464             'Archive::Tar::File' => 'cpan',
26465             'AutoLoader' => 'cpan',
26466             'AutoSplit' => 'cpan',
26467             'CPAN' => 'cpan',
26468             'CPAN::Author' => 'cpan',
26469             'CPAN::Bundle' => 'cpan',
26470             'CPAN::CacheMgr' => 'cpan',
26471             'CPAN::Complete' => 'cpan',
26472             'CPAN::Debug' => 'cpan',
26473             'CPAN::DeferredCode' => 'cpan',
26474             'CPAN::Distribution' => 'cpan',
26475             'CPAN::Distroprefs' => 'cpan',
26476             'CPAN::Distrostatus' => 'cpan',
26477             'CPAN::Exception::RecursiveDependency'=> 'cpan',
26478             'CPAN::Exception::blocked_urllist'=> 'cpan',
26479             'CPAN::Exception::yaml_not_installed'=> 'cpan',
26480             'CPAN::Exception::yaml_process_error'=> 'cpan',
26481             'CPAN::FTP' => 'cpan',
26482             'CPAN::FTP::netrc' => 'cpan',
26483             'CPAN::FirstTime' => 'cpan',
26484             'CPAN::HTTP::Client' => 'cpan',
26485             'CPAN::HTTP::Credentials'=> 'cpan',
26486             'CPAN::HandleConfig' => 'cpan',
26487             'CPAN::Index' => 'cpan',
26488             'CPAN::InfoObj' => 'cpan',
26489             'CPAN::Kwalify' => 'cpan',
26490             'CPAN::LWP::UserAgent' => 'cpan',
26491             'CPAN::Meta' => 'cpan',
26492             'CPAN::Meta::Converter' => 'cpan',
26493             'CPAN::Meta::Feature' => 'cpan',
26494             'CPAN::Meta::History' => 'cpan',
26495             'CPAN::Meta::Merge' => 'cpan',
26496             'CPAN::Meta::Prereqs' => 'cpan',
26497             'CPAN::Meta::Requirements'=> 'cpan',
26498             'CPAN::Meta::Requirements::Range'=> 'cpan',
26499             'CPAN::Meta::Spec' => 'cpan',
26500             'CPAN::Meta::Validator' => 'cpan',
26501             'CPAN::Meta::YAML' => 'cpan',
26502             'CPAN::Mirrors' => 'cpan',
26503             'CPAN::Module' => 'cpan',
26504             'CPAN::Nox' => 'cpan',
26505             'CPAN::Plugin' => 'cpan',
26506             'CPAN::Plugin::Specfile'=> 'cpan',
26507             'CPAN::Prompt' => 'cpan',
26508             'CPAN::Queue' => 'cpan',
26509             'CPAN::Shell' => 'cpan',
26510             'CPAN::Tarzip' => 'cpan',
26511             'CPAN::URL' => 'cpan',
26512             'CPAN::Version' => 'cpan',
26513             'Compress::Raw::Bzip2' => 'cpan',
26514             'Compress::Raw::Zlib' => 'cpan',
26515             'Compress::Zlib' => 'cpan',
26516             'Config::Perl::V' => 'cpan',
26517             'DB_File' => 'cpan',
26518             'Digest' => 'cpan',
26519             'Digest::MD5' => 'cpan',
26520             'Digest::SHA' => 'cpan',
26521             'Digest::base' => 'cpan',
26522             'Digest::file' => 'cpan',
26523             'Encode' => 'cpan',
26524             'Encode::Alias' => 'cpan',
26525             'Encode::Byte' => 'cpan',
26526             'Encode::CJKConstants' => 'cpan',
26527             'Encode::CN' => 'cpan',
26528             'Encode::CN::HZ' => 'cpan',
26529             'Encode::Config' => 'cpan',
26530             'Encode::EBCDIC' => 'cpan',
26531             'Encode::Encoder' => 'cpan',
26532             'Encode::Encoding' => 'cpan',
26533             'Encode::GSM0338' => 'cpan',
26534             'Encode::Guess' => 'cpan',
26535             'Encode::JP' => 'cpan',
26536             'Encode::JP::H2Z' => 'cpan',
26537             'Encode::JP::JIS7' => 'cpan',
26538             'Encode::KR' => 'cpan',
26539             'Encode::KR::2022_KR' => 'cpan',
26540             'Encode::MIME::Header' => 'cpan',
26541             'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
26542             'Encode::MIME::Name' => 'cpan',
26543             'Encode::Symbol' => 'cpan',
26544             'Encode::TW' => 'cpan',
26545             'Encode::Unicode' => 'cpan',
26546             'Encode::Unicode::UTF7' => 'cpan',
26547             'ExtUtils::Command' => 'cpan',
26548             'ExtUtils::Command::MM' => 'cpan',
26549             'ExtUtils::Constant' => 'cpan',
26550             'ExtUtils::Constant::Base'=> 'cpan',
26551             'ExtUtils::Constant::ProxySubs'=> 'cpan',
26552             'ExtUtils::Constant::Utils'=> 'cpan',
26553             'ExtUtils::Constant::XS'=> 'cpan',
26554             'ExtUtils::Install' => 'cpan',
26555             'ExtUtils::Installed' => 'cpan',
26556             'ExtUtils::Liblist' => 'cpan',
26557             'ExtUtils::Liblist::Kid'=> 'cpan',
26558             'ExtUtils::MM' => 'cpan',
26559             'ExtUtils::MM_AIX' => 'cpan',
26560             'ExtUtils::MM_Any' => 'cpan',
26561             'ExtUtils::MM_BeOS' => 'cpan',
26562             'ExtUtils::MM_Cygwin' => 'cpan',
26563             'ExtUtils::MM_DOS' => 'cpan',
26564             'ExtUtils::MM_Darwin' => 'cpan',
26565             'ExtUtils::MM_MacOS' => 'cpan',
26566             'ExtUtils::MM_NW5' => 'cpan',
26567             'ExtUtils::MM_OS2' => 'cpan',
26568             'ExtUtils::MM_OS390' => 'cpan',
26569             'ExtUtils::MM_QNX' => 'cpan',
26570             'ExtUtils::MM_UWIN' => 'cpan',
26571             'ExtUtils::MM_Unix' => 'cpan',
26572             'ExtUtils::MM_VMS' => 'cpan',
26573             'ExtUtils::MM_VOS' => 'cpan',
26574             'ExtUtils::MM_Win32' => 'cpan',
26575             'ExtUtils::MM_Win95' => 'cpan',
26576             'ExtUtils::MY' => 'cpan',
26577             'ExtUtils::MakeMaker' => 'cpan',
26578             'ExtUtils::MakeMaker::Config'=> 'cpan',
26579             'ExtUtils::MakeMaker::Locale'=> 'cpan',
26580             'ExtUtils::MakeMaker::version'=> 'cpan',
26581             'ExtUtils::MakeMaker::version::regex'=> 'cpan',
26582             'ExtUtils::Manifest' => 'cpan',
26583             'ExtUtils::Mkbootstrap' => 'cpan',
26584             'ExtUtils::Mksymlists' => 'cpan',
26585             'ExtUtils::PL2Bat' => 'cpan',
26586             'ExtUtils::Packlist' => 'cpan',
26587             'ExtUtils::testlib' => 'cpan',
26588             'Fatal' => 'cpan',
26589             'File::Fetch' => 'cpan',
26590             'File::GlobMapper' => 'cpan',
26591             'File::Path' => 'cpan',
26592             'File::Temp' => 'cpan',
26593             'Filter::Util::Call' => 'cpan',
26594             'Getopt::Long' => 'cpan',
26595             'Getopt::Long::Parser' => 'cpan',
26596             'HTTP::Tiny' => 'cpan',
26597             'IO::Compress' => 'cpan',
26598             'IO::Compress::Adapter::Bzip2'=> 'cpan',
26599             'IO::Compress::Adapter::Deflate'=> 'cpan',
26600             'IO::Compress::Adapter::Identity'=> 'cpan',
26601             'IO::Compress::Base' => 'cpan',
26602             'IO::Compress::Base::Common'=> 'cpan',
26603             'IO::Compress::Bzip2' => 'cpan',
26604             'IO::Compress::Deflate' => 'cpan',
26605             'IO::Compress::Gzip' => 'cpan',
26606             'IO::Compress::Gzip::Constants'=> 'cpan',
26607             'IO::Compress::RawDeflate'=> 'cpan',
26608             'IO::Compress::Zip' => 'cpan',
26609             'IO::Compress::Zip::Constants'=> 'cpan',
26610             'IO::Compress::Zlib::Constants'=> 'cpan',
26611             'IO::Compress::Zlib::Extra'=> 'cpan',
26612             'IO::Socket::IP' => 'cpan',
26613             'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
26614             'IO::Uncompress::Adapter::Identity'=> 'cpan',
26615             'IO::Uncompress::Adapter::Inflate'=> 'cpan',
26616             'IO::Uncompress::AnyInflate'=> 'cpan',
26617             'IO::Uncompress::AnyUncompress'=> 'cpan',
26618             'IO::Uncompress::Base' => 'cpan',
26619             'IO::Uncompress::Bunzip2'=> 'cpan',
26620             'IO::Uncompress::Gunzip'=> 'cpan',
26621             'IO::Uncompress::Inflate'=> 'cpan',
26622             'IO::Uncompress::RawInflate'=> 'cpan',
26623             'IO::Uncompress::Unzip' => 'cpan',
26624             'IO::Zlib' => 'cpan',
26625             'IPC::Cmd' => 'cpan',
26626             'IPC::Msg' => 'cpan',
26627             'IPC::Semaphore' => 'cpan',
26628             'IPC::SharedMem' => 'cpan',
26629             'IPC::SysV' => 'cpan',
26630             'JSON::PP' => 'cpan',
26631             'JSON::PP::Boolean' => 'cpan',
26632             'List::Util' => 'cpan',
26633             'List::Util::XS' => 'cpan',
26634             'Locale::Maketext::Simple'=> 'cpan',
26635             'MIME::Base64' => 'cpan',
26636             'MIME::QuotedPrint' => 'cpan',
26637             'Math::BigFloat' => 'cpan',
26638             'Math::BigFloat::Trace' => 'cpan',
26639             'Math::BigInt' => 'cpan',
26640             'Math::BigInt::Calc' => 'cpan',
26641             'Math::BigInt::FastCalc'=> 'cpan',
26642             'Math::BigInt::Lib' => 'cpan',
26643             'Math::BigInt::Trace' => 'cpan',
26644             'Math::BigRat' => 'cpan',
26645             'Math::BigRat::Trace' => 'cpan',
26646             'Memoize' => 'cpan',
26647             'Memoize::AnyDBM_File' => 'cpan',
26648             'Memoize::Expire' => 'cpan',
26649             'Memoize::NDBM_File' => 'cpan',
26650             'Memoize::SDBM_File' => 'cpan',
26651             'Memoize::Storable' => 'cpan',
26652             'Module::Load' => 'cpan',
26653             'Module::Load::Conditional'=> 'cpan',
26654             'Module::Loaded' => 'cpan',
26655             'Module::Metadata' => 'cpan',
26656             'NEXT' => 'cpan',
26657             'Net::Cmd' => 'cpan',
26658             'Net::Config' => 'cpan',
26659             'Net::Domain' => 'cpan',
26660             'Net::FTP' => 'cpan',
26661             'Net::FTP::A' => 'cpan',
26662             'Net::FTP::E' => 'cpan',
26663             'Net::FTP::I' => 'cpan',
26664             'Net::FTP::L' => 'cpan',
26665             'Net::FTP::dataconn' => 'cpan',
26666             'Net::NNTP' => 'cpan',
26667             'Net::Netrc' => 'cpan',
26668             'Net::POP3' => 'cpan',
26669             'Net::SMTP' => 'cpan',
26670             'Net::Time' => 'cpan',
26671             'Params::Check' => 'cpan',
26672             'Parse::CPAN::Meta' => 'cpan',
26673             'Perl::OSType' => 'cpan',
26674             'PerlIO::via::QuotedPrint'=> 'cpan',
26675             'Pod::Checker' => 'cpan',
26676             'Pod::Escapes' => 'cpan',
26677             'Pod::Man' => 'cpan',
26678             'Pod::ParseLink' => 'cpan',
26679             'Pod::Perldoc' => 'cpan',
26680             'Pod::Perldoc::BaseTo' => 'cpan',
26681             'Pod::Perldoc::GetOptsOO'=> 'cpan',
26682             'Pod::Perldoc::ToANSI' => 'cpan',
26683             'Pod::Perldoc::ToChecker'=> 'cpan',
26684             'Pod::Perldoc::ToMan' => 'cpan',
26685             'Pod::Perldoc::ToNroff' => 'cpan',
26686             'Pod::Perldoc::ToPod' => 'cpan',
26687             'Pod::Perldoc::ToRtf' => 'cpan',
26688             'Pod::Perldoc::ToTerm' => 'cpan',
26689             'Pod::Perldoc::ToText' => 'cpan',
26690             'Pod::Perldoc::ToTk' => 'cpan',
26691             'Pod::Perldoc::ToXml' => 'cpan',
26692             'Pod::Simple' => 'cpan',
26693             'Pod::Simple::BlackBox' => 'cpan',
26694             'Pod::Simple::Checker' => 'cpan',
26695             'Pod::Simple::Debug' => 'cpan',
26696             'Pod::Simple::DumpAsText'=> 'cpan',
26697             'Pod::Simple::DumpAsXML'=> 'cpan',
26698             'Pod::Simple::HTML' => 'cpan',
26699             'Pod::Simple::HTMLBatch'=> 'cpan',
26700             'Pod::Simple::HTMLLegacy'=> 'cpan',
26701             'Pod::Simple::JustPod' => 'cpan',
26702             'Pod::Simple::LinkSection'=> 'cpan',
26703             'Pod::Simple::Methody' => 'cpan',
26704             'Pod::Simple::Progress' => 'cpan',
26705             'Pod::Simple::PullParser'=> 'cpan',
26706             'Pod::Simple::PullParserEndToken'=> 'cpan',
26707             'Pod::Simple::PullParserStartToken'=> 'cpan',
26708             'Pod::Simple::PullParserTextToken'=> 'cpan',
26709             'Pod::Simple::PullParserToken'=> 'cpan',
26710             'Pod::Simple::RTF' => 'cpan',
26711             'Pod::Simple::Search' => 'cpan',
26712             'Pod::Simple::SimpleTree'=> 'cpan',
26713             'Pod::Simple::Text' => 'cpan',
26714             'Pod::Simple::TextContent'=> 'cpan',
26715             'Pod::Simple::TiedOutFH'=> 'cpan',
26716             'Pod::Simple::Transcode'=> 'cpan',
26717             'Pod::Simple::TranscodeDumb'=> 'cpan',
26718             'Pod::Simple::TranscodeSmart'=> 'cpan',
26719             'Pod::Simple::XHTML' => 'cpan',
26720             'Pod::Simple::XMLOutStream'=> 'cpan',
26721             'Pod::Text' => 'cpan',
26722             'Pod::Text::Color' => 'cpan',
26723             'Pod::Text::Overstrike' => 'cpan',
26724             'Pod::Text::Termcap' => 'cpan',
26725             'Pod::Usage' => 'cpan',
26726             'Scalar::List::Utils' => 'cpan',
26727             'Scalar::Util' => 'cpan',
26728             'Socket' => 'cpan',
26729             'Sub::Util' => 'cpan',
26730             'Sys::Syslog' => 'cpan',
26731             'Sys::Syslog::Win32' => 'cpan',
26732             'TAP::Base' => 'cpan',
26733             'TAP::Formatter::Base' => 'cpan',
26734             'TAP::Formatter::Color' => 'cpan',
26735             'TAP::Formatter::Console'=> 'cpan',
26736             'TAP::Formatter::Console::ParallelSession'=> 'cpan',
26737             'TAP::Formatter::Console::Session'=> 'cpan',
26738             'TAP::Formatter::File' => 'cpan',
26739             'TAP::Formatter::File::Session'=> 'cpan',
26740             'TAP::Formatter::Session'=> 'cpan',
26741             'TAP::Harness' => 'cpan',
26742             'TAP::Harness::Env' => 'cpan',
26743             'TAP::Object' => 'cpan',
26744             'TAP::Parser' => 'cpan',
26745             'TAP::Parser::Aggregator'=> 'cpan',
26746             'TAP::Parser::Grammar' => 'cpan',
26747             'TAP::Parser::Iterator' => 'cpan',
26748             'TAP::Parser::Iterator::Array'=> 'cpan',
26749             'TAP::Parser::Iterator::Process'=> 'cpan',
26750             'TAP::Parser::Iterator::Stream'=> 'cpan',
26751             'TAP::Parser::IteratorFactory'=> 'cpan',
26752             'TAP::Parser::Multiplexer'=> 'cpan',
26753             'TAP::Parser::Result' => 'cpan',
26754             'TAP::Parser::Result::Bailout'=> 'cpan',
26755             'TAP::Parser::Result::Comment'=> 'cpan',
26756             'TAP::Parser::Result::Plan'=> 'cpan',
26757             'TAP::Parser::Result::Pragma'=> 'cpan',
26758             'TAP::Parser::Result::Test'=> 'cpan',
26759             'TAP::Parser::Result::Unknown'=> 'cpan',
26760             'TAP::Parser::Result::Version'=> 'cpan',
26761             'TAP::Parser::Result::YAML'=> 'cpan',
26762             'TAP::Parser::ResultFactory'=> 'cpan',
26763             'TAP::Parser::Scheduler'=> 'cpan',
26764             'TAP::Parser::Scheduler::Job'=> 'cpan',
26765             'TAP::Parser::Scheduler::Spinner'=> 'cpan',
26766             'TAP::Parser::Source' => 'cpan',
26767             'TAP::Parser::SourceHandler'=> 'cpan',
26768             'TAP::Parser::SourceHandler::Executable'=> 'cpan',
26769             'TAP::Parser::SourceHandler::File'=> 'cpan',
26770             'TAP::Parser::SourceHandler::Handle'=> 'cpan',
26771             'TAP::Parser::SourceHandler::Perl'=> 'cpan',
26772             'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
26773             'TAP::Parser::YAMLish::Reader'=> 'cpan',
26774             'TAP::Parser::YAMLish::Writer'=> 'cpan',
26775             'Term::ANSIColor' => 'cpan',
26776             'Term::Cap' => 'cpan',
26777             'Term::Table' => 'cpan',
26778             'Term::Table::Cell' => 'cpan',
26779             'Term::Table::CellStack'=> 'cpan',
26780             'Term::Table::HashBase' => 'cpan',
26781             'Term::Table::LineBreak'=> 'cpan',
26782             'Term::Table::Spacer' => 'cpan',
26783             'Term::Table::Util' => 'cpan',
26784             'Test2' => 'cpan',
26785             'Test2::API' => 'cpan',
26786             'Test2::API::Breakage' => 'cpan',
26787             'Test2::API::Context' => 'cpan',
26788             'Test2::API::Instance' => 'cpan',
26789             'Test2::API::InterceptResult'=> 'cpan',
26790             'Test2::API::InterceptResult::Event'=> 'cpan',
26791             'Test2::API::InterceptResult::Facet'=> 'cpan',
26792             'Test2::API::InterceptResult::Hub'=> 'cpan',
26793             'Test2::API::InterceptResult::Squasher'=> 'cpan',
26794             'Test2::API::Stack' => 'cpan',
26795             'Test2::AsyncSubtest' => 'cpan',
26796             'Test2::AsyncSubtest::Event::Attach'=> 'cpan',
26797             'Test2::AsyncSubtest::Event::Detach'=> 'cpan',
26798             'Test2::AsyncSubtest::Formatter'=> 'cpan',
26799             'Test2::AsyncSubtest::Hub'=> 'cpan',
26800             'Test2::Bundle' => 'cpan',
26801             'Test2::Bundle::Extended'=> 'cpan',
26802             'Test2::Bundle::More' => 'cpan',
26803             'Test2::Bundle::Simple' => 'cpan',
26804             'Test2::Compare' => 'cpan',
26805             'Test2::Compare::Array' => 'cpan',
26806             'Test2::Compare::Bag' => 'cpan',
26807             'Test2::Compare::Base' => 'cpan',
26808             'Test2::Compare::Bool' => 'cpan',
26809             'Test2::Compare::Custom'=> 'cpan',
26810             'Test2::Compare::DeepRef'=> 'cpan',
26811             'Test2::Compare::Delta' => 'cpan',
26812             'Test2::Compare::Event' => 'cpan',
26813             'Test2::Compare::EventMeta'=> 'cpan',
26814             'Test2::Compare::Float' => 'cpan',
26815             'Test2::Compare::Hash' => 'cpan',
26816             'Test2::Compare::Isa' => 'cpan',
26817             'Test2::Compare::Meta' => 'cpan',
26818             'Test2::Compare::Negatable'=> 'cpan',
26819             'Test2::Compare::Number'=> 'cpan',
26820             'Test2::Compare::Object'=> 'cpan',
26821             'Test2::Compare::OrderedSubset'=> 'cpan',
26822             'Test2::Compare::Pattern'=> 'cpan',
26823             'Test2::Compare::Ref' => 'cpan',
26824             'Test2::Compare::Regex' => 'cpan',
26825             'Test2::Compare::Scalar'=> 'cpan',
26826             'Test2::Compare::Set' => 'cpan',
26827             'Test2::Compare::String'=> 'cpan',
26828             'Test2::Compare::Undef' => 'cpan',
26829             'Test2::Compare::Wildcard'=> 'cpan',
26830             'Test2::Env' => 'cpan',
26831             'Test2::Event' => 'cpan',
26832             'Test2::Event::Bail' => 'cpan',
26833             'Test2::Event::Diag' => 'cpan',
26834             'Test2::Event::Encoding'=> 'cpan',
26835             'Test2::Event::Exception'=> 'cpan',
26836             'Test2::Event::Fail' => 'cpan',
26837             'Test2::Event::Generic' => 'cpan',
26838             'Test2::Event::Note' => 'cpan',
26839             'Test2::Event::Ok' => 'cpan',
26840             'Test2::Event::Pass' => 'cpan',
26841             'Test2::Event::Plan' => 'cpan',
26842             'Test2::Event::Skip' => 'cpan',
26843             'Test2::Event::Subtest' => 'cpan',
26844             'Test2::Event::TAP::Version'=> 'cpan',
26845             'Test2::Event::V2' => 'cpan',
26846             'Test2::Event::Waiting' => 'cpan',
26847             'Test2::EventFacet' => 'cpan',
26848             'Test2::EventFacet::About'=> 'cpan',
26849             'Test2::EventFacet::Amnesty'=> 'cpan',
26850             'Test2::EventFacet::Assert'=> 'cpan',
26851             'Test2::EventFacet::Control'=> 'cpan',
26852             'Test2::EventFacet::Error'=> 'cpan',
26853             'Test2::EventFacet::Hub'=> 'cpan',
26854             'Test2::EventFacet::Info'=> 'cpan',
26855             'Test2::EventFacet::Info::Table'=> 'cpan',
26856             'Test2::EventFacet::Meta'=> 'cpan',
26857             'Test2::EventFacet::Parent'=> 'cpan',
26858             'Test2::EventFacet::Plan'=> 'cpan',
26859             'Test2::EventFacet::Render'=> 'cpan',
26860             'Test2::EventFacet::Trace'=> 'cpan',
26861             'Test2::Formatter' => 'cpan',
26862             'Test2::Formatter::TAP' => 'cpan',
26863             'Test2::Handle' => 'cpan',
26864             'Test2::Hub' => 'cpan',
26865             'Test2::Hub::Interceptor'=> 'cpan',
26866             'Test2::Hub::Interceptor::Terminator'=> 'cpan',
26867             'Test2::Hub::Subtest' => 'cpan',
26868             'Test2::IPC' => 'cpan',
26869             'Test2::IPC::Driver' => 'cpan',
26870             'Test2::IPC::Driver::Files'=> 'cpan',
26871             'Test2::Manual' => 'cpan',
26872             'Test2::Manual::Anatomy'=> 'cpan',
26873             'Test2::Manual::Anatomy::API'=> 'cpan',
26874             'Test2::Manual::Anatomy::Context'=> 'cpan',
26875             'Test2::Manual::Anatomy::EndToEnd'=> 'cpan',
26876             'Test2::Manual::Anatomy::Event'=> 'cpan',
26877             'Test2::Manual::Anatomy::Hubs'=> 'cpan',
26878             'Test2::Manual::Anatomy::IPC'=> 'cpan',
26879             'Test2::Manual::Anatomy::Utilities'=> 'cpan',
26880             'Test2::Manual::Concurrency'=> 'cpan',
26881             'Test2::Manual::Contributing'=> 'cpan',
26882             'Test2::Manual::Testing'=> 'cpan',
26883             'Test2::Manual::Testing::Introduction'=> 'cpan',
26884             'Test2::Manual::Testing::Migrating'=> 'cpan',
26885             'Test2::Manual::Testing::Planning'=> 'cpan',
26886             'Test2::Manual::Testing::Todo'=> 'cpan',
26887             'Test2::Manual::Tooling'=> 'cpan',
26888             'Test2::Manual::Tooling::FirstTool'=> 'cpan',
26889             'Test2::Manual::Tooling::Formatter'=> 'cpan',
26890             'Test2::Manual::Tooling::Nesting'=> 'cpan',
26891             'Test2::Manual::Tooling::Plugin::TestExit'=> 'cpan',
26892             'Test2::Manual::Tooling::Plugin::TestingDone'=> 'cpan',
26893             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> 'cpan',
26894             'Test2::Manual::Tooling::Plugin::ToolStarts'=> 'cpan',
26895             'Test2::Manual::Tooling::Subtest'=> 'cpan',
26896             'Test2::Manual::Tooling::TestBuilder'=> 'cpan',
26897             'Test2::Manual::Tooling::Testing'=> 'cpan',
26898             'Test2::Mock' => 'cpan',
26899             'Test2::Plugin' => 'cpan',
26900             'Test2::Plugin::BailOnFail'=> 'cpan',
26901             'Test2::Plugin::DieOnFail'=> 'cpan',
26902             'Test2::Plugin::ExitSummary'=> 'cpan',
26903             'Test2::Plugin::SRand' => 'cpan',
26904             'Test2::Plugin::Times' => 'cpan',
26905             'Test2::Plugin::UTF8' => 'cpan',
26906             'Test2::Require' => 'cpan',
26907             'Test2::Require::AuthorTesting'=> 'cpan',
26908             'Test2::Require::AutomatedTesting'=> 'cpan',
26909             'Test2::Require::EnvVar'=> 'cpan',
26910             'Test2::Require::ExtendedTesting'=> 'cpan',
26911             'Test2::Require::Fork' => 'cpan',
26912             'Test2::Require::Module'=> 'cpan',
26913             'Test2::Require::NonInteractiveTesting'=> 'cpan',
26914             'Test2::Require::Perl' => 'cpan',
26915             'Test2::Require::RealFork'=> 'cpan',
26916             'Test2::Require::ReleaseTesting'=> 'cpan',
26917             'Test2::Require::Threads'=> 'cpan',
26918             'Test2::Suite' => 'cpan',
26919             'Test2::Todo' => 'cpan',
26920             'Test2::Tools' => 'cpan',
26921             'Test2::Tools::AsyncSubtest'=> 'cpan',
26922             'Test2::Tools::Basic' => 'cpan',
26923             'Test2::Tools::Class' => 'cpan',
26924             'Test2::Tools::ClassicCompare'=> 'cpan',
26925             'Test2::Tools::Compare' => 'cpan',
26926             'Test2::Tools::Defer' => 'cpan',
26927             'Test2::Tools::Encoding'=> 'cpan',
26928             'Test2::Tools::Event' => 'cpan',
26929             'Test2::Tools::Exception'=> 'cpan',
26930             'Test2::Tools::Exports' => 'cpan',
26931             'Test2::Tools::GenTemp' => 'cpan',
26932             'Test2::Tools::Grab' => 'cpan',
26933             'Test2::Tools::Mock' => 'cpan',
26934             'Test2::Tools::Ref' => 'cpan',
26935             'Test2::Tools::Refcount'=> 'cpan',
26936             'Test2::Tools::Spec' => 'cpan',
26937             'Test2::Tools::Subtest' => 'cpan',
26938             'Test2::Tools::Target' => 'cpan',
26939             'Test2::Tools::Tester' => 'cpan',
26940             'Test2::Tools::Tiny' => 'cpan',
26941             'Test2::Tools::Warnings'=> 'cpan',
26942             'Test2::Util' => 'cpan',
26943             'Test2::Util::ExternalMeta'=> 'cpan',
26944             'Test2::Util::Facets2Legacy'=> 'cpan',
26945             'Test2::Util::Grabber' => 'cpan',
26946             'Test2::Util::Guard' => 'cpan',
26947             'Test2::Util::HashBase' => 'cpan',
26948             'Test2::Util::Importer' => 'cpan',
26949             'Test2::Util::Ref' => 'cpan',
26950             'Test2::Util::Sig' => 'cpan',
26951             'Test2::Util::Stash' => 'cpan',
26952             'Test2::Util::Sub' => 'cpan',
26953             'Test2::Util::Table' => 'cpan',
26954             'Test2::Util::Table::Cell'=> 'cpan',
26955             'Test2::Util::Table::LineBreak'=> 'cpan',
26956             'Test2::Util::Term' => 'cpan',
26957             'Test2::Util::Times' => 'cpan',
26958             'Test2::Util::Trace' => 'cpan',
26959             'Test2::V0' => 'cpan',
26960             'Test2::V1' => 'cpan',
26961             'Test2::V1::Base' => 'cpan',
26962             'Test2::V1::Handle' => 'cpan',
26963             'Test2::Workflow' => 'cpan',
26964             'Test2::Workflow::BlockBase'=> 'cpan',
26965             'Test2::Workflow::Build'=> 'cpan',
26966             'Test2::Workflow::Runner'=> 'cpan',
26967             'Test2::Workflow::Task' => 'cpan',
26968             'Test2::Workflow::Task::Action'=> 'cpan',
26969             'Test2::Workflow::Task::Group'=> 'cpan',
26970             'Test::Builder' => 'cpan',
26971             'Test::Builder::Formatter'=> 'cpan',
26972             'Test::Builder::Module' => 'cpan',
26973             'Test::Builder::Tester' => 'cpan',
26974             'Test::Builder::Tester::Color'=> 'cpan',
26975             'Test::Builder::TodoDiag'=> 'cpan',
26976             'Test::Harness' => 'cpan',
26977             'Test::More' => 'cpan',
26978             'Test::Simple' => 'cpan',
26979             'Test::Tester' => 'cpan',
26980             'Test::Tester::Capture' => 'cpan',
26981             'Test::Tester::CaptureRunner'=> 'cpan',
26982             'Test::Tester::Delegate'=> 'cpan',
26983             'Test::use::ok' => 'cpan',
26984             'Text::Balanced' => 'cpan',
26985             'Text::ParseWords' => 'cpan',
26986             'Text::Tabs' => 'cpan',
26987             'Text::Wrap' => 'cpan',
26988             'Tie::RefHash' => 'cpan',
26989             'Time::Local' => 'cpan',
26990             'Time::Piece' => 'cpan',
26991             'Time::Seconds' => 'cpan',
26992             'Unicode::Collate' => 'cpan',
26993             'Unicode::Collate::CJK::Big5'=> 'cpan',
26994             'Unicode::Collate::CJK::GB2312'=> 'cpan',
26995             'Unicode::Collate::CJK::JISX0208'=> 'cpan',
26996             'Unicode::Collate::CJK::Korean'=> 'cpan',
26997             'Unicode::Collate::CJK::Pinyin'=> 'cpan',
26998             'Unicode::Collate::CJK::Stroke'=> 'cpan',
26999             'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
27000             'Unicode::Collate::Locale'=> 'cpan',
27001             'Win32' => 'cpan',
27002             'Win32API::File' => 'cpan',
27003             'autodie' => 'cpan',
27004             'autodie::Scope::Guard' => 'cpan',
27005             'autodie::Scope::GuardStack'=> 'cpan',
27006             'autodie::Util' => 'cpan',
27007             'autodie::exception' => 'cpan',
27008             'autodie::exception::system'=> 'cpan',
27009             'autodie::hints' => 'cpan',
27010             'autodie::skip' => 'cpan',
27011             'bigfloat' => 'cpan',
27012             'bigint' => 'cpan',
27013             'bignum' => 'cpan',
27014             'bigrat' => 'cpan',
27015             'encoding' => 'cpan',
27016             'experimental' => 'cpan',
27017             'ok' => 'cpan',
27018             'parent' => 'cpan',
27019             'perlfaq' => 'cpan',
27020             'stable' => 'cpan',
27021             'version' => 'cpan',
27022             'version::regex' => 'cpan',
27023             );
27024              
27025             %bug_tracker = (
27026             'App::Cpan' => undef,
27027             'App::Prove' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27028             'App::Prove::State' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27029             'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27030             'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27031             'Archive::Tar' => undef,
27032             'Archive::Tar::Constant'=> undef,
27033             'Archive::Tar::File' => undef,
27034             'CPAN' => undef,
27035             'CPAN::Author' => undef,
27036             'CPAN::Bundle' => undef,
27037             'CPAN::CacheMgr' => undef,
27038             'CPAN::Complete' => undef,
27039             'CPAN::Debug' => undef,
27040             'CPAN::DeferredCode' => undef,
27041             'CPAN::Distribution' => undef,
27042             'CPAN::Distroprefs' => undef,
27043             'CPAN::Distrostatus' => undef,
27044             'CPAN::Exception::RecursiveDependency'=> undef,
27045             'CPAN::Exception::blocked_urllist'=> undef,
27046             'CPAN::Exception::yaml_not_installed'=> undef,
27047             'CPAN::Exception::yaml_process_error'=> undef,
27048             'CPAN::FTP' => undef,
27049             'CPAN::FTP::netrc' => undef,
27050             'CPAN::FirstTime' => undef,
27051             'CPAN::HTTP::Client' => undef,
27052             'CPAN::HTTP::Credentials'=> undef,
27053             'CPAN::HandleConfig' => undef,
27054             'CPAN::Index' => undef,
27055             'CPAN::InfoObj' => undef,
27056             'CPAN::Kwalify' => undef,
27057             'CPAN::LWP::UserAgent' => undef,
27058             'CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27059             'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27060             'CPAN::Meta::Feature' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27061             'CPAN::Meta::History' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27062             'CPAN::Meta::Merge' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27063             'CPAN::Meta::Prereqs' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27064             'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
27065             'CPAN::Meta::Requirements::Range'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
27066             'CPAN::Meta::Spec' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27067             'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27068             'CPAN::Meta::YAML' => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
27069             'CPAN::Mirrors' => undef,
27070             'CPAN::Module' => undef,
27071             'CPAN::Nox' => undef,
27072             'CPAN::Plugin' => undef,
27073             'CPAN::Plugin::Specfile'=> undef,
27074             'CPAN::Prompt' => undef,
27075             'CPAN::Queue' => undef,
27076             'CPAN::Shell' => undef,
27077             'CPAN::Tarzip' => undef,
27078             'CPAN::URL' => undef,
27079             'CPAN::Version' => undef,
27080             'Compress::Raw::Bzip2' => 'https://github.com/pmqs/Compress-Raw-Bzip2/issues',
27081             'Compress::Raw::Zlib' => 'https://github.com/pmqs/Compress-Raw-Zlib/issues',
27082             'Compress::Zlib' => 'https://github.com/pmqs/IO-Compress/issues',
27083             'Config::Perl::V' => 'https://github.com/Tux/Config-Perl-V/issues',
27084             'DB_File' => 'https://github.com/pmqs/DB_File/issues',
27085             'Digest' => 'https://github.com/Dual-Life/digest/issues',
27086             'Digest::MD5' => 'https://github.com/Dual-Life/digest-md5/issues',
27087             'Digest::SHA' => undef,
27088             'Digest::base' => 'https://github.com/Dual-Life/digest/issues',
27089             'Digest::file' => 'https://github.com/Dual-Life/digest/issues',
27090             'Encode' => undef,
27091             'Encode::Alias' => undef,
27092             'Encode::Byte' => undef,
27093             'Encode::CJKConstants' => undef,
27094             'Encode::CN' => undef,
27095             'Encode::CN::HZ' => undef,
27096             'Encode::Config' => undef,
27097             'Encode::EBCDIC' => undef,
27098             'Encode::Encoder' => undef,
27099             'Encode::Encoding' => undef,
27100             'Encode::GSM0338' => undef,
27101             'Encode::Guess' => undef,
27102             'Encode::JP' => undef,
27103             'Encode::JP::H2Z' => undef,
27104             'Encode::JP::JIS7' => undef,
27105             'Encode::KR' => undef,
27106             'Encode::KR::2022_KR' => undef,
27107             'Encode::MIME::Header' => undef,
27108             'Encode::MIME::Header::ISO_2022_JP'=> undef,
27109             'Encode::MIME::Name' => undef,
27110             'Encode::Symbol' => undef,
27111             'Encode::TW' => undef,
27112             'Encode::Unicode' => undef,
27113             'Encode::Unicode::UTF7' => undef,
27114             'ExtUtils::Command' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27115             'ExtUtils::Command::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27116             'ExtUtils::Constant' => undef,
27117             'ExtUtils::Constant::Base'=> undef,
27118             'ExtUtils::Constant::ProxySubs'=> undef,
27119             'ExtUtils::Constant::Utils'=> undef,
27120             'ExtUtils::Constant::XS'=> undef,
27121             'ExtUtils::Install' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
27122             'ExtUtils::Installed' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
27123             'ExtUtils::Liblist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27124             'ExtUtils::Liblist::Kid'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27125             'ExtUtils::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27126             'ExtUtils::MM_AIX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27127             'ExtUtils::MM_Any' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27128             'ExtUtils::MM_BeOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27129             'ExtUtils::MM_Cygwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27130             'ExtUtils::MM_DOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27131             'ExtUtils::MM_Darwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27132             'ExtUtils::MM_MacOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27133             'ExtUtils::MM_NW5' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27134             'ExtUtils::MM_OS2' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27135             'ExtUtils::MM_OS390' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27136             'ExtUtils::MM_QNX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27137             'ExtUtils::MM_UWIN' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27138             'ExtUtils::MM_Unix' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27139             'ExtUtils::MM_VMS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27140             'ExtUtils::MM_VOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27141             'ExtUtils::MM_Win32' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27142             'ExtUtils::MM_Win95' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27143             'ExtUtils::MY' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27144             'ExtUtils::MakeMaker' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27145             'ExtUtils::MakeMaker::Config'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27146             'ExtUtils::MakeMaker::Locale'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27147             'ExtUtils::MakeMaker::version'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27148             'ExtUtils::MakeMaker::version::regex'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27149             'ExtUtils::Manifest' => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
27150             'ExtUtils::Mkbootstrap' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27151             'ExtUtils::Mksymlists' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27152             'ExtUtils::PL2Bat' => 'https://github.com/Perl-Toolchain-Gang/extutils-pl2bat/issues',
27153             'ExtUtils::Packlist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
27154             'ExtUtils::testlib' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27155             'Fatal' => 'https://github.com/pjf/autodie/issues',
27156             'File::Fetch' => undef,
27157             'File::GlobMapper' => 'https://github.com/pmqs/IO-Compress/issues',
27158             'File::Path' => undef,
27159             'File::Temp' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
27160             'Filter::Util::Call' => undef,
27161             'Getopt::Long' => 'https://github.com/sciurius/perl-Getopt-Long/issues',
27162             'Getopt::Long::Parser' => 'https://github.com/sciurius/perl-Getopt-Long/issues',
27163             'HTTP::Tiny' => 'https://github.com/Perl-Toolchain-Gang/HTTP-Tiny/issues',
27164             'IO::Compress' => 'https://github.com/pmqs/IO-Compress/issues',
27165             'IO::Compress::Adapter::Bzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
27166             'IO::Compress::Adapter::Deflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27167             'IO::Compress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
27168             'IO::Compress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
27169             'IO::Compress::Base::Common'=> 'https://github.com/pmqs/IO-Compress/issues',
27170             'IO::Compress::Bzip2' => 'https://github.com/pmqs/IO-Compress/issues',
27171             'IO::Compress::Deflate' => 'https://github.com/pmqs/IO-Compress/issues',
27172             'IO::Compress::Gzip' => 'https://github.com/pmqs/IO-Compress/issues',
27173             'IO::Compress::Gzip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
27174             'IO::Compress::RawDeflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27175             'IO::Compress::Zip' => 'https://github.com/pmqs/IO-Compress/issues',
27176             'IO::Compress::Zip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
27177             'IO::Compress::Zlib::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
27178             'IO::Compress::Zlib::Extra'=> 'https://github.com/pmqs/IO-Compress/issues',
27179             'IO::Socket::IP' => undef,
27180             'IO::Uncompress::Adapter::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
27181             'IO::Uncompress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
27182             'IO::Uncompress::Adapter::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27183             'IO::Uncompress::AnyInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27184             'IO::Uncompress::AnyUncompress'=> 'https://github.com/pmqs/IO-Compress/issues',
27185             'IO::Uncompress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
27186             'IO::Uncompress::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
27187             'IO::Uncompress::Gunzip'=> 'https://github.com/pmqs/IO-Compress/issues',
27188             'IO::Uncompress::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27189             'IO::Uncompress::RawInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27190             'IO::Uncompress::Unzip' => 'https://github.com/pmqs/IO-Compress/issues',
27191             'IO::Zlib' => 'https://github.com/tomhughes/IO-Zlib/issues',
27192             'IPC::Cmd' => undef,
27193             'IPC::Msg' => undef,
27194             'IPC::Semaphore' => undef,
27195             'IPC::SharedMem' => undef,
27196             'IPC::SysV' => undef,
27197             'JSON::PP' => 'https://github.com/makamaka/JSON-PP/issues',
27198             'JSON::PP::Boolean' => 'https://github.com/makamaka/JSON-PP/issues',
27199             'List::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27200             'List::Util::XS' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27201             'Locale::Maketext::Simple'=> undef,
27202             'MIME::Base64' => 'https://github.com/Dual-Life/mime-base64/issues',
27203             'MIME::QuotedPrint' => 'https://github.com/Dual-Life/mime-base64/issues',
27204             'Math::BigFloat' => undef,
27205             'Math::BigFloat::Trace' => undef,
27206             'Math::BigInt' => undef,
27207             'Math::BigInt::Calc' => undef,
27208             'Math::BigInt::FastCalc'=> undef,
27209             'Math::BigInt::Lib' => undef,
27210             'Math::BigInt::Trace' => undef,
27211             'Math::BigRat' => undef,
27212             'Math::BigRat::Trace' => undef,
27213             'Memoize' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27214             'Memoize::AnyDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27215             'Memoize::Expire' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27216             'Memoize::NDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27217             'Memoize::SDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27218             'Memoize::Storable' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27219             'Module::Load' => undef,
27220             'Module::Load::Conditional'=> undef,
27221             'Module::Loaded' => undef,
27222             'Module::Metadata' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
27223             'NEXT' => undef,
27224             'Net::Cmd' => undef,
27225             'Net::Config' => undef,
27226             'Net::Domain' => undef,
27227             'Net::FTP' => undef,
27228             'Net::FTP::A' => undef,
27229             'Net::FTP::E' => undef,
27230             'Net::FTP::I' => undef,
27231             'Net::FTP::L' => undef,
27232             'Net::FTP::dataconn' => undef,
27233             'Net::NNTP' => undef,
27234             'Net::Netrc' => undef,
27235             'Net::POP3' => undef,
27236             'Net::SMTP' => undef,
27237             'Net::Time' => undef,
27238             'Params::Check' => undef,
27239             'Parse::CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27240             'Perl::OSType' => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
27241             'PerlIO::via::QuotedPrint'=> undef,
27242             'Pod::Checker' => undef,
27243             'Pod::Escapes' => undef,
27244             'Pod::Man' => 'https://github.com/rra/podlators/issues',
27245             'Pod::ParseLink' => 'https://github.com/rra/podlators/issues',
27246             'Pod::Perldoc' => undef,
27247             'Pod::Perldoc::BaseTo' => undef,
27248             'Pod::Perldoc::GetOptsOO'=> undef,
27249             'Pod::Perldoc::ToANSI' => undef,
27250             'Pod::Perldoc::ToChecker'=> undef,
27251             'Pod::Perldoc::ToMan' => undef,
27252             'Pod::Perldoc::ToNroff' => undef,
27253             'Pod::Perldoc::ToPod' => undef,
27254             'Pod::Perldoc::ToRtf' => undef,
27255             'Pod::Perldoc::ToTerm' => undef,
27256             'Pod::Perldoc::ToText' => undef,
27257             'Pod::Perldoc::ToTk' => undef,
27258             'Pod::Perldoc::ToXml' => undef,
27259             'Pod::Simple' => 'https://github.com/perl-pod/pod-simple/issues',
27260             'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
27261             'Pod::Simple::Checker' => 'https://github.com/perl-pod/pod-simple/issues',
27262             'Pod::Simple::Debug' => 'https://github.com/perl-pod/pod-simple/issues',
27263             'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
27264             'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
27265             'Pod::Simple::HTML' => 'https://github.com/perl-pod/pod-simple/issues',
27266             'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
27267             'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
27268             'Pod::Simple::JustPod' => 'https://github.com/perl-pod/pod-simple/issues',
27269             'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
27270             'Pod::Simple::Methody' => 'https://github.com/perl-pod/pod-simple/issues',
27271             'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
27272             'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
27273             'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27274             'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27275             'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27276             'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27277             'Pod::Simple::RTF' => 'https://github.com/perl-pod/pod-simple/issues',
27278             'Pod::Simple::Search' => 'https://github.com/perl-pod/pod-simple/issues',
27279             'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
27280             'Pod::Simple::Text' => 'https://github.com/perl-pod/pod-simple/issues',
27281             'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
27282             'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
27283             'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
27284             'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
27285             'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
27286             'Pod::Simple::XHTML' => 'https://github.com/perl-pod/pod-simple/issues',
27287             'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
27288             'Pod::Text' => 'https://github.com/rra/podlators/issues',
27289             'Pod::Text::Color' => 'https://github.com/rra/podlators/issues',
27290             'Pod::Text::Overstrike' => 'https://github.com/rra/podlators/issues',
27291             'Pod::Text::Termcap' => 'https://github.com/rra/podlators/issues',
27292             'Pod::Usage' => 'https://github.com/Dual-Life/Pod-Usage/issues',
27293             'Scalar::List::Utils' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27294             'Scalar::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27295             'Socket' => undef,
27296             'Sub::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27297             'Sys::Syslog' => undef,
27298             'Sys::Syslog::Win32' => undef,
27299             'TAP::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27300             'TAP::Formatter::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27301             'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27302             'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27303             'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27304             'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27305             'TAP::Formatter::File' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27306             'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27307             'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27308             'TAP::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27309             'TAP::Harness::Env' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27310             'TAP::Object' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27311             'TAP::Parser' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27312             'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27313             'TAP::Parser::Grammar' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27314             'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27315             'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27316             'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27317             'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27318             'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27319             'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27320             'TAP::Parser::Result' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27321             'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27322             'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27323             'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27324             'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27325             'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27326             'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27327             'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27328             'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27329             'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27330             'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27331             'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27332             'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27333             'TAP::Parser::Source' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27334             'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27335             'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27336             'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27337             'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27338             'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27339             'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27340             'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27341             'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27342             'Term::ANSIColor' => 'https://rt.cpan.org/Dist/Display.html?Name=Term-ANSIColor',
27343             'Term::Cap' => undef,
27344             'Term::Table' => 'http://github.com/exodist/Term-Table/issues',
27345             'Term::Table::Cell' => 'http://github.com/exodist/Term-Table/issues',
27346             'Term::Table::CellStack'=> 'http://github.com/exodist/Term-Table/issues',
27347             'Term::Table::HashBase' => 'http://github.com/exodist/Term-Table/issues',
27348             'Term::Table::LineBreak'=> 'http://github.com/exodist/Term-Table/issues',
27349             'Term::Table::Spacer' => 'http://github.com/exodist/Term-Table/issues',
27350             'Term::Table::Util' => 'http://github.com/exodist/Term-Table/issues',
27351             'Test2' => 'https://github.com/Test-More/test-more/issues',
27352             'Test2::API' => 'https://github.com/Test-More/test-more/issues',
27353             'Test2::API::Breakage' => 'https://github.com/Test-More/test-more/issues',
27354             'Test2::API::Context' => 'https://github.com/Test-More/test-more/issues',
27355             'Test2::API::Instance' => 'https://github.com/Test-More/test-more/issues',
27356             'Test2::API::InterceptResult'=> 'https://github.com/Test-More/test-more/issues',
27357             'Test2::API::InterceptResult::Event'=> 'https://github.com/Test-More/test-more/issues',
27358             'Test2::API::InterceptResult::Facet'=> 'https://github.com/Test-More/test-more/issues',
27359             'Test2::API::InterceptResult::Hub'=> 'https://github.com/Test-More/test-more/issues',
27360             'Test2::API::InterceptResult::Squasher'=> 'https://github.com/Test-More/test-more/issues',
27361             'Test2::API::Stack' => 'https://github.com/Test-More/test-more/issues',
27362             'Test2::AsyncSubtest' => 'https://github.com/Test-More/test-more/issues',
27363             'Test2::AsyncSubtest::Event::Attach'=> 'https://github.com/Test-More/test-more/issues',
27364             'Test2::AsyncSubtest::Event::Detach'=> 'https://github.com/Test-More/test-more/issues',
27365             'Test2::AsyncSubtest::Formatter'=> 'https://github.com/Test-More/test-more/issues',
27366             'Test2::AsyncSubtest::Hub'=> 'https://github.com/Test-More/test-more/issues',
27367             'Test2::Bundle' => 'https://github.com/Test-More/test-more/issues',
27368             'Test2::Bundle::Extended'=> 'https://github.com/Test-More/test-more/issues',
27369             'Test2::Bundle::More' => 'https://github.com/Test-More/test-more/issues',
27370             'Test2::Bundle::Simple' => 'https://github.com/Test-More/test-more/issues',
27371             'Test2::Compare' => 'https://github.com/Test-More/test-more/issues',
27372             'Test2::Compare::Array' => 'https://github.com/Test-More/test-more/issues',
27373             'Test2::Compare::Bag' => 'https://github.com/Test-More/test-more/issues',
27374             'Test2::Compare::Base' => 'https://github.com/Test-More/test-more/issues',
27375             'Test2::Compare::Bool' => 'https://github.com/Test-More/test-more/issues',
27376             'Test2::Compare::Custom'=> 'https://github.com/Test-More/test-more/issues',
27377             'Test2::Compare::DeepRef'=> 'https://github.com/Test-More/test-more/issues',
27378             'Test2::Compare::Delta' => 'https://github.com/Test-More/test-more/issues',
27379             'Test2::Compare::Event' => 'https://github.com/Test-More/test-more/issues',
27380             'Test2::Compare::EventMeta'=> 'https://github.com/Test-More/test-more/issues',
27381             'Test2::Compare::Float' => 'https://github.com/Test-More/test-more/issues',
27382             'Test2::Compare::Hash' => 'https://github.com/Test-More/test-more/issues',
27383             'Test2::Compare::Isa' => 'https://github.com/Test-More/test-more/issues',
27384             'Test2::Compare::Meta' => 'https://github.com/Test-More/test-more/issues',
27385             'Test2::Compare::Negatable'=> 'https://github.com/Test-More/test-more/issues',
27386             'Test2::Compare::Number'=> 'https://github.com/Test-More/test-more/issues',
27387             'Test2::Compare::Object'=> 'https://github.com/Test-More/test-more/issues',
27388             'Test2::Compare::OrderedSubset'=> 'https://github.com/Test-More/test-more/issues',
27389             'Test2::Compare::Pattern'=> 'https://github.com/Test-More/test-more/issues',
27390             'Test2::Compare::Ref' => 'https://github.com/Test-More/test-more/issues',
27391             'Test2::Compare::Regex' => 'https://github.com/Test-More/test-more/issues',
27392             'Test2::Compare::Scalar'=> 'https://github.com/Test-More/test-more/issues',
27393             'Test2::Compare::Set' => 'https://github.com/Test-More/test-more/issues',
27394             'Test2::Compare::String'=> 'https://github.com/Test-More/test-more/issues',
27395             'Test2::Compare::Undef' => 'https://github.com/Test-More/test-more/issues',
27396             'Test2::Compare::Wildcard'=> 'https://github.com/Test-More/test-more/issues',
27397             'Test2::Env' => 'https://github.com/Test-More/test-more/issues',
27398             'Test2::Event' => 'https://github.com/Test-More/test-more/issues',
27399             'Test2::Event::Bail' => 'https://github.com/Test-More/test-more/issues',
27400             'Test2::Event::Diag' => 'https://github.com/Test-More/test-more/issues',
27401             'Test2::Event::Encoding'=> 'https://github.com/Test-More/test-more/issues',
27402             'Test2::Event::Exception'=> 'https://github.com/Test-More/test-more/issues',
27403             'Test2::Event::Fail' => 'https://github.com/Test-More/test-more/issues',
27404             'Test2::Event::Generic' => 'https://github.com/Test-More/test-more/issues',
27405             'Test2::Event::Note' => 'https://github.com/Test-More/test-more/issues',
27406             'Test2::Event::Ok' => 'https://github.com/Test-More/test-more/issues',
27407             'Test2::Event::Pass' => 'https://github.com/Test-More/test-more/issues',
27408             'Test2::Event::Plan' => 'https://github.com/Test-More/test-more/issues',
27409             'Test2::Event::Skip' => 'https://github.com/Test-More/test-more/issues',
27410             'Test2::Event::Subtest' => 'https://github.com/Test-More/test-more/issues',
27411             'Test2::Event::TAP::Version'=> 'https://github.com/Test-More/test-more/issues',
27412             'Test2::Event::V2' => 'https://github.com/Test-More/test-more/issues',
27413             'Test2::Event::Waiting' => 'https://github.com/Test-More/test-more/issues',
27414             'Test2::EventFacet' => 'https://github.com/Test-More/test-more/issues',
27415             'Test2::EventFacet::About'=> 'https://github.com/Test-More/test-more/issues',
27416             'Test2::EventFacet::Amnesty'=> 'https://github.com/Test-More/test-more/issues',
27417             'Test2::EventFacet::Assert'=> 'https://github.com/Test-More/test-more/issues',
27418             'Test2::EventFacet::Control'=> 'https://github.com/Test-More/test-more/issues',
27419             'Test2::EventFacet::Error'=> 'https://github.com/Test-More/test-more/issues',
27420             'Test2::EventFacet::Hub'=> 'https://github.com/Test-More/test-more/issues',
27421             'Test2::EventFacet::Info'=> 'https://github.com/Test-More/test-more/issues',
27422             'Test2::EventFacet::Info::Table'=> 'https://github.com/Test-More/test-more/issues',
27423             'Test2::EventFacet::Meta'=> 'https://github.com/Test-More/test-more/issues',
27424             'Test2::EventFacet::Parent'=> 'https://github.com/Test-More/test-more/issues',
27425             'Test2::EventFacet::Plan'=> 'https://github.com/Test-More/test-more/issues',
27426             'Test2::EventFacet::Render'=> 'https://github.com/Test-More/test-more/issues',
27427             'Test2::EventFacet::Trace'=> 'https://github.com/Test-More/test-more/issues',
27428             'Test2::Formatter' => 'https://github.com/Test-More/test-more/issues',
27429             'Test2::Formatter::TAP' => 'https://github.com/Test-More/test-more/issues',
27430             'Test2::Handle' => 'https://github.com/Test-More/test-more/issues',
27431             'Test2::Hub' => 'https://github.com/Test-More/test-more/issues',
27432             'Test2::Hub::Interceptor'=> 'https://github.com/Test-More/test-more/issues',
27433             'Test2::Hub::Interceptor::Terminator'=> 'https://github.com/Test-More/test-more/issues',
27434             'Test2::Hub::Subtest' => 'https://github.com/Test-More/test-more/issues',
27435             'Test2::IPC' => 'https://github.com/Test-More/test-more/issues',
27436             'Test2::IPC::Driver' => 'https://github.com/Test-More/test-more/issues',
27437             'Test2::IPC::Driver::Files'=> 'https://github.com/Test-More/test-more/issues',
27438             'Test2::Manual' => 'https://github.com/Test-More/test-more/issues',
27439             'Test2::Manual::Anatomy'=> 'https://github.com/Test-More/test-more/issues',
27440             'Test2::Manual::Anatomy::API'=> 'https://github.com/Test-More/test-more/issues',
27441             'Test2::Manual::Anatomy::Context'=> 'https://github.com/Test-More/test-more/issues',
27442             'Test2::Manual::Anatomy::EndToEnd'=> 'https://github.com/Test-More/test-more/issues',
27443             'Test2::Manual::Anatomy::Event'=> 'https://github.com/Test-More/test-more/issues',
27444             'Test2::Manual::Anatomy::Hubs'=> 'https://github.com/Test-More/test-more/issues',
27445             'Test2::Manual::Anatomy::IPC'=> 'https://github.com/Test-More/test-more/issues',
27446             'Test2::Manual::Anatomy::Utilities'=> 'https://github.com/Test-More/test-more/issues',
27447             'Test2::Manual::Concurrency'=> 'https://github.com/Test-More/test-more/issues',
27448             'Test2::Manual::Contributing'=> 'https://github.com/Test-More/test-more/issues',
27449             'Test2::Manual::Testing'=> 'https://github.com/Test-More/test-more/issues',
27450             'Test2::Manual::Testing::Introduction'=> 'https://github.com/Test-More/test-more/issues',
27451             'Test2::Manual::Testing::Migrating'=> 'https://github.com/Test-More/test-more/issues',
27452             'Test2::Manual::Testing::Planning'=> 'https://github.com/Test-More/test-more/issues',
27453             'Test2::Manual::Testing::Todo'=> 'https://github.com/Test-More/test-more/issues',
27454             'Test2::Manual::Tooling'=> 'https://github.com/Test-More/test-more/issues',
27455             'Test2::Manual::Tooling::FirstTool'=> 'https://github.com/Test-More/test-more/issues',
27456             'Test2::Manual::Tooling::Formatter'=> 'https://github.com/Test-More/test-more/issues',
27457             'Test2::Manual::Tooling::Nesting'=> 'https://github.com/Test-More/test-more/issues',
27458             'Test2::Manual::Tooling::Plugin::TestExit'=> 'https://github.com/Test-More/test-more/issues',
27459             'Test2::Manual::Tooling::Plugin::TestingDone'=> 'https://github.com/Test-More/test-more/issues',
27460             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> 'https://github.com/Test-More/test-more/issues',
27461             'Test2::Manual::Tooling::Plugin::ToolStarts'=> 'https://github.com/Test-More/test-more/issues',
27462             'Test2::Manual::Tooling::Subtest'=> 'https://github.com/Test-More/test-more/issues',
27463             'Test2::Manual::Tooling::TestBuilder'=> 'https://github.com/Test-More/test-more/issues',
27464             'Test2::Manual::Tooling::Testing'=> 'https://github.com/Test-More/test-more/issues',
27465             'Test2::Mock' => 'https://github.com/Test-More/test-more/issues',
27466             'Test2::Plugin' => 'https://github.com/Test-More/test-more/issues',
27467             'Test2::Plugin::BailOnFail'=> 'https://github.com/Test-More/test-more/issues',
27468             'Test2::Plugin::DieOnFail'=> 'https://github.com/Test-More/test-more/issues',
27469             'Test2::Plugin::ExitSummary'=> 'https://github.com/Test-More/test-more/issues',
27470             'Test2::Plugin::SRand' => 'https://github.com/Test-More/test-more/issues',
27471             'Test2::Plugin::Times' => 'https://github.com/Test-More/test-more/issues',
27472             'Test2::Plugin::UTF8' => 'https://github.com/Test-More/test-more/issues',
27473             'Test2::Require' => 'https://github.com/Test-More/test-more/issues',
27474             'Test2::Require::AuthorTesting'=> 'https://github.com/Test-More/test-more/issues',
27475             'Test2::Require::AutomatedTesting'=> 'https://github.com/Test-More/test-more/issues',
27476             'Test2::Require::EnvVar'=> 'https://github.com/Test-More/test-more/issues',
27477             'Test2::Require::ExtendedTesting'=> 'https://github.com/Test-More/test-more/issues',
27478             'Test2::Require::Fork' => 'https://github.com/Test-More/test-more/issues',
27479             'Test2::Require::Module'=> 'https://github.com/Test-More/test-more/issues',
27480             'Test2::Require::NonInteractiveTesting'=> 'https://github.com/Test-More/test-more/issues',
27481             'Test2::Require::Perl' => 'https://github.com/Test-More/test-more/issues',
27482             'Test2::Require::RealFork'=> 'https://github.com/Test-More/test-more/issues',
27483             'Test2::Require::ReleaseTesting'=> 'https://github.com/Test-More/test-more/issues',
27484             'Test2::Require::Threads'=> 'https://github.com/Test-More/test-more/issues',
27485             'Test2::Suite' => 'https://github.com/Test-More/test-more/issues',
27486             'Test2::Todo' => 'https://github.com/Test-More/test-more/issues',
27487             'Test2::Tools' => 'https://github.com/Test-More/test-more/issues',
27488             'Test2::Tools::AsyncSubtest'=> 'https://github.com/Test-More/test-more/issues',
27489             'Test2::Tools::Basic' => 'https://github.com/Test-More/test-more/issues',
27490             'Test2::Tools::Class' => 'https://github.com/Test-More/test-more/issues',
27491             'Test2::Tools::ClassicCompare'=> 'https://github.com/Test-More/test-more/issues',
27492             'Test2::Tools::Compare' => 'https://github.com/Test-More/test-more/issues',
27493             'Test2::Tools::Defer' => 'https://github.com/Test-More/test-more/issues',
27494             'Test2::Tools::Encoding'=> 'https://github.com/Test-More/test-more/issues',
27495             'Test2::Tools::Event' => 'https://github.com/Test-More/test-more/issues',
27496             'Test2::Tools::Exception'=> 'https://github.com/Test-More/test-more/issues',
27497             'Test2::Tools::Exports' => 'https://github.com/Test-More/test-more/issues',
27498             'Test2::Tools::GenTemp' => 'https://github.com/Test-More/test-more/issues',
27499             'Test2::Tools::Grab' => 'https://github.com/Test-More/test-more/issues',
27500             'Test2::Tools::Mock' => 'https://github.com/Test-More/test-more/issues',
27501             'Test2::Tools::Ref' => 'https://github.com/Test-More/test-more/issues',
27502             'Test2::Tools::Refcount'=> 'https://github.com/Test-More/test-more/issues',
27503             'Test2::Tools::Spec' => 'https://github.com/Test-More/test-more/issues',
27504             'Test2::Tools::Subtest' => 'https://github.com/Test-More/test-more/issues',
27505             'Test2::Tools::Target' => 'https://github.com/Test-More/test-more/issues',
27506             'Test2::Tools::Tester' => 'https://github.com/Test-More/test-more/issues',
27507             'Test2::Tools::Tiny' => 'https://github.com/Test-More/test-more/issues',
27508             'Test2::Tools::Warnings'=> 'https://github.com/Test-More/test-more/issues',
27509             'Test2::Util' => 'https://github.com/Test-More/test-more/issues',
27510             'Test2::Util::ExternalMeta'=> 'https://github.com/Test-More/test-more/issues',
27511             'Test2::Util::Facets2Legacy'=> 'https://github.com/Test-More/test-more/issues',
27512             'Test2::Util::Grabber' => 'https://github.com/Test-More/test-more/issues',
27513             'Test2::Util::Guard' => 'https://github.com/Test-More/test-more/issues',
27514             'Test2::Util::HashBase' => 'https://github.com/Test-More/test-more/issues',
27515             'Test2::Util::Importer' => 'https://github.com/Test-More/test-more/issues',
27516             'Test2::Util::Ref' => 'https://github.com/Test-More/test-more/issues',
27517             'Test2::Util::Sig' => 'https://github.com/Test-More/test-more/issues',
27518             'Test2::Util::Stash' => 'https://github.com/Test-More/test-more/issues',
27519             'Test2::Util::Sub' => 'https://github.com/Test-More/test-more/issues',
27520             'Test2::Util::Table' => 'https://github.com/Test-More/test-more/issues',
27521             'Test2::Util::Table::Cell'=> 'https://github.com/Test-More/test-more/issues',
27522             'Test2::Util::Table::LineBreak'=> 'https://github.com/Test-More/test-more/issues',
27523             'Test2::Util::Term' => 'https://github.com/Test-More/test-more/issues',
27524             'Test2::Util::Times' => 'https://github.com/Test-More/test-more/issues',
27525             'Test2::Util::Trace' => 'https://github.com/Test-More/test-more/issues',
27526             'Test2::V0' => 'https://github.com/Test-More/test-more/issues',
27527             'Test2::V1' => 'https://github.com/Test-More/test-more/issues',
27528             'Test2::V1::Base' => 'https://github.com/Test-More/test-more/issues',
27529             'Test2::V1::Handle' => 'https://github.com/Test-More/test-more/issues',
27530             'Test2::Workflow' => 'https://github.com/Test-More/test-more/issues',
27531             'Test2::Workflow::BlockBase'=> 'https://github.com/Test-More/test-more/issues',
27532             'Test2::Workflow::Build'=> 'https://github.com/Test-More/test-more/issues',
27533             'Test2::Workflow::Runner'=> 'https://github.com/Test-More/test-more/issues',
27534             'Test2::Workflow::Task' => 'https://github.com/Test-More/test-more/issues',
27535             'Test2::Workflow::Task::Action'=> 'https://github.com/Test-More/test-more/issues',
27536             'Test2::Workflow::Task::Group'=> 'https://github.com/Test-More/test-more/issues',
27537             'Test::Builder' => 'https://github.com/Test-More/test-more/issues',
27538             'Test::Builder::Formatter'=> 'https://github.com/Test-More/test-more/issues',
27539             'Test::Builder::Module' => 'https://github.com/Test-More/test-more/issues',
27540             'Test::Builder::Tester' => 'https://github.com/Test-More/test-more/issues',
27541             'Test::Builder::Tester::Color'=> 'https://github.com/Test-More/test-more/issues',
27542             'Test::Builder::TodoDiag'=> 'https://github.com/Test-More/test-more/issues',
27543             'Test::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27544             'Test::More' => 'https://github.com/Test-More/test-more/issues',
27545             'Test::Simple' => 'https://github.com/Test-More/test-more/issues',
27546             'Test::Tester' => 'https://github.com/Test-More/test-more/issues',
27547             'Test::Tester::Capture' => 'https://github.com/Test-More/test-more/issues',
27548             'Test::Tester::CaptureRunner'=> 'https://github.com/Test-More/test-more/issues',
27549             'Test::Tester::Delegate'=> 'https://github.com/Test-More/test-more/issues',
27550             'Test::use::ok' => 'https://github.com/Test-More/test-more/issues',
27551             'Text::Balanced' => undef,
27552             'Text::ParseWords' => undef,
27553             'Text::Tabs' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
27554             'Text::Wrap' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
27555             'Tie::RefHash' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Tie-RefHash',
27556             'Time::Local' => 'https://github.com/houseabsolute/Time-Local/issues',
27557             'Time::Piece' => undef,
27558             'Time::Seconds' => undef,
27559             'Unicode::Collate' => undef,
27560             'Unicode::Collate::CJK::Big5'=> undef,
27561             'Unicode::Collate::CJK::GB2312'=> undef,
27562             'Unicode::Collate::CJK::JISX0208'=> undef,
27563             'Unicode::Collate::CJK::Korean'=> undef,
27564             'Unicode::Collate::CJK::Pinyin'=> undef,
27565             'Unicode::Collate::CJK::Stroke'=> undef,
27566             'Unicode::Collate::CJK::Zhuyin'=> undef,
27567             'Unicode::Collate::Locale'=> undef,
27568             'Win32' => 'https://github.com/perl-libwin32/win32/issues',
27569             'Win32API::File' => undef,
27570             'autodie' => 'https://github.com/pjf/autodie/issues',
27571             'autodie::Scope::Guard' => 'https://github.com/pjf/autodie/issues',
27572             'autodie::Scope::GuardStack'=> 'https://github.com/pjf/autodie/issues',
27573             'autodie::Util' => 'https://github.com/pjf/autodie/issues',
27574             'autodie::exception' => 'https://github.com/pjf/autodie/issues',
27575             'autodie::exception::system'=> 'https://github.com/pjf/autodie/issues',
27576             'autodie::hints' => 'https://github.com/pjf/autodie/issues',
27577             'autodie::skip' => 'https://github.com/pjf/autodie/issues',
27578             'bigfloat' => undef,
27579             'bigint' => undef,
27580             'bignum' => undef,
27581             'bigrat' => undef,
27582             'encoding' => undef,
27583             'experimental' => 'https://github.com/Dual-Life/experimental/issues',
27584             'ok' => 'https://github.com/Test-More/test-more/issues',
27585             'parent' => undef,
27586             'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues',
27587             'stable' => 'https://github.com/Dual-Life/experimental/issues',
27588             'version' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
27589             'version::regex' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
27590             );
27591              
27592             # Create aliases with trailing zeros for $] use
27593              
27594             $released{'5.000'} = $released{5};
27595             $version{'5.000'} = $version{5};
27596              
27597             _create_aliases(\%delta);
27598             _create_aliases(\%released);
27599             _create_aliases(\%version);
27600             _create_aliases(\%deprecated);
27601              
27602             sub _create_aliases {
27603 20     20   37 my ($hash) = @_;
27604              
27605 20         1204 for my $version (keys %$hash) {
27606 5690 100       9300 next unless $version >= 5.006;
27607              
27608 5545         8490 my $padded = sprintf "%0.6f", $version;
27609              
27610             # If the version in string form isn't the same as the numeric version,
27611             # alias it.
27612 5545 100 66     9104 if ($padded ne $version && $version == $padded) {
27613 955         3092 $hash->{$padded} = $hash->{$version};
27614             }
27615             }
27616             }
27617              
27618             1;
27619             __END__